blob: 5b01b5b2e15958da24f59d63e4af51576c155f76 [file] [log] [blame]
James Ketrenos43f66a62005-03-25 12:31:53 -06001/******************************************************************************
Jeff Garzikbf794512005-07-31 13:07:26 -04002
Zhu Yi171e7b22006-02-15 07:17:56 +08003 Copyright(c) 2003 - 2006 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:
Reinette Chatrec1eb2c82009-08-21 13:34:26 -070028 Intel Linux Wireless <ilw@linux.intel.com>
James Ketrenos43f66a62005-03-25 12:31:53 -060029 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
30
31******************************************************************************/
32
33#include "ipw2200.h"
34
Zhu Yiae4af612006-04-13 17:20:34 +080035
36#ifndef KBUILD_EXTMOD
37#define VK "k"
38#else
39#define VK
40#endif
41
42#ifdef CONFIG_IPW2200_DEBUG
43#define VD "d"
44#else
45#define VD
46#endif
47
48#ifdef CONFIG_IPW2200_MONITOR
49#define VM "m"
50#else
51#define VM
52#endif
53
54#ifdef CONFIG_IPW2200_PROMISCUOUS
55#define VP "p"
56#else
57#define VP
58#endif
59
Zhu Yi459d4082006-04-13 17:21:00 +080060#ifdef CONFIG_IPW2200_RADIOTAP
Zhu Yiae4af612006-04-13 17:20:34 +080061#define VR "r"
62#else
63#define VR
64#endif
65
66#ifdef CONFIG_IPW2200_QOS
67#define VQ "q"
68#else
69#define VQ
70#endif
71
Zhu Yiee2c4ad2007-07-12 16:09:47 +080072#define IPW2200_VERSION "1.2.2" VK VD VM VP VR VQ
James Ketrenos43f66a62005-03-25 12:31:53 -060073#define DRV_DESCRIPTION "Intel(R) PRO/Wireless 2200/2915 Network Driver"
Zhu Yi171e7b22006-02-15 07:17:56 +080074#define DRV_COPYRIGHT "Copyright(c) 2003-2006 Intel Corporation"
James Ketrenos43f66a62005-03-25 12:31:53 -060075#define DRV_VERSION IPW2200_VERSION
76
James Ketrenosb095c382005-08-24 22:04:42 -050077#define ETH_P_80211_STATS (ETH_P_80211_RAW + 1)
78
James Ketrenos43f66a62005-03-25 12:31:53 -060079MODULE_DESCRIPTION(DRV_DESCRIPTION);
80MODULE_VERSION(DRV_VERSION);
81MODULE_AUTHOR(DRV_COPYRIGHT);
82MODULE_LICENSE("GPL");
Ben Hutchings873395a2009-11-07 21:59:10 +000083MODULE_FIRMWARE("ipw2200-ibss.fw");
84#ifdef CONFIG_IPW2200_MONITOR
85MODULE_FIRMWARE("ipw2200-sniffer.fw");
86#endif
87MODULE_FIRMWARE("ipw2200-bss.fw");
James Ketrenos43f66a62005-03-25 12:31:53 -060088
James Ketrenosf6c5cb72005-08-25 00:39:09 -050089static int cmdlog = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060090static int debug = 0;
Reinette Chatre21f8a732009-08-18 10:25:05 -070091static int default_channel = 0;
92static int network_mode = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060093
94static u32 ipw_debug_level;
Tim Gardner5c7f9b72008-10-14 10:38:03 -060095static int associate;
James Ketrenos43f66a62005-03-25 12:31:53 -060096static int auto_create = 1;
Reinette Chatre21f8a732009-08-18 10:25:05 -070097static int led_support = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060098static int disable = 0;
Zhu Yi810dabd2006-01-24 16:36:59 +080099static int bt_coexist = 0;
Zhu Yibde37d02006-01-24 16:38:08 +0800100static int hwcrypto = 0;
Zhu Yi4bfdb912006-01-24 16:37:16 +0800101static int roaming = 1;
James Ketrenos43f66a62005-03-25 12:31:53 -0600102static const char ipw_modes[] = {
103 'a', 'b', 'g', '?'
104};
Zhu Yid2b83e12006-04-13 17:19:36 +0800105static int antenna = CFG_SYS_ANTENNA_BOTH;
James Ketrenos43f66a62005-03-25 12:31:53 -0600106
Zhu Yid685b8c2006-04-13 17:20:27 +0800107#ifdef CONFIG_IPW2200_PROMISCUOUS
108static int rtap_iface = 0; /* def: 0 -- do not create rtap interface */
109#endif
110
John W. Linvillea3caa992009-08-25 14:12:25 -0400111static struct ieee80211_rate ipw2200_rates[] = {
112 { .bitrate = 10 },
113 { .bitrate = 20, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
114 { .bitrate = 55, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
115 { .bitrate = 110, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
116 { .bitrate = 60 },
117 { .bitrate = 90 },
118 { .bitrate = 120 },
119 { .bitrate = 180 },
120 { .bitrate = 240 },
121 { .bitrate = 360 },
122 { .bitrate = 480 },
123 { .bitrate = 540 }
124};
125
126#define ipw2200_a_rates (ipw2200_rates + 4)
127#define ipw2200_num_a_rates 8
128#define ipw2200_bg_rates (ipw2200_rates + 0)
129#define ipw2200_num_bg_rates 12
Zhu Yid685b8c2006-04-13 17:20:27 +0800130
Zhu Yie43e3c12006-04-13 17:20:45 +0800131#ifdef CONFIG_IPW2200_QOS
James Ketrenosb095c382005-08-24 22:04:42 -0500132static int qos_enable = 0;
133static int qos_burst_enable = 0;
134static int qos_no_ack_mask = 0;
135static int burst_duration_CCK = 0;
136static int burst_duration_OFDM = 0;
137
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400138static struct libipw_qos_parameters def_qos_parameters_OFDM = {
James Ketrenosb095c382005-08-24 22:04:42 -0500139 {QOS_TX0_CW_MIN_OFDM, QOS_TX1_CW_MIN_OFDM, QOS_TX2_CW_MIN_OFDM,
140 QOS_TX3_CW_MIN_OFDM},
141 {QOS_TX0_CW_MAX_OFDM, QOS_TX1_CW_MAX_OFDM, QOS_TX2_CW_MAX_OFDM,
142 QOS_TX3_CW_MAX_OFDM},
143 {QOS_TX0_AIFS, QOS_TX1_AIFS, QOS_TX2_AIFS, QOS_TX3_AIFS},
144 {QOS_TX0_ACM, QOS_TX1_ACM, QOS_TX2_ACM, QOS_TX3_ACM},
145 {QOS_TX0_TXOP_LIMIT_OFDM, QOS_TX1_TXOP_LIMIT_OFDM,
146 QOS_TX2_TXOP_LIMIT_OFDM, QOS_TX3_TXOP_LIMIT_OFDM}
147};
148
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400149static struct libipw_qos_parameters def_qos_parameters_CCK = {
James Ketrenosb095c382005-08-24 22:04:42 -0500150 {QOS_TX0_CW_MIN_CCK, QOS_TX1_CW_MIN_CCK, QOS_TX2_CW_MIN_CCK,
151 QOS_TX3_CW_MIN_CCK},
152 {QOS_TX0_CW_MAX_CCK, QOS_TX1_CW_MAX_CCK, QOS_TX2_CW_MAX_CCK,
153 QOS_TX3_CW_MAX_CCK},
154 {QOS_TX0_AIFS, QOS_TX1_AIFS, QOS_TX2_AIFS, QOS_TX3_AIFS},
155 {QOS_TX0_ACM, QOS_TX1_ACM, QOS_TX2_ACM, QOS_TX3_ACM},
156 {QOS_TX0_TXOP_LIMIT_CCK, QOS_TX1_TXOP_LIMIT_CCK, QOS_TX2_TXOP_LIMIT_CCK,
157 QOS_TX3_TXOP_LIMIT_CCK}
158};
159
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400160static struct libipw_qos_parameters def_parameters_OFDM = {
James Ketrenosb095c382005-08-24 22:04:42 -0500161 {DEF_TX0_CW_MIN_OFDM, DEF_TX1_CW_MIN_OFDM, DEF_TX2_CW_MIN_OFDM,
162 DEF_TX3_CW_MIN_OFDM},
163 {DEF_TX0_CW_MAX_OFDM, DEF_TX1_CW_MAX_OFDM, DEF_TX2_CW_MAX_OFDM,
164 DEF_TX3_CW_MAX_OFDM},
165 {DEF_TX0_AIFS, DEF_TX1_AIFS, DEF_TX2_AIFS, DEF_TX3_AIFS},
166 {DEF_TX0_ACM, DEF_TX1_ACM, DEF_TX2_ACM, DEF_TX3_ACM},
167 {DEF_TX0_TXOP_LIMIT_OFDM, DEF_TX1_TXOP_LIMIT_OFDM,
168 DEF_TX2_TXOP_LIMIT_OFDM, DEF_TX3_TXOP_LIMIT_OFDM}
169};
170
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400171static struct libipw_qos_parameters def_parameters_CCK = {
James Ketrenosb095c382005-08-24 22:04:42 -0500172 {DEF_TX0_CW_MIN_CCK, DEF_TX1_CW_MIN_CCK, DEF_TX2_CW_MIN_CCK,
173 DEF_TX3_CW_MIN_CCK},
174 {DEF_TX0_CW_MAX_CCK, DEF_TX1_CW_MAX_CCK, DEF_TX2_CW_MAX_CCK,
175 DEF_TX3_CW_MAX_CCK},
176 {DEF_TX0_AIFS, DEF_TX1_AIFS, DEF_TX2_AIFS, DEF_TX3_AIFS},
177 {DEF_TX0_ACM, DEF_TX1_ACM, DEF_TX2_ACM, DEF_TX3_ACM},
178 {DEF_TX0_TXOP_LIMIT_CCK, DEF_TX1_TXOP_LIMIT_CCK, DEF_TX2_TXOP_LIMIT_CCK,
179 DEF_TX3_TXOP_LIMIT_CCK}
180};
181
182static u8 qos_oui[QOS_OUI_LEN] = { 0x00, 0x50, 0xF2 };
183
184static int from_priority_to_tx_queue[] = {
185 IPW_TX_QUEUE_1, IPW_TX_QUEUE_2, IPW_TX_QUEUE_2, IPW_TX_QUEUE_1,
186 IPW_TX_QUEUE_3, IPW_TX_QUEUE_3, IPW_TX_QUEUE_4, IPW_TX_QUEUE_4
187};
188
189static u32 ipw_qos_get_burst_duration(struct ipw_priv *priv);
190
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400191static int ipw_send_qos_params_command(struct ipw_priv *priv, struct libipw_qos_parameters
James Ketrenosb095c382005-08-24 22:04:42 -0500192 *qos_param);
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400193static int ipw_send_qos_info_command(struct ipw_priv *priv, struct libipw_qos_information_element
James Ketrenosb095c382005-08-24 22:04:42 -0500194 *qos_param);
Zhu Yie43e3c12006-04-13 17:20:45 +0800195#endif /* CONFIG_IPW2200_QOS */
James Ketrenosb095c382005-08-24 22:04:42 -0500196
Benoit Boissinot97a78ca2005-09-15 17:30:28 +0000197static struct iw_statistics *ipw_get_wireless_stats(struct net_device *dev);
James Ketrenosb095c382005-08-24 22:04:42 -0500198static void ipw_remove_current_network(struct ipw_priv *priv);
James Ketrenos43f66a62005-03-25 12:31:53 -0600199static void ipw_rx(struct ipw_priv *priv);
Jeff Garzikbf794512005-07-31 13:07:26 -0400200static int ipw_queue_tx_reclaim(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -0600201 struct clx2_tx_queue *txq, int qindex);
202static int ipw_queue_reset(struct ipw_priv *priv);
203
204static int ipw_queue_tx_hcmd(struct ipw_priv *priv, int hcmd, void *buf,
205 int len, int sync);
206
207static void ipw_tx_queue_free(struct ipw_priv *);
208
209static struct ipw_rx_queue *ipw_rx_queue_alloc(struct ipw_priv *);
210static void ipw_rx_queue_free(struct ipw_priv *, struct ipw_rx_queue *);
211static void ipw_rx_queue_replenish(void *);
James Ketrenos43f66a62005-03-25 12:31:53 -0600212static int ipw_up(struct ipw_priv *);
David Howellsc4028952006-11-22 14:57:56 +0000213static void ipw_bg_up(struct work_struct *work);
James Ketrenos43f66a62005-03-25 12:31:53 -0600214static void ipw_down(struct ipw_priv *);
David Howellsc4028952006-11-22 14:57:56 +0000215static void ipw_bg_down(struct work_struct *work);
James Ketrenos43f66a62005-03-25 12:31:53 -0600216static int ipw_config(struct ipw_priv *);
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400217static int init_supported_rates(struct ipw_priv *priv,
218 struct ipw_supported_rates *prates);
James Ketrenosb095c382005-08-24 22:04:42 -0500219static void ipw_set_hwcrypto_keys(struct ipw_priv *);
220static void ipw_send_wep_keys(struct ipw_priv *, int);
James Ketrenos43f66a62005-03-25 12:31:53 -0600221
James Ketrenosf6c5cb72005-08-25 00:39:09 -0500222static int snprint_line(char *buf, size_t count,
223 const u8 * data, u32 len, u32 ofs)
James Ketrenos43f66a62005-03-25 12:31:53 -0600224{
225 int out, i, j, l;
226 char c;
Jeff Garzikbf794512005-07-31 13:07:26 -0400227
James Ketrenos43f66a62005-03-25 12:31:53 -0600228 out = snprintf(buf, count, "%08X", ofs);
229
230 for (l = 0, i = 0; i < 2; i++) {
231 out += snprintf(buf + out, count - out, " ");
Jeff Garzikbf794512005-07-31 13:07:26 -0400232 for (j = 0; j < 8 && l < len; j++, l++)
233 out += snprintf(buf + out, count - out, "%02X ",
James Ketrenos43f66a62005-03-25 12:31:53 -0600234 data[(i * 8 + j)]);
235 for (; j < 8; j++)
236 out += snprintf(buf + out, count - out, " ");
237 }
Jeff Garzikbf794512005-07-31 13:07:26 -0400238
James Ketrenos43f66a62005-03-25 12:31:53 -0600239 out += snprintf(buf + out, count - out, " ");
240 for (l = 0, i = 0; i < 2; i++) {
241 out += snprintf(buf + out, count - out, " ");
242 for (j = 0; j < 8 && l < len; j++, l++) {
243 c = data[(i * 8 + j)];
244 if (!isascii(c) || !isprint(c))
245 c = '.';
Jeff Garzikbf794512005-07-31 13:07:26 -0400246
James Ketrenos43f66a62005-03-25 12:31:53 -0600247 out += snprintf(buf + out, count - out, "%c", c);
248 }
249
250 for (; j < 8; j++)
251 out += snprintf(buf + out, count - out, " ");
252 }
Jeff Garzikbf794512005-07-31 13:07:26 -0400253
James Ketrenosf6c5cb72005-08-25 00:39:09 -0500254 return out;
James Ketrenos43f66a62005-03-25 12:31:53 -0600255}
256
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400257static void printk_buf(int level, const u8 * data, u32 len)
James Ketrenos43f66a62005-03-25 12:31:53 -0600258{
259 char line[81];
260 u32 ofs = 0;
261 if (!(ipw_debug_level & level))
262 return;
263
264 while (len) {
James Ketrenosf6c5cb72005-08-25 00:39:09 -0500265 snprint_line(line, sizeof(line), &data[ofs],
266 min(len, 16U), ofs);
267 printk(KERN_DEBUG "%s\n", line);
James Ketrenos43f66a62005-03-25 12:31:53 -0600268 ofs += 16;
269 len -= min(len, 16U);
270 }
271}
272
James Ketrenosf6c5cb72005-08-25 00:39:09 -0500273static int snprintk_buf(u8 * output, size_t size, const u8 * data, size_t len)
274{
275 size_t out = size;
276 u32 ofs = 0;
277 int total = 0;
278
279 while (size && len) {
280 out = snprint_line(output, size, &data[ofs],
281 min_t(size_t, len, 16U), ofs);
282
283 ofs += 16;
284 output += out;
285 size -= out;
286 len -= min_t(size_t, len, 16U);
287 total += out;
288 }
289 return total;
290}
291
Zhu Yic8fe6672006-01-24 16:36:36 +0800292/* alias for 32-bit indirect read (for SRAM/reg above 4K), with debug wrapper */
James Ketrenos43f66a62005-03-25 12:31:53 -0600293static u32 _ipw_read_reg32(struct ipw_priv *priv, u32 reg);
294#define ipw_read_reg32(a, b) _ipw_read_reg32(a, b)
295
Zhu Yic8fe6672006-01-24 16:36:36 +0800296/* alias for 8-bit indirect read (for SRAM/reg above 4K), with debug wrapper */
James Ketrenos43f66a62005-03-25 12:31:53 -0600297static u8 _ipw_read_reg8(struct ipw_priv *ipw, u32 reg);
298#define ipw_read_reg8(a, b) _ipw_read_reg8(a, b)
299
Zhu Yic8fe6672006-01-24 16:36:36 +0800300/* 8-bit indirect write (for SRAM/reg above 4K), with debug wrapper */
James Ketrenos43f66a62005-03-25 12:31:53 -0600301static void _ipw_write_reg8(struct ipw_priv *priv, u32 reg, u8 value);
302static inline void ipw_write_reg8(struct ipw_priv *a, u32 b, u8 c)
303{
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400304 IPW_DEBUG_IO("%s %d: write_indirect8(0x%08X, 0x%08X)\n", __FILE__,
305 __LINE__, (u32) (b), (u32) (c));
James Ketrenos43f66a62005-03-25 12:31:53 -0600306 _ipw_write_reg8(a, b, c);
307}
308
Zhu Yic8fe6672006-01-24 16:36:36 +0800309/* 16-bit indirect write (for SRAM/reg above 4K), with debug wrapper */
James Ketrenos43f66a62005-03-25 12:31:53 -0600310static void _ipw_write_reg16(struct ipw_priv *priv, u32 reg, u16 value);
311static inline void ipw_write_reg16(struct ipw_priv *a, u32 b, u16 c)
312{
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400313 IPW_DEBUG_IO("%s %d: write_indirect16(0x%08X, 0x%08X)\n", __FILE__,
314 __LINE__, (u32) (b), (u32) (c));
James Ketrenos43f66a62005-03-25 12:31:53 -0600315 _ipw_write_reg16(a, b, c);
316}
317
Zhu Yic8fe6672006-01-24 16:36:36 +0800318/* 32-bit indirect write (for SRAM/reg above 4K), with debug wrapper */
James Ketrenos43f66a62005-03-25 12:31:53 -0600319static void _ipw_write_reg32(struct ipw_priv *priv, u32 reg, u32 value);
320static inline void ipw_write_reg32(struct ipw_priv *a, u32 b, u32 c)
321{
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400322 IPW_DEBUG_IO("%s %d: write_indirect32(0x%08X, 0x%08X)\n", __FILE__,
323 __LINE__, (u32) (b), (u32) (c));
James Ketrenos43f66a62005-03-25 12:31:53 -0600324 _ipw_write_reg32(a, b, c);
325}
326
Zhu Yic8fe6672006-01-24 16:36:36 +0800327/* 8-bit direct write (low 4K) */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100328static inline void _ipw_write8(struct ipw_priv *ipw, unsigned long ofs,
329 u8 val)
330{
331 writeb(val, ipw->hw_base + ofs);
332}
Zhu Yic8fe6672006-01-24 16:36:36 +0800333
334/* 8-bit direct write (for low 4K of SRAM/regs), with debug wrapper */
Takashi Iwaifb55d882008-07-31 19:02:06 +0200335#define ipw_write8(ipw, ofs, val) do { \
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100336 IPW_DEBUG_IO("%s %d: write_direct8(0x%08X, 0x%08X)\n", __FILE__, \
337 __LINE__, (u32)(ofs), (u32)(val)); \
338 _ipw_write8(ipw, ofs, val); \
339} while (0)
James Ketrenos43f66a62005-03-25 12:31:53 -0600340
Zhu Yic8fe6672006-01-24 16:36:36 +0800341/* 16-bit direct write (low 4K) */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100342static inline void _ipw_write16(struct ipw_priv *ipw, unsigned long ofs,
343 u16 val)
344{
345 writew(val, ipw->hw_base + ofs);
346}
Zhu Yic8fe6672006-01-24 16:36:36 +0800347
348/* 16-bit direct write (for low 4K of SRAM/regs), with debug wrapper */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100349#define ipw_write16(ipw, ofs, val) do { \
350 IPW_DEBUG_IO("%s %d: write_direct16(0x%08X, 0x%08X)\n", __FILE__, \
351 __LINE__, (u32)(ofs), (u32)(val)); \
352 _ipw_write16(ipw, ofs, val); \
353} while (0)
James Ketrenos43f66a62005-03-25 12:31:53 -0600354
Zhu Yic8fe6672006-01-24 16:36:36 +0800355/* 32-bit direct write (low 4K) */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100356static inline void _ipw_write32(struct ipw_priv *ipw, unsigned long ofs,
357 u32 val)
358{
359 writel(val, ipw->hw_base + ofs);
360}
Zhu Yic8fe6672006-01-24 16:36:36 +0800361
362/* 32-bit direct write (for low 4K of SRAM/regs), with debug wrapper */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100363#define ipw_write32(ipw, ofs, val) do { \
364 IPW_DEBUG_IO("%s %d: write_direct32(0x%08X, 0x%08X)\n", __FILE__, \
365 __LINE__, (u32)(ofs), (u32)(val)); \
366 _ipw_write32(ipw, ofs, val); \
367} while (0)
James Ketrenos43f66a62005-03-25 12:31:53 -0600368
Zhu Yic8fe6672006-01-24 16:36:36 +0800369/* 8-bit direct read (low 4K) */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100370static inline u8 _ipw_read8(struct ipw_priv *ipw, unsigned long ofs)
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400371{
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100372 return readb(ipw->hw_base + ofs);
James Ketrenos43f66a62005-03-25 12:31:53 -0600373}
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400374
Zhu Yic8fe6672006-01-24 16:36:36 +0800375/* alias to 8-bit direct read (low 4K of SRAM/regs), with debug wrapper */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100376#define ipw_read8(ipw, ofs) ({ \
377 IPW_DEBUG_IO("%s %d: read_direct8(0x%08X)\n", __FILE__, __LINE__, \
378 (u32)(ofs)); \
379 _ipw_read8(ipw, ofs); \
380})
James Ketrenos43f66a62005-03-25 12:31:53 -0600381
Zhu Yic8fe6672006-01-24 16:36:36 +0800382/* 16-bit direct read (low 4K) */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100383static inline u16 _ipw_read16(struct ipw_priv *ipw, unsigned long ofs)
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400384{
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100385 return readw(ipw->hw_base + ofs);
James Ketrenos43f66a62005-03-25 12:31:53 -0600386}
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400387
Zhu Yic8fe6672006-01-24 16:36:36 +0800388/* alias to 16-bit direct read (low 4K of SRAM/regs), with debug wrapper */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100389#define ipw_read16(ipw, ofs) ({ \
390 IPW_DEBUG_IO("%s %d: read_direct16(0x%08X)\n", __FILE__, __LINE__, \
391 (u32)(ofs)); \
392 _ipw_read16(ipw, ofs); \
393})
James Ketrenos43f66a62005-03-25 12:31:53 -0600394
Zhu Yic8fe6672006-01-24 16:36:36 +0800395/* 32-bit direct read (low 4K) */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100396static inline u32 _ipw_read32(struct ipw_priv *ipw, unsigned long ofs)
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400397{
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100398 return readl(ipw->hw_base + ofs);
James Ketrenos43f66a62005-03-25 12:31:53 -0600399}
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400400
Zhu Yic8fe6672006-01-24 16:36:36 +0800401/* alias to 32-bit direct read (low 4K of SRAM/regs), with debug wrapper */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100402#define ipw_read32(ipw, ofs) ({ \
403 IPW_DEBUG_IO("%s %d: read_direct32(0x%08X)\n", __FILE__, __LINE__, \
404 (u32)(ofs)); \
405 _ipw_read32(ipw, ofs); \
406})
James Ketrenos43f66a62005-03-25 12:31:53 -0600407
408static void _ipw_read_indirect(struct ipw_priv *, u32, u8 *, int);
Zhu Yic8fe6672006-01-24 16:36:36 +0800409/* alias to multi-byte read (SRAM/regs above 4K), with debug wrapper */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100410#define ipw_read_indirect(a, b, c, d) ({ \
411 IPW_DEBUG_IO("%s %d: read_indirect(0x%08X) %u bytes\n", __FILE__, \
412 __LINE__, (u32)(b), (u32)(d)); \
413 _ipw_read_indirect(a, b, c, d); \
414})
James Ketrenos43f66a62005-03-25 12:31:53 -0600415
Zhu Yic8fe6672006-01-24 16:36:36 +0800416/* alias to multi-byte read (SRAM/regs above 4K), with debug wrapper */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400417static void _ipw_write_indirect(struct ipw_priv *priv, u32 addr, u8 * data,
418 int num);
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100419#define ipw_write_indirect(a, b, c, d) do { \
420 IPW_DEBUG_IO("%s %d: write_indirect(0x%08X) %u bytes\n", __FILE__, \
421 __LINE__, (u32)(b), (u32)(d)); \
422 _ipw_write_indirect(a, b, c, d); \
423} while (0)
James Ketrenos43f66a62005-03-25 12:31:53 -0600424
Zhu Yic8fe6672006-01-24 16:36:36 +0800425/* 32-bit indirect write (above 4K) */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400426static void _ipw_write_reg32(struct ipw_priv *priv, u32 reg, u32 value)
James Ketrenos43f66a62005-03-25 12:31:53 -0600427{
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400428 IPW_DEBUG_IO(" %p : reg = 0x%8X : value = 0x%8X\n", priv, reg, value);
James Ketrenosb095c382005-08-24 22:04:42 -0500429 _ipw_write32(priv, IPW_INDIRECT_ADDR, reg);
430 _ipw_write32(priv, IPW_INDIRECT_DATA, value);
James Ketrenos43f66a62005-03-25 12:31:53 -0600431}
432
Zhu Yic8fe6672006-01-24 16:36:36 +0800433/* 8-bit indirect write (above 4K) */
James Ketrenos43f66a62005-03-25 12:31:53 -0600434static void _ipw_write_reg8(struct ipw_priv *priv, u32 reg, u8 value)
435{
Zhu Yi2638bc32006-01-24 16:37:52 +0800436 u32 aligned_addr = reg & IPW_INDIRECT_ADDR_MASK; /* dword align */
Zhu Yic8fe6672006-01-24 16:36:36 +0800437 u32 dif_len = reg - aligned_addr;
438
James Ketrenos43f66a62005-03-25 12:31:53 -0600439 IPW_DEBUG_IO(" reg = 0x%8X : value = 0x%8X\n", reg, value);
Zhu Yic8fe6672006-01-24 16:36:36 +0800440 _ipw_write32(priv, IPW_INDIRECT_ADDR, aligned_addr);
441 _ipw_write8(priv, IPW_INDIRECT_DATA + dif_len, value);
James Ketrenos43f66a62005-03-25 12:31:53 -0600442}
443
Zhu Yic8fe6672006-01-24 16:36:36 +0800444/* 16-bit indirect write (above 4K) */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400445static void _ipw_write_reg16(struct ipw_priv *priv, u32 reg, u16 value)
James Ketrenos43f66a62005-03-25 12:31:53 -0600446{
Zhu Yi2638bc32006-01-24 16:37:52 +0800447 u32 aligned_addr = reg & IPW_INDIRECT_ADDR_MASK; /* dword align */
Zhu Yic8fe6672006-01-24 16:36:36 +0800448 u32 dif_len = (reg - aligned_addr) & (~0x1ul);
449
James Ketrenos43f66a62005-03-25 12:31:53 -0600450 IPW_DEBUG_IO(" reg = 0x%8X : value = 0x%8X\n", reg, value);
Zhu Yic8fe6672006-01-24 16:36:36 +0800451 _ipw_write32(priv, IPW_INDIRECT_ADDR, aligned_addr);
452 _ipw_write16(priv, IPW_INDIRECT_DATA + dif_len, value);
James Ketrenos43f66a62005-03-25 12:31:53 -0600453}
454
Zhu Yic8fe6672006-01-24 16:36:36 +0800455/* 8-bit indirect read (above 4K) */
James Ketrenos43f66a62005-03-25 12:31:53 -0600456static u8 _ipw_read_reg8(struct ipw_priv *priv, u32 reg)
457{
458 u32 word;
James Ketrenosb095c382005-08-24 22:04:42 -0500459 _ipw_write32(priv, IPW_INDIRECT_ADDR, reg & IPW_INDIRECT_ADDR_MASK);
James Ketrenos43f66a62005-03-25 12:31:53 -0600460 IPW_DEBUG_IO(" reg = 0x%8X : \n", reg);
James Ketrenosb095c382005-08-24 22:04:42 -0500461 word = _ipw_read32(priv, IPW_INDIRECT_DATA);
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400462 return (word >> ((reg & 0x3) * 8)) & 0xff;
James Ketrenos43f66a62005-03-25 12:31:53 -0600463}
464
Zhu Yic8fe6672006-01-24 16:36:36 +0800465/* 32-bit indirect read (above 4K) */
James Ketrenos43f66a62005-03-25 12:31:53 -0600466static u32 _ipw_read_reg32(struct ipw_priv *priv, u32 reg)
467{
468 u32 value;
469
470 IPW_DEBUG_IO("%p : reg = 0x%08x\n", priv, reg);
471
James Ketrenosb095c382005-08-24 22:04:42 -0500472 _ipw_write32(priv, IPW_INDIRECT_ADDR, reg);
473 value = _ipw_read32(priv, IPW_INDIRECT_DATA);
James Ketrenos43f66a62005-03-25 12:31:53 -0600474 IPW_DEBUG_IO(" reg = 0x%4X : value = 0x%4x \n", reg, value);
475 return value;
476}
477
Zhu Yic8fe6672006-01-24 16:36:36 +0800478/* General purpose, no alignment requirement, iterative (multi-byte) read, */
479/* for area above 1st 4K of SRAM/reg space */
James Ketrenos43f66a62005-03-25 12:31:53 -0600480static void _ipw_read_indirect(struct ipw_priv *priv, u32 addr, u8 * buf,
481 int num)
482{
Zhu Yi2638bc32006-01-24 16:37:52 +0800483 u32 aligned_addr = addr & IPW_INDIRECT_ADDR_MASK; /* dword align */
James Ketrenos43f66a62005-03-25 12:31:53 -0600484 u32 dif_len = addr - aligned_addr;
James Ketrenos43f66a62005-03-25 12:31:53 -0600485 u32 i;
Jeff Garzikbf794512005-07-31 13:07:26 -0400486
James Ketrenos43f66a62005-03-25 12:31:53 -0600487 IPW_DEBUG_IO("addr = %i, buf = %p, num = %i\n", addr, buf, num);
488
James Ketrenosea2b26e2005-08-24 21:25:16 -0500489 if (num <= 0) {
490 return;
491 }
492
Zhu Yic8fe6672006-01-24 16:36:36 +0800493 /* Read the first dword (or portion) byte by byte */
James Ketrenos43f66a62005-03-25 12:31:53 -0600494 if (unlikely(dif_len)) {
James Ketrenosb095c382005-08-24 22:04:42 -0500495 _ipw_write32(priv, IPW_INDIRECT_ADDR, aligned_addr);
James Ketrenos43f66a62005-03-25 12:31:53 -0600496 /* Start reading at aligned_addr + dif_len */
James Ketrenosea2b26e2005-08-24 21:25:16 -0500497 for (i = dif_len; ((i < 4) && (num > 0)); i++, num--)
James Ketrenosb095c382005-08-24 22:04:42 -0500498 *buf++ = _ipw_read8(priv, IPW_INDIRECT_DATA + i);
James Ketrenos43f66a62005-03-25 12:31:53 -0600499 aligned_addr += 4;
500 }
501
Zhu Yic8fe6672006-01-24 16:36:36 +0800502 /* Read all of the middle dwords as dwords, with auto-increment */
James Ketrenosb095c382005-08-24 22:04:42 -0500503 _ipw_write32(priv, IPW_AUTOINC_ADDR, aligned_addr);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500504 for (; num >= 4; buf += 4, aligned_addr += 4, num -= 4)
James Ketrenosb095c382005-08-24 22:04:42 -0500505 *(u32 *) buf = _ipw_read32(priv, IPW_AUTOINC_DATA);
Jeff Garzikbf794512005-07-31 13:07:26 -0400506
Zhu Yic8fe6672006-01-24 16:36:36 +0800507 /* Read the last dword (or portion) byte by byte */
James Ketrenosea2b26e2005-08-24 21:25:16 -0500508 if (unlikely(num)) {
James Ketrenosb095c382005-08-24 22:04:42 -0500509 _ipw_write32(priv, IPW_INDIRECT_ADDR, aligned_addr);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500510 for (i = 0; num > 0; i++, num--)
James Ketrenosb095c382005-08-24 22:04:42 -0500511 *buf++ = ipw_read8(priv, IPW_INDIRECT_DATA + i);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500512 }
James Ketrenos43f66a62005-03-25 12:31:53 -0600513}
514
Zhu Yic8fe6672006-01-24 16:36:36 +0800515/* General purpose, no alignment requirement, iterative (multi-byte) write, */
516/* for area above 1st 4K of SRAM/reg space */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400517static void _ipw_write_indirect(struct ipw_priv *priv, u32 addr, u8 * buf,
James Ketrenos43f66a62005-03-25 12:31:53 -0600518 int num)
519{
Zhu Yi2638bc32006-01-24 16:37:52 +0800520 u32 aligned_addr = addr & IPW_INDIRECT_ADDR_MASK; /* dword align */
James Ketrenos43f66a62005-03-25 12:31:53 -0600521 u32 dif_len = addr - aligned_addr;
James Ketrenos43f66a62005-03-25 12:31:53 -0600522 u32 i;
Jeff Garzikbf794512005-07-31 13:07:26 -0400523
James Ketrenos43f66a62005-03-25 12:31:53 -0600524 IPW_DEBUG_IO("addr = %i, buf = %p, num = %i\n", addr, buf, num);
Jeff Garzikbf794512005-07-31 13:07:26 -0400525
James Ketrenosea2b26e2005-08-24 21:25:16 -0500526 if (num <= 0) {
527 return;
528 }
529
Zhu Yic8fe6672006-01-24 16:36:36 +0800530 /* Write the first dword (or portion) byte by byte */
James Ketrenos43f66a62005-03-25 12:31:53 -0600531 if (unlikely(dif_len)) {
James Ketrenosb095c382005-08-24 22:04:42 -0500532 _ipw_write32(priv, IPW_INDIRECT_ADDR, aligned_addr);
Zhu Yic8fe6672006-01-24 16:36:36 +0800533 /* Start writing at aligned_addr + dif_len */
James Ketrenosea2b26e2005-08-24 21:25:16 -0500534 for (i = dif_len; ((i < 4) && (num > 0)); i++, num--, buf++)
James Ketrenosb095c382005-08-24 22:04:42 -0500535 _ipw_write8(priv, IPW_INDIRECT_DATA + i, *buf);
James Ketrenos43f66a62005-03-25 12:31:53 -0600536 aligned_addr += 4;
537 }
Jeff Garzikbf794512005-07-31 13:07:26 -0400538
Zhu Yic8fe6672006-01-24 16:36:36 +0800539 /* Write all of the middle dwords as dwords, with auto-increment */
James Ketrenosb095c382005-08-24 22:04:42 -0500540 _ipw_write32(priv, IPW_AUTOINC_ADDR, aligned_addr);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500541 for (; num >= 4; buf += 4, aligned_addr += 4, num -= 4)
James Ketrenosb095c382005-08-24 22:04:42 -0500542 _ipw_write32(priv, IPW_AUTOINC_DATA, *(u32 *) buf);
Jeff Garzikbf794512005-07-31 13:07:26 -0400543
Zhu Yic8fe6672006-01-24 16:36:36 +0800544 /* Write the last dword (or portion) byte by byte */
James Ketrenosea2b26e2005-08-24 21:25:16 -0500545 if (unlikely(num)) {
James Ketrenosb095c382005-08-24 22:04:42 -0500546 _ipw_write32(priv, IPW_INDIRECT_ADDR, aligned_addr);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500547 for (i = 0; num > 0; i++, num--, buf++)
James Ketrenosb095c382005-08-24 22:04:42 -0500548 _ipw_write8(priv, IPW_INDIRECT_DATA + i, *buf);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500549 }
James Ketrenos43f66a62005-03-25 12:31:53 -0600550}
551
Zhu Yic8fe6672006-01-24 16:36:36 +0800552/* General purpose, no alignment requirement, iterative (multi-byte) write, */
553/* for 1st 4K of SRAM/regs space */
Jeff Garzikbf794512005-07-31 13:07:26 -0400554static void ipw_write_direct(struct ipw_priv *priv, u32 addr, void *buf,
James Ketrenos43f66a62005-03-25 12:31:53 -0600555 int num)
556{
557 memcpy_toio((priv->hw_base + addr), buf, num);
558}
559
Zhu Yic8fe6672006-01-24 16:36:36 +0800560/* Set bit(s) in low 4K of SRAM/regs */
James Ketrenos43f66a62005-03-25 12:31:53 -0600561static inline void ipw_set_bit(struct ipw_priv *priv, u32 reg, u32 mask)
562{
563 ipw_write32(priv, reg, ipw_read32(priv, reg) | mask);
564}
565
Zhu Yic8fe6672006-01-24 16:36:36 +0800566/* Clear bit(s) in low 4K of SRAM/regs */
James Ketrenos43f66a62005-03-25 12:31:53 -0600567static inline void ipw_clear_bit(struct ipw_priv *priv, u32 reg, u32 mask)
568{
569 ipw_write32(priv, reg, ipw_read32(priv, reg) & ~mask);
570}
571
Zhu Yi89c318e2006-06-08 22:19:49 -0700572static inline void __ipw_enable_interrupts(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -0600573{
574 if (priv->status & STATUS_INT_ENABLED)
575 return;
576 priv->status |= STATUS_INT_ENABLED;
James Ketrenosb095c382005-08-24 22:04:42 -0500577 ipw_write32(priv, IPW_INTA_MASK_R, IPW_INTA_MASK_ALL);
James Ketrenos43f66a62005-03-25 12:31:53 -0600578}
579
Zhu Yi89c318e2006-06-08 22:19:49 -0700580static inline void __ipw_disable_interrupts(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -0600581{
582 if (!(priv->status & STATUS_INT_ENABLED))
583 return;
584 priv->status &= ~STATUS_INT_ENABLED;
James Ketrenosb095c382005-08-24 22:04:42 -0500585 ipw_write32(priv, IPW_INTA_MASK_R, ~IPW_INTA_MASK_ALL);
James Ketrenos43f66a62005-03-25 12:31:53 -0600586}
587
Zhu Yi89c318e2006-06-08 22:19:49 -0700588static inline void ipw_enable_interrupts(struct ipw_priv *priv)
589{
590 unsigned long flags;
591
592 spin_lock_irqsave(&priv->irq_lock, flags);
593 __ipw_enable_interrupts(priv);
594 spin_unlock_irqrestore(&priv->irq_lock, flags);
595}
596
597static inline void ipw_disable_interrupts(struct ipw_priv *priv)
598{
599 unsigned long flags;
600
601 spin_lock_irqsave(&priv->irq_lock, flags);
602 __ipw_disable_interrupts(priv);
603 spin_unlock_irqrestore(&priv->irq_lock, flags);
604}
605
James Ketrenos43f66a62005-03-25 12:31:53 -0600606static char *ipw_error_desc(u32 val)
607{
608 switch (val) {
Jeff Garzikbf794512005-07-31 13:07:26 -0400609 case IPW_FW_ERROR_OK:
James Ketrenos43f66a62005-03-25 12:31:53 -0600610 return "ERROR_OK";
Jeff Garzikbf794512005-07-31 13:07:26 -0400611 case IPW_FW_ERROR_FAIL:
James Ketrenos43f66a62005-03-25 12:31:53 -0600612 return "ERROR_FAIL";
Jeff Garzikbf794512005-07-31 13:07:26 -0400613 case IPW_FW_ERROR_MEMORY_UNDERFLOW:
James Ketrenos43f66a62005-03-25 12:31:53 -0600614 return "MEMORY_UNDERFLOW";
Jeff Garzikbf794512005-07-31 13:07:26 -0400615 case IPW_FW_ERROR_MEMORY_OVERFLOW:
James Ketrenos43f66a62005-03-25 12:31:53 -0600616 return "MEMORY_OVERFLOW";
Jeff Garzikbf794512005-07-31 13:07:26 -0400617 case IPW_FW_ERROR_BAD_PARAM:
James Ketrenosb095c382005-08-24 22:04:42 -0500618 return "BAD_PARAM";
Jeff Garzikbf794512005-07-31 13:07:26 -0400619 case IPW_FW_ERROR_BAD_CHECKSUM:
James Ketrenosb095c382005-08-24 22:04:42 -0500620 return "BAD_CHECKSUM";
Jeff Garzikbf794512005-07-31 13:07:26 -0400621 case IPW_FW_ERROR_NMI_INTERRUPT:
James Ketrenosb095c382005-08-24 22:04:42 -0500622 return "NMI_INTERRUPT";
Jeff Garzikbf794512005-07-31 13:07:26 -0400623 case IPW_FW_ERROR_BAD_DATABASE:
James Ketrenosb095c382005-08-24 22:04:42 -0500624 return "BAD_DATABASE";
Jeff Garzikbf794512005-07-31 13:07:26 -0400625 case IPW_FW_ERROR_ALLOC_FAIL:
James Ketrenosb095c382005-08-24 22:04:42 -0500626 return "ALLOC_FAIL";
Jeff Garzikbf794512005-07-31 13:07:26 -0400627 case IPW_FW_ERROR_DMA_UNDERRUN:
James Ketrenosb095c382005-08-24 22:04:42 -0500628 return "DMA_UNDERRUN";
Jeff Garzikbf794512005-07-31 13:07:26 -0400629 case IPW_FW_ERROR_DMA_STATUS:
James Ketrenosb095c382005-08-24 22:04:42 -0500630 return "DMA_STATUS";
631 case IPW_FW_ERROR_DINO_ERROR:
632 return "DINO_ERROR";
633 case IPW_FW_ERROR_EEPROM_ERROR:
634 return "EEPROM_ERROR";
Jeff Garzikbf794512005-07-31 13:07:26 -0400635 case IPW_FW_ERROR_SYSASSERT:
James Ketrenosb095c382005-08-24 22:04:42 -0500636 return "SYSASSERT";
Jeff Garzikbf794512005-07-31 13:07:26 -0400637 case IPW_FW_ERROR_FATAL_ERROR:
James Ketrenosb095c382005-08-24 22:04:42 -0500638 return "FATAL_ERROR";
Jeff Garzikbf794512005-07-31 13:07:26 -0400639 default:
James Ketrenosb095c382005-08-24 22:04:42 -0500640 return "UNKNOWN_ERROR";
James Ketrenos43f66a62005-03-25 12:31:53 -0600641 }
642}
643
James Ketrenosb39860c2005-08-12 09:36:32 -0500644static void ipw_dump_error_log(struct ipw_priv *priv,
645 struct ipw_fw_error *error)
James Ketrenos43f66a62005-03-25 12:31:53 -0600646{
James Ketrenosb39860c2005-08-12 09:36:32 -0500647 u32 i;
James Ketrenos43f66a62005-03-25 12:31:53 -0600648
James Ketrenosb39860c2005-08-12 09:36:32 -0500649 if (!error) {
650 IPW_ERROR("Error allocating and capturing error log. "
651 "Nothing to dump.\n");
652 return;
James Ketrenos43f66a62005-03-25 12:31:53 -0600653 }
654
James Ketrenosb39860c2005-08-12 09:36:32 -0500655 IPW_ERROR("Start IPW Error Log Dump:\n");
656 IPW_ERROR("Status: 0x%08X, Config: %08X\n",
657 error->status, error->config);
James Ketrenos43f66a62005-03-25 12:31:53 -0600658
James Ketrenosb39860c2005-08-12 09:36:32 -0500659 for (i = 0; i < error->elem_len; i++)
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400660 IPW_ERROR("%s %i 0x%08x 0x%08x 0x%08x 0x%08x 0x%08x\n",
James Ketrenosb39860c2005-08-12 09:36:32 -0500661 ipw_error_desc(error->elem[i].desc),
662 error->elem[i].time,
663 error->elem[i].blink1,
664 error->elem[i].blink2,
665 error->elem[i].link1,
666 error->elem[i].link2, error->elem[i].data);
667 for (i = 0; i < error->log_len; i++)
668 IPW_ERROR("%i\t0x%08x\t%i\n",
669 error->log[i].time,
James Ketrenos286568a2005-08-30 10:34:25 -0500670 error->log[i].data, error->log[i].event);
James Ketrenos43f66a62005-03-25 12:31:53 -0600671}
James Ketrenos43f66a62005-03-25 12:31:53 -0600672
James Ketrenosc848d0a2005-08-24 21:56:24 -0500673static inline int ipw_is_init(struct ipw_priv *priv)
674{
675 return (priv->status & STATUS_INIT) ? 1 : 0;
James Ketrenos43f66a62005-03-25 12:31:53 -0600676}
677
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400678static int ipw_get_ordinal(struct ipw_priv *priv, u32 ord, void *val, u32 * len)
James Ketrenos43f66a62005-03-25 12:31:53 -0600679{
680 u32 addr, field_info, field_len, field_count, total_len;
681
682 IPW_DEBUG_ORD("ordinal = %i\n", ord);
683
684 if (!priv || !val || !len) {
685 IPW_DEBUG_ORD("Invalid argument\n");
686 return -EINVAL;
687 }
Jeff Garzikbf794512005-07-31 13:07:26 -0400688
James Ketrenos43f66a62005-03-25 12:31:53 -0600689 /* verify device ordinal tables have been initialized */
690 if (!priv->table0_addr || !priv->table1_addr || !priv->table2_addr) {
691 IPW_DEBUG_ORD("Access ordinals before initialization\n");
692 return -EINVAL;
693 }
694
695 switch (IPW_ORD_TABLE_ID_MASK & ord) {
696 case IPW_ORD_TABLE_0_MASK:
697 /*
698 * TABLE 0: Direct access to a table of 32 bit values
699 *
Jeff Garzikbf794512005-07-31 13:07:26 -0400700 * This is a very simple table with the data directly
James Ketrenos43f66a62005-03-25 12:31:53 -0600701 * read from the table
702 */
703
704 /* remove the table id from the ordinal */
705 ord &= IPW_ORD_TABLE_VALUE_MASK;
706
707 /* boundary check */
708 if (ord > priv->table0_len) {
709 IPW_DEBUG_ORD("ordinal value (%i) longer then "
710 "max (%i)\n", ord, priv->table0_len);
711 return -EINVAL;
712 }
713
714 /* verify we have enough room to store the value */
715 if (*len < sizeof(u32)) {
716 IPW_DEBUG_ORD("ordinal buffer length too small, "
Jiri Bencaaa4d302005-06-07 14:58:41 +0200717 "need %zd\n", sizeof(u32));
James Ketrenos43f66a62005-03-25 12:31:53 -0600718 return -EINVAL;
719 }
720
721 IPW_DEBUG_ORD("Reading TABLE0[%i] from offset 0x%08x\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400722 ord, priv->table0_addr + (ord << 2));
James Ketrenos43f66a62005-03-25 12:31:53 -0600723
724 *len = sizeof(u32);
725 ord <<= 2;
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400726 *((u32 *) val) = ipw_read32(priv, priv->table0_addr + ord);
James Ketrenos43f66a62005-03-25 12:31:53 -0600727 break;
728
729 case IPW_ORD_TABLE_1_MASK:
730 /*
731 * TABLE 1: Indirect access to a table of 32 bit values
Jeff Garzikbf794512005-07-31 13:07:26 -0400732 *
733 * This is a fairly large table of u32 values each
James Ketrenos43f66a62005-03-25 12:31:53 -0600734 * representing starting addr for the data (which is
735 * also a u32)
736 */
737
738 /* remove the table id from the ordinal */
739 ord &= IPW_ORD_TABLE_VALUE_MASK;
Jeff Garzikbf794512005-07-31 13:07:26 -0400740
James Ketrenos43f66a62005-03-25 12:31:53 -0600741 /* boundary check */
742 if (ord > priv->table1_len) {
743 IPW_DEBUG_ORD("ordinal value too long\n");
744 return -EINVAL;
745 }
746
747 /* verify we have enough room to store the value */
748 if (*len < sizeof(u32)) {
749 IPW_DEBUG_ORD("ordinal buffer length too small, "
Jiri Bencaaa4d302005-06-07 14:58:41 +0200750 "need %zd\n", sizeof(u32));
James Ketrenos43f66a62005-03-25 12:31:53 -0600751 return -EINVAL;
752 }
753
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400754 *((u32 *) val) =
755 ipw_read_reg32(priv, (priv->table1_addr + (ord << 2)));
James Ketrenos43f66a62005-03-25 12:31:53 -0600756 *len = sizeof(u32);
757 break;
758
759 case IPW_ORD_TABLE_2_MASK:
760 /*
761 * TABLE 2: Indirect access to a table of variable sized values
762 *
763 * This table consist of six values, each containing
764 * - dword containing the starting offset of the data
765 * - dword containing the lengh in the first 16bits
766 * and the count in the second 16bits
767 */
768
769 /* remove the table id from the ordinal */
770 ord &= IPW_ORD_TABLE_VALUE_MASK;
771
772 /* boundary check */
773 if (ord > priv->table2_len) {
774 IPW_DEBUG_ORD("ordinal value too long\n");
775 return -EINVAL;
776 }
777
778 /* get the address of statistic */
779 addr = ipw_read_reg32(priv, priv->table2_addr + (ord << 3));
Jeff Garzikbf794512005-07-31 13:07:26 -0400780
781 /* get the second DW of statistics ;
James Ketrenos43f66a62005-03-25 12:31:53 -0600782 * two 16-bit words - first is length, second is count */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400783 field_info =
784 ipw_read_reg32(priv,
785 priv->table2_addr + (ord << 3) +
786 sizeof(u32));
Jeff Garzikbf794512005-07-31 13:07:26 -0400787
James Ketrenos43f66a62005-03-25 12:31:53 -0600788 /* get each entry length */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400789 field_len = *((u16 *) & field_info);
Jeff Garzikbf794512005-07-31 13:07:26 -0400790
James Ketrenos43f66a62005-03-25 12:31:53 -0600791 /* get number of entries */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400792 field_count = *(((u16 *) & field_info) + 1);
Jeff Garzikbf794512005-07-31 13:07:26 -0400793
James Ketrenos43f66a62005-03-25 12:31:53 -0600794 /* abort if not enought memory */
795 total_len = field_len * field_count;
796 if (total_len > *len) {
797 *len = total_len;
798 return -EINVAL;
799 }
Jeff Garzikbf794512005-07-31 13:07:26 -0400800
James Ketrenos43f66a62005-03-25 12:31:53 -0600801 *len = total_len;
802 if (!total_len)
803 return 0;
804
805 IPW_DEBUG_ORD("addr = 0x%08x, total_len = %i, "
Jeff Garzikbf794512005-07-31 13:07:26 -0400806 "field_info = 0x%08x\n",
James Ketrenos43f66a62005-03-25 12:31:53 -0600807 addr, total_len, field_info);
808 ipw_read_indirect(priv, addr, val, total_len);
809 break;
810
811 default:
812 IPW_DEBUG_ORD("Invalid ordinal!\n");
813 return -EINVAL;
814
815 }
816
James Ketrenos43f66a62005-03-25 12:31:53 -0600817 return 0;
818}
819
820static void ipw_init_ordinals(struct ipw_priv *priv)
821{
822 priv->table0_addr = IPW_ORDINALS_TABLE_LOWER;
Jeff Garzikbf794512005-07-31 13:07:26 -0400823 priv->table0_len = ipw_read32(priv, priv->table0_addr);
James Ketrenos43f66a62005-03-25 12:31:53 -0600824
825 IPW_DEBUG_ORD("table 0 offset at 0x%08x, len = %i\n",
826 priv->table0_addr, priv->table0_len);
827
828 priv->table1_addr = ipw_read32(priv, IPW_ORDINALS_TABLE_1);
829 priv->table1_len = ipw_read_reg32(priv, priv->table1_addr);
830
831 IPW_DEBUG_ORD("table 1 offset at 0x%08x, len = %i\n",
832 priv->table1_addr, priv->table1_len);
833
834 priv->table2_addr = ipw_read32(priv, IPW_ORDINALS_TABLE_2);
835 priv->table2_len = ipw_read_reg32(priv, priv->table2_addr);
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400836 priv->table2_len &= 0x0000ffff; /* use first two bytes */
James Ketrenos43f66a62005-03-25 12:31:53 -0600837
838 IPW_DEBUG_ORD("table 2 offset at 0x%08x, len = %i\n",
839 priv->table2_addr, priv->table2_len);
840
841}
842
Adrian Bunka73e22b2006-01-21 01:39:42 +0100843static u32 ipw_register_toggle(u32 reg)
James Ketrenosa613bff2005-08-24 21:43:11 -0500844{
James Ketrenosb095c382005-08-24 22:04:42 -0500845 reg &= ~IPW_START_STANDBY;
846 if (reg & IPW_GATE_ODMA)
847 reg &= ~IPW_GATE_ODMA;
848 if (reg & IPW_GATE_IDMA)
849 reg &= ~IPW_GATE_IDMA;
850 if (reg & IPW_GATE_ADMA)
851 reg &= ~IPW_GATE_ADMA;
James Ketrenosa613bff2005-08-24 21:43:11 -0500852 return reg;
853}
854
855/*
856 * LED behavior:
857 * - On radio ON, turn on any LEDs that require to be on during start
858 * - On initialization, start unassociated blink
859 * - On association, disable unassociated blink
860 * - On disassociation, start unassociated blink
861 * - On radio OFF, turn off any LEDs started during radio on
862 *
863 */
Zhu Yiede61112006-01-24 16:37:10 +0800864#define LD_TIME_LINK_ON msecs_to_jiffies(300)
865#define LD_TIME_LINK_OFF msecs_to_jiffies(2700)
866#define LD_TIME_ACT_ON msecs_to_jiffies(250)
James Ketrenosa613bff2005-08-24 21:43:11 -0500867
Adrian Bunka73e22b2006-01-21 01:39:42 +0100868static void ipw_led_link_on(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -0500869{
870 unsigned long flags;
871 u32 led;
872
873 /* If configured to not use LEDs, or nic_type is 1,
874 * then we don't toggle a LINK led */
875 if (priv->config & CFG_NO_LED || priv->nic_type == EEPROM_NIC_TYPE_1)
876 return;
877
878 spin_lock_irqsave(&priv->lock, flags);
879
880 if (!(priv->status & STATUS_RF_KILL_MASK) &&
881 !(priv->status & STATUS_LED_LINK_ON)) {
882 IPW_DEBUG_LED("Link LED On\n");
James Ketrenosb095c382005-08-24 22:04:42 -0500883 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -0500884 led |= priv->led_association_on;
885
886 led = ipw_register_toggle(led);
887
888 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -0500889 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -0500890
891 priv->status |= STATUS_LED_LINK_ON;
892
893 /* If we aren't associated, schedule turning the LED off */
894 if (!(priv->status & STATUS_ASSOCIATED))
895 queue_delayed_work(priv->workqueue,
896 &priv->led_link_off,
897 LD_TIME_LINK_ON);
898 }
899
900 spin_unlock_irqrestore(&priv->lock, flags);
901}
902
David Howellsc4028952006-11-22 14:57:56 +0000903static void ipw_bg_led_link_on(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -0500904{
David Howellsc4028952006-11-22 14:57:56 +0000905 struct ipw_priv *priv =
906 container_of(work, struct ipw_priv, led_link_on.work);
Zhu Yi46441512006-01-24 16:37:59 +0800907 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +0000908 ipw_led_link_on(priv);
Zhu Yi46441512006-01-24 16:37:59 +0800909 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -0500910}
911
Adrian Bunka73e22b2006-01-21 01:39:42 +0100912static void ipw_led_link_off(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -0500913{
914 unsigned long flags;
915 u32 led;
916
917 /* If configured not to use LEDs, or nic type is 1,
918 * then we don't goggle the LINK led. */
919 if (priv->config & CFG_NO_LED || priv->nic_type == EEPROM_NIC_TYPE_1)
920 return;
921
922 spin_lock_irqsave(&priv->lock, flags);
923
924 if (priv->status & STATUS_LED_LINK_ON) {
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_association_off;
927 led = ipw_register_toggle(led);
928
929 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -0500930 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -0500931
932 IPW_DEBUG_LED("Link LED Off\n");
933
934 priv->status &= ~STATUS_LED_LINK_ON;
935
936 /* If we aren't associated and the radio is on, schedule
937 * turning the LED on (blink while unassociated) */
938 if (!(priv->status & STATUS_RF_KILL_MASK) &&
939 !(priv->status & STATUS_ASSOCIATED))
940 queue_delayed_work(priv->workqueue, &priv->led_link_on,
941 LD_TIME_LINK_OFF);
942
943 }
944
945 spin_unlock_irqrestore(&priv->lock, flags);
946}
947
David Howellsc4028952006-11-22 14:57:56 +0000948static void ipw_bg_led_link_off(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -0500949{
David Howellsc4028952006-11-22 14:57:56 +0000950 struct ipw_priv *priv =
951 container_of(work, struct ipw_priv, led_link_off.work);
Zhu Yi46441512006-01-24 16:37:59 +0800952 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +0000953 ipw_led_link_off(priv);
Zhu Yi46441512006-01-24 16:37:59 +0800954 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -0500955}
956
Arjan van de Ven858119e2006-01-14 13:20:43 -0800957static void __ipw_led_activity_on(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -0500958{
James Ketrenosa613bff2005-08-24 21:43:11 -0500959 u32 led;
960
961 if (priv->config & CFG_NO_LED)
962 return;
963
James Ketrenosb095c382005-08-24 22:04:42 -0500964 if (priv->status & STATUS_RF_KILL_MASK)
James Ketrenosa613bff2005-08-24 21:43:11 -0500965 return;
James Ketrenosa613bff2005-08-24 21:43:11 -0500966
967 if (!(priv->status & STATUS_LED_ACT_ON)) {
James Ketrenosb095c382005-08-24 22:04:42 -0500968 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -0500969 led |= priv->led_activity_on;
970
971 led = ipw_register_toggle(led);
972
973 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -0500974 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -0500975
976 IPW_DEBUG_LED("Activity LED On\n");
977
978 priv->status |= STATUS_LED_ACT_ON;
979
James Ketrenosc848d0a2005-08-24 21:56:24 -0500980 cancel_delayed_work(&priv->led_act_off);
James Ketrenosa613bff2005-08-24 21:43:11 -0500981 queue_delayed_work(priv->workqueue, &priv->led_act_off,
982 LD_TIME_ACT_ON);
983 } else {
984 /* Reschedule LED off for full time period */
985 cancel_delayed_work(&priv->led_act_off);
986 queue_delayed_work(priv->workqueue, &priv->led_act_off,
987 LD_TIME_ACT_ON);
988 }
James Ketrenosb095c382005-08-24 22:04:42 -0500989}
James Ketrenosa613bff2005-08-24 21:43:11 -0500990
Adrian Bunka73e22b2006-01-21 01:39:42 +0100991#if 0
James Ketrenosb095c382005-08-24 22:04:42 -0500992void ipw_led_activity_on(struct ipw_priv *priv)
993{
994 unsigned long flags;
995 spin_lock_irqsave(&priv->lock, flags);
996 __ipw_led_activity_on(priv);
James Ketrenosa613bff2005-08-24 21:43:11 -0500997 spin_unlock_irqrestore(&priv->lock, flags);
998}
Adrian Bunka73e22b2006-01-21 01:39:42 +0100999#endif /* 0 */
James Ketrenosa613bff2005-08-24 21:43:11 -05001000
Adrian Bunka73e22b2006-01-21 01:39:42 +01001001static void ipw_led_activity_off(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -05001002{
1003 unsigned long flags;
1004 u32 led;
1005
1006 if (priv->config & CFG_NO_LED)
1007 return;
1008
1009 spin_lock_irqsave(&priv->lock, flags);
1010
1011 if (priv->status & STATUS_LED_ACT_ON) {
James Ketrenosb095c382005-08-24 22:04:42 -05001012 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -05001013 led &= priv->led_activity_off;
1014
1015 led = ipw_register_toggle(led);
1016
1017 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -05001018 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -05001019
1020 IPW_DEBUG_LED("Activity LED Off\n");
1021
1022 priv->status &= ~STATUS_LED_ACT_ON;
1023 }
1024
1025 spin_unlock_irqrestore(&priv->lock, flags);
1026}
1027
David Howellsc4028952006-11-22 14:57:56 +00001028static void ipw_bg_led_activity_off(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -05001029{
David Howellsc4028952006-11-22 14:57:56 +00001030 struct ipw_priv *priv =
1031 container_of(work, struct ipw_priv, led_act_off.work);
Zhu Yi46441512006-01-24 16:37:59 +08001032 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00001033 ipw_led_activity_off(priv);
Zhu Yi46441512006-01-24 16:37:59 +08001034 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05001035}
1036
Adrian Bunka73e22b2006-01-21 01:39:42 +01001037static void ipw_led_band_on(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -05001038{
1039 unsigned long flags;
1040 u32 led;
1041
1042 /* Only nic type 1 supports mode LEDs */
James Ketrenosc848d0a2005-08-24 21:56:24 -05001043 if (priv->config & CFG_NO_LED ||
1044 priv->nic_type != EEPROM_NIC_TYPE_1 || !priv->assoc_network)
James Ketrenosa613bff2005-08-24 21:43:11 -05001045 return;
1046
1047 spin_lock_irqsave(&priv->lock, flags);
1048
James Ketrenosb095c382005-08-24 22:04:42 -05001049 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -05001050 if (priv->assoc_network->mode == IEEE_A) {
1051 led |= priv->led_ofdm_on;
1052 led &= priv->led_association_off;
1053 IPW_DEBUG_LED("Mode LED On: 802.11a\n");
1054 } else if (priv->assoc_network->mode == IEEE_G) {
1055 led |= priv->led_ofdm_on;
1056 led |= priv->led_association_on;
1057 IPW_DEBUG_LED("Mode LED On: 802.11g\n");
1058 } else {
1059 led &= priv->led_ofdm_off;
1060 led |= priv->led_association_on;
1061 IPW_DEBUG_LED("Mode LED On: 802.11b\n");
1062 }
1063
1064 led = ipw_register_toggle(led);
1065
1066 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -05001067 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -05001068
1069 spin_unlock_irqrestore(&priv->lock, flags);
1070}
1071
Adrian Bunka73e22b2006-01-21 01:39:42 +01001072static void ipw_led_band_off(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -05001073{
1074 unsigned long flags;
1075 u32 led;
1076
1077 /* Only nic type 1 supports mode LEDs */
1078 if (priv->config & CFG_NO_LED || priv->nic_type != EEPROM_NIC_TYPE_1)
1079 return;
1080
1081 spin_lock_irqsave(&priv->lock, flags);
1082
James Ketrenosb095c382005-08-24 22:04:42 -05001083 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -05001084 led &= priv->led_ofdm_off;
1085 led &= priv->led_association_off;
1086
1087 led = ipw_register_toggle(led);
1088
1089 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -05001090 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -05001091
1092 spin_unlock_irqrestore(&priv->lock, flags);
1093}
1094
Adrian Bunka73e22b2006-01-21 01:39:42 +01001095static void ipw_led_radio_on(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -05001096{
1097 ipw_led_link_on(priv);
1098}
1099
Adrian Bunka73e22b2006-01-21 01:39:42 +01001100static void ipw_led_radio_off(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -05001101{
1102 ipw_led_activity_off(priv);
1103 ipw_led_link_off(priv);
1104}
1105
Adrian Bunka73e22b2006-01-21 01:39:42 +01001106static void ipw_led_link_up(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -05001107{
1108 /* Set the Link Led on for all nic types */
1109 ipw_led_link_on(priv);
1110}
1111
Adrian Bunka73e22b2006-01-21 01:39:42 +01001112static void ipw_led_link_down(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -05001113{
1114 ipw_led_activity_off(priv);
1115 ipw_led_link_off(priv);
1116
1117 if (priv->status & STATUS_RF_KILL_MASK)
1118 ipw_led_radio_off(priv);
1119}
1120
Adrian Bunka73e22b2006-01-21 01:39:42 +01001121static void ipw_led_init(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -05001122{
1123 priv->nic_type = priv->eeprom[EEPROM_NIC_TYPE];
1124
1125 /* Set the default PINs for the link and activity leds */
James Ketrenosb095c382005-08-24 22:04:42 -05001126 priv->led_activity_on = IPW_ACTIVITY_LED;
1127 priv->led_activity_off = ~(IPW_ACTIVITY_LED);
James Ketrenosa613bff2005-08-24 21:43:11 -05001128
James Ketrenosb095c382005-08-24 22:04:42 -05001129 priv->led_association_on = IPW_ASSOCIATED_LED;
1130 priv->led_association_off = ~(IPW_ASSOCIATED_LED);
James Ketrenosa613bff2005-08-24 21:43:11 -05001131
1132 /* Set the default PINs for the OFDM leds */
James Ketrenosb095c382005-08-24 22:04:42 -05001133 priv->led_ofdm_on = IPW_OFDM_LED;
1134 priv->led_ofdm_off = ~(IPW_OFDM_LED);
James Ketrenosa613bff2005-08-24 21:43:11 -05001135
1136 switch (priv->nic_type) {
1137 case EEPROM_NIC_TYPE_1:
1138 /* In this NIC type, the LEDs are reversed.... */
James Ketrenosb095c382005-08-24 22:04:42 -05001139 priv->led_activity_on = IPW_ASSOCIATED_LED;
1140 priv->led_activity_off = ~(IPW_ASSOCIATED_LED);
1141 priv->led_association_on = IPW_ACTIVITY_LED;
1142 priv->led_association_off = ~(IPW_ACTIVITY_LED);
James Ketrenosa613bff2005-08-24 21:43:11 -05001143
1144 if (!(priv->config & CFG_NO_LED))
1145 ipw_led_band_on(priv);
1146
1147 /* And we don't blink link LEDs for this nic, so
1148 * just return here */
1149 return;
1150
1151 case EEPROM_NIC_TYPE_3:
1152 case EEPROM_NIC_TYPE_2:
1153 case EEPROM_NIC_TYPE_4:
1154 case EEPROM_NIC_TYPE_0:
1155 break;
1156
1157 default:
1158 IPW_DEBUG_INFO("Unknown NIC type from EEPROM: %d\n",
1159 priv->nic_type);
1160 priv->nic_type = EEPROM_NIC_TYPE_0;
1161 break;
1162 }
1163
1164 if (!(priv->config & CFG_NO_LED)) {
1165 if (priv->status & STATUS_ASSOCIATED)
1166 ipw_led_link_on(priv);
1167 else
1168 ipw_led_link_off(priv);
1169 }
1170}
1171
Adrian Bunka73e22b2006-01-21 01:39:42 +01001172static void ipw_led_shutdown(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -05001173{
James Ketrenosa613bff2005-08-24 21:43:11 -05001174 ipw_led_activity_off(priv);
1175 ipw_led_link_off(priv);
1176 ipw_led_band_off(priv);
James Ketrenosafbf30a2005-08-25 00:05:33 -05001177 cancel_delayed_work(&priv->led_link_on);
1178 cancel_delayed_work(&priv->led_link_off);
1179 cancel_delayed_work(&priv->led_act_off);
James Ketrenosa613bff2005-08-24 21:43:11 -05001180}
1181
James Ketrenos43f66a62005-03-25 12:31:53 -06001182/*
1183 * The following adds a new attribute to the sysfs representation
1184 * of this device driver (i.e. a new file in /sys/bus/pci/drivers/ipw/)
1185 * used for controling the debug level.
Jeff Garzikbf794512005-07-31 13:07:26 -04001186 *
James Ketrenos43f66a62005-03-25 12:31:53 -06001187 * See the level definitions in ipw for details.
1188 */
1189static ssize_t show_debug_level(struct device_driver *d, char *buf)
1190{
1191 return sprintf(buf, "0x%08X\n", ipw_debug_level);
1192}
James Ketrenosa613bff2005-08-24 21:43:11 -05001193
1194static ssize_t store_debug_level(struct device_driver *d, const char *buf,
1195 size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001196{
1197 char *p = (char *)buf;
1198 u32 val;
1199
1200 if (p[1] == 'x' || p[1] == 'X' || p[0] == 'x' || p[0] == 'X') {
1201 p++;
1202 if (p[0] == 'x' || p[0] == 'X')
1203 p++;
1204 val = simple_strtoul(p, &p, 16);
1205 } else
1206 val = simple_strtoul(p, &p, 10);
Jeff Garzikbf794512005-07-31 13:07:26 -04001207 if (p == buf)
1208 printk(KERN_INFO DRV_NAME
James Ketrenos43f66a62005-03-25 12:31:53 -06001209 ": %s is not in hex or decimal form.\n", buf);
1210 else
1211 ipw_debug_level = val;
1212
1213 return strnlen(buf, count);
1214}
1215
Jeff Garzikbf794512005-07-31 13:07:26 -04001216static DRIVER_ATTR(debug_level, S_IWUSR | S_IRUGO,
James Ketrenos43f66a62005-03-25 12:31:53 -06001217 show_debug_level, store_debug_level);
1218
James Ketrenosb39860c2005-08-12 09:36:32 -05001219static inline u32 ipw_get_event_log_len(struct ipw_priv *priv)
1220{
Zhu Yic8fe6672006-01-24 16:36:36 +08001221 /* length = 1st dword in log */
James Ketrenosb39860c2005-08-12 09:36:32 -05001222 return ipw_read_reg32(priv, ipw_read32(priv, IPW_EVENT_LOG));
1223}
1224
1225static void ipw_capture_event_log(struct ipw_priv *priv,
1226 u32 log_len, struct ipw_event *log)
1227{
1228 u32 base;
1229
1230 if (log_len) {
1231 base = ipw_read32(priv, IPW_EVENT_LOG);
1232 ipw_read_indirect(priv, base + sizeof(base) + sizeof(u32),
1233 (u8 *) log, sizeof(*log) * log_len);
1234 }
1235}
1236
1237static struct ipw_fw_error *ipw_alloc_error_log(struct ipw_priv *priv)
1238{
1239 struct ipw_fw_error *error;
1240 u32 log_len = ipw_get_event_log_len(priv);
1241 u32 base = ipw_read32(priv, IPW_ERROR_LOG);
1242 u32 elem_len = ipw_read_reg32(priv, base);
1243
1244 error = kmalloc(sizeof(*error) +
1245 sizeof(*error->elem) * elem_len +
1246 sizeof(*error->log) * log_len, GFP_ATOMIC);
1247 if (!error) {
1248 IPW_ERROR("Memory allocation for firmware error log "
1249 "failed.\n");
1250 return NULL;
1251 }
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001252 error->jiffies = jiffies;
James Ketrenosb39860c2005-08-12 09:36:32 -05001253 error->status = priv->status;
1254 error->config = priv->config;
1255 error->elem_len = elem_len;
1256 error->log_len = log_len;
1257 error->elem = (struct ipw_error_elem *)error->payload;
Zhu Yi3b26b112005-11-17 13:58:30 +08001258 error->log = (struct ipw_event *)(error->elem + elem_len);
James Ketrenosb39860c2005-08-12 09:36:32 -05001259
1260 ipw_capture_event_log(priv, log_len, error->log);
1261
1262 if (elem_len)
1263 ipw_read_indirect(priv, base + sizeof(base), (u8 *) error->elem,
1264 sizeof(*error->elem) * elem_len);
1265
1266 return error;
1267}
1268
James Ketrenosb39860c2005-08-12 09:36:32 -05001269static ssize_t show_event_log(struct device *d,
1270 struct device_attribute *attr, char *buf)
1271{
1272 struct ipw_priv *priv = dev_get_drvdata(d);
1273 u32 log_len = ipw_get_event_log_len(priv);
Reinette Chatre412e9e72007-12-18 22:01:02 -08001274 u32 log_size;
1275 struct ipw_event *log;
James Ketrenosb39860c2005-08-12 09:36:32 -05001276 u32 len = 0, i;
1277
Reinette Chatre412e9e72007-12-18 22:01:02 -08001278 /* not using min() because of its strict type checking */
1279 log_size = PAGE_SIZE / sizeof(*log) > log_len ?
1280 sizeof(*log) * log_len : PAGE_SIZE;
1281 log = kzalloc(log_size, GFP_KERNEL);
1282 if (!log) {
1283 IPW_ERROR("Unable to allocate memory for log\n");
1284 return 0;
1285 }
1286 log_len = log_size / sizeof(*log);
James Ketrenosb39860c2005-08-12 09:36:32 -05001287 ipw_capture_event_log(priv, log_len, log);
1288
1289 len += snprintf(buf + len, PAGE_SIZE - len, "%08X", log_len);
1290 for (i = 0; i < log_len; i++)
1291 len += snprintf(buf + len, PAGE_SIZE - len,
1292 "\n%08X%08X%08X",
1293 log[i].time, log[i].event, log[i].data);
1294 len += snprintf(buf + len, PAGE_SIZE - len, "\n");
Reinette Chatre412e9e72007-12-18 22:01:02 -08001295 kfree(log);
James Ketrenosb39860c2005-08-12 09:36:32 -05001296 return len;
1297}
1298
1299static DEVICE_ATTR(event_log, S_IRUGO, show_event_log, NULL);
1300
1301static ssize_t show_error(struct device *d,
1302 struct device_attribute *attr, char *buf)
1303{
1304 struct ipw_priv *priv = dev_get_drvdata(d);
1305 u32 len = 0, i;
1306 if (!priv->error)
1307 return 0;
1308 len += snprintf(buf + len, PAGE_SIZE - len,
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001309 "%08lX%08X%08X%08X",
1310 priv->error->jiffies,
James Ketrenosb39860c2005-08-12 09:36:32 -05001311 priv->error->status,
1312 priv->error->config, priv->error->elem_len);
1313 for (i = 0; i < priv->error->elem_len; i++)
1314 len += snprintf(buf + len, PAGE_SIZE - len,
1315 "\n%08X%08X%08X%08X%08X%08X%08X",
1316 priv->error->elem[i].time,
1317 priv->error->elem[i].desc,
1318 priv->error->elem[i].blink1,
1319 priv->error->elem[i].blink2,
1320 priv->error->elem[i].link1,
1321 priv->error->elem[i].link2,
1322 priv->error->elem[i].data);
1323
1324 len += snprintf(buf + len, PAGE_SIZE - len,
1325 "\n%08X", priv->error->log_len);
1326 for (i = 0; i < priv->error->log_len; i++)
1327 len += snprintf(buf + len, PAGE_SIZE - len,
1328 "\n%08X%08X%08X",
1329 priv->error->log[i].time,
1330 priv->error->log[i].event,
1331 priv->error->log[i].data);
1332 len += snprintf(buf + len, PAGE_SIZE - len, "\n");
1333 return len;
1334}
1335
1336static ssize_t clear_error(struct device *d,
1337 struct device_attribute *attr,
1338 const char *buf, size_t count)
1339{
1340 struct ipw_priv *priv = dev_get_drvdata(d);
Jesper Juhl8f760782006-06-27 02:55:06 -07001341
1342 kfree(priv->error);
1343 priv->error = NULL;
James Ketrenosb39860c2005-08-12 09:36:32 -05001344 return count;
1345}
1346
1347static DEVICE_ATTR(error, S_IRUGO | S_IWUSR, show_error, clear_error);
1348
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001349static ssize_t show_cmd_log(struct device *d,
1350 struct device_attribute *attr, char *buf)
1351{
1352 struct ipw_priv *priv = dev_get_drvdata(d);
1353 u32 len = 0, i;
1354 if (!priv->cmdlog)
1355 return 0;
1356 for (i = (priv->cmdlog_pos + 1) % priv->cmdlog_len;
1357 (i != priv->cmdlog_pos) && (PAGE_SIZE - len);
1358 i = (i + 1) % priv->cmdlog_len) {
1359 len +=
1360 snprintf(buf + len, PAGE_SIZE - len,
1361 "\n%08lX%08X%08X%08X\n", priv->cmdlog[i].jiffies,
1362 priv->cmdlog[i].retcode, priv->cmdlog[i].cmd.cmd,
1363 priv->cmdlog[i].cmd.len);
1364 len +=
1365 snprintk_buf(buf + len, PAGE_SIZE - len,
1366 (u8 *) priv->cmdlog[i].cmd.param,
1367 priv->cmdlog[i].cmd.len);
1368 len += snprintf(buf + len, PAGE_SIZE - len, "\n");
1369 }
1370 len += snprintf(buf + len, PAGE_SIZE - len, "\n");
1371 return len;
1372}
1373
1374static DEVICE_ATTR(cmd_log, S_IRUGO, show_cmd_log, NULL);
1375
Zhu Yid685b8c2006-04-13 17:20:27 +08001376#ifdef CONFIG_IPW2200_PROMISCUOUS
1377static void ipw_prom_free(struct ipw_priv *priv);
1378static int ipw_prom_alloc(struct ipw_priv *priv);
1379static ssize_t store_rtap_iface(struct device *d,
1380 struct device_attribute *attr,
1381 const char *buf, size_t count)
1382{
1383 struct ipw_priv *priv = dev_get_drvdata(d);
1384 int rc = 0;
1385
1386 if (count < 1)
1387 return -EINVAL;
1388
1389 switch (buf[0]) {
1390 case '0':
1391 if (!rtap_iface)
1392 return count;
1393
1394 if (netif_running(priv->prom_net_dev)) {
1395 IPW_WARNING("Interface is up. Cannot unregister.\n");
1396 return count;
1397 }
1398
1399 ipw_prom_free(priv);
1400 rtap_iface = 0;
1401 break;
1402
1403 case '1':
1404 if (rtap_iface)
1405 return count;
1406
1407 rc = ipw_prom_alloc(priv);
1408 if (!rc)
1409 rtap_iface = 1;
1410 break;
1411
1412 default:
1413 return -EINVAL;
1414 }
1415
1416 if (rc) {
1417 IPW_ERROR("Failed to register promiscuous network "
1418 "device (error %d).\n", rc);
1419 }
1420
1421 return count;
1422}
1423
1424static ssize_t show_rtap_iface(struct device *d,
1425 struct device_attribute *attr,
1426 char *buf)
1427{
1428 struct ipw_priv *priv = dev_get_drvdata(d);
1429 if (rtap_iface)
1430 return sprintf(buf, "%s", priv->prom_net_dev->name);
1431 else {
1432 buf[0] = '-';
1433 buf[1] = '1';
1434 buf[2] = '\0';
1435 return 3;
1436 }
1437}
1438
1439static DEVICE_ATTR(rtap_iface, S_IWUSR | S_IRUSR, show_rtap_iface,
1440 store_rtap_iface);
1441
1442static ssize_t store_rtap_filter(struct device *d,
1443 struct device_attribute *attr,
1444 const char *buf, size_t count)
1445{
1446 struct ipw_priv *priv = dev_get_drvdata(d);
1447
1448 if (!priv->prom_priv) {
1449 IPW_ERROR("Attempting to set filter without "
1450 "rtap_iface enabled.\n");
1451 return -EPERM;
1452 }
1453
1454 priv->prom_priv->filter = simple_strtol(buf, NULL, 0);
1455
1456 IPW_DEBUG_INFO("Setting rtap filter to " BIT_FMT16 "\n",
1457 BIT_ARG16(priv->prom_priv->filter));
1458
1459 return count;
1460}
1461
1462static ssize_t show_rtap_filter(struct device *d,
1463 struct device_attribute *attr,
1464 char *buf)
1465{
1466 struct ipw_priv *priv = dev_get_drvdata(d);
1467 return sprintf(buf, "0x%04X",
1468 priv->prom_priv ? priv->prom_priv->filter : 0);
1469}
1470
1471static DEVICE_ATTR(rtap_filter, S_IWUSR | S_IRUSR, show_rtap_filter,
1472 store_rtap_filter);
1473#endif
1474
James Ketrenosa613bff2005-08-24 21:43:11 -05001475static ssize_t show_scan_age(struct device *d, struct device_attribute *attr,
1476 char *buf)
1477{
1478 struct ipw_priv *priv = dev_get_drvdata(d);
1479 return sprintf(buf, "%d\n", priv->ieee->scan_age);
1480}
1481
1482static ssize_t store_scan_age(struct device *d, struct device_attribute *attr,
1483 const char *buf, size_t count)
1484{
1485 struct ipw_priv *priv = dev_get_drvdata(d);
1486 struct net_device *dev = priv->net_dev;
1487 char buffer[] = "00000000";
1488 unsigned long len =
1489 (sizeof(buffer) - 1) > count ? count : sizeof(buffer) - 1;
1490 unsigned long val;
1491 char *p = buffer;
1492
1493 IPW_DEBUG_INFO("enter\n");
1494
1495 strncpy(buffer, buf, len);
1496 buffer[len] = 0;
1497
1498 if (p[1] == 'x' || p[1] == 'X' || p[0] == 'x' || p[0] == 'X') {
1499 p++;
1500 if (p[0] == 'x' || p[0] == 'X')
1501 p++;
1502 val = simple_strtoul(p, &p, 16);
1503 } else
1504 val = simple_strtoul(p, &p, 10);
1505 if (p == buffer) {
1506 IPW_DEBUG_INFO("%s: user supplied invalid value.\n", dev->name);
1507 } else {
1508 priv->ieee->scan_age = val;
1509 IPW_DEBUG_INFO("set scan_age = %u\n", priv->ieee->scan_age);
1510 }
1511
1512 IPW_DEBUG_INFO("exit\n");
1513 return len;
1514}
1515
1516static DEVICE_ATTR(scan_age, S_IWUSR | S_IRUGO, show_scan_age, store_scan_age);
1517
1518static ssize_t show_led(struct device *d, struct device_attribute *attr,
1519 char *buf)
1520{
1521 struct ipw_priv *priv = dev_get_drvdata(d);
1522 return sprintf(buf, "%d\n", (priv->config & CFG_NO_LED) ? 0 : 1);
1523}
1524
1525static ssize_t store_led(struct device *d, struct device_attribute *attr,
1526 const char *buf, size_t count)
1527{
1528 struct ipw_priv *priv = dev_get_drvdata(d);
1529
1530 IPW_DEBUG_INFO("enter\n");
1531
1532 if (count == 0)
1533 return 0;
1534
1535 if (*buf == 0) {
1536 IPW_DEBUG_LED("Disabling LED control.\n");
1537 priv->config |= CFG_NO_LED;
1538 ipw_led_shutdown(priv);
1539 } else {
1540 IPW_DEBUG_LED("Enabling LED control.\n");
1541 priv->config &= ~CFG_NO_LED;
1542 ipw_led_init(priv);
1543 }
1544
1545 IPW_DEBUG_INFO("exit\n");
1546 return count;
1547}
1548
1549static DEVICE_ATTR(led, S_IWUSR | S_IRUGO, show_led, store_led);
1550
Andrew Mortonad3fee52005-06-20 14:30:36 -07001551static ssize_t show_status(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001552 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001553{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001554 struct ipw_priv *p = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001555 return sprintf(buf, "0x%08x\n", (int)p->status);
1556}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001557
James Ketrenos43f66a62005-03-25 12:31:53 -06001558static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
1559
Andrew Mortonad3fee52005-06-20 14:30:36 -07001560static ssize_t show_cfg(struct device *d, struct device_attribute *attr,
1561 char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001562{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001563 struct ipw_priv *p = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001564 return sprintf(buf, "0x%08x\n", (int)p->config);
1565}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001566
James Ketrenos43f66a62005-03-25 12:31:53 -06001567static DEVICE_ATTR(cfg, S_IRUGO, show_cfg, NULL);
1568
Andrew Mortonad3fee52005-06-20 14:30:36 -07001569static ssize_t show_nic_type(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001570 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001571{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001572 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenosa613bff2005-08-24 21:43:11 -05001573 return sprintf(buf, "TYPE: %d\n", priv->nic_type);
James Ketrenos43f66a62005-03-25 12:31:53 -06001574}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001575
James Ketrenos43f66a62005-03-25 12:31:53 -06001576static DEVICE_ATTR(nic_type, S_IRUGO, show_nic_type, NULL);
1577
Andrew Mortonad3fee52005-06-20 14:30:36 -07001578static ssize_t show_ucode_version(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001579 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001580{
1581 u32 len = sizeof(u32), tmp = 0;
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001582 struct ipw_priv *p = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001583
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001584 if (ipw_get_ordinal(p, IPW_ORD_STAT_UCODE_VERSION, &tmp, &len))
James Ketrenos43f66a62005-03-25 12:31:53 -06001585 return 0;
1586
1587 return sprintf(buf, "0x%08x\n", tmp);
1588}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001589
1590static DEVICE_ATTR(ucode_version, S_IWUSR | S_IRUGO, show_ucode_version, NULL);
James Ketrenos43f66a62005-03-25 12:31:53 -06001591
Andrew Mortonad3fee52005-06-20 14:30:36 -07001592static ssize_t show_rtc(struct device *d, struct device_attribute *attr,
1593 char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001594{
1595 u32 len = sizeof(u32), tmp = 0;
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001596 struct ipw_priv *p = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001597
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001598 if (ipw_get_ordinal(p, IPW_ORD_STAT_RTC, &tmp, &len))
James Ketrenos43f66a62005-03-25 12:31:53 -06001599 return 0;
1600
1601 return sprintf(buf, "0x%08x\n", tmp);
1602}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001603
1604static DEVICE_ATTR(rtc, S_IWUSR | S_IRUGO, show_rtc, NULL);
James Ketrenos43f66a62005-03-25 12:31:53 -06001605
1606/*
1607 * Add a device attribute to view/control the delay between eeprom
1608 * operations.
1609 */
Andrew Mortonad3fee52005-06-20 14:30:36 -07001610static ssize_t show_eeprom_delay(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001611 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001612{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001613 struct ipw_priv *p = dev_get_drvdata(d);
1614 int n = p->eeprom_delay;
James Ketrenos43f66a62005-03-25 12:31:53 -06001615 return sprintf(buf, "%i\n", n);
1616}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001617static ssize_t store_eeprom_delay(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001618 struct device_attribute *attr,
1619 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001620{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001621 struct ipw_priv *p = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001622 sscanf(buf, "%i", &p->eeprom_delay);
1623 return strnlen(buf, count);
1624}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001625
1626static DEVICE_ATTR(eeprom_delay, S_IWUSR | S_IRUGO,
1627 show_eeprom_delay, store_eeprom_delay);
James Ketrenos43f66a62005-03-25 12:31:53 -06001628
Andrew Mortonad3fee52005-06-20 14:30:36 -07001629static ssize_t show_command_event_reg(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001630 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001631{
1632 u32 reg = 0;
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001633 struct ipw_priv *p = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001634
James Ketrenosb095c382005-08-24 22:04:42 -05001635 reg = ipw_read_reg32(p, IPW_INTERNAL_CMD_EVENT);
James Ketrenos43f66a62005-03-25 12:31:53 -06001636 return sprintf(buf, "0x%08x\n", reg);
1637}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001638static ssize_t store_command_event_reg(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001639 struct device_attribute *attr,
1640 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001641{
1642 u32 reg;
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001643 struct ipw_priv *p = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001644
1645 sscanf(buf, "%x", &reg);
James Ketrenosb095c382005-08-24 22:04:42 -05001646 ipw_write_reg32(p, IPW_INTERNAL_CMD_EVENT, reg);
James Ketrenos43f66a62005-03-25 12:31:53 -06001647 return strnlen(buf, count);
1648}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001649
1650static DEVICE_ATTR(command_event_reg, S_IWUSR | S_IRUGO,
1651 show_command_event_reg, store_command_event_reg);
James Ketrenos43f66a62005-03-25 12:31:53 -06001652
Andrew Mortonad3fee52005-06-20 14:30:36 -07001653static ssize_t show_mem_gpio_reg(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001654 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001655{
1656 u32 reg = 0;
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001657 struct ipw_priv *p = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001658
1659 reg = ipw_read_reg32(p, 0x301100);
1660 return sprintf(buf, "0x%08x\n", reg);
1661}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001662static ssize_t store_mem_gpio_reg(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001663 struct device_attribute *attr,
1664 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001665{
1666 u32 reg;
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001667 struct ipw_priv *p = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001668
1669 sscanf(buf, "%x", &reg);
1670 ipw_write_reg32(p, 0x301100, reg);
1671 return strnlen(buf, count);
1672}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001673
1674static DEVICE_ATTR(mem_gpio_reg, S_IWUSR | S_IRUGO,
1675 show_mem_gpio_reg, store_mem_gpio_reg);
James Ketrenos43f66a62005-03-25 12:31:53 -06001676
Andrew Mortonad3fee52005-06-20 14:30:36 -07001677static ssize_t show_indirect_dword(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001678 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001679{
1680 u32 reg = 0;
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001681 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenosafbf30a2005-08-25 00:05:33 -05001682
Jeff Garzikbf794512005-07-31 13:07:26 -04001683 if (priv->status & STATUS_INDIRECT_DWORD)
James Ketrenos43f66a62005-03-25 12:31:53 -06001684 reg = ipw_read_reg32(priv, priv->indirect_dword);
Jeff Garzikbf794512005-07-31 13:07:26 -04001685 else
James Ketrenos43f66a62005-03-25 12:31:53 -06001686 reg = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04001687
James Ketrenos43f66a62005-03-25 12:31:53 -06001688 return sprintf(buf, "0x%08x\n", reg);
1689}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001690static ssize_t store_indirect_dword(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001691 struct device_attribute *attr,
1692 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001693{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001694 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001695
1696 sscanf(buf, "%x", &priv->indirect_dword);
1697 priv->status |= STATUS_INDIRECT_DWORD;
1698 return strnlen(buf, count);
1699}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001700
1701static DEVICE_ATTR(indirect_dword, S_IWUSR | S_IRUGO,
1702 show_indirect_dword, store_indirect_dword);
James Ketrenos43f66a62005-03-25 12:31:53 -06001703
Andrew Mortonad3fee52005-06-20 14:30:36 -07001704static ssize_t show_indirect_byte(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001705 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001706{
1707 u8 reg = 0;
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001708 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenosafbf30a2005-08-25 00:05:33 -05001709
Jeff Garzikbf794512005-07-31 13:07:26 -04001710 if (priv->status & STATUS_INDIRECT_BYTE)
James Ketrenos43f66a62005-03-25 12:31:53 -06001711 reg = ipw_read_reg8(priv, priv->indirect_byte);
Jeff Garzikbf794512005-07-31 13:07:26 -04001712 else
James Ketrenos43f66a62005-03-25 12:31:53 -06001713 reg = 0;
1714
1715 return sprintf(buf, "0x%02x\n", reg);
1716}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001717static ssize_t store_indirect_byte(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001718 struct device_attribute *attr,
1719 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001720{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001721 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001722
1723 sscanf(buf, "%x", &priv->indirect_byte);
1724 priv->status |= STATUS_INDIRECT_BYTE;
1725 return strnlen(buf, count);
1726}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001727
1728static DEVICE_ATTR(indirect_byte, S_IWUSR | S_IRUGO,
James Ketrenos43f66a62005-03-25 12:31:53 -06001729 show_indirect_byte, store_indirect_byte);
1730
Andrew Mortonad3fee52005-06-20 14:30:36 -07001731static ssize_t show_direct_dword(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001732 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001733{
1734 u32 reg = 0;
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001735 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001736
Jeff Garzikbf794512005-07-31 13:07:26 -04001737 if (priv->status & STATUS_DIRECT_DWORD)
James Ketrenos43f66a62005-03-25 12:31:53 -06001738 reg = ipw_read32(priv, priv->direct_dword);
Jeff Garzikbf794512005-07-31 13:07:26 -04001739 else
James Ketrenos43f66a62005-03-25 12:31:53 -06001740 reg = 0;
1741
1742 return sprintf(buf, "0x%08x\n", reg);
1743}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001744static ssize_t store_direct_dword(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001745 struct device_attribute *attr,
1746 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001747{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001748 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001749
1750 sscanf(buf, "%x", &priv->direct_dword);
1751 priv->status |= STATUS_DIRECT_DWORD;
1752 return strnlen(buf, count);
1753}
James Ketrenos43f66a62005-03-25 12:31:53 -06001754
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001755static DEVICE_ATTR(direct_dword, S_IWUSR | S_IRUGO,
1756 show_direct_dword, store_direct_dword);
James Ketrenos43f66a62005-03-25 12:31:53 -06001757
Arjan van de Ven858119e2006-01-14 13:20:43 -08001758static int rf_kill_active(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06001759{
Matthew Garrett25f94ae2009-11-11 14:36:31 -05001760 if (0 == (ipw_read32(priv, 0x30) & 0x10000)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001761 priv->status |= STATUS_RF_KILL_HW;
Matthew Garrett25f94ae2009-11-11 14:36:31 -05001762 wiphy_rfkill_set_hw_state(priv->ieee->wdev.wiphy, true);
1763 } else {
James Ketrenos43f66a62005-03-25 12:31:53 -06001764 priv->status &= ~STATUS_RF_KILL_HW;
Matthew Garrett25f94ae2009-11-11 14:36:31 -05001765 wiphy_rfkill_set_hw_state(priv->ieee->wdev.wiphy, false);
1766 }
James Ketrenos43f66a62005-03-25 12:31:53 -06001767
1768 return (priv->status & STATUS_RF_KILL_HW) ? 1 : 0;
1769}
1770
Andrew Mortonad3fee52005-06-20 14:30:36 -07001771static ssize_t show_rf_kill(struct device *d, struct device_attribute *attr,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001772 char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001773{
1774 /* 0 - RF kill not enabled
Jeff Garzikbf794512005-07-31 13:07:26 -04001775 1 - SW based RF kill active (sysfs)
James Ketrenos43f66a62005-03-25 12:31:53 -06001776 2 - HW based RF kill active
1777 3 - Both HW and SW baed RF kill active */
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001778 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001779 int val = ((priv->status & STATUS_RF_KILL_SW) ? 0x1 : 0x0) |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001780 (rf_kill_active(priv) ? 0x2 : 0x0);
James Ketrenos43f66a62005-03-25 12:31:53 -06001781 return sprintf(buf, "%i\n", val);
1782}
1783
1784static int ipw_radio_kill_sw(struct ipw_priv *priv, int disable_radio)
1785{
Jeff Garzikbf794512005-07-31 13:07:26 -04001786 if ((disable_radio ? 1 : 0) ==
James Ketrenosea2b26e2005-08-24 21:25:16 -05001787 ((priv->status & STATUS_RF_KILL_SW) ? 1 : 0))
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001788 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06001789
1790 IPW_DEBUG_RF_KILL("Manual SW RF Kill set to: RADIO %s\n",
1791 disable_radio ? "OFF" : "ON");
1792
1793 if (disable_radio) {
1794 priv->status |= STATUS_RF_KILL_SW;
1795
Dan Williams0b531672007-10-09 13:55:24 -04001796 if (priv->workqueue) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001797 cancel_delayed_work(&priv->request_scan);
Dan Williamsea177302008-06-02 17:51:23 -04001798 cancel_delayed_work(&priv->request_direct_scan);
1799 cancel_delayed_work(&priv->request_passive_scan);
Dan Williams0b531672007-10-09 13:55:24 -04001800 cancel_delayed_work(&priv->scan_event);
1801 }
James Ketrenos43f66a62005-03-25 12:31:53 -06001802 queue_work(priv->workqueue, &priv->down);
1803 } else {
1804 priv->status &= ~STATUS_RF_KILL_SW;
1805 if (rf_kill_active(priv)) {
1806 IPW_DEBUG_RF_KILL("Can not turn radio back on - "
1807 "disabled by HW switch\n");
1808 /* Make sure the RF_KILL check timer is running */
1809 cancel_delayed_work(&priv->rf_kill);
Jeff Garzikbf794512005-07-31 13:07:26 -04001810 queue_delayed_work(priv->workqueue, &priv->rf_kill,
Anton Blanchardbe84e3d2007-10-15 00:38:01 -05001811 round_jiffies_relative(2 * HZ));
Jeff Garzikbf794512005-07-31 13:07:26 -04001812 } else
James Ketrenos43f66a62005-03-25 12:31:53 -06001813 queue_work(priv->workqueue, &priv->up);
1814 }
1815
1816 return 1;
1817}
1818
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001819static ssize_t store_rf_kill(struct device *d, struct device_attribute *attr,
1820 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001821{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001822 struct ipw_priv *priv = dev_get_drvdata(d);
Jeff Garzikbf794512005-07-31 13:07:26 -04001823
James Ketrenos43f66a62005-03-25 12:31:53 -06001824 ipw_radio_kill_sw(priv, buf[0] == '1');
1825
1826 return count;
1827}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001828
1829static DEVICE_ATTR(rf_kill, S_IWUSR | S_IRUGO, show_rf_kill, store_rf_kill);
James Ketrenos43f66a62005-03-25 12:31:53 -06001830
James Ketrenosb095c382005-08-24 22:04:42 -05001831static ssize_t show_speed_scan(struct device *d, struct device_attribute *attr,
1832 char *buf)
1833{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001834 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenosb095c382005-08-24 22:04:42 -05001835 int pos = 0, len = 0;
1836 if (priv->config & CFG_SPEED_SCAN) {
1837 while (priv->speed_scan[pos] != 0)
1838 len += sprintf(&buf[len], "%d ",
1839 priv->speed_scan[pos++]);
1840 return len + sprintf(&buf[len], "\n");
1841 }
1842
1843 return sprintf(buf, "0\n");
1844}
1845
1846static ssize_t store_speed_scan(struct device *d, struct device_attribute *attr,
1847 const char *buf, size_t count)
1848{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001849 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenosb095c382005-08-24 22:04:42 -05001850 int channel, pos = 0;
1851 const char *p = buf;
1852
1853 /* list of space separated channels to scan, optionally ending with 0 */
1854 while ((channel = simple_strtol(p, NULL, 0))) {
1855 if (pos == MAX_SPEED_SCAN - 1) {
1856 priv->speed_scan[pos] = 0;
1857 break;
1858 }
1859
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001860 if (libipw_is_valid_channel(priv->ieee, channel))
James Ketrenosb095c382005-08-24 22:04:42 -05001861 priv->speed_scan[pos++] = channel;
1862 else
1863 IPW_WARNING("Skipping invalid channel request: %d\n",
1864 channel);
1865 p = strchr(p, ' ');
1866 if (!p)
1867 break;
1868 while (*p == ' ' || *p == '\t')
1869 p++;
1870 }
1871
1872 if (pos == 0)
1873 priv->config &= ~CFG_SPEED_SCAN;
1874 else {
1875 priv->speed_scan_pos = 0;
1876 priv->config |= CFG_SPEED_SCAN;
1877 }
1878
1879 return count;
1880}
1881
1882static DEVICE_ATTR(speed_scan, S_IWUSR | S_IRUGO, show_speed_scan,
1883 store_speed_scan);
1884
1885static ssize_t show_net_stats(struct device *d, struct device_attribute *attr,
1886 char *buf)
1887{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001888 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenosb095c382005-08-24 22:04:42 -05001889 return sprintf(buf, "%c\n", (priv->config & CFG_NET_STATS) ? '1' : '0');
1890}
1891
1892static ssize_t store_net_stats(struct device *d, struct device_attribute *attr,
1893 const char *buf, size_t count)
1894{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001895 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenosb095c382005-08-24 22:04:42 -05001896 if (buf[0] == '1')
1897 priv->config |= CFG_NET_STATS;
1898 else
1899 priv->config &= ~CFG_NET_STATS;
1900
1901 return count;
1902}
1903
James Ketrenosafbf30a2005-08-25 00:05:33 -05001904static DEVICE_ATTR(net_stats, S_IWUSR | S_IRUGO,
1905 show_net_stats, store_net_stats);
James Ketrenosb095c382005-08-24 22:04:42 -05001906
Zhu Yi375dd242007-02-14 16:04:24 +08001907static ssize_t show_channels(struct device *d,
1908 struct device_attribute *attr,
1909 char *buf)
1910{
1911 struct ipw_priv *priv = dev_get_drvdata(d);
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001912 const struct libipw_geo *geo = libipw_get_geo(priv->ieee);
Zhu Yi375dd242007-02-14 16:04:24 +08001913 int len = 0, i;
1914
1915 len = sprintf(&buf[len],
1916 "Displaying %d channels in 2.4Ghz band "
1917 "(802.11bg):\n", geo->bg_channels);
1918
1919 for (i = 0; i < geo->bg_channels; i++) {
1920 len += sprintf(&buf[len], "%d: BSS%s%s, %s, Band %s.\n",
1921 geo->bg[i].channel,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001922 geo->bg[i].flags & LIBIPW_CH_RADAR_DETECT ?
Zhu Yi375dd242007-02-14 16:04:24 +08001923 " (radar spectrum)" : "",
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001924 ((geo->bg[i].flags & LIBIPW_CH_NO_IBSS) ||
1925 (geo->bg[i].flags & LIBIPW_CH_RADAR_DETECT))
Zhu Yi375dd242007-02-14 16:04:24 +08001926 ? "" : ", IBSS",
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001927 geo->bg[i].flags & LIBIPW_CH_PASSIVE_ONLY ?
Zhu Yi375dd242007-02-14 16:04:24 +08001928 "passive only" : "active/passive",
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001929 geo->bg[i].flags & LIBIPW_CH_B_ONLY ?
Zhu Yi375dd242007-02-14 16:04:24 +08001930 "B" : "B/G");
1931 }
1932
1933 len += sprintf(&buf[len],
1934 "Displaying %d channels in 5.2Ghz band "
1935 "(802.11a):\n", geo->a_channels);
1936 for (i = 0; i < geo->a_channels; i++) {
1937 len += sprintf(&buf[len], "%d: BSS%s%s, %s.\n",
1938 geo->a[i].channel,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001939 geo->a[i].flags & LIBIPW_CH_RADAR_DETECT ?
Zhu Yi375dd242007-02-14 16:04:24 +08001940 " (radar spectrum)" : "",
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001941 ((geo->a[i].flags & LIBIPW_CH_NO_IBSS) ||
1942 (geo->a[i].flags & LIBIPW_CH_RADAR_DETECT))
Zhu Yi375dd242007-02-14 16:04:24 +08001943 ? "" : ", IBSS",
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001944 geo->a[i].flags & LIBIPW_CH_PASSIVE_ONLY ?
Zhu Yi375dd242007-02-14 16:04:24 +08001945 "passive only" : "active/passive");
1946 }
1947
1948 return len;
1949}
1950
1951static DEVICE_ATTR(channels, S_IRUSR, show_channels, NULL);
1952
James Ketrenosea2b26e2005-08-24 21:25:16 -05001953static void notify_wx_assoc_event(struct ipw_priv *priv)
1954{
1955 union iwreq_data wrqu;
1956 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
1957 if (priv->status & STATUS_ASSOCIATED)
1958 memcpy(wrqu.ap_addr.sa_data, priv->bssid, ETH_ALEN);
1959 else
1960 memset(wrqu.ap_addr.sa_data, 0, ETH_ALEN);
1961 wireless_send_event(priv->net_dev, SIOCGIWAP, &wrqu, NULL);
1962}
1963
James Ketrenos43f66a62005-03-25 12:31:53 -06001964static void ipw_irq_tasklet(struct ipw_priv *priv)
1965{
1966 u32 inta, inta_mask, handled = 0;
1967 unsigned long flags;
1968 int rc = 0;
1969
Zhu Yi89c318e2006-06-08 22:19:49 -07001970 spin_lock_irqsave(&priv->irq_lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06001971
James Ketrenosb095c382005-08-24 22:04:42 -05001972 inta = ipw_read32(priv, IPW_INTA_RW);
1973 inta_mask = ipw_read32(priv, IPW_INTA_MASK_R);
1974 inta &= (IPW_INTA_MASK_ALL & inta_mask);
James Ketrenos43f66a62005-03-25 12:31:53 -06001975
1976 /* Add any cached INTA values that need to be handled */
1977 inta |= priv->isr_inta;
1978
Zhu Yi89c318e2006-06-08 22:19:49 -07001979 spin_unlock_irqrestore(&priv->irq_lock, flags);
1980
1981 spin_lock_irqsave(&priv->lock, flags);
1982
James Ketrenos43f66a62005-03-25 12:31:53 -06001983 /* handle all the justifications for the interrupt */
James Ketrenosb095c382005-08-24 22:04:42 -05001984 if (inta & IPW_INTA_BIT_RX_TRANSFER) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001985 ipw_rx(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05001986 handled |= IPW_INTA_BIT_RX_TRANSFER;
James Ketrenos43f66a62005-03-25 12:31:53 -06001987 }
1988
James Ketrenosb095c382005-08-24 22:04:42 -05001989 if (inta & IPW_INTA_BIT_TX_CMD_QUEUE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001990 IPW_DEBUG_HC("Command completed.\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001991 rc = ipw_queue_tx_reclaim(priv, &priv->txq_cmd, -1);
James Ketrenos43f66a62005-03-25 12:31:53 -06001992 priv->status &= ~STATUS_HCMD_ACTIVE;
1993 wake_up_interruptible(&priv->wait_command_queue);
James Ketrenosb095c382005-08-24 22:04:42 -05001994 handled |= IPW_INTA_BIT_TX_CMD_QUEUE;
James Ketrenos43f66a62005-03-25 12:31:53 -06001995 }
1996
James Ketrenosb095c382005-08-24 22:04:42 -05001997 if (inta & IPW_INTA_BIT_TX_QUEUE_1) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001998 IPW_DEBUG_TX("TX_QUEUE_1\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001999 rc = ipw_queue_tx_reclaim(priv, &priv->txq[0], 0);
James Ketrenosb095c382005-08-24 22:04:42 -05002000 handled |= IPW_INTA_BIT_TX_QUEUE_1;
James Ketrenos43f66a62005-03-25 12:31:53 -06002001 }
2002
James Ketrenosb095c382005-08-24 22:04:42 -05002003 if (inta & IPW_INTA_BIT_TX_QUEUE_2) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002004 IPW_DEBUG_TX("TX_QUEUE_2\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002005 rc = ipw_queue_tx_reclaim(priv, &priv->txq[1], 1);
James Ketrenosb095c382005-08-24 22:04:42 -05002006 handled |= IPW_INTA_BIT_TX_QUEUE_2;
James Ketrenos43f66a62005-03-25 12:31:53 -06002007 }
2008
James Ketrenosb095c382005-08-24 22:04:42 -05002009 if (inta & IPW_INTA_BIT_TX_QUEUE_3) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002010 IPW_DEBUG_TX("TX_QUEUE_3\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002011 rc = ipw_queue_tx_reclaim(priv, &priv->txq[2], 2);
James Ketrenosb095c382005-08-24 22:04:42 -05002012 handled |= IPW_INTA_BIT_TX_QUEUE_3;
James Ketrenos43f66a62005-03-25 12:31:53 -06002013 }
2014
James Ketrenosb095c382005-08-24 22:04:42 -05002015 if (inta & IPW_INTA_BIT_TX_QUEUE_4) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002016 IPW_DEBUG_TX("TX_QUEUE_4\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002017 rc = ipw_queue_tx_reclaim(priv, &priv->txq[3], 3);
James Ketrenosb095c382005-08-24 22:04:42 -05002018 handled |= IPW_INTA_BIT_TX_QUEUE_4;
James Ketrenos43f66a62005-03-25 12:31:53 -06002019 }
2020
James Ketrenosb095c382005-08-24 22:04:42 -05002021 if (inta & IPW_INTA_BIT_STATUS_CHANGE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002022 IPW_WARNING("STATUS_CHANGE\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002023 handled |= IPW_INTA_BIT_STATUS_CHANGE;
James Ketrenos43f66a62005-03-25 12:31:53 -06002024 }
2025
James Ketrenosb095c382005-08-24 22:04:42 -05002026 if (inta & IPW_INTA_BIT_BEACON_PERIOD_EXPIRED) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002027 IPW_WARNING("TX_PERIOD_EXPIRED\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002028 handled |= IPW_INTA_BIT_BEACON_PERIOD_EXPIRED;
James Ketrenos43f66a62005-03-25 12:31:53 -06002029 }
2030
James Ketrenosb095c382005-08-24 22:04:42 -05002031 if (inta & IPW_INTA_BIT_SLAVE_MODE_HOST_CMD_DONE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002032 IPW_WARNING("HOST_CMD_DONE\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002033 handled |= IPW_INTA_BIT_SLAVE_MODE_HOST_CMD_DONE;
James Ketrenos43f66a62005-03-25 12:31:53 -06002034 }
2035
James Ketrenosb095c382005-08-24 22:04:42 -05002036 if (inta & IPW_INTA_BIT_FW_INITIALIZATION_DONE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002037 IPW_WARNING("FW_INITIALIZATION_DONE\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002038 handled |= IPW_INTA_BIT_FW_INITIALIZATION_DONE;
James Ketrenos43f66a62005-03-25 12:31:53 -06002039 }
2040
James Ketrenosb095c382005-08-24 22:04:42 -05002041 if (inta & IPW_INTA_BIT_FW_CARD_DISABLE_PHY_OFF_DONE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002042 IPW_WARNING("PHY_OFF_DONE\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002043 handled |= IPW_INTA_BIT_FW_CARD_DISABLE_PHY_OFF_DONE;
James Ketrenos43f66a62005-03-25 12:31:53 -06002044 }
2045
James Ketrenosb095c382005-08-24 22:04:42 -05002046 if (inta & IPW_INTA_BIT_RF_KILL_DONE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002047 IPW_DEBUG_RF_KILL("RF_KILL_DONE\n");
2048 priv->status |= STATUS_RF_KILL_HW;
Matthew Garrett25f94ae2009-11-11 14:36:31 -05002049 wiphy_rfkill_set_hw_state(priv->ieee->wdev.wiphy, true);
James Ketrenos43f66a62005-03-25 12:31:53 -06002050 wake_up_interruptible(&priv->wait_command_queue);
James Ketrenosea2b26e2005-08-24 21:25:16 -05002051 priv->status &= ~(STATUS_ASSOCIATED | STATUS_ASSOCIATING);
James Ketrenos43f66a62005-03-25 12:31:53 -06002052 cancel_delayed_work(&priv->request_scan);
Dan Williamsea177302008-06-02 17:51:23 -04002053 cancel_delayed_work(&priv->request_direct_scan);
2054 cancel_delayed_work(&priv->request_passive_scan);
Dan Williams0b531672007-10-09 13:55:24 -04002055 cancel_delayed_work(&priv->scan_event);
James Ketrenosa613bff2005-08-24 21:43:11 -05002056 schedule_work(&priv->link_down);
James Ketrenos43f66a62005-03-25 12:31:53 -06002057 queue_delayed_work(priv->workqueue, &priv->rf_kill, 2 * HZ);
James Ketrenosb095c382005-08-24 22:04:42 -05002058 handled |= IPW_INTA_BIT_RF_KILL_DONE;
James Ketrenos43f66a62005-03-25 12:31:53 -06002059 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002060
James Ketrenosb095c382005-08-24 22:04:42 -05002061 if (inta & IPW_INTA_BIT_FATAL_ERROR) {
Zhu Yi1d1b09e2006-03-02 06:40:59 +08002062 IPW_WARNING("Firmware error detected. Restarting.\n");
James Ketrenosb39860c2005-08-12 09:36:32 -05002063 if (priv->error) {
Zhu Yi1d1b09e2006-03-02 06:40:59 +08002064 IPW_DEBUG_FW("Sysfs 'error' log already exists.\n");
James Ketrenosb39860c2005-08-12 09:36:32 -05002065 if (ipw_debug_level & IPW_DL_FW_ERRORS) {
2066 struct ipw_fw_error *error =
2067 ipw_alloc_error_log(priv);
2068 ipw_dump_error_log(priv, error);
Jesper Juhl8f760782006-06-27 02:55:06 -07002069 kfree(error);
James Ketrenosb39860c2005-08-12 09:36:32 -05002070 }
James Ketrenosb39860c2005-08-12 09:36:32 -05002071 } else {
2072 priv->error = ipw_alloc_error_log(priv);
2073 if (priv->error)
Zhu Yi1d1b09e2006-03-02 06:40:59 +08002074 IPW_DEBUG_FW("Sysfs 'error' log captured.\n");
James Ketrenosb39860c2005-08-12 09:36:32 -05002075 else
Zhu Yi1d1b09e2006-03-02 06:40:59 +08002076 IPW_DEBUG_FW("Error allocating sysfs 'error' "
2077 "log.\n");
James Ketrenosb39860c2005-08-12 09:36:32 -05002078 if (ipw_debug_level & IPW_DL_FW_ERRORS)
2079 ipw_dump_error_log(priv, priv->error);
James Ketrenosb39860c2005-08-12 09:36:32 -05002080 }
2081
James Ketrenosb095c382005-08-24 22:04:42 -05002082 /* XXX: If hardware encryption is for WPA/WPA2,
2083 * we have to notify the supplicant. */
2084 if (priv->ieee->sec.encrypt) {
2085 priv->status &= ~STATUS_ASSOCIATED;
2086 notify_wx_assoc_event(priv);
2087 }
2088
2089 /* Keep the restart process from trying to send host
2090 * commands by clearing the INIT status bit */
2091 priv->status &= ~STATUS_INIT;
James Ketrenosafbf30a2005-08-25 00:05:33 -05002092
2093 /* Cancel currently queued command. */
2094 priv->status &= ~STATUS_HCMD_ACTIVE;
2095 wake_up_interruptible(&priv->wait_command_queue);
2096
James Ketrenos43f66a62005-03-25 12:31:53 -06002097 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenosb095c382005-08-24 22:04:42 -05002098 handled |= IPW_INTA_BIT_FATAL_ERROR;
James Ketrenos43f66a62005-03-25 12:31:53 -06002099 }
2100
James Ketrenosb095c382005-08-24 22:04:42 -05002101 if (inta & IPW_INTA_BIT_PARITY_ERROR) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002102 IPW_ERROR("Parity error\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002103 handled |= IPW_INTA_BIT_PARITY_ERROR;
James Ketrenos43f66a62005-03-25 12:31:53 -06002104 }
2105
2106 if (handled != inta) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002107 IPW_ERROR("Unhandled INTA bits 0x%08x\n", inta & ~handled);
James Ketrenos43f66a62005-03-25 12:31:53 -06002108 }
2109
Zhu Yi89c318e2006-06-08 22:19:49 -07002110 spin_unlock_irqrestore(&priv->lock, flags);
2111
James Ketrenos43f66a62005-03-25 12:31:53 -06002112 /* enable all interrupts */
2113 ipw_enable_interrupts(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06002114}
Jeff Garzikbf794512005-07-31 13:07:26 -04002115
James Ketrenos43f66a62005-03-25 12:31:53 -06002116#define IPW_CMD(x) case IPW_CMD_ ## x : return #x
2117static char *get_cmd_string(u8 cmd)
2118{
2119 switch (cmd) {
2120 IPW_CMD(HOST_COMPLETE);
Jeff Garzikbf794512005-07-31 13:07:26 -04002121 IPW_CMD(POWER_DOWN);
2122 IPW_CMD(SYSTEM_CONFIG);
2123 IPW_CMD(MULTICAST_ADDRESS);
2124 IPW_CMD(SSID);
2125 IPW_CMD(ADAPTER_ADDRESS);
2126 IPW_CMD(PORT_TYPE);
2127 IPW_CMD(RTS_THRESHOLD);
2128 IPW_CMD(FRAG_THRESHOLD);
2129 IPW_CMD(POWER_MODE);
2130 IPW_CMD(WEP_KEY);
2131 IPW_CMD(TGI_TX_KEY);
2132 IPW_CMD(SCAN_REQUEST);
2133 IPW_CMD(SCAN_REQUEST_EXT);
2134 IPW_CMD(ASSOCIATE);
2135 IPW_CMD(SUPPORTED_RATES);
2136 IPW_CMD(SCAN_ABORT);
2137 IPW_CMD(TX_FLUSH);
2138 IPW_CMD(QOS_PARAMETERS);
2139 IPW_CMD(DINO_CONFIG);
2140 IPW_CMD(RSN_CAPABILITIES);
2141 IPW_CMD(RX_KEY);
2142 IPW_CMD(CARD_DISABLE);
2143 IPW_CMD(SEED_NUMBER);
2144 IPW_CMD(TX_POWER);
2145 IPW_CMD(COUNTRY_INFO);
2146 IPW_CMD(AIRONET_INFO);
2147 IPW_CMD(AP_TX_POWER);
2148 IPW_CMD(CCKM_INFO);
2149 IPW_CMD(CCX_VER_INFO);
2150 IPW_CMD(SET_CALIBRATION);
2151 IPW_CMD(SENSITIVITY_CALIB);
2152 IPW_CMD(RETRY_LIMIT);
2153 IPW_CMD(IPW_PRE_POWER_DOWN);
2154 IPW_CMD(VAP_BEACON_TEMPLATE);
2155 IPW_CMD(VAP_DTIM_PERIOD);
2156 IPW_CMD(EXT_SUPPORTED_RATES);
2157 IPW_CMD(VAP_LOCAL_TX_PWR_CONSTRAINT);
2158 IPW_CMD(VAP_QUIET_INTERVALS);
2159 IPW_CMD(VAP_CHANNEL_SWITCH);
2160 IPW_CMD(VAP_MANDATORY_CHANNELS);
2161 IPW_CMD(VAP_CELL_PWR_LIMIT);
2162 IPW_CMD(VAP_CF_PARAM_SET);
2163 IPW_CMD(VAP_SET_BEACONING_STATE);
2164 IPW_CMD(MEASUREMENT);
2165 IPW_CMD(POWER_CAPABILITY);
2166 IPW_CMD(SUPPORTED_CHANNELS);
2167 IPW_CMD(TPC_REPORT);
2168 IPW_CMD(WME_INFO);
2169 IPW_CMD(PRODUCTION_COMMAND);
2170 default:
James Ketrenos43f66a62005-03-25 12:31:53 -06002171 return "UNKNOWN";
2172 }
2173}
James Ketrenos43f66a62005-03-25 12:31:53 -06002174
2175#define HOST_COMPLETE_TIMEOUT HZ
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002176
2177static int __ipw_send_cmd(struct ipw_priv *priv, struct host_cmd *cmd)
James Ketrenos43f66a62005-03-25 12:31:53 -06002178{
2179 int rc = 0;
James Ketrenosa613bff2005-08-24 21:43:11 -05002180 unsigned long flags;
James Ketrenos43f66a62005-03-25 12:31:53 -06002181
James Ketrenosa613bff2005-08-24 21:43:11 -05002182 spin_lock_irqsave(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06002183 if (priv->status & STATUS_HCMD_ACTIVE) {
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002184 IPW_ERROR("Failed to send %s: Already sending a command.\n",
2185 get_cmd_string(cmd->cmd));
James Ketrenosa613bff2005-08-24 21:43:11 -05002186 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002187 return -EAGAIN;
James Ketrenos43f66a62005-03-25 12:31:53 -06002188 }
2189
2190 priv->status |= STATUS_HCMD_ACTIVE;
Jeff Garzikbf794512005-07-31 13:07:26 -04002191
James Ketrenosf6c5cb72005-08-25 00:39:09 -05002192 if (priv->cmdlog) {
2193 priv->cmdlog[priv->cmdlog_pos].jiffies = jiffies;
2194 priv->cmdlog[priv->cmdlog_pos].cmd.cmd = cmd->cmd;
2195 priv->cmdlog[priv->cmdlog_pos].cmd.len = cmd->len;
2196 memcpy(priv->cmdlog[priv->cmdlog_pos].cmd.param, cmd->param,
2197 cmd->len);
2198 priv->cmdlog[priv->cmdlog_pos].retcode = -1;
2199 }
2200
James Ketrenosb095c382005-08-24 22:04:42 -05002201 IPW_DEBUG_HC("%s command (#%d) %d bytes: 0x%08X\n",
2202 get_cmd_string(cmd->cmd), cmd->cmd, cmd->len,
2203 priv->status);
Zhu Yif516dbc2006-01-24 16:36:44 +08002204
2205#ifndef DEBUG_CMD_WEP_KEY
2206 if (cmd->cmd == IPW_CMD_WEP_KEY)
2207 IPW_DEBUG_HC("WEP_KEY command masked out for secure.\n");
2208 else
2209#endif
2210 printk_buf(IPW_DL_HOST_COMMAND, (u8 *) cmd->param, cmd->len);
2211
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002212 rc = ipw_queue_tx_hcmd(priv, cmd->cmd, cmd->param, cmd->len, 0);
James Ketrenosa613bff2005-08-24 21:43:11 -05002213 if (rc) {
2214 priv->status &= ~STATUS_HCMD_ACTIVE;
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002215 IPW_ERROR("Failed to send %s: Reason %d\n",
2216 get_cmd_string(cmd->cmd), rc);
James Ketrenosa613bff2005-08-24 21:43:11 -05002217 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenosf6c5cb72005-08-25 00:39:09 -05002218 goto exit;
James Ketrenosa613bff2005-08-24 21:43:11 -05002219 }
2220 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06002221
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002222 rc = wait_event_interruptible_timeout(priv->wait_command_queue,
2223 !(priv->
2224 status & STATUS_HCMD_ACTIVE),
2225 HOST_COMPLETE_TIMEOUT);
James Ketrenos43f66a62005-03-25 12:31:53 -06002226 if (rc == 0) {
James Ketrenosa613bff2005-08-24 21:43:11 -05002227 spin_lock_irqsave(&priv->lock, flags);
2228 if (priv->status & STATUS_HCMD_ACTIVE) {
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002229 IPW_ERROR("Failed to send %s: Command timed out.\n",
2230 get_cmd_string(cmd->cmd));
James Ketrenosa613bff2005-08-24 21:43:11 -05002231 priv->status &= ~STATUS_HCMD_ACTIVE;
2232 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenosf6c5cb72005-08-25 00:39:09 -05002233 rc = -EIO;
2234 goto exit;
James Ketrenosa613bff2005-08-24 21:43:11 -05002235 }
2236 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos3b9990c2005-08-19 13:18:55 -05002237 } else
2238 rc = 0;
James Ketrenosa613bff2005-08-24 21:43:11 -05002239
James Ketrenosb095c382005-08-24 22:04:42 -05002240 if (priv->status & STATUS_RF_KILL_HW) {
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002241 IPW_ERROR("Failed to send %s: Aborted due to RF kill switch.\n",
2242 get_cmd_string(cmd->cmd));
James Ketrenosf6c5cb72005-08-25 00:39:09 -05002243 rc = -EIO;
2244 goto exit;
James Ketrenos43f66a62005-03-25 12:31:53 -06002245 }
2246
Zhu Yi2638bc32006-01-24 16:37:52 +08002247 exit:
James Ketrenosf6c5cb72005-08-25 00:39:09 -05002248 if (priv->cmdlog) {
2249 priv->cmdlog[priv->cmdlog_pos++].retcode = rc;
2250 priv->cmdlog_pos %= priv->cmdlog_len;
2251 }
2252 return rc;
James Ketrenos43f66a62005-03-25 12:31:53 -06002253}
2254
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002255static int ipw_send_cmd_simple(struct ipw_priv *priv, u8 command)
James Ketrenos43f66a62005-03-25 12:31:53 -06002256{
2257 struct host_cmd cmd = {
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002258 .cmd = command,
James Ketrenos43f66a62005-03-25 12:31:53 -06002259 };
2260
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002261 return __ipw_send_cmd(priv, &cmd);
2262}
2263
2264static int ipw_send_cmd_pdu(struct ipw_priv *priv, u8 command, u8 len,
2265 void *data)
2266{
2267 struct host_cmd cmd = {
2268 .cmd = command,
2269 .len = len,
2270 .param = data,
2271 };
2272
2273 return __ipw_send_cmd(priv, &cmd);
2274}
2275
2276static int ipw_send_host_complete(struct ipw_priv *priv)
2277{
James Ketrenos43f66a62005-03-25 12:31:53 -06002278 if (!priv) {
2279 IPW_ERROR("Invalid args\n");
2280 return -1;
2281 }
2282
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002283 return ipw_send_cmd_simple(priv, IPW_CMD_HOST_COMPLETE);
James Ketrenos43f66a62005-03-25 12:31:53 -06002284}
2285
Zhu Yid685b8c2006-04-13 17:20:27 +08002286static int ipw_send_system_config(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002287{
Zhu Yid685b8c2006-04-13 17:20:27 +08002288 return ipw_send_cmd_pdu(priv, IPW_CMD_SYSTEM_CONFIG,
2289 sizeof(priv->sys_config),
2290 &priv->sys_config);
James Ketrenos43f66a62005-03-25 12:31:53 -06002291}
2292
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002293static int ipw_send_ssid(struct ipw_priv *priv, u8 * ssid, int len)
James Ketrenos43f66a62005-03-25 12:31:53 -06002294{
James Ketrenos43f66a62005-03-25 12:31:53 -06002295 if (!priv || !ssid) {
2296 IPW_ERROR("Invalid args\n");
2297 return -1;
2298 }
2299
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002300 return ipw_send_cmd_pdu(priv, IPW_CMD_SSID, min(len, IW_ESSID_MAX_SIZE),
Zhu Yi2638bc32006-01-24 16:37:52 +08002301 ssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06002302}
2303
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002304static int ipw_send_adapter_address(struct ipw_priv *priv, u8 * mac)
James Ketrenos43f66a62005-03-25 12:31:53 -06002305{
James Ketrenos43f66a62005-03-25 12:31:53 -06002306 if (!priv || !mac) {
2307 IPW_ERROR("Invalid args\n");
2308 return -1;
2309 }
2310
Johannes Berge1749612008-10-27 15:59:26 -07002311 IPW_DEBUG_INFO("%s: Setting MAC to %pM\n",
2312 priv->net_dev->name, mac);
James Ketrenos43f66a62005-03-25 12:31:53 -06002313
Zhu Yi2638bc32006-01-24 16:37:52 +08002314 return ipw_send_cmd_pdu(priv, IPW_CMD_ADAPTER_ADDRESS, ETH_ALEN, mac);
James Ketrenos43f66a62005-03-25 12:31:53 -06002315}
2316
James Ketrenosa613bff2005-08-24 21:43:11 -05002317/*
2318 * NOTE: This must be executed from our workqueue as it results in udelay
2319 * being called which may corrupt the keyboard if executed on default
2320 * workqueue
2321 */
James Ketrenos43f66a62005-03-25 12:31:53 -06002322static void ipw_adapter_restart(void *adapter)
2323{
2324 struct ipw_priv *priv = adapter;
2325
2326 if (priv->status & STATUS_RF_KILL_MASK)
2327 return;
2328
2329 ipw_down(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05002330
2331 if (priv->assoc_network &&
2332 (priv->assoc_network->capability & WLAN_CAPABILITY_IBSS))
2333 ipw_remove_current_network(priv);
2334
James Ketrenos43f66a62005-03-25 12:31:53 -06002335 if (ipw_up(priv)) {
2336 IPW_ERROR("Failed to up device\n");
2337 return;
2338 }
2339}
2340
David Howellsc4028952006-11-22 14:57:56 +00002341static void ipw_bg_adapter_restart(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -05002342{
David Howellsc4028952006-11-22 14:57:56 +00002343 struct ipw_priv *priv =
2344 container_of(work, struct ipw_priv, adapter_restart);
Zhu Yi46441512006-01-24 16:37:59 +08002345 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00002346 ipw_adapter_restart(priv);
Zhu Yi46441512006-01-24 16:37:59 +08002347 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05002348}
2349
James Ketrenos43f66a62005-03-25 12:31:53 -06002350#define IPW_SCAN_CHECK_WATCHDOG (5 * HZ)
2351
2352static void ipw_scan_check(void *data)
2353{
2354 struct ipw_priv *priv = data;
2355 if (priv->status & (STATUS_SCANNING | STATUS_SCAN_ABORTING)) {
2356 IPW_DEBUG_SCAN("Scan completion watchdog resetting "
Zhu Yic7b6a672006-01-24 16:37:05 +08002357 "adapter after (%dms).\n",
2358 jiffies_to_msecs(IPW_SCAN_CHECK_WATCHDOG));
James Ketrenosa613bff2005-08-24 21:43:11 -05002359 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06002360 }
2361}
2362
David Howellsc4028952006-11-22 14:57:56 +00002363static void ipw_bg_scan_check(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -05002364{
David Howellsc4028952006-11-22 14:57:56 +00002365 struct ipw_priv *priv =
2366 container_of(work, struct ipw_priv, scan_check.work);
Zhu Yi46441512006-01-24 16:37:59 +08002367 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00002368 ipw_scan_check(priv);
Zhu Yi46441512006-01-24 16:37:59 +08002369 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05002370}
2371
James Ketrenos43f66a62005-03-25 12:31:53 -06002372static int ipw_send_scan_request_ext(struct ipw_priv *priv,
2373 struct ipw_scan_request_ext *request)
2374{
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002375 return ipw_send_cmd_pdu(priv, IPW_CMD_SCAN_REQUEST_EXT,
Zhu Yi2638bc32006-01-24 16:37:52 +08002376 sizeof(*request), request);
James Ketrenos43f66a62005-03-25 12:31:53 -06002377}
2378
2379static int ipw_send_scan_abort(struct ipw_priv *priv)
2380{
James Ketrenos43f66a62005-03-25 12:31:53 -06002381 if (!priv) {
2382 IPW_ERROR("Invalid args\n");
2383 return -1;
2384 }
2385
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002386 return ipw_send_cmd_simple(priv, IPW_CMD_SCAN_ABORT);
James Ketrenos43f66a62005-03-25 12:31:53 -06002387}
2388
2389static int ipw_set_sensitivity(struct ipw_priv *priv, u16 sens)
2390{
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002391 struct ipw_sensitivity_calib calib = {
Zhu Yi851ca262006-08-21 11:37:58 +08002392 .beacon_rssi_raw = cpu_to_le16(sens),
James Ketrenos43f66a62005-03-25 12:31:53 -06002393 };
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002394
2395 return ipw_send_cmd_pdu(priv, IPW_CMD_SENSITIVITY_CALIB, sizeof(calib),
Zhu Yi2638bc32006-01-24 16:37:52 +08002396 &calib);
James Ketrenos43f66a62005-03-25 12:31:53 -06002397}
2398
2399static int ipw_send_associate(struct ipw_priv *priv,
2400 struct ipw_associate *associate)
2401{
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002402 if (!priv || !associate) {
2403 IPW_ERROR("Invalid args\n");
2404 return -1;
2405 }
2406
Al Viro5b5e8072007-12-27 01:54:06 -05002407 return ipw_send_cmd_pdu(priv, IPW_CMD_ASSOCIATE, sizeof(*associate),
2408 associate);
James Ketrenos43f66a62005-03-25 12:31:53 -06002409}
2410
2411static int ipw_send_supported_rates(struct ipw_priv *priv,
2412 struct ipw_supported_rates *rates)
2413{
James Ketrenos43f66a62005-03-25 12:31:53 -06002414 if (!priv || !rates) {
2415 IPW_ERROR("Invalid args\n");
2416 return -1;
2417 }
2418
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002419 return ipw_send_cmd_pdu(priv, IPW_CMD_SUPPORTED_RATES, sizeof(*rates),
Zhu Yi2638bc32006-01-24 16:37:52 +08002420 rates);
James Ketrenos43f66a62005-03-25 12:31:53 -06002421}
2422
2423static int ipw_set_random_seed(struct ipw_priv *priv)
2424{
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002425 u32 val;
James Ketrenos43f66a62005-03-25 12:31:53 -06002426
2427 if (!priv) {
2428 IPW_ERROR("Invalid args\n");
2429 return -1;
2430 }
2431
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002432 get_random_bytes(&val, sizeof(val));
James Ketrenos43f66a62005-03-25 12:31:53 -06002433
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002434 return ipw_send_cmd_pdu(priv, IPW_CMD_SEED_NUMBER, sizeof(val), &val);
James Ketrenos43f66a62005-03-25 12:31:53 -06002435}
2436
James Ketrenos43f66a62005-03-25 12:31:53 -06002437static int ipw_send_card_disable(struct ipw_priv *priv, u32 phy_off)
2438{
Al Viroe62e1ee2007-12-27 01:36:46 -05002439 __le32 v = cpu_to_le32(phy_off);
James Ketrenos43f66a62005-03-25 12:31:53 -06002440 if (!priv) {
2441 IPW_ERROR("Invalid args\n");
2442 return -1;
2443 }
2444
Al Viroe62e1ee2007-12-27 01:36:46 -05002445 return ipw_send_cmd_pdu(priv, IPW_CMD_CARD_DISABLE, sizeof(v), &v);
James Ketrenos43f66a62005-03-25 12:31:53 -06002446}
James Ketrenos43f66a62005-03-25 12:31:53 -06002447
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002448static int ipw_send_tx_power(struct ipw_priv *priv, struct ipw_tx_power *power)
James Ketrenos43f66a62005-03-25 12:31:53 -06002449{
James Ketrenos43f66a62005-03-25 12:31:53 -06002450 if (!priv || !power) {
2451 IPW_ERROR("Invalid args\n");
2452 return -1;
2453 }
2454
Zhu Yi2638bc32006-01-24 16:37:52 +08002455 return ipw_send_cmd_pdu(priv, IPW_CMD_TX_POWER, sizeof(*power), power);
James Ketrenos43f66a62005-03-25 12:31:53 -06002456}
James Ketrenos43f66a62005-03-25 12:31:53 -06002457
Zhu Yi6de9f7f2005-08-11 14:39:33 +08002458static int ipw_set_tx_power(struct ipw_priv *priv)
2459{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04002460 const struct libipw_geo *geo = libipw_get_geo(priv->ieee);
Zhu Yi6de9f7f2005-08-11 14:39:33 +08002461 struct ipw_tx_power tx_power;
2462 s8 max_power;
2463 int i;
2464
2465 memset(&tx_power, 0, sizeof(tx_power));
2466
2467 /* configure device for 'G' band */
2468 tx_power.ieee_mode = IPW_G_MODE;
2469 tx_power.num_channels = geo->bg_channels;
2470 for (i = 0; i < geo->bg_channels; i++) {
2471 max_power = geo->bg[i].max_power;
2472 tx_power.channels_tx_power[i].channel_number =
2473 geo->bg[i].channel;
2474 tx_power.channels_tx_power[i].tx_power = max_power ?
2475 min(max_power, priv->tx_power) : priv->tx_power;
2476 }
2477 if (ipw_send_tx_power(priv, &tx_power))
2478 return -EIO;
2479
2480 /* configure device to also handle 'B' band */
2481 tx_power.ieee_mode = IPW_B_MODE;
2482 if (ipw_send_tx_power(priv, &tx_power))
2483 return -EIO;
2484
2485 /* configure device to also handle 'A' band */
2486 if (priv->ieee->abg_true) {
2487 tx_power.ieee_mode = IPW_A_MODE;
2488 tx_power.num_channels = geo->a_channels;
2489 for (i = 0; i < tx_power.num_channels; i++) {
2490 max_power = geo->a[i].max_power;
2491 tx_power.channels_tx_power[i].channel_number =
2492 geo->a[i].channel;
2493 tx_power.channels_tx_power[i].tx_power = max_power ?
2494 min(max_power, priv->tx_power) : priv->tx_power;
2495 }
2496 if (ipw_send_tx_power(priv, &tx_power))
2497 return -EIO;
2498 }
James Ketrenos43f66a62005-03-25 12:31:53 -06002499 return 0;
2500}
2501
2502static int ipw_send_rts_threshold(struct ipw_priv *priv, u16 rts)
2503{
2504 struct ipw_rts_threshold rts_threshold = {
Zhu Yi851ca262006-08-21 11:37:58 +08002505 .rts_threshold = cpu_to_le16(rts),
James Ketrenos43f66a62005-03-25 12:31:53 -06002506 };
James Ketrenos43f66a62005-03-25 12:31:53 -06002507
2508 if (!priv) {
2509 IPW_ERROR("Invalid args\n");
2510 return -1;
2511 }
2512
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002513 return ipw_send_cmd_pdu(priv, IPW_CMD_RTS_THRESHOLD,
2514 sizeof(rts_threshold), &rts_threshold);
James Ketrenos43f66a62005-03-25 12:31:53 -06002515}
2516
2517static int ipw_send_frag_threshold(struct ipw_priv *priv, u16 frag)
2518{
2519 struct ipw_frag_threshold frag_threshold = {
Zhu Yi851ca262006-08-21 11:37:58 +08002520 .frag_threshold = cpu_to_le16(frag),
James Ketrenos43f66a62005-03-25 12:31:53 -06002521 };
James Ketrenos43f66a62005-03-25 12:31:53 -06002522
2523 if (!priv) {
2524 IPW_ERROR("Invalid args\n");
2525 return -1;
2526 }
2527
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002528 return ipw_send_cmd_pdu(priv, IPW_CMD_FRAG_THRESHOLD,
2529 sizeof(frag_threshold), &frag_threshold);
James Ketrenos43f66a62005-03-25 12:31:53 -06002530}
2531
2532static int ipw_send_power_mode(struct ipw_priv *priv, u32 mode)
2533{
Al Viroe62e1ee2007-12-27 01:36:46 -05002534 __le32 param;
James Ketrenos43f66a62005-03-25 12:31:53 -06002535
2536 if (!priv) {
2537 IPW_ERROR("Invalid args\n");
2538 return -1;
2539 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002540
James Ketrenos43f66a62005-03-25 12:31:53 -06002541 /* If on battery, set to 3, if AC set to CAM, else user
2542 * level */
2543 switch (mode) {
2544 case IPW_POWER_BATTERY:
Al Viroe62e1ee2007-12-27 01:36:46 -05002545 param = cpu_to_le32(IPW_POWER_INDEX_3);
James Ketrenos43f66a62005-03-25 12:31:53 -06002546 break;
2547 case IPW_POWER_AC:
Al Viroe62e1ee2007-12-27 01:36:46 -05002548 param = cpu_to_le32(IPW_POWER_MODE_CAM);
James Ketrenos43f66a62005-03-25 12:31:53 -06002549 break;
2550 default:
Al Viroe62e1ee2007-12-27 01:36:46 -05002551 param = cpu_to_le32(mode);
James Ketrenos43f66a62005-03-25 12:31:53 -06002552 break;
2553 }
2554
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002555 return ipw_send_cmd_pdu(priv, IPW_CMD_POWER_MODE, sizeof(param),
Zhu Yi2638bc32006-01-24 16:37:52 +08002556 &param);
James Ketrenos43f66a62005-03-25 12:31:53 -06002557}
2558
James Ketrenosafbf30a2005-08-25 00:05:33 -05002559static int ipw_send_retry_limit(struct ipw_priv *priv, u8 slimit, u8 llimit)
2560{
2561 struct ipw_retry_limit retry_limit = {
2562 .short_retry_limit = slimit,
2563 .long_retry_limit = llimit
2564 };
James Ketrenosafbf30a2005-08-25 00:05:33 -05002565
2566 if (!priv) {
2567 IPW_ERROR("Invalid args\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06002568 return -1;
2569 }
2570
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002571 return ipw_send_cmd_pdu(priv, IPW_CMD_RETRY_LIMIT, sizeof(retry_limit),
Zhu Yi2638bc32006-01-24 16:37:52 +08002572 &retry_limit);
James Ketrenos43f66a62005-03-25 12:31:53 -06002573}
2574
2575/*
2576 * The IPW device contains a Microwire compatible EEPROM that stores
2577 * various data like the MAC address. Usually the firmware has exclusive
2578 * access to the eeprom, but during device initialization (before the
2579 * device driver has sent the HostComplete command to the firmware) the
2580 * device driver has read access to the EEPROM by way of indirect addressing
2581 * through a couple of memory mapped registers.
2582 *
2583 * The following is a simplified implementation for pulling data out of the
2584 * the eeprom, along with some helper functions to find information in
2585 * the per device private data's copy of the eeprom.
2586 *
2587 * NOTE: To better understand how these functions work (i.e what is a chip
2588 * select and why do have to keep driving the eeprom clock?), read
2589 * just about any data sheet for a Microwire compatible EEPROM.
2590 */
2591
2592/* write a 32 bit value into the indirect accessor register */
2593static inline void eeprom_write_reg(struct ipw_priv *p, u32 data)
2594{
2595 ipw_write_reg32(p, FW_MEM_REG_EEPROM_ACCESS, data);
Jeff Garzikbf794512005-07-31 13:07:26 -04002596
James Ketrenos43f66a62005-03-25 12:31:53 -06002597 /* the eeprom requires some time to complete the operation */
2598 udelay(p->eeprom_delay);
2599
2600 return;
2601}
2602
2603/* perform a chip select operation */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002604static void eeprom_cs(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002605{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002606 eeprom_write_reg(priv, 0);
2607 eeprom_write_reg(priv, EEPROM_BIT_CS);
2608 eeprom_write_reg(priv, EEPROM_BIT_CS | EEPROM_BIT_SK);
2609 eeprom_write_reg(priv, EEPROM_BIT_CS);
James Ketrenos43f66a62005-03-25 12:31:53 -06002610}
2611
2612/* perform a chip select operation */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002613static void eeprom_disable_cs(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002614{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002615 eeprom_write_reg(priv, EEPROM_BIT_CS);
2616 eeprom_write_reg(priv, 0);
2617 eeprom_write_reg(priv, EEPROM_BIT_SK);
James Ketrenos43f66a62005-03-25 12:31:53 -06002618}
2619
2620/* push a single bit down to the eeprom */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002621static inline void eeprom_write_bit(struct ipw_priv *p, u8 bit)
James Ketrenos43f66a62005-03-25 12:31:53 -06002622{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002623 int d = (bit ? EEPROM_BIT_DI : 0);
2624 eeprom_write_reg(p, EEPROM_BIT_CS | d);
2625 eeprom_write_reg(p, EEPROM_BIT_CS | d | EEPROM_BIT_SK);
James Ketrenos43f66a62005-03-25 12:31:53 -06002626}
2627
2628/* push an opcode followed by an address down to the eeprom */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002629static void eeprom_op(struct ipw_priv *priv, u8 op, u8 addr)
James Ketrenos43f66a62005-03-25 12:31:53 -06002630{
2631 int i;
2632
2633 eeprom_cs(priv);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002634 eeprom_write_bit(priv, 1);
2635 eeprom_write_bit(priv, op & 2);
2636 eeprom_write_bit(priv, op & 1);
2637 for (i = 7; i >= 0; i--) {
2638 eeprom_write_bit(priv, addr & (1 << i));
James Ketrenos43f66a62005-03-25 12:31:53 -06002639 }
2640}
2641
2642/* pull 16 bits off the eeprom, one bit at a time */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002643static u16 eeprom_read_u16(struct ipw_priv *priv, u8 addr)
James Ketrenos43f66a62005-03-25 12:31:53 -06002644{
2645 int i;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002646 u16 r = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04002647
James Ketrenos43f66a62005-03-25 12:31:53 -06002648 /* Send READ Opcode */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002649 eeprom_op(priv, EEPROM_CMD_READ, addr);
James Ketrenos43f66a62005-03-25 12:31:53 -06002650
2651 /* Send dummy bit */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002652 eeprom_write_reg(priv, EEPROM_BIT_CS);
James Ketrenos43f66a62005-03-25 12:31:53 -06002653
2654 /* Read the byte off the eeprom one bit at a time */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002655 for (i = 0; i < 16; i++) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002656 u32 data = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002657 eeprom_write_reg(priv, EEPROM_BIT_CS | EEPROM_BIT_SK);
2658 eeprom_write_reg(priv, EEPROM_BIT_CS);
2659 data = ipw_read_reg32(priv, FW_MEM_REG_EEPROM_ACCESS);
2660 r = (r << 1) | ((data & EEPROM_BIT_DO) ? 1 : 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002661 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002662
James Ketrenos43f66a62005-03-25 12:31:53 -06002663 /* Send another dummy bit */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002664 eeprom_write_reg(priv, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002665 eeprom_disable_cs(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -04002666
James Ketrenos43f66a62005-03-25 12:31:53 -06002667 return r;
2668}
2669
2670/* helper function for pulling the mac address out of the private */
2671/* data's copy of the eeprom data */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002672static void eeprom_parse_mac(struct ipw_priv *priv, u8 * mac)
James Ketrenos43f66a62005-03-25 12:31:53 -06002673{
James Ketrenosafbf30a2005-08-25 00:05:33 -05002674 memcpy(mac, &priv->eeprom[EEPROM_MAC_ADDRESS], 6);
James Ketrenos43f66a62005-03-25 12:31:53 -06002675}
2676
2677/*
2678 * Either the device driver (i.e. the host) or the firmware can
2679 * load eeprom data into the designated region in SRAM. If neither
2680 * happens then the FW will shutdown with a fatal error.
2681 *
2682 * In order to signal the FW to load the EEPROM, the EEPROM_LOAD_DISABLE
2683 * bit needs region of shared SRAM needs to be non-zero.
2684 */
2685static void ipw_eeprom_init_sram(struct ipw_priv *priv)
2686{
2687 int i;
Al Viroe62e1ee2007-12-27 01:36:46 -05002688 __le16 *eeprom = (__le16 *) priv->eeprom;
Jeff Garzikbf794512005-07-31 13:07:26 -04002689
James Ketrenos43f66a62005-03-25 12:31:53 -06002690 IPW_DEBUG_TRACE(">>\n");
2691
2692 /* read entire contents of eeprom into private buffer */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002693 for (i = 0; i < 128; i++)
Al Viroe62e1ee2007-12-27 01:36:46 -05002694 eeprom[i] = cpu_to_le16(eeprom_read_u16(priv, (u8) i));
James Ketrenos43f66a62005-03-25 12:31:53 -06002695
Jeff Garzikbf794512005-07-31 13:07:26 -04002696 /*
2697 If the data looks correct, then copy it to our private
James Ketrenos43f66a62005-03-25 12:31:53 -06002698 copy. Otherwise let the firmware know to perform the operation
Zhu Yic7b6a672006-01-24 16:37:05 +08002699 on its own.
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002700 */
Alexey Dobriyan386093e2006-02-01 03:04:57 -08002701 if (priv->eeprom[EEPROM_VERSION] != 0) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002702 IPW_DEBUG_INFO("Writing EEPROM data into SRAM\n");
2703
2704 /* write the eeprom data to sram */
James Ketrenosb095c382005-08-24 22:04:42 -05002705 for (i = 0; i < IPW_EEPROM_IMAGE_SIZE; i++)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002706 ipw_write8(priv, IPW_EEPROM_DATA + i, priv->eeprom[i]);
James Ketrenos43f66a62005-03-25 12:31:53 -06002707
2708 /* Do not load eeprom data on fatal error or suspend */
2709 ipw_write32(priv, IPW_EEPROM_LOAD_DISABLE, 0);
2710 } else {
2711 IPW_DEBUG_INFO("Enabling FW initializationg of SRAM\n");
2712
2713 /* Load eeprom data on fatal error or suspend */
2714 ipw_write32(priv, IPW_EEPROM_LOAD_DISABLE, 1);
2715 }
2716
2717 IPW_DEBUG_TRACE("<<\n");
2718}
2719
Arjan van de Ven858119e2006-01-14 13:20:43 -08002720static void ipw_zero_memory(struct ipw_priv *priv, u32 start, u32 count)
James Ketrenos43f66a62005-03-25 12:31:53 -06002721{
2722 count >>= 2;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002723 if (!count)
2724 return;
James Ketrenosb095c382005-08-24 22:04:42 -05002725 _ipw_write32(priv, IPW_AUTOINC_ADDR, start);
Jeff Garzikbf794512005-07-31 13:07:26 -04002726 while (count--)
James Ketrenosb095c382005-08-24 22:04:42 -05002727 _ipw_write32(priv, IPW_AUTOINC_DATA, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002728}
2729
2730static inline void ipw_fw_dma_reset_command_blocks(struct ipw_priv *priv)
2731{
James Ketrenosb095c382005-08-24 22:04:42 -05002732 ipw_zero_memory(priv, IPW_SHARED_SRAM_DMA_CONTROL,
Jeff Garzikbf794512005-07-31 13:07:26 -04002733 CB_NUMBER_OF_ELEMENTS_SMALL *
James Ketrenos43f66a62005-03-25 12:31:53 -06002734 sizeof(struct command_block));
2735}
2736
2737static int ipw_fw_dma_enable(struct ipw_priv *priv)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002738{ /* start dma engine but no transfers yet */
James Ketrenos43f66a62005-03-25 12:31:53 -06002739
2740 IPW_DEBUG_FW(">> : \n");
Jeff Garzikbf794512005-07-31 13:07:26 -04002741
James Ketrenos43f66a62005-03-25 12:31:53 -06002742 /* Start the dma */
2743 ipw_fw_dma_reset_command_blocks(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -04002744
James Ketrenos43f66a62005-03-25 12:31:53 -06002745 /* Write CB base address */
James Ketrenosb095c382005-08-24 22:04:42 -05002746 ipw_write_reg32(priv, IPW_DMA_I_CB_BASE, IPW_SHARED_SRAM_DMA_CONTROL);
James Ketrenos43f66a62005-03-25 12:31:53 -06002747
2748 IPW_DEBUG_FW("<< : \n");
2749 return 0;
2750}
2751
2752static void ipw_fw_dma_abort(struct ipw_priv *priv)
2753{
2754 u32 control = 0;
2755
2756 IPW_DEBUG_FW(">> :\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04002757
Pavel Machek67fd6b42006-07-11 15:34:05 +02002758 /* set the Stop and Abort bit */
James Ketrenos43f66a62005-03-25 12:31:53 -06002759 control = DMA_CONTROL_SMALL_CB_CONST_VALUE | DMA_CB_STOP_AND_ABORT;
James Ketrenosb095c382005-08-24 22:04:42 -05002760 ipw_write_reg32(priv, IPW_DMA_I_DMA_CONTROL, control);
James Ketrenos43f66a62005-03-25 12:31:53 -06002761 priv->sram_desc.last_cb_index = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04002762
James Ketrenos43f66a62005-03-25 12:31:53 -06002763 IPW_DEBUG_FW("<< \n");
2764}
2765
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002766static int ipw_fw_dma_write_command_block(struct ipw_priv *priv, int index,
2767 struct command_block *cb)
James Ketrenos43f66a62005-03-25 12:31:53 -06002768{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002769 u32 address =
James Ketrenosb095c382005-08-24 22:04:42 -05002770 IPW_SHARED_SRAM_DMA_CONTROL +
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002771 (sizeof(struct command_block) * index);
James Ketrenos43f66a62005-03-25 12:31:53 -06002772 IPW_DEBUG_FW(">> :\n");
2773
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002774 ipw_write_indirect(priv, address, (u8 *) cb,
2775 (int)sizeof(struct command_block));
James Ketrenos43f66a62005-03-25 12:31:53 -06002776
2777 IPW_DEBUG_FW("<< :\n");
2778 return 0;
2779
2780}
2781
2782static int ipw_fw_dma_kick(struct ipw_priv *priv)
2783{
2784 u32 control = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002785 u32 index = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06002786
2787 IPW_DEBUG_FW(">> :\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04002788
James Ketrenos43f66a62005-03-25 12:31:53 -06002789 for (index = 0; index < priv->sram_desc.last_cb_index; index++)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002790 ipw_fw_dma_write_command_block(priv, index,
2791 &priv->sram_desc.cb_list[index]);
James Ketrenos43f66a62005-03-25 12:31:53 -06002792
2793 /* Enable the DMA in the CSR register */
James Ketrenosb095c382005-08-24 22:04:42 -05002794 ipw_clear_bit(priv, IPW_RESET_REG,
2795 IPW_RESET_REG_MASTER_DISABLED |
2796 IPW_RESET_REG_STOP_MASTER);
Jeff Garzikbf794512005-07-31 13:07:26 -04002797
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002798 /* Set the Start bit. */
James Ketrenos43f66a62005-03-25 12:31:53 -06002799 control = DMA_CONTROL_SMALL_CB_CONST_VALUE | DMA_CB_START;
James Ketrenosb095c382005-08-24 22:04:42 -05002800 ipw_write_reg32(priv, IPW_DMA_I_DMA_CONTROL, control);
James Ketrenos43f66a62005-03-25 12:31:53 -06002801
2802 IPW_DEBUG_FW("<< :\n");
2803 return 0;
2804}
2805
2806static void ipw_fw_dma_dump_command_block(struct ipw_priv *priv)
2807{
2808 u32 address;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002809 u32 register_value = 0;
2810 u32 cb_fields_address = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06002811
2812 IPW_DEBUG_FW(">> :\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002813 address = ipw_read_reg32(priv, IPW_DMA_I_CURRENT_CB);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002814 IPW_DEBUG_FW_INFO("Current CB is 0x%x \n", address);
James Ketrenos43f66a62005-03-25 12:31:53 -06002815
2816 /* Read the DMA Controlor register */
James Ketrenosb095c382005-08-24 22:04:42 -05002817 register_value = ipw_read_reg32(priv, IPW_DMA_I_DMA_CONTROL);
2818 IPW_DEBUG_FW_INFO("IPW_DMA_I_DMA_CONTROL is 0x%x \n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002819
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002820 /* Print the CB values */
James Ketrenos43f66a62005-03-25 12:31:53 -06002821 cb_fields_address = address;
2822 register_value = ipw_read_reg32(priv, cb_fields_address);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002823 IPW_DEBUG_FW_INFO("Current CB ControlField is 0x%x \n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002824
2825 cb_fields_address += sizeof(u32);
2826 register_value = ipw_read_reg32(priv, cb_fields_address);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002827 IPW_DEBUG_FW_INFO("Current CB Source Field is 0x%x \n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002828
2829 cb_fields_address += sizeof(u32);
2830 register_value = ipw_read_reg32(priv, cb_fields_address);
2831 IPW_DEBUG_FW_INFO("Current CB Destination Field is 0x%x \n",
2832 register_value);
2833
2834 cb_fields_address += sizeof(u32);
2835 register_value = ipw_read_reg32(priv, cb_fields_address);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002836 IPW_DEBUG_FW_INFO("Current CB Status Field is 0x%x \n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002837
2838 IPW_DEBUG_FW(">> :\n");
2839}
2840
2841static int ipw_fw_dma_command_block_index(struct ipw_priv *priv)
2842{
2843 u32 current_cb_address = 0;
2844 u32 current_cb_index = 0;
2845
2846 IPW_DEBUG_FW("<< :\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002847 current_cb_address = ipw_read_reg32(priv, IPW_DMA_I_CURRENT_CB);
Jeff Garzikbf794512005-07-31 13:07:26 -04002848
James Ketrenosb095c382005-08-24 22:04:42 -05002849 current_cb_index = (current_cb_address - IPW_SHARED_SRAM_DMA_CONTROL) /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002850 sizeof(struct command_block);
Jeff Garzikbf794512005-07-31 13:07:26 -04002851
James Ketrenos43f66a62005-03-25 12:31:53 -06002852 IPW_DEBUG_FW_INFO("Current CB index 0x%x address = 0x%X \n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002853 current_cb_index, current_cb_address);
James Ketrenos43f66a62005-03-25 12:31:53 -06002854
2855 IPW_DEBUG_FW(">> :\n");
2856 return current_cb_index;
2857
2858}
2859
2860static int ipw_fw_dma_add_command_block(struct ipw_priv *priv,
2861 u32 src_address,
2862 u32 dest_address,
2863 u32 length,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002864 int interrupt_enabled, int is_last)
James Ketrenos43f66a62005-03-25 12:31:53 -06002865{
2866
Jeff Garzikbf794512005-07-31 13:07:26 -04002867 u32 control = CB_VALID | CB_SRC_LE | CB_DEST_LE | CB_SRC_AUTOINC |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002868 CB_SRC_IO_GATED | CB_DEST_AUTOINC | CB_SRC_SIZE_LONG |
2869 CB_DEST_SIZE_LONG;
James Ketrenos43f66a62005-03-25 12:31:53 -06002870 struct command_block *cb;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002871 u32 last_cb_element = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06002872
2873 IPW_DEBUG_FW_INFO("src_address=0x%x dest_address=0x%x length=0x%x\n",
2874 src_address, dest_address, length);
2875
2876 if (priv->sram_desc.last_cb_index >= CB_NUMBER_OF_ELEMENTS_SMALL)
2877 return -1;
2878
2879 last_cb_element = priv->sram_desc.last_cb_index;
2880 cb = &priv->sram_desc.cb_list[last_cb_element];
2881 priv->sram_desc.last_cb_index++;
2882
2883 /* Calculate the new CB control word */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002884 if (interrupt_enabled)
James Ketrenos43f66a62005-03-25 12:31:53 -06002885 control |= CB_INT_ENABLED;
2886
2887 if (is_last)
2888 control |= CB_LAST_VALID;
Jeff Garzikbf794512005-07-31 13:07:26 -04002889
James Ketrenos43f66a62005-03-25 12:31:53 -06002890 control |= length;
2891
2892 /* Calculate the CB Element's checksum value */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002893 cb->status = control ^ src_address ^ dest_address;
James Ketrenos43f66a62005-03-25 12:31:53 -06002894
2895 /* Copy the Source and Destination addresses */
2896 cb->dest_addr = dest_address;
2897 cb->source_addr = src_address;
2898
2899 /* Copy the Control Word last */
2900 cb->control = control;
2901
2902 return 0;
2903}
2904
Zhu Yi11ebd1b2009-08-28 11:42:31 +08002905static int ipw_fw_dma_add_buffer(struct ipw_priv *priv, dma_addr_t *src_address,
2906 int nr, u32 dest_address, u32 len)
James Ketrenos43f66a62005-03-25 12:31:53 -06002907{
Zhu Yi11ebd1b2009-08-28 11:42:31 +08002908 int ret, i;
2909 u32 size;
2910
James Ketrenos43f66a62005-03-25 12:31:53 -06002911 IPW_DEBUG_FW(">> \n");
Zhu Yi11ebd1b2009-08-28 11:42:31 +08002912 IPW_DEBUG_FW_INFO("nr=%d dest_address=0x%x len=0x%x\n",
2913 nr, dest_address, len);
2914
2915 for (i = 0; i < nr; i++) {
2916 size = min_t(u32, len - i * CB_MAX_LENGTH, CB_MAX_LENGTH);
2917 ret = ipw_fw_dma_add_command_block(priv, src_address[i],
2918 dest_address +
2919 i * CB_MAX_LENGTH, size,
2920 0, 0);
2921 if (ret) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002922 IPW_DEBUG_FW_INFO(": Failed\n");
2923 return -1;
Jeff Garzikbf794512005-07-31 13:07:26 -04002924 } else
James Ketrenos43f66a62005-03-25 12:31:53 -06002925 IPW_DEBUG_FW_INFO(": Added new cb\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06002926 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002927
James Ketrenos43f66a62005-03-25 12:31:53 -06002928 IPW_DEBUG_FW("<< \n");
2929 return 0;
2930}
2931
2932static int ipw_fw_dma_wait(struct ipw_priv *priv)
2933{
Zhu Yi397ae122006-01-24 16:37:22 +08002934 u32 current_index = 0, previous_index;
James Ketrenos43f66a62005-03-25 12:31:53 -06002935 u32 watchdog = 0;
2936
2937 IPW_DEBUG_FW(">> : \n");
2938
2939 current_index = ipw_fw_dma_command_block_index(priv);
Zhu Yi397ae122006-01-24 16:37:22 +08002940 IPW_DEBUG_FW_INFO("sram_desc.last_cb_index:0x%08X\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002941 (int)priv->sram_desc.last_cb_index);
James Ketrenos43f66a62005-03-25 12:31:53 -06002942
2943 while (current_index < priv->sram_desc.last_cb_index) {
2944 udelay(50);
Zhu Yi397ae122006-01-24 16:37:22 +08002945 previous_index = current_index;
James Ketrenos43f66a62005-03-25 12:31:53 -06002946 current_index = ipw_fw_dma_command_block_index(priv);
2947
Zhu Yi397ae122006-01-24 16:37:22 +08002948 if (previous_index < current_index) {
2949 watchdog = 0;
2950 continue;
2951 }
2952 if (++watchdog > 400) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002953 IPW_DEBUG_FW_INFO("Timeout\n");
2954 ipw_fw_dma_dump_command_block(priv);
2955 ipw_fw_dma_abort(priv);
2956 return -1;
2957 }
2958 }
2959
2960 ipw_fw_dma_abort(priv);
2961
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002962 /*Disable the DMA in the CSR register */
James Ketrenosb095c382005-08-24 22:04:42 -05002963 ipw_set_bit(priv, IPW_RESET_REG,
2964 IPW_RESET_REG_MASTER_DISABLED | IPW_RESET_REG_STOP_MASTER);
James Ketrenos43f66a62005-03-25 12:31:53 -06002965
2966 IPW_DEBUG_FW("<< dmaWaitSync \n");
2967 return 0;
2968}
2969
Jeff Garzikbf794512005-07-31 13:07:26 -04002970static void ipw_remove_current_network(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002971{
2972 struct list_head *element, *safe;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04002973 struct libipw_network *network = NULL;
James Ketrenosa613bff2005-08-24 21:43:11 -05002974 unsigned long flags;
2975
2976 spin_lock_irqsave(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06002977 list_for_each_safe(element, safe, &priv->ieee->network_list) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04002978 network = list_entry(element, struct libipw_network, list);
James Ketrenos43f66a62005-03-25 12:31:53 -06002979 if (!memcmp(network->bssid, priv->bssid, ETH_ALEN)) {
2980 list_del(element);
Jeff Garzikbf794512005-07-31 13:07:26 -04002981 list_add_tail(&network->list,
James Ketrenos43f66a62005-03-25 12:31:53 -06002982 &priv->ieee->network_free_list);
2983 }
2984 }
James Ketrenosa613bff2005-08-24 21:43:11 -05002985 spin_unlock_irqrestore(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06002986}
2987
2988/**
Jeff Garzikbf794512005-07-31 13:07:26 -04002989 * Check that card is still alive.
James Ketrenos43f66a62005-03-25 12:31:53 -06002990 * Reads debug register from domain0.
2991 * If card is present, pre-defined value should
2992 * be found there.
Jeff Garzikbf794512005-07-31 13:07:26 -04002993 *
James Ketrenos43f66a62005-03-25 12:31:53 -06002994 * @param priv
2995 * @return 1 if card is present, 0 otherwise
2996 */
2997static inline int ipw_alive(struct ipw_priv *priv)
2998{
2999 return ipw_read32(priv, 0x90) == 0xd55555d5;
3000}
3001
Zhu Yic7b6a672006-01-24 16:37:05 +08003002/* timeout in msec, attempted in 10-msec quanta */
Arjan van de Ven858119e2006-01-14 13:20:43 -08003003static int ipw_poll_bit(struct ipw_priv *priv, u32 addr, u32 mask,
James Ketrenos43f66a62005-03-25 12:31:53 -06003004 int timeout)
3005{
3006 int i = 0;
3007
3008 do {
Jeff Garzikbf794512005-07-31 13:07:26 -04003009 if ((ipw_read32(priv, addr) & mask) == mask)
James Ketrenos43f66a62005-03-25 12:31:53 -06003010 return i;
3011 mdelay(10);
3012 i += 10;
3013 } while (i < timeout);
Jeff Garzikbf794512005-07-31 13:07:26 -04003014
James Ketrenos43f66a62005-03-25 12:31:53 -06003015 return -ETIME;
3016}
3017
Jeff Garzikbf794512005-07-31 13:07:26 -04003018/* These functions load the firmware and micro code for the operation of
James Ketrenos43f66a62005-03-25 12:31:53 -06003019 * the ipw hardware. It assumes the buffer has all the bits for the
3020 * image and the caller is handling the memory allocation and clean up.
3021 */
3022
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003023static int ipw_stop_master(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06003024{
3025 int rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04003026
James Ketrenos43f66a62005-03-25 12:31:53 -06003027 IPW_DEBUG_TRACE(">> \n");
3028 /* stop master. typical delay - 0 */
James Ketrenosb095c382005-08-24 22:04:42 -05003029 ipw_set_bit(priv, IPW_RESET_REG, IPW_RESET_REG_STOP_MASTER);
James Ketrenos43f66a62005-03-25 12:31:53 -06003030
Zhu Yic7b6a672006-01-24 16:37:05 +08003031 /* timeout is in msec, polled in 10-msec quanta */
James Ketrenosb095c382005-08-24 22:04:42 -05003032 rc = ipw_poll_bit(priv, IPW_RESET_REG,
3033 IPW_RESET_REG_MASTER_DISABLED, 100);
James Ketrenos43f66a62005-03-25 12:31:53 -06003034 if (rc < 0) {
Zhu Yic7b6a672006-01-24 16:37:05 +08003035 IPW_ERROR("wait for stop master failed after 100ms\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06003036 return -1;
3037 }
3038
3039 IPW_DEBUG_INFO("stop master %dms\n", rc);
3040
3041 return rc;
3042}
3043
3044static void ipw_arc_release(struct ipw_priv *priv)
3045{
3046 IPW_DEBUG_TRACE(">> \n");
3047 mdelay(5);
3048
James Ketrenosb095c382005-08-24 22:04:42 -05003049 ipw_clear_bit(priv, IPW_RESET_REG, CBD_RESET_REG_PRINCETON_RESET);
James Ketrenos43f66a62005-03-25 12:31:53 -06003050
3051 /* no one knows timing, for safety add some delay */
3052 mdelay(5);
3053}
3054
James Ketrenos43f66a62005-03-25 12:31:53 -06003055struct fw_chunk {
Al Viroe62e1ee2007-12-27 01:36:46 -05003056 __le32 address;
3057 __le32 length;
James Ketrenos43f66a62005-03-25 12:31:53 -06003058};
3059
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003060static int ipw_load_ucode(struct ipw_priv *priv, u8 * data, size_t len)
James Ketrenos43f66a62005-03-25 12:31:53 -06003061{
3062 int rc = 0, i, addr;
3063 u8 cr = 0;
Al Viroe62e1ee2007-12-27 01:36:46 -05003064 __le16 *image;
James Ketrenos43f66a62005-03-25 12:31:53 -06003065
Al Viroe62e1ee2007-12-27 01:36:46 -05003066 image = (__le16 *) data;
Jeff Garzikbf794512005-07-31 13:07:26 -04003067
James Ketrenos43f66a62005-03-25 12:31:53 -06003068 IPW_DEBUG_TRACE(">> \n");
3069
3070 rc = ipw_stop_master(priv);
3071
3072 if (rc < 0)
3073 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04003074
James Ketrenosb095c382005-08-24 22:04:42 -05003075 for (addr = IPW_SHARED_LOWER_BOUND;
3076 addr < IPW_REGISTER_DOMAIN1_END; addr += 4) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003077 ipw_write32(priv, addr, 0);
3078 }
3079
3080 /* no ucode (yet) */
3081 memset(&priv->dino_alive, 0, sizeof(priv->dino_alive));
3082 /* destroy DMA queues */
3083 /* reset sequence */
3084
James Ketrenosb095c382005-08-24 22:04:42 -05003085 ipw_write_reg32(priv, IPW_MEM_HALT_AND_RESET, IPW_BIT_HALT_RESET_ON);
James Ketrenos43f66a62005-03-25 12:31:53 -06003086 ipw_arc_release(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05003087 ipw_write_reg32(priv, IPW_MEM_HALT_AND_RESET, IPW_BIT_HALT_RESET_OFF);
James Ketrenos43f66a62005-03-25 12:31:53 -06003088 mdelay(1);
3089
3090 /* reset PHY */
James Ketrenosb095c382005-08-24 22:04:42 -05003091 ipw_write_reg32(priv, IPW_INTERNAL_CMD_EVENT, IPW_BASEBAND_POWER_DOWN);
James Ketrenos43f66a62005-03-25 12:31:53 -06003092 mdelay(1);
Jeff Garzikbf794512005-07-31 13:07:26 -04003093
James Ketrenosb095c382005-08-24 22:04:42 -05003094 ipw_write_reg32(priv, IPW_INTERNAL_CMD_EVENT, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06003095 mdelay(1);
Jeff Garzikbf794512005-07-31 13:07:26 -04003096
James Ketrenos43f66a62005-03-25 12:31:53 -06003097 /* enable ucode store */
Zhu Yic8fe6672006-01-24 16:36:36 +08003098 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, 0x0);
3099 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, DINO_ENABLE_CS);
James Ketrenos43f66a62005-03-25 12:31:53 -06003100 mdelay(1);
3101
3102 /* write ucode */
3103 /**
3104 * @bug
3105 * Do NOT set indirect address register once and then
3106 * store data to indirect data register in the loop.
3107 * It seems very reasonable, but in this case DINO do not
3108 * accept ucode. It is essential to set address each time.
3109 */
3110 /* load new ipw uCode */
3111 for (i = 0; i < len / 2; i++)
James Ketrenosb095c382005-08-24 22:04:42 -05003112 ipw_write_reg16(priv, IPW_BASEBAND_CONTROL_STORE,
Al Viroe62e1ee2007-12-27 01:36:46 -05003113 le16_to_cpu(image[i]));
James Ketrenos43f66a62005-03-25 12:31:53 -06003114
James Ketrenos43f66a62005-03-25 12:31:53 -06003115 /* enable DINO */
James Ketrenosb095c382005-08-24 22:04:42 -05003116 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, 0);
3117 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, DINO_ENABLE_SYSTEM);
James Ketrenos43f66a62005-03-25 12:31:53 -06003118
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003119 /* this is where the igx / win driver deveates from the VAP driver. */
James Ketrenos43f66a62005-03-25 12:31:53 -06003120
3121 /* wait for alive response */
3122 for (i = 0; i < 100; i++) {
3123 /* poll for incoming data */
James Ketrenosb095c382005-08-24 22:04:42 -05003124 cr = ipw_read_reg8(priv, IPW_BASEBAND_CONTROL_STATUS);
James Ketrenos43f66a62005-03-25 12:31:53 -06003125 if (cr & DINO_RXFIFO_DATA)
3126 break;
3127 mdelay(1);
3128 }
3129
3130 if (cr & DINO_RXFIFO_DATA) {
3131 /* alive_command_responce size is NOT multiple of 4 */
Al Viroe62e1ee2007-12-27 01:36:46 -05003132 __le32 response_buffer[(sizeof(priv->dino_alive) + 3) / 4];
Jeff Garzikbf794512005-07-31 13:07:26 -04003133
3134 for (i = 0; i < ARRAY_SIZE(response_buffer); i++)
James Ketrenos43f66a62005-03-25 12:31:53 -06003135 response_buffer[i] =
Al Viroe62e1ee2007-12-27 01:36:46 -05003136 cpu_to_le32(ipw_read_reg32(priv,
James Ketrenosb095c382005-08-24 22:04:42 -05003137 IPW_BASEBAND_RX_FIFO_READ));
James Ketrenos43f66a62005-03-25 12:31:53 -06003138 memcpy(&priv->dino_alive, response_buffer,
3139 sizeof(priv->dino_alive));
3140 if (priv->dino_alive.alive_command == 1
3141 && priv->dino_alive.ucode_valid == 1) {
3142 rc = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003143 IPW_DEBUG_INFO
3144 ("Microcode OK, rev. %d (0x%x) dev. %d (0x%x) "
3145 "of %02d/%02d/%02d %02d:%02d\n",
3146 priv->dino_alive.software_revision,
3147 priv->dino_alive.software_revision,
3148 priv->dino_alive.device_identifier,
3149 priv->dino_alive.device_identifier,
3150 priv->dino_alive.time_stamp[0],
3151 priv->dino_alive.time_stamp[1],
3152 priv->dino_alive.time_stamp[2],
3153 priv->dino_alive.time_stamp[3],
3154 priv->dino_alive.time_stamp[4]);
James Ketrenos43f66a62005-03-25 12:31:53 -06003155 } else {
3156 IPW_DEBUG_INFO("Microcode is not alive\n");
3157 rc = -EINVAL;
3158 }
3159 } else {
3160 IPW_DEBUG_INFO("No alive response from DINO\n");
3161 rc = -ETIME;
3162 }
3163
3164 /* disable DINO, otherwise for some reason
3165 firmware have problem getting alive resp. */
James Ketrenosb095c382005-08-24 22:04:42 -05003166 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06003167
James Ketrenos43f66a62005-03-25 12:31:53 -06003168 return rc;
3169}
3170
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003171static int ipw_load_firmware(struct ipw_priv *priv, u8 * data, size_t len)
James Ketrenos43f66a62005-03-25 12:31:53 -06003172{
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003173 int ret = -1;
James Ketrenos43f66a62005-03-25 12:31:53 -06003174 int offset = 0;
3175 struct fw_chunk *chunk;
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003176 int total_nr = 0;
3177 int i;
3178 struct pci_pool *pool;
3179 u32 *virts[CB_NUMBER_OF_ELEMENTS_SMALL];
3180 dma_addr_t phys[CB_NUMBER_OF_ELEMENTS_SMALL];
James Ketrenos43f66a62005-03-25 12:31:53 -06003181
3182 IPW_DEBUG_TRACE("<< : \n");
James Ketrenos43f66a62005-03-25 12:31:53 -06003183
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003184 pool = pci_pool_create("ipw2200", priv->pci_dev, CB_MAX_LENGTH, 0, 0);
3185 if (!pool) {
3186 IPW_ERROR("pci_pool_create failed\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06003187 return -ENOMEM;
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003188 }
James Ketrenos43f66a62005-03-25 12:31:53 -06003189
3190 /* Start the Dma */
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003191 ret = ipw_fw_dma_enable(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06003192
Alexander Beregalov0ee904c2009-04-11 14:50:23 +00003193 /* the DMA is already ready this would be a bug. */
3194 BUG_ON(priv->sram_desc.last_cb_index > 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06003195
3196 do {
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003197 u32 chunk_len;
3198 u8 *start;
3199 int size;
3200 int nr = 0;
3201
James Ketrenos43f66a62005-03-25 12:31:53 -06003202 chunk = (struct fw_chunk *)(data + offset);
3203 offset += sizeof(struct fw_chunk);
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003204 chunk_len = le32_to_cpu(chunk->length);
3205 start = data + offset;
3206
3207 nr = (chunk_len + CB_MAX_LENGTH - 1) / CB_MAX_LENGTH;
3208 for (i = 0; i < nr; i++) {
3209 virts[total_nr] = pci_pool_alloc(pool, GFP_KERNEL,
3210 &phys[total_nr]);
3211 if (!virts[total_nr]) {
3212 ret = -ENOMEM;
3213 goto out;
3214 }
3215 size = min_t(u32, chunk_len - i * CB_MAX_LENGTH,
3216 CB_MAX_LENGTH);
3217 memcpy(virts[total_nr], start, size);
3218 start += size;
3219 total_nr++;
3220 /* We don't support fw chunk larger than 64*8K */
3221 BUG_ON(total_nr > CB_NUMBER_OF_ELEMENTS_SMALL);
3222 }
3223
James Ketrenos43f66a62005-03-25 12:31:53 -06003224 /* build DMA packet and queue up for sending */
Jeff Garzikbf794512005-07-31 13:07:26 -04003225 /* dma to chunk->address, the chunk->length bytes from data +
James Ketrenos43f66a62005-03-25 12:31:53 -06003226 * offeset*/
3227 /* Dma loading */
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003228 ret = ipw_fw_dma_add_buffer(priv, &phys[total_nr - nr],
3229 nr, le32_to_cpu(chunk->address),
3230 chunk_len);
3231 if (ret) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003232 IPW_DEBUG_INFO("dmaAddBuffer Failed\n");
3233 goto out;
3234 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003235
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003236 offset += chunk_len;
James Ketrenos43f66a62005-03-25 12:31:53 -06003237 } while (offset < len);
3238
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003239 /* Run the DMA and wait for the answer */
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003240 ret = ipw_fw_dma_kick(priv);
3241 if (ret) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003242 IPW_ERROR("dmaKick Failed\n");
3243 goto out;
3244 }
3245
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003246 ret = ipw_fw_dma_wait(priv);
3247 if (ret) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003248 IPW_ERROR("dmaWaitSync Failed\n");
3249 goto out;
3250 }
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003251 out:
3252 for (i = 0; i < total_nr; i++)
3253 pci_pool_free(pool, virts[i], phys[i]);
3254
3255 pci_pool_destroy(pool);
3256
3257 return ret;
James Ketrenos43f66a62005-03-25 12:31:53 -06003258}
3259
3260/* stop nic */
3261static int ipw_stop_nic(struct ipw_priv *priv)
3262{
3263 int rc = 0;
3264
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003265 /* stop */
James Ketrenosb095c382005-08-24 22:04:42 -05003266 ipw_write32(priv, IPW_RESET_REG, IPW_RESET_REG_STOP_MASTER);
Jeff Garzikbf794512005-07-31 13:07:26 -04003267
James Ketrenosb095c382005-08-24 22:04:42 -05003268 rc = ipw_poll_bit(priv, IPW_RESET_REG,
3269 IPW_RESET_REG_MASTER_DISABLED, 500);
James Ketrenos43f66a62005-03-25 12:31:53 -06003270 if (rc < 0) {
Zhu Yic7b6a672006-01-24 16:37:05 +08003271 IPW_ERROR("wait for reg master disabled failed after 500ms\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06003272 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04003273 }
James Ketrenos43f66a62005-03-25 12:31:53 -06003274
James Ketrenosb095c382005-08-24 22:04:42 -05003275 ipw_set_bit(priv, IPW_RESET_REG, CBD_RESET_REG_PRINCETON_RESET);
Jeff Garzikbf794512005-07-31 13:07:26 -04003276
James Ketrenos43f66a62005-03-25 12:31:53 -06003277 return rc;
3278}
3279
3280static void ipw_start_nic(struct ipw_priv *priv)
3281{
3282 IPW_DEBUG_TRACE(">>\n");
3283
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003284 /* prvHwStartNic release ARC */
James Ketrenosb095c382005-08-24 22:04:42 -05003285 ipw_clear_bit(priv, IPW_RESET_REG,
3286 IPW_RESET_REG_MASTER_DISABLED |
3287 IPW_RESET_REG_STOP_MASTER |
James Ketrenos43f66a62005-03-25 12:31:53 -06003288 CBD_RESET_REG_PRINCETON_RESET);
Jeff Garzikbf794512005-07-31 13:07:26 -04003289
James Ketrenos43f66a62005-03-25 12:31:53 -06003290 /* enable power management */
James Ketrenosb095c382005-08-24 22:04:42 -05003291 ipw_set_bit(priv, IPW_GP_CNTRL_RW,
3292 IPW_GP_CNTRL_BIT_HOST_ALLOWS_STANDBY);
James Ketrenos43f66a62005-03-25 12:31:53 -06003293
3294 IPW_DEBUG_TRACE("<<\n");
3295}
Jeff Garzikbf794512005-07-31 13:07:26 -04003296
James Ketrenos43f66a62005-03-25 12:31:53 -06003297static int ipw_init_nic(struct ipw_priv *priv)
3298{
3299 int rc;
3300
3301 IPW_DEBUG_TRACE(">>\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04003302 /* reset */
James Ketrenos43f66a62005-03-25 12:31:53 -06003303 /*prvHwInitNic */
3304 /* set "initialization complete" bit to move adapter to D0 state */
James Ketrenosb095c382005-08-24 22:04:42 -05003305 ipw_set_bit(priv, IPW_GP_CNTRL_RW, IPW_GP_CNTRL_BIT_INIT_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003306
3307 /* low-level PLL activation */
James Ketrenosb095c382005-08-24 22:04:42 -05003308 ipw_write32(priv, IPW_READ_INT_REGISTER,
3309 IPW_BIT_INT_HOST_SRAM_READ_INT_REGISTER);
James Ketrenos43f66a62005-03-25 12:31:53 -06003310
3311 /* wait for clock stabilization */
James Ketrenosb095c382005-08-24 22:04:42 -05003312 rc = ipw_poll_bit(priv, IPW_GP_CNTRL_RW,
3313 IPW_GP_CNTRL_BIT_CLOCK_READY, 250);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003314 if (rc < 0)
James Ketrenos43f66a62005-03-25 12:31:53 -06003315 IPW_DEBUG_INFO("FAILED wait for clock stablization\n");
3316
3317 /* assert SW reset */
James Ketrenosb095c382005-08-24 22:04:42 -05003318 ipw_set_bit(priv, IPW_RESET_REG, IPW_RESET_REG_SW_RESET);
James Ketrenos43f66a62005-03-25 12:31:53 -06003319
3320 udelay(10);
3321
3322 /* set "initialization complete" bit to move adapter to D0 state */
James Ketrenosb095c382005-08-24 22:04:42 -05003323 ipw_set_bit(priv, IPW_GP_CNTRL_RW, IPW_GP_CNTRL_BIT_INIT_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003324
3325 IPW_DEBUG_TRACE(">>\n");
3326 return 0;
3327}
3328
Jeff Garzikbf794512005-07-31 13:07:26 -04003329/* Call this function from process context, it will sleep in request_firmware.
James Ketrenos43f66a62005-03-25 12:31:53 -06003330 * Probe is an ok place to call this from.
3331 */
3332static int ipw_reset_nic(struct ipw_priv *priv)
3333{
3334 int rc = 0;
James Ketrenosa613bff2005-08-24 21:43:11 -05003335 unsigned long flags;
James Ketrenos43f66a62005-03-25 12:31:53 -06003336
3337 IPW_DEBUG_TRACE(">>\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04003338
James Ketrenos43f66a62005-03-25 12:31:53 -06003339 rc = ipw_init_nic(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -04003340
James Ketrenosa613bff2005-08-24 21:43:11 -05003341 spin_lock_irqsave(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06003342 /* Clear the 'host command active' bit... */
3343 priv->status &= ~STATUS_HCMD_ACTIVE;
3344 wake_up_interruptible(&priv->wait_command_queue);
James Ketrenosafbf30a2005-08-25 00:05:33 -05003345 priv->status &= ~(STATUS_SCANNING | STATUS_SCAN_ABORTING);
3346 wake_up_interruptible(&priv->wait_state);
James Ketrenosa613bff2005-08-24 21:43:11 -05003347 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06003348
3349 IPW_DEBUG_TRACE("<<\n");
3350 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04003351}
James Ketrenos43f66a62005-03-25 12:31:53 -06003352
James Ketrenos9006ea72006-03-08 03:22:28 +08003353
3354struct ipw_fw {
Zhu Yi0070f8c2006-04-13 17:20:12 +08003355 __le32 ver;
3356 __le32 boot_size;
3357 __le32 ucode_size;
3358 __le32 fw_size;
James Ketrenos9006ea72006-03-08 03:22:28 +08003359 u8 data[0];
3360};
3361
Jeff Garzikbf794512005-07-31 13:07:26 -04003362static int ipw_get_fw(struct ipw_priv *priv,
James Ketrenos9006ea72006-03-08 03:22:28 +08003363 const struct firmware **raw, const char *name)
James Ketrenos43f66a62005-03-25 12:31:53 -06003364{
James Ketrenos9006ea72006-03-08 03:22:28 +08003365 struct ipw_fw *fw;
James Ketrenos43f66a62005-03-25 12:31:53 -06003366 int rc;
3367
3368 /* ask firmware_class module to get the boot firmware off disk */
James Ketrenos9006ea72006-03-08 03:22:28 +08003369 rc = request_firmware(raw, name, &priv->pci_dev->dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06003370 if (rc < 0) {
James Ketrenos9006ea72006-03-08 03:22:28 +08003371 IPW_ERROR("%s request_firmware failed: Reason %d\n", name, rc);
James Ketrenos43f66a62005-03-25 12:31:53 -06003372 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04003373 }
James Ketrenos43f66a62005-03-25 12:31:53 -06003374
James Ketrenos9006ea72006-03-08 03:22:28 +08003375 if ((*raw)->size < sizeof(*fw)) {
3376 IPW_ERROR("%s is too small (%zd)\n", name, (*raw)->size);
James Ketrenos43f66a62005-03-25 12:31:53 -06003377 return -EINVAL;
3378 }
3379
James Ketrenos9006ea72006-03-08 03:22:28 +08003380 fw = (void *)(*raw)->data;
3381
Zhu Yi0070f8c2006-04-13 17:20:12 +08003382 if ((*raw)->size < sizeof(*fw) + le32_to_cpu(fw->boot_size) +
3383 le32_to_cpu(fw->ucode_size) + le32_to_cpu(fw->fw_size)) {
James Ketrenos9006ea72006-03-08 03:22:28 +08003384 IPW_ERROR("%s is too small or corrupt (%zd)\n",
3385 name, (*raw)->size);
3386 return -EINVAL;
3387 }
3388
3389 IPW_DEBUG_INFO("Read firmware '%s' image v%d.%d (%zd bytes)\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06003390 name,
James Ketrenos9006ea72006-03-08 03:22:28 +08003391 le32_to_cpu(fw->ver) >> 16,
3392 le32_to_cpu(fw->ver) & 0xff,
3393 (*raw)->size - sizeof(*fw));
James Ketrenos43f66a62005-03-25 12:31:53 -06003394 return 0;
3395}
3396
James Ketrenosb095c382005-08-24 22:04:42 -05003397#define IPW_RX_BUF_SIZE (3000)
James Ketrenos43f66a62005-03-25 12:31:53 -06003398
Arjan van de Ven858119e2006-01-14 13:20:43 -08003399static void ipw_rx_queue_reset(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06003400 struct ipw_rx_queue *rxq)
3401{
3402 unsigned long flags;
3403 int i;
3404
3405 spin_lock_irqsave(&rxq->lock, flags);
3406
3407 INIT_LIST_HEAD(&rxq->rx_free);
3408 INIT_LIST_HEAD(&rxq->rx_used);
3409
3410 /* Fill the rx_used queue with _all_ of the Rx buffers */
3411 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++) {
3412 /* In the reset function, these buffers may have been allocated
3413 * to an SKB, so we need to unmap and free potential storage */
3414 if (rxq->pool[i].skb != NULL) {
3415 pci_unmap_single(priv->pci_dev, rxq->pool[i].dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05003416 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003417 dev_kfree_skb(rxq->pool[i].skb);
James Ketrenosa613bff2005-08-24 21:43:11 -05003418 rxq->pool[i].skb = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -06003419 }
3420 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
3421 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003422
James Ketrenos43f66a62005-03-25 12:31:53 -06003423 /* Set us so that we have processed and used all buffers, but have
3424 * not restocked the Rx queue with fresh buffers */
3425 rxq->read = rxq->write = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06003426 rxq->free_count = 0;
3427 spin_unlock_irqrestore(&rxq->lock, flags);
3428}
3429
3430#ifdef CONFIG_PM
3431static int fw_loaded = 0;
James Ketrenos9006ea72006-03-08 03:22:28 +08003432static const struct firmware *raw = NULL;
James Ketrenosafbf30a2005-08-25 00:05:33 -05003433
3434static void free_firmware(void)
3435{
3436 if (fw_loaded) {
James Ketrenos9006ea72006-03-08 03:22:28 +08003437 release_firmware(raw);
3438 raw = NULL;
James Ketrenosafbf30a2005-08-25 00:05:33 -05003439 fw_loaded = 0;
3440 }
3441}
3442#else
3443#define free_firmware() do {} while (0)
James Ketrenos43f66a62005-03-25 12:31:53 -06003444#endif
3445
3446static int ipw_load(struct ipw_priv *priv)
3447{
3448#ifndef CONFIG_PM
James Ketrenos9006ea72006-03-08 03:22:28 +08003449 const struct firmware *raw = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -06003450#endif
James Ketrenos9006ea72006-03-08 03:22:28 +08003451 struct ipw_fw *fw;
3452 u8 *boot_img, *ucode_img, *fw_img;
3453 u8 *name = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -06003454 int rc = 0, retries = 3;
3455
Zhu Yi397ae122006-01-24 16:37:22 +08003456 switch (priv->ieee->iw_mode) {
3457 case IW_MODE_ADHOC:
James Ketrenos9006ea72006-03-08 03:22:28 +08003458 name = "ipw2200-ibss.fw";
Zhu Yi397ae122006-01-24 16:37:22 +08003459 break;
James Ketrenosb095c382005-08-24 22:04:42 -05003460#ifdef CONFIG_IPW2200_MONITOR
Zhu Yi397ae122006-01-24 16:37:22 +08003461 case IW_MODE_MONITOR:
James Ketrenos9006ea72006-03-08 03:22:28 +08003462 name = "ipw2200-sniffer.fw";
Zhu Yi397ae122006-01-24 16:37:22 +08003463 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06003464#endif
Zhu Yi397ae122006-01-24 16:37:22 +08003465 case IW_MODE_INFRA:
James Ketrenos9006ea72006-03-08 03:22:28 +08003466 name = "ipw2200-bss.fw";
Zhu Yi397ae122006-01-24 16:37:22 +08003467 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06003468 }
Zhu Yi397ae122006-01-24 16:37:22 +08003469
James Ketrenos9006ea72006-03-08 03:22:28 +08003470 if (!name) {
3471 rc = -EINVAL;
3472 goto error;
3473 }
3474
3475#ifdef CONFIG_PM
3476 if (!fw_loaded) {
3477#endif
3478 rc = ipw_get_fw(priv, &raw, name);
3479 if (rc < 0)
3480 goto error;
3481#ifdef CONFIG_PM
3482 }
3483#endif
3484
3485 fw = (void *)raw->data;
3486 boot_img = &fw->data[0];
Zhu Yi0070f8c2006-04-13 17:20:12 +08003487 ucode_img = &fw->data[le32_to_cpu(fw->boot_size)];
3488 fw_img = &fw->data[le32_to_cpu(fw->boot_size) +
3489 le32_to_cpu(fw->ucode_size)];
James Ketrenos9006ea72006-03-08 03:22:28 +08003490
Zhu Yi397ae122006-01-24 16:37:22 +08003491 if (rc < 0)
3492 goto error;
James Ketrenos43f66a62005-03-25 12:31:53 -06003493
3494 if (!priv->rxq)
3495 priv->rxq = ipw_rx_queue_alloc(priv);
3496 else
3497 ipw_rx_queue_reset(priv, priv->rxq);
3498 if (!priv->rxq) {
3499 IPW_ERROR("Unable to initialize Rx queue\n");
3500 goto error;
3501 }
3502
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003503 retry:
James Ketrenos43f66a62005-03-25 12:31:53 -06003504 /* Ensure interrupts are disabled */
James Ketrenosb095c382005-08-24 22:04:42 -05003505 ipw_write32(priv, IPW_INTA_MASK_R, ~IPW_INTA_MASK_ALL);
James Ketrenos43f66a62005-03-25 12:31:53 -06003506 priv->status &= ~STATUS_INT_ENABLED;
3507
3508 /* ack pending interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -05003509 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_MASK_ALL);
Jeff Garzikbf794512005-07-31 13:07:26 -04003510
James Ketrenos43f66a62005-03-25 12:31:53 -06003511 ipw_stop_nic(priv);
3512
3513 rc = ipw_reset_nic(priv);
Zhu Yi397ae122006-01-24 16:37:22 +08003514 if (rc < 0) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003515 IPW_ERROR("Unable to reset NIC\n");
3516 goto error;
3517 }
3518
James Ketrenosb095c382005-08-24 22:04:42 -05003519 ipw_zero_memory(priv, IPW_NIC_SRAM_LOWER_BOUND,
3520 IPW_NIC_SRAM_UPPER_BOUND - IPW_NIC_SRAM_LOWER_BOUND);
James Ketrenos43f66a62005-03-25 12:31:53 -06003521
3522 /* DMA the initial boot firmware into the device */
Zhu Yi0070f8c2006-04-13 17:20:12 +08003523 rc = ipw_load_firmware(priv, boot_img, le32_to_cpu(fw->boot_size));
James Ketrenos43f66a62005-03-25 12:31:53 -06003524 if (rc < 0) {
Peter Jonesa4f6bbb2005-08-26 00:33:34 -05003525 IPW_ERROR("Unable to load boot firmware: %d\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -06003526 goto error;
3527 }
3528
3529 /* kick start the device */
3530 ipw_start_nic(priv);
3531
Zhu Yic7b6a672006-01-24 16:37:05 +08003532 /* wait for the device to finish its initial startup sequence */
James Ketrenosb095c382005-08-24 22:04:42 -05003533 rc = ipw_poll_bit(priv, IPW_INTA_RW,
3534 IPW_INTA_BIT_FW_INITIALIZATION_DONE, 500);
James Ketrenos43f66a62005-03-25 12:31:53 -06003535 if (rc < 0) {
3536 IPW_ERROR("device failed to boot initial fw image\n");
3537 goto error;
3538 }
3539 IPW_DEBUG_INFO("initial device response after %dms\n", rc);
3540
Jeff Garzikbf794512005-07-31 13:07:26 -04003541 /* ack fw init done interrupt */
James Ketrenosb095c382005-08-24 22:04:42 -05003542 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_BIT_FW_INITIALIZATION_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003543
3544 /* DMA the ucode into the device */
Zhu Yi0070f8c2006-04-13 17:20:12 +08003545 rc = ipw_load_ucode(priv, ucode_img, le32_to_cpu(fw->ucode_size));
James Ketrenos43f66a62005-03-25 12:31:53 -06003546 if (rc < 0) {
Peter Jonesa4f6bbb2005-08-26 00:33:34 -05003547 IPW_ERROR("Unable to load ucode: %d\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -06003548 goto error;
3549 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003550
James Ketrenos43f66a62005-03-25 12:31:53 -06003551 /* stop nic */
3552 ipw_stop_nic(priv);
3553
3554 /* DMA bss firmware into the device */
Zhu Yi0070f8c2006-04-13 17:20:12 +08003555 rc = ipw_load_firmware(priv, fw_img, le32_to_cpu(fw->fw_size));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003556 if (rc < 0) {
Peter Jonesa4f6bbb2005-08-26 00:33:34 -05003557 IPW_ERROR("Unable to load firmware: %d\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -06003558 goto error;
3559 }
Zhu Yi397ae122006-01-24 16:37:22 +08003560#ifdef CONFIG_PM
3561 fw_loaded = 1;
3562#endif
3563
James Ketrenos43f66a62005-03-25 12:31:53 -06003564 ipw_write32(priv, IPW_EEPROM_LOAD_DISABLE, 0);
3565
3566 rc = ipw_queue_reset(priv);
Zhu Yi397ae122006-01-24 16:37:22 +08003567 if (rc < 0) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003568 IPW_ERROR("Unable to initialize queues\n");
3569 goto error;
3570 }
3571
3572 /* Ensure interrupts are disabled */
James Ketrenosb095c382005-08-24 22:04:42 -05003573 ipw_write32(priv, IPW_INTA_MASK_R, ~IPW_INTA_MASK_ALL);
James Ketrenosc848d0a2005-08-24 21:56:24 -05003574 /* ack pending interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -05003575 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_MASK_ALL);
Jeff Garzikbf794512005-07-31 13:07:26 -04003576
James Ketrenos43f66a62005-03-25 12:31:53 -06003577 /* kick start the device */
3578 ipw_start_nic(priv);
3579
James Ketrenosb095c382005-08-24 22:04:42 -05003580 if (ipw_read32(priv, IPW_INTA_RW) & IPW_INTA_BIT_PARITY_ERROR) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003581 if (retries > 0) {
3582 IPW_WARNING("Parity error. Retrying init.\n");
3583 retries--;
3584 goto retry;
3585 }
3586
3587 IPW_ERROR("TODO: Handle parity error -- schedule restart?\n");
3588 rc = -EIO;
3589 goto error;
3590 }
3591
3592 /* wait for the device */
James Ketrenosb095c382005-08-24 22:04:42 -05003593 rc = ipw_poll_bit(priv, IPW_INTA_RW,
3594 IPW_INTA_BIT_FW_INITIALIZATION_DONE, 500);
James Ketrenos43f66a62005-03-25 12:31:53 -06003595 if (rc < 0) {
Zhu Yic7b6a672006-01-24 16:37:05 +08003596 IPW_ERROR("device failed to start within 500ms\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06003597 goto error;
3598 }
3599 IPW_DEBUG_INFO("device response after %dms\n", rc);
3600
3601 /* ack fw init done interrupt */
James Ketrenosb095c382005-08-24 22:04:42 -05003602 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_BIT_FW_INITIALIZATION_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003603
3604 /* read eeprom data and initialize the eeprom region of sram */
3605 priv->eeprom_delay = 1;
Jeff Garzikbf794512005-07-31 13:07:26 -04003606 ipw_eeprom_init_sram(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06003607
3608 /* enable interrupts */
3609 ipw_enable_interrupts(priv);
3610
3611 /* Ensure our queue has valid packets */
3612 ipw_rx_queue_replenish(priv);
3613
James Ketrenosb095c382005-08-24 22:04:42 -05003614 ipw_write32(priv, IPW_RX_READ_INDEX, priv->rxq->read);
James Ketrenos43f66a62005-03-25 12:31:53 -06003615
3616 /* ack pending interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -05003617 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_MASK_ALL);
James Ketrenos43f66a62005-03-25 12:31:53 -06003618
3619#ifndef CONFIG_PM
James Ketrenos9006ea72006-03-08 03:22:28 +08003620 release_firmware(raw);
James Ketrenos43f66a62005-03-25 12:31:53 -06003621#endif
3622 return 0;
3623
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003624 error:
James Ketrenos43f66a62005-03-25 12:31:53 -06003625 if (priv->rxq) {
3626 ipw_rx_queue_free(priv, priv->rxq);
3627 priv->rxq = NULL;
3628 }
3629 ipw_tx_queue_free(priv);
James Ketrenos9006ea72006-03-08 03:22:28 +08003630 if (raw)
3631 release_firmware(raw);
James Ketrenos43f66a62005-03-25 12:31:53 -06003632#ifdef CONFIG_PM
3633 fw_loaded = 0;
James Ketrenos9006ea72006-03-08 03:22:28 +08003634 raw = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -06003635#endif
3636
3637 return rc;
3638}
3639
Jeff Garzikbf794512005-07-31 13:07:26 -04003640/**
James Ketrenos43f66a62005-03-25 12:31:53 -06003641 * DMA services
3642 *
3643 * Theory of operation
3644 *
3645 * A queue is a circular buffers with 'Read' and 'Write' pointers.
3646 * 2 empty entries always kept in the buffer to protect from overflow.
3647 *
3648 * For Tx queue, there are low mark and high mark limits. If, after queuing
Jeff Garzikbf794512005-07-31 13:07:26 -04003649 * the packet for Tx, free space become < low mark, Tx queue stopped. When
3650 * reclaiming packets (on 'tx done IRQ), if free space become > high mark,
James Ketrenos43f66a62005-03-25 12:31:53 -06003651 * Tx queue resumed.
3652 *
3653 * The IPW operates with six queues, one receive queue in the device's
3654 * sram, one transmit queue for sending commands to the device firmware,
Jeff Garzikbf794512005-07-31 13:07:26 -04003655 * and four transmit queues for data.
James Ketrenos43f66a62005-03-25 12:31:53 -06003656 *
Jeff Garzikbf794512005-07-31 13:07:26 -04003657 * The four transmit queues allow for performing quality of service (qos)
James Ketrenos43f66a62005-03-25 12:31:53 -06003658 * transmissions as per the 802.11 protocol. Currently Linux does not
Jeff Garzikbf794512005-07-31 13:07:26 -04003659 * provide a mechanism to the user for utilizing prioritized queues, so
James Ketrenos43f66a62005-03-25 12:31:53 -06003660 * we only utilize the first data transmit queue (queue1).
3661 */
3662
3663/**
3664 * Driver allocates buffers of this size for Rx
3665 */
3666
Dan Williams943dbef2008-02-14 17:49:41 -05003667/**
3668 * ipw_rx_queue_space - Return number of free slots available in queue.
3669 */
3670static int ipw_rx_queue_space(const struct ipw_rx_queue *q)
3671{
3672 int s = q->read - q->write;
3673 if (s <= 0)
3674 s += RX_QUEUE_SIZE;
3675 /* keep some buffer to not confuse full and empty queue */
3676 s -= 2;
3677 if (s < 0)
3678 s = 0;
3679 return s;
3680}
3681
3682static inline int ipw_tx_queue_space(const struct clx2_queue *q)
James Ketrenos43f66a62005-03-25 12:31:53 -06003683{
3684 int s = q->last_used - q->first_empty;
3685 if (s <= 0)
3686 s += q->n_bd;
3687 s -= 2; /* keep some reserve to not confuse empty and full situations */
3688 if (s < 0)
3689 s = 0;
3690 return s;
3691}
3692
3693static inline int ipw_queue_inc_wrap(int index, int n_bd)
3694{
3695 return (++index == n_bd) ? 0 : index;
3696}
3697
3698/**
3699 * Initialize common DMA queue structure
Jeff Garzikbf794512005-07-31 13:07:26 -04003700 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003701 * @param q queue to init
3702 * @param count Number of BD's to allocate. Should be power of 2
3703 * @param read_register Address for 'read' register
3704 * (not offset within BAR, full address)
3705 * @param write_register Address for 'write' register
3706 * (not offset within BAR, full address)
3707 * @param base_register Address for 'base' register
3708 * (not offset within BAR, full address)
3709 * @param size Address for 'size' register
3710 * (not offset within BAR, full address)
3711 */
Jeff Garzikbf794512005-07-31 13:07:26 -04003712static void ipw_queue_init(struct ipw_priv *priv, struct clx2_queue *q,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003713 int count, u32 read, u32 write, u32 base, u32 size)
James Ketrenos43f66a62005-03-25 12:31:53 -06003714{
3715 q->n_bd = count;
3716
3717 q->low_mark = q->n_bd / 4;
3718 if (q->low_mark < 4)
3719 q->low_mark = 4;
3720
3721 q->high_mark = q->n_bd / 8;
3722 if (q->high_mark < 2)
3723 q->high_mark = 2;
3724
3725 q->first_empty = q->last_used = 0;
3726 q->reg_r = read;
3727 q->reg_w = write;
3728
3729 ipw_write32(priv, base, q->dma_addr);
3730 ipw_write32(priv, size, count);
3731 ipw_write32(priv, read, 0);
3732 ipw_write32(priv, write, 0);
3733
3734 _ipw_read32(priv, 0x90);
3735}
3736
Jeff Garzikbf794512005-07-31 13:07:26 -04003737static int ipw_queue_tx_init(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06003738 struct clx2_tx_queue *q,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003739 int count, u32 read, u32 write, u32 base, u32 size)
James Ketrenos43f66a62005-03-25 12:31:53 -06003740{
3741 struct pci_dev *dev = priv->pci_dev;
3742
3743 q->txb = kmalloc(sizeof(q->txb[0]) * count, GFP_KERNEL);
3744 if (!q->txb) {
3745 IPW_ERROR("vmalloc for auxilary BD structures failed\n");
3746 return -ENOMEM;
3747 }
3748
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003749 q->bd =
3750 pci_alloc_consistent(dev, sizeof(q->bd[0]) * count, &q->q.dma_addr);
James Ketrenos43f66a62005-03-25 12:31:53 -06003751 if (!q->bd) {
Jiri Bencaaa4d302005-06-07 14:58:41 +02003752 IPW_ERROR("pci_alloc_consistent(%zd) failed\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003753 sizeof(q->bd[0]) * count);
James Ketrenos43f66a62005-03-25 12:31:53 -06003754 kfree(q->txb);
3755 q->txb = NULL;
3756 return -ENOMEM;
3757 }
3758
3759 ipw_queue_init(priv, &q->q, count, read, write, base, size);
3760 return 0;
3761}
3762
3763/**
3764 * Free one TFD, those at index [txq->q.last_used].
3765 * Do NOT advance any indexes
Jeff Garzikbf794512005-07-31 13:07:26 -04003766 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003767 * @param dev
3768 * @param txq
3769 */
3770static void ipw_queue_tx_free_tfd(struct ipw_priv *priv,
3771 struct clx2_tx_queue *txq)
3772{
3773 struct tfd_frame *bd = &txq->bd[txq->q.last_used];
3774 struct pci_dev *dev = priv->pci_dev;
3775 int i;
Jeff Garzikbf794512005-07-31 13:07:26 -04003776
James Ketrenos43f66a62005-03-25 12:31:53 -06003777 /* classify bd */
3778 if (bd->control_flags.message_type == TX_HOST_COMMAND_TYPE)
3779 /* nothing to cleanup after for host commands */
3780 return;
3781
3782 /* sanity check */
James Ketrenosa613bff2005-08-24 21:43:11 -05003783 if (le32_to_cpu(bd->u.data.num_chunks) > NUM_TFD_CHUNKS) {
3784 IPW_ERROR("Too many chunks: %i\n",
3785 le32_to_cpu(bd->u.data.num_chunks));
James Ketrenos43f66a62005-03-25 12:31:53 -06003786 /** @todo issue fatal error, it is quite serious situation */
3787 return;
3788 }
3789
3790 /* unmap chunks if any */
James Ketrenosa613bff2005-08-24 21:43:11 -05003791 for (i = 0; i < le32_to_cpu(bd->u.data.num_chunks); i++) {
3792 pci_unmap_single(dev, le32_to_cpu(bd->u.data.chunk_ptr[i]),
3793 le16_to_cpu(bd->u.data.chunk_len[i]),
3794 PCI_DMA_TODEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003795 if (txq->txb[txq->q.last_used]) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04003796 libipw_txb_free(txq->txb[txq->q.last_used]);
James Ketrenos43f66a62005-03-25 12:31:53 -06003797 txq->txb[txq->q.last_used] = NULL;
3798 }
3799 }
3800}
3801
3802/**
3803 * Deallocate DMA queue.
Jeff Garzikbf794512005-07-31 13:07:26 -04003804 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003805 * Empty queue by removing and destroying all BD's.
3806 * Free all buffers.
Jeff Garzikbf794512005-07-31 13:07:26 -04003807 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003808 * @param dev
3809 * @param q
3810 */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003811static void ipw_queue_tx_free(struct ipw_priv *priv, struct clx2_tx_queue *txq)
James Ketrenos43f66a62005-03-25 12:31:53 -06003812{
3813 struct clx2_queue *q = &txq->q;
3814 struct pci_dev *dev = priv->pci_dev;
3815
Jeff Garzikbf794512005-07-31 13:07:26 -04003816 if (q->n_bd == 0)
3817 return;
James Ketrenos43f66a62005-03-25 12:31:53 -06003818
3819 /* first, empty all BD's */
3820 for (; q->first_empty != q->last_used;
3821 q->last_used = ipw_queue_inc_wrap(q->last_used, q->n_bd)) {
3822 ipw_queue_tx_free_tfd(priv, txq);
3823 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003824
James Ketrenos43f66a62005-03-25 12:31:53 -06003825 /* free buffers belonging to queue itself */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003826 pci_free_consistent(dev, sizeof(txq->bd[0]) * q->n_bd, txq->bd,
James Ketrenos43f66a62005-03-25 12:31:53 -06003827 q->dma_addr);
3828 kfree(txq->txb);
3829
3830 /* 0 fill whole structure */
3831 memset(txq, 0, sizeof(*txq));
3832}
3833
James Ketrenos43f66a62005-03-25 12:31:53 -06003834/**
3835 * Destroy all DMA queues and structures
Jeff Garzikbf794512005-07-31 13:07:26 -04003836 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003837 * @param priv
3838 */
3839static void ipw_tx_queue_free(struct ipw_priv *priv)
3840{
3841 /* Tx CMD queue */
3842 ipw_queue_tx_free(priv, &priv->txq_cmd);
3843
3844 /* Tx queues */
3845 ipw_queue_tx_free(priv, &priv->txq[0]);
3846 ipw_queue_tx_free(priv, &priv->txq[1]);
3847 ipw_queue_tx_free(priv, &priv->txq[2]);
3848 ipw_queue_tx_free(priv, &priv->txq[3]);
3849}
3850
Arjan van de Ven858119e2006-01-14 13:20:43 -08003851static void ipw_create_bssid(struct ipw_priv *priv, u8 * bssid)
James Ketrenos43f66a62005-03-25 12:31:53 -06003852{
3853 /* First 3 bytes are manufacturer */
3854 bssid[0] = priv->mac_addr[0];
3855 bssid[1] = priv->mac_addr[1];
3856 bssid[2] = priv->mac_addr[2];
3857
3858 /* Last bytes are random */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003859 get_random_bytes(&bssid[3], ETH_ALEN - 3);
James Ketrenos43f66a62005-03-25 12:31:53 -06003860
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003861 bssid[0] &= 0xfe; /* clear multicast bit */
3862 bssid[0] |= 0x02; /* set local assignment bit (IEEE802) */
James Ketrenos43f66a62005-03-25 12:31:53 -06003863}
3864
Arjan van de Ven858119e2006-01-14 13:20:43 -08003865static u8 ipw_add_station(struct ipw_priv *priv, u8 * bssid)
James Ketrenos43f66a62005-03-25 12:31:53 -06003866{
3867 struct ipw_station_entry entry;
3868 int i;
3869
3870 for (i = 0; i < priv->num_stations; i++) {
3871 if (!memcmp(priv->stations[i], bssid, ETH_ALEN)) {
3872 /* Another node is active in network */
3873 priv->missed_adhoc_beacons = 0;
3874 if (!(priv->config & CFG_STATIC_CHANNEL))
3875 /* when other nodes drop out, we drop out */
3876 priv->config &= ~CFG_ADHOC_PERSIST;
3877
3878 return i;
3879 }
3880 }
3881
3882 if (i == MAX_STATIONS)
3883 return IPW_INVALID_STATION;
3884
Johannes Berge1749612008-10-27 15:59:26 -07003885 IPW_DEBUG_SCAN("Adding AdHoc station: %pM\n", bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06003886
3887 entry.reserved = 0;
3888 entry.support_mode = 0;
3889 memcpy(entry.mac_addr, bssid, ETH_ALEN);
3890 memcpy(priv->stations[i], bssid, ETH_ALEN);
3891 ipw_write_direct(priv, IPW_STATION_TABLE_LOWER + i * sizeof(entry),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003892 &entry, sizeof(entry));
James Ketrenos43f66a62005-03-25 12:31:53 -06003893 priv->num_stations++;
3894
3895 return i;
3896}
3897
Arjan van de Ven858119e2006-01-14 13:20:43 -08003898static u8 ipw_find_station(struct ipw_priv *priv, u8 * bssid)
James Ketrenos43f66a62005-03-25 12:31:53 -06003899{
3900 int i;
3901
Jeff Garzikbf794512005-07-31 13:07:26 -04003902 for (i = 0; i < priv->num_stations; i++)
3903 if (!memcmp(priv->stations[i], bssid, ETH_ALEN))
James Ketrenos43f66a62005-03-25 12:31:53 -06003904 return i;
3905
3906 return IPW_INVALID_STATION;
3907}
3908
3909static void ipw_send_disassociate(struct ipw_priv *priv, int quiet)
3910{
3911 int err;
3912
Hong Liu7b996592005-08-25 17:36:13 +08003913 if (priv->status & STATUS_ASSOCIATING) {
3914 IPW_DEBUG_ASSOC("Disassociating while associating.\n");
3915 queue_work(priv->workqueue, &priv->disassociate);
3916 return;
3917 }
3918
3919 if (!(priv->status & STATUS_ASSOCIATED)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003920 IPW_DEBUG_ASSOC("Disassociating while not associated.\n");
3921 return;
3922 }
3923
Johannes Berge1749612008-10-27 15:59:26 -07003924 IPW_DEBUG_ASSOC("Disassocation attempt from %pM "
James Ketrenos43f66a62005-03-25 12:31:53 -06003925 "on channel %d.\n",
Johannes Berge1749612008-10-27 15:59:26 -07003926 priv->assoc_request.bssid,
James Ketrenos43f66a62005-03-25 12:31:53 -06003927 priv->assoc_request.channel);
3928
3929 priv->status &= ~(STATUS_ASSOCIATING | STATUS_ASSOCIATED);
3930 priv->status |= STATUS_DISASSOCIATING;
3931
3932 if (quiet)
3933 priv->assoc_request.assoc_type = HC_DISASSOC_QUIET;
3934 else
3935 priv->assoc_request.assoc_type = HC_DISASSOCIATE;
Hong Liue6324722005-09-14 21:04:15 -05003936
James Ketrenos43f66a62005-03-25 12:31:53 -06003937 err = ipw_send_associate(priv, &priv->assoc_request);
3938 if (err) {
3939 IPW_DEBUG_HC("Attempt to send [dis]associate command "
3940 "failed.\n");
3941 return;
3942 }
3943
3944}
3945
James Ketrenosc848d0a2005-08-24 21:56:24 -05003946static int ipw_disassociate(void *data)
James Ketrenos43f66a62005-03-25 12:31:53 -06003947{
James Ketrenosc848d0a2005-08-24 21:56:24 -05003948 struct ipw_priv *priv = data;
3949 if (!(priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)))
3950 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06003951 ipw_send_disassociate(data, 0);
Zhu Yib8ddafd2008-11-27 13:42:20 +08003952 netif_carrier_off(priv->net_dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05003953 return 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06003954}
3955
David Howellsc4028952006-11-22 14:57:56 +00003956static void ipw_bg_disassociate(struct work_struct *work)
James Ketrenos43f66a62005-03-25 12:31:53 -06003957{
David Howellsc4028952006-11-22 14:57:56 +00003958 struct ipw_priv *priv =
3959 container_of(work, struct ipw_priv, disassociate);
Zhu Yi46441512006-01-24 16:37:59 +08003960 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00003961 ipw_disassociate(priv);
Zhu Yi46441512006-01-24 16:37:59 +08003962 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06003963}
3964
David Howellsc4028952006-11-22 14:57:56 +00003965static void ipw_system_config(struct work_struct *work)
Zhu Yid8bad6d2005-07-13 12:25:38 -05003966{
David Howellsc4028952006-11-22 14:57:56 +00003967 struct ipw_priv *priv =
3968 container_of(work, struct ipw_priv, system_config);
Zhu Yid685b8c2006-04-13 17:20:27 +08003969
3970#ifdef CONFIG_IPW2200_PROMISCUOUS
3971 if (priv->prom_net_dev && netif_running(priv->prom_net_dev)) {
3972 priv->sys_config.accept_all_data_frames = 1;
3973 priv->sys_config.accept_non_directed_frames = 1;
3974 priv->sys_config.accept_all_mgmt_bcpr = 1;
3975 priv->sys_config.accept_all_mgmt_frames = 1;
3976 }
3977#endif
3978
3979 ipw_send_system_config(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06003980}
3981
3982struct ipw_status_code {
3983 u16 status;
3984 const char *reason;
3985};
3986
3987static const struct ipw_status_code ipw_status_codes[] = {
3988 {0x00, "Successful"},
3989 {0x01, "Unspecified failure"},
3990 {0x0A, "Cannot support all requested capabilities in the "
3991 "Capability information field"},
3992 {0x0B, "Reassociation denied due to inability to confirm that "
3993 "association exists"},
3994 {0x0C, "Association denied due to reason outside the scope of this "
3995 "standard"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003996 {0x0D,
3997 "Responding station does not support the specified authentication "
James Ketrenos43f66a62005-03-25 12:31:53 -06003998 "algorithm"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003999 {0x0E,
4000 "Received an Authentication frame with authentication sequence "
James Ketrenos43f66a62005-03-25 12:31:53 -06004001 "transaction sequence number out of expected sequence"},
4002 {0x0F, "Authentication rejected because of challenge failure"},
4003 {0x10, "Authentication rejected due to timeout waiting for next "
4004 "frame in sequence"},
4005 {0x11, "Association denied because AP is unable to handle additional "
4006 "associated stations"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004007 {0x12,
4008 "Association denied due to requesting station not supporting all "
James Ketrenos43f66a62005-03-25 12:31:53 -06004009 "of the datarates in the BSSBasicServiceSet Parameter"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004010 {0x13,
4011 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06004012 "short preamble operation"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004013 {0x14,
4014 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06004015 "PBCC encoding"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004016 {0x15,
4017 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06004018 "channel agility"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004019 {0x19,
4020 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06004021 "short slot operation"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004022 {0x1A,
4023 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06004024 "DSSS-OFDM operation"},
4025 {0x28, "Invalid Information Element"},
4026 {0x29, "Group Cipher is not valid"},
4027 {0x2A, "Pairwise Cipher is not valid"},
4028 {0x2B, "AKMP is not valid"},
4029 {0x2C, "Unsupported RSN IE version"},
4030 {0x2D, "Invalid RSN IE Capabilities"},
4031 {0x2E, "Cipher suite is rejected per security policy"},
4032};
4033
Jeff Garzikbf794512005-07-31 13:07:26 -04004034static const char *ipw_get_status_code(u16 status)
James Ketrenos43f66a62005-03-25 12:31:53 -06004035{
4036 int i;
Jeff Garzikbf794512005-07-31 13:07:26 -04004037 for (i = 0; i < ARRAY_SIZE(ipw_status_codes); i++)
James Ketrenosea2b26e2005-08-24 21:25:16 -05004038 if (ipw_status_codes[i].status == (status & 0xff))
James Ketrenos43f66a62005-03-25 12:31:53 -06004039 return ipw_status_codes[i].reason;
4040 return "Unknown status value.";
4041}
James Ketrenos43f66a62005-03-25 12:31:53 -06004042
4043static void inline average_init(struct average *avg)
4044{
4045 memset(avg, 0, sizeof(*avg));
4046}
4047
Zhu Yi00d21de2006-04-13 17:19:02 +08004048#define DEPTH_RSSI 8
4049#define DEPTH_NOISE 16
4050static s16 exponential_average(s16 prev_avg, s16 val, u8 depth)
4051{
4052 return ((depth-1)*prev_avg + val)/depth;
4053}
4054
Arjan van de Ven858119e2006-01-14 13:20:43 -08004055static void average_add(struct average *avg, s16 val)
James Ketrenos43f66a62005-03-25 12:31:53 -06004056{
4057 avg->sum -= avg->entries[avg->pos];
4058 avg->sum += val;
4059 avg->entries[avg->pos++] = val;
4060 if (unlikely(avg->pos == AVG_ENTRIES)) {
4061 avg->init = 1;
4062 avg->pos = 0;
4063 }
4064}
4065
Arjan van de Ven858119e2006-01-14 13:20:43 -08004066static s16 average_value(struct average *avg)
James Ketrenos43f66a62005-03-25 12:31:53 -06004067{
4068 if (!unlikely(avg->init)) {
4069 if (avg->pos)
4070 return avg->sum / avg->pos;
4071 return 0;
4072 }
4073
4074 return avg->sum / AVG_ENTRIES;
4075}
4076
4077static void ipw_reset_stats(struct ipw_priv *priv)
4078{
4079 u32 len = sizeof(u32);
4080
4081 priv->quality = 0;
4082
4083 average_init(&priv->average_missed_beacons);
Zhu Yi00d21de2006-04-13 17:19:02 +08004084 priv->exp_avg_rssi = -60;
4085 priv->exp_avg_noise = -85 + 0x100;
James Ketrenos43f66a62005-03-25 12:31:53 -06004086
4087 priv->last_rate = 0;
4088 priv->last_missed_beacons = 0;
4089 priv->last_rx_packets = 0;
4090 priv->last_tx_packets = 0;
4091 priv->last_tx_failures = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004092
James Ketrenos43f66a62005-03-25 12:31:53 -06004093 /* Firmware managed, reset only when NIC is restarted, so we have to
4094 * normalize on the current value */
Jeff Garzikbf794512005-07-31 13:07:26 -04004095 ipw_get_ordinal(priv, IPW_ORD_STAT_RX_ERR_CRC,
James Ketrenos43f66a62005-03-25 12:31:53 -06004096 &priv->last_rx_err, &len);
Jeff Garzikbf794512005-07-31 13:07:26 -04004097 ipw_get_ordinal(priv, IPW_ORD_STAT_TX_FAILURE,
James Ketrenos43f66a62005-03-25 12:31:53 -06004098 &priv->last_tx_failures, &len);
4099
4100 /* Driver managed, reset with each association */
4101 priv->missed_adhoc_beacons = 0;
4102 priv->missed_beacons = 0;
4103 priv->tx_packets = 0;
4104 priv->rx_packets = 0;
4105
4106}
4107
Arjan van de Ven858119e2006-01-14 13:20:43 -08004108static u32 ipw_get_max_rate(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06004109{
4110 u32 i = 0x80000000;
4111 u32 mask = priv->rates_mask;
4112 /* If currently associated in B mode, restrict the maximum
4113 * rate match to B rates */
4114 if (priv->assoc_request.ieee_mode == IPW_B_MODE)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004115 mask &= LIBIPW_CCK_RATES_MASK;
James Ketrenos43f66a62005-03-25 12:31:53 -06004116
4117 /* TODO: Verify that the rate is supported by the current rates
4118 * list. */
4119
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004120 while (i && !(mask & i))
4121 i >>= 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06004122 switch (i) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004123 case LIBIPW_CCK_RATE_1MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004124 return 1000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004125 case LIBIPW_CCK_RATE_2MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004126 return 2000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004127 case LIBIPW_CCK_RATE_5MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004128 return 5500000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004129 case LIBIPW_OFDM_RATE_6MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004130 return 6000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004131 case LIBIPW_OFDM_RATE_9MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004132 return 9000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004133 case LIBIPW_CCK_RATE_11MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004134 return 11000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004135 case LIBIPW_OFDM_RATE_12MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004136 return 12000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004137 case LIBIPW_OFDM_RATE_18MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004138 return 18000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004139 case LIBIPW_OFDM_RATE_24MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004140 return 24000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004141 case LIBIPW_OFDM_RATE_36MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004142 return 36000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004143 case LIBIPW_OFDM_RATE_48MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004144 return 48000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004145 case LIBIPW_OFDM_RATE_54MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004146 return 54000000;
James Ketrenos43f66a62005-03-25 12:31:53 -06004147 }
4148
Jeff Garzikbf794512005-07-31 13:07:26 -04004149 if (priv->ieee->mode == IEEE_B)
James Ketrenos43f66a62005-03-25 12:31:53 -06004150 return 11000000;
4151 else
4152 return 54000000;
4153}
4154
4155static u32 ipw_get_current_rate(struct ipw_priv *priv)
4156{
4157 u32 rate, len = sizeof(rate);
4158 int err;
4159
Jeff Garzikbf794512005-07-31 13:07:26 -04004160 if (!(priv->status & STATUS_ASSOCIATED))
James Ketrenos43f66a62005-03-25 12:31:53 -06004161 return 0;
4162
4163 if (priv->tx_packets > IPW_REAL_RATE_RX_PACKET_THRESHOLD) {
Jeff Garzikbf794512005-07-31 13:07:26 -04004164 err = ipw_get_ordinal(priv, IPW_ORD_STAT_TX_CURR_RATE, &rate,
James Ketrenos43f66a62005-03-25 12:31:53 -06004165 &len);
4166 if (err) {
4167 IPW_DEBUG_INFO("failed querying ordinals.\n");
4168 return 0;
4169 }
Jeff Garzikbf794512005-07-31 13:07:26 -04004170 } else
James Ketrenos43f66a62005-03-25 12:31:53 -06004171 return ipw_get_max_rate(priv);
4172
4173 switch (rate) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05004174 case IPW_TX_RATE_1MB:
4175 return 1000000;
4176 case IPW_TX_RATE_2MB:
4177 return 2000000;
4178 case IPW_TX_RATE_5MB:
4179 return 5500000;
4180 case IPW_TX_RATE_6MB:
4181 return 6000000;
4182 case IPW_TX_RATE_9MB:
4183 return 9000000;
4184 case IPW_TX_RATE_11MB:
4185 return 11000000;
4186 case IPW_TX_RATE_12MB:
4187 return 12000000;
4188 case IPW_TX_RATE_18MB:
4189 return 18000000;
4190 case IPW_TX_RATE_24MB:
4191 return 24000000;
4192 case IPW_TX_RATE_36MB:
4193 return 36000000;
4194 case IPW_TX_RATE_48MB:
4195 return 48000000;
4196 case IPW_TX_RATE_54MB:
4197 return 54000000;
James Ketrenos43f66a62005-03-25 12:31:53 -06004198 }
4199
4200 return 0;
4201}
4202
James Ketrenos43f66a62005-03-25 12:31:53 -06004203#define IPW_STATS_INTERVAL (2 * HZ)
4204static void ipw_gather_stats(struct ipw_priv *priv)
4205{
4206 u32 rx_err, rx_err_delta, rx_packets_delta;
4207 u32 tx_failures, tx_failures_delta, tx_packets_delta;
4208 u32 missed_beacons_percent, missed_beacons_delta;
4209 u32 quality = 0;
4210 u32 len = sizeof(u32);
4211 s16 rssi;
Jeff Garzikbf794512005-07-31 13:07:26 -04004212 u32 beacon_quality, signal_quality, tx_quality, rx_quality,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004213 rate_quality;
James Ketrenosea2b26e2005-08-24 21:25:16 -05004214 u32 max_rate;
James Ketrenos43f66a62005-03-25 12:31:53 -06004215
4216 if (!(priv->status & STATUS_ASSOCIATED)) {
4217 priv->quality = 0;
4218 return;
4219 }
4220
4221 /* Update the statistics */
Jeff Garzikbf794512005-07-31 13:07:26 -04004222 ipw_get_ordinal(priv, IPW_ORD_STAT_MISSED_BEACONS,
James Ketrenos43f66a62005-03-25 12:31:53 -06004223 &priv->missed_beacons, &len);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004224 missed_beacons_delta = priv->missed_beacons - priv->last_missed_beacons;
James Ketrenos43f66a62005-03-25 12:31:53 -06004225 priv->last_missed_beacons = priv->missed_beacons;
4226 if (priv->assoc_request.beacon_interval) {
4227 missed_beacons_percent = missed_beacons_delta *
Al Viro5b5e8072007-12-27 01:54:06 -05004228 (HZ * le16_to_cpu(priv->assoc_request.beacon_interval)) /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004229 (IPW_STATS_INTERVAL * 10);
James Ketrenos43f66a62005-03-25 12:31:53 -06004230 } else {
4231 missed_beacons_percent = 0;
4232 }
4233 average_add(&priv->average_missed_beacons, missed_beacons_percent);
4234
4235 ipw_get_ordinal(priv, IPW_ORD_STAT_RX_ERR_CRC, &rx_err, &len);
4236 rx_err_delta = rx_err - priv->last_rx_err;
4237 priv->last_rx_err = rx_err;
4238
4239 ipw_get_ordinal(priv, IPW_ORD_STAT_TX_FAILURE, &tx_failures, &len);
4240 tx_failures_delta = tx_failures - priv->last_tx_failures;
4241 priv->last_tx_failures = tx_failures;
4242
4243 rx_packets_delta = priv->rx_packets - priv->last_rx_packets;
4244 priv->last_rx_packets = priv->rx_packets;
4245
4246 tx_packets_delta = priv->tx_packets - priv->last_tx_packets;
4247 priv->last_tx_packets = priv->tx_packets;
4248
4249 /* Calculate quality based on the following:
Jeff Garzikbf794512005-07-31 13:07:26 -04004250 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004251 * Missed beacon: 100% = 0, 0% = 70% missed
4252 * Rate: 60% = 1Mbs, 100% = Max
4253 * Rx and Tx errors represent a straight % of total Rx/Tx
4254 * RSSI: 100% = > -50, 0% = < -80
4255 * Rx errors: 100% = 0, 0% = 50% missed
Jeff Garzikbf794512005-07-31 13:07:26 -04004256 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004257 * The lowest computed quality is used.
4258 *
4259 */
4260#define BEACON_THRESHOLD 5
4261 beacon_quality = 100 - missed_beacons_percent;
4262 if (beacon_quality < BEACON_THRESHOLD)
4263 beacon_quality = 0;
4264 else
Jeff Garzikbf794512005-07-31 13:07:26 -04004265 beacon_quality = (beacon_quality - BEACON_THRESHOLD) * 100 /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004266 (100 - BEACON_THRESHOLD);
Jeff Garzikbf794512005-07-31 13:07:26 -04004267 IPW_DEBUG_STATS("Missed beacon: %3d%% (%d%%)\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06004268 beacon_quality, missed_beacons_percent);
Jeff Garzikbf794512005-07-31 13:07:26 -04004269
James Ketrenos43f66a62005-03-25 12:31:53 -06004270 priv->last_rate = ipw_get_current_rate(priv);
James Ketrenosea2b26e2005-08-24 21:25:16 -05004271 max_rate = ipw_get_max_rate(priv);
4272 rate_quality = priv->last_rate * 40 / max_rate + 60;
James Ketrenos43f66a62005-03-25 12:31:53 -06004273 IPW_DEBUG_STATS("Rate quality : %3d%% (%dMbs)\n",
4274 rate_quality, priv->last_rate / 1000000);
Jeff Garzikbf794512005-07-31 13:07:26 -04004275
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004276 if (rx_packets_delta > 100 && rx_packets_delta + rx_err_delta)
Jeff Garzikbf794512005-07-31 13:07:26 -04004277 rx_quality = 100 - (rx_err_delta * 100) /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004278 (rx_packets_delta + rx_err_delta);
James Ketrenos43f66a62005-03-25 12:31:53 -06004279 else
4280 rx_quality = 100;
4281 IPW_DEBUG_STATS("Rx quality : %3d%% (%u errors, %u packets)\n",
4282 rx_quality, rx_err_delta, rx_packets_delta);
Jeff Garzikbf794512005-07-31 13:07:26 -04004283
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004284 if (tx_packets_delta > 100 && tx_packets_delta + tx_failures_delta)
Jeff Garzikbf794512005-07-31 13:07:26 -04004285 tx_quality = 100 - (tx_failures_delta * 100) /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004286 (tx_packets_delta + tx_failures_delta);
James Ketrenos43f66a62005-03-25 12:31:53 -06004287 else
4288 tx_quality = 100;
4289 IPW_DEBUG_STATS("Tx quality : %3d%% (%u errors, %u packets)\n",
4290 tx_quality, tx_failures_delta, tx_packets_delta);
Jeff Garzikbf794512005-07-31 13:07:26 -04004291
Zhu Yi00d21de2006-04-13 17:19:02 +08004292 rssi = priv->exp_avg_rssi;
James Ketrenosc848d0a2005-08-24 21:56:24 -05004293 signal_quality =
4294 (100 *
4295 (priv->ieee->perfect_rssi - priv->ieee->worst_rssi) *
4296 (priv->ieee->perfect_rssi - priv->ieee->worst_rssi) -
4297 (priv->ieee->perfect_rssi - rssi) *
4298 (15 * (priv->ieee->perfect_rssi - priv->ieee->worst_rssi) +
4299 62 * (priv->ieee->perfect_rssi - rssi))) /
4300 ((priv->ieee->perfect_rssi - priv->ieee->worst_rssi) *
4301 (priv->ieee->perfect_rssi - priv->ieee->worst_rssi));
4302 if (signal_quality > 100)
James Ketrenos43f66a62005-03-25 12:31:53 -06004303 signal_quality = 100;
James Ketrenosc848d0a2005-08-24 21:56:24 -05004304 else if (signal_quality < 1)
James Ketrenos43f66a62005-03-25 12:31:53 -06004305 signal_quality = 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05004306
Zhu Yi61fb9ed2006-04-13 17:19:55 +08004307 IPW_DEBUG_STATS("Signal level : %3d%% (%d dBm)\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06004308 signal_quality, rssi);
Jeff Garzikbf794512005-07-31 13:07:26 -04004309
Reinette Chatre21f8a732009-08-18 10:25:05 -07004310 quality = min(rx_quality, signal_quality);
4311 quality = min(tx_quality, quality);
4312 quality = min(rate_quality, quality);
4313 quality = min(beacon_quality, quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004314 if (quality == beacon_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004315 IPW_DEBUG_STATS("Quality (%d%%): Clamped to missed beacons.\n",
4316 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004317 if (quality == rate_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004318 IPW_DEBUG_STATS("Quality (%d%%): Clamped to rate quality.\n",
4319 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004320 if (quality == tx_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004321 IPW_DEBUG_STATS("Quality (%d%%): Clamped to Tx quality.\n",
4322 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004323 if (quality == rx_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004324 IPW_DEBUG_STATS("Quality (%d%%): Clamped to Rx quality.\n",
4325 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004326 if (quality == signal_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004327 IPW_DEBUG_STATS("Quality (%d%%): Clamped to signal quality.\n",
4328 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004329
4330 priv->quality = quality;
Jeff Garzikbf794512005-07-31 13:07:26 -04004331
4332 queue_delayed_work(priv->workqueue, &priv->gather_stats,
James Ketrenos43f66a62005-03-25 12:31:53 -06004333 IPW_STATS_INTERVAL);
4334}
4335
David Howellsc4028952006-11-22 14:57:56 +00004336static void ipw_bg_gather_stats(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -05004337{
David Howellsc4028952006-11-22 14:57:56 +00004338 struct ipw_priv *priv =
4339 container_of(work, struct ipw_priv, gather_stats.work);
Zhu Yi46441512006-01-24 16:37:59 +08004340 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00004341 ipw_gather_stats(priv);
Zhu Yi46441512006-01-24 16:37:59 +08004342 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05004343}
4344
Ben Cahille7582562005-10-06 15:34:41 -05004345/* Missed beacon behavior:
4346 * 1st missed -> roaming_threshold, just wait, don't do any scan/roam.
4347 * roaming_threshold -> disassociate_threshold, scan and roam for better signal.
4348 * Above disassociate threshold, give up and stop scanning.
4349 * Roaming is disabled if disassociate_threshold <= roaming_threshold */
Arjan van de Ven858119e2006-01-14 13:20:43 -08004350static void ipw_handle_missed_beacon(struct ipw_priv *priv,
James Ketrenosea2b26e2005-08-24 21:25:16 -05004351 int missed_count)
4352{
4353 priv->notif_missed_beacons = missed_count;
4354
James Ketrenosafbf30a2005-08-25 00:05:33 -05004355 if (missed_count > priv->disassociate_threshold &&
James Ketrenosea2b26e2005-08-24 21:25:16 -05004356 priv->status & STATUS_ASSOCIATED) {
4357 /* If associated and we've hit the missed
4358 * beacon threshold, disassociate, turn
4359 * off roaming, and abort any active scans */
4360 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF |
James Ketrenosafbf30a2005-08-25 00:05:33 -05004361 IPW_DL_STATE | IPW_DL_ASSOC,
James Ketrenosea2b26e2005-08-24 21:25:16 -05004362 "Missed beacon: %d - disassociate\n", missed_count);
4363 priv->status &= ~STATUS_ROAMING;
James Ketrenosa613bff2005-08-24 21:43:11 -05004364 if (priv->status & STATUS_SCANNING) {
4365 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF |
4366 IPW_DL_STATE,
4367 "Aborting scan with missed beacon.\n");
James Ketrenosea2b26e2005-08-24 21:25:16 -05004368 queue_work(priv->workqueue, &priv->abort_scan);
James Ketrenosa613bff2005-08-24 21:43:11 -05004369 }
4370
James Ketrenosea2b26e2005-08-24 21:25:16 -05004371 queue_work(priv->workqueue, &priv->disassociate);
4372 return;
4373 }
4374
4375 if (priv->status & STATUS_ROAMING) {
4376 /* If we are currently roaming, then just
4377 * print a debug statement... */
4378 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
4379 "Missed beacon: %d - roam in progress\n",
4380 missed_count);
4381 return;
4382 }
4383
Zhu Yi4bfdb912006-01-24 16:37:16 +08004384 if (roaming &&
4385 (missed_count > priv->roaming_threshold &&
4386 missed_count <= priv->disassociate_threshold)) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05004387 /* If we are not already roaming, set the ROAM
Ben Cahille7582562005-10-06 15:34:41 -05004388 * bit in the status and kick off a scan.
4389 * This can happen several times before we reach
4390 * disassociate_threshold. */
James Ketrenosea2b26e2005-08-24 21:25:16 -05004391 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
4392 "Missed beacon: %d - initiate "
4393 "roaming\n", missed_count);
4394 if (!(priv->status & STATUS_ROAMING)) {
4395 priv->status |= STATUS_ROAMING;
4396 if (!(priv->status & STATUS_SCANNING))
David Howellsc4028952006-11-22 14:57:56 +00004397 queue_delayed_work(priv->workqueue,
4398 &priv->request_scan, 0);
James Ketrenosea2b26e2005-08-24 21:25:16 -05004399 }
4400 return;
4401 }
4402
Helmut Schaa14a4dfe2008-12-10 13:17:26 +01004403 if (priv->status & STATUS_SCANNING &&
4404 missed_count > IPW_MB_SCAN_CANCEL_THRESHOLD) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05004405 /* Stop scan to keep fw from getting
4406 * stuck (only if we aren't roaming --
4407 * otherwise we'll never scan more than 2 or 3
4408 * channels..) */
James Ketrenosb095c382005-08-24 22:04:42 -05004409 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF | IPW_DL_STATE,
4410 "Aborting scan with missed beacon.\n");
James Ketrenosea2b26e2005-08-24 21:25:16 -05004411 queue_work(priv->workqueue, &priv->abort_scan);
4412 }
4413
4414 IPW_DEBUG_NOTIF("Missed beacon: %d\n", missed_count);
James Ketrenosea2b26e2005-08-24 21:25:16 -05004415}
4416
Dan Williams0b531672007-10-09 13:55:24 -04004417static void ipw_scan_event(struct work_struct *work)
4418{
4419 union iwreq_data wrqu;
4420
4421 struct ipw_priv *priv =
4422 container_of(work, struct ipw_priv, scan_event.work);
4423
4424 wrqu.data.length = 0;
4425 wrqu.data.flags = 0;
4426 wireless_send_event(priv->net_dev, SIOCGIWSCAN, &wrqu, NULL);
4427}
4428
4429static void handle_scan_event(struct ipw_priv *priv)
4430{
4431 /* Only userspace-requested scan completion events go out immediately */
4432 if (!priv->user_requested_scan) {
4433 if (!delayed_work_pending(&priv->scan_event))
4434 queue_delayed_work(priv->workqueue, &priv->scan_event,
Anton Blanchardbe84e3d2007-10-15 00:38:01 -05004435 round_jiffies_relative(msecs_to_jiffies(4000)));
Dan Williams0b531672007-10-09 13:55:24 -04004436 } else {
4437 union iwreq_data wrqu;
4438
4439 priv->user_requested_scan = 0;
4440 cancel_delayed_work(&priv->scan_event);
4441
4442 wrqu.data.length = 0;
4443 wrqu.data.flags = 0;
4444 wireless_send_event(priv->net_dev, SIOCGIWSCAN, &wrqu, NULL);
4445 }
4446}
4447
James Ketrenos43f66a62005-03-25 12:31:53 -06004448/**
4449 * Handle host notification packet.
4450 * Called from interrupt routine
4451 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08004452static void ipw_rx_notification(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06004453 struct ipw_rx_notification *notif)
4454{
John W. Linville9387b7c2008-09-30 20:59:05 -04004455 DECLARE_SSID_BUF(ssid);
Al Viroe62e1ee2007-12-27 01:36:46 -05004456 u16 size = le16_to_cpu(notif->size);
James Ketrenosa613bff2005-08-24 21:43:11 -05004457
Al Viroe62e1ee2007-12-27 01:36:46 -05004458 IPW_DEBUG_NOTIF("type = %i (%d bytes)\n", notif->subtype, size);
Jeff Garzikbf794512005-07-31 13:07:26 -04004459
James Ketrenos43f66a62005-03-25 12:31:53 -06004460 switch (notif->subtype) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004461 case HOST_NOTIFICATION_STATUS_ASSOCIATED:{
4462 struct notif_association *assoc = &notif->u.assoc;
Jeff Garzikbf794512005-07-31 13:07:26 -04004463
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004464 switch (assoc->state) {
4465 case CMAS_ASSOCIATED:{
4466 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4467 IPW_DL_ASSOC,
Johannes Berge1749612008-10-27 15:59:26 -07004468 "associated: '%s' %pM \n",
John W. Linville9387b7c2008-09-30 20:59:05 -04004469 print_ssid(ssid, priv->essid,
4470 priv->essid_len),
Johannes Berge1749612008-10-27 15:59:26 -07004471 priv->bssid);
Jeff Garzikbf794512005-07-31 13:07:26 -04004472
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004473 switch (priv->ieee->iw_mode) {
4474 case IW_MODE_INFRA:
4475 memcpy(priv->ieee->bssid,
4476 priv->bssid, ETH_ALEN);
4477 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06004478
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004479 case IW_MODE_ADHOC:
4480 memcpy(priv->ieee->bssid,
4481 priv->bssid, ETH_ALEN);
Jeff Garzikbf794512005-07-31 13:07:26 -04004482
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004483 /* clear out the station table */
4484 priv->num_stations = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06004485
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004486 IPW_DEBUG_ASSOC
4487 ("queueing adhoc check\n");
4488 queue_delayed_work(priv->
4489 workqueue,
4490 &priv->
4491 adhoc_check,
Al Viro5b5e8072007-12-27 01:54:06 -05004492 le16_to_cpu(priv->
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004493 assoc_request.
Al Viro5b5e8072007-12-27 01:54:06 -05004494 beacon_interval));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004495 break;
4496 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004497
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004498 priv->status &= ~STATUS_ASSOCIATING;
4499 priv->status |= STATUS_ASSOCIATED;
Zhu Yid8bad6d2005-07-13 12:25:38 -05004500 queue_work(priv->workqueue,
4501 &priv->system_config);
James Ketrenos43f66a62005-03-25 12:31:53 -06004502
Zhu Yie43e3c12006-04-13 17:20:45 +08004503#ifdef CONFIG_IPW2200_QOS
James Ketrenosafbf30a2005-08-25 00:05:33 -05004504#define IPW_GET_PACKET_STYPE(x) WLAN_FC_GET_STYPE( \
John W. Linville72118012008-09-30 21:43:03 -04004505 le16_to_cpu(((struct ieee80211_hdr *)(x))->frame_control))
James Ketrenosafbf30a2005-08-25 00:05:33 -05004506 if ((priv->status & STATUS_AUTH) &&
4507 (IPW_GET_PACKET_STYPE(&notif->u.raw)
4508 == IEEE80211_STYPE_ASSOC_RESP)) {
James Ketrenosb095c382005-08-24 22:04:42 -05004509 if ((sizeof
4510 (struct
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004511 libipw_assoc_response)
Al Viroe62e1ee2007-12-27 01:36:46 -05004512 <= size)
4513 && (size <= 2314)) {
James Ketrenosb095c382005-08-24 22:04:42 -05004514 struct
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004515 libipw_rx_stats
James Ketrenosb095c382005-08-24 22:04:42 -05004516 stats = {
Al Viroe62e1ee2007-12-27 01:36:46 -05004517 .len = size - 1,
James Ketrenosb095c382005-08-24 22:04:42 -05004518 };
4519
4520 IPW_DEBUG_QOS
4521 ("QoS Associate "
Al Viroe62e1ee2007-12-27 01:36:46 -05004522 "size %d\n", size);
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004523 libipw_rx_mgt(priv->
James Ketrenosb095c382005-08-24 22:04:42 -05004524 ieee,
4525 (struct
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004526 libipw_hdr_4addr
James Ketrenosb095c382005-08-24 22:04:42 -05004527 *)
4528 &notif->u.raw, &stats);
4529 }
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004530 }
James Ketrenosb095c382005-08-24 22:04:42 -05004531#endif
James Ketrenos43f66a62005-03-25 12:31:53 -06004532
James Ketrenosa613bff2005-08-24 21:43:11 -05004533 schedule_work(&priv->link_up);
James Ketrenos43f66a62005-03-25 12:31:53 -06004534
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004535 break;
4536 }
4537
4538 case CMAS_AUTHENTICATED:{
4539 if (priv->
4540 status & (STATUS_ASSOCIATED |
4541 STATUS_AUTH)) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004542 struct notif_authenticate *auth
4543 = &notif->u.auth;
4544 IPW_DEBUG(IPW_DL_NOTIF |
4545 IPW_DL_STATE |
4546 IPW_DL_ASSOC,
4547 "deauthenticated: '%s' "
Johannes Berge1749612008-10-27 15:59:26 -07004548 "%pM"
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004549 ": (0x%04X) - %s \n",
John W. Linville9387b7c2008-09-30 20:59:05 -04004550 print_ssid(ssid,
4551 priv->
4552 essid,
4553 priv->
4554 essid_len),
Johannes Berge1749612008-10-27 15:59:26 -07004555 priv->bssid,
Al Viro83f7d572008-03-16 22:26:44 +00004556 le16_to_cpu(auth->status),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004557 ipw_get_status_code
Al Viro83f7d572008-03-16 22:26:44 +00004558 (le16_to_cpu
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004559 (auth->status)));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004560
4561 priv->status &=
4562 ~(STATUS_ASSOCIATING |
4563 STATUS_AUTH |
4564 STATUS_ASSOCIATED);
4565
James Ketrenosa613bff2005-08-24 21:43:11 -05004566 schedule_work(&priv->link_down);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004567 break;
4568 }
4569
4570 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4571 IPW_DL_ASSOC,
Johannes Berge1749612008-10-27 15:59:26 -07004572 "authenticated: '%s' %pM\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04004573 print_ssid(ssid, priv->essid,
4574 priv->essid_len),
Johannes Berge1749612008-10-27 15:59:26 -07004575 priv->bssid);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004576 break;
4577 }
4578
4579 case CMAS_INIT:{
James Ketrenosea2b26e2005-08-24 21:25:16 -05004580 if (priv->status & STATUS_AUTH) {
4581 struct
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004582 libipw_assoc_response
James Ketrenosea2b26e2005-08-24 21:25:16 -05004583 *resp;
4584 resp =
4585 (struct
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004586 libipw_assoc_response
James Ketrenosea2b26e2005-08-24 21:25:16 -05004587 *)&notif->u.raw;
4588 IPW_DEBUG(IPW_DL_NOTIF |
4589 IPW_DL_STATE |
4590 IPW_DL_ASSOC,
4591 "association failed (0x%04X): %s\n",
Al Viro83f7d572008-03-16 22:26:44 +00004592 le16_to_cpu(resp->status),
James Ketrenosea2b26e2005-08-24 21:25:16 -05004593 ipw_get_status_code
Al Viro83f7d572008-03-16 22:26:44 +00004594 (le16_to_cpu
James Ketrenosea2b26e2005-08-24 21:25:16 -05004595 (resp->status)));
4596 }
4597
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004598 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4599 IPW_DL_ASSOC,
Johannes Berge1749612008-10-27 15:59:26 -07004600 "disassociated: '%s' %pM \n",
John W. Linville9387b7c2008-09-30 20:59:05 -04004601 print_ssid(ssid, priv->essid,
4602 priv->essid_len),
Johannes Berge1749612008-10-27 15:59:26 -07004603 priv->bssid);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004604
4605 priv->status &=
4606 ~(STATUS_DISASSOCIATING |
4607 STATUS_ASSOCIATING |
4608 STATUS_ASSOCIATED | STATUS_AUTH);
James Ketrenosb095c382005-08-24 22:04:42 -05004609 if (priv->assoc_network
4610 && (priv->assoc_network->
4611 capability &
4612 WLAN_CAPABILITY_IBSS))
4613 ipw_remove_current_network
4614 (priv);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004615
James Ketrenosa613bff2005-08-24 21:43:11 -05004616 schedule_work(&priv->link_down);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004617
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004618 break;
4619 }
4620
James Ketrenosb095c382005-08-24 22:04:42 -05004621 case CMAS_RX_ASSOC_RESP:
4622 break;
4623
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004624 default:
4625 IPW_ERROR("assoc: unknown (%d)\n",
4626 assoc->state);
4627 break;
4628 }
4629
James Ketrenos43f66a62005-03-25 12:31:53 -06004630 break;
4631 }
Jeff Garzikbf794512005-07-31 13:07:26 -04004632
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004633 case HOST_NOTIFICATION_STATUS_AUTHENTICATE:{
4634 struct notif_authenticate *auth = &notif->u.auth;
4635 switch (auth->state) {
4636 case CMAS_AUTHENTICATED:
4637 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
Johannes Berge1749612008-10-27 15:59:26 -07004638 "authenticated: '%s' %pM \n",
John W. Linville9387b7c2008-09-30 20:59:05 -04004639 print_ssid(ssid, priv->essid,
4640 priv->essid_len),
Johannes Berge1749612008-10-27 15:59:26 -07004641 priv->bssid);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004642 priv->status |= STATUS_AUTH;
4643 break;
4644
4645 case CMAS_INIT:
4646 if (priv->status & STATUS_AUTH) {
4647 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4648 IPW_DL_ASSOC,
4649 "authentication failed (0x%04X): %s\n",
Al Viro83f7d572008-03-16 22:26:44 +00004650 le16_to_cpu(auth->status),
4651 ipw_get_status_code(le16_to_cpu
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004652 (auth->
4653 status)));
4654 }
4655 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4656 IPW_DL_ASSOC,
Johannes Berge1749612008-10-27 15:59:26 -07004657 "deauthenticated: '%s' %pM\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04004658 print_ssid(ssid, priv->essid,
4659 priv->essid_len),
Johannes Berge1749612008-10-27 15:59:26 -07004660 priv->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06004661
4662 priv->status &= ~(STATUS_ASSOCIATING |
4663 STATUS_AUTH |
4664 STATUS_ASSOCIATED);
4665
James Ketrenosa613bff2005-08-24 21:43:11 -05004666 schedule_work(&priv->link_down);
James Ketrenos43f66a62005-03-25 12:31:53 -06004667 break;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004668
4669 case CMAS_TX_AUTH_SEQ_1:
4670 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4671 IPW_DL_ASSOC, "AUTH_SEQ_1\n");
4672 break;
4673 case CMAS_RX_AUTH_SEQ_2:
4674 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4675 IPW_DL_ASSOC, "AUTH_SEQ_2\n");
4676 break;
4677 case CMAS_AUTH_SEQ_1_PASS:
4678 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4679 IPW_DL_ASSOC, "AUTH_SEQ_1_PASS\n");
4680 break;
4681 case CMAS_AUTH_SEQ_1_FAIL:
4682 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4683 IPW_DL_ASSOC, "AUTH_SEQ_1_FAIL\n");
4684 break;
4685 case CMAS_TX_AUTH_SEQ_3:
4686 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4687 IPW_DL_ASSOC, "AUTH_SEQ_3\n");
4688 break;
4689 case CMAS_RX_AUTH_SEQ_4:
4690 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4691 IPW_DL_ASSOC, "RX_AUTH_SEQ_4\n");
4692 break;
4693 case CMAS_AUTH_SEQ_2_PASS:
4694 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4695 IPW_DL_ASSOC, "AUTH_SEQ_2_PASS\n");
4696 break;
4697 case CMAS_AUTH_SEQ_2_FAIL:
4698 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4699 IPW_DL_ASSOC, "AUT_SEQ_2_FAIL\n");
4700 break;
4701 case CMAS_TX_ASSOC:
4702 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4703 IPW_DL_ASSOC, "TX_ASSOC\n");
4704 break;
4705 case CMAS_RX_ASSOC_RESP:
4706 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4707 IPW_DL_ASSOC, "RX_ASSOC_RESP\n");
James Ketrenosb095c382005-08-24 22:04:42 -05004708
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004709 break;
4710 case CMAS_ASSOCIATED:
4711 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4712 IPW_DL_ASSOC, "ASSOCIATED\n");
4713 break;
4714 default:
4715 IPW_DEBUG_NOTIF("auth: failure - %d\n",
4716 auth->state);
4717 break;
4718 }
4719 break;
4720 }
4721
4722 case HOST_NOTIFICATION_STATUS_SCAN_CHANNEL_RESULT:{
4723 struct notif_channel_result *x =
4724 &notif->u.channel_result;
4725
Al Viroe62e1ee2007-12-27 01:36:46 -05004726 if (size == sizeof(*x)) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004727 IPW_DEBUG_SCAN("Scan result for channel %d\n",
4728 x->channel_num);
4729 } else {
4730 IPW_DEBUG_SCAN("Scan result of wrong size %d "
4731 "(should be %zd)\n",
Al Viroe62e1ee2007-12-27 01:36:46 -05004732 size, sizeof(*x));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004733 }
4734 break;
4735 }
4736
4737 case HOST_NOTIFICATION_STATUS_SCAN_COMPLETED:{
4738 struct notif_scan_complete *x = &notif->u.scan_complete;
Al Viroe62e1ee2007-12-27 01:36:46 -05004739 if (size == sizeof(*x)) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004740 IPW_DEBUG_SCAN
4741 ("Scan completed: type %d, %d channels, "
4742 "%d status\n", x->scan_type,
4743 x->num_channels, x->status);
4744 } else {
4745 IPW_ERROR("Scan completed of wrong size %d "
4746 "(should be %zd)\n",
Al Viroe62e1ee2007-12-27 01:36:46 -05004747 size, sizeof(*x));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004748 }
4749
4750 priv->status &=
4751 ~(STATUS_SCANNING | STATUS_SCAN_ABORTING);
4752
James Ketrenosa0e04ab2005-08-25 00:49:43 -05004753 wake_up_interruptible(&priv->wait_state);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004754 cancel_delayed_work(&priv->scan_check);
4755
James Ketrenosb095c382005-08-24 22:04:42 -05004756 if (priv->status & STATUS_EXIT_PENDING)
4757 break;
4758
4759 priv->ieee->scans++;
4760
4761#ifdef CONFIG_IPW2200_MONITOR
4762 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05004763 priv->status |= STATUS_SCAN_FORCED;
David Howellsc4028952006-11-22 14:57:56 +00004764 queue_delayed_work(priv->workqueue,
4765 &priv->request_scan, 0);
James Ketrenosb095c382005-08-24 22:04:42 -05004766 break;
4767 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05004768 priv->status &= ~STATUS_SCAN_FORCED;
James Ketrenosb095c382005-08-24 22:04:42 -05004769#endif /* CONFIG_IPW2200_MONITOR */
4770
Dan Williamsea177302008-06-02 17:51:23 -04004771 /* Do queued direct scans first */
4772 if (priv->status & STATUS_DIRECT_SCAN_PENDING) {
4773 queue_delayed_work(priv->workqueue,
4774 &priv->request_direct_scan, 0);
4775 }
4776
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004777 if (!(priv->status & (STATUS_ASSOCIATED |
4778 STATUS_ASSOCIATING |
4779 STATUS_ROAMING |
4780 STATUS_DISASSOCIATING)))
4781 queue_work(priv->workqueue, &priv->associate);
4782 else if (priv->status & STATUS_ROAMING) {
Ben Cahille7582562005-10-06 15:34:41 -05004783 if (x->status == SCAN_COMPLETED_STATUS_COMPLETE)
4784 /* If a scan completed and we are in roam mode, then
4785 * the scan that completed was the one requested as a
4786 * result of entering roam... so, schedule the
4787 * roam work */
4788 queue_work(priv->workqueue,
4789 &priv->roam);
4790 else
4791 /* Don't schedule if we aborted the scan */
4792 priv->status &= ~STATUS_ROAMING;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004793 } else if (priv->status & STATUS_SCAN_PENDING)
David Howellsc4028952006-11-22 14:57:56 +00004794 queue_delayed_work(priv->workqueue,
4795 &priv->request_scan, 0);
James Ketrenosa613bff2005-08-24 21:43:11 -05004796 else if (priv->config & CFG_BACKGROUND_SCAN
4797 && priv->status & STATUS_ASSOCIATED)
4798 queue_delayed_work(priv->workqueue,
Stephen Hemminger1c9d5e42007-06-22 21:34:06 -07004799 &priv->request_scan,
Anton Blanchardbe84e3d2007-10-15 00:38:01 -05004800 round_jiffies_relative(HZ));
Zhu Yi07f02e42006-04-13 17:19:25 +08004801
4802 /* Send an empty event to user space.
4803 * We don't send the received data on the event because
4804 * it would require us to do complex transcoding, and
4805 * we want to minimise the work done in the irq handler
4806 * Use a request to extract the data.
4807 * Also, we generate this even for any scan, regardless
4808 * on how the scan was initiated. User space can just
4809 * sync on periodic scan to get fresh data...
4810 * Jean II */
Dan Williams0b531672007-10-09 13:55:24 -04004811 if (x->status == SCAN_COMPLETED_STATUS_COMPLETE)
4812 handle_scan_event(priv);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004813 break;
4814 }
4815
4816 case HOST_NOTIFICATION_STATUS_FRAG_LENGTH:{
4817 struct notif_frag_length *x = &notif->u.frag_len;
4818
Al Viroe62e1ee2007-12-27 01:36:46 -05004819 if (size == sizeof(*x))
James Ketrenosa613bff2005-08-24 21:43:11 -05004820 IPW_ERROR("Frag length: %d\n",
4821 le16_to_cpu(x->frag_length));
4822 else
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004823 IPW_ERROR("Frag length of wrong size %d "
4824 "(should be %zd)\n",
Al Viroe62e1ee2007-12-27 01:36:46 -05004825 size, sizeof(*x));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004826 break;
4827 }
4828
4829 case HOST_NOTIFICATION_STATUS_LINK_DETERIORATION:{
4830 struct notif_link_deterioration *x =
4831 &notif->u.link_deterioration;
James Ketrenosafbf30a2005-08-25 00:05:33 -05004832
Al Viroe62e1ee2007-12-27 01:36:46 -05004833 if (size == sizeof(*x)) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004834 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
Cahill, Ben M12977152006-03-08 02:58:02 +08004835 "link deterioration: type %d, cnt %d\n",
4836 x->silence_notification_type,
4837 x->silence_count);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004838 memcpy(&priv->last_link_deterioration, x,
4839 sizeof(*x));
4840 } else {
4841 IPW_ERROR("Link Deterioration of wrong size %d "
4842 "(should be %zd)\n",
Al Viroe62e1ee2007-12-27 01:36:46 -05004843 size, sizeof(*x));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004844 }
4845 break;
4846 }
4847
4848 case HOST_NOTIFICATION_DINO_CONFIG_RESPONSE:{
4849 IPW_ERROR("Dino config\n");
4850 if (priv->hcmd
James Ketrenosa613bff2005-08-24 21:43:11 -05004851 && priv->hcmd->cmd != HOST_CMD_DINO_CONFIG)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004852 IPW_ERROR("Unexpected DINO_CONFIG_RESPONSE\n");
James Ketrenosa613bff2005-08-24 21:43:11 -05004853
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004854 break;
4855 }
4856
4857 case HOST_NOTIFICATION_STATUS_BEACON_STATE:{
4858 struct notif_beacon_state *x = &notif->u.beacon_state;
Al Viroe62e1ee2007-12-27 01:36:46 -05004859 if (size != sizeof(*x)) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004860 IPW_ERROR
4861 ("Beacon state of wrong size %d (should "
Al Viroe62e1ee2007-12-27 01:36:46 -05004862 "be %zd)\n", size, sizeof(*x));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004863 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04004864 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004865
James Ketrenosa613bff2005-08-24 21:43:11 -05004866 if (le32_to_cpu(x->state) ==
4867 HOST_NOTIFICATION_STATUS_BEACON_MISSING)
4868 ipw_handle_missed_beacon(priv,
4869 le32_to_cpu(x->
4870 number));
Jeff Garzikbf794512005-07-31 13:07:26 -04004871
James Ketrenos43f66a62005-03-25 12:31:53 -06004872 break;
4873 }
Jeff Garzikbf794512005-07-31 13:07:26 -04004874
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004875 case HOST_NOTIFICATION_STATUS_TGI_TX_KEY:{
4876 struct notif_tgi_tx_key *x = &notif->u.tgi_tx_key;
Al Viroe62e1ee2007-12-27 01:36:46 -05004877 if (size == sizeof(*x)) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004878 IPW_ERROR("TGi Tx Key: state 0x%02x sec type "
4879 "0x%02x station %d\n",
4880 x->key_state, x->security_type,
4881 x->station_index);
4882 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06004883 }
4884
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004885 IPW_ERROR
4886 ("TGi Tx Key of wrong size %d (should be %zd)\n",
Al Viroe62e1ee2007-12-27 01:36:46 -05004887 size, sizeof(*x));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004888 break;
4889 }
4890
4891 case HOST_NOTIFICATION_CALIB_KEEP_RESULTS:{
4892 struct notif_calibration *x = &notif->u.calibration;
4893
Al Viroe62e1ee2007-12-27 01:36:46 -05004894 if (size == sizeof(*x)) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004895 memcpy(&priv->calib, x, sizeof(*x));
4896 IPW_DEBUG_INFO("TODO: Calibration\n");
4897 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06004898 }
4899
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004900 IPW_ERROR
4901 ("Calibration of wrong size %d (should be %zd)\n",
Al Viroe62e1ee2007-12-27 01:36:46 -05004902 size, sizeof(*x));
James Ketrenos43f66a62005-03-25 12:31:53 -06004903 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04004904 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004905
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004906 case HOST_NOTIFICATION_NOISE_STATS:{
Al Viroe62e1ee2007-12-27 01:36:46 -05004907 if (size == sizeof(u32)) {
Zhu Yi00d21de2006-04-13 17:19:02 +08004908 priv->exp_avg_noise =
4909 exponential_average(priv->exp_avg_noise,
4910 (u8) (le32_to_cpu(notif->u.noise.value) & 0xff),
4911 DEPTH_NOISE);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004912 break;
4913 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004914
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004915 IPW_ERROR
4916 ("Noise stat is wrong size %d (should be %zd)\n",
Al Viroe62e1ee2007-12-27 01:36:46 -05004917 size, sizeof(u32));
James Ketrenos43f66a62005-03-25 12:31:53 -06004918 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04004919 }
4920
James Ketrenos43f66a62005-03-25 12:31:53 -06004921 default:
Zhu Yi1dd31b62006-02-20 18:28:09 -08004922 IPW_DEBUG_NOTIF("Unknown notification: "
4923 "subtype=%d,flags=0x%2x,size=%d\n",
Al Viroe62e1ee2007-12-27 01:36:46 -05004924 notif->subtype, notif->flags, size);
James Ketrenos43f66a62005-03-25 12:31:53 -06004925 }
4926}
4927
4928/**
4929 * Destroys all DMA structures and initialise them again
Jeff Garzikbf794512005-07-31 13:07:26 -04004930 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004931 * @param priv
4932 * @return error code
4933 */
4934static int ipw_queue_reset(struct ipw_priv *priv)
4935{
4936 int rc = 0;
4937 /** @todo customize queue sizes */
4938 int nTx = 64, nTxCmd = 8;
4939 ipw_tx_queue_free(priv);
4940 /* Tx CMD queue */
4941 rc = ipw_queue_tx_init(priv, &priv->txq_cmd, nTxCmd,
James Ketrenosb095c382005-08-24 22:04:42 -05004942 IPW_TX_CMD_QUEUE_READ_INDEX,
4943 IPW_TX_CMD_QUEUE_WRITE_INDEX,
4944 IPW_TX_CMD_QUEUE_BD_BASE,
4945 IPW_TX_CMD_QUEUE_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004946 if (rc) {
4947 IPW_ERROR("Tx Cmd queue init failed\n");
4948 goto error;
4949 }
4950 /* Tx queue(s) */
4951 rc = ipw_queue_tx_init(priv, &priv->txq[0], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004952 IPW_TX_QUEUE_0_READ_INDEX,
4953 IPW_TX_QUEUE_0_WRITE_INDEX,
4954 IPW_TX_QUEUE_0_BD_BASE, IPW_TX_QUEUE_0_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004955 if (rc) {
4956 IPW_ERROR("Tx 0 queue init failed\n");
4957 goto error;
4958 }
4959 rc = ipw_queue_tx_init(priv, &priv->txq[1], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004960 IPW_TX_QUEUE_1_READ_INDEX,
4961 IPW_TX_QUEUE_1_WRITE_INDEX,
4962 IPW_TX_QUEUE_1_BD_BASE, IPW_TX_QUEUE_1_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004963 if (rc) {
4964 IPW_ERROR("Tx 1 queue init failed\n");
4965 goto error;
4966 }
4967 rc = ipw_queue_tx_init(priv, &priv->txq[2], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004968 IPW_TX_QUEUE_2_READ_INDEX,
4969 IPW_TX_QUEUE_2_WRITE_INDEX,
4970 IPW_TX_QUEUE_2_BD_BASE, IPW_TX_QUEUE_2_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004971 if (rc) {
4972 IPW_ERROR("Tx 2 queue init failed\n");
4973 goto error;
4974 }
4975 rc = ipw_queue_tx_init(priv, &priv->txq[3], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004976 IPW_TX_QUEUE_3_READ_INDEX,
4977 IPW_TX_QUEUE_3_WRITE_INDEX,
4978 IPW_TX_QUEUE_3_BD_BASE, IPW_TX_QUEUE_3_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004979 if (rc) {
4980 IPW_ERROR("Tx 3 queue init failed\n");
4981 goto error;
4982 }
4983 /* statistics */
4984 priv->rx_bufs_min = 0;
4985 priv->rx_pend_max = 0;
4986 return rc;
4987
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004988 error:
James Ketrenos43f66a62005-03-25 12:31:53 -06004989 ipw_tx_queue_free(priv);
4990 return rc;
4991}
4992
4993/**
4994 * Reclaim Tx queue entries no more used by NIC.
Jeff Garzikbf794512005-07-31 13:07:26 -04004995 *
Stefano Brivio8ff9d212008-01-12 23:12:26 +01004996 * When FW advances 'R' index, all entries between old and
James Ketrenos43f66a62005-03-25 12:31:53 -06004997 * new 'R' index need to be reclaimed. As result, some free space
4998 * forms. If there is enough free space (> low mark), wake Tx queue.
Jeff Garzikbf794512005-07-31 13:07:26 -04004999 *
James Ketrenos43f66a62005-03-25 12:31:53 -06005000 * @note Need to protect against garbage in 'R' index
5001 * @param priv
5002 * @param txq
5003 * @param qindex
5004 * @return Number of used entries remains in the queue
5005 */
Jeff Garzikbf794512005-07-31 13:07:26 -04005006static int ipw_queue_tx_reclaim(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06005007 struct clx2_tx_queue *txq, int qindex)
5008{
5009 u32 hw_tail;
5010 int used;
5011 struct clx2_queue *q = &txq->q;
5012
5013 hw_tail = ipw_read32(priv, q->reg_r);
5014 if (hw_tail >= q->n_bd) {
5015 IPW_ERROR
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005016 ("Read index for DMA queue (%d) is out of range [0-%d)\n",
5017 hw_tail, q->n_bd);
James Ketrenos43f66a62005-03-25 12:31:53 -06005018 goto done;
5019 }
5020 for (; q->last_used != hw_tail;
5021 q->last_used = ipw_queue_inc_wrap(q->last_used, q->n_bd)) {
5022 ipw_queue_tx_free_tfd(priv, txq);
5023 priv->tx_packets++;
5024 }
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005025 done:
Dan Williams943dbef2008-02-14 17:49:41 -05005026 if ((ipw_tx_queue_space(q) > q->low_mark) &&
David S. Miller521c4d92008-07-22 18:32:47 -07005027 (qindex >= 0))
James Ketrenos9ddf84f2005-08-16 17:07:11 -05005028 netif_wake_queue(priv->net_dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06005029 used = q->first_empty - q->last_used;
5030 if (used < 0)
5031 used += q->n_bd;
5032
5033 return used;
5034}
5035
5036static int ipw_queue_tx_hcmd(struct ipw_priv *priv, int hcmd, void *buf,
5037 int len, int sync)
5038{
5039 struct clx2_tx_queue *txq = &priv->txq_cmd;
5040 struct clx2_queue *q = &txq->q;
5041 struct tfd_frame *tfd;
5042
Dan Williams943dbef2008-02-14 17:49:41 -05005043 if (ipw_tx_queue_space(q) < (sync ? 1 : 2)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005044 IPW_ERROR("No space for Tx\n");
5045 return -EBUSY;
5046 }
5047
5048 tfd = &txq->bd[q->first_empty];
5049 txq->txb[q->first_empty] = NULL;
5050
5051 memset(tfd, 0, sizeof(*tfd));
5052 tfd->control_flags.message_type = TX_HOST_COMMAND_TYPE;
5053 tfd->control_flags.control_bits = TFD_NEED_IRQ_MASK;
5054 priv->hcmd_seq++;
5055 tfd->u.cmd.index = hcmd;
5056 tfd->u.cmd.length = len;
5057 memcpy(tfd->u.cmd.payload, buf, len);
5058 q->first_empty = ipw_queue_inc_wrap(q->first_empty, q->n_bd);
5059 ipw_write32(priv, q->reg_w, q->first_empty);
5060 _ipw_read32(priv, 0x90);
5061
5062 return 0;
5063}
5064
Jeff Garzikbf794512005-07-31 13:07:26 -04005065/*
James Ketrenos43f66a62005-03-25 12:31:53 -06005066 * Rx theory of operation
5067 *
5068 * The host allocates 32 DMA target addresses and passes the host address
James Ketrenosb095c382005-08-24 22:04:42 -05005069 * to the firmware at register IPW_RFDS_TABLE_LOWER + N * RFD_SIZE where N is
James Ketrenos43f66a62005-03-25 12:31:53 -06005070 * 0 to 31
5071 *
5072 * Rx Queue Indexes
5073 * The host/firmware share two index registers for managing the Rx buffers.
5074 *
Jeff Garzikbf794512005-07-31 13:07:26 -04005075 * The READ index maps to the first position that the firmware may be writing
5076 * to -- the driver can read up to (but not including) this position and get
5077 * good data.
James Ketrenos43f66a62005-03-25 12:31:53 -06005078 * The READ index is managed by the firmware once the card is enabled.
5079 *
5080 * The WRITE index maps to the last position the driver has read from -- the
5081 * position preceding WRITE is the last slot the firmware can place a packet.
5082 *
5083 * The queue is empty (no good data) if WRITE = READ - 1, and is full if
Jeff Garzikbf794512005-07-31 13:07:26 -04005084 * WRITE = READ.
James Ketrenos43f66a62005-03-25 12:31:53 -06005085 *
Jeff Garzikbf794512005-07-31 13:07:26 -04005086 * During initialization the host sets up the READ queue position to the first
James Ketrenos43f66a62005-03-25 12:31:53 -06005087 * INDEX position, and WRITE to the last (READ - 1 wrapped)
5088 *
5089 * When the firmware places a packet in a buffer it will advance the READ index
5090 * and fire the RX interrupt. The driver can then query the READ index and
5091 * process as many packets as possible, moving the WRITE index forward as it
5092 * resets the Rx queue buffers with new memory.
Jeff Garzikbf794512005-07-31 13:07:26 -04005093 *
James Ketrenos43f66a62005-03-25 12:31:53 -06005094 * The management in the driver is as follows:
Jeff Garzikbf794512005-07-31 13:07:26 -04005095 * + A list of pre-allocated SKBs is stored in ipw->rxq->rx_free. When
James Ketrenos43f66a62005-03-25 12:31:53 -06005096 * ipw->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled
Jeff Garzikbf794512005-07-31 13:07:26 -04005097 * to replensish the ipw->rxq->rx_free.
James Ketrenos43f66a62005-03-25 12:31:53 -06005098 * + In ipw_rx_queue_replenish (scheduled) if 'processed' != 'read' then the
5099 * ipw->rxq is replenished and the READ INDEX is updated (updating the
5100 * 'processed' and 'read' driver indexes as well)
5101 * + A received packet is processed and handed to the kernel network stack,
5102 * detached from the ipw->rxq. The driver 'processed' index is updated.
5103 * + The Host/Firmware ipw->rxq is replenished at tasklet time from the rx_free
Jeff Garzikbf794512005-07-31 13:07:26 -04005104 * list. If there are no allocated buffers in ipw->rxq->rx_free, the READ
5105 * INDEX is not incremented and ipw->status(RX_STALLED) is set. If there
James Ketrenos43f66a62005-03-25 12:31:53 -06005106 * were enough free buffers and RX_STALLED is set it is cleared.
5107 *
5108 *
5109 * Driver sequence:
5110 *
Jeff Garzikbf794512005-07-31 13:07:26 -04005111 * ipw_rx_queue_alloc() Allocates rx_free
James Ketrenos43f66a62005-03-25 12:31:53 -06005112 * ipw_rx_queue_replenish() Replenishes rx_free list from rx_used, and calls
5113 * ipw_rx_queue_restock
5114 * ipw_rx_queue_restock() Moves available buffers from rx_free into Rx
5115 * queue, updates firmware pointers, and updates
5116 * the WRITE index. If insufficient rx_free buffers
5117 * are available, schedules ipw_rx_queue_replenish
5118 *
5119 * -- enable interrupts --
5120 * ISR - ipw_rx() Detach ipw_rx_mem_buffers from pool up to the
Jeff Garzikbf794512005-07-31 13:07:26 -04005121 * READ INDEX, detaching the SKB from the pool.
James Ketrenos43f66a62005-03-25 12:31:53 -06005122 * Moves the packet buffer from queue to rx_used.
5123 * Calls ipw_rx_queue_restock to refill any empty
5124 * slots.
5125 * ...
5126 *
5127 */
5128
Jeff Garzikbf794512005-07-31 13:07:26 -04005129/*
James Ketrenos43f66a62005-03-25 12:31:53 -06005130 * If there are slots in the RX queue that need to be restocked,
5131 * and we have free pre-allocated buffers, fill the ranks as much
5132 * as we can pulling from rx_free.
5133 *
5134 * This moves the 'write' index forward to catch up with 'processed', and
5135 * also updates the memory address in the firmware to reference the new
5136 * target buffer.
5137 */
5138static void ipw_rx_queue_restock(struct ipw_priv *priv)
5139{
5140 struct ipw_rx_queue *rxq = priv->rxq;
5141 struct list_head *element;
5142 struct ipw_rx_mem_buffer *rxb;
5143 unsigned long flags;
5144 int write;
5145
5146 spin_lock_irqsave(&rxq->lock, flags);
5147 write = rxq->write;
Dan Williams943dbef2008-02-14 17:49:41 -05005148 while ((ipw_rx_queue_space(rxq) > 0) && (rxq->free_count)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005149 element = rxq->rx_free.next;
5150 rxb = list_entry(element, struct ipw_rx_mem_buffer, list);
5151 list_del(element);
5152
James Ketrenosb095c382005-08-24 22:04:42 -05005153 ipw_write32(priv, IPW_RFDS_TABLE_LOWER + rxq->write * RFD_SIZE,
James Ketrenos43f66a62005-03-25 12:31:53 -06005154 rxb->dma_addr);
5155 rxq->queue[rxq->write] = rxb;
5156 rxq->write = (rxq->write + 1) % RX_QUEUE_SIZE;
5157 rxq->free_count--;
5158 }
5159 spin_unlock_irqrestore(&rxq->lock, flags);
5160
Jeff Garzikbf794512005-07-31 13:07:26 -04005161 /* If the pre-allocated buffer pool is dropping low, schedule to
James Ketrenos43f66a62005-03-25 12:31:53 -06005162 * refill it */
5163 if (rxq->free_count <= RX_LOW_WATERMARK)
5164 queue_work(priv->workqueue, &priv->rx_replenish);
5165
5166 /* If we've added more space for the firmware to place data, tell it */
Jeff Garzikbf794512005-07-31 13:07:26 -04005167 if (write != rxq->write)
James Ketrenosb095c382005-08-24 22:04:42 -05005168 ipw_write32(priv, IPW_RX_WRITE_INDEX, rxq->write);
James Ketrenos43f66a62005-03-25 12:31:53 -06005169}
5170
5171/*
5172 * Move all used packet from rx_used to rx_free, allocating a new SKB for each.
Jeff Garzikbf794512005-07-31 13:07:26 -04005173 * Also restock the Rx queue via ipw_rx_queue_restock.
5174 *
James Ketrenos43f66a62005-03-25 12:31:53 -06005175 * This is called as a scheduled work item (except for during intialization)
5176 */
5177static void ipw_rx_queue_replenish(void *data)
5178{
5179 struct ipw_priv *priv = data;
5180 struct ipw_rx_queue *rxq = priv->rxq;
5181 struct list_head *element;
5182 struct ipw_rx_mem_buffer *rxb;
5183 unsigned long flags;
5184
5185 spin_lock_irqsave(&rxq->lock, flags);
5186 while (!list_empty(&rxq->rx_used)) {
5187 element = rxq->rx_used.next;
5188 rxb = list_entry(element, struct ipw_rx_mem_buffer, list);
James Ketrenosb095c382005-08-24 22:04:42 -05005189 rxb->skb = alloc_skb(IPW_RX_BUF_SIZE, GFP_ATOMIC);
James Ketrenos43f66a62005-03-25 12:31:53 -06005190 if (!rxb->skb) {
5191 printk(KERN_CRIT "%s: Can not allocate SKB buffers.\n",
5192 priv->net_dev->name);
5193 /* We don't reschedule replenish work here -- we will
5194 * call the restock method and if it still needs
5195 * more buffers it will schedule replenish */
5196 break;
5197 }
5198 list_del(element);
Jeff Garzikbf794512005-07-31 13:07:26 -04005199
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005200 rxb->dma_addr =
5201 pci_map_single(priv->pci_dev, rxb->skb->data,
James Ketrenosb095c382005-08-24 22:04:42 -05005202 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
Jeff Garzikbf794512005-07-31 13:07:26 -04005203
James Ketrenos43f66a62005-03-25 12:31:53 -06005204 list_add_tail(&rxb->list, &rxq->rx_free);
5205 rxq->free_count++;
5206 }
5207 spin_unlock_irqrestore(&rxq->lock, flags);
5208
5209 ipw_rx_queue_restock(priv);
5210}
5211
David Howellsc4028952006-11-22 14:57:56 +00005212static void ipw_bg_rx_queue_replenish(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -05005213{
David Howellsc4028952006-11-22 14:57:56 +00005214 struct ipw_priv *priv =
5215 container_of(work, struct ipw_priv, rx_replenish);
Zhu Yi46441512006-01-24 16:37:59 +08005216 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00005217 ipw_rx_queue_replenish(priv);
Zhu Yi46441512006-01-24 16:37:59 +08005218 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005219}
5220
James Ketrenos43f66a62005-03-25 12:31:53 -06005221/* Assumes that the skb field of the buffers in 'pool' is kept accurate.
Zhu Yic7b6a672006-01-24 16:37:05 +08005222 * If an SKB has been detached, the POOL needs to have its SKB set to NULL
Jeff Garzikbf794512005-07-31 13:07:26 -04005223 * This free routine walks the list of POOL entries and if SKB is set to
James Ketrenos43f66a62005-03-25 12:31:53 -06005224 * non NULL it is unmapped and freed
5225 */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005226static void ipw_rx_queue_free(struct ipw_priv *priv, struct ipw_rx_queue *rxq)
James Ketrenos43f66a62005-03-25 12:31:53 -06005227{
5228 int i;
5229
5230 if (!rxq)
5231 return;
Jeff Garzikbf794512005-07-31 13:07:26 -04005232
James Ketrenos43f66a62005-03-25 12:31:53 -06005233 for (i = 0; i < RX_QUEUE_SIZE + RX_FREE_BUFFERS; i++) {
5234 if (rxq->pool[i].skb != NULL) {
5235 pci_unmap_single(priv->pci_dev, rxq->pool[i].dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05005236 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06005237 dev_kfree_skb(rxq->pool[i].skb);
5238 }
5239 }
5240
5241 kfree(rxq);
5242}
5243
5244static struct ipw_rx_queue *ipw_rx_queue_alloc(struct ipw_priv *priv)
5245{
5246 struct ipw_rx_queue *rxq;
5247 int i;
5248
Takisc75f4742005-12-01 01:41:45 -08005249 rxq = kzalloc(sizeof(*rxq), GFP_KERNEL);
Panagiotis Issarisad18b0e2005-09-05 04:14:10 +02005250 if (unlikely(!rxq)) {
5251 IPW_ERROR("memory allocation failed\n");
5252 return NULL;
5253 }
James Ketrenos43f66a62005-03-25 12:31:53 -06005254 spin_lock_init(&rxq->lock);
5255 INIT_LIST_HEAD(&rxq->rx_free);
5256 INIT_LIST_HEAD(&rxq->rx_used);
5257
5258 /* Fill the rx_used queue with _all_ of the Rx buffers */
Jeff Garzikbf794512005-07-31 13:07:26 -04005259 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++)
James Ketrenos43f66a62005-03-25 12:31:53 -06005260 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
5261
5262 /* Set us so that we have processed and used all buffers, but have
5263 * not restocked the Rx queue with fresh buffers */
5264 rxq->read = rxq->write = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005265 rxq->free_count = 0;
5266
5267 return rxq;
5268}
5269
5270static int ipw_is_rate_in_mask(struct ipw_priv *priv, int ieee_mode, u8 rate)
5271{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005272 rate &= ~LIBIPW_BASIC_RATE_MASK;
James Ketrenos43f66a62005-03-25 12:31:53 -06005273 if (ieee_mode == IEEE_A) {
5274 switch (rate) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005275 case LIBIPW_OFDM_RATE_6MB:
5276 return priv->rates_mask & LIBIPW_OFDM_RATE_6MB_MASK ?
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005277 1 : 0;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005278 case LIBIPW_OFDM_RATE_9MB:
5279 return priv->rates_mask & LIBIPW_OFDM_RATE_9MB_MASK ?
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005280 1 : 0;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005281 case LIBIPW_OFDM_RATE_12MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005282 return priv->
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005283 rates_mask & LIBIPW_OFDM_RATE_12MB_MASK ? 1 : 0;
5284 case LIBIPW_OFDM_RATE_18MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005285 return priv->
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005286 rates_mask & LIBIPW_OFDM_RATE_18MB_MASK ? 1 : 0;
5287 case LIBIPW_OFDM_RATE_24MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005288 return priv->
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005289 rates_mask & LIBIPW_OFDM_RATE_24MB_MASK ? 1 : 0;
5290 case LIBIPW_OFDM_RATE_36MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005291 return priv->
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005292 rates_mask & LIBIPW_OFDM_RATE_36MB_MASK ? 1 : 0;
5293 case LIBIPW_OFDM_RATE_48MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005294 return priv->
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005295 rates_mask & LIBIPW_OFDM_RATE_48MB_MASK ? 1 : 0;
5296 case LIBIPW_OFDM_RATE_54MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005297 return priv->
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005298 rates_mask & LIBIPW_OFDM_RATE_54MB_MASK ? 1 : 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005299 default:
5300 return 0;
5301 }
5302 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005303
James Ketrenos43f66a62005-03-25 12:31:53 -06005304 /* B and G mixed */
5305 switch (rate) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005306 case LIBIPW_CCK_RATE_1MB:
5307 return priv->rates_mask & LIBIPW_CCK_RATE_1MB_MASK ? 1 : 0;
5308 case LIBIPW_CCK_RATE_2MB:
5309 return priv->rates_mask & LIBIPW_CCK_RATE_2MB_MASK ? 1 : 0;
5310 case LIBIPW_CCK_RATE_5MB:
5311 return priv->rates_mask & LIBIPW_CCK_RATE_5MB_MASK ? 1 : 0;
5312 case LIBIPW_CCK_RATE_11MB:
5313 return priv->rates_mask & LIBIPW_CCK_RATE_11MB_MASK ? 1 : 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005314 }
5315
5316 /* If we are limited to B modulations, bail at this point */
5317 if (ieee_mode == IEEE_B)
5318 return 0;
5319
5320 /* G */
5321 switch (rate) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005322 case LIBIPW_OFDM_RATE_6MB:
5323 return priv->rates_mask & LIBIPW_OFDM_RATE_6MB_MASK ? 1 : 0;
5324 case LIBIPW_OFDM_RATE_9MB:
5325 return priv->rates_mask & LIBIPW_OFDM_RATE_9MB_MASK ? 1 : 0;
5326 case LIBIPW_OFDM_RATE_12MB:
5327 return priv->rates_mask & LIBIPW_OFDM_RATE_12MB_MASK ? 1 : 0;
5328 case LIBIPW_OFDM_RATE_18MB:
5329 return priv->rates_mask & LIBIPW_OFDM_RATE_18MB_MASK ? 1 : 0;
5330 case LIBIPW_OFDM_RATE_24MB:
5331 return priv->rates_mask & LIBIPW_OFDM_RATE_24MB_MASK ? 1 : 0;
5332 case LIBIPW_OFDM_RATE_36MB:
5333 return priv->rates_mask & LIBIPW_OFDM_RATE_36MB_MASK ? 1 : 0;
5334 case LIBIPW_OFDM_RATE_48MB:
5335 return priv->rates_mask & LIBIPW_OFDM_RATE_48MB_MASK ? 1 : 0;
5336 case LIBIPW_OFDM_RATE_54MB:
5337 return priv->rates_mask & LIBIPW_OFDM_RATE_54MB_MASK ? 1 : 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005338 }
5339
5340 return 0;
5341}
5342
Jeff Garzikbf794512005-07-31 13:07:26 -04005343static int ipw_compatible_rates(struct ipw_priv *priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005344 const struct libipw_network *network,
James Ketrenos43f66a62005-03-25 12:31:53 -06005345 struct ipw_supported_rates *rates)
5346{
5347 int num_rates, i;
5348
5349 memset(rates, 0, sizeof(*rates));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005350 num_rates = min(network->rates_len, (u8) IPW_MAX_RATES);
James Ketrenos43f66a62005-03-25 12:31:53 -06005351 rates->num_rates = 0;
5352 for (i = 0; i < num_rates; i++) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005353 if (!ipw_is_rate_in_mask(priv, network->mode,
5354 network->rates[i])) {
5355
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005356 if (network->rates[i] & LIBIPW_BASIC_RATE_MASK) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005357 IPW_DEBUG_SCAN("Adding masked mandatory "
5358 "rate %02X\n",
5359 network->rates[i]);
5360 rates->supported_rates[rates->num_rates++] =
5361 network->rates[i];
5362 continue;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005363 }
5364
James Ketrenos43f66a62005-03-25 12:31:53 -06005365 IPW_DEBUG_SCAN("Rate %02X masked : 0x%08X\n",
5366 network->rates[i], priv->rates_mask);
5367 continue;
5368 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005369
James Ketrenos43f66a62005-03-25 12:31:53 -06005370 rates->supported_rates[rates->num_rates++] = network->rates[i];
5371 }
5372
James Ketrenosa613bff2005-08-24 21:43:11 -05005373 num_rates = min(network->rates_ex_len,
5374 (u8) (IPW_MAX_RATES - num_rates));
James Ketrenos43f66a62005-03-25 12:31:53 -06005375 for (i = 0; i < num_rates; i++) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005376 if (!ipw_is_rate_in_mask(priv, network->mode,
5377 network->rates_ex[i])) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005378 if (network->rates_ex[i] & LIBIPW_BASIC_RATE_MASK) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005379 IPW_DEBUG_SCAN("Adding masked mandatory "
5380 "rate %02X\n",
5381 network->rates_ex[i]);
5382 rates->supported_rates[rates->num_rates++] =
5383 network->rates[i];
5384 continue;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005385 }
5386
James Ketrenos43f66a62005-03-25 12:31:53 -06005387 IPW_DEBUG_SCAN("Rate %02X masked : 0x%08X\n",
5388 network->rates_ex[i], priv->rates_mask);
5389 continue;
5390 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005391
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005392 rates->supported_rates[rates->num_rates++] =
5393 network->rates_ex[i];
James Ketrenos43f66a62005-03-25 12:31:53 -06005394 }
5395
James Ketrenosea2b26e2005-08-24 21:25:16 -05005396 return 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06005397}
5398
Arjan van de Ven858119e2006-01-14 13:20:43 -08005399static void ipw_copy_rates(struct ipw_supported_rates *dest,
James Ketrenos43f66a62005-03-25 12:31:53 -06005400 const struct ipw_supported_rates *src)
5401{
5402 u8 i;
5403 for (i = 0; i < src->num_rates; i++)
5404 dest->supported_rates[i] = src->supported_rates[i];
5405 dest->num_rates = src->num_rates;
5406}
5407
5408/* TODO: Look at sniffed packets in the air to determine if the basic rate
5409 * mask should ever be used -- right now all callers to add the scan rates are
5410 * set with the modulation = CCK, so BASIC_RATE_MASK is never set... */
5411static void ipw_add_cck_scan_rates(struct ipw_supported_rates *rates,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005412 u8 modulation, u32 rate_mask)
James Ketrenos43f66a62005-03-25 12:31:53 -06005413{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005414 u8 basic_mask = (LIBIPW_OFDM_MODULATION == modulation) ?
5415 LIBIPW_BASIC_RATE_MASK : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005416
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005417 if (rate_mask & LIBIPW_CCK_RATE_1MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005418 rates->supported_rates[rates->num_rates++] =
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005419 LIBIPW_BASIC_RATE_MASK | LIBIPW_CCK_RATE_1MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005420
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005421 if (rate_mask & LIBIPW_CCK_RATE_2MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005422 rates->supported_rates[rates->num_rates++] =
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005423 LIBIPW_BASIC_RATE_MASK | LIBIPW_CCK_RATE_2MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005424
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005425 if (rate_mask & LIBIPW_CCK_RATE_5MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005426 rates->supported_rates[rates->num_rates++] = basic_mask |
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005427 LIBIPW_CCK_RATE_5MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005428
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005429 if (rate_mask & LIBIPW_CCK_RATE_11MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005430 rates->supported_rates[rates->num_rates++] = basic_mask |
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005431 LIBIPW_CCK_RATE_11MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005432}
5433
5434static void ipw_add_ofdm_scan_rates(struct ipw_supported_rates *rates,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005435 u8 modulation, u32 rate_mask)
James Ketrenos43f66a62005-03-25 12:31:53 -06005436{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005437 u8 basic_mask = (LIBIPW_OFDM_MODULATION == modulation) ?
5438 LIBIPW_BASIC_RATE_MASK : 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005439
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005440 if (rate_mask & LIBIPW_OFDM_RATE_6MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005441 rates->supported_rates[rates->num_rates++] = basic_mask |
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005442 LIBIPW_OFDM_RATE_6MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005443
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005444 if (rate_mask & LIBIPW_OFDM_RATE_9MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005445 rates->supported_rates[rates->num_rates++] =
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005446 LIBIPW_OFDM_RATE_9MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005447
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005448 if (rate_mask & LIBIPW_OFDM_RATE_12MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005449 rates->supported_rates[rates->num_rates++] = basic_mask |
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005450 LIBIPW_OFDM_RATE_12MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005451
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005452 if (rate_mask & LIBIPW_OFDM_RATE_18MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005453 rates->supported_rates[rates->num_rates++] =
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005454 LIBIPW_OFDM_RATE_18MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005455
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005456 if (rate_mask & LIBIPW_OFDM_RATE_24MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005457 rates->supported_rates[rates->num_rates++] = basic_mask |
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005458 LIBIPW_OFDM_RATE_24MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005459
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005460 if (rate_mask & LIBIPW_OFDM_RATE_36MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005461 rates->supported_rates[rates->num_rates++] =
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005462 LIBIPW_OFDM_RATE_36MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005463
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005464 if (rate_mask & LIBIPW_OFDM_RATE_48MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005465 rates->supported_rates[rates->num_rates++] =
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005466 LIBIPW_OFDM_RATE_48MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005467
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005468 if (rate_mask & LIBIPW_OFDM_RATE_54MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005469 rates->supported_rates[rates->num_rates++] =
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005470 LIBIPW_OFDM_RATE_54MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005471}
5472
5473struct ipw_network_match {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005474 struct libipw_network *network;
James Ketrenos43f66a62005-03-25 12:31:53 -06005475 struct ipw_supported_rates rates;
5476};
5477
James Ketrenosc848d0a2005-08-24 21:56:24 -05005478static int ipw_find_adhoc_network(struct ipw_priv *priv,
5479 struct ipw_network_match *match,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005480 struct libipw_network *network,
James Ketrenosc848d0a2005-08-24 21:56:24 -05005481 int roaming)
5482{
5483 struct ipw_supported_rates rates;
John W. Linville9387b7c2008-09-30 20:59:05 -04005484 DECLARE_SSID_BUF(ssid);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005485
5486 /* Verify that this network's capability is compatible with the
5487 * current mode (AdHoc or Infrastructure) */
5488 if ((priv->ieee->iw_mode == IW_MODE_ADHOC &&
5489 !(network->capability & WLAN_CAPABILITY_IBSS))) {
Johannes Berge1749612008-10-27 15:59:26 -07005490 IPW_DEBUG_MERGE("Network '%s (%pM)' excluded due to "
James Ketrenosc848d0a2005-08-24 21:56:24 -05005491 "capability mismatch.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005492 print_ssid(ssid, network->ssid,
5493 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005494 network->bssid);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005495 return 0;
5496 }
5497
James Ketrenosc848d0a2005-08-24 21:56:24 -05005498 if (unlikely(roaming)) {
5499 /* If we are roaming, then ensure check if this is a valid
5500 * network to try and roam to */
5501 if ((network->ssid_len != match->network->ssid_len) ||
5502 memcmp(network->ssid, match->network->ssid,
5503 network->ssid_len)) {
Johannes Berge1749612008-10-27 15:59:26 -07005504 IPW_DEBUG_MERGE("Network '%s (%pM)' excluded "
James Ketrenosc848d0a2005-08-24 21:56:24 -05005505 "because of non-network ESSID.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005506 print_ssid(ssid, network->ssid,
5507 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005508 network->bssid);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005509 return 0;
5510 }
5511 } else {
5512 /* If an ESSID has been configured then compare the broadcast
5513 * ESSID to ours */
5514 if ((priv->config & CFG_STATIC_ESSID) &&
5515 ((network->ssid_len != priv->essid_len) ||
5516 memcmp(network->ssid, priv->essid,
5517 min(network->ssid_len, priv->essid_len)))) {
5518 char escaped[IW_ESSID_MAX_SIZE * 2 + 1];
James Ketrenosafbf30a2005-08-25 00:05:33 -05005519
James Ketrenosc848d0a2005-08-24 21:56:24 -05005520 strncpy(escaped,
John W. Linville9387b7c2008-09-30 20:59:05 -04005521 print_ssid(ssid, network->ssid,
5522 network->ssid_len),
James Ketrenosc848d0a2005-08-24 21:56:24 -05005523 sizeof(escaped));
Johannes Berge1749612008-10-27 15:59:26 -07005524 IPW_DEBUG_MERGE("Network '%s (%pM)' excluded "
James Ketrenosc848d0a2005-08-24 21:56:24 -05005525 "because of ESSID mismatch: '%s'.\n",
Johannes Berge1749612008-10-27 15:59:26 -07005526 escaped, network->bssid,
John W. Linville9387b7c2008-09-30 20:59:05 -04005527 print_ssid(ssid, priv->essid,
5528 priv->essid_len));
James Ketrenosc848d0a2005-08-24 21:56:24 -05005529 return 0;
5530 }
5531 }
5532
5533 /* If the old network rate is better than this one, don't bother
5534 * testing everything else. */
5535
5536 if (network->time_stamp[0] < match->network->time_stamp[0]) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05005537 IPW_DEBUG_MERGE("Network '%s excluded because newer than "
5538 "current network.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005539 print_ssid(ssid, match->network->ssid,
5540 match->network->ssid_len));
James Ketrenosc848d0a2005-08-24 21:56:24 -05005541 return 0;
5542 } else if (network->time_stamp[1] < match->network->time_stamp[1]) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05005543 IPW_DEBUG_MERGE("Network '%s excluded because newer than "
5544 "current network.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005545 print_ssid(ssid, match->network->ssid,
5546 match->network->ssid_len));
James Ketrenosc848d0a2005-08-24 21:56:24 -05005547 return 0;
5548 }
5549
5550 /* Now go through and see if the requested network is valid... */
5551 if (priv->ieee->scan_age != 0 &&
5552 time_after(jiffies, network->last_scanned + priv->ieee->scan_age)) {
Johannes Berge1749612008-10-27 15:59:26 -07005553 IPW_DEBUG_MERGE("Network '%s (%pM)' excluded "
Zhu Yic7b6a672006-01-24 16:37:05 +08005554 "because of age: %ums.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005555 print_ssid(ssid, network->ssid,
5556 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005557 network->bssid,
Zhu Yi2638bc32006-01-24 16:37:52 +08005558 jiffies_to_msecs(jiffies -
5559 network->last_scanned));
James Ketrenosc848d0a2005-08-24 21:56:24 -05005560 return 0;
5561 }
5562
5563 if ((priv->config & CFG_STATIC_CHANNEL) &&
5564 (network->channel != priv->channel)) {
Johannes Berge1749612008-10-27 15:59:26 -07005565 IPW_DEBUG_MERGE("Network '%s (%pM)' excluded "
James Ketrenosc848d0a2005-08-24 21:56:24 -05005566 "because of channel mismatch: %d != %d.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005567 print_ssid(ssid, network->ssid,
5568 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005569 network->bssid,
James Ketrenosc848d0a2005-08-24 21:56:24 -05005570 network->channel, priv->channel);
5571 return 0;
5572 }
5573
5574 /* Verify privacy compatability */
5575 if (((priv->capability & CAP_PRIVACY_ON) ? 1 : 0) !=
5576 ((network->capability & WLAN_CAPABILITY_PRIVACY) ? 1 : 0)) {
Johannes Berge1749612008-10-27 15:59:26 -07005577 IPW_DEBUG_MERGE("Network '%s (%pM)' excluded "
James Ketrenosc848d0a2005-08-24 21:56:24 -05005578 "because of privacy mismatch: %s != %s.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005579 print_ssid(ssid, network->ssid,
5580 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005581 network->bssid,
James Ketrenosafbf30a2005-08-25 00:05:33 -05005582 priv->
5583 capability & CAP_PRIVACY_ON ? "on" : "off",
5584 network->
5585 capability & WLAN_CAPABILITY_PRIVACY ? "on" :
5586 "off");
James Ketrenosc848d0a2005-08-24 21:56:24 -05005587 return 0;
5588 }
5589
5590 if (!memcmp(network->bssid, priv->bssid, ETH_ALEN)) {
Johannes Berge1749612008-10-27 15:59:26 -07005591 IPW_DEBUG_MERGE("Network '%s (%pM)' excluded "
5592 "because of the same BSSID match: %pM"
John W. Linville9387b7c2008-09-30 20:59:05 -04005593 ".\n", print_ssid(ssid, network->ssid,
5594 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005595 network->bssid,
5596 priv->bssid);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005597 return 0;
5598 }
5599
5600 /* Filter out any incompatible freq / mode combinations */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005601 if (!libipw_is_valid_mode(priv->ieee, network->mode)) {
Johannes Berge1749612008-10-27 15:59:26 -07005602 IPW_DEBUG_MERGE("Network '%s (%pM)' excluded "
James Ketrenosc848d0a2005-08-24 21:56:24 -05005603 "because of invalid frequency/mode "
5604 "combination.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005605 print_ssid(ssid, network->ssid,
5606 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005607 network->bssid);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005608 return 0;
5609 }
5610
5611 /* Ensure that the rates supported by the driver are compatible with
5612 * this AP, including verification of basic rates (mandatory) */
5613 if (!ipw_compatible_rates(priv, network, &rates)) {
Johannes Berge1749612008-10-27 15:59:26 -07005614 IPW_DEBUG_MERGE("Network '%s (%pM)' excluded "
James Ketrenosc848d0a2005-08-24 21:56:24 -05005615 "because configured rate mask excludes "
5616 "AP mandatory rate.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005617 print_ssid(ssid, network->ssid,
5618 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005619 network->bssid);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005620 return 0;
5621 }
5622
5623 if (rates.num_rates == 0) {
Johannes Berge1749612008-10-27 15:59:26 -07005624 IPW_DEBUG_MERGE("Network '%s (%pM)' excluded "
James Ketrenosc848d0a2005-08-24 21:56:24 -05005625 "because of no compatible rates.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005626 print_ssid(ssid, network->ssid,
5627 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005628 network->bssid);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005629 return 0;
5630 }
5631
5632 /* TODO: Perform any further minimal comparititive tests. We do not
5633 * want to put too much policy logic here; intelligent scan selection
5634 * should occur within a generic IEEE 802.11 user space tool. */
5635
5636 /* Set up 'new' AP to this network */
5637 ipw_copy_rates(&match->rates, &rates);
5638 match->network = network;
Johannes Berge1749612008-10-27 15:59:26 -07005639 IPW_DEBUG_MERGE("Network '%s (%pM)' is a viable match.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005640 print_ssid(ssid, network->ssid, network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005641 network->bssid);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005642
5643 return 1;
5644}
5645
David Howellsc4028952006-11-22 14:57:56 +00005646static void ipw_merge_adhoc_network(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -05005647{
John W. Linville9387b7c2008-09-30 20:59:05 -04005648 DECLARE_SSID_BUF(ssid);
David Howellsc4028952006-11-22 14:57:56 +00005649 struct ipw_priv *priv =
5650 container_of(work, struct ipw_priv, merge_networks);
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005651 struct libipw_network *network = NULL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05005652 struct ipw_network_match match = {
5653 .network = priv->assoc_network
5654 };
5655
James Ketrenosafbf30a2005-08-25 00:05:33 -05005656 if ((priv->status & STATUS_ASSOCIATED) &&
5657 (priv->ieee->iw_mode == IW_MODE_ADHOC)) {
James Ketrenosc848d0a2005-08-24 21:56:24 -05005658 /* First pass through ROAM process -- look for a better
5659 * network */
5660 unsigned long flags;
5661
5662 spin_lock_irqsave(&priv->ieee->lock, flags);
5663 list_for_each_entry(network, &priv->ieee->network_list, list) {
5664 if (network != priv->assoc_network)
5665 ipw_find_adhoc_network(priv, &match, network,
5666 1);
5667 }
5668 spin_unlock_irqrestore(&priv->ieee->lock, flags);
5669
5670 if (match.network == priv->assoc_network) {
5671 IPW_DEBUG_MERGE("No better ADHOC in this network to "
5672 "merge to.\n");
5673 return;
5674 }
5675
Zhu Yi46441512006-01-24 16:37:59 +08005676 mutex_lock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005677 if ((priv->ieee->iw_mode == IW_MODE_ADHOC)) {
5678 IPW_DEBUG_MERGE("remove network %s\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005679 print_ssid(ssid, priv->essid,
5680 priv->essid_len));
James Ketrenosc848d0a2005-08-24 21:56:24 -05005681 ipw_remove_current_network(priv);
5682 }
5683
5684 ipw_disassociate(priv);
5685 priv->assoc_network = match.network;
Zhu Yi46441512006-01-24 16:37:59 +08005686 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005687 return;
5688 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05005689}
5690
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005691static int ipw_best_network(struct ipw_priv *priv,
5692 struct ipw_network_match *match,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005693 struct libipw_network *network, int roaming)
James Ketrenos43f66a62005-03-25 12:31:53 -06005694{
5695 struct ipw_supported_rates rates;
John W. Linville9387b7c2008-09-30 20:59:05 -04005696 DECLARE_SSID_BUF(ssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06005697
5698 /* Verify that this network's capability is compatible with the
5699 * current mode (AdHoc or Infrastructure) */
5700 if ((priv->ieee->iw_mode == IW_MODE_INFRA &&
Jouni Malinen24743852005-08-14 20:59:59 -07005701 !(network->capability & WLAN_CAPABILITY_ESS)) ||
James Ketrenos43f66a62005-03-25 12:31:53 -06005702 (priv->ieee->iw_mode == IW_MODE_ADHOC &&
5703 !(network->capability & WLAN_CAPABILITY_IBSS))) {
Johannes Berge1749612008-10-27 15:59:26 -07005704 IPW_DEBUG_ASSOC("Network '%s (%pM)' excluded due to "
Jeff Garzikbf794512005-07-31 13:07:26 -04005705 "capability mismatch.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005706 print_ssid(ssid, network->ssid,
5707 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005708 network->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06005709 return 0;
5710 }
5711
James Ketrenos43f66a62005-03-25 12:31:53 -06005712 if (unlikely(roaming)) {
5713 /* If we are roaming, then ensure check if this is a valid
5714 * network to try and roam to */
5715 if ((network->ssid_len != match->network->ssid_len) ||
Jeff Garzikbf794512005-07-31 13:07:26 -04005716 memcmp(network->ssid, match->network->ssid,
James Ketrenos43f66a62005-03-25 12:31:53 -06005717 network->ssid_len)) {
Johannes Berge1749612008-10-27 15:59:26 -07005718 IPW_DEBUG_ASSOC("Network '%s (%pM)' excluded "
James Ketrenos43f66a62005-03-25 12:31:53 -06005719 "because of non-network ESSID.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005720 print_ssid(ssid, network->ssid,
5721 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005722 network->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06005723 return 0;
5724 }
5725 } else {
Jeff Garzikbf794512005-07-31 13:07:26 -04005726 /* If an ESSID has been configured then compare the broadcast
5727 * ESSID to ours */
5728 if ((priv->config & CFG_STATIC_ESSID) &&
James Ketrenos43f66a62005-03-25 12:31:53 -06005729 ((network->ssid_len != priv->essid_len) ||
Jeff Garzikbf794512005-07-31 13:07:26 -04005730 memcmp(network->ssid, priv->essid,
James Ketrenos43f66a62005-03-25 12:31:53 -06005731 min(network->ssid_len, priv->essid_len)))) {
5732 char escaped[IW_ESSID_MAX_SIZE * 2 + 1];
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005733 strncpy(escaped,
John W. Linville9387b7c2008-09-30 20:59:05 -04005734 print_ssid(ssid, network->ssid,
5735 network->ssid_len),
James Ketrenos43f66a62005-03-25 12:31:53 -06005736 sizeof(escaped));
Johannes Berge1749612008-10-27 15:59:26 -07005737 IPW_DEBUG_ASSOC("Network '%s (%pM)' excluded "
Jeff Garzikbf794512005-07-31 13:07:26 -04005738 "because of ESSID mismatch: '%s'.\n",
Johannes Berge1749612008-10-27 15:59:26 -07005739 escaped, network->bssid,
John W. Linville9387b7c2008-09-30 20:59:05 -04005740 print_ssid(ssid, priv->essid,
5741 priv->essid_len));
James Ketrenos43f66a62005-03-25 12:31:53 -06005742 return 0;
5743 }
5744 }
5745
5746 /* If the old network rate is better than this one, don't bother
5747 * testing everything else. */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005748 if (match->network && match->network->stats.rssi > network->stats.rssi) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005749 char escaped[IW_ESSID_MAX_SIZE * 2 + 1];
Jeff Garzikbf794512005-07-31 13:07:26 -04005750 strncpy(escaped,
John W. Linville9387b7c2008-09-30 20:59:05 -04005751 print_ssid(ssid, network->ssid, network->ssid_len),
James Ketrenos43f66a62005-03-25 12:31:53 -06005752 sizeof(escaped));
Johannes Berge1749612008-10-27 15:59:26 -07005753 IPW_DEBUG_ASSOC("Network '%s (%pM)' excluded because "
5754 "'%s (%pM)' has a stronger signal.\n",
5755 escaped, network->bssid,
John W. Linville9387b7c2008-09-30 20:59:05 -04005756 print_ssid(ssid, match->network->ssid,
5757 match->network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005758 match->network->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06005759 return 0;
5760 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005761
James Ketrenos43f66a62005-03-25 12:31:53 -06005762 /* If this network has already had an association attempt within the
5763 * last 3 seconds, do not try and associate again... */
5764 if (network->last_associate &&
James Ketrenosea2b26e2005-08-24 21:25:16 -05005765 time_after(network->last_associate + (HZ * 3UL), jiffies)) {
Johannes Berge1749612008-10-27 15:59:26 -07005766 IPW_DEBUG_ASSOC("Network '%s (%pM)' excluded "
Zhu Yic7b6a672006-01-24 16:37:05 +08005767 "because of storming (%ums since last "
James Ketrenos43f66a62005-03-25 12:31:53 -06005768 "assoc attempt).\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005769 print_ssid(ssid, network->ssid,
5770 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005771 network->bssid,
Zhu Yi2638bc32006-01-24 16:37:52 +08005772 jiffies_to_msecs(jiffies -
5773 network->last_associate));
James Ketrenos43f66a62005-03-25 12:31:53 -06005774 return 0;
5775 }
5776
5777 /* Now go through and see if the requested network is valid... */
Jeff Garzikbf794512005-07-31 13:07:26 -04005778 if (priv->ieee->scan_age != 0 &&
James Ketrenosea2b26e2005-08-24 21:25:16 -05005779 time_after(jiffies, network->last_scanned + priv->ieee->scan_age)) {
Johannes Berge1749612008-10-27 15:59:26 -07005780 IPW_DEBUG_ASSOC("Network '%s (%pM)' excluded "
Zhu Yic7b6a672006-01-24 16:37:05 +08005781 "because of age: %ums.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005782 print_ssid(ssid, network->ssid,
5783 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005784 network->bssid,
Zhu Yi2638bc32006-01-24 16:37:52 +08005785 jiffies_to_msecs(jiffies -
5786 network->last_scanned));
James Ketrenos43f66a62005-03-25 12:31:53 -06005787 return 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005788 }
James Ketrenos43f66a62005-03-25 12:31:53 -06005789
Jeff Garzikbf794512005-07-31 13:07:26 -04005790 if ((priv->config & CFG_STATIC_CHANNEL) &&
James Ketrenos43f66a62005-03-25 12:31:53 -06005791 (network->channel != priv->channel)) {
Johannes Berge1749612008-10-27 15:59:26 -07005792 IPW_DEBUG_ASSOC("Network '%s (%pM)' excluded "
James Ketrenos43f66a62005-03-25 12:31:53 -06005793 "because of channel mismatch: %d != %d.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005794 print_ssid(ssid, network->ssid,
5795 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005796 network->bssid,
James Ketrenos43f66a62005-03-25 12:31:53 -06005797 network->channel, priv->channel);
5798 return 0;
5799 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005800
James Ketrenos43f66a62005-03-25 12:31:53 -06005801 /* Verify privacy compatability */
Jeff Garzikbf794512005-07-31 13:07:26 -04005802 if (((priv->capability & CAP_PRIVACY_ON) ? 1 : 0) !=
James Ketrenos43f66a62005-03-25 12:31:53 -06005803 ((network->capability & WLAN_CAPABILITY_PRIVACY) ? 1 : 0)) {
Johannes Berge1749612008-10-27 15:59:26 -07005804 IPW_DEBUG_ASSOC("Network '%s (%pM)' excluded "
James Ketrenos43f66a62005-03-25 12:31:53 -06005805 "because of privacy mismatch: %s != %s.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005806 print_ssid(ssid, network->ssid,
5807 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005808 network->bssid,
Jeff Garzikbf794512005-07-31 13:07:26 -04005809 priv->capability & CAP_PRIVACY_ON ? "on" :
James Ketrenos43f66a62005-03-25 12:31:53 -06005810 "off",
Jeff Garzikbf794512005-07-31 13:07:26 -04005811 network->capability &
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005812 WLAN_CAPABILITY_PRIVACY ? "on" : "off");
James Ketrenos43f66a62005-03-25 12:31:53 -06005813 return 0;
5814 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005815
5816 if ((priv->config & CFG_STATIC_BSSID) &&
James Ketrenos43f66a62005-03-25 12:31:53 -06005817 memcmp(network->bssid, priv->bssid, ETH_ALEN)) {
Johannes Berge1749612008-10-27 15:59:26 -07005818 IPW_DEBUG_ASSOC("Network '%s (%pM)' excluded "
5819 "because of BSSID mismatch: %pM.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005820 print_ssid(ssid, network->ssid,
5821 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005822 network->bssid, priv->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06005823 return 0;
5824 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005825
James Ketrenos43f66a62005-03-25 12:31:53 -06005826 /* Filter out any incompatible freq / mode combinations */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005827 if (!libipw_is_valid_mode(priv->ieee, network->mode)) {
Johannes Berge1749612008-10-27 15:59:26 -07005828 IPW_DEBUG_ASSOC("Network '%s (%pM)' excluded "
James Ketrenos43f66a62005-03-25 12:31:53 -06005829 "because of invalid frequency/mode "
5830 "combination.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005831 print_ssid(ssid, network->ssid,
5832 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005833 network->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06005834 return 0;
5835 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005836
Liu Hong1fe0adb2005-08-19 09:33:10 -05005837 /* Filter out invalid channel in current GEO */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005838 if (!libipw_is_valid_channel(priv->ieee, network->channel)) {
Johannes Berge1749612008-10-27 15:59:26 -07005839 IPW_DEBUG_ASSOC("Network '%s (%pM)' excluded "
Liu Hong1fe0adb2005-08-19 09:33:10 -05005840 "because of invalid channel in current GEO\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005841 print_ssid(ssid, network->ssid,
5842 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005843 network->bssid);
Liu Hong1fe0adb2005-08-19 09:33:10 -05005844 return 0;
5845 }
5846
James Ketrenosea2b26e2005-08-24 21:25:16 -05005847 /* Ensure that the rates supported by the driver are compatible with
5848 * this AP, including verification of basic rates (mandatory) */
5849 if (!ipw_compatible_rates(priv, network, &rates)) {
Johannes Berge1749612008-10-27 15:59:26 -07005850 IPW_DEBUG_ASSOC("Network '%s (%pM)' excluded "
James Ketrenosea2b26e2005-08-24 21:25:16 -05005851 "because configured rate mask excludes "
5852 "AP mandatory rate.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005853 print_ssid(ssid, network->ssid,
5854 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005855 network->bssid);
James Ketrenosea2b26e2005-08-24 21:25:16 -05005856 return 0;
5857 }
5858
James Ketrenos43f66a62005-03-25 12:31:53 -06005859 if (rates.num_rates == 0) {
Johannes Berge1749612008-10-27 15:59:26 -07005860 IPW_DEBUG_ASSOC("Network '%s (%pM)' excluded "
James Ketrenos43f66a62005-03-25 12:31:53 -06005861 "because of no compatible rates.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005862 print_ssid(ssid, network->ssid,
5863 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005864 network->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06005865 return 0;
5866 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005867
James Ketrenos43f66a62005-03-25 12:31:53 -06005868 /* TODO: Perform any further minimal comparititive tests. We do not
5869 * want to put too much policy logic here; intelligent scan selection
5870 * should occur within a generic IEEE 802.11 user space tool. */
5871
5872 /* Set up 'new' AP to this network */
5873 ipw_copy_rates(&match->rates, &rates);
5874 match->network = network;
5875
Johannes Berge1749612008-10-27 15:59:26 -07005876 IPW_DEBUG_ASSOC("Network '%s (%pM)' is a viable match.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005877 print_ssid(ssid, network->ssid, network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005878 network->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06005879
5880 return 1;
5881}
5882
Jeff Garzikbf794512005-07-31 13:07:26 -04005883static void ipw_adhoc_create(struct ipw_priv *priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005884 struct libipw_network *network)
James Ketrenos43f66a62005-03-25 12:31:53 -06005885{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005886 const struct libipw_geo *geo = libipw_get_geo(priv->ieee);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005887 int i;
5888
James Ketrenos43f66a62005-03-25 12:31:53 -06005889 /*
5890 * For the purposes of scanning, we can set our wireless mode
5891 * to trigger scans across combinations of bands, but when it
5892 * comes to creating a new ad-hoc network, we have tell the FW
5893 * exactly which band to use.
5894 *
Jeff Garzikbf794512005-07-31 13:07:26 -04005895 * We also have the possibility of an invalid channel for the
James Ketrenos43f66a62005-03-25 12:31:53 -06005896 * chossen band. Attempting to create a new ad-hoc network
5897 * with an invalid channel for wireless mode will trigger a
5898 * FW fatal error.
James Ketrenosafbf30a2005-08-25 00:05:33 -05005899 *
James Ketrenos43f66a62005-03-25 12:31:53 -06005900 */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005901 switch (libipw_is_valid_channel(priv->ieee, priv->channel)) {
5902 case LIBIPW_52GHZ_BAND:
James Ketrenosafbf30a2005-08-25 00:05:33 -05005903 network->mode = IEEE_A;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005904 i = libipw_channel_to_index(priv->ieee, priv->channel);
Eric Sesterhenn5d9428d2006-04-02 13:52:48 +02005905 BUG_ON(i == -1);
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005906 if (geo->a[i].flags & LIBIPW_CH_PASSIVE_ONLY) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05005907 IPW_WARNING("Overriding invalid channel\n");
5908 priv->channel = geo->a[0].channel;
5909 }
5910 break;
5911
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005912 case LIBIPW_24GHZ_BAND:
James Ketrenosafbf30a2005-08-25 00:05:33 -05005913 if (priv->ieee->mode & IEEE_G)
5914 network->mode = IEEE_G;
5915 else
5916 network->mode = IEEE_B;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005917 i = libipw_channel_to_index(priv->ieee, priv->channel);
Eric Sesterhenn5d9428d2006-04-02 13:52:48 +02005918 BUG_ON(i == -1);
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005919 if (geo->bg[i].flags & LIBIPW_CH_PASSIVE_ONLY) {
Liu Hong1fe0adb2005-08-19 09:33:10 -05005920 IPW_WARNING("Overriding invalid channel\n");
5921 priv->channel = geo->bg[0].channel;
5922 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05005923 break;
5924
5925 default:
James Ketrenos43f66a62005-03-25 12:31:53 -06005926 IPW_WARNING("Overriding invalid channel\n");
5927 if (priv->ieee->mode & IEEE_A) {
5928 network->mode = IEEE_A;
James Ketrenosb095c382005-08-24 22:04:42 -05005929 priv->channel = geo->a[0].channel;
James Ketrenos43f66a62005-03-25 12:31:53 -06005930 } else if (priv->ieee->mode & IEEE_G) {
5931 network->mode = IEEE_G;
James Ketrenosb095c382005-08-24 22:04:42 -05005932 priv->channel = geo->bg[0].channel;
James Ketrenos43f66a62005-03-25 12:31:53 -06005933 } else {
5934 network->mode = IEEE_B;
James Ketrenosb095c382005-08-24 22:04:42 -05005935 priv->channel = geo->bg[0].channel;
James Ketrenos43f66a62005-03-25 12:31:53 -06005936 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05005937 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06005938 }
5939
5940 network->channel = priv->channel;
5941 priv->config |= CFG_ADHOC_PERSIST;
5942 ipw_create_bssid(priv, network->bssid);
5943 network->ssid_len = priv->essid_len;
5944 memcpy(network->ssid, priv->essid, priv->essid_len);
5945 memset(&network->stats, 0, sizeof(network->stats));
5946 network->capability = WLAN_CAPABILITY_IBSS;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005947 if (!(priv->config & CFG_PREAMBLE_LONG))
5948 network->capability |= WLAN_CAPABILITY_SHORT_PREAMBLE;
James Ketrenos43f66a62005-03-25 12:31:53 -06005949 if (priv->capability & CAP_PRIVACY_ON)
5950 network->capability |= WLAN_CAPABILITY_PRIVACY;
5951 network->rates_len = min(priv->rates.num_rates, MAX_RATES_LENGTH);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005952 memcpy(network->rates, priv->rates.supported_rates, network->rates_len);
James Ketrenos43f66a62005-03-25 12:31:53 -06005953 network->rates_ex_len = priv->rates.num_rates - network->rates_len;
Jeff Garzikbf794512005-07-31 13:07:26 -04005954 memcpy(network->rates_ex,
James Ketrenos43f66a62005-03-25 12:31:53 -06005955 &priv->rates.supported_rates[network->rates_len],
5956 network->rates_ex_len);
5957 network->last_scanned = 0;
5958 network->flags = 0;
5959 network->last_associate = 0;
5960 network->time_stamp[0] = 0;
5961 network->time_stamp[1] = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005962 network->beacon_interval = 100; /* Default */
5963 network->listen_interval = 10; /* Default */
5964 network->atim_window = 0; /* Default */
James Ketrenos43f66a62005-03-25 12:31:53 -06005965 network->wpa_ie_len = 0;
5966 network->rsn_ie_len = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005967}
5968
James Ketrenosb095c382005-08-24 22:04:42 -05005969static void ipw_send_tgi_tx_key(struct ipw_priv *priv, int type, int index)
5970{
Zhu Yi0a7bcf22006-01-24 16:37:28 +08005971 struct ipw_tgi_tx_key key;
James Ketrenosb095c382005-08-24 22:04:42 -05005972
5973 if (!(priv->ieee->sec.flags & (1 << index)))
5974 return;
5975
Zhu Yi0a7bcf22006-01-24 16:37:28 +08005976 key.key_id = index;
5977 memcpy(key.key, priv->ieee->sec.keys[index], SCM_TEMPORAL_KEY_LENGTH);
5978 key.security_type = type;
5979 key.station_index = 0; /* always 0 for BSS */
5980 key.flags = 0;
James Ketrenosb095c382005-08-24 22:04:42 -05005981 /* 0 for new key; previous value of counter (after fatal error) */
Zhu Yi851ca262006-08-21 11:37:58 +08005982 key.tx_counter[0] = cpu_to_le32(0);
5983 key.tx_counter[1] = cpu_to_le32(0);
James Ketrenosb095c382005-08-24 22:04:42 -05005984
Zhu Yi0a7bcf22006-01-24 16:37:28 +08005985 ipw_send_cmd_pdu(priv, IPW_CMD_TGI_TX_KEY, sizeof(key), &key);
James Ketrenosb095c382005-08-24 22:04:42 -05005986}
5987
5988static void ipw_send_wep_keys(struct ipw_priv *priv, int type)
James Ketrenos43f66a62005-03-25 12:31:53 -06005989{
Zhu Yi0a7bcf22006-01-24 16:37:28 +08005990 struct ipw_wep_key key;
James Ketrenos43f66a62005-03-25 12:31:53 -06005991 int i;
James Ketrenos43f66a62005-03-25 12:31:53 -06005992
Zhu Yi0a7bcf22006-01-24 16:37:28 +08005993 key.cmd_id = DINO_CMD_WEP_KEY;
5994 key.seq_num = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005995
James Ketrenosb095c382005-08-24 22:04:42 -05005996 /* Note: AES keys cannot be set for multiple times.
5997 * Only set it at the first time. */
Jeff Garzikbf794512005-07-31 13:07:26 -04005998 for (i = 0; i < 4; i++) {
Zhu Yi0a7bcf22006-01-24 16:37:28 +08005999 key.key_index = i | type;
James Ketrenosb095c382005-08-24 22:04:42 -05006000 if (!(priv->ieee->sec.flags & (1 << i))) {
Zhu Yi0a7bcf22006-01-24 16:37:28 +08006001 key.key_size = 0;
James Ketrenosb095c382005-08-24 22:04:42 -05006002 continue;
James Ketrenos43f66a62005-03-25 12:31:53 -06006003 }
6004
Zhu Yi0a7bcf22006-01-24 16:37:28 +08006005 key.key_size = priv->ieee->sec.key_sizes[i];
6006 memcpy(key.key, priv->ieee->sec.keys[i], key.key_size);
James Ketrenosb095c382005-08-24 22:04:42 -05006007
Zhu Yi0a7bcf22006-01-24 16:37:28 +08006008 ipw_send_cmd_pdu(priv, IPW_CMD_WEP_KEY, sizeof(key), &key);
Jeff Garzikbf794512005-07-31 13:07:26 -04006009 }
James Ketrenos43f66a62005-03-25 12:31:53 -06006010}
6011
Zhu Yi1fbfea52005-08-05 17:22:56 +08006012static void ipw_set_hw_decrypt_unicast(struct ipw_priv *priv, int level)
6013{
6014 if (priv->ieee->host_encrypt)
6015 return;
6016
6017 switch (level) {
6018 case SEC_LEVEL_3:
6019 priv->sys_config.disable_unicast_decryption = 0;
6020 priv->ieee->host_decrypt = 0;
6021 break;
6022 case SEC_LEVEL_2:
6023 priv->sys_config.disable_unicast_decryption = 1;
6024 priv->ieee->host_decrypt = 1;
6025 break;
6026 case SEC_LEVEL_1:
6027 priv->sys_config.disable_unicast_decryption = 0;
6028 priv->ieee->host_decrypt = 0;
6029 break;
6030 case SEC_LEVEL_0:
6031 priv->sys_config.disable_unicast_decryption = 1;
6032 break;
6033 default:
6034 break;
6035 }
6036}
6037
6038static void ipw_set_hw_decrypt_multicast(struct ipw_priv *priv, int level)
6039{
6040 if (priv->ieee->host_encrypt)
6041 return;
6042
6043 switch (level) {
6044 case SEC_LEVEL_3:
6045 priv->sys_config.disable_multicast_decryption = 0;
6046 break;
6047 case SEC_LEVEL_2:
6048 priv->sys_config.disable_multicast_decryption = 1;
6049 break;
6050 case SEC_LEVEL_1:
6051 priv->sys_config.disable_multicast_decryption = 0;
6052 break;
6053 case SEC_LEVEL_0:
6054 priv->sys_config.disable_multicast_decryption = 1;
6055 break;
6056 default:
6057 break;
6058 }
6059}
6060
James Ketrenosb095c382005-08-24 22:04:42 -05006061static void ipw_set_hwcrypto_keys(struct ipw_priv *priv)
6062{
6063 switch (priv->ieee->sec.level) {
6064 case SEC_LEVEL_3:
Zhu Yid8bad6d2005-07-13 12:25:38 -05006065 if (priv->ieee->sec.flags & SEC_ACTIVE_KEY)
6066 ipw_send_tgi_tx_key(priv,
6067 DCT_FLAG_EXT_SECURITY_CCM,
6068 priv->ieee->sec.active_key);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006069
Hong Liu567deaf2005-08-31 18:07:22 +08006070 if (!priv->ieee->host_mc_decrypt)
6071 ipw_send_wep_keys(priv, DCW_WEP_KEY_SEC_TYPE_CCM);
James Ketrenosb095c382005-08-24 22:04:42 -05006072 break;
6073 case SEC_LEVEL_2:
Zhu Yid8bad6d2005-07-13 12:25:38 -05006074 if (priv->ieee->sec.flags & SEC_ACTIVE_KEY)
6075 ipw_send_tgi_tx_key(priv,
6076 DCT_FLAG_EXT_SECURITY_TKIP,
6077 priv->ieee->sec.active_key);
James Ketrenosb095c382005-08-24 22:04:42 -05006078 break;
6079 case SEC_LEVEL_1:
6080 ipw_send_wep_keys(priv, DCW_WEP_KEY_SEC_TYPE_WEP);
Hong Liu29cb8432005-09-12 10:43:33 -05006081 ipw_set_hw_decrypt_unicast(priv, priv->ieee->sec.level);
6082 ipw_set_hw_decrypt_multicast(priv, priv->ieee->sec.level);
James Ketrenosb095c382005-08-24 22:04:42 -05006083 break;
6084 case SEC_LEVEL_0:
6085 default:
6086 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06006087 }
6088}
6089
6090static void ipw_adhoc_check(void *data)
6091{
6092 struct ipw_priv *priv = data;
Jeff Garzikbf794512005-07-31 13:07:26 -04006093
James Ketrenosafbf30a2005-08-25 00:05:33 -05006094 if (priv->missed_adhoc_beacons++ > priv->disassociate_threshold &&
James Ketrenos43f66a62005-03-25 12:31:53 -06006095 !(priv->config & CFG_ADHOC_PERSIST)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006096 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF |
6097 IPW_DL_STATE | IPW_DL_ASSOC,
6098 "Missed beacon: %d - disassociate\n",
6099 priv->missed_adhoc_beacons);
James Ketrenos43f66a62005-03-25 12:31:53 -06006100 ipw_remove_current_network(priv);
6101 ipw_disassociate(priv);
6102 return;
6103 }
6104
Jeff Garzikbf794512005-07-31 13:07:26 -04006105 queue_delayed_work(priv->workqueue, &priv->adhoc_check,
Al Viro5b5e8072007-12-27 01:54:06 -05006106 le16_to_cpu(priv->assoc_request.beacon_interval));
James Ketrenos43f66a62005-03-25 12:31:53 -06006107}
6108
David Howellsc4028952006-11-22 14:57:56 +00006109static void ipw_bg_adhoc_check(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -05006110{
David Howellsc4028952006-11-22 14:57:56 +00006111 struct ipw_priv *priv =
6112 container_of(work, struct ipw_priv, adhoc_check.work);
Zhu Yi46441512006-01-24 16:37:59 +08006113 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00006114 ipw_adhoc_check(priv);
Zhu Yi46441512006-01-24 16:37:59 +08006115 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05006116}
6117
James Ketrenos43f66a62005-03-25 12:31:53 -06006118static void ipw_debug_config(struct ipw_priv *priv)
6119{
John W. Linville9387b7c2008-09-30 20:59:05 -04006120 DECLARE_SSID_BUF(ssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06006121 IPW_DEBUG_INFO("Scan completed, no valid APs matched "
6122 "[CFG 0x%08X]\n", priv->config);
6123 if (priv->config & CFG_STATIC_CHANNEL)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04006124 IPW_DEBUG_INFO("Channel locked to %d\n", priv->channel);
James Ketrenos43f66a62005-03-25 12:31:53 -06006125 else
6126 IPW_DEBUG_INFO("Channel unlocked.\n");
6127 if (priv->config & CFG_STATIC_ESSID)
Jeff Garzikbf794512005-07-31 13:07:26 -04006128 IPW_DEBUG_INFO("ESSID locked to '%s'\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04006129 print_ssid(ssid, priv->essid, priv->essid_len));
James Ketrenos43f66a62005-03-25 12:31:53 -06006130 else
6131 IPW_DEBUG_INFO("ESSID unlocked.\n");
6132 if (priv->config & CFG_STATIC_BSSID)
Johannes Berge1749612008-10-27 15:59:26 -07006133 IPW_DEBUG_INFO("BSSID locked to %pM\n", priv->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06006134 else
6135 IPW_DEBUG_INFO("BSSID unlocked.\n");
6136 if (priv->capability & CAP_PRIVACY_ON)
6137 IPW_DEBUG_INFO("PRIVACY on\n");
6138 else
6139 IPW_DEBUG_INFO("PRIVACY off\n");
6140 IPW_DEBUG_INFO("RATE MASK: 0x%08X\n", priv->rates_mask);
6141}
James Ketrenos43f66a62005-03-25 12:31:53 -06006142
Arjan van de Ven858119e2006-01-14 13:20:43 -08006143static void ipw_set_fixed_rate(struct ipw_priv *priv, int mode)
James Ketrenos43f66a62005-03-25 12:31:53 -06006144{
6145 /* TODO: Verify that this works... */
Reinette Chatre21f8a732009-08-18 10:25:05 -07006146 struct ipw_fixed_rate fr;
James Ketrenos43f66a62005-03-25 12:31:53 -06006147 u32 reg;
6148 u16 mask = 0;
Reinette Chatre21f8a732009-08-18 10:25:05 -07006149 u16 new_tx_rates = priv->rates_mask;
James Ketrenos43f66a62005-03-25 12:31:53 -06006150
Jeff Garzikbf794512005-07-31 13:07:26 -04006151 /* Identify 'current FW band' and match it with the fixed
James Ketrenos43f66a62005-03-25 12:31:53 -06006152 * Tx rates */
Jeff Garzikbf794512005-07-31 13:07:26 -04006153
James Ketrenos43f66a62005-03-25 12:31:53 -06006154 switch (priv->ieee->freq_band) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006155 case LIBIPW_52GHZ_BAND: /* A only */
James Ketrenos43f66a62005-03-25 12:31:53 -06006156 /* IEEE_A */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006157 if (priv->rates_mask & ~LIBIPW_OFDM_RATES_MASK) {
James Ketrenos43f66a62005-03-25 12:31:53 -06006158 /* Invalid fixed rate mask */
James Ketrenosea2b26e2005-08-24 21:25:16 -05006159 IPW_DEBUG_WX
6160 ("invalid fixed rate mask in ipw_set_fixed_rate\n");
Reinette Chatre21f8a732009-08-18 10:25:05 -07006161 new_tx_rates = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06006162 break;
6163 }
Jeff Garzikbf794512005-07-31 13:07:26 -04006164
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006165 new_tx_rates >>= LIBIPW_OFDM_SHIFT_MASK_A;
James Ketrenos43f66a62005-03-25 12:31:53 -06006166 break;
6167
Jeff Garzik0edd5b42005-09-07 00:48:31 -04006168 default: /* 2.4Ghz or Mixed */
James Ketrenos43f66a62005-03-25 12:31:53 -06006169 /* IEEE_B */
James Ketrenosb095c382005-08-24 22:04:42 -05006170 if (mode == IEEE_B) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006171 if (new_tx_rates & ~LIBIPW_CCK_RATES_MASK) {
James Ketrenos43f66a62005-03-25 12:31:53 -06006172 /* Invalid fixed rate mask */
James Ketrenosea2b26e2005-08-24 21:25:16 -05006173 IPW_DEBUG_WX
6174 ("invalid fixed rate mask in ipw_set_fixed_rate\n");
Reinette Chatre21f8a732009-08-18 10:25:05 -07006175 new_tx_rates = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06006176 }
6177 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04006178 }
James Ketrenos43f66a62005-03-25 12:31:53 -06006179
6180 /* IEEE_G */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006181 if (new_tx_rates & ~(LIBIPW_CCK_RATES_MASK |
6182 LIBIPW_OFDM_RATES_MASK)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06006183 /* Invalid fixed rate mask */
James Ketrenosea2b26e2005-08-24 21:25:16 -05006184 IPW_DEBUG_WX
6185 ("invalid fixed rate mask in ipw_set_fixed_rate\n");
Reinette Chatre21f8a732009-08-18 10:25:05 -07006186 new_tx_rates = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06006187 break;
6188 }
6189
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006190 if (LIBIPW_OFDM_RATE_6MB_MASK & new_tx_rates) {
6191 mask |= (LIBIPW_OFDM_RATE_6MB_MASK >> 1);
6192 new_tx_rates &= ~LIBIPW_OFDM_RATE_6MB_MASK;
James Ketrenos43f66a62005-03-25 12:31:53 -06006193 }
Jeff Garzikbf794512005-07-31 13:07:26 -04006194
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006195 if (LIBIPW_OFDM_RATE_9MB_MASK & new_tx_rates) {
6196 mask |= (LIBIPW_OFDM_RATE_9MB_MASK >> 1);
6197 new_tx_rates &= ~LIBIPW_OFDM_RATE_9MB_MASK;
James Ketrenos43f66a62005-03-25 12:31:53 -06006198 }
Jeff Garzikbf794512005-07-31 13:07:26 -04006199
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006200 if (LIBIPW_OFDM_RATE_12MB_MASK & new_tx_rates) {
6201 mask |= (LIBIPW_OFDM_RATE_12MB_MASK >> 1);
6202 new_tx_rates &= ~LIBIPW_OFDM_RATE_12MB_MASK;
James Ketrenos43f66a62005-03-25 12:31:53 -06006203 }
Jeff Garzikbf794512005-07-31 13:07:26 -04006204
Reinette Chatre21f8a732009-08-18 10:25:05 -07006205 new_tx_rates |= mask;
James Ketrenos43f66a62005-03-25 12:31:53 -06006206 break;
6207 }
6208
Reinette Chatre21f8a732009-08-18 10:25:05 -07006209 fr.tx_rates = cpu_to_le16(new_tx_rates);
6210
James Ketrenos43f66a62005-03-25 12:31:53 -06006211 reg = ipw_read32(priv, IPW_MEM_FIXED_OVERRIDE);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04006212 ipw_write_reg32(priv, reg, *(u32 *) & fr);
James Ketrenos43f66a62005-03-25 12:31:53 -06006213}
6214
James Ketrenosea2b26e2005-08-24 21:25:16 -05006215static void ipw_abort_scan(struct ipw_priv *priv)
6216{
6217 int err;
6218
6219 if (priv->status & STATUS_SCAN_ABORTING) {
6220 IPW_DEBUG_HC("Ignoring concurrent scan abort request.\n");
6221 return;
6222 }
6223 priv->status |= STATUS_SCAN_ABORTING;
6224
6225 err = ipw_send_scan_abort(priv);
6226 if (err)
6227 IPW_DEBUG_HC("Request to abort scan failed.\n");
6228}
6229
James Ketrenosafbf30a2005-08-25 00:05:33 -05006230static void ipw_add_scan_channels(struct ipw_priv *priv,
6231 struct ipw_scan_request_ext *scan,
6232 int scan_type)
6233{
6234 int channel_index = 0;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006235 const struct libipw_geo *geo;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006236 int i;
6237
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006238 geo = libipw_get_geo(priv->ieee);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006239
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006240 if (priv->ieee->freq_band & LIBIPW_52GHZ_BAND) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006241 int start = channel_index;
6242 for (i = 0; i < geo->a_channels; i++) {
6243 if ((priv->status & STATUS_ASSOCIATED) &&
6244 geo->a[i].channel == priv->channel)
6245 continue;
6246 channel_index++;
6247 scan->channels_list[channel_index] = geo->a[i].channel;
Liu Hong1fe0adb2005-08-19 09:33:10 -05006248 ipw_set_scan_type(scan, channel_index,
6249 geo->a[i].
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006250 flags & LIBIPW_CH_PASSIVE_ONLY ?
Liu Hong1fe0adb2005-08-19 09:33:10 -05006251 IPW_SCAN_PASSIVE_FULL_DWELL_SCAN :
6252 scan_type);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006253 }
6254
6255 if (start != channel_index) {
6256 scan->channels_list[start] = (u8) (IPW_A_MODE << 6) |
6257 (channel_index - start);
6258 channel_index++;
6259 }
6260 }
6261
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006262 if (priv->ieee->freq_band & LIBIPW_24GHZ_BAND) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006263 int start = channel_index;
6264 if (priv->config & CFG_SPEED_SCAN) {
Liu Hong1fe0adb2005-08-19 09:33:10 -05006265 int index;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006266 u8 channels[LIBIPW_24GHZ_CHANNELS] = {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006267 /* nop out the list */
6268 [0] = 0
6269 };
6270
6271 u8 channel;
Zhu Yi7dd24592009-07-27 10:10:20 +08006272 while (channel_index < IPW_SCAN_CHANNELS - 1) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006273 channel =
6274 priv->speed_scan[priv->speed_scan_pos];
6275 if (channel == 0) {
6276 priv->speed_scan_pos = 0;
6277 channel = priv->speed_scan[0];
6278 }
6279 if ((priv->status & STATUS_ASSOCIATED) &&
6280 channel == priv->channel) {
6281 priv->speed_scan_pos++;
6282 continue;
6283 }
6284
6285 /* If this channel has already been
6286 * added in scan, break from loop
6287 * and this will be the first channel
6288 * in the next scan.
6289 */
6290 if (channels[channel - 1] != 0)
6291 break;
6292
6293 channels[channel - 1] = 1;
6294 priv->speed_scan_pos++;
6295 channel_index++;
6296 scan->channels_list[channel_index] = channel;
Liu Hong1fe0adb2005-08-19 09:33:10 -05006297 index =
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006298 libipw_channel_to_index(priv->ieee, channel);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006299 ipw_set_scan_type(scan, channel_index,
Liu Hong1fe0adb2005-08-19 09:33:10 -05006300 geo->bg[index].
6301 flags &
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006302 LIBIPW_CH_PASSIVE_ONLY ?
Liu Hong1fe0adb2005-08-19 09:33:10 -05006303 IPW_SCAN_PASSIVE_FULL_DWELL_SCAN
6304 : scan_type);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006305 }
6306 } else {
6307 for (i = 0; i < geo->bg_channels; i++) {
6308 if ((priv->status & STATUS_ASSOCIATED) &&
6309 geo->bg[i].channel == priv->channel)
6310 continue;
6311 channel_index++;
6312 scan->channels_list[channel_index] =
6313 geo->bg[i].channel;
6314 ipw_set_scan_type(scan, channel_index,
Liu Hong1fe0adb2005-08-19 09:33:10 -05006315 geo->bg[i].
6316 flags &
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006317 LIBIPW_CH_PASSIVE_ONLY ?
Liu Hong1fe0adb2005-08-19 09:33:10 -05006318 IPW_SCAN_PASSIVE_FULL_DWELL_SCAN
6319 : scan_type);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006320 }
6321 }
6322
6323 if (start != channel_index) {
6324 scan->channels_list[start] = (u8) (IPW_B_MODE << 6) |
6325 (channel_index - start);
6326 }
6327 }
6328}
6329
Helmut Schaa14a4dfe2008-12-10 13:17:26 +01006330static int ipw_passive_dwell_time(struct ipw_priv *priv)
6331{
6332 /* staying on passive channels longer than the DTIM interval during a
6333 * scan, while associated, causes the firmware to cancel the scan
6334 * without notification. Hence, don't stay on passive channels longer
6335 * than the beacon interval.
6336 */
6337 if (priv->status & STATUS_ASSOCIATED
6338 && priv->assoc_network->beacon_interval > 10)
6339 return priv->assoc_network->beacon_interval - 10;
6340 else
6341 return 120;
6342}
6343
Dan Williamsea177302008-06-02 17:51:23 -04006344static int ipw_request_scan_helper(struct ipw_priv *priv, int type, int direct)
James Ketrenosea2b26e2005-08-24 21:25:16 -05006345{
6346 struct ipw_scan_request_ext scan;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006347 int err = 0, scan_type;
6348
6349 if (!(priv->status & STATUS_INIT) ||
6350 (priv->status & STATUS_EXIT_PENDING))
6351 return 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006352
Zhu Yi46441512006-01-24 16:37:59 +08006353 mutex_lock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05006354
Dan Williamsea177302008-06-02 17:51:23 -04006355 if (direct && (priv->direct_scan_ssid_len == 0)) {
6356 IPW_DEBUG_HC("Direct scan requested but no SSID to scan for\n");
6357 priv->status &= ~STATUS_DIRECT_SCAN_PENDING;
6358 goto done;
6359 }
6360
James Ketrenosea2b26e2005-08-24 21:25:16 -05006361 if (priv->status & STATUS_SCANNING) {
Dan Williamsea177302008-06-02 17:51:23 -04006362 IPW_DEBUG_HC("Concurrent scan requested. Queuing.\n");
6363 priv->status |= direct ? STATUS_DIRECT_SCAN_PENDING :
6364 STATUS_SCAN_PENDING;
James Ketrenosb095c382005-08-24 22:04:42 -05006365 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006366 }
6367
James Ketrenosafbf30a2005-08-25 00:05:33 -05006368 if (!(priv->status & STATUS_SCAN_FORCED) &&
6369 priv->status & STATUS_SCAN_ABORTING) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006370 IPW_DEBUG_HC("Scan request while abort pending. Queuing.\n");
Dan Williamsea177302008-06-02 17:51:23 -04006371 priv->status |= direct ? STATUS_DIRECT_SCAN_PENDING :
6372 STATUS_SCAN_PENDING;
James Ketrenosb095c382005-08-24 22:04:42 -05006373 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006374 }
6375
6376 if (priv->status & STATUS_RF_KILL_MASK) {
Dan Williamsea177302008-06-02 17:51:23 -04006377 IPW_DEBUG_HC("Queuing scan due to RF Kill activation\n");
6378 priv->status |= direct ? STATUS_DIRECT_SCAN_PENDING :
6379 STATUS_SCAN_PENDING;
James Ketrenosb095c382005-08-24 22:04:42 -05006380 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006381 }
6382
6383 memset(&scan, 0, sizeof(scan));
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006384 scan.full_scan_index = cpu_to_le32(libipw_get_scans(priv->ieee));
James Ketrenosea2b26e2005-08-24 21:25:16 -05006385
Zhu Yi094c4d22006-08-21 11:39:03 +08006386 if (type == IW_SCAN_TYPE_PASSIVE) {
Helmut Schaa14a4dfe2008-12-10 13:17:26 +01006387 IPW_DEBUG_WX("use passive scanning\n");
6388 scan_type = IPW_SCAN_PASSIVE_FULL_DWELL_SCAN;
Zhu Yi094c4d22006-08-21 11:39:03 +08006389 scan.dwell_time[IPW_SCAN_PASSIVE_FULL_DWELL_SCAN] =
Helmut Schaa14a4dfe2008-12-10 13:17:26 +01006390 cpu_to_le16(ipw_passive_dwell_time(priv));
Zhu Yi094c4d22006-08-21 11:39:03 +08006391 ipw_add_scan_channels(priv, &scan, scan_type);
6392 goto send_request;
6393 }
6394
6395 /* Use active scan by default. */
Helmut Schaa14a4dfe2008-12-10 13:17:26 +01006396 if (priv->config & CFG_SPEED_SCAN)
James Ketrenosb095c382005-08-24 22:04:42 -05006397 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_SCAN] =
Zhu Yi094c4d22006-08-21 11:39:03 +08006398 cpu_to_le16(30);
James Ketrenosb095c382005-08-24 22:04:42 -05006399 else
6400 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_SCAN] =
Zhu Yi094c4d22006-08-21 11:39:03 +08006401 cpu_to_le16(20);
James Ketrenosb095c382005-08-24 22:04:42 -05006402
James Ketrenosa613bff2005-08-24 21:43:11 -05006403 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_AND_DIRECT_SCAN] =
Zhu Yi094c4d22006-08-21 11:39:03 +08006404 cpu_to_le16(20);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006405
Helmut Schaa14a4dfe2008-12-10 13:17:26 +01006406 scan.dwell_time[IPW_SCAN_PASSIVE_FULL_DWELL_SCAN] =
6407 cpu_to_le16(ipw_passive_dwell_time(priv));
Dan Williamsea177302008-06-02 17:51:23 -04006408 scan.dwell_time[IPW_SCAN_ACTIVE_DIRECT_SCAN] = cpu_to_le16(20);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006409
James Ketrenosb095c382005-08-24 22:04:42 -05006410#ifdef CONFIG_IPW2200_MONITOR
James Ketrenosea2b26e2005-08-24 21:25:16 -05006411 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006412 u8 channel;
James Ketrenosb095c382005-08-24 22:04:42 -05006413 u8 band = 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006414
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006415 switch (libipw_is_valid_channel(priv->ieee, priv->channel)) {
6416 case LIBIPW_52GHZ_BAND:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006417 band = (u8) (IPW_A_MODE << 6) | 1;
James Ketrenosb095c382005-08-24 22:04:42 -05006418 channel = priv->channel;
6419 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006420
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006421 case LIBIPW_24GHZ_BAND:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006422 band = (u8) (IPW_B_MODE << 6) | 1;
James Ketrenosb095c382005-08-24 22:04:42 -05006423 channel = priv->channel;
6424 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006425
James Ketrenosb095c382005-08-24 22:04:42 -05006426 default:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006427 band = (u8) (IPW_B_MODE << 6) | 1;
6428 channel = 9;
James Ketrenosb095c382005-08-24 22:04:42 -05006429 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006430 }
6431
James Ketrenosb095c382005-08-24 22:04:42 -05006432 scan.channels_list[0] = band;
6433 scan.channels_list[1] = channel;
6434 ipw_set_scan_type(&scan, 1, IPW_SCAN_PASSIVE_FULL_DWELL_SCAN);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006435
James Ketrenosb095c382005-08-24 22:04:42 -05006436 /* NOTE: The card will sit on this channel for this time
6437 * period. Scan aborts are timing sensitive and frequently
6438 * result in firmware restarts. As such, it is best to
6439 * set a small dwell_time here and just keep re-issuing
6440 * scans. Otherwise fast channel hopping will not actually
6441 * hop channels.
6442 *
6443 * TODO: Move SPEED SCAN support to all modes and bands */
James Ketrenosa613bff2005-08-24 21:43:11 -05006444 scan.dwell_time[IPW_SCAN_PASSIVE_FULL_DWELL_SCAN] =
Zhu Yi094c4d22006-08-21 11:39:03 +08006445 cpu_to_le16(2000);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006446 } else {
James Ketrenosb095c382005-08-24 22:04:42 -05006447#endif /* CONFIG_IPW2200_MONITOR */
Dan Williamsea177302008-06-02 17:51:23 -04006448 /* Honor direct scans first, otherwise if we are roaming make
6449 * this a direct scan for the current network. Finally,
6450 * ensure that every other scan is a fast channel hop scan */
6451 if (direct) {
6452 err = ipw_send_ssid(priv, priv->direct_scan_ssid,
6453 priv->direct_scan_ssid_len);
6454 if (err) {
6455 IPW_DEBUG_HC("Attempt to send SSID command "
6456 "failed\n");
6457 goto done;
6458 }
6459
6460 scan_type = IPW_SCAN_ACTIVE_BROADCAST_AND_DIRECT_SCAN;
6461 } else if ((priv->status & STATUS_ROAMING)
6462 || (!(priv->status & STATUS_ASSOCIATED)
6463 && (priv->config & CFG_STATIC_ESSID)
6464 && (le32_to_cpu(scan.full_scan_index) % 2))) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006465 err = ipw_send_ssid(priv, priv->essid, priv->essid_len);
6466 if (err) {
James Ketrenosb095c382005-08-24 22:04:42 -05006467 IPW_DEBUG_HC("Attempt to send SSID command "
6468 "failed.\n");
6469 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006470 }
6471
6472 scan_type = IPW_SCAN_ACTIVE_BROADCAST_AND_DIRECT_SCAN;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006473 } else
James Ketrenosea2b26e2005-08-24 21:25:16 -05006474 scan_type = IPW_SCAN_ACTIVE_BROADCAST_SCAN;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006475
James Ketrenosafbf30a2005-08-25 00:05:33 -05006476 ipw_add_scan_channels(priv, &scan, scan_type);
James Ketrenosb095c382005-08-24 22:04:42 -05006477#ifdef CONFIG_IPW2200_MONITOR
James Ketrenosea2b26e2005-08-24 21:25:16 -05006478 }
6479#endif
6480
Zhu Yi094c4d22006-08-21 11:39:03 +08006481send_request:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006482 err = ipw_send_scan_request_ext(priv, &scan);
6483 if (err) {
6484 IPW_DEBUG_HC("Sending scan command failed: %08X\n", err);
James Ketrenosb095c382005-08-24 22:04:42 -05006485 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006486 }
6487
6488 priv->status |= STATUS_SCANNING;
Dan Williamsea177302008-06-02 17:51:23 -04006489 if (direct) {
6490 priv->status &= ~STATUS_DIRECT_SCAN_PENDING;
6491 priv->direct_scan_ssid_len = 0;
6492 } else
6493 priv->status &= ~STATUS_SCAN_PENDING;
6494
James Ketrenosafbf30a2005-08-25 00:05:33 -05006495 queue_delayed_work(priv->workqueue, &priv->scan_check,
6496 IPW_SCAN_CHECK_WATCHDOG);
Zhu Yi094c4d22006-08-21 11:39:03 +08006497done:
Zhu Yi46441512006-01-24 16:37:59 +08006498 mutex_unlock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05006499 return err;
James Ketrenosc848d0a2005-08-24 21:56:24 -05006500}
6501
David Howellsc4028952006-11-22 14:57:56 +00006502static void ipw_request_passive_scan(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -05006503{
David Howellsc4028952006-11-22 14:57:56 +00006504 struct ipw_priv *priv =
Dan Williamsea177302008-06-02 17:51:23 -04006505 container_of(work, struct ipw_priv, request_passive_scan.work);
6506 ipw_request_scan_helper(priv, IW_SCAN_TYPE_PASSIVE, 0);
David Howellsc4028952006-11-22 14:57:56 +00006507}
6508
6509static void ipw_request_scan(struct work_struct *work)
6510{
6511 struct ipw_priv *priv =
6512 container_of(work, struct ipw_priv, request_scan.work);
Dan Williamsea177302008-06-02 17:51:23 -04006513 ipw_request_scan_helper(priv, IW_SCAN_TYPE_ACTIVE, 0);
6514}
6515
6516static void ipw_request_direct_scan(struct work_struct *work)
6517{
6518 struct ipw_priv *priv =
6519 container_of(work, struct ipw_priv, request_direct_scan.work);
6520 ipw_request_scan_helper(priv, IW_SCAN_TYPE_ACTIVE, 1);
David Howellsc4028952006-11-22 14:57:56 +00006521}
6522
6523static void ipw_bg_abort_scan(struct work_struct *work)
6524{
6525 struct ipw_priv *priv =
6526 container_of(work, struct ipw_priv, abort_scan);
Zhu Yi46441512006-01-24 16:37:59 +08006527 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00006528 ipw_abort_scan(priv);
Zhu Yi46441512006-01-24 16:37:59 +08006529 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05006530}
6531
James Ketrenosea2b26e2005-08-24 21:25:16 -05006532static int ipw_wpa_enable(struct ipw_priv *priv, int value)
6533{
James Ketrenosb095c382005-08-24 22:04:42 -05006534 /* This is called when wpa_supplicant loads and closes the driver
6535 * interface. */
Hong Liucdd1fa12005-08-31 18:14:27 +08006536 priv->ieee->wpa_enabled = value;
James Ketrenosb095c382005-08-24 22:04:42 -05006537 return 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006538}
6539
James Ketrenosea2b26e2005-08-24 21:25:16 -05006540static int ipw_wpa_set_auth_algs(struct ipw_priv *priv, int value)
6541{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006542 struct libipw_device *ieee = priv->ieee;
6543 struct libipw_security sec = {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006544 .flags = SEC_AUTH_MODE,
6545 };
6546 int ret = 0;
6547
James Ketrenosafbf30a2005-08-25 00:05:33 -05006548 if (value & IW_AUTH_ALG_SHARED_KEY) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006549 sec.auth_mode = WLAN_AUTH_SHARED_KEY;
6550 ieee->open_wep = 0;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006551 } else if (value & IW_AUTH_ALG_OPEN_SYSTEM) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006552 sec.auth_mode = WLAN_AUTH_OPEN;
6553 ieee->open_wep = 1;
Zhu Yi3e234b42006-01-24 16:36:52 +08006554 } else if (value & IW_AUTH_ALG_LEAP) {
6555 sec.auth_mode = WLAN_AUTH_LEAP;
6556 ieee->open_wep = 1;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006557 } else
6558 return -EINVAL;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006559
6560 if (ieee->set_security)
6561 ieee->set_security(ieee->dev, &sec);
6562 else
6563 ret = -EOPNOTSUPP;
6564
6565 return ret;
6566}
6567
Adrian Bunka73e22b2006-01-21 01:39:42 +01006568static void ipw_wpa_assoc_frame(struct ipw_priv *priv, char *wpa_ie,
6569 int wpa_ie_len)
James Ketrenosafbf30a2005-08-25 00:05:33 -05006570{
6571 /* make sure WPA is enabled */
6572 ipw_wpa_enable(priv, 1);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006573}
6574
6575static int ipw_set_rsn_capa(struct ipw_priv *priv,
6576 char *capabilities, int length)
6577{
James Ketrenosafbf30a2005-08-25 00:05:33 -05006578 IPW_DEBUG_HC("HOST_CMD_RSN_CAPABILITIES\n");
6579
Zhu Yi0a7bcf22006-01-24 16:37:28 +08006580 return ipw_send_cmd_pdu(priv, IPW_CMD_RSN_CAPABILITIES, length,
Zhu Yi2638bc32006-01-24 16:37:52 +08006581 capabilities);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006582}
6583
James Ketrenosafbf30a2005-08-25 00:05:33 -05006584/*
6585 * WE-18 support
6586 */
6587
6588/* SIOCSIWGENIE */
6589static int ipw_wx_set_genie(struct net_device *dev,
6590 struct iw_request_info *info,
6591 union iwreq_data *wrqu, char *extra)
6592{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006593 struct ipw_priv *priv = libipw_priv(dev);
6594 struct libipw_device *ieee = priv->ieee;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006595 u8 *buf;
6596 int err = 0;
6597
6598 if (wrqu->data.length > MAX_WPA_IE_LEN ||
6599 (wrqu->data.length && extra == NULL))
6600 return -EINVAL;
6601
James Ketrenosafbf30a2005-08-25 00:05:33 -05006602 if (wrqu->data.length) {
6603 buf = kmalloc(wrqu->data.length, GFP_KERNEL);
6604 if (buf == NULL) {
6605 err = -ENOMEM;
6606 goto out;
6607 }
6608
6609 memcpy(buf, extra, wrqu->data.length);
6610 kfree(ieee->wpa_ie);
6611 ieee->wpa_ie = buf;
6612 ieee->wpa_ie_len = wrqu->data.length;
6613 } else {
6614 kfree(ieee->wpa_ie);
6615 ieee->wpa_ie = NULL;
6616 ieee->wpa_ie_len = 0;
6617 }
6618
6619 ipw_wpa_assoc_frame(priv, ieee->wpa_ie, ieee->wpa_ie_len);
6620 out:
James Ketrenosafbf30a2005-08-25 00:05:33 -05006621 return err;
6622}
6623
6624/* SIOCGIWGENIE */
6625static int ipw_wx_get_genie(struct net_device *dev,
6626 struct iw_request_info *info,
6627 union iwreq_data *wrqu, char *extra)
6628{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006629 struct ipw_priv *priv = libipw_priv(dev);
6630 struct libipw_device *ieee = priv->ieee;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006631 int err = 0;
6632
James Ketrenosafbf30a2005-08-25 00:05:33 -05006633 if (ieee->wpa_ie_len == 0 || ieee->wpa_ie == NULL) {
6634 wrqu->data.length = 0;
6635 goto out;
6636 }
6637
6638 if (wrqu->data.length < ieee->wpa_ie_len) {
6639 err = -E2BIG;
6640 goto out;
6641 }
6642
6643 wrqu->data.length = ieee->wpa_ie_len;
6644 memcpy(extra, ieee->wpa_ie, ieee->wpa_ie_len);
6645
6646 out:
James Ketrenosafbf30a2005-08-25 00:05:33 -05006647 return err;
6648}
6649
Zhu Yi1fbfea52005-08-05 17:22:56 +08006650static int wext_cipher2level(int cipher)
6651{
6652 switch (cipher) {
6653 case IW_AUTH_CIPHER_NONE:
6654 return SEC_LEVEL_0;
6655 case IW_AUTH_CIPHER_WEP40:
6656 case IW_AUTH_CIPHER_WEP104:
6657 return SEC_LEVEL_1;
6658 case IW_AUTH_CIPHER_TKIP:
6659 return SEC_LEVEL_2;
6660 case IW_AUTH_CIPHER_CCMP:
6661 return SEC_LEVEL_3;
6662 default:
6663 return -1;
6664 }
6665}
6666
James Ketrenosafbf30a2005-08-25 00:05:33 -05006667/* SIOCSIWAUTH */
6668static int ipw_wx_set_auth(struct net_device *dev,
6669 struct iw_request_info *info,
6670 union iwreq_data *wrqu, char *extra)
6671{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006672 struct ipw_priv *priv = libipw_priv(dev);
6673 struct libipw_device *ieee = priv->ieee;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006674 struct iw_param *param = &wrqu->param;
John W. Linville274bfb82008-10-29 11:35:05 -04006675 struct lib80211_crypt_data *crypt;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006676 unsigned long flags;
6677 int ret = 0;
6678
6679 switch (param->flags & IW_AUTH_INDEX) {
6680 case IW_AUTH_WPA_VERSION:
Zhu Yi1fbfea52005-08-05 17:22:56 +08006681 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006682 case IW_AUTH_CIPHER_PAIRWISE:
Zhu Yi1fbfea52005-08-05 17:22:56 +08006683 ipw_set_hw_decrypt_unicast(priv,
6684 wext_cipher2level(param->value));
6685 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006686 case IW_AUTH_CIPHER_GROUP:
Zhu Yi1fbfea52005-08-05 17:22:56 +08006687 ipw_set_hw_decrypt_multicast(priv,
6688 wext_cipher2level(param->value));
6689 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006690 case IW_AUTH_KEY_MGMT:
6691 /*
6692 * ipw2200 does not use these parameters
6693 */
6694 break;
6695
6696 case IW_AUTH_TKIP_COUNTERMEASURES:
John W. Linville274bfb82008-10-29 11:35:05 -04006697 crypt = priv->ieee->crypt_info.crypt[priv->ieee->crypt_info.tx_keyidx];
James Ketrenos991d1cc2005-10-13 09:26:48 +00006698 if (!crypt || !crypt->ops->set_flags || !crypt->ops->get_flags)
James Ketrenosafbf30a2005-08-25 00:05:33 -05006699 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006700
6701 flags = crypt->ops->get_flags(crypt->priv);
6702
6703 if (param->value)
6704 flags |= IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
6705 else
6706 flags &= ~IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
6707
6708 crypt->ops->set_flags(flags, crypt->priv);
6709
6710 break;
6711
6712 case IW_AUTH_DROP_UNENCRYPTED:{
6713 /* HACK:
6714 *
6715 * wpa_supplicant calls set_wpa_enabled when the driver
6716 * is loaded and unloaded, regardless of if WPA is being
6717 * used. No other calls are made which can be used to
6718 * determine if encryption will be used or not prior to
6719 * association being expected. If encryption is not being
6720 * used, drop_unencrypted is set to false, else true -- we
6721 * can use this to determine if the CAP_PRIVACY_ON bit should
6722 * be set.
6723 */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006724 struct libipw_security sec = {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006725 .flags = SEC_ENABLED,
6726 .enabled = param->value,
6727 };
6728 priv->ieee->drop_unencrypted = param->value;
6729 /* We only change SEC_LEVEL for open mode. Others
6730 * are set by ipw_wpa_set_encryption.
6731 */
6732 if (!param->value) {
6733 sec.flags |= SEC_LEVEL;
6734 sec.level = SEC_LEVEL_0;
6735 } else {
6736 sec.flags |= SEC_LEVEL;
6737 sec.level = SEC_LEVEL_1;
6738 }
6739 if (priv->ieee->set_security)
6740 priv->ieee->set_security(priv->ieee->dev, &sec);
6741 break;
6742 }
6743
6744 case IW_AUTH_80211_AUTH_ALG:
6745 ret = ipw_wpa_set_auth_algs(priv, param->value);
6746 break;
6747
6748 case IW_AUTH_WPA_ENABLED:
6749 ret = ipw_wpa_enable(priv, param->value);
Zhu Yie3c5a642006-04-13 17:21:13 +08006750 ipw_disassociate(priv);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006751 break;
6752
6753 case IW_AUTH_RX_UNENCRYPTED_EAPOL:
6754 ieee->ieee802_1x = param->value;
6755 break;
6756
James Ketrenosafbf30a2005-08-25 00:05:33 -05006757 case IW_AUTH_PRIVACY_INVOKED:
6758 ieee->privacy_invoked = param->value;
6759 break;
6760
6761 default:
6762 return -EOPNOTSUPP;
6763 }
6764 return ret;
6765}
6766
6767/* SIOCGIWAUTH */
6768static int ipw_wx_get_auth(struct net_device *dev,
6769 struct iw_request_info *info,
6770 union iwreq_data *wrqu, char *extra)
6771{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006772 struct ipw_priv *priv = libipw_priv(dev);
6773 struct libipw_device *ieee = priv->ieee;
John W. Linville274bfb82008-10-29 11:35:05 -04006774 struct lib80211_crypt_data *crypt;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006775 struct iw_param *param = &wrqu->param;
6776 int ret = 0;
6777
6778 switch (param->flags & IW_AUTH_INDEX) {
6779 case IW_AUTH_WPA_VERSION:
6780 case IW_AUTH_CIPHER_PAIRWISE:
6781 case IW_AUTH_CIPHER_GROUP:
6782 case IW_AUTH_KEY_MGMT:
6783 /*
6784 * wpa_supplicant will control these internally
6785 */
6786 ret = -EOPNOTSUPP;
6787 break;
6788
6789 case IW_AUTH_TKIP_COUNTERMEASURES:
John W. Linville274bfb82008-10-29 11:35:05 -04006790 crypt = priv->ieee->crypt_info.crypt[priv->ieee->crypt_info.tx_keyidx];
James Ketrenos991d1cc2005-10-13 09:26:48 +00006791 if (!crypt || !crypt->ops->get_flags)
James Ketrenosafbf30a2005-08-25 00:05:33 -05006792 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006793
6794 param->value = (crypt->ops->get_flags(crypt->priv) &
6795 IEEE80211_CRYPTO_TKIP_COUNTERMEASURES) ? 1 : 0;
6796
6797 break;
6798
6799 case IW_AUTH_DROP_UNENCRYPTED:
6800 param->value = ieee->drop_unencrypted;
6801 break;
6802
6803 case IW_AUTH_80211_AUTH_ALG:
6804 param->value = ieee->sec.auth_mode;
6805 break;
6806
6807 case IW_AUTH_WPA_ENABLED:
6808 param->value = ieee->wpa_enabled;
6809 break;
6810
6811 case IW_AUTH_RX_UNENCRYPTED_EAPOL:
6812 param->value = ieee->ieee802_1x;
6813 break;
6814
6815 case IW_AUTH_ROAMING_CONTROL:
6816 case IW_AUTH_PRIVACY_INVOKED:
6817 param->value = ieee->privacy_invoked;
6818 break;
6819
6820 default:
6821 return -EOPNOTSUPP;
6822 }
6823 return 0;
6824}
6825
6826/* SIOCSIWENCODEEXT */
6827static int ipw_wx_set_encodeext(struct net_device *dev,
6828 struct iw_request_info *info,
6829 union iwreq_data *wrqu, char *extra)
6830{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006831 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006832 struct iw_encode_ext *ext = (struct iw_encode_ext *)extra;
6833
6834 if (hwcrypto) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006835 if (ext->alg == IW_ENCODE_ALG_TKIP) {
Hong Liu567deaf2005-08-31 18:07:22 +08006836 /* IPW HW can't build TKIP MIC,
6837 host decryption still needed */
6838 if (ext->ext_flags & IW_ENCODE_EXT_GROUP_KEY)
6839 priv->ieee->host_mc_decrypt = 1;
6840 else {
6841 priv->ieee->host_encrypt = 0;
6842 priv->ieee->host_encrypt_msdu = 1;
6843 priv->ieee->host_decrypt = 1;
6844 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05006845 } else {
6846 priv->ieee->host_encrypt = 0;
6847 priv->ieee->host_encrypt_msdu = 0;
6848 priv->ieee->host_decrypt = 0;
Hong Liu567deaf2005-08-31 18:07:22 +08006849 priv->ieee->host_mc_decrypt = 0;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006850 }
6851 }
6852
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006853 return libipw_wx_set_encodeext(priv->ieee, info, wrqu, extra);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006854}
6855
6856/* SIOCGIWENCODEEXT */
6857static int ipw_wx_get_encodeext(struct net_device *dev,
6858 struct iw_request_info *info,
6859 union iwreq_data *wrqu, char *extra)
6860{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006861 struct ipw_priv *priv = libipw_priv(dev);
6862 return libipw_wx_get_encodeext(priv->ieee, info, wrqu, extra);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006863}
6864
6865/* SIOCSIWMLME */
6866static int ipw_wx_set_mlme(struct net_device *dev,
6867 struct iw_request_info *info,
6868 union iwreq_data *wrqu, char *extra)
6869{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006870 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006871 struct iw_mlme *mlme = (struct iw_mlme *)extra;
Al Viroe62e1ee2007-12-27 01:36:46 -05006872 __le16 reason;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006873
6874 reason = cpu_to_le16(mlme->reason_code);
6875
6876 switch (mlme->cmd) {
6877 case IW_MLME_DEAUTH:
Pavel Machek67fd6b42006-07-11 15:34:05 +02006878 /* silently ignore */
James Ketrenosafbf30a2005-08-25 00:05:33 -05006879 break;
6880
6881 case IW_MLME_DISASSOC:
6882 ipw_disassociate(priv);
6883 break;
6884
6885 default:
6886 return -EOPNOTSUPP;
6887 }
6888 return 0;
6889}
James Ketrenosea2b26e2005-08-24 21:25:16 -05006890
Zhu Yie43e3c12006-04-13 17:20:45 +08006891#ifdef CONFIG_IPW2200_QOS
James Ketrenosb095c382005-08-24 22:04:42 -05006892
6893/* QoS */
6894/*
6895* get the modulation type of the current network or
6896* the card current mode
6897*/
Adrian Bunk53d0bcf2006-03-04 13:14:31 +01006898static u8 ipw_qos_current_mode(struct ipw_priv * priv)
James Ketrenosb095c382005-08-24 22:04:42 -05006899{
6900 u8 mode = 0;
6901
6902 if (priv->status & STATUS_ASSOCIATED) {
6903 unsigned long flags;
6904
6905 spin_lock_irqsave(&priv->ieee->lock, flags);
6906 mode = priv->assoc_network->mode;
6907 spin_unlock_irqrestore(&priv->ieee->lock, flags);
6908 } else {
6909 mode = priv->ieee->mode;
6910 }
6911 IPW_DEBUG_QOS("QoS network/card mode %d \n", mode);
6912 return mode;
6913}
6914
6915/*
6916* Handle management frame beacon and probe response
6917*/
James Ketrenos3b9990c2005-08-19 13:18:55 -05006918static int ipw_qos_handle_probe_response(struct ipw_priv *priv,
6919 int active_network,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006920 struct libipw_network *network)
James Ketrenosb095c382005-08-24 22:04:42 -05006921{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006922 u32 size = sizeof(struct libipw_qos_parameters);
James Ketrenosb095c382005-08-24 22:04:42 -05006923
James Ketrenosafbf30a2005-08-25 00:05:33 -05006924 if (network->capability & WLAN_CAPABILITY_IBSS)
James Ketrenosb095c382005-08-24 22:04:42 -05006925 network->qos_data.active = network->qos_data.supported;
6926
6927 if (network->flags & NETWORK_HAS_QOS_MASK) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006928 if (active_network &&
6929 (network->flags & NETWORK_HAS_QOS_PARAMETERS))
James Ketrenosb095c382005-08-24 22:04:42 -05006930 network->qos_data.active = network->qos_data.supported;
6931
6932 if ((network->qos_data.active == 1) && (active_network == 1) &&
6933 (network->flags & NETWORK_HAS_QOS_PARAMETERS) &&
6934 (network->qos_data.old_param_count !=
6935 network->qos_data.param_count)) {
6936 network->qos_data.old_param_count =
6937 network->qos_data.param_count;
6938 schedule_work(&priv->qos_activate);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006939 IPW_DEBUG_QOS("QoS parameters change call "
6940 "qos_activate\n");
James Ketrenosb095c382005-08-24 22:04:42 -05006941 }
6942 } else {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006943 if ((priv->ieee->mode == IEEE_B) || (network->mode == IEEE_B))
6944 memcpy(&network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05006945 &def_parameters_CCK, size);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006946 else
6947 memcpy(&network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05006948 &def_parameters_OFDM, size);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006949
James Ketrenosb095c382005-08-24 22:04:42 -05006950 if ((network->qos_data.active == 1) && (active_network == 1)) {
6951 IPW_DEBUG_QOS("QoS was disabled call qos_activate \n");
6952 schedule_work(&priv->qos_activate);
6953 }
6954
6955 network->qos_data.active = 0;
6956 network->qos_data.supported = 0;
6957 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05006958 if ((priv->status & STATUS_ASSOCIATED) &&
6959 (priv->ieee->iw_mode == IW_MODE_ADHOC) && (active_network == 0)) {
6960 if (memcmp(network->bssid, priv->bssid, ETH_ALEN))
John W. Linvillec5d3dce2008-09-30 17:17:26 -04006961 if (network->capability & WLAN_CAPABILITY_IBSS)
James Ketrenosb095c382005-08-24 22:04:42 -05006962 if ((network->ssid_len ==
James Ketrenosafbf30a2005-08-25 00:05:33 -05006963 priv->assoc_network->ssid_len) &&
6964 !memcmp(network->ssid,
6965 priv->assoc_network->ssid,
6966 network->ssid_len)) {
James Ketrenosb095c382005-08-24 22:04:42 -05006967 queue_work(priv->workqueue,
6968 &priv->merge_networks);
6969 }
James Ketrenosb095c382005-08-24 22:04:42 -05006970 }
6971
6972 return 0;
6973}
6974
6975/*
6976* This function set up the firmware to support QoS. It sends
6977* IPW_CMD_QOS_PARAMETERS and IPW_CMD_WME_INFO
6978*/
6979static int ipw_qos_activate(struct ipw_priv *priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006980 struct libipw_qos_data *qos_network_data)
James Ketrenosb095c382005-08-24 22:04:42 -05006981{
6982 int err;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006983 struct libipw_qos_parameters qos_parameters[QOS_QOS_SETS];
6984 struct libipw_qos_parameters *active_one = NULL;
6985 u32 size = sizeof(struct libipw_qos_parameters);
James Ketrenosb095c382005-08-24 22:04:42 -05006986 u32 burst_duration;
6987 int i;
6988 u8 type;
6989
6990 type = ipw_qos_current_mode(priv);
6991
6992 active_one = &(qos_parameters[QOS_PARAM_SET_DEF_CCK]);
6993 memcpy(active_one, priv->qos_data.def_qos_parm_CCK, size);
6994 active_one = &(qos_parameters[QOS_PARAM_SET_DEF_OFDM]);
6995 memcpy(active_one, priv->qos_data.def_qos_parm_OFDM, size);
6996
6997 if (qos_network_data == NULL) {
6998 if (type == IEEE_B) {
6999 IPW_DEBUG_QOS("QoS activate network mode %d\n", type);
7000 active_one = &def_parameters_CCK;
7001 } else
7002 active_one = &def_parameters_OFDM;
7003
James Ketrenosafbf30a2005-08-25 00:05:33 -05007004 memcpy(&qos_parameters[QOS_PARAM_SET_ACTIVE], active_one, size);
James Ketrenosb095c382005-08-24 22:04:42 -05007005 burst_duration = ipw_qos_get_burst_duration(priv);
7006 for (i = 0; i < QOS_QUEUE_NUM; i++)
James Ketrenosafbf30a2005-08-25 00:05:33 -05007007 qos_parameters[QOS_PARAM_SET_ACTIVE].tx_op_limit[i] =
Al Viro8fffc152007-12-27 01:25:40 -05007008 cpu_to_le16(burst_duration);
James Ketrenosafbf30a2005-08-25 00:05:33 -05007009 } else if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
James Ketrenosb095c382005-08-24 22:04:42 -05007010 if (type == IEEE_B) {
7011 IPW_DEBUG_QOS("QoS activate IBSS nework mode %d\n",
7012 type);
7013 if (priv->qos_data.qos_enable == 0)
7014 active_one = &def_parameters_CCK;
7015 else
7016 active_one = priv->qos_data.def_qos_parm_CCK;
7017 } else {
7018 if (priv->qos_data.qos_enable == 0)
7019 active_one = &def_parameters_OFDM;
7020 else
7021 active_one = priv->qos_data.def_qos_parm_OFDM;
7022 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05007023 memcpy(&qos_parameters[QOS_PARAM_SET_ACTIVE], active_one, size);
James Ketrenosb095c382005-08-24 22:04:42 -05007024 } else {
7025 unsigned long flags;
7026 int active;
7027
7028 spin_lock_irqsave(&priv->ieee->lock, flags);
7029 active_one = &(qos_network_data->parameters);
7030 qos_network_data->old_param_count =
7031 qos_network_data->param_count;
James Ketrenosafbf30a2005-08-25 00:05:33 -05007032 memcpy(&qos_parameters[QOS_PARAM_SET_ACTIVE], active_one, size);
James Ketrenosb095c382005-08-24 22:04:42 -05007033 active = qos_network_data->supported;
7034 spin_unlock_irqrestore(&priv->ieee->lock, flags);
7035
7036 if (active == 0) {
7037 burst_duration = ipw_qos_get_burst_duration(priv);
7038 for (i = 0; i < QOS_QUEUE_NUM; i++)
7039 qos_parameters[QOS_PARAM_SET_ACTIVE].
Al Viro8fffc152007-12-27 01:25:40 -05007040 tx_op_limit[i] = cpu_to_le16(burst_duration);
James Ketrenosb095c382005-08-24 22:04:42 -05007041 }
7042 }
7043
7044 IPW_DEBUG_QOS("QoS sending IPW_CMD_QOS_PARAMETERS\n");
James Ketrenosafbf30a2005-08-25 00:05:33 -05007045 err = ipw_send_qos_params_command(priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007046 (struct libipw_qos_parameters *)
James Ketrenosafbf30a2005-08-25 00:05:33 -05007047 &(qos_parameters[0]));
James Ketrenosb095c382005-08-24 22:04:42 -05007048 if (err)
7049 IPW_DEBUG_QOS("QoS IPW_CMD_QOS_PARAMETERS failed\n");
7050
7051 return err;
7052}
7053
7054/*
7055* send IPW_CMD_WME_INFO to the firmware
7056*/
7057static int ipw_qos_set_info_element(struct ipw_priv *priv)
7058{
7059 int ret = 0;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007060 struct libipw_qos_information_element qos_info;
James Ketrenosb095c382005-08-24 22:04:42 -05007061
7062 if (priv == NULL)
7063 return -1;
7064
7065 qos_info.elementID = QOS_ELEMENT_ID;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007066 qos_info.length = sizeof(struct libipw_qos_information_element) - 2;
James Ketrenosb095c382005-08-24 22:04:42 -05007067
7068 qos_info.version = QOS_VERSION_1;
7069 qos_info.ac_info = 0;
7070
7071 memcpy(qos_info.qui, qos_oui, QOS_OUI_LEN);
7072 qos_info.qui_type = QOS_OUI_TYPE;
7073 qos_info.qui_subtype = QOS_OUI_INFO_SUB_TYPE;
7074
7075 ret = ipw_send_qos_info_command(priv, &qos_info);
7076 if (ret != 0) {
7077 IPW_DEBUG_QOS("QoS error calling ipw_send_qos_info_command\n");
7078 }
7079 return ret;
7080}
7081
7082/*
7083* Set the QoS parameter with the association request structure
7084*/
7085static int ipw_qos_association(struct ipw_priv *priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007086 struct libipw_network *network)
James Ketrenosb095c382005-08-24 22:04:42 -05007087{
7088 int err = 0;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007089 struct libipw_qos_data *qos_data = NULL;
7090 struct libipw_qos_data ibss_data = {
James Ketrenosb095c382005-08-24 22:04:42 -05007091 .supported = 1,
7092 .active = 1,
7093 };
7094
7095 switch (priv->ieee->iw_mode) {
7096 case IW_MODE_ADHOC:
Eric Sesterhenn5d9428d2006-04-02 13:52:48 +02007097 BUG_ON(!(network->capability & WLAN_CAPABILITY_IBSS));
James Ketrenosb095c382005-08-24 22:04:42 -05007098
7099 qos_data = &ibss_data;
7100 break;
7101
7102 case IW_MODE_INFRA:
7103 qos_data = &network->qos_data;
7104 break;
7105
7106 default:
7107 BUG();
7108 break;
7109 }
7110
7111 err = ipw_qos_activate(priv, qos_data);
7112 if (err) {
7113 priv->assoc_request.policy_support &= ~HC_QOS_SUPPORT_ASSOC;
7114 return err;
7115 }
7116
7117 if (priv->qos_data.qos_enable && qos_data->supported) {
7118 IPW_DEBUG_QOS("QoS will be enabled for this association\n");
7119 priv->assoc_request.policy_support |= HC_QOS_SUPPORT_ASSOC;
7120 return ipw_qos_set_info_element(priv);
7121 }
7122
7123 return 0;
7124}
7125
7126/*
Matt LaPlante0779bf22006-11-30 05:24:39 +01007127* handling the beaconing responses. if we get different QoS setting
7128* off the network from the associated setting, adjust the QoS
James Ketrenosb095c382005-08-24 22:04:42 -05007129* setting
7130*/
7131static int ipw_qos_association_resp(struct ipw_priv *priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007132 struct libipw_network *network)
James Ketrenosb095c382005-08-24 22:04:42 -05007133{
7134 int ret = 0;
7135 unsigned long flags;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007136 u32 size = sizeof(struct libipw_qos_parameters);
James Ketrenosb095c382005-08-24 22:04:42 -05007137 int set_qos_param = 0;
7138
James Ketrenosafbf30a2005-08-25 00:05:33 -05007139 if ((priv == NULL) || (network == NULL) ||
7140 (priv->assoc_network == NULL))
James Ketrenosb095c382005-08-24 22:04:42 -05007141 return ret;
7142
7143 if (!(priv->status & STATUS_ASSOCIATED))
7144 return ret;
7145
James Ketrenosafbf30a2005-08-25 00:05:33 -05007146 if ((priv->ieee->iw_mode != IW_MODE_INFRA))
James Ketrenosb095c382005-08-24 22:04:42 -05007147 return ret;
James Ketrenosb095c382005-08-24 22:04:42 -05007148
7149 spin_lock_irqsave(&priv->ieee->lock, flags);
7150 if (network->flags & NETWORK_HAS_QOS_PARAMETERS) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007151 memcpy(&priv->assoc_network->qos_data, &network->qos_data,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007152 sizeof(struct libipw_qos_data));
James Ketrenosb095c382005-08-24 22:04:42 -05007153 priv->assoc_network->qos_data.active = 1;
7154 if ((network->qos_data.old_param_count !=
7155 network->qos_data.param_count)) {
7156 set_qos_param = 1;
7157 network->qos_data.old_param_count =
7158 network->qos_data.param_count;
7159 }
7160
7161 } else {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007162 if ((network->mode == IEEE_B) || (priv->ieee->mode == IEEE_B))
7163 memcpy(&priv->assoc_network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05007164 &def_parameters_CCK, size);
James Ketrenosafbf30a2005-08-25 00:05:33 -05007165 else
7166 memcpy(&priv->assoc_network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05007167 &def_parameters_OFDM, size);
James Ketrenosb095c382005-08-24 22:04:42 -05007168 priv->assoc_network->qos_data.active = 0;
7169 priv->assoc_network->qos_data.supported = 0;
7170 set_qos_param = 1;
7171 }
7172
7173 spin_unlock_irqrestore(&priv->ieee->lock, flags);
7174
7175 if (set_qos_param == 1)
7176 schedule_work(&priv->qos_activate);
7177
7178 return ret;
7179}
7180
7181static u32 ipw_qos_get_burst_duration(struct ipw_priv *priv)
7182{
7183 u32 ret = 0;
7184
7185 if ((priv == NULL))
7186 return 0;
7187
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007188 if (!(priv->ieee->modulation & LIBIPW_OFDM_MODULATION))
James Ketrenosb095c382005-08-24 22:04:42 -05007189 ret = priv->qos_data.burst_duration_CCK;
James Ketrenosafbf30a2005-08-25 00:05:33 -05007190 else
James Ketrenosb095c382005-08-24 22:04:42 -05007191 ret = priv->qos_data.burst_duration_OFDM;
James Ketrenosafbf30a2005-08-25 00:05:33 -05007192
James Ketrenosb095c382005-08-24 22:04:42 -05007193 return ret;
7194}
7195
7196/*
7197* Initialize the setting of QoS global
7198*/
7199static void ipw_qos_init(struct ipw_priv *priv, int enable,
7200 int burst_enable, u32 burst_duration_CCK,
7201 u32 burst_duration_OFDM)
7202{
7203 priv->qos_data.qos_enable = enable;
7204
7205 if (priv->qos_data.qos_enable) {
7206 priv->qos_data.def_qos_parm_CCK = &def_qos_parameters_CCK;
7207 priv->qos_data.def_qos_parm_OFDM = &def_qos_parameters_OFDM;
7208 IPW_DEBUG_QOS("QoS is enabled\n");
7209 } else {
7210 priv->qos_data.def_qos_parm_CCK = &def_parameters_CCK;
7211 priv->qos_data.def_qos_parm_OFDM = &def_parameters_OFDM;
7212 IPW_DEBUG_QOS("QoS is not enabled\n");
7213 }
7214
7215 priv->qos_data.burst_enable = burst_enable;
7216
7217 if (burst_enable) {
7218 priv->qos_data.burst_duration_CCK = burst_duration_CCK;
7219 priv->qos_data.burst_duration_OFDM = burst_duration_OFDM;
7220 } else {
7221 priv->qos_data.burst_duration_CCK = 0;
7222 priv->qos_data.burst_duration_OFDM = 0;
7223 }
7224}
7225
7226/*
7227* map the packet priority to the right TX Queue
7228*/
7229static int ipw_get_tx_queue_number(struct ipw_priv *priv, u16 priority)
7230{
7231 if (priority > 7 || !priv->qos_data.qos_enable)
7232 priority = 0;
7233
7234 return from_priority_to_tx_queue[priority] - 1;
7235}
7236
Zhu Yia5cf4fe2006-04-13 17:19:11 +08007237static int ipw_is_qos_active(struct net_device *dev,
7238 struct sk_buff *skb)
James Ketrenosb095c382005-08-24 22:04:42 -05007239{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007240 struct ipw_priv *priv = libipw_priv(dev);
7241 struct libipw_qos_data *qos_data = NULL;
James Ketrenosb095c382005-08-24 22:04:42 -05007242 int active, supported;
Zhu Yia5cf4fe2006-04-13 17:19:11 +08007243 u8 *daddr = skb->data + ETH_ALEN;
7244 int unicast = !is_multicast_ether_addr(daddr);
James Ketrenosb095c382005-08-24 22:04:42 -05007245
7246 if (!(priv->status & STATUS_ASSOCIATED))
7247 return 0;
7248
7249 qos_data = &priv->assoc_network->qos_data;
7250
James Ketrenosb095c382005-08-24 22:04:42 -05007251 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
7252 if (unicast == 0)
7253 qos_data->active = 0;
7254 else
7255 qos_data->active = qos_data->supported;
7256 }
James Ketrenosb095c382005-08-24 22:04:42 -05007257 active = qos_data->active;
7258 supported = qos_data->supported;
James Ketrenosafbf30a2005-08-25 00:05:33 -05007259 IPW_DEBUG_QOS("QoS %d network is QoS active %d supported %d "
7260 "unicast %d\n",
7261 priv->qos_data.qos_enable, active, supported, unicast);
Zhu Yia5cf4fe2006-04-13 17:19:11 +08007262 if (active && priv->qos_data.qos_enable)
7263 return 1;
James Ketrenosb095c382005-08-24 22:04:42 -05007264
Zhu Yia5cf4fe2006-04-13 17:19:11 +08007265 return 0;
7266
7267}
7268/*
7269* add QoS parameter to the TX command
7270*/
7271static int ipw_qos_set_tx_queue_command(struct ipw_priv *priv,
7272 u16 priority,
7273 struct tfd_data *tfd)
7274{
7275 int tx_queue_id = 0;
7276
7277
7278 tx_queue_id = from_priority_to_tx_queue[priority] - 1;
7279 tfd->tx_flags_ext |= DCT_FLAG_EXT_QOS_ENABLED;
7280
7281 if (priv->qos_data.qos_no_ack_mask & (1UL << tx_queue_id)) {
7282 tfd->tx_flags &= ~DCT_FLAG_ACK_REQD;
Zhu Yi851ca262006-08-21 11:37:58 +08007283 tfd->tfd.tfd_26.mchdr.qos_ctrl |= cpu_to_le16(CTRL_QOS_NO_ACK);
James Ketrenosb095c382005-08-24 22:04:42 -05007284 }
Zhu Yia5cf4fe2006-04-13 17:19:11 +08007285 return 0;
James Ketrenosb095c382005-08-24 22:04:42 -05007286}
7287
7288/*
7289* background support to run QoS activate functionality
7290*/
David Howellsc4028952006-11-22 14:57:56 +00007291static void ipw_bg_qos_activate(struct work_struct *work)
James Ketrenosb095c382005-08-24 22:04:42 -05007292{
David Howellsc4028952006-11-22 14:57:56 +00007293 struct ipw_priv *priv =
7294 container_of(work, struct ipw_priv, qos_activate);
James Ketrenosb095c382005-08-24 22:04:42 -05007295
Zhu Yi46441512006-01-24 16:37:59 +08007296 mutex_lock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05007297
7298 if (priv->status & STATUS_ASSOCIATED)
7299 ipw_qos_activate(priv, &(priv->assoc_network->qos_data));
7300
Zhu Yi46441512006-01-24 16:37:59 +08007301 mutex_unlock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05007302}
7303
James Ketrenos3b9990c2005-08-19 13:18:55 -05007304static int ipw_handle_probe_response(struct net_device *dev,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007305 struct libipw_probe_response *resp,
7306 struct libipw_network *network)
James Ketrenosb095c382005-08-24 22:04:42 -05007307{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007308 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos3b9990c2005-08-19 13:18:55 -05007309 int active_network = ((priv->status & STATUS_ASSOCIATED) &&
7310 (network == priv->assoc_network));
James Ketrenosb095c382005-08-24 22:04:42 -05007311
James Ketrenos3b9990c2005-08-19 13:18:55 -05007312 ipw_qos_handle_probe_response(priv, active_network, network);
James Ketrenosb095c382005-08-24 22:04:42 -05007313
James Ketrenos3b9990c2005-08-19 13:18:55 -05007314 return 0;
7315}
James Ketrenosb095c382005-08-24 22:04:42 -05007316
James Ketrenos3b9990c2005-08-19 13:18:55 -05007317static int ipw_handle_beacon(struct net_device *dev,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007318 struct libipw_beacon *resp,
7319 struct libipw_network *network)
James Ketrenos3b9990c2005-08-19 13:18:55 -05007320{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007321 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos3b9990c2005-08-19 13:18:55 -05007322 int active_network = ((priv->status & STATUS_ASSOCIATED) &&
7323 (network == priv->assoc_network));
7324
7325 ipw_qos_handle_probe_response(priv, active_network, network);
7326
7327 return 0;
7328}
7329
7330static int ipw_handle_assoc_response(struct net_device *dev,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007331 struct libipw_assoc_response *resp,
7332 struct libipw_network *network)
James Ketrenos3b9990c2005-08-19 13:18:55 -05007333{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007334 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos3b9990c2005-08-19 13:18:55 -05007335 ipw_qos_association_resp(priv, network);
James Ketrenosb095c382005-08-24 22:04:42 -05007336 return 0;
7337}
7338
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007339static int ipw_send_qos_params_command(struct ipw_priv *priv, struct libipw_qos_parameters
James Ketrenosb095c382005-08-24 22:04:42 -05007340 *qos_param)
7341{
Zhu Yi4e226992006-01-24 16:37:36 +08007342 return ipw_send_cmd_pdu(priv, IPW_CMD_QOS_PARAMETERS,
7343 sizeof(*qos_param) * 3, qos_param);
James Ketrenosb095c382005-08-24 22:04:42 -05007344}
7345
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007346static int ipw_send_qos_info_command(struct ipw_priv *priv, struct libipw_qos_information_element
James Ketrenosb095c382005-08-24 22:04:42 -05007347 *qos_param)
7348{
Zhu Yi4e226992006-01-24 16:37:36 +08007349 return ipw_send_cmd_pdu(priv, IPW_CMD_WME_INFO, sizeof(*qos_param),
7350 qos_param);
James Ketrenosb095c382005-08-24 22:04:42 -05007351}
7352
Zhu Yie43e3c12006-04-13 17:20:45 +08007353#endif /* CONFIG_IPW2200_QOS */
James Ketrenosb095c382005-08-24 22:04:42 -05007354
James Ketrenos43f66a62005-03-25 12:31:53 -06007355static int ipw_associate_network(struct ipw_priv *priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007356 struct libipw_network *network,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007357 struct ipw_supported_rates *rates, int roaming)
James Ketrenos43f66a62005-03-25 12:31:53 -06007358{
7359 int err;
John W. Linville9387b7c2008-09-30 20:59:05 -04007360 DECLARE_SSID_BUF(ssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06007361
7362 if (priv->config & CFG_FIXED_RATE)
James Ketrenosb095c382005-08-24 22:04:42 -05007363 ipw_set_fixed_rate(priv, network->mode);
James Ketrenos43f66a62005-03-25 12:31:53 -06007364
7365 if (!(priv->config & CFG_STATIC_ESSID)) {
Jeff Garzikbf794512005-07-31 13:07:26 -04007366 priv->essid_len = min(network->ssid_len,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007367 (u8) IW_ESSID_MAX_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06007368 memcpy(priv->essid, network->ssid, priv->essid_len);
7369 }
7370
7371 network->last_associate = jiffies;
7372
7373 memset(&priv->assoc_request, 0, sizeof(priv->assoc_request));
7374 priv->assoc_request.channel = network->channel;
Zhu Yi3e234b42006-01-24 16:36:52 +08007375 priv->assoc_request.auth_key = 0;
7376
James Ketrenos43f66a62005-03-25 12:31:53 -06007377 if ((priv->capability & CAP_PRIVACY_ON) &&
Zhu Yi3e234b42006-01-24 16:36:52 +08007378 (priv->ieee->sec.auth_mode == WLAN_AUTH_SHARED_KEY)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06007379 priv->assoc_request.auth_type = AUTH_SHARED_KEY;
James Ketrenosb095c382005-08-24 22:04:42 -05007380 priv->assoc_request.auth_key = priv->ieee->sec.active_key;
7381
Zhu Yi1ba61e02006-02-15 13:00:55 +08007382 if (priv->ieee->sec.level == SEC_LEVEL_1)
James Ketrenosb095c382005-08-24 22:04:42 -05007383 ipw_send_wep_keys(priv, DCW_WEP_KEY_SEC_TYPE_WEP);
Zhu Yi3e234b42006-01-24 16:36:52 +08007384
7385 } else if ((priv->capability & CAP_PRIVACY_ON) &&
7386 (priv->ieee->sec.auth_mode == WLAN_AUTH_LEAP))
7387 priv->assoc_request.auth_type = AUTH_LEAP;
7388 else
James Ketrenos43f66a62005-03-25 12:31:53 -06007389 priv->assoc_request.auth_type = AUTH_OPEN;
James Ketrenos43f66a62005-03-25 12:31:53 -06007390
James Ketrenosa613bff2005-08-24 21:43:11 -05007391 if (priv->ieee->wpa_ie_len) {
Al Viro5b5e8072007-12-27 01:54:06 -05007392 priv->assoc_request.policy_support = cpu_to_le16(0x02); /* RSN active */
James Ketrenosea2b26e2005-08-24 21:25:16 -05007393 ipw_set_rsn_capa(priv, priv->ieee->wpa_ie,
7394 priv->ieee->wpa_ie_len);
7395 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007396
Jeff Garzikbf794512005-07-31 13:07:26 -04007397 /*
7398 * It is valid for our ieee device to support multiple modes, but
7399 * when it comes to associating to a given network we have to choose
James Ketrenos43f66a62005-03-25 12:31:53 -06007400 * just one mode.
7401 */
7402 if (network->mode & priv->ieee->mode & IEEE_A)
7403 priv->assoc_request.ieee_mode = IPW_A_MODE;
7404 else if (network->mode & priv->ieee->mode & IEEE_G)
7405 priv->assoc_request.ieee_mode = IPW_G_MODE;
7406 else if (network->mode & priv->ieee->mode & IEEE_B)
7407 priv->assoc_request.ieee_mode = IPW_B_MODE;
7408
Al Viro5b5e8072007-12-27 01:54:06 -05007409 priv->assoc_request.capability = cpu_to_le16(network->capability);
James Ketrenosea2b26e2005-08-24 21:25:16 -05007410 if ((network->capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
7411 && !(priv->config & CFG_PREAMBLE_LONG)) {
7412 priv->assoc_request.preamble_length = DCT_FLAG_SHORT_PREAMBLE;
7413 } else {
7414 priv->assoc_request.preamble_length = DCT_FLAG_LONG_PREAMBLE;
7415
7416 /* Clear the short preamble if we won't be supporting it */
7417 priv->assoc_request.capability &=
Al Viro5b5e8072007-12-27 01:54:06 -05007418 ~cpu_to_le16(WLAN_CAPABILITY_SHORT_PREAMBLE);
James Ketrenosea2b26e2005-08-24 21:25:16 -05007419 }
7420
James Ketrenosafbf30a2005-08-25 00:05:33 -05007421 /* Clear capability bits that aren't used in Ad Hoc */
7422 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
7423 priv->assoc_request.capability &=
Al Viro5b5e8072007-12-27 01:54:06 -05007424 ~cpu_to_le16(WLAN_CAPABILITY_SHORT_SLOT_TIME);
James Ketrenosafbf30a2005-08-25 00:05:33 -05007425
James Ketrenos43f66a62005-03-25 12:31:53 -06007426 IPW_DEBUG_ASSOC("%sssocation attempt: '%s', channel %d, "
James Ketrenosea2b26e2005-08-24 21:25:16 -05007427 "802.11%c [%d], %s[:%s], enc=%s%s%s%c%c\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06007428 roaming ? "Rea" : "A",
John W. Linville9387b7c2008-09-30 20:59:05 -04007429 print_ssid(ssid, priv->essid, priv->essid_len),
Jeff Garzikbf794512005-07-31 13:07:26 -04007430 network->channel,
7431 ipw_modes[priv->assoc_request.ieee_mode],
7432 rates->num_rates,
James Ketrenosea2b26e2005-08-24 21:25:16 -05007433 (priv->assoc_request.preamble_length ==
7434 DCT_FLAG_LONG_PREAMBLE) ? "long" : "short",
7435 network->capability &
7436 WLAN_CAPABILITY_SHORT_PREAMBLE ? "short" : "long",
James Ketrenos43f66a62005-03-25 12:31:53 -06007437 priv->capability & CAP_PRIVACY_ON ? "on " : "off",
Jeff Garzikbf794512005-07-31 13:07:26 -04007438 priv->capability & CAP_PRIVACY_ON ?
7439 (priv->capability & CAP_SHARED_KEY ? "(shared)" :
James Ketrenos43f66a62005-03-25 12:31:53 -06007440 "(open)") : "",
7441 priv->capability & CAP_PRIVACY_ON ? " key=" : "",
Jeff Garzikbf794512005-07-31 13:07:26 -04007442 priv->capability & CAP_PRIVACY_ON ?
James Ketrenosb095c382005-08-24 22:04:42 -05007443 '1' + priv->ieee->sec.active_key : '.',
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007444 priv->capability & CAP_PRIVACY_ON ? '.' : ' ');
James Ketrenos43f66a62005-03-25 12:31:53 -06007445
Al Viro5b5e8072007-12-27 01:54:06 -05007446 priv->assoc_request.beacon_interval = cpu_to_le16(network->beacon_interval);
James Ketrenos43f66a62005-03-25 12:31:53 -06007447 if ((priv->ieee->iw_mode == IW_MODE_ADHOC) &&
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007448 (network->time_stamp[0] == 0) && (network->time_stamp[1] == 0)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06007449 priv->assoc_request.assoc_type = HC_IBSS_START;
7450 priv->assoc_request.assoc_tsf_msw = 0;
7451 priv->assoc_request.assoc_tsf_lsw = 0;
7452 } else {
7453 if (unlikely(roaming))
7454 priv->assoc_request.assoc_type = HC_REASSOCIATE;
7455 else
7456 priv->assoc_request.assoc_type = HC_ASSOCIATE;
Al Viro5b5e8072007-12-27 01:54:06 -05007457 priv->assoc_request.assoc_tsf_msw = cpu_to_le32(network->time_stamp[1]);
7458 priv->assoc_request.assoc_tsf_lsw = cpu_to_le32(network->time_stamp[0]);
James Ketrenos43f66a62005-03-25 12:31:53 -06007459 }
7460
James Ketrenosafbf30a2005-08-25 00:05:33 -05007461 memcpy(priv->assoc_request.bssid, network->bssid, ETH_ALEN);
James Ketrenos43f66a62005-03-25 12:31:53 -06007462
7463 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
7464 memset(&priv->assoc_request.dest, 0xFF, ETH_ALEN);
Al Viro5b5e8072007-12-27 01:54:06 -05007465 priv->assoc_request.atim_window = cpu_to_le16(network->atim_window);
James Ketrenos43f66a62005-03-25 12:31:53 -06007466 } else {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007467 memcpy(priv->assoc_request.dest, network->bssid, ETH_ALEN);
James Ketrenos43f66a62005-03-25 12:31:53 -06007468 priv->assoc_request.atim_window = 0;
7469 }
7470
Al Viro5b5e8072007-12-27 01:54:06 -05007471 priv->assoc_request.listen_interval = cpu_to_le16(network->listen_interval);
Jeff Garzikbf794512005-07-31 13:07:26 -04007472
James Ketrenos43f66a62005-03-25 12:31:53 -06007473 err = ipw_send_ssid(priv, priv->essid, priv->essid_len);
7474 if (err) {
7475 IPW_DEBUG_HC("Attempt to send SSID command failed.\n");
7476 return err;
7477 }
7478
7479 rates->ieee_mode = priv->assoc_request.ieee_mode;
7480 rates->purpose = IPW_RATE_CONNECT;
7481 ipw_send_supported_rates(priv, rates);
Jeff Garzikbf794512005-07-31 13:07:26 -04007482
James Ketrenos43f66a62005-03-25 12:31:53 -06007483 if (priv->assoc_request.ieee_mode == IPW_G_MODE)
7484 priv->sys_config.dot11g_auto_detection = 1;
7485 else
7486 priv->sys_config.dot11g_auto_detection = 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05007487
7488 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
7489 priv->sys_config.answer_broadcast_ssid_probe = 1;
7490 else
7491 priv->sys_config.answer_broadcast_ssid_probe = 0;
7492
Zhu Yid685b8c2006-04-13 17:20:27 +08007493 err = ipw_send_system_config(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06007494 if (err) {
7495 IPW_DEBUG_HC("Attempt to send sys config command failed.\n");
7496 return err;
7497 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007498
James Ketrenos43f66a62005-03-25 12:31:53 -06007499 IPW_DEBUG_ASSOC("Association sensitivity: %d\n", network->stats.rssi);
James Ketrenosea2b26e2005-08-24 21:25:16 -05007500 err = ipw_set_sensitivity(priv, network->stats.rssi + IPW_RSSI_TO_DBM);
James Ketrenos43f66a62005-03-25 12:31:53 -06007501 if (err) {
7502 IPW_DEBUG_HC("Attempt to send associate command failed.\n");
7503 return err;
7504 }
7505
7506 /*
7507 * If preemption is enabled, it is possible for the association
7508 * to complete before we return from ipw_send_associate. Therefore
7509 * we have to be sure and update our priviate data first.
7510 */
7511 priv->channel = network->channel;
7512 memcpy(priv->bssid, network->bssid, ETH_ALEN);
Jeff Garzikbf794512005-07-31 13:07:26 -04007513 priv->status |= STATUS_ASSOCIATING;
James Ketrenos43f66a62005-03-25 12:31:53 -06007514 priv->status &= ~STATUS_SECURITY_UPDATED;
7515
7516 priv->assoc_network = network;
7517
Zhu Yie43e3c12006-04-13 17:20:45 +08007518#ifdef CONFIG_IPW2200_QOS
James Ketrenosb095c382005-08-24 22:04:42 -05007519 ipw_qos_association(priv, network);
7520#endif
7521
James Ketrenos43f66a62005-03-25 12:31:53 -06007522 err = ipw_send_associate(priv, &priv->assoc_request);
7523 if (err) {
7524 IPW_DEBUG_HC("Attempt to send associate command failed.\n");
7525 return err;
7526 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007527
Johannes Berge1749612008-10-27 15:59:26 -07007528 IPW_DEBUG(IPW_DL_STATE, "associating: '%s' %pM \n",
John W. Linville9387b7c2008-09-30 20:59:05 -04007529 print_ssid(ssid, priv->essid, priv->essid_len),
Johannes Berge1749612008-10-27 15:59:26 -07007530 priv->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06007531
7532 return 0;
7533}
7534
7535static void ipw_roam(void *data)
7536{
7537 struct ipw_priv *priv = data;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007538 struct libipw_network *network = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -06007539 struct ipw_network_match match = {
7540 .network = priv->assoc_network
7541 };
7542
7543 /* The roaming process is as follows:
Jeff Garzikbf794512005-07-31 13:07:26 -04007544 *
7545 * 1. Missed beacon threshold triggers the roaming process by
James Ketrenos43f66a62005-03-25 12:31:53 -06007546 * setting the status ROAM bit and requesting a scan.
7547 * 2. When the scan completes, it schedules the ROAM work
7548 * 3. The ROAM work looks at all of the known networks for one that
7549 * is a better network than the currently associated. If none
7550 * found, the ROAM process is over (ROAM bit cleared)
7551 * 4. If a better network is found, a disassociation request is
7552 * sent.
7553 * 5. When the disassociation completes, the roam work is again
7554 * scheduled. The second time through, the driver is no longer
7555 * associated, and the newly selected network is sent an
Jeff Garzikbf794512005-07-31 13:07:26 -04007556 * association request.
James Ketrenos43f66a62005-03-25 12:31:53 -06007557 * 6. At this point ,the roaming process is complete and the ROAM
7558 * status bit is cleared.
7559 */
7560
7561 /* If we are no longer associated, and the roaming bit is no longer
7562 * set, then we are not actively roaming, so just return */
7563 if (!(priv->status & (STATUS_ASSOCIATED | STATUS_ROAMING)))
7564 return;
Jeff Garzikbf794512005-07-31 13:07:26 -04007565
James Ketrenos43f66a62005-03-25 12:31:53 -06007566 if (priv->status & STATUS_ASSOCIATED) {
Jeff Garzikbf794512005-07-31 13:07:26 -04007567 /* First pass through ROAM process -- look for a better
James Ketrenos43f66a62005-03-25 12:31:53 -06007568 * network */
James Ketrenosa613bff2005-08-24 21:43:11 -05007569 unsigned long flags;
James Ketrenos43f66a62005-03-25 12:31:53 -06007570 u8 rssi = priv->assoc_network->stats.rssi;
7571 priv->assoc_network->stats.rssi = -128;
James Ketrenosa613bff2005-08-24 21:43:11 -05007572 spin_lock_irqsave(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06007573 list_for_each_entry(network, &priv->ieee->network_list, list) {
7574 if (network != priv->assoc_network)
7575 ipw_best_network(priv, &match, network, 1);
7576 }
James Ketrenosa613bff2005-08-24 21:43:11 -05007577 spin_unlock_irqrestore(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06007578 priv->assoc_network->stats.rssi = rssi;
Jeff Garzikbf794512005-07-31 13:07:26 -04007579
James Ketrenos43f66a62005-03-25 12:31:53 -06007580 if (match.network == priv->assoc_network) {
7581 IPW_DEBUG_ASSOC("No better APs in this network to "
7582 "roam to.\n");
7583 priv->status &= ~STATUS_ROAMING;
7584 ipw_debug_config(priv);
7585 return;
7586 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007587
James Ketrenos43f66a62005-03-25 12:31:53 -06007588 ipw_send_disassociate(priv, 1);
7589 priv->assoc_network = match.network;
7590
7591 return;
Jeff Garzikbf794512005-07-31 13:07:26 -04007592 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007593
7594 /* Second pass through ROAM process -- request association */
7595 ipw_compatible_rates(priv, priv->assoc_network, &match.rates);
7596 ipw_associate_network(priv, priv->assoc_network, &match.rates, 1);
7597 priv->status &= ~STATUS_ROAMING;
7598}
7599
David Howellsc4028952006-11-22 14:57:56 +00007600static void ipw_bg_roam(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -05007601{
David Howellsc4028952006-11-22 14:57:56 +00007602 struct ipw_priv *priv =
7603 container_of(work, struct ipw_priv, roam);
Zhu Yi46441512006-01-24 16:37:59 +08007604 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00007605 ipw_roam(priv);
Zhu Yi46441512006-01-24 16:37:59 +08007606 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05007607}
7608
7609static int ipw_associate(void *data)
James Ketrenos43f66a62005-03-25 12:31:53 -06007610{
7611 struct ipw_priv *priv = data;
7612
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007613 struct libipw_network *network = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -06007614 struct ipw_network_match match = {
7615 .network = NULL
7616 };
7617 struct ipw_supported_rates *rates;
7618 struct list_head *element;
James Ketrenosa613bff2005-08-24 21:43:11 -05007619 unsigned long flags;
John W. Linville9387b7c2008-09-30 20:59:05 -04007620 DECLARE_SSID_BUF(ssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06007621
James Ketrenosb095c382005-08-24 22:04:42 -05007622 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
7623 IPW_DEBUG_ASSOC("Not attempting association (monitor mode)\n");
7624 return 0;
7625 }
7626
James Ketrenosc848d0a2005-08-24 21:56:24 -05007627 if (priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007628 IPW_DEBUG_ASSOC("Not attempting association (already in "
7629 "progress)\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05007630 return 0;
7631 }
7632
Hong Liue6324722005-09-14 21:04:15 -05007633 if (priv->status & STATUS_DISASSOCIATING) {
7634 IPW_DEBUG_ASSOC("Not attempting association (in "
7635 "disassociating)\n ");
7636 queue_work(priv->workqueue, &priv->associate);
7637 return 0;
7638 }
7639
James Ketrenosc848d0a2005-08-24 21:56:24 -05007640 if (!ipw_is_init(priv) || (priv->status & STATUS_SCANNING)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007641 IPW_DEBUG_ASSOC("Not attempting association (scanning or not "
7642 "initialized)\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05007643 return 0;
7644 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007645
7646 if (!(priv->config & CFG_ASSOCIATE) &&
Alexey Fisher3e4127f2008-11-06 09:51:16 +01007647 !(priv->config & (CFG_STATIC_ESSID | CFG_STATIC_BSSID))) {
James Ketrenos43f66a62005-03-25 12:31:53 -06007648 IPW_DEBUG_ASSOC("Not attempting association (associate=0)\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05007649 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06007650 }
7651
James Ketrenosa613bff2005-08-24 21:43:11 -05007652 /* Protect our use of the network_list */
7653 spin_lock_irqsave(&priv->ieee->lock, flags);
Jeff Garzikbf794512005-07-31 13:07:26 -04007654 list_for_each_entry(network, &priv->ieee->network_list, list)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007655 ipw_best_network(priv, &match, network, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06007656
7657 network = match.network;
7658 rates = &match.rates;
7659
7660 if (network == NULL &&
7661 priv->ieee->iw_mode == IW_MODE_ADHOC &&
7662 priv->config & CFG_ADHOC_CREATE &&
7663 priv->config & CFG_STATIC_ESSID &&
Dan Williamsa6d4eae2008-05-29 14:38:28 -04007664 priv->config & CFG_STATIC_CHANNEL) {
7665 /* Use oldest network if the free list is empty */
7666 if (list_empty(&priv->ieee->network_free_list)) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007667 struct libipw_network *oldest = NULL;
7668 struct libipw_network *target;
Dan Williamsa6d4eae2008-05-29 14:38:28 -04007669
7670 list_for_each_entry(target, &priv->ieee->network_list, list) {
7671 if ((oldest == NULL) ||
7672 (target->last_scanned < oldest->last_scanned))
7673 oldest = target;
7674 }
7675
7676 /* If there are no more slots, expire the oldest */
7677 list_del(&oldest->list);
7678 target = oldest;
Johannes Berge1749612008-10-27 15:59:26 -07007679 IPW_DEBUG_ASSOC("Expired '%s' (%pM) from "
Dan Williamsa6d4eae2008-05-29 14:38:28 -04007680 "network list.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04007681 print_ssid(ssid, target->ssid,
7682 target->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07007683 target->bssid);
Dan Williamsa6d4eae2008-05-29 14:38:28 -04007684 list_add_tail(&target->list,
7685 &priv->ieee->network_free_list);
7686 }
7687
James Ketrenos43f66a62005-03-25 12:31:53 -06007688 element = priv->ieee->network_free_list.next;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007689 network = list_entry(element, struct libipw_network, list);
James Ketrenos43f66a62005-03-25 12:31:53 -06007690 ipw_adhoc_create(priv, network);
7691 rates = &priv->rates;
7692 list_del(element);
7693 list_add_tail(&network->list, &priv->ieee->network_list);
7694 }
James Ketrenosa613bff2005-08-24 21:43:11 -05007695 spin_unlock_irqrestore(&priv->ieee->lock, flags);
Jeff Garzikbf794512005-07-31 13:07:26 -04007696
James Ketrenos43f66a62005-03-25 12:31:53 -06007697 /* If we reached the end of the list, then we don't have any valid
7698 * matching APs */
7699 if (!network) {
7700 ipw_debug_config(priv);
7701
James Ketrenosb095c382005-08-24 22:04:42 -05007702 if (!(priv->status & STATUS_SCANNING)) {
7703 if (!(priv->config & CFG_SPEED_SCAN))
7704 queue_delayed_work(priv->workqueue,
7705 &priv->request_scan,
7706 SCAN_INTERVAL);
7707 else
David Howellsc4028952006-11-22 14:57:56 +00007708 queue_delayed_work(priv->workqueue,
7709 &priv->request_scan, 0);
James Ketrenosb095c382005-08-24 22:04:42 -05007710 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007711
James Ketrenosc848d0a2005-08-24 21:56:24 -05007712 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06007713 }
7714
7715 ipw_associate_network(priv, network, rates, 0);
James Ketrenosc848d0a2005-08-24 21:56:24 -05007716
7717 return 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06007718}
Jeff Garzikbf794512005-07-31 13:07:26 -04007719
David Howellsc4028952006-11-22 14:57:56 +00007720static void ipw_bg_associate(struct work_struct *work)
James Ketrenos43f66a62005-03-25 12:31:53 -06007721{
David Howellsc4028952006-11-22 14:57:56 +00007722 struct ipw_priv *priv =
7723 container_of(work, struct ipw_priv, associate);
Zhu Yi46441512006-01-24 16:37:59 +08007724 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00007725 ipw_associate(priv);
Zhu Yi46441512006-01-24 16:37:59 +08007726 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06007727}
7728
James Ketrenosb095c382005-08-24 22:04:42 -05007729static void ipw_rebuild_decrypted_skb(struct ipw_priv *priv,
7730 struct sk_buff *skb)
7731{
7732 struct ieee80211_hdr *hdr;
7733 u16 fc;
7734
7735 hdr = (struct ieee80211_hdr *)skb->data;
John W. Linville72118012008-09-30 21:43:03 -04007736 fc = le16_to_cpu(hdr->frame_control);
James Ketrenosb095c382005-08-24 22:04:42 -05007737 if (!(fc & IEEE80211_FCTL_PROTECTED))
7738 return;
7739
7740 fc &= ~IEEE80211_FCTL_PROTECTED;
John W. Linville72118012008-09-30 21:43:03 -04007741 hdr->frame_control = cpu_to_le16(fc);
James Ketrenosb095c382005-08-24 22:04:42 -05007742 switch (priv->ieee->sec.level) {
7743 case SEC_LEVEL_3:
7744 /* Remove CCMP HDR */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007745 memmove(skb->data + LIBIPW_3ADDR_LEN,
7746 skb->data + LIBIPW_3ADDR_LEN + 8,
7747 skb->len - LIBIPW_3ADDR_LEN - 8);
Zhu Yif4ff4972005-09-12 10:48:48 -05007748 skb_trim(skb, skb->len - 16); /* CCMP_HDR_LEN + CCMP_MIC_LEN */
James Ketrenosb095c382005-08-24 22:04:42 -05007749 break;
7750 case SEC_LEVEL_2:
7751 break;
7752 case SEC_LEVEL_1:
7753 /* Remove IV */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007754 memmove(skb->data + LIBIPW_3ADDR_LEN,
7755 skb->data + LIBIPW_3ADDR_LEN + 4,
7756 skb->len - LIBIPW_3ADDR_LEN - 4);
Zhu Yif4ff4972005-09-12 10:48:48 -05007757 skb_trim(skb, skb->len - 8); /* IV + ICV */
James Ketrenosb095c382005-08-24 22:04:42 -05007758 break;
7759 case SEC_LEVEL_0:
7760 break;
7761 default:
7762 printk(KERN_ERR "Unknow security level %d\n",
7763 priv->ieee->sec.level);
7764 break;
7765 }
7766}
7767
7768static void ipw_handle_data_packet(struct ipw_priv *priv,
7769 struct ipw_rx_mem_buffer *rxb,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007770 struct libipw_rx_stats *stats)
James Ketrenos43f66a62005-03-25 12:31:53 -06007771{
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007772 struct net_device *dev = priv->net_dev;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007773 struct libipw_hdr_4addr *hdr;
James Ketrenos43f66a62005-03-25 12:31:53 -06007774 struct ipw_rx_packet *pkt = (struct ipw_rx_packet *)rxb->skb->data;
7775
7776 /* We received data from the HW, so stop the watchdog */
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007777 dev->trans_start = jiffies;
James Ketrenos43f66a62005-03-25 12:31:53 -06007778
Jeff Garzikbf794512005-07-31 13:07:26 -04007779 /* We only process data packets if the
James Ketrenos43f66a62005-03-25 12:31:53 -06007780 * interface is open */
James Ketrenosa613bff2005-08-24 21:43:11 -05007781 if (unlikely((le16_to_cpu(pkt->u.frame.length) + IPW_RX_FRAME_SIZE) >
James Ketrenos43f66a62005-03-25 12:31:53 -06007782 skb_tailroom(rxb->skb))) {
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007783 dev->stats.rx_errors++;
James Ketrenos43f66a62005-03-25 12:31:53 -06007784 priv->wstats.discard.misc++;
7785 IPW_DEBUG_DROP("Corruption detected! Oh no!\n");
7786 return;
7787 } else if (unlikely(!netif_running(priv->net_dev))) {
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007788 dev->stats.rx_dropped++;
James Ketrenos43f66a62005-03-25 12:31:53 -06007789 priv->wstats.discard.misc++;
7790 IPW_DEBUG_DROP("Dropping packet while interface is not up.\n");
7791 return;
7792 }
7793
7794 /* Advance skb->data to the start of the actual payload */
Jiri Bencaaa4d302005-06-07 14:58:41 +02007795 skb_reserve(rxb->skb, offsetof(struct ipw_rx_packet, u.frame.data));
James Ketrenos43f66a62005-03-25 12:31:53 -06007796
7797 /* Set the size of the skb to the size of the frame */
James Ketrenosa613bff2005-08-24 21:43:11 -05007798 skb_put(rxb->skb, le16_to_cpu(pkt->u.frame.length));
James Ketrenos43f66a62005-03-25 12:31:53 -06007799
7800 IPW_DEBUG_RX("Rx packet of %d bytes.\n", rxb->skb->len);
7801
James Ketrenosb095c382005-08-24 22:04:42 -05007802 /* HW decrypt will not clear the WEP bit, MIC, PN, etc. */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007803 hdr = (struct libipw_hdr_4addr *)rxb->skb->data;
Hong Liu567deaf2005-08-31 18:07:22 +08007804 if (priv->ieee->iw_mode != IW_MODE_MONITOR &&
Stephen Hemminger3c190652006-01-03 15:27:38 -08007805 (is_multicast_ether_addr(hdr->addr1) ?
Hong Liu567deaf2005-08-31 18:07:22 +08007806 !priv->ieee->host_mc_decrypt : !priv->ieee->host_decrypt))
James Ketrenosb095c382005-08-24 22:04:42 -05007807 ipw_rebuild_decrypted_skb(priv, rxb->skb);
7808
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007809 if (!libipw_rx(priv->ieee, rxb->skb, stats))
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007810 dev->stats.rx_errors++;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007811 else { /* libipw_rx succeeded, so it now owns the SKB */
James Ketrenos43f66a62005-03-25 12:31:53 -06007812 rxb->skb = NULL;
James Ketrenosb095c382005-08-24 22:04:42 -05007813 __ipw_led_activity_on(priv);
James Ketrenosa613bff2005-08-24 21:43:11 -05007814 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007815}
7816
Zhu Yi459d4082006-04-13 17:21:00 +08007817#ifdef CONFIG_IPW2200_RADIOTAP
Mike Kershaw24a47db2005-08-26 00:41:54 -05007818static void ipw_handle_data_packet_monitor(struct ipw_priv *priv,
7819 struct ipw_rx_mem_buffer *rxb,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007820 struct libipw_rx_stats *stats)
Mike Kershaw24a47db2005-08-26 00:41:54 -05007821{
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007822 struct net_device *dev = priv->net_dev;
Mike Kershaw24a47db2005-08-26 00:41:54 -05007823 struct ipw_rx_packet *pkt = (struct ipw_rx_packet *)rxb->skb->data;
7824 struct ipw_rx_frame *frame = &pkt->u.frame;
7825
7826 /* initial pull of some data */
7827 u16 received_channel = frame->received_channel;
7828 u8 antennaAndPhy = frame->antennaAndPhy;
7829 s8 antsignal = frame->rssi_dbm - IPW_RSSI_TO_DBM; /* call it signed anyhow */
7830 u16 pktrate = frame->rate;
7831
7832 /* Magic struct that slots into the radiotap header -- no reason
7833 * to build this manually element by element, we can write it much
7834 * more efficiently than we can parse it. ORDER MATTERS HERE */
Zhu Yid685b8c2006-04-13 17:20:27 +08007835 struct ipw_rt_hdr *ipw_rt;
Mike Kershaw24a47db2005-08-26 00:41:54 -05007836
7837 short len = le16_to_cpu(pkt->u.frame.length);
7838
7839 /* We received data from the HW, so stop the watchdog */
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007840 dev->trans_start = jiffies;
Mike Kershaw24a47db2005-08-26 00:41:54 -05007841
7842 /* We only process data packets if the
7843 * interface is open */
7844 if (unlikely((le16_to_cpu(pkt->u.frame.length) + IPW_RX_FRAME_SIZE) >
7845 skb_tailroom(rxb->skb))) {
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007846 dev->stats.rx_errors++;
Mike Kershaw24a47db2005-08-26 00:41:54 -05007847 priv->wstats.discard.misc++;
7848 IPW_DEBUG_DROP("Corruption detected! Oh no!\n");
7849 return;
7850 } else if (unlikely(!netif_running(priv->net_dev))) {
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007851 dev->stats.rx_dropped++;
Mike Kershaw24a47db2005-08-26 00:41:54 -05007852 priv->wstats.discard.misc++;
7853 IPW_DEBUG_DROP("Dropping packet while interface is not up.\n");
7854 return;
7855 }
7856
7857 /* Libpcap 0.9.3+ can handle variable length radiotap, so we'll use
7858 * that now */
7859 if (len > IPW_RX_BUF_SIZE - sizeof(struct ipw_rt_hdr)) {
7860 /* FIXME: Should alloc bigger skb instead */
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007861 dev->stats.rx_dropped++;
Mike Kershaw24a47db2005-08-26 00:41:54 -05007862 priv->wstats.discard.misc++;
7863 IPW_DEBUG_DROP("Dropping too large packet in monitor\n");
7864 return;
7865 }
7866
7867 /* copy the frame itself */
7868 memmove(rxb->skb->data + sizeof(struct ipw_rt_hdr),
7869 rxb->skb->data + IPW_RX_FRAME_SIZE, len);
7870
Mike Kershaw24a47db2005-08-26 00:41:54 -05007871 ipw_rt = (struct ipw_rt_hdr *)rxb->skb->data;
7872
7873 ipw_rt->rt_hdr.it_version = PKTHDR_RADIOTAP_VERSION;
7874 ipw_rt->rt_hdr.it_pad = 0; /* always good to zero */
Al Viro743b84d2007-12-27 01:43:16 -05007875 ipw_rt->rt_hdr.it_len = cpu_to_le16(sizeof(struct ipw_rt_hdr)); /* total header+data */
Mike Kershaw24a47db2005-08-26 00:41:54 -05007876
7877 /* Big bitfield of all the fields we provide in radiotap */
Al Viro743b84d2007-12-27 01:43:16 -05007878 ipw_rt->rt_hdr.it_present = cpu_to_le32(
7879 (1 << IEEE80211_RADIOTAP_TSFT) |
Zhu Yi4b1f8a92006-12-05 14:42:14 +08007880 (1 << IEEE80211_RADIOTAP_FLAGS) |
Mike Kershaw24a47db2005-08-26 00:41:54 -05007881 (1 << IEEE80211_RADIOTAP_RATE) |
7882 (1 << IEEE80211_RADIOTAP_CHANNEL) |
7883 (1 << IEEE80211_RADIOTAP_DBM_ANTSIGNAL) |
Zhu Yid685b8c2006-04-13 17:20:27 +08007884 (1 << IEEE80211_RADIOTAP_DBM_ANTNOISE) |
Mike Kershaw24a47db2005-08-26 00:41:54 -05007885 (1 << IEEE80211_RADIOTAP_ANTENNA));
7886
7887 /* Zero the flags, we'll add to them as we go */
7888 ipw_rt->rt_flags = 0;
Zhu Yi4b1f8a92006-12-05 14:42:14 +08007889 ipw_rt->rt_tsf = (u64)(frame->parent_tsf[3] << 24 |
7890 frame->parent_tsf[2] << 16 |
7891 frame->parent_tsf[1] << 8 |
7892 frame->parent_tsf[0]);
Mike Kershaw24a47db2005-08-26 00:41:54 -05007893
7894 /* Convert signal to DBM */
7895 ipw_rt->rt_dbmsignal = antsignal;
Reinette Chatre21f8a732009-08-18 10:25:05 -07007896 ipw_rt->rt_dbmnoise = (s8) le16_to_cpu(frame->noise);
Mike Kershaw24a47db2005-08-26 00:41:54 -05007897
7898 /* Convert the channel data and set the flags */
7899 ipw_rt->rt_channel = cpu_to_le16(ieee80211chan2mhz(received_channel));
7900 if (received_channel > 14) { /* 802.11a */
7901 ipw_rt->rt_chbitmask =
7902 cpu_to_le16((IEEE80211_CHAN_OFDM | IEEE80211_CHAN_5GHZ));
7903 } else if (antennaAndPhy & 32) { /* 802.11b */
7904 ipw_rt->rt_chbitmask =
7905 cpu_to_le16((IEEE80211_CHAN_CCK | IEEE80211_CHAN_2GHZ));
7906 } else { /* 802.11g */
7907 ipw_rt->rt_chbitmask =
Al Viro472caf82007-12-27 01:50:54 -05007908 cpu_to_le16(IEEE80211_CHAN_OFDM | IEEE80211_CHAN_2GHZ);
Mike Kershaw24a47db2005-08-26 00:41:54 -05007909 }
7910
7911 /* set the rate in multiples of 500k/s */
7912 switch (pktrate) {
7913 case IPW_TX_RATE_1MB:
7914 ipw_rt->rt_rate = 2;
7915 break;
7916 case IPW_TX_RATE_2MB:
7917 ipw_rt->rt_rate = 4;
7918 break;
7919 case IPW_TX_RATE_5MB:
7920 ipw_rt->rt_rate = 10;
7921 break;
7922 case IPW_TX_RATE_6MB:
7923 ipw_rt->rt_rate = 12;
7924 break;
7925 case IPW_TX_RATE_9MB:
7926 ipw_rt->rt_rate = 18;
7927 break;
7928 case IPW_TX_RATE_11MB:
7929 ipw_rt->rt_rate = 22;
7930 break;
7931 case IPW_TX_RATE_12MB:
7932 ipw_rt->rt_rate = 24;
7933 break;
7934 case IPW_TX_RATE_18MB:
7935 ipw_rt->rt_rate = 36;
7936 break;
7937 case IPW_TX_RATE_24MB:
7938 ipw_rt->rt_rate = 48;
7939 break;
7940 case IPW_TX_RATE_36MB:
7941 ipw_rt->rt_rate = 72;
7942 break;
7943 case IPW_TX_RATE_48MB:
7944 ipw_rt->rt_rate = 96;
7945 break;
7946 case IPW_TX_RATE_54MB:
7947 ipw_rt->rt_rate = 108;
7948 break;
7949 default:
7950 ipw_rt->rt_rate = 0;
7951 break;
7952 }
7953
7954 /* antenna number */
7955 ipw_rt->rt_antenna = (antennaAndPhy & 3); /* Is this right? */
7956
7957 /* set the preamble flag if we have it */
7958 if ((antennaAndPhy & 64))
7959 ipw_rt->rt_flags |= IEEE80211_RADIOTAP_F_SHORTPRE;
7960
7961 /* Set the size of the skb to the size of the frame */
7962 skb_put(rxb->skb, len + sizeof(struct ipw_rt_hdr));
James Ketrenos43f66a62005-03-25 12:31:53 -06007963
7964 IPW_DEBUG_RX("Rx packet of %d bytes.\n", rxb->skb->len);
7965
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007966 if (!libipw_rx(priv->ieee, rxb->skb, stats))
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007967 dev->stats.rx_errors++;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007968 else { /* libipw_rx succeeded, so it now owns the SKB */
James Ketrenos43f66a62005-03-25 12:31:53 -06007969 rxb->skb = NULL;
Mike Kershaw24a47db2005-08-26 00:41:54 -05007970 /* no LED during capture */
7971 }
7972}
7973#endif
7974
Zhu Yid685b8c2006-04-13 17:20:27 +08007975#ifdef CONFIG_IPW2200_PROMISCUOUS
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007976#define libipw_is_probe_response(fc) \
Zhu Yid685b8c2006-04-13 17:20:27 +08007977 ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT && \
7978 (fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_PROBE_RESP )
7979
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007980#define libipw_is_management(fc) \
Zhu Yid685b8c2006-04-13 17:20:27 +08007981 ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT)
7982
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007983#define libipw_is_control(fc) \
Zhu Yid685b8c2006-04-13 17:20:27 +08007984 ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_CTL)
7985
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007986#define libipw_is_data(fc) \
Zhu Yid685b8c2006-04-13 17:20:27 +08007987 ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA)
7988
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007989#define libipw_is_assoc_request(fc) \
Zhu Yid685b8c2006-04-13 17:20:27 +08007990 ((fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_ASSOC_REQ)
7991
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007992#define libipw_is_reassoc_request(fc) \
Zhu Yid685b8c2006-04-13 17:20:27 +08007993 ((fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_REASSOC_REQ)
7994
7995static void ipw_handle_promiscuous_rx(struct ipw_priv *priv,
7996 struct ipw_rx_mem_buffer *rxb,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007997 struct libipw_rx_stats *stats)
Zhu Yid685b8c2006-04-13 17:20:27 +08007998{
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007999 struct net_device *dev = priv->prom_net_dev;
Zhu Yid685b8c2006-04-13 17:20:27 +08008000 struct ipw_rx_packet *pkt = (struct ipw_rx_packet *)rxb->skb->data;
8001 struct ipw_rx_frame *frame = &pkt->u.frame;
8002 struct ipw_rt_hdr *ipw_rt;
8003
8004 /* First cache any information we need before we overwrite
8005 * the information provided in the skb from the hardware */
8006 struct ieee80211_hdr *hdr;
8007 u16 channel = frame->received_channel;
8008 u8 phy_flags = frame->antennaAndPhy;
8009 s8 signal = frame->rssi_dbm - IPW_RSSI_TO_DBM;
Reinette Chatre21f8a732009-08-18 10:25:05 -07008010 s8 noise = (s8) le16_to_cpu(frame->noise);
Zhu Yid685b8c2006-04-13 17:20:27 +08008011 u8 rate = frame->rate;
8012 short len = le16_to_cpu(pkt->u.frame.length);
Zhu Yid685b8c2006-04-13 17:20:27 +08008013 struct sk_buff *skb;
8014 int hdr_only = 0;
8015 u16 filter = priv->prom_priv->filter;
8016
8017 /* If the filter is set to not include Rx frames then return */
8018 if (filter & IPW_PROM_NO_RX)
8019 return;
8020
Zhu Yid685b8c2006-04-13 17:20:27 +08008021 /* We received data from the HW, so stop the watchdog */
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00008022 dev->trans_start = jiffies;
Zhu Yid685b8c2006-04-13 17:20:27 +08008023
8024 if (unlikely((len + IPW_RX_FRAME_SIZE) > skb_tailroom(rxb->skb))) {
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00008025 dev->stats.rx_errors++;
Zhu Yid685b8c2006-04-13 17:20:27 +08008026 IPW_DEBUG_DROP("Corruption detected! Oh no!\n");
8027 return;
8028 }
8029
8030 /* We only process data packets if the interface is open */
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00008031 if (unlikely(!netif_running(dev))) {
8032 dev->stats.rx_dropped++;
Zhu Yid685b8c2006-04-13 17:20:27 +08008033 IPW_DEBUG_DROP("Dropping packet while interface is not up.\n");
8034 return;
8035 }
8036
8037 /* Libpcap 0.9.3+ can handle variable length radiotap, so we'll use
8038 * that now */
8039 if (len > IPW_RX_BUF_SIZE - sizeof(struct ipw_rt_hdr)) {
8040 /* FIXME: Should alloc bigger skb instead */
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00008041 dev->stats.rx_dropped++;
Zhu Yid685b8c2006-04-13 17:20:27 +08008042 IPW_DEBUG_DROP("Dropping too large packet in monitor\n");
8043 return;
8044 }
8045
8046 hdr = (void *)rxb->skb->data + IPW_RX_FRAME_SIZE;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008047 if (libipw_is_management(le16_to_cpu(hdr->frame_control))) {
Zhu Yid685b8c2006-04-13 17:20:27 +08008048 if (filter & IPW_PROM_NO_MGMT)
8049 return;
8050 if (filter & IPW_PROM_MGMT_HEADER_ONLY)
8051 hdr_only = 1;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008052 } else if (libipw_is_control(le16_to_cpu(hdr->frame_control))) {
Zhu Yid685b8c2006-04-13 17:20:27 +08008053 if (filter & IPW_PROM_NO_CTL)
8054 return;
8055 if (filter & IPW_PROM_CTL_HEADER_ONLY)
8056 hdr_only = 1;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008057 } else if (libipw_is_data(le16_to_cpu(hdr->frame_control))) {
Zhu Yid685b8c2006-04-13 17:20:27 +08008058 if (filter & IPW_PROM_NO_DATA)
8059 return;
8060 if (filter & IPW_PROM_DATA_HEADER_ONLY)
8061 hdr_only = 1;
8062 }
8063
8064 /* Copy the SKB since this is for the promiscuous side */
8065 skb = skb_copy(rxb->skb, GFP_ATOMIC);
8066 if (skb == NULL) {
8067 IPW_ERROR("skb_clone failed for promiscuous copy.\n");
8068 return;
8069 }
8070
8071 /* copy the frame data to write after where the radiotap header goes */
8072 ipw_rt = (void *)skb->data;
8073
8074 if (hdr_only)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008075 len = libipw_get_hdrlen(le16_to_cpu(hdr->frame_control));
Zhu Yid685b8c2006-04-13 17:20:27 +08008076
8077 memcpy(ipw_rt->payload, hdr, len);
8078
Zhu Yid685b8c2006-04-13 17:20:27 +08008079 ipw_rt->rt_hdr.it_version = PKTHDR_RADIOTAP_VERSION;
8080 ipw_rt->rt_hdr.it_pad = 0; /* always good to zero */
Al Viro743b84d2007-12-27 01:43:16 -05008081 ipw_rt->rt_hdr.it_len = cpu_to_le16(sizeof(*ipw_rt)); /* total header+data */
Zhu Yid685b8c2006-04-13 17:20:27 +08008082
8083 /* Set the size of the skb to the size of the frame */
Al Viro743b84d2007-12-27 01:43:16 -05008084 skb_put(skb, sizeof(*ipw_rt) + len);
Zhu Yid685b8c2006-04-13 17:20:27 +08008085
8086 /* Big bitfield of all the fields we provide in radiotap */
Al Viro743b84d2007-12-27 01:43:16 -05008087 ipw_rt->rt_hdr.it_present = cpu_to_le32(
8088 (1 << IEEE80211_RADIOTAP_TSFT) |
Zhu Yi4b1f8a92006-12-05 14:42:14 +08008089 (1 << IEEE80211_RADIOTAP_FLAGS) |
Zhu Yid685b8c2006-04-13 17:20:27 +08008090 (1 << IEEE80211_RADIOTAP_RATE) |
8091 (1 << IEEE80211_RADIOTAP_CHANNEL) |
8092 (1 << IEEE80211_RADIOTAP_DBM_ANTSIGNAL) |
8093 (1 << IEEE80211_RADIOTAP_DBM_ANTNOISE) |
8094 (1 << IEEE80211_RADIOTAP_ANTENNA));
8095
8096 /* Zero the flags, we'll add to them as we go */
8097 ipw_rt->rt_flags = 0;
Zhu Yi4b1f8a92006-12-05 14:42:14 +08008098 ipw_rt->rt_tsf = (u64)(frame->parent_tsf[3] << 24 |
8099 frame->parent_tsf[2] << 16 |
8100 frame->parent_tsf[1] << 8 |
8101 frame->parent_tsf[0]);
Zhu Yid685b8c2006-04-13 17:20:27 +08008102
8103 /* Convert to DBM */
8104 ipw_rt->rt_dbmsignal = signal;
8105 ipw_rt->rt_dbmnoise = noise;
8106
8107 /* Convert the channel data and set the flags */
8108 ipw_rt->rt_channel = cpu_to_le16(ieee80211chan2mhz(channel));
8109 if (channel > 14) { /* 802.11a */
8110 ipw_rt->rt_chbitmask =
8111 cpu_to_le16((IEEE80211_CHAN_OFDM | IEEE80211_CHAN_5GHZ));
8112 } else if (phy_flags & (1 << 5)) { /* 802.11b */
8113 ipw_rt->rt_chbitmask =
8114 cpu_to_le16((IEEE80211_CHAN_CCK | IEEE80211_CHAN_2GHZ));
8115 } else { /* 802.11g */
8116 ipw_rt->rt_chbitmask =
Al Viro472caf82007-12-27 01:50:54 -05008117 cpu_to_le16(IEEE80211_CHAN_OFDM | IEEE80211_CHAN_2GHZ);
Zhu Yid685b8c2006-04-13 17:20:27 +08008118 }
8119
8120 /* set the rate in multiples of 500k/s */
8121 switch (rate) {
8122 case IPW_TX_RATE_1MB:
8123 ipw_rt->rt_rate = 2;
8124 break;
8125 case IPW_TX_RATE_2MB:
8126 ipw_rt->rt_rate = 4;
8127 break;
8128 case IPW_TX_RATE_5MB:
8129 ipw_rt->rt_rate = 10;
8130 break;
8131 case IPW_TX_RATE_6MB:
8132 ipw_rt->rt_rate = 12;
8133 break;
8134 case IPW_TX_RATE_9MB:
8135 ipw_rt->rt_rate = 18;
8136 break;
8137 case IPW_TX_RATE_11MB:
8138 ipw_rt->rt_rate = 22;
8139 break;
8140 case IPW_TX_RATE_12MB:
8141 ipw_rt->rt_rate = 24;
8142 break;
8143 case IPW_TX_RATE_18MB:
8144 ipw_rt->rt_rate = 36;
8145 break;
8146 case IPW_TX_RATE_24MB:
8147 ipw_rt->rt_rate = 48;
8148 break;
8149 case IPW_TX_RATE_36MB:
8150 ipw_rt->rt_rate = 72;
8151 break;
8152 case IPW_TX_RATE_48MB:
8153 ipw_rt->rt_rate = 96;
8154 break;
8155 case IPW_TX_RATE_54MB:
8156 ipw_rt->rt_rate = 108;
8157 break;
8158 default:
8159 ipw_rt->rt_rate = 0;
8160 break;
8161 }
8162
8163 /* antenna number */
8164 ipw_rt->rt_antenna = (phy_flags & 3);
8165
8166 /* set the preamble flag if we have it */
8167 if (phy_flags & (1 << 6))
8168 ipw_rt->rt_flags |= IEEE80211_RADIOTAP_F_SHORTPRE;
8169
8170 IPW_DEBUG_RX("Rx packet of %d bytes.\n", skb->len);
8171
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008172 if (!libipw_rx(priv->prom_priv->ieee, skb, stats)) {
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00008173 dev->stats.rx_errors++;
Zhu Yid685b8c2006-04-13 17:20:27 +08008174 dev_kfree_skb_any(skb);
8175 }
8176}
8177#endif
8178
Arjan van de Ven858119e2006-01-14 13:20:43 -08008179static int is_network_packet(struct ipw_priv *priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008180 struct libipw_hdr_4addr *header)
James Ketrenosea2b26e2005-08-24 21:25:16 -05008181{
8182 /* Filter incoming packets to determine if they are targetted toward
8183 * this network, discarding packets coming from ourselves */
8184 switch (priv->ieee->iw_mode) {
James Ketrenosa613bff2005-08-24 21:43:11 -05008185 case IW_MODE_ADHOC: /* Header: Dest. | Source | BSSID */
James Ketrenosc848d0a2005-08-24 21:56:24 -05008186 /* packets from our adapter are dropped (echo) */
8187 if (!memcmp(header->addr2, priv->net_dev->dev_addr, ETH_ALEN))
8188 return 0;
8189
Peter Jones90700fd2005-08-26 16:51:06 -05008190 /* {broad,multi}cast packets to our BSSID go through */
Stephen Hemminger3c190652006-01-03 15:27:38 -08008191 if (is_multicast_ether_addr(header->addr1))
James Ketrenosea2b26e2005-08-24 21:25:16 -05008192 return !memcmp(header->addr3, priv->bssid, ETH_ALEN);
James Ketrenosa613bff2005-08-24 21:43:11 -05008193
8194 /* packets to our adapter go through */
8195 return !memcmp(header->addr1, priv->net_dev->dev_addr,
8196 ETH_ALEN);
James Ketrenosa613bff2005-08-24 21:43:11 -05008197
Peter Jones90700fd2005-08-26 16:51:06 -05008198 case IW_MODE_INFRA: /* Header: Dest. | BSSID | Source */
James Ketrenosc848d0a2005-08-24 21:56:24 -05008199 /* packets from our adapter are dropped (echo) */
8200 if (!memcmp(header->addr3, priv->net_dev->dev_addr, ETH_ALEN))
8201 return 0;
8202
Peter Jones90700fd2005-08-26 16:51:06 -05008203 /* {broad,multi}cast packets to our BSS go through */
Stephen Hemminger3c190652006-01-03 15:27:38 -08008204 if (is_multicast_ether_addr(header->addr1))
James Ketrenosa613bff2005-08-24 21:43:11 -05008205 return !memcmp(header->addr2, priv->bssid, ETH_ALEN);
8206
8207 /* packets to our adapter go through */
8208 return !memcmp(header->addr1, priv->net_dev->dev_addr,
8209 ETH_ALEN);
James Ketrenosea2b26e2005-08-24 21:25:16 -05008210 }
James Ketrenosa613bff2005-08-24 21:43:11 -05008211
James Ketrenosea2b26e2005-08-24 21:25:16 -05008212 return 1;
8213}
8214
James Ketrenosafbf30a2005-08-25 00:05:33 -05008215#define IPW_PACKET_RETRY_TIME HZ
8216
Arjan van de Ven858119e2006-01-14 13:20:43 -08008217static int is_duplicate_packet(struct ipw_priv *priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008218 struct libipw_hdr_4addr *header)
James Ketrenosafbf30a2005-08-25 00:05:33 -05008219{
James Ketrenosafbf30a2005-08-25 00:05:33 -05008220 u16 sc = le16_to_cpu(header->seq_ctl);
8221 u16 seq = WLAN_GET_SEQ_SEQ(sc);
8222 u16 frag = WLAN_GET_SEQ_FRAG(sc);
8223 u16 *last_seq, *last_frag;
8224 unsigned long *last_time;
8225
8226 switch (priv->ieee->iw_mode) {
8227 case IW_MODE_ADHOC:
8228 {
8229 struct list_head *p;
8230 struct ipw_ibss_seq *entry = NULL;
8231 u8 *mac = header->addr2;
8232 int index = mac[5] % IPW_IBSS_MAC_HASH_SIZE;
8233
8234 __list_for_each(p, &priv->ibss_mac_hash[index]) {
8235 entry =
8236 list_entry(p, struct ipw_ibss_seq, list);
8237 if (!memcmp(entry->mac, mac, ETH_ALEN))
8238 break;
8239 }
8240 if (p == &priv->ibss_mac_hash[index]) {
8241 entry = kmalloc(sizeof(*entry), GFP_ATOMIC);
8242 if (!entry) {
8243 IPW_ERROR
8244 ("Cannot malloc new mac entry\n");
8245 return 0;
8246 }
8247 memcpy(entry->mac, mac, ETH_ALEN);
8248 entry->seq_num = seq;
8249 entry->frag_num = frag;
8250 entry->packet_time = jiffies;
8251 list_add(&entry->list,
8252 &priv->ibss_mac_hash[index]);
8253 return 0;
8254 }
8255 last_seq = &entry->seq_num;
8256 last_frag = &entry->frag_num;
8257 last_time = &entry->packet_time;
8258 break;
8259 }
8260 case IW_MODE_INFRA:
8261 last_seq = &priv->last_seq_num;
8262 last_frag = &priv->last_frag_num;
8263 last_time = &priv->last_packet_time;
8264 break;
8265 default:
8266 return 0;
8267 }
8268 if ((*last_seq == seq) &&
8269 time_after(*last_time + IPW_PACKET_RETRY_TIME, jiffies)) {
8270 if (*last_frag == frag)
8271 goto drop;
8272 if (*last_frag + 1 != frag)
8273 /* out-of-order fragment */
8274 goto drop;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008275 } else
8276 *last_seq = seq;
8277
Zhu Yif57ce7c2005-07-13 12:22:15 -05008278 *last_frag = frag;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008279 *last_time = jiffies;
8280 return 0;
8281
8282 drop:
Zhu Yi87b016c2005-08-05 17:17:35 +08008283 /* Comment this line now since we observed the card receives
8284 * duplicate packets but the FCTL_RETRY bit is not set in the
8285 * IBSS mode with fragmentation enabled.
John W. Linville72118012008-09-30 21:43:03 -04008286 BUG_ON(!(le16_to_cpu(header->frame_control) & IEEE80211_FCTL_RETRY)); */
James Ketrenosafbf30a2005-08-25 00:05:33 -05008287 return 1;
8288}
8289
James Ketrenosb095c382005-08-24 22:04:42 -05008290static void ipw_handle_mgmt_packet(struct ipw_priv *priv,
8291 struct ipw_rx_mem_buffer *rxb,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008292 struct libipw_rx_stats *stats)
James Ketrenosb095c382005-08-24 22:04:42 -05008293{
8294 struct sk_buff *skb = rxb->skb;
8295 struct ipw_rx_packet *pkt = (struct ipw_rx_packet *)skb->data;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008296 struct libipw_hdr_4addr *header = (struct libipw_hdr_4addr *)
James Ketrenosb095c382005-08-24 22:04:42 -05008297 (skb->data + IPW_RX_FRAME_SIZE);
8298
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008299 libipw_rx_mgt(priv->ieee, header, stats);
James Ketrenosb095c382005-08-24 22:04:42 -05008300
8301 if (priv->ieee->iw_mode == IW_MODE_ADHOC &&
8302 ((WLAN_FC_GET_STYPE(le16_to_cpu(header->frame_ctl)) ==
8303 IEEE80211_STYPE_PROBE_RESP) ||
8304 (WLAN_FC_GET_STYPE(le16_to_cpu(header->frame_ctl)) ==
8305 IEEE80211_STYPE_BEACON))) {
8306 if (!memcmp(header->addr3, priv->bssid, ETH_ALEN))
8307 ipw_add_station(priv, header->addr2);
8308 }
8309
8310 if (priv->config & CFG_NET_STATS) {
8311 IPW_DEBUG_HC("sending stat packet\n");
8312
8313 /* Set the size of the skb to the size of the full
8314 * ipw header and 802.11 frame */
8315 skb_put(skb, le16_to_cpu(pkt->u.frame.length) +
8316 IPW_RX_FRAME_SIZE);
8317
8318 /* Advance past the ipw packet header to the 802.11 frame */
8319 skb_pull(skb, IPW_RX_FRAME_SIZE);
8320
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008321 /* Push the libipw_rx_stats before the 802.11 frame */
James Ketrenosb095c382005-08-24 22:04:42 -05008322 memcpy(skb_push(skb, sizeof(*stats)), stats, sizeof(*stats));
8323
8324 skb->dev = priv->ieee->dev;
8325
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008326 /* Point raw at the libipw_stats */
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07008327 skb_reset_mac_header(skb);
James Ketrenosb095c382005-08-24 22:04:42 -05008328
8329 skb->pkt_type = PACKET_OTHERHOST;
Harvey Harrisonc1b4aa32009-01-29 13:26:44 -08008330 skb->protocol = cpu_to_be16(ETH_P_80211_STATS);
James Ketrenosb095c382005-08-24 22:04:42 -05008331 memset(skb->cb, 0, sizeof(rxb->skb->cb));
8332 netif_rx(skb);
8333 rxb->skb = NULL;
8334 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008335}
8336
James Ketrenos43f66a62005-03-25 12:31:53 -06008337/*
8338 * Main entry function for recieving a packet with 80211 headers. This
8339 * should be called when ever the FW has notified us that there is a new
8340 * skb in the recieve queue.
8341 */
8342static void ipw_rx(struct ipw_priv *priv)
8343{
8344 struct ipw_rx_mem_buffer *rxb;
8345 struct ipw_rx_packet *pkt;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008346 struct libipw_hdr_4addr *header;
James Ketrenos43f66a62005-03-25 12:31:53 -06008347 u32 r, w, i;
8348 u8 network_packet;
Dan Williams943dbef2008-02-14 17:49:41 -05008349 u8 fill_rx = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008350
James Ketrenosb095c382005-08-24 22:04:42 -05008351 r = ipw_read32(priv, IPW_RX_READ_INDEX);
8352 w = ipw_read32(priv, IPW_RX_WRITE_INDEX);
Dan Williams943dbef2008-02-14 17:49:41 -05008353 i = priv->rxq->read;
8354
8355 if (ipw_rx_queue_space (priv->rxq) > (RX_QUEUE_SIZE / 2))
8356 fill_rx = 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06008357
8358 while (i != r) {
8359 rxb = priv->rxq->queue[i];
James Ketrenos43f66a62005-03-25 12:31:53 -06008360 if (unlikely(rxb == NULL)) {
8361 printk(KERN_CRIT "Queue not allocated!\n");
8362 break;
8363 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008364 priv->rxq->queue[i] = NULL;
8365
8366 pci_dma_sync_single_for_cpu(priv->pci_dev, rxb->dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05008367 IPW_RX_BUF_SIZE,
James Ketrenos43f66a62005-03-25 12:31:53 -06008368 PCI_DMA_FROMDEVICE);
8369
8370 pkt = (struct ipw_rx_packet *)rxb->skb->data;
8371 IPW_DEBUG_RX("Packet: type=%02X seq=%02X bits=%02X\n",
8372 pkt->header.message_type,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008373 pkt->header.rx_seq_num, pkt->header.control_bits);
James Ketrenos43f66a62005-03-25 12:31:53 -06008374
8375 switch (pkt->header.message_type) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008376 case RX_FRAME_TYPE: /* 802.11 frame */ {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008377 struct libipw_rx_stats stats = {
Zhu Yi851ca262006-08-21 11:37:58 +08008378 .rssi = pkt->u.frame.rssi_dbm -
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008379 IPW_RSSI_TO_DBM,
James Ketrenosc848d0a2005-08-24 21:56:24 -05008380 .signal =
Reinette Chatre21f8a732009-08-18 10:25:05 -07008381 pkt->u.frame.rssi_dbm -
Bill Mossb1916082006-02-15 08:50:18 +08008382 IPW_RSSI_TO_DBM + 0x100,
James Ketrenosc848d0a2005-08-24 21:56:24 -05008383 .noise =
8384 le16_to_cpu(pkt->u.frame.noise),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008385 .rate = pkt->u.frame.rate,
8386 .mac_time = jiffies,
8387 .received_channel =
8388 pkt->u.frame.received_channel,
8389 .freq =
8390 (pkt->u.frame.
8391 control & (1 << 0)) ?
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008392 LIBIPW_24GHZ_BAND :
8393 LIBIPW_52GHZ_BAND,
James Ketrenosa613bff2005-08-24 21:43:11 -05008394 .len = le16_to_cpu(pkt->u.frame.length),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008395 };
James Ketrenos43f66a62005-03-25 12:31:53 -06008396
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008397 if (stats.rssi != 0)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008398 stats.mask |= LIBIPW_STATMASK_RSSI;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008399 if (stats.signal != 0)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008400 stats.mask |= LIBIPW_STATMASK_SIGNAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008401 if (stats.noise != 0)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008402 stats.mask |= LIBIPW_STATMASK_NOISE;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008403 if (stats.rate != 0)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008404 stats.mask |= LIBIPW_STATMASK_RATE;
James Ketrenos43f66a62005-03-25 12:31:53 -06008405
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008406 priv->rx_packets++;
James Ketrenos43f66a62005-03-25 12:31:53 -06008407
Zhu Yid685b8c2006-04-13 17:20:27 +08008408#ifdef CONFIG_IPW2200_PROMISCUOUS
8409 if (priv->prom_net_dev && netif_running(priv->prom_net_dev))
8410 ipw_handle_promiscuous_rx(priv, rxb, &stats);
8411#endif
8412
James Ketrenosb095c382005-08-24 22:04:42 -05008413#ifdef CONFIG_IPW2200_MONITOR
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008414 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
Zhu Yi459d4082006-04-13 17:21:00 +08008415#ifdef CONFIG_IPW2200_RADIOTAP
Zhu Yid685b8c2006-04-13 17:20:27 +08008416
8417 ipw_handle_data_packet_monitor(priv,
8418 rxb,
8419 &stats);
Mike Kershaw24a47db2005-08-26 00:41:54 -05008420#else
Zhu Yid685b8c2006-04-13 17:20:27 +08008421 ipw_handle_data_packet(priv, rxb,
8422 &stats);
Mike Kershaw24a47db2005-08-26 00:41:54 -05008423#endif
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008424 break;
8425 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008426#endif
Jeff Garzikbf794512005-07-31 13:07:26 -04008427
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008428 header =
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008429 (struct libipw_hdr_4addr *)(rxb->skb->
James Ketrenos0dacca12005-09-21 12:23:41 -05008430 data +
8431 IPW_RX_FRAME_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06008432 /* TODO: Check Ad-Hoc dest/source and make sure
8433 * that we are actually parsing these packets
Jeff Garzikbf794512005-07-31 13:07:26 -04008434 * correctly -- we should probably use the
James Ketrenos43f66a62005-03-25 12:31:53 -06008435 * frame control of the packet and disregard
8436 * the current iw_mode */
James Ketrenos43f66a62005-03-25 12:31:53 -06008437
James Ketrenosea2b26e2005-08-24 21:25:16 -05008438 network_packet =
8439 is_network_packet(priv, header);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008440 if (network_packet && priv->assoc_network) {
8441 priv->assoc_network->stats.rssi =
8442 stats.rssi;
Zhu Yi00d21de2006-04-13 17:19:02 +08008443 priv->exp_avg_rssi =
8444 exponential_average(priv->exp_avg_rssi,
8445 stats.rssi, DEPTH_RSSI);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008446 }
8447
8448 IPW_DEBUG_RX("Frame: len=%u\n",
James Ketrenosa613bff2005-08-24 21:43:11 -05008449 le16_to_cpu(pkt->u.frame.length));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008450
James Ketrenosa613bff2005-08-24 21:43:11 -05008451 if (le16_to_cpu(pkt->u.frame.length) <
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008452 libipw_get_hdrlen(le16_to_cpu(
Zhu Yi9d0be032006-02-15 06:18:19 +08008453 header->frame_ctl))) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008454 IPW_DEBUG_DROP
8455 ("Received packet is too small. "
8456 "Dropping.\n");
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00008457 priv->net_dev->stats.rx_errors++;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008458 priv->wstats.discard.misc++;
8459 break;
8460 }
8461
James Ketrenosa613bff2005-08-24 21:43:11 -05008462 switch (WLAN_FC_GET_TYPE
8463 (le16_to_cpu(header->frame_ctl))) {
James Ketrenosb095c382005-08-24 22:04:42 -05008464
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008465 case IEEE80211_FTYPE_MGMT:
James Ketrenosb095c382005-08-24 22:04:42 -05008466 ipw_handle_mgmt_packet(priv, rxb,
8467 &stats);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008468 break;
8469
8470 case IEEE80211_FTYPE_CTL:
8471 break;
8472
8473 case IEEE80211_FTYPE_DATA:
James Ketrenosafbf30a2005-08-25 00:05:33 -05008474 if (unlikely(!network_packet ||
8475 is_duplicate_packet(priv,
8476 header)))
8477 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008478 IPW_DEBUG_DROP("Dropping: "
Johannes Berge1749612008-10-27 15:59:26 -07008479 "%pM, "
8480 "%pM, "
8481 "%pM\n",
8482 header->addr1,
8483 header->addr2,
8484 header->addr3);
James Ketrenosb095c382005-08-24 22:04:42 -05008485 break;
8486 }
8487
8488 ipw_handle_data_packet(priv, rxb,
8489 &stats);
8490
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008491 break;
8492 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008493 break;
8494 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008495
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008496 case RX_HOST_NOTIFICATION_TYPE:{
8497 IPW_DEBUG_RX
8498 ("Notification: subtype=%02X flags=%02X size=%d\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06008499 pkt->u.notification.subtype,
8500 pkt->u.notification.flags,
Zhu Yi720eeb42006-12-05 14:41:40 +08008501 le16_to_cpu(pkt->u.notification.size));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008502 ipw_rx_notification(priv, &pkt->u.notification);
8503 break;
8504 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008505
8506 default:
8507 IPW_DEBUG_RX("Bad Rx packet of type %d\n",
8508 pkt->header.message_type);
8509 break;
8510 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008511
8512 /* For now we just don't re-use anything. We can tweak this
8513 * later to try and re-use notification packets and SKBs that
James Ketrenos43f66a62005-03-25 12:31:53 -06008514 * fail to Rx correctly */
8515 if (rxb->skb != NULL) {
8516 dev_kfree_skb_any(rxb->skb);
8517 rxb->skb = NULL;
8518 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008519
James Ketrenos43f66a62005-03-25 12:31:53 -06008520 pci_unmap_single(priv->pci_dev, rxb->dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05008521 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06008522 list_add_tail(&rxb->list, &priv->rxq->rx_used);
Jeff Garzikbf794512005-07-31 13:07:26 -04008523
James Ketrenos43f66a62005-03-25 12:31:53 -06008524 i = (i + 1) % RX_QUEUE_SIZE;
Dan Williams943dbef2008-02-14 17:49:41 -05008525
8526 /* If there are a lot of unsued frames, restock the Rx queue
8527 * so the ucode won't assert */
8528 if (fill_rx) {
8529 priv->rxq->read = i;
8530 ipw_rx_queue_replenish(priv);
8531 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008532 }
8533
8534 /* Backtrack one entry */
Dan Williams943dbef2008-02-14 17:49:41 -05008535 priv->rxq->read = i;
James Ketrenos43f66a62005-03-25 12:31:53 -06008536 ipw_rx_queue_restock(priv);
8537}
8538
James Ketrenosafbf30a2005-08-25 00:05:33 -05008539#define DEFAULT_RTS_THRESHOLD 2304U
8540#define MIN_RTS_THRESHOLD 1U
8541#define MAX_RTS_THRESHOLD 2304U
8542#define DEFAULT_BEACON_INTERVAL 100U
8543#define DEFAULT_SHORT_RETRY_LIMIT 7U
8544#define DEFAULT_LONG_RETRY_LIMIT 4U
8545
Zhu Yid6d5b5c2006-02-16 16:21:09 +08008546/**
8547 * ipw_sw_reset
8548 * @option: options to control different reset behaviour
8549 * 0 = reset everything except the 'disable' module_param
8550 * 1 = reset everything and print out driver info (for probe only)
8551 * 2 = reset everything
8552 */
8553static int ipw_sw_reset(struct ipw_priv *priv, int option)
James Ketrenos43f66a62005-03-25 12:31:53 -06008554{
James Ketrenosafbf30a2005-08-25 00:05:33 -05008555 int band, modulation;
8556 int old_mode = priv->ieee->iw_mode;
James Ketrenos43f66a62005-03-25 12:31:53 -06008557
James Ketrenosafbf30a2005-08-25 00:05:33 -05008558 /* Initialize module parameter values here */
8559 priv->config = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008560
James Ketrenosafbf30a2005-08-25 00:05:33 -05008561 /* We default to disabling the LED code as right now it causes
8562 * too many systems to lock up... */
Reinette Chatre21f8a732009-08-18 10:25:05 -07008563 if (!led_support)
James Ketrenosafbf30a2005-08-25 00:05:33 -05008564 priv->config |= CFG_NO_LED;
James Ketrenos43f66a62005-03-25 12:31:53 -06008565
James Ketrenosafbf30a2005-08-25 00:05:33 -05008566 if (associate)
8567 priv->config |= CFG_ASSOCIATE;
8568 else
8569 IPW_DEBUG_INFO("Auto associate disabled.\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04008570
James Ketrenosafbf30a2005-08-25 00:05:33 -05008571 if (auto_create)
8572 priv->config |= CFG_ADHOC_CREATE;
8573 else
8574 IPW_DEBUG_INFO("Auto adhoc creation disabled.\n");
8575
Zhu Yi17ed0812006-01-24 16:36:31 +08008576 priv->config &= ~CFG_STATIC_ESSID;
8577 priv->essid_len = 0;
8578 memset(priv->essid, 0, IW_ESSID_MAX_SIZE);
8579
Zhu Yid6d5b5c2006-02-16 16:21:09 +08008580 if (disable && option) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008581 priv->status |= STATUS_RF_KILL_SW;
8582 IPW_DEBUG_INFO("Radio disabled.\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06008583 }
8584
Reinette Chatre21f8a732009-08-18 10:25:05 -07008585 if (default_channel != 0) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008586 priv->config |= CFG_STATIC_CHANNEL;
Reinette Chatre21f8a732009-08-18 10:25:05 -07008587 priv->channel = default_channel;
8588 IPW_DEBUG_INFO("Bind to static channel %d\n", default_channel);
James Ketrenosafbf30a2005-08-25 00:05:33 -05008589 /* TODO: Validate that provided channel is in range */
8590 }
Zhu Yie43e3c12006-04-13 17:20:45 +08008591#ifdef CONFIG_IPW2200_QOS
James Ketrenosafbf30a2005-08-25 00:05:33 -05008592 ipw_qos_init(priv, qos_enable, qos_burst_enable,
8593 burst_duration_CCK, burst_duration_OFDM);
Zhu Yie43e3c12006-04-13 17:20:45 +08008594#endif /* CONFIG_IPW2200_QOS */
James Ketrenosafbf30a2005-08-25 00:05:33 -05008595
Reinette Chatre21f8a732009-08-18 10:25:05 -07008596 switch (network_mode) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008597 case 1:
8598 priv->ieee->iw_mode = IW_MODE_ADHOC;
8599 priv->net_dev->type = ARPHRD_ETHER;
8600
8601 break;
8602#ifdef CONFIG_IPW2200_MONITOR
8603 case 2:
8604 priv->ieee->iw_mode = IW_MODE_MONITOR;
Zhu Yi459d4082006-04-13 17:21:00 +08008605#ifdef CONFIG_IPW2200_RADIOTAP
Mike Kershaw24a47db2005-08-26 00:41:54 -05008606 priv->net_dev->type = ARPHRD_IEEE80211_RADIOTAP;
8607#else
James Ketrenosafbf30a2005-08-25 00:05:33 -05008608 priv->net_dev->type = ARPHRD_IEEE80211;
Mike Kershaw24a47db2005-08-26 00:41:54 -05008609#endif
James Ketrenosafbf30a2005-08-25 00:05:33 -05008610 break;
8611#endif
8612 default:
8613 case 0:
8614 priv->net_dev->type = ARPHRD_ETHER;
8615 priv->ieee->iw_mode = IW_MODE_INFRA;
8616 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06008617 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008618
James Ketrenosafbf30a2005-08-25 00:05:33 -05008619 if (hwcrypto) {
8620 priv->ieee->host_encrypt = 0;
8621 priv->ieee->host_encrypt_msdu = 0;
8622 priv->ieee->host_decrypt = 0;
Hong Liu567deaf2005-08-31 18:07:22 +08008623 priv->ieee->host_mc_decrypt = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008624 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05008625 IPW_DEBUG_INFO("Hardware crypto [%s]\n", hwcrypto ? "on" : "off");
James Ketrenos43f66a62005-03-25 12:31:53 -06008626
Zhu Yie402c932005-08-05 17:20:40 +08008627 /* IPW2200/2915 is abled to do hardware fragmentation. */
8628 priv->ieee->host_open_frag = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008629
James Ketrenosafbf30a2005-08-25 00:05:33 -05008630 if ((priv->pci_dev->device == 0x4223) ||
8631 (priv->pci_dev->device == 0x4224)) {
Zhu Yie8c69e22006-02-17 08:25:12 +08008632 if (option == 1)
James Ketrenosafbf30a2005-08-25 00:05:33 -05008633 printk(KERN_INFO DRV_NAME
8634 ": Detected Intel PRO/Wireless 2915ABG Network "
8635 "Connection\n");
8636 priv->ieee->abg_true = 1;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008637 band = LIBIPW_52GHZ_BAND | LIBIPW_24GHZ_BAND;
8638 modulation = LIBIPW_OFDM_MODULATION |
8639 LIBIPW_CCK_MODULATION;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008640 priv->adapter = IPW_2915ABG;
8641 priv->ieee->mode = IEEE_A | IEEE_G | IEEE_B;
James Ketrenos43f66a62005-03-25 12:31:53 -06008642 } else {
Zhu Yie8c69e22006-02-17 08:25:12 +08008643 if (option == 1)
James Ketrenosafbf30a2005-08-25 00:05:33 -05008644 printk(KERN_INFO DRV_NAME
8645 ": Detected Intel PRO/Wireless 2200BG Network "
8646 "Connection\n");
8647
8648 priv->ieee->abg_true = 0;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008649 band = LIBIPW_24GHZ_BAND;
8650 modulation = LIBIPW_OFDM_MODULATION |
8651 LIBIPW_CCK_MODULATION;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008652 priv->adapter = IPW_2200BG;
8653 priv->ieee->mode = IEEE_G | IEEE_B;
James Ketrenos43f66a62005-03-25 12:31:53 -06008654 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008655
James Ketrenosafbf30a2005-08-25 00:05:33 -05008656 priv->ieee->freq_band = band;
8657 priv->ieee->modulation = modulation;
Jeff Garzikbf794512005-07-31 13:07:26 -04008658
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008659 priv->rates_mask = LIBIPW_DEFAULT_RATES_MASK;
James Ketrenos43f66a62005-03-25 12:31:53 -06008660
James Ketrenosafbf30a2005-08-25 00:05:33 -05008661 priv->disassociate_threshold = IPW_MB_DISASSOCIATE_THRESHOLD_DEFAULT;
8662 priv->roaming_threshold = IPW_MB_ROAMING_THRESHOLD_DEFAULT;
James Ketrenos43f66a62005-03-25 12:31:53 -06008663
James Ketrenosafbf30a2005-08-25 00:05:33 -05008664 priv->rts_threshold = DEFAULT_RTS_THRESHOLD;
8665 priv->short_retry_limit = DEFAULT_SHORT_RETRY_LIMIT;
8666 priv->long_retry_limit = DEFAULT_LONG_RETRY_LIMIT;
Jeff Garzikbf794512005-07-31 13:07:26 -04008667
James Ketrenosafbf30a2005-08-25 00:05:33 -05008668 /* If power management is turned on, default to AC mode */
8669 priv->power_mode = IPW_POWER_AC;
8670 priv->tx_power = IPW_TX_POWER_DEFAULT;
James Ketrenos43f66a62005-03-25 12:31:53 -06008671
Zhu Yi0ece35b2005-08-05 17:26:51 +08008672 return old_mode == priv->ieee->iw_mode;
James Ketrenos43f66a62005-03-25 12:31:53 -06008673}
8674
8675/*
8676 * This file defines the Wireless Extension handlers. It does not
8677 * define any methods of hardware manipulation and relies on the
8678 * functions defined in ipw_main to provide the HW interaction.
Jeff Garzikbf794512005-07-31 13:07:26 -04008679 *
8680 * The exception to this is the use of the ipw_get_ordinal()
James Ketrenos43f66a62005-03-25 12:31:53 -06008681 * function used to poll the hardware vs. making unecessary calls.
8682 *
8683 */
8684
James Ketrenos43f66a62005-03-25 12:31:53 -06008685static int ipw_set_channel(struct ipw_priv *priv, u8 channel)
8686{
8687 if (channel == 0) {
8688 IPW_DEBUG_INFO("Setting channel to ANY (0)\n");
8689 priv->config &= ~CFG_STATIC_CHANNEL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008690 IPW_DEBUG_ASSOC("Attempting to associate with new "
8691 "parameters.\n");
8692 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06008693 return 0;
8694 }
8695
8696 priv->config |= CFG_STATIC_CHANNEL;
8697
8698 if (priv->channel == channel) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008699 IPW_DEBUG_INFO("Request to set channel to current value (%d)\n",
8700 channel);
James Ketrenos43f66a62005-03-25 12:31:53 -06008701 return 0;
8702 }
8703
8704 IPW_DEBUG_INFO("Setting channel to %i\n", (int)channel);
8705 priv->channel = channel;
8706
James Ketrenosb095c382005-08-24 22:04:42 -05008707#ifdef CONFIG_IPW2200_MONITOR
8708 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008709 int i;
James Ketrenosb095c382005-08-24 22:04:42 -05008710 if (priv->status & STATUS_SCANNING) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008711 IPW_DEBUG_SCAN("Scan abort triggered due to "
James Ketrenosb095c382005-08-24 22:04:42 -05008712 "channel change.\n");
James Ketrenosafbf30a2005-08-25 00:05:33 -05008713 ipw_abort_scan(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05008714 }
8715
8716 for (i = 1000; i && (priv->status & STATUS_SCANNING); i--)
8717 udelay(10);
8718
8719 if (priv->status & STATUS_SCANNING)
8720 IPW_DEBUG_SCAN("Still scanning...\n");
8721 else
8722 IPW_DEBUG_SCAN("Took %dms to abort current scan\n",
8723 1000 - i);
8724
8725 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008726 }
James Ketrenosb095c382005-08-24 22:04:42 -05008727#endif /* CONFIG_IPW2200_MONITOR */
8728
James Ketrenosc848d0a2005-08-24 21:56:24 -05008729 /* Network configuration changed -- force [re]association */
8730 IPW_DEBUG_ASSOC("[re]association triggered due to channel change.\n");
8731 if (!ipw_disassociate(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -06008732 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06008733
8734 return 0;
8735}
8736
Jeff Garzikbf794512005-07-31 13:07:26 -04008737static int ipw_wx_set_freq(struct net_device *dev,
8738 struct iw_request_info *info,
8739 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06008740{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008741 struct ipw_priv *priv = libipw_priv(dev);
8742 const struct libipw_geo *geo = libipw_get_geo(priv->ieee);
James Ketrenos43f66a62005-03-25 12:31:53 -06008743 struct iw_freq *fwrq = &wrqu->freq;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008744 int ret = 0, i;
Liu Hong1fe0adb2005-08-19 09:33:10 -05008745 u8 channel, flags;
8746 int band;
Jeff Garzikbf794512005-07-31 13:07:26 -04008747
James Ketrenosb095c382005-08-24 22:04:42 -05008748 if (fwrq->m == 0) {
8749 IPW_DEBUG_WX("SET Freq/Channel -> any\n");
Zhu Yi46441512006-01-24 16:37:59 +08008750 mutex_lock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05008751 ret = ipw_set_channel(priv, 0);
Zhu Yi46441512006-01-24 16:37:59 +08008752 mutex_unlock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05008753 return ret;
8754 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008755 /* if setting by freq convert to channel */
8756 if (fwrq->e == 1) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008757 channel = libipw_freq_to_channel(priv->ieee, fwrq->m);
James Ketrenosb095c382005-08-24 22:04:42 -05008758 if (channel == 0)
8759 return -EINVAL;
8760 } else
8761 channel = fwrq->m;
Jeff Garzikbf794512005-07-31 13:07:26 -04008762
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008763 if (!(band = libipw_is_valid_channel(priv->ieee, channel)))
James Ketrenosb095c382005-08-24 22:04:42 -05008764 return -EINVAL;
Jeff Garzikbf794512005-07-31 13:07:26 -04008765
Liu Hong1fe0adb2005-08-19 09:33:10 -05008766 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008767 i = libipw_channel_to_index(priv->ieee, channel);
James Ketrenosafbf30a2005-08-25 00:05:33 -05008768 if (i == -1)
8769 return -EINVAL;
Liu Hong1fe0adb2005-08-19 09:33:10 -05008770
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008771 flags = (band == LIBIPW_24GHZ_BAND) ?
Liu Hong1fe0adb2005-08-19 09:33:10 -05008772 geo->bg[i].flags : geo->a[i].flags;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008773 if (flags & LIBIPW_CH_PASSIVE_ONLY) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008774 IPW_DEBUG_WX("Invalid Ad-Hoc channel for 802.11a\n");
8775 return -EINVAL;
James Ketrenos43f66a62005-03-25 12:31:53 -06008776 }
8777 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008778
James Ketrenos43f66a62005-03-25 12:31:53 -06008779 IPW_DEBUG_WX("SET Freq/Channel -> %d \n", fwrq->m);
Zhu Yi46441512006-01-24 16:37:59 +08008780 mutex_lock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05008781 ret = ipw_set_channel(priv, channel);
Zhu Yi46441512006-01-24 16:37:59 +08008782 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008783 return ret;
James Ketrenos43f66a62005-03-25 12:31:53 -06008784}
8785
Jeff Garzikbf794512005-07-31 13:07:26 -04008786static int ipw_wx_get_freq(struct net_device *dev,
8787 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008788 union iwreq_data *wrqu, char *extra)
8789{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008790 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06008791
8792 wrqu->freq.e = 0;
8793
8794 /* If we are associated, trying to associate, or have a statically
8795 * configured CHANNEL then return that; otherwise return ANY */
Zhu Yi46441512006-01-24 16:37:59 +08008796 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008797 if (priv->config & CFG_STATIC_CHANNEL ||
Zhu Yic580f672006-08-21 11:37:01 +08008798 priv->status & (STATUS_ASSOCIATING | STATUS_ASSOCIATED)) {
8799 int i;
8800
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008801 i = libipw_channel_to_index(priv->ieee, priv->channel);
Zhu Yic580f672006-08-21 11:37:01 +08008802 BUG_ON(i == -1);
8803 wrqu->freq.e = 1;
8804
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008805 switch (libipw_is_valid_channel(priv->ieee, priv->channel)) {
8806 case LIBIPW_52GHZ_BAND:
Zhu Yic580f672006-08-21 11:37:01 +08008807 wrqu->freq.m = priv->ieee->geo.a[i].freq * 100000;
8808 break;
8809
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008810 case LIBIPW_24GHZ_BAND:
Zhu Yic580f672006-08-21 11:37:01 +08008811 wrqu->freq.m = priv->ieee->geo.bg[i].freq * 100000;
8812 break;
8813
8814 default:
8815 BUG();
8816 }
8817 } else
James Ketrenos43f66a62005-03-25 12:31:53 -06008818 wrqu->freq.m = 0;
8819
Zhu Yi46441512006-01-24 16:37:59 +08008820 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008821 IPW_DEBUG_WX("GET Freq/Channel -> %d \n", priv->channel);
8822 return 0;
8823}
8824
Jeff Garzikbf794512005-07-31 13:07:26 -04008825static int ipw_wx_set_mode(struct net_device *dev,
8826 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008827 union iwreq_data *wrqu, char *extra)
8828{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008829 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06008830 int err = 0;
8831
8832 IPW_DEBUG_WX("Set MODE: %d\n", wrqu->mode);
8833
James Ketrenos43f66a62005-03-25 12:31:53 -06008834 switch (wrqu->mode) {
James Ketrenosb095c382005-08-24 22:04:42 -05008835#ifdef CONFIG_IPW2200_MONITOR
James Ketrenos43f66a62005-03-25 12:31:53 -06008836 case IW_MODE_MONITOR:
8837#endif
8838 case IW_MODE_ADHOC:
8839 case IW_MODE_INFRA:
8840 break;
8841 case IW_MODE_AUTO:
8842 wrqu->mode = IW_MODE_INFRA;
8843 break;
8844 default:
8845 return -EINVAL;
8846 }
James Ketrenosb095c382005-08-24 22:04:42 -05008847 if (wrqu->mode == priv->ieee->iw_mode)
8848 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008849
Zhu Yi46441512006-01-24 16:37:59 +08008850 mutex_lock(&priv->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -05008851
8852 ipw_sw_reset(priv, 0);
8853
James Ketrenosb095c382005-08-24 22:04:42 -05008854#ifdef CONFIG_IPW2200_MONITOR
Jeff Garzikbf794512005-07-31 13:07:26 -04008855 if (priv->ieee->iw_mode == IW_MODE_MONITOR)
James Ketrenos43f66a62005-03-25 12:31:53 -06008856 priv->net_dev->type = ARPHRD_ETHER;
Jeff Garzikbf794512005-07-31 13:07:26 -04008857
8858 if (wrqu->mode == IW_MODE_MONITOR)
Zhu Yi459d4082006-04-13 17:21:00 +08008859#ifdef CONFIG_IPW2200_RADIOTAP
Mike Kershaw24a47db2005-08-26 00:41:54 -05008860 priv->net_dev->type = ARPHRD_IEEE80211_RADIOTAP;
8861#else
James Ketrenos43f66a62005-03-25 12:31:53 -06008862 priv->net_dev->type = ARPHRD_IEEE80211;
Mike Kershaw24a47db2005-08-26 00:41:54 -05008863#endif
James Ketrenosb095c382005-08-24 22:04:42 -05008864#endif /* CONFIG_IPW2200_MONITOR */
Jeff Garzikbf794512005-07-31 13:07:26 -04008865
Jeff Garzikbf794512005-07-31 13:07:26 -04008866 /* Free the existing firmware and reset the fw_loaded
Nick Andrew877d0312009-01-26 11:06:57 +01008867 * flag so ipw_load() will bring in the new firmware */
James Ketrenosafbf30a2005-08-25 00:05:33 -05008868 free_firmware();
James Ketrenos43f66a62005-03-25 12:31:53 -06008869
8870 priv->ieee->iw_mode = wrqu->mode;
Jeff Garzikbf794512005-07-31 13:07:26 -04008871
James Ketrenosc848d0a2005-08-24 21:56:24 -05008872 queue_work(priv->workqueue, &priv->adapter_restart);
Zhu Yi46441512006-01-24 16:37:59 +08008873 mutex_unlock(&priv->mutex);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008874 return err;
James Ketrenos43f66a62005-03-25 12:31:53 -06008875}
8876
Jeff Garzikbf794512005-07-31 13:07:26 -04008877static int ipw_wx_get_mode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008878 struct iw_request_info *info,
8879 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06008880{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008881 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08008882 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008883 wrqu->mode = priv->ieee->iw_mode;
8884 IPW_DEBUG_WX("Get MODE -> %d\n", wrqu->mode);
Zhu Yi46441512006-01-24 16:37:59 +08008885 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008886 return 0;
8887}
8888
James Ketrenos43f66a62005-03-25 12:31:53 -06008889/* Values are in microsecond */
8890static const s32 timeout_duration[] = {
8891 350000,
8892 250000,
8893 75000,
8894 37000,
8895 25000,
8896};
8897
8898static const s32 period_duration[] = {
8899 400000,
8900 700000,
8901 1000000,
8902 1000000,
8903 1000000
8904};
8905
Jeff Garzikbf794512005-07-31 13:07:26 -04008906static int ipw_wx_get_range(struct net_device *dev,
8907 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008908 union iwreq_data *wrqu, char *extra)
8909{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008910 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06008911 struct iw_range *range = (struct iw_range *)extra;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008912 const struct libipw_geo *geo = libipw_get_geo(priv->ieee);
James Ketrenosb095c382005-08-24 22:04:42 -05008913 int i = 0, j;
James Ketrenos43f66a62005-03-25 12:31:53 -06008914
8915 wrqu->data.length = sizeof(*range);
8916 memset(range, 0, sizeof(*range));
8917
8918 /* 54Mbs == ~27 Mb/s real (802.11g) */
Jeff Garzikbf794512005-07-31 13:07:26 -04008919 range->throughput = 27 * 1000 * 1000;
James Ketrenos43f66a62005-03-25 12:31:53 -06008920
8921 range->max_qual.qual = 100;
8922 /* TODO: Find real max RSSI and stick here */
8923 range->max_qual.level = 0;
Bill Mossb1916082006-02-15 08:50:18 +08008924 range->max_qual.noise = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008925 range->max_qual.updated = 7; /* Updated all three */
James Ketrenos43f66a62005-03-25 12:31:53 -06008926
8927 range->avg_qual.qual = 70;
8928 /* TODO: Find real 'good' to 'bad' threshol value for RSSI */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008929 range->avg_qual.level = 0; /* FIXME to real average level */
James Ketrenos43f66a62005-03-25 12:31:53 -06008930 range->avg_qual.noise = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008931 range->avg_qual.updated = 7; /* Updated all three */
Zhu Yi46441512006-01-24 16:37:59 +08008932 mutex_lock(&priv->mutex);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008933 range->num_bitrates = min(priv->rates.num_rates, (u8) IW_MAX_BITRATES);
James Ketrenos43f66a62005-03-25 12:31:53 -06008934
Jeff Garzikbf794512005-07-31 13:07:26 -04008935 for (i = 0; i < range->num_bitrates; i++)
8936 range->bitrate[i] = (priv->rates.supported_rates[i] & 0x7F) *
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008937 500000;
Jeff Garzikbf794512005-07-31 13:07:26 -04008938
James Ketrenos43f66a62005-03-25 12:31:53 -06008939 range->max_rts = DEFAULT_RTS_THRESHOLD;
8940 range->min_frag = MIN_FRAG_THRESHOLD;
8941 range->max_frag = MAX_FRAG_THRESHOLD;
8942
8943 range->encoding_size[0] = 5;
Jeff Garzikbf794512005-07-31 13:07:26 -04008944 range->encoding_size[1] = 13;
James Ketrenos43f66a62005-03-25 12:31:53 -06008945 range->num_encoding_sizes = 2;
8946 range->max_encoding_tokens = WEP_KEYS;
8947
8948 /* Set the Wireless Extension versions */
8949 range->we_version_compiled = WIRELESS_EXT;
Dan Williamsf1b50862006-01-30 13:58:56 -05008950 range->we_version_source = 18;
James Ketrenos43f66a62005-03-25 12:31:53 -06008951
James Ketrenosb095c382005-08-24 22:04:42 -05008952 i = 0;
8953 if (priv->ieee->mode & (IEEE_B | IEEE_G)) {
Zhu Yie815de42006-03-02 05:55:51 +08008954 for (j = 0; j < geo->bg_channels && i < IW_MAX_FREQUENCIES; j++) {
8955 if ((priv->ieee->iw_mode == IW_MODE_ADHOC) &&
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008956 (geo->bg[j].flags & LIBIPW_CH_PASSIVE_ONLY))
Zhu Yie815de42006-03-02 05:55:51 +08008957 continue;
8958
James Ketrenosb095c382005-08-24 22:04:42 -05008959 range->freq[i].i = geo->bg[j].channel;
8960 range->freq[i].m = geo->bg[j].freq * 100000;
8961 range->freq[i].e = 1;
Zhu Yie815de42006-03-02 05:55:51 +08008962 i++;
James Ketrenosb095c382005-08-24 22:04:42 -05008963 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008964 }
James Ketrenosb095c382005-08-24 22:04:42 -05008965
8966 if (priv->ieee->mode & IEEE_A) {
Zhu Yie815de42006-03-02 05:55:51 +08008967 for (j = 0; j < geo->a_channels && i < IW_MAX_FREQUENCIES; j++) {
8968 if ((priv->ieee->iw_mode == IW_MODE_ADHOC) &&
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008969 (geo->a[j].flags & LIBIPW_CH_PASSIVE_ONLY))
Zhu Yie815de42006-03-02 05:55:51 +08008970 continue;
8971
James Ketrenosb095c382005-08-24 22:04:42 -05008972 range->freq[i].i = geo->a[j].channel;
8973 range->freq[i].m = geo->a[j].freq * 100000;
8974 range->freq[i].e = 1;
Zhu Yie815de42006-03-02 05:55:51 +08008975 i++;
James Ketrenosb095c382005-08-24 22:04:42 -05008976 }
8977 }
8978
8979 range->num_channels = i;
8980 range->num_frequency = i;
8981
Zhu Yi46441512006-01-24 16:37:59 +08008982 mutex_unlock(&priv->mutex);
Benoit Boissinot97a78ca2005-09-15 17:30:28 +00008983
8984 /* Event capability (kernel + driver) */
8985 range->event_capa[0] = (IW_EVENT_CAPA_K_0 |
8986 IW_EVENT_CAPA_MASK(SIOCGIWTHRSPY) |
Zhu Yi07f02e42006-04-13 17:19:25 +08008987 IW_EVENT_CAPA_MASK(SIOCGIWAP) |
8988 IW_EVENT_CAPA_MASK(SIOCGIWSCAN));
Benoit Boissinot97a78ca2005-09-15 17:30:28 +00008989 range->event_capa[1] = IW_EVENT_CAPA_K_1;
James Ketrenos43f66a62005-03-25 12:31:53 -06008990
Dan Williamsf1b50862006-01-30 13:58:56 -05008991 range->enc_capa = IW_ENC_CAPA_WPA | IW_ENC_CAPA_WPA2 |
8992 IW_ENC_CAPA_CIPHER_TKIP | IW_ENC_CAPA_CIPHER_CCMP;
8993
Dan Williams374fdfb2007-12-12 10:25:07 -05008994 range->scan_capa = IW_SCAN_CAPA_ESSID | IW_SCAN_CAPA_TYPE;
8995
James Ketrenos43f66a62005-03-25 12:31:53 -06008996 IPW_DEBUG_WX("GET Range\n");
8997 return 0;
8998}
8999
Jeff Garzikbf794512005-07-31 13:07:26 -04009000static int ipw_wx_set_wap(struct net_device *dev,
9001 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009002 union iwreq_data *wrqu, char *extra)
9003{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009004 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009005
9006 static const unsigned char any[] = {
9007 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
9008 };
9009 static const unsigned char off[] = {
9010 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
9011 };
9012
Jeff Garzikbf794512005-07-31 13:07:26 -04009013 if (wrqu->ap_addr.sa_family != ARPHRD_ETHER)
James Ketrenos43f66a62005-03-25 12:31:53 -06009014 return -EINVAL;
Zhu Yi46441512006-01-24 16:37:59 +08009015 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009016 if (!memcmp(any, wrqu->ap_addr.sa_data, ETH_ALEN) ||
9017 !memcmp(off, wrqu->ap_addr.sa_data, ETH_ALEN)) {
9018 /* we disable mandatory BSSID association */
9019 IPW_DEBUG_WX("Setting AP BSSID to ANY\n");
9020 priv->config &= ~CFG_STATIC_BSSID;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009021 IPW_DEBUG_ASSOC("Attempting to associate with new "
9022 "parameters.\n");
9023 ipw_associate(priv);
Zhu Yi46441512006-01-24 16:37:59 +08009024 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009025 return 0;
9026 }
9027
9028 priv->config |= CFG_STATIC_BSSID;
9029 if (!memcmp(priv->bssid, wrqu->ap_addr.sa_data, ETH_ALEN)) {
9030 IPW_DEBUG_WX("BSSID set to current BSSID.\n");
Zhu Yi46441512006-01-24 16:37:59 +08009031 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009032 return 0;
9033 }
9034
Johannes Berge1749612008-10-27 15:59:26 -07009035 IPW_DEBUG_WX("Setting mandatory BSSID to %pM\n",
9036 wrqu->ap_addr.sa_data);
James Ketrenos43f66a62005-03-25 12:31:53 -06009037
9038 memcpy(priv->bssid, wrqu->ap_addr.sa_data, ETH_ALEN);
9039
James Ketrenosc848d0a2005-08-24 21:56:24 -05009040 /* Network configuration changed -- force [re]association */
9041 IPW_DEBUG_ASSOC("[re]association triggered due to BSSID change.\n");
9042 if (!ipw_disassociate(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -06009043 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06009044
Zhu Yi46441512006-01-24 16:37:59 +08009045 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009046 return 0;
9047}
9048
Jeff Garzikbf794512005-07-31 13:07:26 -04009049static int ipw_wx_get_wap(struct net_device *dev,
9050 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009051 union iwreq_data *wrqu, char *extra)
9052{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009053 struct ipw_priv *priv = libipw_priv(dev);
Joe Perches0795af52007-10-03 17:59:30 -07009054
James Ketrenos43f66a62005-03-25 12:31:53 -06009055 /* If we are associated, trying to associate, or have a statically
9056 * configured BSSID then return that; otherwise return ANY */
Zhu Yi46441512006-01-24 16:37:59 +08009057 mutex_lock(&priv->mutex);
Jeff Garzikbf794512005-07-31 13:07:26 -04009058 if (priv->config & CFG_STATIC_BSSID ||
James Ketrenos43f66a62005-03-25 12:31:53 -06009059 priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) {
9060 wrqu->ap_addr.sa_family = ARPHRD_ETHER;
James Ketrenosafbf30a2005-08-25 00:05:33 -05009061 memcpy(wrqu->ap_addr.sa_data, priv->bssid, ETH_ALEN);
James Ketrenos43f66a62005-03-25 12:31:53 -06009062 } else
9063 memset(wrqu->ap_addr.sa_data, 0, ETH_ALEN);
9064
Johannes Berge1749612008-10-27 15:59:26 -07009065 IPW_DEBUG_WX("Getting WAP BSSID: %pM\n",
9066 wrqu->ap_addr.sa_data);
Zhu Yi46441512006-01-24 16:37:59 +08009067 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009068 return 0;
9069}
9070
Jeff Garzikbf794512005-07-31 13:07:26 -04009071static int ipw_wx_set_essid(struct net_device *dev,
9072 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009073 union iwreq_data *wrqu, char *extra)
9074{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009075 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yiab644b02006-08-21 11:37:13 +08009076 int length;
John W. Linville9387b7c2008-09-30 20:59:05 -04009077 DECLARE_SSID_BUF(ssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06009078
Zhu Yiab644b02006-08-21 11:37:13 +08009079 mutex_lock(&priv->mutex);
9080
9081 if (!wrqu->essid.flags)
9082 {
9083 IPW_DEBUG_WX("Setting ESSID to ANY\n");
9084 ipw_disassociate(priv);
9085 priv->config &= ~CFG_STATIC_ESSID;
9086 ipw_associate(priv);
9087 mutex_unlock(&priv->mutex);
9088 return 0;
9089 }
9090
Zhu Yia9f0d422006-08-21 11:37:26 +08009091 length = min((int)wrqu->essid.length, IW_ESSID_MAX_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06009092
9093 priv->config |= CFG_STATIC_ESSID;
9094
Zhu Yia9f0d422006-08-21 11:37:26 +08009095 if (priv->essid_len == length && !memcmp(priv->essid, extra, length)
9096 && (priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING))) {
James Ketrenos43f66a62005-03-25 12:31:53 -06009097 IPW_DEBUG_WX("ESSID set to current ESSID.\n");
Zhu Yi46441512006-01-24 16:37:59 +08009098 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009099 return 0;
9100 }
9101
John W. Linville9387b7c2008-09-30 20:59:05 -04009102 IPW_DEBUG_WX("Setting ESSID: '%s' (%d)\n",
9103 print_ssid(ssid, extra, length), length);
James Ketrenos43f66a62005-03-25 12:31:53 -06009104
9105 priv->essid_len = length;
Zhu Yia9f0d422006-08-21 11:37:26 +08009106 memcpy(priv->essid, extra, priv->essid_len);
Jeff Garzikbf794512005-07-31 13:07:26 -04009107
James Ketrenosc848d0a2005-08-24 21:56:24 -05009108 /* Network configuration changed -- force [re]association */
9109 IPW_DEBUG_ASSOC("[re]association triggered due to ESSID change.\n");
9110 if (!ipw_disassociate(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -06009111 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06009112
Zhu Yi46441512006-01-24 16:37:59 +08009113 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009114 return 0;
9115}
9116
Jeff Garzikbf794512005-07-31 13:07:26 -04009117static int ipw_wx_get_essid(struct net_device *dev,
9118 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009119 union iwreq_data *wrqu, char *extra)
9120{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009121 struct ipw_priv *priv = libipw_priv(dev);
John W. Linville9387b7c2008-09-30 20:59:05 -04009122 DECLARE_SSID_BUF(ssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06009123
9124 /* If we are associated, trying to associate, or have a statically
9125 * configured ESSID then return that; otherwise return ANY */
Zhu Yi46441512006-01-24 16:37:59 +08009126 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009127 if (priv->config & CFG_STATIC_ESSID ||
Jeff Garzikbf794512005-07-31 13:07:26 -04009128 priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) {
9129 IPW_DEBUG_WX("Getting essid: '%s'\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04009130 print_ssid(ssid, priv->essid, priv->essid_len));
Jeff Garzikbf794512005-07-31 13:07:26 -04009131 memcpy(extra, priv->essid, priv->essid_len);
James Ketrenos43f66a62005-03-25 12:31:53 -06009132 wrqu->essid.length = priv->essid_len;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009133 wrqu->essid.flags = 1; /* active */
James Ketrenos43f66a62005-03-25 12:31:53 -06009134 } else {
9135 IPW_DEBUG_WX("Getting essid: ANY\n");
9136 wrqu->essid.length = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009137 wrqu->essid.flags = 0; /* active */
James Ketrenos43f66a62005-03-25 12:31:53 -06009138 }
Zhu Yi46441512006-01-24 16:37:59 +08009139 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009140 return 0;
9141}
9142
Jeff Garzikbf794512005-07-31 13:07:26 -04009143static int ipw_wx_set_nick(struct net_device *dev,
9144 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009145 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009146{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009147 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009148
9149 IPW_DEBUG_WX("Setting nick to '%s'\n", extra);
9150 if (wrqu->data.length > IW_ESSID_MAX_SIZE)
9151 return -E2BIG;
Zhu Yi46441512006-01-24 16:37:59 +08009152 mutex_lock(&priv->mutex);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009153 wrqu->data.length = min((size_t) wrqu->data.length, sizeof(priv->nick));
James Ketrenos43f66a62005-03-25 12:31:53 -06009154 memset(priv->nick, 0, sizeof(priv->nick));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009155 memcpy(priv->nick, extra, wrqu->data.length);
James Ketrenos43f66a62005-03-25 12:31:53 -06009156 IPW_DEBUG_TRACE("<<\n");
Zhu Yi46441512006-01-24 16:37:59 +08009157 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009158 return 0;
9159
9160}
9161
Jeff Garzikbf794512005-07-31 13:07:26 -04009162static int ipw_wx_get_nick(struct net_device *dev,
9163 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009164 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009165{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009166 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009167 IPW_DEBUG_WX("Getting nick\n");
Zhu Yi46441512006-01-24 16:37:59 +08009168 mutex_lock(&priv->mutex);
Jean Tourrilhes919ee6d2006-08-29 18:01:40 -07009169 wrqu->data.length = strlen(priv->nick);
James Ketrenos43f66a62005-03-25 12:31:53 -06009170 memcpy(extra, priv->nick, wrqu->data.length);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009171 wrqu->data.flags = 1; /* active */
Zhu Yi46441512006-01-24 16:37:59 +08009172 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009173 return 0;
9174}
9175
Olivier Hochreutiner651be262006-03-08 03:13:55 +08009176static int ipw_wx_set_sens(struct net_device *dev,
9177 struct iw_request_info *info,
9178 union iwreq_data *wrqu, char *extra)
9179{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009180 struct ipw_priv *priv = libipw_priv(dev);
Olivier Hochreutiner651be262006-03-08 03:13:55 +08009181 int err = 0;
9182
9183 IPW_DEBUG_WX("Setting roaming threshold to %d\n", wrqu->sens.value);
9184 IPW_DEBUG_WX("Setting disassociate threshold to %d\n", 3*wrqu->sens.value);
9185 mutex_lock(&priv->mutex);
9186
9187 if (wrqu->sens.fixed == 0)
9188 {
9189 priv->roaming_threshold = IPW_MB_ROAMING_THRESHOLD_DEFAULT;
9190 priv->disassociate_threshold = IPW_MB_DISASSOCIATE_THRESHOLD_DEFAULT;
9191 goto out;
9192 }
9193 if ((wrqu->sens.value > IPW_MB_ROAMING_THRESHOLD_MAX) ||
9194 (wrqu->sens.value < IPW_MB_ROAMING_THRESHOLD_MIN)) {
9195 err = -EINVAL;
9196 goto out;
9197 }
9198
9199 priv->roaming_threshold = wrqu->sens.value;
9200 priv->disassociate_threshold = 3*wrqu->sens.value;
9201 out:
9202 mutex_unlock(&priv->mutex);
9203 return err;
9204}
9205
9206static int ipw_wx_get_sens(struct net_device *dev,
9207 struct iw_request_info *info,
9208 union iwreq_data *wrqu, char *extra)
9209{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009210 struct ipw_priv *priv = libipw_priv(dev);
Olivier Hochreutiner651be262006-03-08 03:13:55 +08009211 mutex_lock(&priv->mutex);
9212 wrqu->sens.fixed = 1;
9213 wrqu->sens.value = priv->roaming_threshold;
9214 mutex_unlock(&priv->mutex);
9215
9216 IPW_DEBUG_WX("GET roaming threshold -> %s %d \n",
9217 wrqu->power.disabled ? "OFF" : "ON", wrqu->power.value);
9218
9219 return 0;
9220}
9221
James Ketrenos43f66a62005-03-25 12:31:53 -06009222static int ipw_wx_set_rate(struct net_device *dev,
9223 struct iw_request_info *info,
9224 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009225{
James Ketrenosea2b26e2005-08-24 21:25:16 -05009226 /* TODO: We should use semaphores or locks for access to priv */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009227 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009228 u32 target_rate = wrqu->bitrate.value;
9229 u32 fixed, mask;
9230
9231 /* value = -1, fixed = 0 means auto only, so we should use all rates offered by AP */
9232 /* value = X, fixed = 1 means only rate X */
9233 /* value = X, fixed = 0 means all rates lower equal X */
9234
9235 if (target_rate == -1) {
9236 fixed = 0;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009237 mask = LIBIPW_DEFAULT_RATES_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009238 /* Now we should reassociate */
9239 goto apply;
9240 }
9241
9242 mask = 0;
9243 fixed = wrqu->bitrate.fixed;
9244
9245 if (target_rate == 1000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009246 mask |= LIBIPW_CCK_RATE_1MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009247 if (target_rate == 1000000)
9248 goto apply;
9249
9250 if (target_rate == 2000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009251 mask |= LIBIPW_CCK_RATE_2MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009252 if (target_rate == 2000000)
9253 goto apply;
9254
9255 if (target_rate == 5500000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009256 mask |= LIBIPW_CCK_RATE_5MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009257 if (target_rate == 5500000)
9258 goto apply;
9259
9260 if (target_rate == 6000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009261 mask |= LIBIPW_OFDM_RATE_6MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009262 if (target_rate == 6000000)
9263 goto apply;
9264
9265 if (target_rate == 9000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009266 mask |= LIBIPW_OFDM_RATE_9MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009267 if (target_rate == 9000000)
9268 goto apply;
9269
9270 if (target_rate == 11000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009271 mask |= LIBIPW_CCK_RATE_11MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009272 if (target_rate == 11000000)
9273 goto apply;
9274
9275 if (target_rate == 12000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009276 mask |= LIBIPW_OFDM_RATE_12MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009277 if (target_rate == 12000000)
9278 goto apply;
9279
9280 if (target_rate == 18000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009281 mask |= LIBIPW_OFDM_RATE_18MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009282 if (target_rate == 18000000)
9283 goto apply;
9284
9285 if (target_rate == 24000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009286 mask |= LIBIPW_OFDM_RATE_24MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009287 if (target_rate == 24000000)
9288 goto apply;
9289
9290 if (target_rate == 36000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009291 mask |= LIBIPW_OFDM_RATE_36MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009292 if (target_rate == 36000000)
9293 goto apply;
9294
9295 if (target_rate == 48000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009296 mask |= LIBIPW_OFDM_RATE_48MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009297 if (target_rate == 48000000)
9298 goto apply;
9299
9300 if (target_rate == 54000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009301 mask |= LIBIPW_OFDM_RATE_54MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009302 if (target_rate == 54000000)
9303 goto apply;
9304
9305 IPW_DEBUG_WX("invalid rate specified, returning error\n");
9306 return -EINVAL;
9307
9308 apply:
9309 IPW_DEBUG_WX("Setting rate mask to 0x%08X [%s]\n",
9310 mask, fixed ? "fixed" : "sub-rates");
Zhu Yi46441512006-01-24 16:37:59 +08009311 mutex_lock(&priv->mutex);
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009312 if (mask == LIBIPW_DEFAULT_RATES_MASK) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05009313 priv->config &= ~CFG_FIXED_RATE;
James Ketrenosb095c382005-08-24 22:04:42 -05009314 ipw_set_fixed_rate(priv, priv->ieee->mode);
9315 } else
James Ketrenosea2b26e2005-08-24 21:25:16 -05009316 priv->config |= CFG_FIXED_RATE;
9317
James Ketrenosc848d0a2005-08-24 21:56:24 -05009318 if (priv->rates_mask == mask) {
9319 IPW_DEBUG_WX("Mask set to current mask.\n");
Zhu Yi46441512006-01-24 16:37:59 +08009320 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009321 return 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009322 }
9323
James Ketrenosc848d0a2005-08-24 21:56:24 -05009324 priv->rates_mask = mask;
9325
9326 /* Network configuration changed -- force [re]association */
9327 IPW_DEBUG_ASSOC("[re]association triggered due to rates change.\n");
9328 if (!ipw_disassociate(priv))
9329 ipw_associate(priv);
9330
Zhu Yi46441512006-01-24 16:37:59 +08009331 mutex_unlock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009332 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009333}
9334
Jeff Garzikbf794512005-07-31 13:07:26 -04009335static int ipw_wx_get_rate(struct net_device *dev,
9336 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009337 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009338{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009339 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009340 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009341 wrqu->bitrate.value = priv->last_rate;
Zhu Yi455936c2006-04-13 17:20:05 +08009342 wrqu->bitrate.fixed = (priv->config & CFG_FIXED_RATE) ? 1 : 0;
Zhu Yi46441512006-01-24 16:37:59 +08009343 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009344 IPW_DEBUG_WX("GET Rate -> %d \n", wrqu->bitrate.value);
9345 return 0;
9346}
9347
Jeff Garzikbf794512005-07-31 13:07:26 -04009348static int ipw_wx_set_rts(struct net_device *dev,
9349 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009350 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009351{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009352 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009353 mutex_lock(&priv->mutex);
Zhu Yiea8862d2007-01-11 17:32:54 +08009354 if (wrqu->rts.disabled || !wrqu->rts.fixed)
James Ketrenos43f66a62005-03-25 12:31:53 -06009355 priv->rts_threshold = DEFAULT_RTS_THRESHOLD;
9356 else {
9357 if (wrqu->rts.value < MIN_RTS_THRESHOLD ||
James Ketrenosc848d0a2005-08-24 21:56:24 -05009358 wrqu->rts.value > MAX_RTS_THRESHOLD) {
Zhu Yi46441512006-01-24 16:37:59 +08009359 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009360 return -EINVAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009361 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009362 priv->rts_threshold = wrqu->rts.value;
9363 }
9364
9365 ipw_send_rts_threshold(priv, priv->rts_threshold);
Zhu Yi46441512006-01-24 16:37:59 +08009366 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009367 IPW_DEBUG_WX("SET RTS Threshold -> %d \n", priv->rts_threshold);
9368 return 0;
9369}
9370
Jeff Garzikbf794512005-07-31 13:07:26 -04009371static int ipw_wx_get_rts(struct net_device *dev,
9372 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009373 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009374{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009375 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009376 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009377 wrqu->rts.value = priv->rts_threshold;
9378 wrqu->rts.fixed = 0; /* no auto select */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009379 wrqu->rts.disabled = (wrqu->rts.value == DEFAULT_RTS_THRESHOLD);
Zhu Yi46441512006-01-24 16:37:59 +08009380 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009381 IPW_DEBUG_WX("GET RTS Threshold -> %d \n", wrqu->rts.value);
9382 return 0;
9383}
9384
Jeff Garzikbf794512005-07-31 13:07:26 -04009385static int ipw_wx_set_txpow(struct net_device *dev,
9386 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009387 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009388{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009389 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009390 int err = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009391
Zhu Yi46441512006-01-24 16:37:59 +08009392 mutex_lock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009393 if (ipw_radio_kill_sw(priv, wrqu->power.disabled)) {
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009394 err = -EINPROGRESS;
9395 goto out;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009396 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009397
James Ketrenosb095c382005-08-24 22:04:42 -05009398 if (!wrqu->power.fixed)
9399 wrqu->power.value = IPW_TX_POWER_DEFAULT;
James Ketrenos43f66a62005-03-25 12:31:53 -06009400
James Ketrenosc848d0a2005-08-24 21:56:24 -05009401 if (wrqu->power.flags != IW_TXPOW_DBM) {
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009402 err = -EINVAL;
9403 goto out;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009404 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009405
James Ketrenosb095c382005-08-24 22:04:42 -05009406 if ((wrqu->power.value > IPW_TX_POWER_MAX) ||
James Ketrenosafbf30a2005-08-25 00:05:33 -05009407 (wrqu->power.value < IPW_TX_POWER_MIN)) {
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009408 err = -EINVAL;
9409 goto out;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009410 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009411
9412 priv->tx_power = wrqu->power.value;
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009413 err = ipw_set_tx_power(priv);
9414 out:
Zhu Yi46441512006-01-24 16:37:59 +08009415 mutex_unlock(&priv->mutex);
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009416 return err;
James Ketrenos43f66a62005-03-25 12:31:53 -06009417}
9418
Jeff Garzikbf794512005-07-31 13:07:26 -04009419static int ipw_wx_get_txpow(struct net_device *dev,
9420 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009421 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009422{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009423 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009424 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009425 wrqu->power.value = priv->tx_power;
9426 wrqu->power.fixed = 1;
9427 wrqu->power.flags = IW_TXPOW_DBM;
9428 wrqu->power.disabled = (priv->status & STATUS_RF_KILL_MASK) ? 1 : 0;
Zhu Yi46441512006-01-24 16:37:59 +08009429 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009430
Jeff Garzikbf794512005-07-31 13:07:26 -04009431 IPW_DEBUG_WX("GET TX Power -> %s %d \n",
Zhu Yi22501c82005-08-11 10:49:17 +08009432 wrqu->power.disabled ? "OFF" : "ON", wrqu->power.value);
James Ketrenos43f66a62005-03-25 12:31:53 -06009433
9434 return 0;
9435}
9436
Jeff Garzikbf794512005-07-31 13:07:26 -04009437static int ipw_wx_set_frag(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009438 struct iw_request_info *info,
9439 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009440{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009441 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009442 mutex_lock(&priv->mutex);
Zhu Yiea8862d2007-01-11 17:32:54 +08009443 if (wrqu->frag.disabled || !wrqu->frag.fixed)
James Ketrenos43f66a62005-03-25 12:31:53 -06009444 priv->ieee->fts = DEFAULT_FTS;
9445 else {
9446 if (wrqu->frag.value < MIN_FRAG_THRESHOLD ||
James Ketrenosb095c382005-08-24 22:04:42 -05009447 wrqu->frag.value > MAX_FRAG_THRESHOLD) {
Zhu Yi46441512006-01-24 16:37:59 +08009448 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009449 return -EINVAL;
James Ketrenosb095c382005-08-24 22:04:42 -05009450 }
Jeff Garzikbf794512005-07-31 13:07:26 -04009451
James Ketrenos43f66a62005-03-25 12:31:53 -06009452 priv->ieee->fts = wrqu->frag.value & ~0x1;
9453 }
9454
9455 ipw_send_frag_threshold(priv, wrqu->frag.value);
Zhu Yi46441512006-01-24 16:37:59 +08009456 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009457 IPW_DEBUG_WX("SET Frag Threshold -> %d \n", wrqu->frag.value);
9458 return 0;
9459}
9460
Jeff Garzikbf794512005-07-31 13:07:26 -04009461static int ipw_wx_get_frag(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009462 struct iw_request_info *info,
9463 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009464{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009465 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009466 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009467 wrqu->frag.value = priv->ieee->fts;
9468 wrqu->frag.fixed = 0; /* no auto select */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009469 wrqu->frag.disabled = (wrqu->frag.value == DEFAULT_FTS);
Zhu Yi46441512006-01-24 16:37:59 +08009470 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009471 IPW_DEBUG_WX("GET Frag Threshold -> %d \n", wrqu->frag.value);
9472
9473 return 0;
9474}
9475
Jeff Garzikbf794512005-07-31 13:07:26 -04009476static int ipw_wx_set_retry(struct net_device *dev,
9477 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009478 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009479{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009480 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009481
9482 if (wrqu->retry.flags & IW_RETRY_LIFETIME || wrqu->retry.disabled)
9483 return -EINVAL;
9484
9485 if (!(wrqu->retry.flags & IW_RETRY_LIMIT))
9486 return 0;
9487
Zhu Yid5f7ac22006-08-21 11:38:17 +08009488 if (wrqu->retry.value < 0 || wrqu->retry.value >= 255)
James Ketrenosafbf30a2005-08-25 00:05:33 -05009489 return -EINVAL;
9490
Zhu Yi46441512006-01-24 16:37:59 +08009491 mutex_lock(&priv->mutex);
Jean Tourrilhes919ee6d2006-08-29 18:01:40 -07009492 if (wrqu->retry.flags & IW_RETRY_SHORT)
James Ketrenosafbf30a2005-08-25 00:05:33 -05009493 priv->short_retry_limit = (u8) wrqu->retry.value;
Jean Tourrilhes919ee6d2006-08-29 18:01:40 -07009494 else if (wrqu->retry.flags & IW_RETRY_LONG)
James Ketrenosafbf30a2005-08-25 00:05:33 -05009495 priv->long_retry_limit = (u8) wrqu->retry.value;
9496 else {
9497 priv->short_retry_limit = (u8) wrqu->retry.value;
9498 priv->long_retry_limit = (u8) wrqu->retry.value;
9499 }
9500
9501 ipw_send_retry_limit(priv, priv->short_retry_limit,
9502 priv->long_retry_limit);
Zhu Yi46441512006-01-24 16:37:59 +08009503 mutex_unlock(&priv->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009504 IPW_DEBUG_WX("SET retry limit -> short:%d long:%d\n",
9505 priv->short_retry_limit, priv->long_retry_limit);
9506 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009507}
9508
Jeff Garzikbf794512005-07-31 13:07:26 -04009509static int ipw_wx_get_retry(struct net_device *dev,
9510 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009511 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009512{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009513 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009514
Zhu Yi46441512006-01-24 16:37:59 +08009515 mutex_lock(&priv->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009516 wrqu->retry.disabled = 0;
9517
9518 if ((wrqu->retry.flags & IW_RETRY_TYPE) == IW_RETRY_LIFETIME) {
Zhu Yi46441512006-01-24 16:37:59 +08009519 mutex_unlock(&priv->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009520 return -EINVAL;
9521 }
9522
Jean Tourrilhes919ee6d2006-08-29 18:01:40 -07009523 if (wrqu->retry.flags & IW_RETRY_LONG) {
9524 wrqu->retry.flags = IW_RETRY_LIMIT | IW_RETRY_LONG;
James Ketrenosafbf30a2005-08-25 00:05:33 -05009525 wrqu->retry.value = priv->long_retry_limit;
Jean Tourrilhes919ee6d2006-08-29 18:01:40 -07009526 } else if (wrqu->retry.flags & IW_RETRY_SHORT) {
9527 wrqu->retry.flags = IW_RETRY_LIMIT | IW_RETRY_SHORT;
James Ketrenosafbf30a2005-08-25 00:05:33 -05009528 wrqu->retry.value = priv->short_retry_limit;
9529 } else {
9530 wrqu->retry.flags = IW_RETRY_LIMIT;
9531 wrqu->retry.value = priv->short_retry_limit;
9532 }
Zhu Yi46441512006-01-24 16:37:59 +08009533 mutex_unlock(&priv->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009534
9535 IPW_DEBUG_WX("GET retry -> %d \n", wrqu->retry.value);
9536
9537 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009538}
9539
Jeff Garzikbf794512005-07-31 13:07:26 -04009540static int ipw_wx_set_scan(struct net_device *dev,
9541 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009542 union iwreq_data *wrqu, char *extra)
9543{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009544 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi094c4d22006-08-21 11:39:03 +08009545 struct iw_scan_req *req = (struct iw_scan_req *)extra;
Dan Williamsea177302008-06-02 17:51:23 -04009546 struct delayed_work *work = NULL;
Zhu Yi094c4d22006-08-21 11:39:03 +08009547
Dan Williams0b531672007-10-09 13:55:24 -04009548 mutex_lock(&priv->mutex);
Dan Williamsea177302008-06-02 17:51:23 -04009549
Dan Williams0b531672007-10-09 13:55:24 -04009550 priv->user_requested_scan = 1;
Dan Williams0b531672007-10-09 13:55:24 -04009551
Zhu Yi094c4d22006-08-21 11:39:03 +08009552 if (wrqu->data.length == sizeof(struct iw_scan_req)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05009553 if (wrqu->data.flags & IW_SCAN_THIS_ESSID) {
Dan Williamsea177302008-06-02 17:51:23 -04009554 int len = min((int)req->essid_len,
9555 (int)sizeof(priv->direct_scan_ssid));
9556 memcpy(priv->direct_scan_ssid, req->essid, len);
9557 priv->direct_scan_ssid_len = len;
9558 work = &priv->request_direct_scan;
9559 } else if (req->scan_type == IW_SCAN_TYPE_PASSIVE) {
9560 work = &priv->request_passive_scan;
James Ketrenosafbf30a2005-08-25 00:05:33 -05009561 }
Dan Williamsea177302008-06-02 17:51:23 -04009562 } else {
9563 /* Normal active broadcast scan */
9564 work = &priv->request_scan;
James Ketrenosafbf30a2005-08-25 00:05:33 -05009565 }
James Ketrenos8935f392005-10-05 15:59:08 -05009566
Dan Williamsea177302008-06-02 17:51:23 -04009567 mutex_unlock(&priv->mutex);
9568
James Ketrenos43f66a62005-03-25 12:31:53 -06009569 IPW_DEBUG_WX("Start scan\n");
James Ketrenosb095c382005-08-24 22:04:42 -05009570
Dan Williamsea177302008-06-02 17:51:23 -04009571 queue_delayed_work(priv->workqueue, work, 0);
James Ketrenosb095c382005-08-24 22:04:42 -05009572
James Ketrenos43f66a62005-03-25 12:31:53 -06009573 return 0;
9574}
9575
Jeff Garzikbf794512005-07-31 13:07:26 -04009576static int ipw_wx_get_scan(struct net_device *dev,
9577 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009578 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009579{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009580 struct ipw_priv *priv = libipw_priv(dev);
9581 return libipw_wx_get_scan(priv->ieee, info, wrqu, extra);
James Ketrenos43f66a62005-03-25 12:31:53 -06009582}
9583
Jeff Garzikbf794512005-07-31 13:07:26 -04009584static int ipw_wx_set_encode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009585 struct iw_request_info *info,
9586 union iwreq_data *wrqu, char *key)
James Ketrenos43f66a62005-03-25 12:31:53 -06009587{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009588 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009589 int ret;
Hong Liucaeff812005-08-05 17:25:50 +08009590 u32 cap = priv->capability;
James Ketrenosafbf30a2005-08-25 00:05:33 -05009591
Zhu Yi46441512006-01-24 16:37:59 +08009592 mutex_lock(&priv->mutex);
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009593 ret = libipw_wx_set_encode(priv->ieee, info, wrqu, key);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009594
Hong Liucaeff812005-08-05 17:25:50 +08009595 /* In IBSS mode, we need to notify the firmware to update
9596 * the beacon info after we changed the capability. */
9597 if (cap != priv->capability &&
9598 priv->ieee->iw_mode == IW_MODE_ADHOC &&
9599 priv->status & STATUS_ASSOCIATED)
9600 ipw_disassociate(priv);
9601
Zhu Yi46441512006-01-24 16:37:59 +08009602 mutex_unlock(&priv->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009603 return ret;
James Ketrenos43f66a62005-03-25 12:31:53 -06009604}
9605
Jeff Garzikbf794512005-07-31 13:07:26 -04009606static int ipw_wx_get_encode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009607 struct iw_request_info *info,
9608 union iwreq_data *wrqu, char *key)
James Ketrenos43f66a62005-03-25 12:31:53 -06009609{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009610 struct ipw_priv *priv = libipw_priv(dev);
9611 return libipw_wx_get_encode(priv->ieee, info, wrqu, key);
James Ketrenos43f66a62005-03-25 12:31:53 -06009612}
9613
Jeff Garzikbf794512005-07-31 13:07:26 -04009614static int ipw_wx_set_power(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009615 struct iw_request_info *info,
9616 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009617{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009618 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009619 int err;
Zhu Yi46441512006-01-24 16:37:59 +08009620 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009621 if (wrqu->power.disabled) {
9622 priv->power_mode = IPW_POWER_LEVEL(priv->power_mode);
9623 err = ipw_send_power_mode(priv, IPW_POWER_MODE_CAM);
9624 if (err) {
9625 IPW_DEBUG_WX("failed setting power mode.\n");
Zhu Yi46441512006-01-24 16:37:59 +08009626 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009627 return err;
9628 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009629 IPW_DEBUG_WX("SET Power Management Mode -> off\n");
Zhu Yi46441512006-01-24 16:37:59 +08009630 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009631 return 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04009632 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009633
9634 switch (wrqu->power.flags & IW_POWER_MODE) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009635 case IW_POWER_ON: /* If not specified */
9636 case IW_POWER_MODE: /* If set all mask */
Jean Delvarec03983a2007-10-19 23:22:55 +02009637 case IW_POWER_ALL_R: /* If explicitly state all */
James Ketrenos43f66a62005-03-25 12:31:53 -06009638 break;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009639 default: /* Otherwise we don't support it */
James Ketrenos43f66a62005-03-25 12:31:53 -06009640 IPW_DEBUG_WX("SET PM Mode: %X not supported.\n",
9641 wrqu->power.flags);
Zhu Yi46441512006-01-24 16:37:59 +08009642 mutex_unlock(&priv->mutex);
Jeff Garzikbf794512005-07-31 13:07:26 -04009643 return -EOPNOTSUPP;
James Ketrenos43f66a62005-03-25 12:31:53 -06009644 }
Jeff Garzikbf794512005-07-31 13:07:26 -04009645
James Ketrenos43f66a62005-03-25 12:31:53 -06009646 /* If the user hasn't specified a power management mode yet, default
9647 * to BATTERY */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009648 if (IPW_POWER_LEVEL(priv->power_mode) == IPW_POWER_AC)
James Ketrenos43f66a62005-03-25 12:31:53 -06009649 priv->power_mode = IPW_POWER_ENABLED | IPW_POWER_BATTERY;
Jeff Garzikbf794512005-07-31 13:07:26 -04009650 else
James Ketrenos43f66a62005-03-25 12:31:53 -06009651 priv->power_mode = IPW_POWER_ENABLED | priv->power_mode;
Zhu Yi4e157f02007-07-12 16:09:32 +08009652
James Ketrenos43f66a62005-03-25 12:31:53 -06009653 err = ipw_send_power_mode(priv, IPW_POWER_LEVEL(priv->power_mode));
9654 if (err) {
9655 IPW_DEBUG_WX("failed setting power mode.\n");
Zhu Yi46441512006-01-24 16:37:59 +08009656 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009657 return err;
9658 }
9659
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009660 IPW_DEBUG_WX("SET Power Management Mode -> 0x%02X\n", priv->power_mode);
Zhu Yi46441512006-01-24 16:37:59 +08009661 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009662 return 0;
9663}
9664
Jeff Garzikbf794512005-07-31 13:07:26 -04009665static int ipw_wx_get_power(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009666 struct iw_request_info *info,
9667 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009668{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009669 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009670 mutex_lock(&priv->mutex);
James Ketrenosa613bff2005-08-24 21:43:11 -05009671 if (!(priv->power_mode & IPW_POWER_ENABLED))
James Ketrenos43f66a62005-03-25 12:31:53 -06009672 wrqu->power.disabled = 1;
James Ketrenosa613bff2005-08-24 21:43:11 -05009673 else
James Ketrenos43f66a62005-03-25 12:31:53 -06009674 wrqu->power.disabled = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009675
Zhu Yi46441512006-01-24 16:37:59 +08009676 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009677 IPW_DEBUG_WX("GET Power Management Mode -> %02X\n", priv->power_mode);
Jeff Garzikbf794512005-07-31 13:07:26 -04009678
James Ketrenos43f66a62005-03-25 12:31:53 -06009679 return 0;
9680}
9681
Jeff Garzikbf794512005-07-31 13:07:26 -04009682static int ipw_wx_set_powermode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009683 struct iw_request_info *info,
9684 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009685{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009686 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009687 int mode = *(int *)extra;
9688 int err;
Zhu Yi4e157f02007-07-12 16:09:32 +08009689
Zhu Yi46441512006-01-24 16:37:59 +08009690 mutex_lock(&priv->mutex);
Zhu Yi4e157f02007-07-12 16:09:32 +08009691 if ((mode < 1) || (mode > IPW_POWER_LIMIT))
James Ketrenos43f66a62005-03-25 12:31:53 -06009692 mode = IPW_POWER_AC;
Jeff Garzikbf794512005-07-31 13:07:26 -04009693
Zhu Yi4e157f02007-07-12 16:09:32 +08009694 if (IPW_POWER_LEVEL(priv->power_mode) != mode) {
James Ketrenos43f66a62005-03-25 12:31:53 -06009695 err = ipw_send_power_mode(priv, mode);
James Ketrenos43f66a62005-03-25 12:31:53 -06009696 if (err) {
9697 IPW_DEBUG_WX("failed setting power mode.\n");
Zhu Yi46441512006-01-24 16:37:59 +08009698 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009699 return err;
9700 }
Zhu Yi4e157f02007-07-12 16:09:32 +08009701 priv->power_mode = IPW_POWER_ENABLED | mode;
James Ketrenos43f66a62005-03-25 12:31:53 -06009702 }
Zhu Yi46441512006-01-24 16:37:59 +08009703 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009704 return 0;
9705}
9706
9707#define MAX_WX_STRING 80
Jeff Garzikbf794512005-07-31 13:07:26 -04009708static int ipw_wx_get_powermode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009709 struct iw_request_info *info,
9710 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009711{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009712 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009713 int level = IPW_POWER_LEVEL(priv->power_mode);
9714 char *p = extra;
9715
9716 p += snprintf(p, MAX_WX_STRING, "Power save level: %d ", level);
9717
9718 switch (level) {
9719 case IPW_POWER_AC:
9720 p += snprintf(p, MAX_WX_STRING - (p - extra), "(AC)");
9721 break;
9722 case IPW_POWER_BATTERY:
9723 p += snprintf(p, MAX_WX_STRING - (p - extra), "(BATTERY)");
9724 break;
9725 default:
9726 p += snprintf(p, MAX_WX_STRING - (p - extra),
Jeff Garzikbf794512005-07-31 13:07:26 -04009727 "(Timeout %dms, Period %dms)",
James Ketrenos43f66a62005-03-25 12:31:53 -06009728 timeout_duration[level - 1] / 1000,
9729 period_duration[level - 1] / 1000);
9730 }
9731
9732 if (!(priv->power_mode & IPW_POWER_ENABLED))
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009733 p += snprintf(p, MAX_WX_STRING - (p - extra), " OFF");
James Ketrenos43f66a62005-03-25 12:31:53 -06009734
9735 wrqu->data.length = p - extra + 1;
9736
9737 return 0;
9738}
9739
9740static int ipw_wx_set_wireless_mode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009741 struct iw_request_info *info,
9742 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009743{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009744 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009745 int mode = *(int *)extra;
9746 u8 band = 0, modulation = 0;
9747
9748 if (mode == 0 || mode & ~IEEE_MODE_MASK) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009749 IPW_WARNING("Attempt to set invalid wireless mode: %d\n", mode);
James Ketrenos43f66a62005-03-25 12:31:53 -06009750 return -EINVAL;
9751 }
Zhu Yi46441512006-01-24 16:37:59 +08009752 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009753 if (priv->adapter == IPW_2915ABG) {
James Ketrenosa33a1982005-09-14 14:28:59 -05009754 priv->ieee->abg_true = 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06009755 if (mode & IEEE_A) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009756 band |= LIBIPW_52GHZ_BAND;
9757 modulation |= LIBIPW_OFDM_MODULATION;
James Ketrenos43f66a62005-03-25 12:31:53 -06009758 } else
James Ketrenosa33a1982005-09-14 14:28:59 -05009759 priv->ieee->abg_true = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009760 } else {
9761 if (mode & IEEE_A) {
9762 IPW_WARNING("Attempt to set 2200BG into "
9763 "802.11a mode\n");
Zhu Yi46441512006-01-24 16:37:59 +08009764 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009765 return -EINVAL;
9766 }
9767
James Ketrenosa33a1982005-09-14 14:28:59 -05009768 priv->ieee->abg_true = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009769 }
9770
9771 if (mode & IEEE_B) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009772 band |= LIBIPW_24GHZ_BAND;
9773 modulation |= LIBIPW_CCK_MODULATION;
James Ketrenos43f66a62005-03-25 12:31:53 -06009774 } else
James Ketrenosa33a1982005-09-14 14:28:59 -05009775 priv->ieee->abg_true = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04009776
James Ketrenos43f66a62005-03-25 12:31:53 -06009777 if (mode & IEEE_G) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009778 band |= LIBIPW_24GHZ_BAND;
9779 modulation |= LIBIPW_OFDM_MODULATION;
James Ketrenos43f66a62005-03-25 12:31:53 -06009780 } else
James Ketrenosa33a1982005-09-14 14:28:59 -05009781 priv->ieee->abg_true = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009782
9783 priv->ieee->mode = mode;
9784 priv->ieee->freq_band = band;
9785 priv->ieee->modulation = modulation;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009786 init_supported_rates(priv, &priv->rates);
James Ketrenos43f66a62005-03-25 12:31:53 -06009787
James Ketrenosc848d0a2005-08-24 21:56:24 -05009788 /* Network configuration changed -- force [re]association */
9789 IPW_DEBUG_ASSOC("[re]association triggered due to mode change.\n");
9790 if (!ipw_disassociate(priv)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06009791 ipw_send_supported_rates(priv, &priv->rates);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009792 ipw_associate(priv);
9793 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009794
James Ketrenosa613bff2005-08-24 21:43:11 -05009795 /* Update the band LEDs */
9796 ipw_led_band_on(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06009797
Jeff Garzikbf794512005-07-31 13:07:26 -04009798 IPW_DEBUG_WX("PRIV SET MODE: %c%c%c\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06009799 mode & IEEE_A ? 'a' : '.',
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009800 mode & IEEE_B ? 'b' : '.', mode & IEEE_G ? 'g' : '.');
Zhu Yi46441512006-01-24 16:37:59 +08009801 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009802 return 0;
9803}
9804
9805static int ipw_wx_get_wireless_mode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009806 struct iw_request_info *info,
9807 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009808{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009809 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009810 mutex_lock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009811 switch (priv->ieee->mode) {
9812 case IEEE_A:
James Ketrenos43f66a62005-03-25 12:31:53 -06009813 strncpy(extra, "802.11a (1)", MAX_WX_STRING);
9814 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009815 case IEEE_B:
9816 strncpy(extra, "802.11b (2)", MAX_WX_STRING);
9817 break;
9818 case IEEE_A | IEEE_B:
9819 strncpy(extra, "802.11ab (3)", MAX_WX_STRING);
9820 break;
9821 case IEEE_G:
9822 strncpy(extra, "802.11g (4)", MAX_WX_STRING);
9823 break;
9824 case IEEE_A | IEEE_G:
9825 strncpy(extra, "802.11ag (5)", MAX_WX_STRING);
9826 break;
9827 case IEEE_B | IEEE_G:
9828 strncpy(extra, "802.11bg (6)", MAX_WX_STRING);
9829 break;
9830 case IEEE_A | IEEE_B | IEEE_G:
9831 strncpy(extra, "802.11abg (7)", MAX_WX_STRING);
9832 break;
9833 default:
9834 strncpy(extra, "unknown", MAX_WX_STRING);
James Ketrenos43f66a62005-03-25 12:31:53 -06009835 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04009836 }
9837
James Ketrenos43f66a62005-03-25 12:31:53 -06009838 IPW_DEBUG_WX("PRIV GET MODE: %s\n", extra);
9839
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009840 wrqu->data.length = strlen(extra) + 1;
Zhu Yi46441512006-01-24 16:37:59 +08009841 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009842
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009843 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009844}
9845
James Ketrenosea2b26e2005-08-24 21:25:16 -05009846static int ipw_wx_set_preamble(struct net_device *dev,
9847 struct iw_request_info *info,
9848 union iwreq_data *wrqu, char *extra)
9849{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009850 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009851 int mode = *(int *)extra;
Zhu Yi46441512006-01-24 16:37:59 +08009852 mutex_lock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009853 /* Switching from SHORT -> LONG requires a disassociation */
9854 if (mode == 1) {
9855 if (!(priv->config & CFG_PREAMBLE_LONG)) {
9856 priv->config |= CFG_PREAMBLE_LONG;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009857
9858 /* Network configuration changed -- force [re]association */
9859 IPW_DEBUG_ASSOC
9860 ("[re]association triggered due to preamble change.\n");
9861 if (!ipw_disassociate(priv))
9862 ipw_associate(priv);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009863 }
9864 goto done;
9865 }
9866
9867 if (mode == 0) {
9868 priv->config &= ~CFG_PREAMBLE_LONG;
9869 goto done;
9870 }
Zhu Yi46441512006-01-24 16:37:59 +08009871 mutex_unlock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009872 return -EINVAL;
9873
9874 done:
Zhu Yi46441512006-01-24 16:37:59 +08009875 mutex_unlock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009876 return 0;
9877}
9878
9879static int ipw_wx_get_preamble(struct net_device *dev,
9880 struct iw_request_info *info,
9881 union iwreq_data *wrqu, char *extra)
9882{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009883 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009884 mutex_lock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009885 if (priv->config & CFG_PREAMBLE_LONG)
9886 snprintf(wrqu->name, IFNAMSIZ, "long (1)");
9887 else
9888 snprintf(wrqu->name, IFNAMSIZ, "auto (0)");
Zhu Yi46441512006-01-24 16:37:59 +08009889 mutex_unlock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009890 return 0;
9891}
9892
James Ketrenosb095c382005-08-24 22:04:42 -05009893#ifdef CONFIG_IPW2200_MONITOR
James Ketrenosea2b26e2005-08-24 21:25:16 -05009894static int ipw_wx_set_monitor(struct net_device *dev,
Jeff Garzikbf794512005-07-31 13:07:26 -04009895 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009896 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009897{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009898 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009899 int *parms = (int *)extra;
9900 int enable = (parms[0] > 0);
Zhu Yi46441512006-01-24 16:37:59 +08009901 mutex_lock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009902 IPW_DEBUG_WX("SET MONITOR: %d %d\n", enable, parms[1]);
James Ketrenos43f66a62005-03-25 12:31:53 -06009903 if (enable) {
9904 if (priv->ieee->iw_mode != IW_MODE_MONITOR) {
Zhu Yi459d4082006-04-13 17:21:00 +08009905#ifdef CONFIG_IPW2200_RADIOTAP
Mike Kershaw24a47db2005-08-26 00:41:54 -05009906 priv->net_dev->type = ARPHRD_IEEE80211_RADIOTAP;
9907#else
James Ketrenos43f66a62005-03-25 12:31:53 -06009908 priv->net_dev->type = ARPHRD_IEEE80211;
Mike Kershaw24a47db2005-08-26 00:41:54 -05009909#endif
James Ketrenosa613bff2005-08-24 21:43:11 -05009910 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06009911 }
Jeff Garzikbf794512005-07-31 13:07:26 -04009912
James Ketrenos43f66a62005-03-25 12:31:53 -06009913 ipw_set_channel(priv, parms[1]);
9914 } else {
James Ketrenosc848d0a2005-08-24 21:56:24 -05009915 if (priv->ieee->iw_mode != IW_MODE_MONITOR) {
Zhu Yi46441512006-01-24 16:37:59 +08009916 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009917 return 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009918 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009919 priv->net_dev->type = ARPHRD_ETHER;
James Ketrenosa613bff2005-08-24 21:43:11 -05009920 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06009921 }
Zhu Yi46441512006-01-24 16:37:59 +08009922 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009923 return 0;
9924}
9925
Pavel Machek67fd6b42006-07-11 15:34:05 +02009926#endif /* CONFIG_IPW2200_MONITOR */
James Ketrenosb095c382005-08-24 22:04:42 -05009927
Jeff Garzikbf794512005-07-31 13:07:26 -04009928static int ipw_wx_reset(struct net_device *dev,
9929 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009930 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009931{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009932 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009933 IPW_DEBUG_WX("RESET\n");
James Ketrenosa613bff2005-08-24 21:43:11 -05009934 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06009935 return 0;
9936}
James Ketrenosb095c382005-08-24 22:04:42 -05009937
James Ketrenosb095c382005-08-24 22:04:42 -05009938static int ipw_wx_sw_reset(struct net_device *dev,
9939 struct iw_request_info *info,
9940 union iwreq_data *wrqu, char *extra)
9941{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009942 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenosb095c382005-08-24 22:04:42 -05009943 union iwreq_data wrqu_sec = {
9944 .encoding = {
9945 .flags = IW_ENCODE_DISABLED,
9946 },
9947 };
James Ketrenosafbf30a2005-08-25 00:05:33 -05009948 int ret;
James Ketrenosb095c382005-08-24 22:04:42 -05009949
9950 IPW_DEBUG_WX("SW_RESET\n");
9951
Zhu Yi46441512006-01-24 16:37:59 +08009952 mutex_lock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05009953
Zhu Yid6d5b5c2006-02-16 16:21:09 +08009954 ret = ipw_sw_reset(priv, 2);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009955 if (!ret) {
9956 free_firmware();
9957 ipw_adapter_restart(priv);
9958 }
James Ketrenosb095c382005-08-24 22:04:42 -05009959
9960 /* The SW reset bit might have been toggled on by the 'disable'
9961 * module parameter, so take appropriate action */
9962 ipw_radio_kill_sw(priv, priv->status & STATUS_RF_KILL_SW);
9963
Zhu Yi46441512006-01-24 16:37:59 +08009964 mutex_unlock(&priv->mutex);
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009965 libipw_wx_set_encode(priv->ieee, info, &wrqu_sec, NULL);
Zhu Yi46441512006-01-24 16:37:59 +08009966 mutex_lock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05009967
9968 if (!(priv->status & STATUS_RF_KILL_MASK)) {
9969 /* Configuration likely changed -- force [re]association */
9970 IPW_DEBUG_ASSOC("[re]association triggered due to sw "
9971 "reset.\n");
9972 if (!ipw_disassociate(priv))
9973 ipw_associate(priv);
9974 }
9975
Zhu Yi46441512006-01-24 16:37:59 +08009976 mutex_unlock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05009977
9978 return 0;
9979}
James Ketrenos43f66a62005-03-25 12:31:53 -06009980
9981/* Rebase the WE IOCTLs to zero for the handler array */
9982#define IW_IOCTL(x) [(x)-SIOCSIWCOMMIT]
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009983static iw_handler ipw_wx_handlers[] = {
John W. Linvillea3caa992009-08-25 14:12:25 -04009984 IW_IOCTL(SIOCGIWNAME) = (iw_handler) cfg80211_wext_giwname,
James Ketrenosea2b26e2005-08-24 21:25:16 -05009985 IW_IOCTL(SIOCSIWFREQ) = ipw_wx_set_freq,
9986 IW_IOCTL(SIOCGIWFREQ) = ipw_wx_get_freq,
9987 IW_IOCTL(SIOCSIWMODE) = ipw_wx_set_mode,
9988 IW_IOCTL(SIOCGIWMODE) = ipw_wx_get_mode,
Olivier Hochreutiner651be262006-03-08 03:13:55 +08009989 IW_IOCTL(SIOCSIWSENS) = ipw_wx_set_sens,
9990 IW_IOCTL(SIOCGIWSENS) = ipw_wx_get_sens,
James Ketrenosea2b26e2005-08-24 21:25:16 -05009991 IW_IOCTL(SIOCGIWRANGE) = ipw_wx_get_range,
9992 IW_IOCTL(SIOCSIWAP) = ipw_wx_set_wap,
9993 IW_IOCTL(SIOCGIWAP) = ipw_wx_get_wap,
9994 IW_IOCTL(SIOCSIWSCAN) = ipw_wx_set_scan,
9995 IW_IOCTL(SIOCGIWSCAN) = ipw_wx_get_scan,
9996 IW_IOCTL(SIOCSIWESSID) = ipw_wx_set_essid,
9997 IW_IOCTL(SIOCGIWESSID) = ipw_wx_get_essid,
9998 IW_IOCTL(SIOCSIWNICKN) = ipw_wx_set_nick,
9999 IW_IOCTL(SIOCGIWNICKN) = ipw_wx_get_nick,
10000 IW_IOCTL(SIOCSIWRATE) = ipw_wx_set_rate,
10001 IW_IOCTL(SIOCGIWRATE) = ipw_wx_get_rate,
10002 IW_IOCTL(SIOCSIWRTS) = ipw_wx_set_rts,
10003 IW_IOCTL(SIOCGIWRTS) = ipw_wx_get_rts,
10004 IW_IOCTL(SIOCSIWFRAG) = ipw_wx_set_frag,
10005 IW_IOCTL(SIOCGIWFRAG) = ipw_wx_get_frag,
10006 IW_IOCTL(SIOCSIWTXPOW) = ipw_wx_set_txpow,
10007 IW_IOCTL(SIOCGIWTXPOW) = ipw_wx_get_txpow,
10008 IW_IOCTL(SIOCSIWRETRY) = ipw_wx_set_retry,
10009 IW_IOCTL(SIOCGIWRETRY) = ipw_wx_get_retry,
10010 IW_IOCTL(SIOCSIWENCODE) = ipw_wx_set_encode,
10011 IW_IOCTL(SIOCGIWENCODE) = ipw_wx_get_encode,
10012 IW_IOCTL(SIOCSIWPOWER) = ipw_wx_set_power,
10013 IW_IOCTL(SIOCGIWPOWER) = ipw_wx_get_power,
James Ketrenosa613bff2005-08-24 21:43:11 -050010014 IW_IOCTL(SIOCSIWSPY) = iw_handler_set_spy,
10015 IW_IOCTL(SIOCGIWSPY) = iw_handler_get_spy,
10016 IW_IOCTL(SIOCSIWTHRSPY) = iw_handler_set_thrspy,
10017 IW_IOCTL(SIOCGIWTHRSPY) = iw_handler_get_thrspy,
James Ketrenosafbf30a2005-08-25 00:05:33 -050010018 IW_IOCTL(SIOCSIWGENIE) = ipw_wx_set_genie,
10019 IW_IOCTL(SIOCGIWGENIE) = ipw_wx_get_genie,
10020 IW_IOCTL(SIOCSIWMLME) = ipw_wx_set_mlme,
10021 IW_IOCTL(SIOCSIWAUTH) = ipw_wx_set_auth,
10022 IW_IOCTL(SIOCGIWAUTH) = ipw_wx_get_auth,
10023 IW_IOCTL(SIOCSIWENCODEEXT) = ipw_wx_set_encodeext,
10024 IW_IOCTL(SIOCGIWENCODEEXT) = ipw_wx_get_encodeext,
James Ketrenos43f66a62005-03-25 12:31:53 -060010025};
10026
James Ketrenosb095c382005-08-24 22:04:42 -050010027enum {
10028 IPW_PRIV_SET_POWER = SIOCIWFIRSTPRIV,
10029 IPW_PRIV_GET_POWER,
10030 IPW_PRIV_SET_MODE,
10031 IPW_PRIV_GET_MODE,
10032 IPW_PRIV_SET_PREAMBLE,
10033 IPW_PRIV_GET_PREAMBLE,
10034 IPW_PRIV_RESET,
10035 IPW_PRIV_SW_RESET,
10036#ifdef CONFIG_IPW2200_MONITOR
10037 IPW_PRIV_SET_MONITOR,
10038#endif
10039};
James Ketrenos43f66a62005-03-25 12:31:53 -060010040
Jeff Garzikbf794512005-07-31 13:07:26 -040010041static struct iw_priv_args ipw_priv_args[] = {
James Ketrenos43f66a62005-03-25 12:31:53 -060010042 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010043 .cmd = IPW_PRIV_SET_POWER,
10044 .set_args = IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
10045 .name = "set_power"},
James Ketrenos43f66a62005-03-25 12:31:53 -060010046 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010047 .cmd = IPW_PRIV_GET_POWER,
10048 .get_args = IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | MAX_WX_STRING,
10049 .name = "get_power"},
James Ketrenos43f66a62005-03-25 12:31:53 -060010050 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010051 .cmd = IPW_PRIV_SET_MODE,
10052 .set_args = IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
10053 .name = "set_mode"},
James Ketrenos43f66a62005-03-25 12:31:53 -060010054 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010055 .cmd = IPW_PRIV_GET_MODE,
10056 .get_args = IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | MAX_WX_STRING,
10057 .name = "get_mode"},
James Ketrenos43f66a62005-03-25 12:31:53 -060010058 {
James Ketrenosea2b26e2005-08-24 21:25:16 -050010059 .cmd = IPW_PRIV_SET_PREAMBLE,
10060 .set_args = IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
10061 .name = "set_preamble"},
10062 {
10063 .cmd = IPW_PRIV_GET_PREAMBLE,
10064 .get_args = IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | IFNAMSIZ,
10065 .name = "get_preamble"},
James Ketrenos43f66a62005-03-25 12:31:53 -060010066 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010067 IPW_PRIV_RESET,
10068 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 0, 0, "reset"},
James Ketrenosb095c382005-08-24 22:04:42 -050010069 {
10070 IPW_PRIV_SW_RESET,
10071 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 0, 0, "sw_reset"},
10072#ifdef CONFIG_IPW2200_MONITOR
10073 {
10074 IPW_PRIV_SET_MONITOR,
10075 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 2, 0, "monitor"},
10076#endif /* CONFIG_IPW2200_MONITOR */
James Ketrenos43f66a62005-03-25 12:31:53 -060010077};
10078
10079static iw_handler ipw_priv_handler[] = {
10080 ipw_wx_set_powermode,
10081 ipw_wx_get_powermode,
10082 ipw_wx_set_wireless_mode,
10083 ipw_wx_get_wireless_mode,
James Ketrenosea2b26e2005-08-24 21:25:16 -050010084 ipw_wx_set_preamble,
10085 ipw_wx_get_preamble,
Jeff Garzikbf794512005-07-31 13:07:26 -040010086 ipw_wx_reset,
James Ketrenosb095c382005-08-24 22:04:42 -050010087 ipw_wx_sw_reset,
10088#ifdef CONFIG_IPW2200_MONITOR
10089 ipw_wx_set_monitor,
James Ketrenos43f66a62005-03-25 12:31:53 -060010090#endif
10091};
10092
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010093static struct iw_handler_def ipw_wx_handler_def = {
James Ketrenosea2b26e2005-08-24 21:25:16 -050010094 .standard = ipw_wx_handlers,
10095 .num_standard = ARRAY_SIZE(ipw_wx_handlers),
10096 .num_private = ARRAY_SIZE(ipw_priv_handler),
10097 .num_private_args = ARRAY_SIZE(ipw_priv_args),
10098 .private = ipw_priv_handler,
10099 .private_args = ipw_priv_args,
Benoit Boissinot97a78ca2005-09-15 17:30:28 +000010100 .get_wireless_stats = ipw_get_wireless_stats,
James Ketrenos43f66a62005-03-25 12:31:53 -060010101};
10102
James Ketrenos43f66a62005-03-25 12:31:53 -060010103/*
10104 * Get wireless statistics.
10105 * Called by /proc/net/wireless
10106 * Also called by SIOCGIWSTATS
10107 */
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010108static struct iw_statistics *ipw_get_wireless_stats(struct net_device *dev)
James Ketrenos43f66a62005-03-25 12:31:53 -060010109{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010110 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060010111 struct iw_statistics *wstats;
Jeff Garzikbf794512005-07-31 13:07:26 -040010112
James Ketrenos43f66a62005-03-25 12:31:53 -060010113 wstats = &priv->wstats;
10114
James Ketrenosea2b26e2005-08-24 21:25:16 -050010115 /* if hw is disabled, then ipw_get_ordinal() can't be called.
James Ketrenosafbf30a2005-08-25 00:05:33 -050010116 * netdev->get_wireless_stats seems to be called before fw is
James Ketrenos43f66a62005-03-25 12:31:53 -060010117 * initialized. STATUS_ASSOCIATED will only be set if the hw is up
10118 * and associated; if not associcated, the values are all meaningless
10119 * anyway, so set them all to NULL and INVALID */
10120 if (!(priv->status & STATUS_ASSOCIATED)) {
10121 wstats->miss.beacon = 0;
10122 wstats->discard.retries = 0;
10123 wstats->qual.qual = 0;
10124 wstats->qual.level = 0;
10125 wstats->qual.noise = 0;
10126 wstats->qual.updated = 7;
10127 wstats->qual.updated |= IW_QUAL_NOISE_INVALID |
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010128 IW_QUAL_QUAL_INVALID | IW_QUAL_LEVEL_INVALID;
James Ketrenos43f66a62005-03-25 12:31:53 -060010129 return wstats;
Jeff Garzikbf794512005-07-31 13:07:26 -040010130 }
James Ketrenos43f66a62005-03-25 12:31:53 -060010131
10132 wstats->qual.qual = priv->quality;
Zhu Yi00d21de2006-04-13 17:19:02 +080010133 wstats->qual.level = priv->exp_avg_rssi;
10134 wstats->qual.noise = priv->exp_avg_noise;
James Ketrenos43f66a62005-03-25 12:31:53 -060010135 wstats->qual.updated = IW_QUAL_QUAL_UPDATED | IW_QUAL_LEVEL_UPDATED |
Bill Mossb1916082006-02-15 08:50:18 +080010136 IW_QUAL_NOISE_UPDATED | IW_QUAL_DBM;
James Ketrenos43f66a62005-03-25 12:31:53 -060010137
10138 wstats->miss.beacon = average_value(&priv->average_missed_beacons);
10139 wstats->discard.retries = priv->last_tx_failures;
10140 wstats->discard.code = priv->ieee->ieee_stats.rx_discards_undecryptable;
Jeff Garzikbf794512005-07-31 13:07:26 -040010141
James Ketrenos43f66a62005-03-25 12:31:53 -060010142/* if (ipw_get_ordinal(priv, IPW_ORD_STAT_TX_RETRY, &tx_retry, &len))
10143 goto fail_get_ordinal;
10144 wstats->discard.retries += tx_retry; */
Jeff Garzikbf794512005-07-31 13:07:26 -040010145
James Ketrenos43f66a62005-03-25 12:31:53 -060010146 return wstats;
10147}
10148
James Ketrenos43f66a62005-03-25 12:31:53 -060010149/* net device stuff */
10150
Arjan van de Ven858119e2006-01-14 13:20:43 -080010151static void init_sys_config(struct ipw_sys_config *sys_config)
James Ketrenos43f66a62005-03-25 12:31:53 -060010152{
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010153 memset(sys_config, 0, sizeof(struct ipw_sys_config));
Zhu Yi810dabd2006-01-24 16:36:59 +080010154 sys_config->bt_coexistence = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060010155 sys_config->answer_broadcast_ssid_probe = 0;
10156 sys_config->accept_all_data_frames = 0;
10157 sys_config->accept_non_directed_frames = 1;
10158 sys_config->exclude_unicast_unencrypted = 0;
10159 sys_config->disable_unicast_decryption = 1;
10160 sys_config->exclude_multicast_unencrypted = 0;
10161 sys_config->disable_multicast_decryption = 1;
Zhu Yid2b83e12006-04-13 17:19:36 +080010162 if (antenna < CFG_SYS_ANTENNA_BOTH || antenna > CFG_SYS_ANTENNA_B)
10163 antenna = CFG_SYS_ANTENNA_BOTH;
10164 sys_config->antenna_diversity = antenna;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010165 sys_config->pass_crc_to_host = 0; /* TODO: See if 1 gives us FCS */
James Ketrenos43f66a62005-03-25 12:31:53 -060010166 sys_config->dot11g_auto_detection = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -040010167 sys_config->enable_cts_to_self = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060010168 sys_config->bt_coexist_collision_thr = 0;
Pavel Machek67fd6b42006-07-11 15:34:05 +020010169 sys_config->pass_noise_stats_to_host = 1; /* 1 -- fix for 256 */
Cahill, Ben M12977152006-03-08 02:58:02 +080010170 sys_config->silence_threshold = 0x1e;
James Ketrenos43f66a62005-03-25 12:31:53 -060010171}
10172
10173static int ipw_net_open(struct net_device *dev)
10174{
James Ketrenos43f66a62005-03-25 12:31:53 -060010175 IPW_DEBUG_INFO("dev->open\n");
David S. Miller521c4d92008-07-22 18:32:47 -070010176 netif_start_queue(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060010177 return 0;
10178}
10179
10180static int ipw_net_stop(struct net_device *dev)
10181{
10182 IPW_DEBUG_INFO("dev->close\n");
10183 netif_stop_queue(dev);
10184 return 0;
10185}
10186
10187/*
10188todo:
10189
10190modify to send one tfd per fragment instead of using chunking. otherwise
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010191we need to heavily modify the libipw_skb_to_txb.
James Ketrenos43f66a62005-03-25 12:31:53 -060010192*/
10193
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010194static int ipw_tx_skb(struct ipw_priv *priv, struct libipw_txb *txb,
James Ketrenos227d2dc2005-07-28 16:25:55 -050010195 int pri)
James Ketrenos43f66a62005-03-25 12:31:53 -060010196{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010197 struct libipw_hdr_3addrqos *hdr = (struct libipw_hdr_3addrqos *)
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010198 txb->fragments[0]->data;
James Ketrenos43f66a62005-03-25 12:31:53 -060010199 int i = 0;
10200 struct tfd_frame *tfd;
Zhu Yie43e3c12006-04-13 17:20:45 +080010201#ifdef CONFIG_IPW2200_QOS
James Ketrenosb095c382005-08-24 22:04:42 -050010202 int tx_id = ipw_get_tx_queue_number(priv, pri);
10203 struct clx2_tx_queue *txq = &priv->txq[tx_id];
10204#else
James Ketrenos43f66a62005-03-25 12:31:53 -060010205 struct clx2_tx_queue *txq = &priv->txq[0];
James Ketrenosb095c382005-08-24 22:04:42 -050010206#endif
James Ketrenos43f66a62005-03-25 12:31:53 -060010207 struct clx2_queue *q = &txq->q;
10208 u8 id, hdr_len, unicast;
James Ketrenosc848d0a2005-08-24 21:56:24 -050010209 int fc;
James Ketrenos43f66a62005-03-25 12:31:53 -060010210
Zhu Yib8ddafd2008-11-27 13:42:20 +080010211 if (!(priv->status & STATUS_ASSOCIATED))
10212 goto drop;
10213
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010214 hdr_len = libipw_get_hdrlen(le16_to_cpu(hdr->frame_ctl));
James Ketrenos43f66a62005-03-25 12:31:53 -060010215 switch (priv->ieee->iw_mode) {
10216 case IW_MODE_ADHOC:
Stephen Hemminger3c190652006-01-03 15:27:38 -080010217 unicast = !is_multicast_ether_addr(hdr->addr1);
James Ketrenos43f66a62005-03-25 12:31:53 -060010218 id = ipw_find_station(priv, hdr->addr1);
10219 if (id == IPW_INVALID_STATION) {
10220 id = ipw_add_station(priv, hdr->addr1);
10221 if (id == IPW_INVALID_STATION) {
10222 IPW_WARNING("Attempt to send data to "
Johannes Berge1749612008-10-27 15:59:26 -070010223 "invalid cell: %pM\n",
10224 hdr->addr1);
James Ketrenos43f66a62005-03-25 12:31:53 -060010225 goto drop;
10226 }
10227 }
10228 break;
10229
10230 case IW_MODE_INFRA:
10231 default:
Stephen Hemminger3c190652006-01-03 15:27:38 -080010232 unicast = !is_multicast_ether_addr(hdr->addr3);
James Ketrenos43f66a62005-03-25 12:31:53 -060010233 id = 0;
10234 break;
10235 }
10236
10237 tfd = &txq->bd[q->first_empty];
10238 txq->txb[q->first_empty] = txb;
10239 memset(tfd, 0, sizeof(*tfd));
10240 tfd->u.data.station_number = id;
10241
10242 tfd->control_flags.message_type = TX_FRAME_TYPE;
10243 tfd->control_flags.control_bits = TFD_NEED_IRQ_MASK;
10244
10245 tfd->u.data.cmd_id = DINO_CMD_TX;
James Ketrenosa613bff2005-08-24 21:43:11 -050010246 tfd->u.data.len = cpu_to_le16(txb->payload_size);
Jeff Garzikbf794512005-07-31 13:07:26 -040010247
James Ketrenos43f66a62005-03-25 12:31:53 -060010248 if (priv->assoc_request.ieee_mode == IPW_B_MODE)
James Ketrenosb095c382005-08-24 22:04:42 -050010249 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_MODE_CCK;
James Ketrenos43f66a62005-03-25 12:31:53 -060010250 else
James Ketrenosb095c382005-08-24 22:04:42 -050010251 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_MODE_OFDM;
James Ketrenos43f66a62005-03-25 12:31:53 -060010252
James Ketrenosea2b26e2005-08-24 21:25:16 -050010253 if (priv->assoc_request.preamble_length == DCT_FLAG_SHORT_PREAMBLE)
10254 tfd->u.data.tx_flags |= DCT_FLAG_SHORT_PREAMBLE;
James Ketrenos43f66a62005-03-25 12:31:53 -060010255
James Ketrenosc848d0a2005-08-24 21:56:24 -050010256 fc = le16_to_cpu(hdr->frame_ctl);
10257 hdr->frame_ctl = cpu_to_le16(fc & ~IEEE80211_FCTL_MOREFRAGS);
James Ketrenos43f66a62005-03-25 12:31:53 -060010258
10259 memcpy(&tfd->u.data.tfd.tfd_24.mchdr, hdr, hdr_len);
10260
James Ketrenosb095c382005-08-24 22:04:42 -050010261 if (likely(unicast))
10262 tfd->u.data.tx_flags |= DCT_FLAG_ACK_REQD;
10263
10264 if (txb->encrypted && !priv->ieee->host_encrypt) {
10265 switch (priv->ieee->sec.level) {
10266 case SEC_LEVEL_3:
10267 tfd->u.data.tfd.tfd_24.mchdr.frame_ctl |=
Zhu Yi851ca262006-08-21 11:37:58 +080010268 cpu_to_le16(IEEE80211_FCTL_PROTECTED);
James Ketrenosb095c382005-08-24 22:04:42 -050010269 /* XXX: ACK flag must be set for CCMP even if it
10270 * is a multicast/broadcast packet, because CCMP
10271 * group communication encrypted by GTK is
10272 * actually done by the AP. */
10273 if (!unicast)
10274 tfd->u.data.tx_flags |= DCT_FLAG_ACK_REQD;
10275
10276 tfd->u.data.tx_flags &= ~DCT_FLAG_NO_WEP;
10277 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_SECURITY_CCM;
10278 tfd->u.data.key_index = 0;
10279 tfd->u.data.key_index |= DCT_WEP_INDEX_USE_IMMEDIATE;
10280 break;
10281 case SEC_LEVEL_2:
10282 tfd->u.data.tfd.tfd_24.mchdr.frame_ctl |=
Zhu Yi851ca262006-08-21 11:37:58 +080010283 cpu_to_le16(IEEE80211_FCTL_PROTECTED);
James Ketrenosb095c382005-08-24 22:04:42 -050010284 tfd->u.data.tx_flags &= ~DCT_FLAG_NO_WEP;
10285 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_SECURITY_TKIP;
10286 tfd->u.data.key_index = DCT_WEP_INDEX_USE_IMMEDIATE;
10287 break;
10288 case SEC_LEVEL_1:
10289 tfd->u.data.tfd.tfd_24.mchdr.frame_ctl |=
Zhu Yi851ca262006-08-21 11:37:58 +080010290 cpu_to_le16(IEEE80211_FCTL_PROTECTED);
John W. Linville274bfb82008-10-29 11:35:05 -040010291 tfd->u.data.key_index = priv->ieee->crypt_info.tx_keyidx;
10292 if (priv->ieee->sec.key_sizes[priv->ieee->crypt_info.tx_keyidx] <=
James Ketrenosb095c382005-08-24 22:04:42 -050010293 40)
10294 tfd->u.data.key_index |= DCT_WEP_KEY_64Bit;
10295 else
10296 tfd->u.data.key_index |= DCT_WEP_KEY_128Bit;
10297 break;
10298 case SEC_LEVEL_0:
10299 break;
10300 default:
10301 printk(KERN_ERR "Unknow security level %d\n",
10302 priv->ieee->sec.level);
10303 break;
10304 }
10305 } else
10306 /* No hardware encryption */
10307 tfd->u.data.tx_flags |= DCT_FLAG_NO_WEP;
10308
Zhu Yie43e3c12006-04-13 17:20:45 +080010309#ifdef CONFIG_IPW2200_QOS
Zhu Yia5cf4fe2006-04-13 17:19:11 +080010310 if (fc & IEEE80211_STYPE_QOS_DATA)
10311 ipw_qos_set_tx_queue_command(priv, pri, &(tfd->u.data));
Zhu Yie43e3c12006-04-13 17:20:45 +080010312#endif /* CONFIG_IPW2200_QOS */
James Ketrenosb095c382005-08-24 22:04:42 -050010313
James Ketrenos43f66a62005-03-25 12:31:53 -060010314 /* payload */
James Ketrenosa613bff2005-08-24 21:43:11 -050010315 tfd->u.data.num_chunks = cpu_to_le32(min((u8) (NUM_TFD_CHUNKS - 2),
10316 txb->nr_frags));
10317 IPW_DEBUG_FRAG("%i fragments being sent as %i chunks.\n",
10318 txb->nr_frags, le32_to_cpu(tfd->u.data.num_chunks));
10319 for (i = 0; i < le32_to_cpu(tfd->u.data.num_chunks); i++) {
10320 IPW_DEBUG_FRAG("Adding fragment %i of %i (%d bytes).\n",
10321 i, le32_to_cpu(tfd->u.data.num_chunks),
10322 txb->fragments[i]->len - hdr_len);
Jeff Garzikbf794512005-07-31 13:07:26 -040010323 IPW_DEBUG_TX("Dumping TX packet frag %i of %i (%d bytes):\n",
James Ketrenos43f66a62005-03-25 12:31:53 -060010324 i, tfd->u.data.num_chunks,
10325 txb->fragments[i]->len - hdr_len);
Jeff Garzikbf794512005-07-31 13:07:26 -040010326 printk_buf(IPW_DL_TX, txb->fragments[i]->data + hdr_len,
James Ketrenos43f66a62005-03-25 12:31:53 -060010327 txb->fragments[i]->len - hdr_len);
10328
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010329 tfd->u.data.chunk_ptr[i] =
James Ketrenosa613bff2005-08-24 21:43:11 -050010330 cpu_to_le32(pci_map_single
10331 (priv->pci_dev,
10332 txb->fragments[i]->data + hdr_len,
10333 txb->fragments[i]->len - hdr_len,
10334 PCI_DMA_TODEVICE));
10335 tfd->u.data.chunk_len[i] =
10336 cpu_to_le16(txb->fragments[i]->len - hdr_len);
James Ketrenos43f66a62005-03-25 12:31:53 -060010337 }
10338
10339 if (i != txb->nr_frags) {
10340 struct sk_buff *skb;
10341 u16 remaining_bytes = 0;
10342 int j;
10343
10344 for (j = i; j < txb->nr_frags; j++)
10345 remaining_bytes += txb->fragments[j]->len - hdr_len;
10346
10347 printk(KERN_INFO "Trying to reallocate for %d bytes\n",
10348 remaining_bytes);
10349 skb = alloc_skb(remaining_bytes, GFP_ATOMIC);
10350 if (skb != NULL) {
James Ketrenosa613bff2005-08-24 21:43:11 -050010351 tfd->u.data.chunk_len[i] = cpu_to_le16(remaining_bytes);
James Ketrenos43f66a62005-03-25 12:31:53 -060010352 for (j = i; j < txb->nr_frags; j++) {
10353 int size = txb->fragments[j]->len - hdr_len;
James Ketrenosafbf30a2005-08-25 00:05:33 -050010354
James Ketrenos43f66a62005-03-25 12:31:53 -060010355 printk(KERN_INFO "Adding frag %d %d...\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010356 j, size);
James Ketrenos43f66a62005-03-25 12:31:53 -060010357 memcpy(skb_put(skb, size),
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010358 txb->fragments[j]->data + hdr_len, size);
James Ketrenos43f66a62005-03-25 12:31:53 -060010359 }
10360 dev_kfree_skb_any(txb->fragments[i]);
10361 txb->fragments[i] = skb;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010362 tfd->u.data.chunk_ptr[i] =
James Ketrenosa613bff2005-08-24 21:43:11 -050010363 cpu_to_le32(pci_map_single
10364 (priv->pci_dev, skb->data,
Al Viro49587302007-12-27 01:57:47 -050010365 remaining_bytes,
James Ketrenosa613bff2005-08-24 21:43:11 -050010366 PCI_DMA_TODEVICE));
10367
Marcin Slusarz5c058632008-02-13 00:06:12 +010010368 le32_add_cpu(&tfd->u.data.num_chunks, 1);
Jeff Garzikbf794512005-07-31 13:07:26 -040010369 }
James Ketrenos43f66a62005-03-25 12:31:53 -060010370 }
10371
10372 /* kick DMA */
10373 q->first_empty = ipw_queue_inc_wrap(q->first_empty, q->n_bd);
10374 ipw_write32(priv, q->reg_w, q->first_empty);
10375
Dan Williams943dbef2008-02-14 17:49:41 -050010376 if (ipw_tx_queue_space(q) < q->high_mark)
James Ketrenosf6970142006-02-14 09:10:51 +080010377 netif_stop_queue(priv->net_dev);
10378
James Ketrenos227d2dc2005-07-28 16:25:55 -050010379 return NETDEV_TX_OK;
James Ketrenos43f66a62005-03-25 12:31:53 -060010380
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010381 drop:
James Ketrenos43f66a62005-03-25 12:31:53 -060010382 IPW_DEBUG_DROP("Silently dropping Tx packet.\n");
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010383 libipw_txb_free(txb);
James Ketrenos227d2dc2005-07-28 16:25:55 -050010384 return NETDEV_TX_OK;
10385}
10386
10387static int ipw_net_is_queue_full(struct net_device *dev, int pri)
10388{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010389 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yie43e3c12006-04-13 17:20:45 +080010390#ifdef CONFIG_IPW2200_QOS
James Ketrenos227d2dc2005-07-28 16:25:55 -050010391 int tx_id = ipw_get_tx_queue_number(priv, pri);
10392 struct clx2_tx_queue *txq = &priv->txq[tx_id];
10393#else
10394 struct clx2_tx_queue *txq = &priv->txq[0];
Zhu Yie43e3c12006-04-13 17:20:45 +080010395#endif /* CONFIG_IPW2200_QOS */
James Ketrenos227d2dc2005-07-28 16:25:55 -050010396
Dan Williams943dbef2008-02-14 17:49:41 -050010397 if (ipw_tx_queue_space(&txq->q) < txq->q.high_mark)
James Ketrenos227d2dc2005-07-28 16:25:55 -050010398 return 1;
10399
10400 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060010401}
10402
Zhu Yid685b8c2006-04-13 17:20:27 +080010403#ifdef CONFIG_IPW2200_PROMISCUOUS
10404static void ipw_handle_promiscuous_tx(struct ipw_priv *priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010405 struct libipw_txb *txb)
Zhu Yid685b8c2006-04-13 17:20:27 +080010406{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010407 struct libipw_rx_stats dummystats;
Zhu Yid685b8c2006-04-13 17:20:27 +080010408 struct ieee80211_hdr *hdr;
10409 u8 n;
10410 u16 filter = priv->prom_priv->filter;
10411 int hdr_only = 0;
10412
10413 if (filter & IPW_PROM_NO_TX)
10414 return;
10415
10416 memset(&dummystats, 0, sizeof(dummystats));
10417
10418 /* Filtering of fragment chains is done agains the first fragment */
10419 hdr = (void *)txb->fragments[0]->data;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010420 if (libipw_is_management(le16_to_cpu(hdr->frame_control))) {
Zhu Yid685b8c2006-04-13 17:20:27 +080010421 if (filter & IPW_PROM_NO_MGMT)
10422 return;
10423 if (filter & IPW_PROM_MGMT_HEADER_ONLY)
10424 hdr_only = 1;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010425 } else if (libipw_is_control(le16_to_cpu(hdr->frame_control))) {
Zhu Yid685b8c2006-04-13 17:20:27 +080010426 if (filter & IPW_PROM_NO_CTL)
10427 return;
10428 if (filter & IPW_PROM_CTL_HEADER_ONLY)
10429 hdr_only = 1;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010430 } else if (libipw_is_data(le16_to_cpu(hdr->frame_control))) {
Zhu Yid685b8c2006-04-13 17:20:27 +080010431 if (filter & IPW_PROM_NO_DATA)
10432 return;
10433 if (filter & IPW_PROM_DATA_HEADER_ONLY)
10434 hdr_only = 1;
10435 }
10436
10437 for(n=0; n<txb->nr_frags; ++n) {
10438 struct sk_buff *src = txb->fragments[n];
10439 struct sk_buff *dst;
10440 struct ieee80211_radiotap_header *rt_hdr;
10441 int len;
10442
10443 if (hdr_only) {
10444 hdr = (void *)src->data;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010445 len = libipw_get_hdrlen(le16_to_cpu(hdr->frame_control));
Zhu Yid685b8c2006-04-13 17:20:27 +080010446 } else
10447 len = src->len;
10448
Johannes Berg007e5dd2008-11-27 23:13:38 +010010449 dst = alloc_skb(len + sizeof(*rt_hdr), GFP_ATOMIC);
10450 if (!dst)
10451 continue;
Zhu Yid685b8c2006-04-13 17:20:27 +080010452
10453 rt_hdr = (void *)skb_put(dst, sizeof(*rt_hdr));
10454
10455 rt_hdr->it_version = PKTHDR_RADIOTAP_VERSION;
10456 rt_hdr->it_pad = 0;
10457 rt_hdr->it_present = 0; /* after all, it's just an idea */
Al Viro743b84d2007-12-27 01:43:16 -050010458 rt_hdr->it_present |= cpu_to_le32(1 << IEEE80211_RADIOTAP_CHANNEL);
Zhu Yid685b8c2006-04-13 17:20:27 +080010459
Al Viroe62e1ee2007-12-27 01:36:46 -050010460 *(__le16*)skb_put(dst, sizeof(u16)) = cpu_to_le16(
Zhu Yid685b8c2006-04-13 17:20:27 +080010461 ieee80211chan2mhz(priv->channel));
10462 if (priv->channel > 14) /* 802.11a */
Al Viroe62e1ee2007-12-27 01:36:46 -050010463 *(__le16*)skb_put(dst, sizeof(u16)) =
Zhu Yid685b8c2006-04-13 17:20:27 +080010464 cpu_to_le16(IEEE80211_CHAN_OFDM |
10465 IEEE80211_CHAN_5GHZ);
10466 else if (priv->ieee->mode == IEEE_B) /* 802.11b */
Al Viroe62e1ee2007-12-27 01:36:46 -050010467 *(__le16*)skb_put(dst, sizeof(u16)) =
Zhu Yid685b8c2006-04-13 17:20:27 +080010468 cpu_to_le16(IEEE80211_CHAN_CCK |
10469 IEEE80211_CHAN_2GHZ);
10470 else /* 802.11g */
Al Viroe62e1ee2007-12-27 01:36:46 -050010471 *(__le16*)skb_put(dst, sizeof(u16)) =
Zhu Yid685b8c2006-04-13 17:20:27 +080010472 cpu_to_le16(IEEE80211_CHAN_OFDM |
10473 IEEE80211_CHAN_2GHZ);
10474
Al Viro743b84d2007-12-27 01:43:16 -050010475 rt_hdr->it_len = cpu_to_le16(dst->len);
Zhu Yid685b8c2006-04-13 17:20:27 +080010476
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -030010477 skb_copy_from_linear_data(src, skb_put(dst, len), len);
Zhu Yid685b8c2006-04-13 17:20:27 +080010478
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010479 if (!libipw_rx(priv->prom_priv->ieee, dst, &dummystats))
Zhu Yid685b8c2006-04-13 17:20:27 +080010480 dev_kfree_skb_any(dst);
10481 }
10482}
10483#endif
10484
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +000010485static netdev_tx_t ipw_net_hard_start_xmit(struct libipw_txb *txb,
10486 struct net_device *dev, int pri)
James Ketrenos43f66a62005-03-25 12:31:53 -060010487{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010488 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060010489 unsigned long flags;
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +000010490 netdev_tx_t ret;
James Ketrenos43f66a62005-03-25 12:31:53 -060010491
10492 IPW_DEBUG_TX("dev->xmit(%d bytes)\n", txb->payload_size);
James Ketrenos43f66a62005-03-25 12:31:53 -060010493 spin_lock_irqsave(&priv->lock, flags);
10494
Zhu Yid685b8c2006-04-13 17:20:27 +080010495#ifdef CONFIG_IPW2200_PROMISCUOUS
10496 if (rtap_iface && netif_running(priv->prom_net_dev))
10497 ipw_handle_promiscuous_tx(priv, txb);
10498#endif
10499
James Ketrenos227d2dc2005-07-28 16:25:55 -050010500 ret = ipw_tx_skb(priv, txb, pri);
10501 if (ret == NETDEV_TX_OK)
10502 __ipw_led_activity_on(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060010503 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -060010504
James Ketrenos227d2dc2005-07-28 16:25:55 -050010505 return ret;
James Ketrenos43f66a62005-03-25 12:31:53 -060010506}
10507
James Ketrenos43f66a62005-03-25 12:31:53 -060010508static void ipw_net_set_multicast_list(struct net_device *dev)
10509{
10510
10511}
10512
10513static int ipw_net_set_mac_address(struct net_device *dev, void *p)
10514{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010515 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060010516 struct sockaddr *addr = p;
Joe Perches0795af52007-10-03 17:59:30 -070010517
James Ketrenos43f66a62005-03-25 12:31:53 -060010518 if (!is_valid_ether_addr(addr->sa_data))
10519 return -EADDRNOTAVAIL;
Zhu Yi46441512006-01-24 16:37:59 +080010520 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060010521 priv->config |= CFG_CUSTOM_MAC;
10522 memcpy(priv->mac_addr, addr->sa_data, ETH_ALEN);
Johannes Berge1749612008-10-27 15:59:26 -070010523 printk(KERN_INFO "%s: Setting MAC to %pM\n",
10524 priv->net_dev->name, priv->mac_addr);
James Ketrenosa613bff2005-08-24 21:43:11 -050010525 queue_work(priv->workqueue, &priv->adapter_restart);
Zhu Yi46441512006-01-24 16:37:59 +080010526 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060010527 return 0;
10528}
10529
Jeff Garzikbf794512005-07-31 13:07:26 -040010530static void ipw_ethtool_get_drvinfo(struct net_device *dev,
James Ketrenos43f66a62005-03-25 12:31:53 -060010531 struct ethtool_drvinfo *info)
10532{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010533 struct ipw_priv *p = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060010534 char vers[64];
10535 char date[32];
10536 u32 len;
10537
10538 strcpy(info->driver, DRV_NAME);
10539 strcpy(info->version, DRV_VERSION);
10540
10541 len = sizeof(vers);
10542 ipw_get_ordinal(p, IPW_ORD_STAT_FW_VERSION, vers, &len);
10543 len = sizeof(date);
10544 ipw_get_ordinal(p, IPW_ORD_STAT_FW_DATE, date, &len);
10545
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010546 snprintf(info->fw_version, sizeof(info->fw_version), "%s (%s)",
James Ketrenos43f66a62005-03-25 12:31:53 -060010547 vers, date);
10548 strcpy(info->bus_info, pci_name(p->pci_dev));
James Ketrenosb095c382005-08-24 22:04:42 -050010549 info->eedump_len = IPW_EEPROM_IMAGE_SIZE;
James Ketrenos43f66a62005-03-25 12:31:53 -060010550}
10551
10552static u32 ipw_ethtool_get_link(struct net_device *dev)
10553{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010554 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060010555 return (priv->status & STATUS_ASSOCIATED) != 0;
10556}
10557
10558static int ipw_ethtool_get_eeprom_len(struct net_device *dev)
10559{
James Ketrenosb095c382005-08-24 22:04:42 -050010560 return IPW_EEPROM_IMAGE_SIZE;
James Ketrenos43f66a62005-03-25 12:31:53 -060010561}
10562
10563static int ipw_ethtool_get_eeprom(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010564 struct ethtool_eeprom *eeprom, u8 * bytes)
James Ketrenos43f66a62005-03-25 12:31:53 -060010565{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010566 struct ipw_priv *p = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060010567
James Ketrenosb095c382005-08-24 22:04:42 -050010568 if (eeprom->offset + eeprom->len > IPW_EEPROM_IMAGE_SIZE)
James Ketrenos43f66a62005-03-25 12:31:53 -060010569 return -EINVAL;
Zhu Yi46441512006-01-24 16:37:59 +080010570 mutex_lock(&p->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010571 memcpy(bytes, &p->eeprom[eeprom->offset], eeprom->len);
Zhu Yi46441512006-01-24 16:37:59 +080010572 mutex_unlock(&p->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060010573 return 0;
10574}
10575
10576static int ipw_ethtool_set_eeprom(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010577 struct ethtool_eeprom *eeprom, u8 * bytes)
James Ketrenos43f66a62005-03-25 12:31:53 -060010578{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010579 struct ipw_priv *p = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060010580 int i;
10581
James Ketrenosb095c382005-08-24 22:04:42 -050010582 if (eeprom->offset + eeprom->len > IPW_EEPROM_IMAGE_SIZE)
James Ketrenos43f66a62005-03-25 12:31:53 -060010583 return -EINVAL;
Zhu Yi46441512006-01-24 16:37:59 +080010584 mutex_lock(&p->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010585 memcpy(&p->eeprom[eeprom->offset], bytes, eeprom->len);
Adrian Bunk71e585f2006-03-11 04:42:58 +010010586 for (i = 0; i < IPW_EEPROM_IMAGE_SIZE; i++)
10587 ipw_write8(p, i + IPW_EEPROM_DATA, p->eeprom[i]);
Zhu Yi46441512006-01-24 16:37:59 +080010588 mutex_unlock(&p->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060010589 return 0;
10590}
10591
Jeff Garzik7282d492006-09-13 14:30:00 -040010592static const struct ethtool_ops ipw_ethtool_ops = {
James Ketrenosea2b26e2005-08-24 21:25:16 -050010593 .get_link = ipw_ethtool_get_link,
10594 .get_drvinfo = ipw_ethtool_get_drvinfo,
10595 .get_eeprom_len = ipw_ethtool_get_eeprom_len,
10596 .get_eeprom = ipw_ethtool_get_eeprom,
10597 .set_eeprom = ipw_ethtool_set_eeprom,
James Ketrenos43f66a62005-03-25 12:31:53 -060010598};
10599
David Howells7d12e782006-10-05 14:55:46 +010010600static irqreturn_t ipw_isr(int irq, void *data)
James Ketrenos43f66a62005-03-25 12:31:53 -060010601{
10602 struct ipw_priv *priv = data;
10603 u32 inta, inta_mask;
Jeff Garzikbf794512005-07-31 13:07:26 -040010604
James Ketrenos43f66a62005-03-25 12:31:53 -060010605 if (!priv)
10606 return IRQ_NONE;
10607
Zhu Yi89c318e2006-06-08 22:19:49 -070010608 spin_lock(&priv->irq_lock);
James Ketrenos43f66a62005-03-25 12:31:53 -060010609
10610 if (!(priv->status & STATUS_INT_ENABLED)) {
Zhu Yid00d0122007-07-12 16:09:40 +080010611 /* IRQ is disabled */
James Ketrenos43f66a62005-03-25 12:31:53 -060010612 goto none;
10613 }
10614
James Ketrenosb095c382005-08-24 22:04:42 -050010615 inta = ipw_read32(priv, IPW_INTA_RW);
10616 inta_mask = ipw_read32(priv, IPW_INTA_MASK_R);
Jeff Garzikbf794512005-07-31 13:07:26 -040010617
James Ketrenos43f66a62005-03-25 12:31:53 -060010618 if (inta == 0xFFFFFFFF) {
10619 /* Hardware disappeared */
10620 IPW_WARNING("IRQ INTA == 0xFFFFFFFF\n");
10621 goto none;
10622 }
10623
James Ketrenosb095c382005-08-24 22:04:42 -050010624 if (!(inta & (IPW_INTA_MASK_ALL & inta_mask))) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010625 /* Shared interrupt */
10626 goto none;
10627 }
10628
10629 /* tell the device to stop sending interrupts */
Zhu Yi89c318e2006-06-08 22:19:49 -070010630 __ipw_disable_interrupts(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -040010631
James Ketrenos43f66a62005-03-25 12:31:53 -060010632 /* ack current interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -050010633 inta &= (IPW_INTA_MASK_ALL & inta_mask);
10634 ipw_write32(priv, IPW_INTA_RW, inta);
Jeff Garzikbf794512005-07-31 13:07:26 -040010635
James Ketrenos43f66a62005-03-25 12:31:53 -060010636 /* Cache INTA value for our tasklet */
10637 priv->isr_inta = inta;
10638
10639 tasklet_schedule(&priv->irq_tasklet);
10640
Zhu Yi89c318e2006-06-08 22:19:49 -070010641 spin_unlock(&priv->irq_lock);
James Ketrenos43f66a62005-03-25 12:31:53 -060010642
10643 return IRQ_HANDLED;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010644 none:
Zhu Yi89c318e2006-06-08 22:19:49 -070010645 spin_unlock(&priv->irq_lock);
James Ketrenos43f66a62005-03-25 12:31:53 -060010646 return IRQ_NONE;
10647}
10648
10649static void ipw_rf_kill(void *adapter)
10650{
10651 struct ipw_priv *priv = adapter;
10652 unsigned long flags;
Jeff Garzikbf794512005-07-31 13:07:26 -040010653
James Ketrenos43f66a62005-03-25 12:31:53 -060010654 spin_lock_irqsave(&priv->lock, flags);
10655
10656 if (rf_kill_active(priv)) {
10657 IPW_DEBUG_RF_KILL("RF Kill active, rescheduling GPIO check\n");
10658 if (priv->workqueue)
10659 queue_delayed_work(priv->workqueue,
10660 &priv->rf_kill, 2 * HZ);
10661 goto exit_unlock;
10662 }
10663
10664 /* RF Kill is now disabled, so bring the device back up */
10665
10666 if (!(priv->status & STATUS_RF_KILL_MASK)) {
10667 IPW_DEBUG_RF_KILL("HW RF Kill no longer active, restarting "
10668 "device\n");
10669
10670 /* we can not do an adapter restart while inside an irq lock */
10671 queue_work(priv->workqueue, &priv->adapter_restart);
Jeff Garzikbf794512005-07-31 13:07:26 -040010672 } else
James Ketrenos43f66a62005-03-25 12:31:53 -060010673 IPW_DEBUG_RF_KILL("HW RF Kill deactivated. SW RF Kill still "
10674 "enabled\n");
10675
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010676 exit_unlock:
James Ketrenos43f66a62005-03-25 12:31:53 -060010677 spin_unlock_irqrestore(&priv->lock, flags);
10678}
10679
David Howellsc4028952006-11-22 14:57:56 +000010680static void ipw_bg_rf_kill(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -050010681{
David Howellsc4028952006-11-22 14:57:56 +000010682 struct ipw_priv *priv =
10683 container_of(work, struct ipw_priv, rf_kill.work);
Zhu Yi46441512006-01-24 16:37:59 +080010684 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +000010685 ipw_rf_kill(priv);
Zhu Yi46441512006-01-24 16:37:59 +080010686 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010687}
10688
Adrian Bunka73e22b2006-01-21 01:39:42 +010010689static void ipw_link_up(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -050010690{
James Ketrenosafbf30a2005-08-25 00:05:33 -050010691 priv->last_seq_num = -1;
10692 priv->last_frag_num = -1;
10693 priv->last_packet_time = 0;
10694
James Ketrenosa613bff2005-08-24 21:43:11 -050010695 netif_carrier_on(priv->net_dev);
James Ketrenosa613bff2005-08-24 21:43:11 -050010696
James Ketrenosc848d0a2005-08-24 21:56:24 -050010697 cancel_delayed_work(&priv->request_scan);
Dan Williamsea177302008-06-02 17:51:23 -040010698 cancel_delayed_work(&priv->request_direct_scan);
10699 cancel_delayed_work(&priv->request_passive_scan);
Dan Williams0b531672007-10-09 13:55:24 -040010700 cancel_delayed_work(&priv->scan_event);
James Ketrenosa613bff2005-08-24 21:43:11 -050010701 ipw_reset_stats(priv);
10702 /* Ensure the rate is updated immediately */
10703 priv->last_rate = ipw_get_current_rate(priv);
10704 ipw_gather_stats(priv);
10705 ipw_led_link_up(priv);
10706 notify_wx_assoc_event(priv);
10707
10708 if (priv->config & CFG_BACKGROUND_SCAN)
10709 queue_delayed_work(priv->workqueue, &priv->request_scan, HZ);
10710}
10711
David Howellsc4028952006-11-22 14:57:56 +000010712static void ipw_bg_link_up(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -050010713{
David Howellsc4028952006-11-22 14:57:56 +000010714 struct ipw_priv *priv =
10715 container_of(work, struct ipw_priv, link_up);
Zhu Yi46441512006-01-24 16:37:59 +080010716 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +000010717 ipw_link_up(priv);
Zhu Yi46441512006-01-24 16:37:59 +080010718 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010719}
10720
Adrian Bunka73e22b2006-01-21 01:39:42 +010010721static void ipw_link_down(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -050010722{
10723 ipw_led_link_down(priv);
10724 netif_carrier_off(priv->net_dev);
James Ketrenosa613bff2005-08-24 21:43:11 -050010725 notify_wx_assoc_event(priv);
10726
10727 /* Cancel any queued work ... */
10728 cancel_delayed_work(&priv->request_scan);
Dan Williamsea177302008-06-02 17:51:23 -040010729 cancel_delayed_work(&priv->request_direct_scan);
10730 cancel_delayed_work(&priv->request_passive_scan);
James Ketrenosa613bff2005-08-24 21:43:11 -050010731 cancel_delayed_work(&priv->adhoc_check);
10732 cancel_delayed_work(&priv->gather_stats);
10733
10734 ipw_reset_stats(priv);
10735
James Ketrenosafbf30a2005-08-25 00:05:33 -050010736 if (!(priv->status & STATUS_EXIT_PENDING)) {
10737 /* Queue up another scan... */
David Howellsc4028952006-11-22 14:57:56 +000010738 queue_delayed_work(priv->workqueue, &priv->request_scan, 0);
Dan Williams0b531672007-10-09 13:55:24 -040010739 } else
10740 cancel_delayed_work(&priv->scan_event);
James Ketrenosa613bff2005-08-24 21:43:11 -050010741}
10742
David Howellsc4028952006-11-22 14:57:56 +000010743static void ipw_bg_link_down(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -050010744{
David Howellsc4028952006-11-22 14:57:56 +000010745 struct ipw_priv *priv =
10746 container_of(work, struct ipw_priv, link_down);
Zhu Yi46441512006-01-24 16:37:59 +080010747 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +000010748 ipw_link_down(priv);
Zhu Yi46441512006-01-24 16:37:59 +080010749 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010750}
10751
Adrian Bunk2ef19e62007-12-11 23:20:22 +010010752static int __devinit ipw_setup_deferred_work(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -060010753{
10754 int ret = 0;
10755
James Ketrenos43f66a62005-03-25 12:31:53 -060010756 priv->workqueue = create_workqueue(DRV_NAME);
James Ketrenos43f66a62005-03-25 12:31:53 -060010757 init_waitqueue_head(&priv->wait_command_queue);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010758 init_waitqueue_head(&priv->wait_state);
James Ketrenos43f66a62005-03-25 12:31:53 -060010759
David Howellsc4028952006-11-22 14:57:56 +000010760 INIT_DELAYED_WORK(&priv->adhoc_check, ipw_bg_adhoc_check);
10761 INIT_WORK(&priv->associate, ipw_bg_associate);
10762 INIT_WORK(&priv->disassociate, ipw_bg_disassociate);
10763 INIT_WORK(&priv->system_config, ipw_system_config);
10764 INIT_WORK(&priv->rx_replenish, ipw_bg_rx_queue_replenish);
10765 INIT_WORK(&priv->adapter_restart, ipw_bg_adapter_restart);
10766 INIT_DELAYED_WORK(&priv->rf_kill, ipw_bg_rf_kill);
10767 INIT_WORK(&priv->up, ipw_bg_up);
10768 INIT_WORK(&priv->down, ipw_bg_down);
10769 INIT_DELAYED_WORK(&priv->request_scan, ipw_request_scan);
Dan Williamsea177302008-06-02 17:51:23 -040010770 INIT_DELAYED_WORK(&priv->request_direct_scan, ipw_request_direct_scan);
10771 INIT_DELAYED_WORK(&priv->request_passive_scan, ipw_request_passive_scan);
Dan Williams0b531672007-10-09 13:55:24 -040010772 INIT_DELAYED_WORK(&priv->scan_event, ipw_scan_event);
David Howellsc4028952006-11-22 14:57:56 +000010773 INIT_DELAYED_WORK(&priv->gather_stats, ipw_bg_gather_stats);
10774 INIT_WORK(&priv->abort_scan, ipw_bg_abort_scan);
10775 INIT_WORK(&priv->roam, ipw_bg_roam);
10776 INIT_DELAYED_WORK(&priv->scan_check, ipw_bg_scan_check);
10777 INIT_WORK(&priv->link_up, ipw_bg_link_up);
10778 INIT_WORK(&priv->link_down, ipw_bg_link_down);
10779 INIT_DELAYED_WORK(&priv->led_link_on, ipw_bg_led_link_on);
10780 INIT_DELAYED_WORK(&priv->led_link_off, ipw_bg_led_link_off);
10781 INIT_DELAYED_WORK(&priv->led_act_off, ipw_bg_led_activity_off);
10782 INIT_WORK(&priv->merge_networks, ipw_merge_adhoc_network);
James Ketrenos43f66a62005-03-25 12:31:53 -060010783
Zhu Yie43e3c12006-04-13 17:20:45 +080010784#ifdef CONFIG_IPW2200_QOS
David Howellsc4028952006-11-22 14:57:56 +000010785 INIT_WORK(&priv->qos_activate, ipw_bg_qos_activate);
Zhu Yie43e3c12006-04-13 17:20:45 +080010786#endif /* CONFIG_IPW2200_QOS */
James Ketrenos43f66a62005-03-25 12:31:53 -060010787
10788 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
10789 ipw_irq_tasklet, (unsigned long)priv);
10790
10791 return ret;
10792}
10793
James Ketrenos43f66a62005-03-25 12:31:53 -060010794static void shim__set_security(struct net_device *dev,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010795 struct libipw_security *sec)
James Ketrenos43f66a62005-03-25 12:31:53 -060010796{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010797 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060010798 int i;
Jeff Garzikbf794512005-07-31 13:07:26 -040010799 for (i = 0; i < 4; i++) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010800 if (sec->flags & (1 << i)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -050010801 priv->ieee->sec.encode_alg[i] = sec->encode_alg[i];
James Ketrenosb095c382005-08-24 22:04:42 -050010802 priv->ieee->sec.key_sizes[i] = sec->key_sizes[i];
James Ketrenos43f66a62005-03-25 12:31:53 -060010803 if (sec->key_sizes[i] == 0)
James Ketrenosb095c382005-08-24 22:04:42 -050010804 priv->ieee->sec.flags &= ~(1 << i);
10805 else {
10806 memcpy(priv->ieee->sec.keys[i], sec->keys[i],
James Ketrenos43f66a62005-03-25 12:31:53 -060010807 sec->key_sizes[i]);
James Ketrenosb095c382005-08-24 22:04:42 -050010808 priv->ieee->sec.flags |= (1 << i);
10809 }
James Ketrenos43f66a62005-03-25 12:31:53 -060010810 priv->status |= STATUS_SECURITY_UPDATED;
James Ketrenosb095c382005-08-24 22:04:42 -050010811 } else if (sec->level != SEC_LEVEL_1)
10812 priv->ieee->sec.flags &= ~(1 << i);
James Ketrenos43f66a62005-03-25 12:31:53 -060010813 }
10814
James Ketrenosb095c382005-08-24 22:04:42 -050010815 if (sec->flags & SEC_ACTIVE_KEY) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010816 if (sec->active_key <= 3) {
James Ketrenosb095c382005-08-24 22:04:42 -050010817 priv->ieee->sec.active_key = sec->active_key;
10818 priv->ieee->sec.flags |= SEC_ACTIVE_KEY;
Jeff Garzikbf794512005-07-31 13:07:26 -040010819 } else
James Ketrenosb095c382005-08-24 22:04:42 -050010820 priv->ieee->sec.flags &= ~SEC_ACTIVE_KEY;
James Ketrenos43f66a62005-03-25 12:31:53 -060010821 priv->status |= STATUS_SECURITY_UPDATED;
James Ketrenosb095c382005-08-24 22:04:42 -050010822 } else
10823 priv->ieee->sec.flags &= ~SEC_ACTIVE_KEY;
James Ketrenos43f66a62005-03-25 12:31:53 -060010824
10825 if ((sec->flags & SEC_AUTH_MODE) &&
James Ketrenosb095c382005-08-24 22:04:42 -050010826 (priv->ieee->sec.auth_mode != sec->auth_mode)) {
10827 priv->ieee->sec.auth_mode = sec->auth_mode;
10828 priv->ieee->sec.flags |= SEC_AUTH_MODE;
James Ketrenos43f66a62005-03-25 12:31:53 -060010829 if (sec->auth_mode == WLAN_AUTH_SHARED_KEY)
10830 priv->capability |= CAP_SHARED_KEY;
10831 else
10832 priv->capability &= ~CAP_SHARED_KEY;
10833 priv->status |= STATUS_SECURITY_UPDATED;
10834 }
Jeff Garzikbf794512005-07-31 13:07:26 -040010835
James Ketrenosb095c382005-08-24 22:04:42 -050010836 if (sec->flags & SEC_ENABLED && priv->ieee->sec.enabled != sec->enabled) {
10837 priv->ieee->sec.flags |= SEC_ENABLED;
10838 priv->ieee->sec.enabled = sec->enabled;
James Ketrenos43f66a62005-03-25 12:31:53 -060010839 priv->status |= STATUS_SECURITY_UPDATED;
Jeff Garzikbf794512005-07-31 13:07:26 -040010840 if (sec->enabled)
James Ketrenos43f66a62005-03-25 12:31:53 -060010841 priv->capability |= CAP_PRIVACY_ON;
10842 else
10843 priv->capability &= ~CAP_PRIVACY_ON;
10844 }
Jeff Garzikbf794512005-07-31 13:07:26 -040010845
James Ketrenosafbf30a2005-08-25 00:05:33 -050010846 if (sec->flags & SEC_ENCRYPT)
10847 priv->ieee->sec.encrypt = sec->encrypt;
James Ketrenos43f66a62005-03-25 12:31:53 -060010848
James Ketrenosb095c382005-08-24 22:04:42 -050010849 if (sec->flags & SEC_LEVEL && priv->ieee->sec.level != sec->level) {
10850 priv->ieee->sec.level = sec->level;
10851 priv->ieee->sec.flags |= SEC_LEVEL;
James Ketrenos43f66a62005-03-25 12:31:53 -060010852 priv->status |= STATUS_SECURITY_UPDATED;
10853 }
10854
Zhu Yi1fbfea52005-08-05 17:22:56 +080010855 if (!priv->ieee->host_encrypt && (sec->flags & SEC_ENCRYPT))
10856 ipw_set_hwcrypto_keys(priv);
10857
Jeff Garzikbf794512005-07-31 13:07:26 -040010858 /* To match current functionality of ipw2100 (which works well w/
10859 * various supplicants, we don't force a disassociate if the
James Ketrenos43f66a62005-03-25 12:31:53 -060010860 * privacy capability changes ... */
10861#if 0
10862 if ((priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) &&
Jeff Garzikbf794512005-07-31 13:07:26 -040010863 (((priv->assoc_request.capability &
Al Viro5b5e8072007-12-27 01:54:06 -050010864 cpu_to_le16(WLAN_CAPABILITY_PRIVACY)) && !sec->enabled) ||
Jeff Garzikbf794512005-07-31 13:07:26 -040010865 (!(priv->assoc_request.capability &
Al Viro5b5e8072007-12-27 01:54:06 -050010866 cpu_to_le16(WLAN_CAPABILITY_PRIVACY)) && sec->enabled))) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010867 IPW_DEBUG_ASSOC("Disassociating due to capability "
10868 "change.\n");
10869 ipw_disassociate(priv);
10870 }
10871#endif
10872}
10873
Jeff Garzikbf794512005-07-31 13:07:26 -040010874static int init_supported_rates(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -060010875 struct ipw_supported_rates *rates)
10876{
10877 /* TODO: Mask out rates based on priv->rates_mask */
10878
10879 memset(rates, 0, sizeof(*rates));
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010880 /* configure supported rates */
James Ketrenos43f66a62005-03-25 12:31:53 -060010881 switch (priv->ieee->freq_band) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010882 case LIBIPW_52GHZ_BAND:
James Ketrenos43f66a62005-03-25 12:31:53 -060010883 rates->ieee_mode = IPW_A_MODE;
10884 rates->purpose = IPW_RATE_CAPABILITIES;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010885 ipw_add_ofdm_scan_rates(rates, LIBIPW_CCK_MODULATION,
10886 LIBIPW_OFDM_DEFAULT_RATES_MASK);
James Ketrenos43f66a62005-03-25 12:31:53 -060010887 break;
10888
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010889 default: /* Mixed or 2.4Ghz */
James Ketrenos43f66a62005-03-25 12:31:53 -060010890 rates->ieee_mode = IPW_G_MODE;
10891 rates->purpose = IPW_RATE_CAPABILITIES;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010892 ipw_add_cck_scan_rates(rates, LIBIPW_CCK_MODULATION,
10893 LIBIPW_CCK_DEFAULT_RATES_MASK);
10894 if (priv->ieee->modulation & LIBIPW_OFDM_MODULATION) {
10895 ipw_add_ofdm_scan_rates(rates, LIBIPW_CCK_MODULATION,
10896 LIBIPW_OFDM_DEFAULT_RATES_MASK);
James Ketrenos43f66a62005-03-25 12:31:53 -060010897 }
10898 break;
10899 }
10900
10901 return 0;
10902}
10903
Jeff Garzikbf794512005-07-31 13:07:26 -040010904static int ipw_config(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -060010905{
James Ketrenos43f66a62005-03-25 12:31:53 -060010906 /* This is only called from ipw_up, which resets/reloads the firmware
10907 so, we don't need to first disable the card before we configure
10908 it */
Zhu Yi6de9f7f2005-08-11 14:39:33 +080010909 if (ipw_set_tx_power(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -060010910 goto error;
10911
10912 /* initialize adapter address */
10913 if (ipw_send_adapter_address(priv, priv->net_dev->dev_addr))
10914 goto error;
10915
10916 /* set basic system config settings */
10917 init_sys_config(&priv->sys_config);
Zhu Yi810dabd2006-01-24 16:36:59 +080010918
10919 /* Support Bluetooth if we have BT h/w on board, and user wants to.
10920 * Does not support BT priority yet (don't abort or defer our Tx) */
10921 if (bt_coexist) {
Zhu Yi2638bc32006-01-24 16:37:52 +080010922 unsigned char bt_caps = priv->eeprom[EEPROM_SKU_CAPABILITY];
Zhu Yi810dabd2006-01-24 16:36:59 +080010923
10924 if (bt_caps & EEPROM_SKU_CAP_BT_CHANNEL_SIG)
10925 priv->sys_config.bt_coexistence
Zhu Yi2638bc32006-01-24 16:37:52 +080010926 |= CFG_BT_COEXISTENCE_SIGNAL_CHNL;
Zhu Yi810dabd2006-01-24 16:36:59 +080010927 if (bt_caps & EEPROM_SKU_CAP_BT_OOB)
10928 priv->sys_config.bt_coexistence
Zhu Yi2638bc32006-01-24 16:37:52 +080010929 |= CFG_BT_COEXISTENCE_OOB;
Zhu Yi810dabd2006-01-24 16:36:59 +080010930 }
10931
Zhu Yid685b8c2006-04-13 17:20:27 +080010932#ifdef CONFIG_IPW2200_PROMISCUOUS
10933 if (priv->prom_net_dev && netif_running(priv->prom_net_dev)) {
10934 priv->sys_config.accept_all_data_frames = 1;
10935 priv->sys_config.accept_non_directed_frames = 1;
10936 priv->sys_config.accept_all_mgmt_bcpr = 1;
10937 priv->sys_config.accept_all_mgmt_frames = 1;
10938 }
10939#endif
10940
James Ketrenosc848d0a2005-08-24 21:56:24 -050010941 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
10942 priv->sys_config.answer_broadcast_ssid_probe = 1;
10943 else
10944 priv->sys_config.answer_broadcast_ssid_probe = 0;
10945
Zhu Yid685b8c2006-04-13 17:20:27 +080010946 if (ipw_send_system_config(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -060010947 goto error;
10948
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010949 init_supported_rates(priv, &priv->rates);
10950 if (ipw_send_supported_rates(priv, &priv->rates))
James Ketrenos43f66a62005-03-25 12:31:53 -060010951 goto error;
10952
10953 /* Set request-to-send threshold */
10954 if (priv->rts_threshold) {
10955 if (ipw_send_rts_threshold(priv, priv->rts_threshold))
10956 goto error;
10957 }
Zhu Yie43e3c12006-04-13 17:20:45 +080010958#ifdef CONFIG_IPW2200_QOS
James Ketrenosb095c382005-08-24 22:04:42 -050010959 IPW_DEBUG_QOS("QoS: call ipw_qos_activate\n");
10960 ipw_qos_activate(priv, NULL);
Zhu Yie43e3c12006-04-13 17:20:45 +080010961#endif /* CONFIG_IPW2200_QOS */
James Ketrenos43f66a62005-03-25 12:31:53 -060010962
10963 if (ipw_set_random_seed(priv))
10964 goto error;
Jeff Garzikbf794512005-07-31 13:07:26 -040010965
James Ketrenos43f66a62005-03-25 12:31:53 -060010966 /* final state transition to the RUN state */
10967 if (ipw_send_host_complete(priv))
10968 goto error;
10969
James Ketrenose6666192005-08-12 09:17:04 -050010970 priv->status |= STATUS_INIT;
10971
10972 ipw_led_init(priv);
10973 ipw_led_radio_on(priv);
10974 priv->notif_missed_beacons = 0;
10975
10976 /* Set hardware WEP key if it is configured. */
10977 if ((priv->capability & CAP_PRIVACY_ON) &&
10978 (priv->ieee->sec.level == SEC_LEVEL_1) &&
10979 !(priv->ieee->host_encrypt || priv->ieee->host_decrypt))
10980 ipw_set_hwcrypto_keys(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060010981
10982 return 0;
Jeff Garzikbf794512005-07-31 13:07:26 -040010983
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010984 error:
James Ketrenos43f66a62005-03-25 12:31:53 -060010985 return -EIO;
10986}
10987
James Ketrenos4f36f802005-08-03 20:36:56 -050010988/*
10989 * NOTE:
10990 *
10991 * These tables have been tested in conjunction with the
10992 * Intel PRO/Wireless 2200BG and 2915ABG Network Connection Adapters.
10993 *
10994 * Altering this values, using it on other hardware, or in geographies
10995 * not intended for resale of the above mentioned Intel adapters has
10996 * not been tested.
10997 *
Henrik Brix Andersen48a84772006-02-14 09:09:52 +080010998 * Remember to update the table in README.ipw2200 when changing this
10999 * table.
11000 *
James Ketrenos4f36f802005-08-03 20:36:56 -050011001 */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011002static const struct libipw_geo ipw_geos[] = {
James Ketrenos4f36f802005-08-03 20:36:56 -050011003 { /* Restricted */
11004 "---",
11005 .bg_channels = 11,
11006 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11007 {2427, 4}, {2432, 5}, {2437, 6},
11008 {2442, 7}, {2447, 8}, {2452, 9},
11009 {2457, 10}, {2462, 11}},
11010 },
11011
11012 { /* Custom US/Canada */
11013 "ZZF",
11014 .bg_channels = 11,
11015 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11016 {2427, 4}, {2432, 5}, {2437, 6},
11017 {2442, 7}, {2447, 8}, {2452, 9},
11018 {2457, 10}, {2462, 11}},
11019 .a_channels = 8,
11020 .a = {{5180, 36},
11021 {5200, 40},
11022 {5220, 44},
11023 {5240, 48},
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011024 {5260, 52, LIBIPW_CH_PASSIVE_ONLY},
11025 {5280, 56, LIBIPW_CH_PASSIVE_ONLY},
11026 {5300, 60, LIBIPW_CH_PASSIVE_ONLY},
11027 {5320, 64, LIBIPW_CH_PASSIVE_ONLY}},
James Ketrenos4f36f802005-08-03 20:36:56 -050011028 },
11029
11030 { /* Rest of World */
11031 "ZZD",
11032 .bg_channels = 13,
11033 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11034 {2427, 4}, {2432, 5}, {2437, 6},
11035 {2442, 7}, {2447, 8}, {2452, 9},
11036 {2457, 10}, {2462, 11}, {2467, 12},
11037 {2472, 13}},
11038 },
11039
11040 { /* Custom USA & Europe & High */
11041 "ZZA",
11042 .bg_channels = 11,
11043 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11044 {2427, 4}, {2432, 5}, {2437, 6},
11045 {2442, 7}, {2447, 8}, {2452, 9},
11046 {2457, 10}, {2462, 11}},
11047 .a_channels = 13,
11048 .a = {{5180, 36},
11049 {5200, 40},
11050 {5220, 44},
11051 {5240, 48},
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011052 {5260, 52, LIBIPW_CH_PASSIVE_ONLY},
11053 {5280, 56, LIBIPW_CH_PASSIVE_ONLY},
11054 {5300, 60, LIBIPW_CH_PASSIVE_ONLY},
11055 {5320, 64, LIBIPW_CH_PASSIVE_ONLY},
James Ketrenos4f36f802005-08-03 20:36:56 -050011056 {5745, 149},
11057 {5765, 153},
11058 {5785, 157},
11059 {5805, 161},
11060 {5825, 165}},
11061 },
11062
11063 { /* Custom NA & Europe */
11064 "ZZB",
11065 .bg_channels = 11,
11066 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11067 {2427, 4}, {2432, 5}, {2437, 6},
11068 {2442, 7}, {2447, 8}, {2452, 9},
11069 {2457, 10}, {2462, 11}},
11070 .a_channels = 13,
11071 .a = {{5180, 36},
11072 {5200, 40},
11073 {5220, 44},
11074 {5240, 48},
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011075 {5260, 52, LIBIPW_CH_PASSIVE_ONLY},
11076 {5280, 56, LIBIPW_CH_PASSIVE_ONLY},
11077 {5300, 60, LIBIPW_CH_PASSIVE_ONLY},
11078 {5320, 64, LIBIPW_CH_PASSIVE_ONLY},
11079 {5745, 149, LIBIPW_CH_PASSIVE_ONLY},
11080 {5765, 153, LIBIPW_CH_PASSIVE_ONLY},
11081 {5785, 157, LIBIPW_CH_PASSIVE_ONLY},
11082 {5805, 161, LIBIPW_CH_PASSIVE_ONLY},
11083 {5825, 165, LIBIPW_CH_PASSIVE_ONLY}},
James Ketrenos4f36f802005-08-03 20:36:56 -050011084 },
11085
11086 { /* Custom Japan */
11087 "ZZC",
11088 .bg_channels = 11,
11089 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11090 {2427, 4}, {2432, 5}, {2437, 6},
11091 {2442, 7}, {2447, 8}, {2452, 9},
11092 {2457, 10}, {2462, 11}},
11093 .a_channels = 4,
11094 .a = {{5170, 34}, {5190, 38},
11095 {5210, 42}, {5230, 46}},
11096 },
11097
11098 { /* Custom */
11099 "ZZM",
11100 .bg_channels = 11,
11101 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11102 {2427, 4}, {2432, 5}, {2437, 6},
11103 {2442, 7}, {2447, 8}, {2452, 9},
11104 {2457, 10}, {2462, 11}},
11105 },
11106
11107 { /* Europe */
11108 "ZZE",
11109 .bg_channels = 13,
11110 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11111 {2427, 4}, {2432, 5}, {2437, 6},
11112 {2442, 7}, {2447, 8}, {2452, 9},
11113 {2457, 10}, {2462, 11}, {2467, 12},
11114 {2472, 13}},
11115 .a_channels = 19,
11116 .a = {{5180, 36},
11117 {5200, 40},
11118 {5220, 44},
11119 {5240, 48},
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011120 {5260, 52, LIBIPW_CH_PASSIVE_ONLY},
11121 {5280, 56, LIBIPW_CH_PASSIVE_ONLY},
11122 {5300, 60, LIBIPW_CH_PASSIVE_ONLY},
11123 {5320, 64, LIBIPW_CH_PASSIVE_ONLY},
11124 {5500, 100, LIBIPW_CH_PASSIVE_ONLY},
11125 {5520, 104, LIBIPW_CH_PASSIVE_ONLY},
11126 {5540, 108, LIBIPW_CH_PASSIVE_ONLY},
11127 {5560, 112, LIBIPW_CH_PASSIVE_ONLY},
11128 {5580, 116, LIBIPW_CH_PASSIVE_ONLY},
11129 {5600, 120, LIBIPW_CH_PASSIVE_ONLY},
11130 {5620, 124, LIBIPW_CH_PASSIVE_ONLY},
11131 {5640, 128, LIBIPW_CH_PASSIVE_ONLY},
11132 {5660, 132, LIBIPW_CH_PASSIVE_ONLY},
11133 {5680, 136, LIBIPW_CH_PASSIVE_ONLY},
11134 {5700, 140, LIBIPW_CH_PASSIVE_ONLY}},
James Ketrenos4f36f802005-08-03 20:36:56 -050011135 },
11136
11137 { /* Custom Japan */
11138 "ZZJ",
11139 .bg_channels = 14,
11140 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11141 {2427, 4}, {2432, 5}, {2437, 6},
11142 {2442, 7}, {2447, 8}, {2452, 9},
11143 {2457, 10}, {2462, 11}, {2467, 12},
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011144 {2472, 13}, {2484, 14, LIBIPW_CH_B_ONLY}},
James Ketrenos4f36f802005-08-03 20:36:56 -050011145 .a_channels = 4,
11146 .a = {{5170, 34}, {5190, 38},
11147 {5210, 42}, {5230, 46}},
11148 },
11149
James Ketrenos03520572005-10-19 16:12:31 -050011150 { /* Rest of World */
11151 "ZZR",
11152 .bg_channels = 14,
11153 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11154 {2427, 4}, {2432, 5}, {2437, 6},
11155 {2442, 7}, {2447, 8}, {2452, 9},
11156 {2457, 10}, {2462, 11}, {2467, 12},
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011157 {2472, 13}, {2484, 14, LIBIPW_CH_B_ONLY |
11158 LIBIPW_CH_PASSIVE_ONLY}},
James Ketrenos03520572005-10-19 16:12:31 -050011159 },
11160
James Ketrenos4f36f802005-08-03 20:36:56 -050011161 { /* High Band */
11162 "ZZH",
11163 .bg_channels = 13,
11164 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11165 {2427, 4}, {2432, 5}, {2437, 6},
11166 {2442, 7}, {2447, 8}, {2452, 9},
11167 {2457, 10}, {2462, 11},
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011168 {2467, 12, LIBIPW_CH_PASSIVE_ONLY},
11169 {2472, 13, LIBIPW_CH_PASSIVE_ONLY}},
James Ketrenos4f36f802005-08-03 20:36:56 -050011170 .a_channels = 4,
11171 .a = {{5745, 149}, {5765, 153},
11172 {5785, 157}, {5805, 161}},
11173 },
11174
11175 { /* Custom Europe */
11176 "ZZG",
11177 .bg_channels = 13,
11178 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11179 {2427, 4}, {2432, 5}, {2437, 6},
11180 {2442, 7}, {2447, 8}, {2452, 9},
11181 {2457, 10}, {2462, 11},
11182 {2467, 12}, {2472, 13}},
11183 .a_channels = 4,
11184 .a = {{5180, 36}, {5200, 40},
11185 {5220, 44}, {5240, 48}},
11186 },
11187
11188 { /* Europe */
11189 "ZZK",
11190 .bg_channels = 13,
11191 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11192 {2427, 4}, {2432, 5}, {2437, 6},
11193 {2442, 7}, {2447, 8}, {2452, 9},
11194 {2457, 10}, {2462, 11},
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011195 {2467, 12, LIBIPW_CH_PASSIVE_ONLY},
11196 {2472, 13, LIBIPW_CH_PASSIVE_ONLY}},
James Ketrenos4f36f802005-08-03 20:36:56 -050011197 .a_channels = 24,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011198 .a = {{5180, 36, LIBIPW_CH_PASSIVE_ONLY},
11199 {5200, 40, LIBIPW_CH_PASSIVE_ONLY},
11200 {5220, 44, LIBIPW_CH_PASSIVE_ONLY},
11201 {5240, 48, LIBIPW_CH_PASSIVE_ONLY},
11202 {5260, 52, LIBIPW_CH_PASSIVE_ONLY},
11203 {5280, 56, LIBIPW_CH_PASSIVE_ONLY},
11204 {5300, 60, LIBIPW_CH_PASSIVE_ONLY},
11205 {5320, 64, LIBIPW_CH_PASSIVE_ONLY},
11206 {5500, 100, LIBIPW_CH_PASSIVE_ONLY},
11207 {5520, 104, LIBIPW_CH_PASSIVE_ONLY},
11208 {5540, 108, LIBIPW_CH_PASSIVE_ONLY},
11209 {5560, 112, LIBIPW_CH_PASSIVE_ONLY},
11210 {5580, 116, LIBIPW_CH_PASSIVE_ONLY},
11211 {5600, 120, LIBIPW_CH_PASSIVE_ONLY},
11212 {5620, 124, LIBIPW_CH_PASSIVE_ONLY},
11213 {5640, 128, LIBIPW_CH_PASSIVE_ONLY},
11214 {5660, 132, LIBIPW_CH_PASSIVE_ONLY},
11215 {5680, 136, LIBIPW_CH_PASSIVE_ONLY},
11216 {5700, 140, LIBIPW_CH_PASSIVE_ONLY},
11217 {5745, 149, LIBIPW_CH_PASSIVE_ONLY},
11218 {5765, 153, LIBIPW_CH_PASSIVE_ONLY},
11219 {5785, 157, LIBIPW_CH_PASSIVE_ONLY},
11220 {5805, 161, LIBIPW_CH_PASSIVE_ONLY},
11221 {5825, 165, LIBIPW_CH_PASSIVE_ONLY}},
James Ketrenos4f36f802005-08-03 20:36:56 -050011222 },
11223
11224 { /* Europe */
11225 "ZZL",
11226 .bg_channels = 11,
11227 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11228 {2427, 4}, {2432, 5}, {2437, 6},
11229 {2442, 7}, {2447, 8}, {2452, 9},
11230 {2457, 10}, {2462, 11}},
11231 .a_channels = 13,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011232 .a = {{5180, 36, LIBIPW_CH_PASSIVE_ONLY},
11233 {5200, 40, LIBIPW_CH_PASSIVE_ONLY},
11234 {5220, 44, LIBIPW_CH_PASSIVE_ONLY},
11235 {5240, 48, LIBIPW_CH_PASSIVE_ONLY},
11236 {5260, 52, LIBIPW_CH_PASSIVE_ONLY},
11237 {5280, 56, LIBIPW_CH_PASSIVE_ONLY},
11238 {5300, 60, LIBIPW_CH_PASSIVE_ONLY},
11239 {5320, 64, LIBIPW_CH_PASSIVE_ONLY},
11240 {5745, 149, LIBIPW_CH_PASSIVE_ONLY},
11241 {5765, 153, LIBIPW_CH_PASSIVE_ONLY},
11242 {5785, 157, LIBIPW_CH_PASSIVE_ONLY},
11243 {5805, 161, LIBIPW_CH_PASSIVE_ONLY},
11244 {5825, 165, LIBIPW_CH_PASSIVE_ONLY}},
James Ketrenos4f36f802005-08-03 20:36:56 -050011245 }
James Ketrenosafbf30a2005-08-25 00:05:33 -050011246};
11247
James Ketrenos43f66a62005-03-25 12:31:53 -060011248#define MAX_HW_RESTARTS 5
11249static int ipw_up(struct ipw_priv *priv)
11250{
James Ketrenos4f36f802005-08-03 20:36:56 -050011251 int rc, i, j;
James Ketrenos43f66a62005-03-25 12:31:53 -060011252
Dan Williamsc3d72b92009-02-11 13:26:06 -050011253 /* Age scan list entries found before suspend */
11254 if (priv->suspend_time) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011255 libipw_networks_age(priv->ieee, priv->suspend_time);
Dan Williamsc3d72b92009-02-11 13:26:06 -050011256 priv->suspend_time = 0;
11257 }
11258
James Ketrenos43f66a62005-03-25 12:31:53 -060011259 if (priv->status & STATUS_EXIT_PENDING)
11260 return -EIO;
11261
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011262 if (cmdlog && !priv->cmdlog) {
Yan Burmane6e3f122006-12-02 13:38:14 +020011263 priv->cmdlog = kcalloc(cmdlog, sizeof(*priv->cmdlog),
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011264 GFP_KERNEL);
11265 if (priv->cmdlog == NULL) {
11266 IPW_ERROR("Error allocating %d command log entries.\n",
11267 cmdlog);
Zhu Yid0b526b2006-04-13 17:19:50 +080011268 return -ENOMEM;
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011269 } else {
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011270 priv->cmdlog_len = cmdlog;
11271 }
11272 }
11273
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011274 for (i = 0; i < MAX_HW_RESTARTS; i++) {
Jeff Garzikbf794512005-07-31 13:07:26 -040011275 /* Load the microcode, firmware, and eeprom.
James Ketrenos43f66a62005-03-25 12:31:53 -060011276 * Also start the clocks. */
11277 rc = ipw_load(priv);
11278 if (rc) {
Peter Jonesa4f6bbb2005-08-26 00:33:34 -050011279 IPW_ERROR("Unable to load firmware: %d\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -060011280 return rc;
11281 }
11282
11283 ipw_init_ordinals(priv);
11284 if (!(priv->config & CFG_CUSTOM_MAC))
11285 eeprom_parse_mac(priv, priv->mac_addr);
11286 memcpy(priv->net_dev->dev_addr, priv->mac_addr, ETH_ALEN);
John W. Linville5e5eab52009-10-06 16:45:14 -040011287 memcpy(priv->net_dev->perm_addr, priv->mac_addr, ETH_ALEN);
James Ketrenos43f66a62005-03-25 12:31:53 -060011288
James Ketrenos4f36f802005-08-03 20:36:56 -050011289 for (j = 0; j < ARRAY_SIZE(ipw_geos); j++) {
11290 if (!memcmp(&priv->eeprom[EEPROM_COUNTRY_CODE],
11291 ipw_geos[j].name, 3))
11292 break;
11293 }
James Ketrenos03520572005-10-19 16:12:31 -050011294 if (j == ARRAY_SIZE(ipw_geos)) {
11295 IPW_WARNING("SKU [%c%c%c] not recognized.\n",
11296 priv->eeprom[EEPROM_COUNTRY_CODE + 0],
11297 priv->eeprom[EEPROM_COUNTRY_CODE + 1],
11298 priv->eeprom[EEPROM_COUNTRY_CODE + 2]);
James Ketrenos4f36f802005-08-03 20:36:56 -050011299 j = 0;
James Ketrenos03520572005-10-19 16:12:31 -050011300 }
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011301 if (libipw_set_geo(priv->ieee, &ipw_geos[j])) {
James Ketrenos4f36f802005-08-03 20:36:56 -050011302 IPW_WARNING("Could not set geography.");
James Ketrenos43f66a62005-03-25 12:31:53 -060011303 return 0;
James Ketrenos4f36f802005-08-03 20:36:56 -050011304 }
11305
James Ketrenosb095c382005-08-24 22:04:42 -050011306 if (priv->status & STATUS_RF_KILL_SW) {
11307 IPW_WARNING("Radio disabled by module parameter.\n");
11308 return 0;
11309 } else if (rf_kill_active(priv)) {
11310 IPW_WARNING("Radio Frequency Kill Switch is On:\n"
11311 "Kill switch must be turned off for "
11312 "wireless networking to work.\n");
11313 queue_delayed_work(priv->workqueue, &priv->rf_kill,
11314 2 * HZ);
James Ketrenos43f66a62005-03-25 12:31:53 -060011315 return 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -050011316 }
James Ketrenos43f66a62005-03-25 12:31:53 -060011317
11318 rc = ipw_config(priv);
11319 if (!rc) {
11320 IPW_DEBUG_INFO("Configured device on count %i\n", i);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011321
James Ketrenose6666192005-08-12 09:17:04 -050011322 /* If configure to try and auto-associate, kick
11323 * off a scan. */
David Howellsc4028952006-11-22 14:57:56 +000011324 queue_delayed_work(priv->workqueue,
11325 &priv->request_scan, 0);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011326
James Ketrenos43f66a62005-03-25 12:31:53 -060011327 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060011328 }
Jeff Garzikbf794512005-07-31 13:07:26 -040011329
James Ketrenosc848d0a2005-08-24 21:56:24 -050011330 IPW_DEBUG_INFO("Device configuration failed: 0x%08X\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -060011331 IPW_DEBUG_INFO("Failed to config device on retry %d of %d\n",
11332 i, MAX_HW_RESTARTS);
11333
11334 /* We had an error bringing up the hardware, so take it
11335 * all the way back down so we can try again */
11336 ipw_down(priv);
11337 }
11338
Jeff Garzikbf794512005-07-31 13:07:26 -040011339 /* tried to restart and config the device for as long as our
James Ketrenos43f66a62005-03-25 12:31:53 -060011340 * patience could withstand */
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011341 IPW_ERROR("Unable to initialize device after %d attempts.\n", i);
James Ketrenosc848d0a2005-08-24 21:56:24 -050011342
James Ketrenos43f66a62005-03-25 12:31:53 -060011343 return -EIO;
11344}
11345
David Howellsc4028952006-11-22 14:57:56 +000011346static void ipw_bg_up(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -050011347{
David Howellsc4028952006-11-22 14:57:56 +000011348 struct ipw_priv *priv =
11349 container_of(work, struct ipw_priv, up);
Zhu Yi46441512006-01-24 16:37:59 +080011350 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +000011351 ipw_up(priv);
Zhu Yi46441512006-01-24 16:37:59 +080011352 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -050011353}
11354
James Ketrenosb095c382005-08-24 22:04:42 -050011355static void ipw_deinit(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -060011356{
James Ketrenosb095c382005-08-24 22:04:42 -050011357 int i;
11358
11359 if (priv->status & STATUS_SCANNING) {
11360 IPW_DEBUG_INFO("Aborting scan during shutdown.\n");
11361 ipw_abort_scan(priv);
11362 }
11363
11364 if (priv->status & STATUS_ASSOCIATED) {
11365 IPW_DEBUG_INFO("Disassociating during shutdown.\n");
11366 ipw_disassociate(priv);
11367 }
11368
11369 ipw_led_shutdown(priv);
11370
11371 /* Wait up to 1s for status to change to not scanning and not
11372 * associated (disassociation can take a while for a ful 802.11
11373 * exchange */
11374 for (i = 1000; i && (priv->status &
11375 (STATUS_DISASSOCIATING |
11376 STATUS_ASSOCIATED | STATUS_SCANNING)); i--)
11377 udelay(10);
11378
11379 if (priv->status & (STATUS_DISASSOCIATING |
11380 STATUS_ASSOCIATED | STATUS_SCANNING))
11381 IPW_DEBUG_INFO("Still associated or scanning...\n");
11382 else
11383 IPW_DEBUG_INFO("Took %dms to de-init\n", 1000 - i);
11384
James Ketrenosc848d0a2005-08-24 21:56:24 -050011385 /* Attempt to disable the card */
James Ketrenos43f66a62005-03-25 12:31:53 -060011386 ipw_send_card_disable(priv, 0);
James Ketrenosb095c382005-08-24 22:04:42 -050011387
11388 priv->status &= ~STATUS_INIT;
11389}
11390
James Ketrenos43f66a62005-03-25 12:31:53 -060011391static void ipw_down(struct ipw_priv *priv)
11392{
James Ketrenosb095c382005-08-24 22:04:42 -050011393 int exit_pending = priv->status & STATUS_EXIT_PENDING;
11394
11395 priv->status |= STATUS_EXIT_PENDING;
11396
11397 if (ipw_is_init(priv))
11398 ipw_deinit(priv);
11399
11400 /* Wipe out the EXIT_PENDING status bit if we are not actually
11401 * exiting the module */
11402 if (!exit_pending)
11403 priv->status &= ~STATUS_EXIT_PENDING;
James Ketrenos43f66a62005-03-25 12:31:53 -060011404
11405 /* tell the device to stop sending interrupts */
11406 ipw_disable_interrupts(priv);
11407
11408 /* Clear all bits but the RF Kill */
James Ketrenosb095c382005-08-24 22:04:42 -050011409 priv->status &= STATUS_RF_KILL_MASK | STATUS_EXIT_PENDING;
James Ketrenos43f66a62005-03-25 12:31:53 -060011410 netif_carrier_off(priv->net_dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060011411
11412 ipw_stop_nic(priv);
James Ketrenosa613bff2005-08-24 21:43:11 -050011413
11414 ipw_led_radio_off(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060011415}
11416
David Howellsc4028952006-11-22 14:57:56 +000011417static void ipw_bg_down(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -050011418{
David Howellsc4028952006-11-22 14:57:56 +000011419 struct ipw_priv *priv =
11420 container_of(work, struct ipw_priv, down);
Zhu Yi46441512006-01-24 16:37:59 +080011421 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +000011422 ipw_down(priv);
Zhu Yi46441512006-01-24 16:37:59 +080011423 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060011424}
11425
11426/* Called by register_netdev() */
11427static int ipw_net_init(struct net_device *dev)
11428{
John W. Linvillea3caa992009-08-25 14:12:25 -040011429 int i, rc = 0;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011430 struct ipw_priv *priv = libipw_priv(dev);
John W. Linvillea3caa992009-08-25 14:12:25 -040011431 const struct libipw_geo *geo = libipw_get_geo(priv->ieee);
11432 struct wireless_dev *wdev = &priv->ieee->wdev;
Zhu Yi46441512006-01-24 16:37:59 +080011433 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060011434
James Ketrenosc848d0a2005-08-24 21:56:24 -050011435 if (ipw_up(priv)) {
John W. Linvillea3caa992009-08-25 14:12:25 -040011436 rc = -EIO;
11437 goto out;
James Ketrenos43f66a62005-03-25 12:31:53 -060011438 }
11439
John W. Linvillea3caa992009-08-25 14:12:25 -040011440 memcpy(wdev->wiphy->perm_addr, priv->mac_addr, ETH_ALEN);
11441
11442 /* fill-out priv->ieee->bg_band */
11443 if (geo->bg_channels) {
11444 struct ieee80211_supported_band *bg_band = &priv->ieee->bg_band;
11445
11446 bg_band->band = IEEE80211_BAND_2GHZ;
11447 bg_band->n_channels = geo->bg_channels;
11448 bg_band->channels =
11449 kzalloc(geo->bg_channels *
11450 sizeof(struct ieee80211_channel), GFP_KERNEL);
11451 /* translate geo->bg to bg_band.channels */
11452 for (i = 0; i < geo->bg_channels; i++) {
11453 bg_band->channels[i].band = IEEE80211_BAND_2GHZ;
11454 bg_band->channels[i].center_freq = geo->bg[i].freq;
11455 bg_band->channels[i].hw_value = geo->bg[i].channel;
11456 bg_band->channels[i].max_power = geo->bg[i].max_power;
11457 if (geo->bg[i].flags & LIBIPW_CH_PASSIVE_ONLY)
11458 bg_band->channels[i].flags |=
11459 IEEE80211_CHAN_PASSIVE_SCAN;
11460 if (geo->bg[i].flags & LIBIPW_CH_NO_IBSS)
11461 bg_band->channels[i].flags |=
11462 IEEE80211_CHAN_NO_IBSS;
11463 if (geo->bg[i].flags & LIBIPW_CH_RADAR_DETECT)
11464 bg_band->channels[i].flags |=
11465 IEEE80211_CHAN_RADAR;
11466 /* No equivalent for LIBIPW_CH_80211H_RULES,
11467 LIBIPW_CH_UNIFORM_SPREADING, or
11468 LIBIPW_CH_B_ONLY... */
11469 }
11470 /* point at bitrate info */
11471 bg_band->bitrates = ipw2200_bg_rates;
11472 bg_band->n_bitrates = ipw2200_num_bg_rates;
11473
11474 wdev->wiphy->bands[IEEE80211_BAND_2GHZ] = bg_band;
11475 }
11476
11477 /* fill-out priv->ieee->a_band */
11478 if (geo->a_channels) {
11479 struct ieee80211_supported_band *a_band = &priv->ieee->a_band;
11480
11481 a_band->band = IEEE80211_BAND_5GHZ;
11482 a_band->n_channels = geo->a_channels;
11483 a_band->channels =
11484 kzalloc(geo->a_channels *
11485 sizeof(struct ieee80211_channel), GFP_KERNEL);
11486 /* translate geo->bg to a_band.channels */
11487 for (i = 0; i < geo->a_channels; i++) {
11488 a_band->channels[i].band = IEEE80211_BAND_2GHZ;
11489 a_band->channels[i].center_freq = geo->a[i].freq;
11490 a_band->channels[i].hw_value = geo->a[i].channel;
11491 a_band->channels[i].max_power = geo->a[i].max_power;
11492 if (geo->a[i].flags & LIBIPW_CH_PASSIVE_ONLY)
11493 a_band->channels[i].flags |=
11494 IEEE80211_CHAN_PASSIVE_SCAN;
11495 if (geo->a[i].flags & LIBIPW_CH_NO_IBSS)
11496 a_band->channels[i].flags |=
11497 IEEE80211_CHAN_NO_IBSS;
11498 if (geo->a[i].flags & LIBIPW_CH_RADAR_DETECT)
11499 a_band->channels[i].flags |=
11500 IEEE80211_CHAN_RADAR;
11501 /* No equivalent for LIBIPW_CH_80211H_RULES,
11502 LIBIPW_CH_UNIFORM_SPREADING, or
11503 LIBIPW_CH_B_ONLY... */
11504 }
11505 /* point at bitrate info */
11506 a_band->bitrates = ipw2200_a_rates;
11507 a_band->n_bitrates = ipw2200_num_a_rates;
11508
11509 wdev->wiphy->bands[IEEE80211_BAND_5GHZ] = a_band;
11510 }
11511
11512 set_wiphy_dev(wdev->wiphy, &priv->pci_dev->dev);
11513
11514 /* With that information in place, we can now register the wiphy... */
11515 if (wiphy_register(wdev->wiphy)) {
11516 rc = -EIO;
11517 goto out;
11518 }
11519
11520out:
Zhu Yi46441512006-01-24 16:37:59 +080011521 mutex_unlock(&priv->mutex);
John W. Linvillea3caa992009-08-25 14:12:25 -040011522 return rc;
James Ketrenos43f66a62005-03-25 12:31:53 -060011523}
11524
11525/* PCI driver stuff */
11526static struct pci_device_id card_ids[] = {
11527 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2701, 0, 0, 0},
11528 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2702, 0, 0, 0},
11529 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2711, 0, 0, 0},
11530 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2712, 0, 0, 0},
11531 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2721, 0, 0, 0},
11532 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2722, 0, 0, 0},
11533 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2731, 0, 0, 0},
11534 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2732, 0, 0, 0},
11535 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2741, 0, 0, 0},
11536 {PCI_VENDOR_ID_INTEL, 0x1043, 0x103c, 0x2741, 0, 0, 0},
11537 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2742, 0, 0, 0},
11538 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2751, 0, 0, 0},
11539 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2752, 0, 0, 0},
11540 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2753, 0, 0, 0},
11541 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2754, 0, 0, 0},
11542 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2761, 0, 0, 0},
11543 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2762, 0, 0, 0},
Joe Perches8ab0ea72009-06-24 22:13:27 -070011544 {PCI_VDEVICE(INTEL, 0x104f), 0},
11545 {PCI_VDEVICE(INTEL, 0x4220), 0}, /* BG */
11546 {PCI_VDEVICE(INTEL, 0x4221), 0}, /* BG */
11547 {PCI_VDEVICE(INTEL, 0x4223), 0}, /* ABG */
11548 {PCI_VDEVICE(INTEL, 0x4224), 0}, /* ABG */
Jeff Garzikbf794512005-07-31 13:07:26 -040011549
James Ketrenos43f66a62005-03-25 12:31:53 -060011550 /* required last entry */
11551 {0,}
11552};
11553
11554MODULE_DEVICE_TABLE(pci, card_ids);
11555
11556static struct attribute *ipw_sysfs_entries[] = {
11557 &dev_attr_rf_kill.attr,
11558 &dev_attr_direct_dword.attr,
11559 &dev_attr_indirect_byte.attr,
11560 &dev_attr_indirect_dword.attr,
11561 &dev_attr_mem_gpio_reg.attr,
11562 &dev_attr_command_event_reg.attr,
11563 &dev_attr_nic_type.attr,
11564 &dev_attr_status.attr,
11565 &dev_attr_cfg.attr,
James Ketrenosb39860c2005-08-12 09:36:32 -050011566 &dev_attr_error.attr,
11567 &dev_attr_event_log.attr,
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011568 &dev_attr_cmd_log.attr,
James Ketrenos43f66a62005-03-25 12:31:53 -060011569 &dev_attr_eeprom_delay.attr,
11570 &dev_attr_ucode_version.attr,
11571 &dev_attr_rtc.attr,
James Ketrenosa613bff2005-08-24 21:43:11 -050011572 &dev_attr_scan_age.attr,
11573 &dev_attr_led.attr,
James Ketrenosb095c382005-08-24 22:04:42 -050011574 &dev_attr_speed_scan.attr,
11575 &dev_attr_net_stats.attr,
Zhu Yi375dd242007-02-14 16:04:24 +080011576 &dev_attr_channels.attr,
Zhu Yid685b8c2006-04-13 17:20:27 +080011577#ifdef CONFIG_IPW2200_PROMISCUOUS
11578 &dev_attr_rtap_iface.attr,
11579 &dev_attr_rtap_filter.attr,
11580#endif
James Ketrenos43f66a62005-03-25 12:31:53 -060011581 NULL
11582};
11583
11584static struct attribute_group ipw_attribute_group = {
11585 .name = NULL, /* put in device directory */
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011586 .attrs = ipw_sysfs_entries,
James Ketrenos43f66a62005-03-25 12:31:53 -060011587};
11588
Zhu Yid685b8c2006-04-13 17:20:27 +080011589#ifdef CONFIG_IPW2200_PROMISCUOUS
11590static int ipw_prom_open(struct net_device *dev)
11591{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011592 struct ipw_prom_priv *prom_priv = libipw_priv(dev);
Zhu Yid685b8c2006-04-13 17:20:27 +080011593 struct ipw_priv *priv = prom_priv->priv;
11594
11595 IPW_DEBUG_INFO("prom dev->open\n");
11596 netif_carrier_off(dev);
Zhu Yid685b8c2006-04-13 17:20:27 +080011597
11598 if (priv->ieee->iw_mode != IW_MODE_MONITOR) {
11599 priv->sys_config.accept_all_data_frames = 1;
11600 priv->sys_config.accept_non_directed_frames = 1;
11601 priv->sys_config.accept_all_mgmt_bcpr = 1;
11602 priv->sys_config.accept_all_mgmt_frames = 1;
11603
11604 ipw_send_system_config(priv);
11605 }
11606
11607 return 0;
11608}
11609
11610static int ipw_prom_stop(struct net_device *dev)
11611{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011612 struct ipw_prom_priv *prom_priv = libipw_priv(dev);
Zhu Yid685b8c2006-04-13 17:20:27 +080011613 struct ipw_priv *priv = prom_priv->priv;
11614
11615 IPW_DEBUG_INFO("prom dev->stop\n");
11616
11617 if (priv->ieee->iw_mode != IW_MODE_MONITOR) {
11618 priv->sys_config.accept_all_data_frames = 0;
11619 priv->sys_config.accept_non_directed_frames = 0;
11620 priv->sys_config.accept_all_mgmt_bcpr = 0;
11621 priv->sys_config.accept_all_mgmt_frames = 0;
11622
11623 ipw_send_system_config(priv);
11624 }
11625
11626 return 0;
11627}
11628
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +000011629static netdev_tx_t ipw_prom_hard_start_xmit(struct sk_buff *skb,
11630 struct net_device *dev)
Zhu Yid685b8c2006-04-13 17:20:27 +080011631{
11632 IPW_DEBUG_INFO("prom dev->xmit\n");
Patrick McHardy4153e772009-06-12 04:08:02 +000011633 dev_kfree_skb(skb);
11634 return NETDEV_TX_OK;
Zhu Yid685b8c2006-04-13 17:20:27 +080011635}
11636
Stephen Hemminger44e9ad02009-03-20 19:36:41 +000011637static const struct net_device_ops ipw_prom_netdev_ops = {
11638 .ndo_open = ipw_prom_open,
11639 .ndo_stop = ipw_prom_stop,
11640 .ndo_start_xmit = ipw_prom_hard_start_xmit,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011641 .ndo_change_mtu = libipw_change_mtu,
Stephen Hemminger44e9ad02009-03-20 19:36:41 +000011642 .ndo_set_mac_address = eth_mac_addr,
11643 .ndo_validate_addr = eth_validate_addr,
11644};
11645
Zhu Yid685b8c2006-04-13 17:20:27 +080011646static int ipw_prom_alloc(struct ipw_priv *priv)
11647{
11648 int rc = 0;
11649
11650 if (priv->prom_net_dev)
11651 return -EPERM;
11652
John W. Linvillea3caa992009-08-25 14:12:25 -040011653 priv->prom_net_dev = alloc_ieee80211(sizeof(struct ipw_prom_priv), 1);
Zhu Yid685b8c2006-04-13 17:20:27 +080011654 if (priv->prom_net_dev == NULL)
11655 return -ENOMEM;
11656
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011657 priv->prom_priv = libipw_priv(priv->prom_net_dev);
Zhu Yid685b8c2006-04-13 17:20:27 +080011658 priv->prom_priv->ieee = netdev_priv(priv->prom_net_dev);
11659 priv->prom_priv->priv = priv;
11660
11661 strcpy(priv->prom_net_dev->name, "rtap%d");
Daniel Drake3f2eeac2008-04-02 20:33:54 +010011662 memcpy(priv->prom_net_dev->dev_addr, priv->mac_addr, ETH_ALEN);
Zhu Yid685b8c2006-04-13 17:20:27 +080011663
11664 priv->prom_net_dev->type = ARPHRD_IEEE80211_RADIOTAP;
Stephen Hemminger44e9ad02009-03-20 19:36:41 +000011665 priv->prom_net_dev->netdev_ops = &ipw_prom_netdev_ops;
Zhu Yid685b8c2006-04-13 17:20:27 +080011666
11667 priv->prom_priv->ieee->iw_mode = IW_MODE_MONITOR;
Masakazu Mokuno229ce3a2008-05-14 14:16:50 +090011668 SET_NETDEV_DEV(priv->prom_net_dev, &priv->pci_dev->dev);
Zhu Yid685b8c2006-04-13 17:20:27 +080011669
11670 rc = register_netdev(priv->prom_net_dev);
11671 if (rc) {
John W. Linvillea3caa992009-08-25 14:12:25 -040011672 free_ieee80211(priv->prom_net_dev, 1);
Zhu Yid685b8c2006-04-13 17:20:27 +080011673 priv->prom_net_dev = NULL;
11674 return rc;
11675 }
11676
11677 return 0;
11678}
11679
11680static void ipw_prom_free(struct ipw_priv *priv)
11681{
11682 if (!priv->prom_net_dev)
11683 return;
11684
11685 unregister_netdev(priv->prom_net_dev);
John W. Linvillea3caa992009-08-25 14:12:25 -040011686 free_ieee80211(priv->prom_net_dev, 1);
Zhu Yid685b8c2006-04-13 17:20:27 +080011687
11688 priv->prom_net_dev = NULL;
11689}
11690
11691#endif
11692
Stephen Hemminger44e9ad02009-03-20 19:36:41 +000011693static const struct net_device_ops ipw_netdev_ops = {
11694 .ndo_init = ipw_net_init,
11695 .ndo_open = ipw_net_open,
11696 .ndo_stop = ipw_net_stop,
11697 .ndo_set_multicast_list = ipw_net_set_multicast_list,
11698 .ndo_set_mac_address = ipw_net_set_mac_address,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011699 .ndo_start_xmit = libipw_xmit,
11700 .ndo_change_mtu = libipw_change_mtu,
Stephen Hemminger44e9ad02009-03-20 19:36:41 +000011701 .ndo_validate_addr = eth_validate_addr,
11702};
Zhu Yid685b8c2006-04-13 17:20:27 +080011703
Adrian Bunk2ef19e62007-12-11 23:20:22 +010011704static int __devinit ipw_pci_probe(struct pci_dev *pdev,
11705 const struct pci_device_id *ent)
James Ketrenos43f66a62005-03-25 12:31:53 -060011706{
11707 int err = 0;
11708 struct net_device *net_dev;
11709 void __iomem *base;
11710 u32 length, val;
11711 struct ipw_priv *priv;
James Ketrenosafbf30a2005-08-25 00:05:33 -050011712 int i;
James Ketrenos43f66a62005-03-25 12:31:53 -060011713
John W. Linvillea3caa992009-08-25 14:12:25 -040011714 net_dev = alloc_ieee80211(sizeof(struct ipw_priv), 0);
James Ketrenos43f66a62005-03-25 12:31:53 -060011715 if (net_dev == NULL) {
11716 err = -ENOMEM;
11717 goto out;
11718 }
11719
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011720 priv = libipw_priv(net_dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060011721 priv->ieee = netdev_priv(net_dev);
James Ketrenosa613bff2005-08-24 21:43:11 -050011722
James Ketrenos43f66a62005-03-25 12:31:53 -060011723 priv->net_dev = net_dev;
11724 priv->pci_dev = pdev;
James Ketrenos43f66a62005-03-25 12:31:53 -060011725 ipw_debug_level = debug;
Zhu Yi89c318e2006-06-08 22:19:49 -070011726 spin_lock_init(&priv->irq_lock);
James Ketrenos43f66a62005-03-25 12:31:53 -060011727 spin_lock_init(&priv->lock);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011728 for (i = 0; i < IPW_IBSS_MAC_HASH_SIZE; i++)
11729 INIT_LIST_HEAD(&priv->ibss_mac_hash[i]);
James Ketrenos43f66a62005-03-25 12:31:53 -060011730
Zhu Yi46441512006-01-24 16:37:59 +080011731 mutex_init(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060011732 if (pci_enable_device(pdev)) {
11733 err = -ENODEV;
11734 goto out_free_ieee80211;
11735 }
11736
11737 pci_set_master(pdev);
11738
Yang Hongyang284901a2009-04-06 19:01:15 -070011739 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Jeff Garzikbf794512005-07-31 13:07:26 -040011740 if (!err)
Yang Hongyang284901a2009-04-06 19:01:15 -070011741 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
James Ketrenos43f66a62005-03-25 12:31:53 -060011742 if (err) {
11743 printk(KERN_WARNING DRV_NAME ": No suitable DMA available.\n");
11744 goto out_pci_disable_device;
11745 }
11746
11747 pci_set_drvdata(pdev, priv);
11748
11749 err = pci_request_regions(pdev, DRV_NAME);
Jeff Garzikbf794512005-07-31 13:07:26 -040011750 if (err)
James Ketrenos43f66a62005-03-25 12:31:53 -060011751 goto out_pci_disable_device;
11752
Jeff Garzikbf794512005-07-31 13:07:26 -040011753 /* We disable the RETRY_TIMEOUT register (0x41) to keep
James Ketrenos43f66a62005-03-25 12:31:53 -060011754 * PCI Tx retries from interfering with C3 CPU state */
Jeff Garzikbf794512005-07-31 13:07:26 -040011755 pci_read_config_dword(pdev, 0x40, &val);
11756 if ((val & 0x0000ff00) != 0)
James Ketrenos43f66a62005-03-25 12:31:53 -060011757 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
Jeff Garzikbf794512005-07-31 13:07:26 -040011758
James Ketrenos43f66a62005-03-25 12:31:53 -060011759 length = pci_resource_len(pdev, 0);
11760 priv->hw_len = length;
Jeff Garzikbf794512005-07-31 13:07:26 -040011761
Arjan van de Ven275f1652008-10-20 21:42:39 -070011762 base = pci_ioremap_bar(pdev, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -060011763 if (!base) {
11764 err = -ENODEV;
11765 goto out_pci_release_regions;
11766 }
11767
11768 priv->hw_base = base;
11769 IPW_DEBUG_INFO("pci_resource_len = 0x%08x\n", length);
11770 IPW_DEBUG_INFO("pci_resource_base = %p\n", base);
11771
11772 err = ipw_setup_deferred_work(priv);
11773 if (err) {
11774 IPW_ERROR("Unable to setup deferred work\n");
11775 goto out_iounmap;
11776 }
11777
James Ketrenosb095c382005-08-24 22:04:42 -050011778 ipw_sw_reset(priv, 1);
James Ketrenos43f66a62005-03-25 12:31:53 -060011779
Thomas Gleixner1fb9df52006-07-01 19:29:39 -070011780 err = request_irq(pdev->irq, ipw_isr, IRQF_SHARED, DRV_NAME, priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060011781 if (err) {
11782 IPW_ERROR("Error allocating IRQ %d\n", pdev->irq);
11783 goto out_destroy_workqueue;
11784 }
11785
James Ketrenos43f66a62005-03-25 12:31:53 -060011786 SET_NETDEV_DEV(net_dev, &pdev->dev);
11787
Zhu Yi46441512006-01-24 16:37:59 +080011788 mutex_lock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -050011789
James Ketrenos43f66a62005-03-25 12:31:53 -060011790 priv->ieee->hard_start_xmit = ipw_net_hard_start_xmit;
11791 priv->ieee->set_security = shim__set_security;
James Ketrenos227d2dc2005-07-28 16:25:55 -050011792 priv->ieee->is_queue_full = ipw_net_is_queue_full;
James Ketrenos43f66a62005-03-25 12:31:53 -060011793
Zhu Yie43e3c12006-04-13 17:20:45 +080011794#ifdef CONFIG_IPW2200_QOS
Zhu Yia5cf4fe2006-04-13 17:19:11 +080011795 priv->ieee->is_qos_active = ipw_is_qos_active;
James Ketrenos3b9990c2005-08-19 13:18:55 -050011796 priv->ieee->handle_probe_response = ipw_handle_beacon;
11797 priv->ieee->handle_beacon = ipw_handle_probe_response;
11798 priv->ieee->handle_assoc_response = ipw_handle_assoc_response;
Zhu Yie43e3c12006-04-13 17:20:45 +080011799#endif /* CONFIG_IPW2200_QOS */
James Ketrenosb095c382005-08-24 22:04:42 -050011800
James Ketrenosc848d0a2005-08-24 21:56:24 -050011801 priv->ieee->perfect_rssi = -20;
11802 priv->ieee->worst_rssi = -85;
James Ketrenos43f66a62005-03-25 12:31:53 -060011803
Stephen Hemminger44e9ad02009-03-20 19:36:41 +000011804 net_dev->netdev_ops = &ipw_netdev_ops;
Benoit Boissinot97a78ca2005-09-15 17:30:28 +000011805 priv->wireless_data.spy_data = &priv->ieee->spy_data;
Benoit Boissinot97a78ca2005-09-15 17:30:28 +000011806 net_dev->wireless_data = &priv->wireless_data;
James Ketrenos43f66a62005-03-25 12:31:53 -060011807 net_dev->wireless_handlers = &ipw_wx_handler_def;
11808 net_dev->ethtool_ops = &ipw_ethtool_ops;
11809 net_dev->irq = pdev->irq;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011810 net_dev->base_addr = (unsigned long)priv->hw_base;
James Ketrenos43f66a62005-03-25 12:31:53 -060011811 net_dev->mem_start = pci_resource_start(pdev, 0);
11812 net_dev->mem_end = net_dev->mem_start + pci_resource_len(pdev, 0) - 1;
11813
11814 err = sysfs_create_group(&pdev->dev.kobj, &ipw_attribute_group);
11815 if (err) {
11816 IPW_ERROR("failed to create sysfs device attributes\n");
Zhu Yi46441512006-01-24 16:37:59 +080011817 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060011818 goto out_release_irq;
11819 }
11820
Zhu Yi46441512006-01-24 16:37:59 +080011821 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060011822 err = register_netdev(net_dev);
11823 if (err) {
11824 IPW_ERROR("failed to register network device\n");
James Ketrenosa613bff2005-08-24 21:43:11 -050011825 goto out_remove_sysfs;
James Ketrenos43f66a62005-03-25 12:31:53 -060011826 }
Henrik Brix Andersen48a84772006-02-14 09:09:52 +080011827
Zhu Yid685b8c2006-04-13 17:20:27 +080011828#ifdef CONFIG_IPW2200_PROMISCUOUS
11829 if (rtap_iface) {
11830 err = ipw_prom_alloc(priv);
11831 if (err) {
11832 IPW_ERROR("Failed to register promiscuous network "
11833 "device (error %d).\n", err);
11834 unregister_netdev(priv->net_dev);
11835 goto out_remove_sysfs;
11836 }
11837 }
11838#endif
11839
Henrik Brix Andersen48a84772006-02-14 09:09:52 +080011840 printk(KERN_INFO DRV_NAME ": Detected geography %s (%d 802.11bg "
11841 "channels, %d 802.11a channels)\n",
11842 priv->ieee->geo.name, priv->ieee->geo.bg_channels,
11843 priv->ieee->geo.a_channels);
11844
James Ketrenos43f66a62005-03-25 12:31:53 -060011845 return 0;
11846
James Ketrenosa613bff2005-08-24 21:43:11 -050011847 out_remove_sysfs:
James Ketrenos43f66a62005-03-25 12:31:53 -060011848 sysfs_remove_group(&pdev->dev.kobj, &ipw_attribute_group);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011849 out_release_irq:
James Ketrenos43f66a62005-03-25 12:31:53 -060011850 free_irq(pdev->irq, priv);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011851 out_destroy_workqueue:
James Ketrenos43f66a62005-03-25 12:31:53 -060011852 destroy_workqueue(priv->workqueue);
11853 priv->workqueue = NULL;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011854 out_iounmap:
James Ketrenos43f66a62005-03-25 12:31:53 -060011855 iounmap(priv->hw_base);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011856 out_pci_release_regions:
James Ketrenos43f66a62005-03-25 12:31:53 -060011857 pci_release_regions(pdev);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011858 out_pci_disable_device:
James Ketrenos43f66a62005-03-25 12:31:53 -060011859 pci_disable_device(pdev);
11860 pci_set_drvdata(pdev, NULL);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011861 out_free_ieee80211:
John W. Linvillea3caa992009-08-25 14:12:25 -040011862 free_ieee80211(priv->net_dev, 0);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011863 out:
James Ketrenos43f66a62005-03-25 12:31:53 -060011864 return err;
11865}
11866
Adrian Bunk2ef19e62007-12-11 23:20:22 +010011867static void __devexit ipw_pci_remove(struct pci_dev *pdev)
James Ketrenos43f66a62005-03-25 12:31:53 -060011868{
11869 struct ipw_priv *priv = pci_get_drvdata(pdev);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011870 struct list_head *p, *q;
11871 int i;
James Ketrenosb095c382005-08-24 22:04:42 -050011872
James Ketrenos43f66a62005-03-25 12:31:53 -060011873 if (!priv)
11874 return;
11875
Zhu Yi46441512006-01-24 16:37:59 +080011876 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060011877
James Ketrenosafbf30a2005-08-25 00:05:33 -050011878 priv->status |= STATUS_EXIT_PENDING;
James Ketrenos43f66a62005-03-25 12:31:53 -060011879 ipw_down(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060011880 sysfs_remove_group(&pdev->dev.kobj, &ipw_attribute_group);
11881
Zhu Yi46441512006-01-24 16:37:59 +080011882 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060011883
11884 unregister_netdev(priv->net_dev);
11885
11886 if (priv->rxq) {
11887 ipw_rx_queue_free(priv, priv->rxq);
11888 priv->rxq = NULL;
11889 }
11890 ipw_tx_queue_free(priv);
11891
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011892 if (priv->cmdlog) {
11893 kfree(priv->cmdlog);
11894 priv->cmdlog = NULL;
11895 }
James Ketrenos43f66a62005-03-25 12:31:53 -060011896 /* ipw_down will ensure that there is no more pending work
11897 * in the workqueue's, so we can safely remove them now. */
James Ketrenosa613bff2005-08-24 21:43:11 -050011898 cancel_delayed_work(&priv->adhoc_check);
11899 cancel_delayed_work(&priv->gather_stats);
11900 cancel_delayed_work(&priv->request_scan);
Dan Williamsea177302008-06-02 17:51:23 -040011901 cancel_delayed_work(&priv->request_direct_scan);
11902 cancel_delayed_work(&priv->request_passive_scan);
Dan Williams0b531672007-10-09 13:55:24 -040011903 cancel_delayed_work(&priv->scan_event);
James Ketrenosa613bff2005-08-24 21:43:11 -050011904 cancel_delayed_work(&priv->rf_kill);
11905 cancel_delayed_work(&priv->scan_check);
11906 destroy_workqueue(priv->workqueue);
11907 priv->workqueue = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -060011908
James Ketrenosafbf30a2005-08-25 00:05:33 -050011909 /* Free MAC hash list for ADHOC */
11910 for (i = 0; i < IPW_IBSS_MAC_HASH_SIZE; i++) {
11911 list_for_each_safe(p, q, &priv->ibss_mac_hash[i]) {
James Ketrenosafbf30a2005-08-25 00:05:33 -050011912 list_del(p);
Zhu Yi489f4452006-01-24 16:37:41 +080011913 kfree(list_entry(p, struct ipw_ibss_seq, list));
James Ketrenosafbf30a2005-08-25 00:05:33 -050011914 }
11915 }
11916
Jesper Juhl8f760782006-06-27 02:55:06 -070011917 kfree(priv->error);
11918 priv->error = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -060011919
Zhu Yid685b8c2006-04-13 17:20:27 +080011920#ifdef CONFIG_IPW2200_PROMISCUOUS
11921 ipw_prom_free(priv);
11922#endif
11923
James Ketrenos43f66a62005-03-25 12:31:53 -060011924 free_irq(pdev->irq, priv);
11925 iounmap(priv->hw_base);
11926 pci_release_regions(pdev);
11927 pci_disable_device(pdev);
11928 pci_set_drvdata(pdev, NULL);
John W. Linvillea3caa992009-08-25 14:12:25 -040011929 /* wiphy_unregister needs to be here, before free_ieee80211 */
11930 wiphy_unregister(priv->ieee->wdev.wiphy);
11931 kfree(priv->ieee->a_band.channels);
11932 kfree(priv->ieee->bg_band.channels);
11933 free_ieee80211(priv->net_dev, 0);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011934 free_firmware();
James Ketrenos43f66a62005-03-25 12:31:53 -060011935}
11936
James Ketrenos43f66a62005-03-25 12:31:53 -060011937#ifdef CONFIG_PM
Pavel Machek583a4e82005-09-03 15:56:58 -070011938static int ipw_pci_suspend(struct pci_dev *pdev, pm_message_t state)
James Ketrenos43f66a62005-03-25 12:31:53 -060011939{
11940 struct ipw_priv *priv = pci_get_drvdata(pdev);
11941 struct net_device *dev = priv->net_dev;
11942
11943 printk(KERN_INFO "%s: Going into suspend...\n", dev->name);
11944
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011945 /* Take down the device; powers it off, etc. */
James Ketrenos43f66a62005-03-25 12:31:53 -060011946 ipw_down(priv);
11947
11948 /* Remove the PRESENT state of the device */
11949 netif_device_detach(dev);
11950
James Ketrenos43f66a62005-03-25 12:31:53 -060011951 pci_save_state(pdev);
James Ketrenos43f66a62005-03-25 12:31:53 -060011952 pci_disable_device(pdev);
Pavel Machek583a4e82005-09-03 15:56:58 -070011953 pci_set_power_state(pdev, pci_choose_state(pdev, state));
Jeff Garzikbf794512005-07-31 13:07:26 -040011954
Dan Williamsc3d72b92009-02-11 13:26:06 -050011955 priv->suspend_at = get_seconds();
11956
James Ketrenos43f66a62005-03-25 12:31:53 -060011957 return 0;
11958}
11959
11960static int ipw_pci_resume(struct pci_dev *pdev)
11961{
11962 struct ipw_priv *priv = pci_get_drvdata(pdev);
11963 struct net_device *dev = priv->net_dev;
John W. Linville02e0e5e2006-11-07 20:53:48 -050011964 int err;
James Ketrenos43f66a62005-03-25 12:31:53 -060011965 u32 val;
Jeff Garzikbf794512005-07-31 13:07:26 -040011966
James Ketrenos43f66a62005-03-25 12:31:53 -060011967 printk(KERN_INFO "%s: Coming out of suspend...\n", dev->name);
11968
James Ketrenosea2b26e2005-08-24 21:25:16 -050011969 pci_set_power_state(pdev, PCI_D0);
John W. Linville02e0e5e2006-11-07 20:53:48 -050011970 err = pci_enable_device(pdev);
11971 if (err) {
11972 printk(KERN_ERR "%s: pci_enable_device failed on resume\n",
11973 dev->name);
11974 return err;
11975 }
James Ketrenos43f66a62005-03-25 12:31:53 -060011976 pci_restore_state(pdev);
James Ketrenosea2b26e2005-08-24 21:25:16 -050011977
James Ketrenos43f66a62005-03-25 12:31:53 -060011978 /*
11979 * Suspend/Resume resets the PCI configuration space, so we have to
11980 * re-disable the RETRY_TIMEOUT register (0x41) to keep PCI Tx retries
11981 * from interfering with C3 CPU state. pci_restore_state won't help
11982 * here since it only restores the first 64 bytes pci config header.
11983 */
Jeff Garzikbf794512005-07-31 13:07:26 -040011984 pci_read_config_dword(pdev, 0x40, &val);
11985 if ((val & 0x0000ff00) != 0)
James Ketrenos43f66a62005-03-25 12:31:53 -060011986 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
11987
11988 /* Set the device back into the PRESENT state; this will also wake
11989 * the queue of needed */
11990 netif_device_attach(dev);
11991
Dan Williamsc3d72b92009-02-11 13:26:06 -050011992 priv->suspend_time = get_seconds() - priv->suspend_at;
11993
James Ketrenos43f66a62005-03-25 12:31:53 -060011994 /* Bring the device back up */
11995 queue_work(priv->workqueue, &priv->up);
Jeff Garzikbf794512005-07-31 13:07:26 -040011996
James Ketrenos43f66a62005-03-25 12:31:53 -060011997 return 0;
11998}
11999#endif
12000
Zhu Yic8c22c92006-08-21 11:38:39 +080012001static void ipw_pci_shutdown(struct pci_dev *pdev)
12002{
12003 struct ipw_priv *priv = pci_get_drvdata(pdev);
12004
12005 /* Take down the device; powers it off, etc. */
12006 ipw_down(priv);
12007
12008 pci_disable_device(pdev);
12009}
12010
James Ketrenos43f66a62005-03-25 12:31:53 -060012011/* driver initialization stuff */
12012static struct pci_driver ipw_driver = {
12013 .name = DRV_NAME,
12014 .id_table = card_ids,
12015 .probe = ipw_pci_probe,
12016 .remove = __devexit_p(ipw_pci_remove),
12017#ifdef CONFIG_PM
12018 .suspend = ipw_pci_suspend,
12019 .resume = ipw_pci_resume,
12020#endif
Zhu Yic8c22c92006-08-21 11:38:39 +080012021 .shutdown = ipw_pci_shutdown,
James Ketrenos43f66a62005-03-25 12:31:53 -060012022};
12023
12024static int __init ipw_init(void)
12025{
12026 int ret;
12027
12028 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
12029 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
12030
Jeff Garzik29917622006-08-19 17:48:59 -040012031 ret = pci_register_driver(&ipw_driver);
James Ketrenos43f66a62005-03-25 12:31:53 -060012032 if (ret) {
12033 IPW_ERROR("Unable to initialize PCI module\n");
12034 return ret;
12035 }
12036
Jeff Garzik0edd5b42005-09-07 00:48:31 -040012037 ret = driver_create_file(&ipw_driver.driver, &driver_attr_debug_level);
James Ketrenos43f66a62005-03-25 12:31:53 -060012038 if (ret) {
12039 IPW_ERROR("Unable to create driver sysfs file\n");
12040 pci_unregister_driver(&ipw_driver);
12041 return ret;
12042 }
12043
12044 return ret;
12045}
12046
12047static void __exit ipw_exit(void)
12048{
12049 driver_remove_file(&ipw_driver.driver, &driver_attr_debug_level);
12050 pci_unregister_driver(&ipw_driver);
12051}
12052
12053module_param(disable, int, 0444);
12054MODULE_PARM_DESC(disable, "manually disable the radio (default 0 [radio on])");
12055
12056module_param(associate, int, 0444);
Tim Gardner5c7f9b72008-10-14 10:38:03 -060012057MODULE_PARM_DESC(associate, "auto associate when scanning (default off)");
James Ketrenos43f66a62005-03-25 12:31:53 -060012058
12059module_param(auto_create, int, 0444);
12060MODULE_PARM_DESC(auto_create, "auto create adhoc network (default on)");
12061
Reinette Chatre21f8a732009-08-18 10:25:05 -070012062module_param_named(led, led_support, int, 0444);
Niels de Vos61a2d072008-07-31 00:07:23 -070012063MODULE_PARM_DESC(led, "enable led control on some systems (default 0 off)");
James Ketrenosa613bff2005-08-24 21:43:11 -050012064
James Ketrenos43f66a62005-03-25 12:31:53 -060012065module_param(debug, int, 0444);
12066MODULE_PARM_DESC(debug, "debug output mask");
12067
Reinette Chatre21f8a732009-08-18 10:25:05 -070012068module_param_named(channel, default_channel, int, 0444);
Jeff Garzikbf794512005-07-31 13:07:26 -040012069MODULE_PARM_DESC(channel, "channel to limit associate to (default 0 [ANY])");
James Ketrenos43f66a62005-03-25 12:31:53 -060012070
Zhu Yid685b8c2006-04-13 17:20:27 +080012071#ifdef CONFIG_IPW2200_PROMISCUOUS
12072module_param(rtap_iface, int, 0444);
12073MODULE_PARM_DESC(rtap_iface, "create the rtap interface (1 - create, default 0)");
12074#endif
12075
Zhu Yie43e3c12006-04-13 17:20:45 +080012076#ifdef CONFIG_IPW2200_QOS
James Ketrenosb095c382005-08-24 22:04:42 -050012077module_param(qos_enable, int, 0444);
12078MODULE_PARM_DESC(qos_enable, "enable all QoS functionalitis");
James Ketrenos43f66a62005-03-25 12:31:53 -060012079
James Ketrenosb095c382005-08-24 22:04:42 -050012080module_param(qos_burst_enable, int, 0444);
12081MODULE_PARM_DESC(qos_burst_enable, "enable QoS burst mode");
12082
12083module_param(qos_no_ack_mask, int, 0444);
12084MODULE_PARM_DESC(qos_no_ack_mask, "mask Tx_Queue to no ack");
12085
12086module_param(burst_duration_CCK, int, 0444);
12087MODULE_PARM_DESC(burst_duration_CCK, "set CCK burst value");
12088
12089module_param(burst_duration_OFDM, int, 0444);
12090MODULE_PARM_DESC(burst_duration_OFDM, "set OFDM burst value");
Zhu Yie43e3c12006-04-13 17:20:45 +080012091#endif /* CONFIG_IPW2200_QOS */
James Ketrenosb095c382005-08-24 22:04:42 -050012092
12093#ifdef CONFIG_IPW2200_MONITOR
Reinette Chatre21f8a732009-08-18 10:25:05 -070012094module_param_named(mode, network_mode, int, 0444);
James Ketrenos43f66a62005-03-25 12:31:53 -060012095MODULE_PARM_DESC(mode, "network mode (0=BSS,1=IBSS,2=Monitor)");
12096#else
Reinette Chatre21f8a732009-08-18 10:25:05 -070012097module_param_named(mode, network_mode, int, 0444);
James Ketrenos43f66a62005-03-25 12:31:53 -060012098MODULE_PARM_DESC(mode, "network mode (0=BSS,1=IBSS)");
12099#endif
12100
Zhu Yi810dabd2006-01-24 16:36:59 +080012101module_param(bt_coexist, int, 0444);
12102MODULE_PARM_DESC(bt_coexist, "enable bluetooth coexistence (default off)");
12103
James Ketrenosb095c382005-08-24 22:04:42 -050012104module_param(hwcrypto, int, 0444);
Zhu Yibde37d02006-01-24 16:38:08 +080012105MODULE_PARM_DESC(hwcrypto, "enable hardware crypto (default off)");
James Ketrenosb095c382005-08-24 22:04:42 -050012106
James Ketrenosf6c5cb72005-08-25 00:39:09 -050012107module_param(cmdlog, int, 0444);
12108MODULE_PARM_DESC(cmdlog,
12109 "allocate a ring buffer for logging firmware commands");
12110
Zhu Yi4bfdb912006-01-24 16:37:16 +080012111module_param(roaming, int, 0444);
12112MODULE_PARM_DESC(roaming, "enable roaming support (default on)");
12113
Zhu Yid2b83e12006-04-13 17:19:36 +080012114module_param(antenna, int, 0444);
12115MODULE_PARM_DESC(antenna, "select antenna 1=Main, 3=Aux, default 0 [both], 2=slow_diversity (choose the one with lower background noise)");
12116
James Ketrenos43f66a62005-03-25 12:31:53 -060012117module_exit(ipw_exit);
12118module_init(ipw_init);