blob: cb2552a6777c1a26573b5684320933486747d20c [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
Alexey Dobriyand43c36d2009-10-07 17:09:06 +040033#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/slab.h>
James Ketrenos43f66a62005-03-25 12:31:53 -060035#include "ipw2200.h"
36
Zhu Yiae4af612006-04-13 17:20:34 +080037
38#ifndef KBUILD_EXTMOD
39#define VK "k"
40#else
41#define VK
42#endif
43
44#ifdef CONFIG_IPW2200_DEBUG
45#define VD "d"
46#else
47#define VD
48#endif
49
50#ifdef CONFIG_IPW2200_MONITOR
51#define VM "m"
52#else
53#define VM
54#endif
55
56#ifdef CONFIG_IPW2200_PROMISCUOUS
57#define VP "p"
58#else
59#define VP
60#endif
61
Zhu Yi459d4082006-04-13 17:21:00 +080062#ifdef CONFIG_IPW2200_RADIOTAP
Zhu Yiae4af612006-04-13 17:20:34 +080063#define VR "r"
64#else
65#define VR
66#endif
67
68#ifdef CONFIG_IPW2200_QOS
69#define VQ "q"
70#else
71#define VQ
72#endif
73
Zhu Yiee2c4ad2007-07-12 16:09:47 +080074#define IPW2200_VERSION "1.2.2" VK VD VM VP VR VQ
James Ketrenos43f66a62005-03-25 12:31:53 -060075#define DRV_DESCRIPTION "Intel(R) PRO/Wireless 2200/2915 Network Driver"
Zhu Yi171e7b22006-02-15 07:17:56 +080076#define DRV_COPYRIGHT "Copyright(c) 2003-2006 Intel Corporation"
James Ketrenos43f66a62005-03-25 12:31:53 -060077#define DRV_VERSION IPW2200_VERSION
78
James Ketrenosb095c382005-08-24 22:04:42 -050079#define ETH_P_80211_STATS (ETH_P_80211_RAW + 1)
80
James Ketrenos43f66a62005-03-25 12:31:53 -060081MODULE_DESCRIPTION(DRV_DESCRIPTION);
82MODULE_VERSION(DRV_VERSION);
83MODULE_AUTHOR(DRV_COPYRIGHT);
84MODULE_LICENSE("GPL");
Ben Hutchings873395a2009-11-07 21:59:10 +000085MODULE_FIRMWARE("ipw2200-ibss.fw");
86#ifdef CONFIG_IPW2200_MONITOR
87MODULE_FIRMWARE("ipw2200-sniffer.fw");
88#endif
89MODULE_FIRMWARE("ipw2200-bss.fw");
James Ketrenos43f66a62005-03-25 12:31:53 -060090
James Ketrenosf6c5cb72005-08-25 00:39:09 -050091static int cmdlog = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060092static int debug = 0;
Reinette Chatre21f8a732009-08-18 10:25:05 -070093static int default_channel = 0;
94static int network_mode = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060095
96static u32 ipw_debug_level;
Tim Gardner5c7f9b72008-10-14 10:38:03 -060097static int associate;
James Ketrenos43f66a62005-03-25 12:31:53 -060098static int auto_create = 1;
ubuntu@tjworld.netc086aba2009-03-23 20:29:28 +000099static int led_support = 1;
James Ketrenos43f66a62005-03-25 12:31:53 -0600100static int disable = 0;
Zhu Yi810dabd2006-01-24 16:36:59 +0800101static int bt_coexist = 0;
Zhu Yibde37d02006-01-24 16:38:08 +0800102static int hwcrypto = 0;
Zhu Yi4bfdb912006-01-24 16:37:16 +0800103static int roaming = 1;
James Ketrenos43f66a62005-03-25 12:31:53 -0600104static const char ipw_modes[] = {
105 'a', 'b', 'g', '?'
106};
Zhu Yid2b83e12006-04-13 17:19:36 +0800107static int antenna = CFG_SYS_ANTENNA_BOTH;
James Ketrenos43f66a62005-03-25 12:31:53 -0600108
Zhu Yid685b8c2006-04-13 17:20:27 +0800109#ifdef CONFIG_IPW2200_PROMISCUOUS
110static int rtap_iface = 0; /* def: 0 -- do not create rtap interface */
111#endif
112
John W. Linvillea3caa992009-08-25 14:12:25 -0400113static struct ieee80211_rate ipw2200_rates[] = {
114 { .bitrate = 10 },
115 { .bitrate = 20, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
116 { .bitrate = 55, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
117 { .bitrate = 110, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
118 { .bitrate = 60 },
119 { .bitrate = 90 },
120 { .bitrate = 120 },
121 { .bitrate = 180 },
122 { .bitrate = 240 },
123 { .bitrate = 360 },
124 { .bitrate = 480 },
125 { .bitrate = 540 }
126};
127
128#define ipw2200_a_rates (ipw2200_rates + 4)
129#define ipw2200_num_a_rates 8
130#define ipw2200_bg_rates (ipw2200_rates + 0)
131#define ipw2200_num_bg_rates 12
Zhu Yid685b8c2006-04-13 17:20:27 +0800132
Zhu Yie43e3c12006-04-13 17:20:45 +0800133#ifdef CONFIG_IPW2200_QOS
James Ketrenosb095c382005-08-24 22:04:42 -0500134static int qos_enable = 0;
135static int qos_burst_enable = 0;
136static int qos_no_ack_mask = 0;
137static int burst_duration_CCK = 0;
138static int burst_duration_OFDM = 0;
139
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400140static struct libipw_qos_parameters def_qos_parameters_OFDM = {
James Ketrenosb095c382005-08-24 22:04:42 -0500141 {QOS_TX0_CW_MIN_OFDM, QOS_TX1_CW_MIN_OFDM, QOS_TX2_CW_MIN_OFDM,
142 QOS_TX3_CW_MIN_OFDM},
143 {QOS_TX0_CW_MAX_OFDM, QOS_TX1_CW_MAX_OFDM, QOS_TX2_CW_MAX_OFDM,
144 QOS_TX3_CW_MAX_OFDM},
145 {QOS_TX0_AIFS, QOS_TX1_AIFS, QOS_TX2_AIFS, QOS_TX3_AIFS},
146 {QOS_TX0_ACM, QOS_TX1_ACM, QOS_TX2_ACM, QOS_TX3_ACM},
147 {QOS_TX0_TXOP_LIMIT_OFDM, QOS_TX1_TXOP_LIMIT_OFDM,
148 QOS_TX2_TXOP_LIMIT_OFDM, QOS_TX3_TXOP_LIMIT_OFDM}
149};
150
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400151static struct libipw_qos_parameters def_qos_parameters_CCK = {
James Ketrenosb095c382005-08-24 22:04:42 -0500152 {QOS_TX0_CW_MIN_CCK, QOS_TX1_CW_MIN_CCK, QOS_TX2_CW_MIN_CCK,
153 QOS_TX3_CW_MIN_CCK},
154 {QOS_TX0_CW_MAX_CCK, QOS_TX1_CW_MAX_CCK, QOS_TX2_CW_MAX_CCK,
155 QOS_TX3_CW_MAX_CCK},
156 {QOS_TX0_AIFS, QOS_TX1_AIFS, QOS_TX2_AIFS, QOS_TX3_AIFS},
157 {QOS_TX0_ACM, QOS_TX1_ACM, QOS_TX2_ACM, QOS_TX3_ACM},
158 {QOS_TX0_TXOP_LIMIT_CCK, QOS_TX1_TXOP_LIMIT_CCK, QOS_TX2_TXOP_LIMIT_CCK,
159 QOS_TX3_TXOP_LIMIT_CCK}
160};
161
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400162static struct libipw_qos_parameters def_parameters_OFDM = {
James Ketrenosb095c382005-08-24 22:04:42 -0500163 {DEF_TX0_CW_MIN_OFDM, DEF_TX1_CW_MIN_OFDM, DEF_TX2_CW_MIN_OFDM,
164 DEF_TX3_CW_MIN_OFDM},
165 {DEF_TX0_CW_MAX_OFDM, DEF_TX1_CW_MAX_OFDM, DEF_TX2_CW_MAX_OFDM,
166 DEF_TX3_CW_MAX_OFDM},
167 {DEF_TX0_AIFS, DEF_TX1_AIFS, DEF_TX2_AIFS, DEF_TX3_AIFS},
168 {DEF_TX0_ACM, DEF_TX1_ACM, DEF_TX2_ACM, DEF_TX3_ACM},
169 {DEF_TX0_TXOP_LIMIT_OFDM, DEF_TX1_TXOP_LIMIT_OFDM,
170 DEF_TX2_TXOP_LIMIT_OFDM, DEF_TX3_TXOP_LIMIT_OFDM}
171};
172
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400173static struct libipw_qos_parameters def_parameters_CCK = {
James Ketrenosb095c382005-08-24 22:04:42 -0500174 {DEF_TX0_CW_MIN_CCK, DEF_TX1_CW_MIN_CCK, DEF_TX2_CW_MIN_CCK,
175 DEF_TX3_CW_MIN_CCK},
176 {DEF_TX0_CW_MAX_CCK, DEF_TX1_CW_MAX_CCK, DEF_TX2_CW_MAX_CCK,
177 DEF_TX3_CW_MAX_CCK},
178 {DEF_TX0_AIFS, DEF_TX1_AIFS, DEF_TX2_AIFS, DEF_TX3_AIFS},
179 {DEF_TX0_ACM, DEF_TX1_ACM, DEF_TX2_ACM, DEF_TX3_ACM},
180 {DEF_TX0_TXOP_LIMIT_CCK, DEF_TX1_TXOP_LIMIT_CCK, DEF_TX2_TXOP_LIMIT_CCK,
181 DEF_TX3_TXOP_LIMIT_CCK}
182};
183
184static u8 qos_oui[QOS_OUI_LEN] = { 0x00, 0x50, 0xF2 };
185
186static int from_priority_to_tx_queue[] = {
187 IPW_TX_QUEUE_1, IPW_TX_QUEUE_2, IPW_TX_QUEUE_2, IPW_TX_QUEUE_1,
188 IPW_TX_QUEUE_3, IPW_TX_QUEUE_3, IPW_TX_QUEUE_4, IPW_TX_QUEUE_4
189};
190
191static u32 ipw_qos_get_burst_duration(struct ipw_priv *priv);
192
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400193static int ipw_send_qos_params_command(struct ipw_priv *priv, struct libipw_qos_parameters
James Ketrenosb095c382005-08-24 22:04:42 -0500194 *qos_param);
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400195static int ipw_send_qos_info_command(struct ipw_priv *priv, struct libipw_qos_information_element
James Ketrenosb095c382005-08-24 22:04:42 -0500196 *qos_param);
Zhu Yie43e3c12006-04-13 17:20:45 +0800197#endif /* CONFIG_IPW2200_QOS */
James Ketrenosb095c382005-08-24 22:04:42 -0500198
Benoit Boissinot97a78ca2005-09-15 17:30:28 +0000199static struct iw_statistics *ipw_get_wireless_stats(struct net_device *dev);
James Ketrenosb095c382005-08-24 22:04:42 -0500200static void ipw_remove_current_network(struct ipw_priv *priv);
James Ketrenos43f66a62005-03-25 12:31:53 -0600201static void ipw_rx(struct ipw_priv *priv);
Jeff Garzikbf794512005-07-31 13:07:26 -0400202static int ipw_queue_tx_reclaim(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -0600203 struct clx2_tx_queue *txq, int qindex);
204static int ipw_queue_reset(struct ipw_priv *priv);
205
206static int ipw_queue_tx_hcmd(struct ipw_priv *priv, int hcmd, void *buf,
207 int len, int sync);
208
209static void ipw_tx_queue_free(struct ipw_priv *);
210
211static struct ipw_rx_queue *ipw_rx_queue_alloc(struct ipw_priv *);
212static void ipw_rx_queue_free(struct ipw_priv *, struct ipw_rx_queue *);
213static void ipw_rx_queue_replenish(void *);
James Ketrenos43f66a62005-03-25 12:31:53 -0600214static int ipw_up(struct ipw_priv *);
David Howellsc4028952006-11-22 14:57:56 +0000215static void ipw_bg_up(struct work_struct *work);
James Ketrenos43f66a62005-03-25 12:31:53 -0600216static void ipw_down(struct ipw_priv *);
David Howellsc4028952006-11-22 14:57:56 +0000217static void ipw_bg_down(struct work_struct *work);
James Ketrenos43f66a62005-03-25 12:31:53 -0600218static int ipw_config(struct ipw_priv *);
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400219static int init_supported_rates(struct ipw_priv *priv,
220 struct ipw_supported_rates *prates);
James Ketrenosb095c382005-08-24 22:04:42 -0500221static void ipw_set_hwcrypto_keys(struct ipw_priv *);
222static void ipw_send_wep_keys(struct ipw_priv *, int);
James Ketrenos43f66a62005-03-25 12:31:53 -0600223
James Ketrenosf6c5cb72005-08-25 00:39:09 -0500224static int snprint_line(char *buf, size_t count,
225 const u8 * data, u32 len, u32 ofs)
James Ketrenos43f66a62005-03-25 12:31:53 -0600226{
227 int out, i, j, l;
228 char c;
Jeff Garzikbf794512005-07-31 13:07:26 -0400229
James Ketrenos43f66a62005-03-25 12:31:53 -0600230 out = snprintf(buf, count, "%08X", ofs);
231
232 for (l = 0, i = 0; i < 2; i++) {
233 out += snprintf(buf + out, count - out, " ");
Jeff Garzikbf794512005-07-31 13:07:26 -0400234 for (j = 0; j < 8 && l < len; j++, l++)
235 out += snprintf(buf + out, count - out, "%02X ",
James Ketrenos43f66a62005-03-25 12:31:53 -0600236 data[(i * 8 + j)]);
237 for (; j < 8; j++)
238 out += snprintf(buf + out, count - out, " ");
239 }
Jeff Garzikbf794512005-07-31 13:07:26 -0400240
James Ketrenos43f66a62005-03-25 12:31:53 -0600241 out += snprintf(buf + out, count - out, " ");
242 for (l = 0, i = 0; i < 2; i++) {
243 out += snprintf(buf + out, count - out, " ");
244 for (j = 0; j < 8 && l < len; j++, l++) {
245 c = data[(i * 8 + j)];
246 if (!isascii(c) || !isprint(c))
247 c = '.';
Jeff Garzikbf794512005-07-31 13:07:26 -0400248
James Ketrenos43f66a62005-03-25 12:31:53 -0600249 out += snprintf(buf + out, count - out, "%c", c);
250 }
251
252 for (; j < 8; j++)
253 out += snprintf(buf + out, count - out, " ");
254 }
Jeff Garzikbf794512005-07-31 13:07:26 -0400255
James Ketrenosf6c5cb72005-08-25 00:39:09 -0500256 return out;
James Ketrenos43f66a62005-03-25 12:31:53 -0600257}
258
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400259static void printk_buf(int level, const u8 * data, u32 len)
James Ketrenos43f66a62005-03-25 12:31:53 -0600260{
261 char line[81];
262 u32 ofs = 0;
263 if (!(ipw_debug_level & level))
264 return;
265
266 while (len) {
James Ketrenosf6c5cb72005-08-25 00:39:09 -0500267 snprint_line(line, sizeof(line), &data[ofs],
268 min(len, 16U), ofs);
269 printk(KERN_DEBUG "%s\n", line);
James Ketrenos43f66a62005-03-25 12:31:53 -0600270 ofs += 16;
271 len -= min(len, 16U);
272 }
273}
274
James Ketrenosf6c5cb72005-08-25 00:39:09 -0500275static int snprintk_buf(u8 * output, size_t size, const u8 * data, size_t len)
276{
277 size_t out = size;
278 u32 ofs = 0;
279 int total = 0;
280
281 while (size && len) {
282 out = snprint_line(output, size, &data[ofs],
283 min_t(size_t, len, 16U), ofs);
284
285 ofs += 16;
286 output += out;
287 size -= out;
288 len -= min_t(size_t, len, 16U);
289 total += out;
290 }
291 return total;
292}
293
Zhu Yic8fe6672006-01-24 16:36:36 +0800294/* alias for 32-bit indirect read (for SRAM/reg above 4K), with debug wrapper */
James Ketrenos43f66a62005-03-25 12:31:53 -0600295static u32 _ipw_read_reg32(struct ipw_priv *priv, u32 reg);
296#define ipw_read_reg32(a, b) _ipw_read_reg32(a, b)
297
Zhu Yic8fe6672006-01-24 16:36:36 +0800298/* alias for 8-bit indirect read (for SRAM/reg above 4K), with debug wrapper */
James Ketrenos43f66a62005-03-25 12:31:53 -0600299static u8 _ipw_read_reg8(struct ipw_priv *ipw, u32 reg);
300#define ipw_read_reg8(a, b) _ipw_read_reg8(a, b)
301
Zhu Yic8fe6672006-01-24 16:36:36 +0800302/* 8-bit indirect write (for SRAM/reg above 4K), with debug wrapper */
James Ketrenos43f66a62005-03-25 12:31:53 -0600303static void _ipw_write_reg8(struct ipw_priv *priv, u32 reg, u8 value);
304static inline void ipw_write_reg8(struct ipw_priv *a, u32 b, u8 c)
305{
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400306 IPW_DEBUG_IO("%s %d: write_indirect8(0x%08X, 0x%08X)\n", __FILE__,
307 __LINE__, (u32) (b), (u32) (c));
James Ketrenos43f66a62005-03-25 12:31:53 -0600308 _ipw_write_reg8(a, b, c);
309}
310
Zhu Yic8fe6672006-01-24 16:36:36 +0800311/* 16-bit indirect write (for SRAM/reg above 4K), with debug wrapper */
James Ketrenos43f66a62005-03-25 12:31:53 -0600312static void _ipw_write_reg16(struct ipw_priv *priv, u32 reg, u16 value);
313static inline void ipw_write_reg16(struct ipw_priv *a, u32 b, u16 c)
314{
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400315 IPW_DEBUG_IO("%s %d: write_indirect16(0x%08X, 0x%08X)\n", __FILE__,
316 __LINE__, (u32) (b), (u32) (c));
James Ketrenos43f66a62005-03-25 12:31:53 -0600317 _ipw_write_reg16(a, b, c);
318}
319
Zhu Yic8fe6672006-01-24 16:36:36 +0800320/* 32-bit indirect write (for SRAM/reg above 4K), with debug wrapper */
James Ketrenos43f66a62005-03-25 12:31:53 -0600321static void _ipw_write_reg32(struct ipw_priv *priv, u32 reg, u32 value);
322static inline void ipw_write_reg32(struct ipw_priv *a, u32 b, u32 c)
323{
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400324 IPW_DEBUG_IO("%s %d: write_indirect32(0x%08X, 0x%08X)\n", __FILE__,
325 __LINE__, (u32) (b), (u32) (c));
James Ketrenos43f66a62005-03-25 12:31:53 -0600326 _ipw_write_reg32(a, b, c);
327}
328
Zhu Yic8fe6672006-01-24 16:36:36 +0800329/* 8-bit direct write (low 4K) */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100330static inline void _ipw_write8(struct ipw_priv *ipw, unsigned long ofs,
331 u8 val)
332{
333 writeb(val, ipw->hw_base + ofs);
334}
Zhu Yic8fe6672006-01-24 16:36:36 +0800335
336/* 8-bit direct write (for low 4K of SRAM/regs), with debug wrapper */
Takashi Iwaifb55d882008-07-31 19:02:06 +0200337#define ipw_write8(ipw, ofs, val) do { \
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100338 IPW_DEBUG_IO("%s %d: write_direct8(0x%08X, 0x%08X)\n", __FILE__, \
339 __LINE__, (u32)(ofs), (u32)(val)); \
340 _ipw_write8(ipw, ofs, val); \
341} while (0)
James Ketrenos43f66a62005-03-25 12:31:53 -0600342
Zhu Yic8fe6672006-01-24 16:36:36 +0800343/* 16-bit direct write (low 4K) */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100344static inline void _ipw_write16(struct ipw_priv *ipw, unsigned long ofs,
345 u16 val)
346{
347 writew(val, ipw->hw_base + ofs);
348}
Zhu Yic8fe6672006-01-24 16:36:36 +0800349
350/* 16-bit direct write (for low 4K of SRAM/regs), with debug wrapper */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100351#define ipw_write16(ipw, ofs, val) do { \
352 IPW_DEBUG_IO("%s %d: write_direct16(0x%08X, 0x%08X)\n", __FILE__, \
353 __LINE__, (u32)(ofs), (u32)(val)); \
354 _ipw_write16(ipw, ofs, val); \
355} while (0)
James Ketrenos43f66a62005-03-25 12:31:53 -0600356
Zhu Yic8fe6672006-01-24 16:36:36 +0800357/* 32-bit direct write (low 4K) */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100358static inline void _ipw_write32(struct ipw_priv *ipw, unsigned long ofs,
359 u32 val)
360{
361 writel(val, ipw->hw_base + ofs);
362}
Zhu Yic8fe6672006-01-24 16:36:36 +0800363
364/* 32-bit direct write (for low 4K of SRAM/regs), with debug wrapper */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100365#define ipw_write32(ipw, ofs, val) do { \
366 IPW_DEBUG_IO("%s %d: write_direct32(0x%08X, 0x%08X)\n", __FILE__, \
367 __LINE__, (u32)(ofs), (u32)(val)); \
368 _ipw_write32(ipw, ofs, val); \
369} while (0)
James Ketrenos43f66a62005-03-25 12:31:53 -0600370
Zhu Yic8fe6672006-01-24 16:36:36 +0800371/* 8-bit direct read (low 4K) */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100372static inline u8 _ipw_read8(struct ipw_priv *ipw, unsigned long ofs)
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400373{
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100374 return readb(ipw->hw_base + ofs);
James Ketrenos43f66a62005-03-25 12:31:53 -0600375}
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400376
Zhu Yic8fe6672006-01-24 16:36:36 +0800377/* alias to 8-bit direct read (low 4K of SRAM/regs), with debug wrapper */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100378#define ipw_read8(ipw, ofs) ({ \
379 IPW_DEBUG_IO("%s %d: read_direct8(0x%08X)\n", __FILE__, __LINE__, \
380 (u32)(ofs)); \
381 _ipw_read8(ipw, ofs); \
382})
James Ketrenos43f66a62005-03-25 12:31:53 -0600383
Zhu Yic8fe6672006-01-24 16:36:36 +0800384/* 16-bit direct read (low 4K) */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100385static inline u16 _ipw_read16(struct ipw_priv *ipw, unsigned long ofs)
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400386{
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100387 return readw(ipw->hw_base + ofs);
James Ketrenos43f66a62005-03-25 12:31:53 -0600388}
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400389
Zhu Yic8fe6672006-01-24 16:36:36 +0800390/* alias to 16-bit direct read (low 4K of SRAM/regs), with debug wrapper */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100391#define ipw_read16(ipw, ofs) ({ \
392 IPW_DEBUG_IO("%s %d: read_direct16(0x%08X)\n", __FILE__, __LINE__, \
393 (u32)(ofs)); \
394 _ipw_read16(ipw, ofs); \
395})
James Ketrenos43f66a62005-03-25 12:31:53 -0600396
Zhu Yic8fe6672006-01-24 16:36:36 +0800397/* 32-bit direct read (low 4K) */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100398static inline u32 _ipw_read32(struct ipw_priv *ipw, unsigned long ofs)
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400399{
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100400 return readl(ipw->hw_base + ofs);
James Ketrenos43f66a62005-03-25 12:31:53 -0600401}
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400402
Zhu Yic8fe6672006-01-24 16:36:36 +0800403/* alias to 32-bit direct read (low 4K of SRAM/regs), with debug wrapper */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100404#define ipw_read32(ipw, ofs) ({ \
405 IPW_DEBUG_IO("%s %d: read_direct32(0x%08X)\n", __FILE__, __LINE__, \
406 (u32)(ofs)); \
407 _ipw_read32(ipw, ofs); \
408})
James Ketrenos43f66a62005-03-25 12:31:53 -0600409
410static void _ipw_read_indirect(struct ipw_priv *, u32, u8 *, int);
Zhu Yic8fe6672006-01-24 16:36:36 +0800411/* alias to multi-byte read (SRAM/regs above 4K), with debug wrapper */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100412#define ipw_read_indirect(a, b, c, d) ({ \
413 IPW_DEBUG_IO("%s %d: read_indirect(0x%08X) %u bytes\n", __FILE__, \
414 __LINE__, (u32)(b), (u32)(d)); \
415 _ipw_read_indirect(a, b, c, d); \
416})
James Ketrenos43f66a62005-03-25 12:31:53 -0600417
Zhu Yic8fe6672006-01-24 16:36:36 +0800418/* alias to multi-byte read (SRAM/regs above 4K), with debug wrapper */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400419static void _ipw_write_indirect(struct ipw_priv *priv, u32 addr, u8 * data,
420 int num);
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100421#define ipw_write_indirect(a, b, c, d) do { \
422 IPW_DEBUG_IO("%s %d: write_indirect(0x%08X) %u bytes\n", __FILE__, \
423 __LINE__, (u32)(b), (u32)(d)); \
424 _ipw_write_indirect(a, b, c, d); \
425} while (0)
James Ketrenos43f66a62005-03-25 12:31:53 -0600426
Zhu Yic8fe6672006-01-24 16:36:36 +0800427/* 32-bit indirect write (above 4K) */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400428static void _ipw_write_reg32(struct ipw_priv *priv, u32 reg, u32 value)
James Ketrenos43f66a62005-03-25 12:31:53 -0600429{
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400430 IPW_DEBUG_IO(" %p : reg = 0x%8X : value = 0x%8X\n", priv, reg, value);
James Ketrenosb095c382005-08-24 22:04:42 -0500431 _ipw_write32(priv, IPW_INDIRECT_ADDR, reg);
432 _ipw_write32(priv, IPW_INDIRECT_DATA, value);
James Ketrenos43f66a62005-03-25 12:31:53 -0600433}
434
Zhu Yic8fe6672006-01-24 16:36:36 +0800435/* 8-bit indirect write (above 4K) */
James Ketrenos43f66a62005-03-25 12:31:53 -0600436static void _ipw_write_reg8(struct ipw_priv *priv, u32 reg, u8 value)
437{
Zhu Yi2638bc32006-01-24 16:37:52 +0800438 u32 aligned_addr = reg & IPW_INDIRECT_ADDR_MASK; /* dword align */
Zhu Yic8fe6672006-01-24 16:36:36 +0800439 u32 dif_len = reg - aligned_addr;
440
James Ketrenos43f66a62005-03-25 12:31:53 -0600441 IPW_DEBUG_IO(" reg = 0x%8X : value = 0x%8X\n", reg, value);
Zhu Yic8fe6672006-01-24 16:36:36 +0800442 _ipw_write32(priv, IPW_INDIRECT_ADDR, aligned_addr);
443 _ipw_write8(priv, IPW_INDIRECT_DATA + dif_len, value);
James Ketrenos43f66a62005-03-25 12:31:53 -0600444}
445
Zhu Yic8fe6672006-01-24 16:36:36 +0800446/* 16-bit indirect write (above 4K) */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400447static void _ipw_write_reg16(struct ipw_priv *priv, u32 reg, u16 value)
James Ketrenos43f66a62005-03-25 12:31:53 -0600448{
Zhu Yi2638bc32006-01-24 16:37:52 +0800449 u32 aligned_addr = reg & IPW_INDIRECT_ADDR_MASK; /* dword align */
Zhu Yic8fe6672006-01-24 16:36:36 +0800450 u32 dif_len = (reg - aligned_addr) & (~0x1ul);
451
James Ketrenos43f66a62005-03-25 12:31:53 -0600452 IPW_DEBUG_IO(" reg = 0x%8X : value = 0x%8X\n", reg, value);
Zhu Yic8fe6672006-01-24 16:36:36 +0800453 _ipw_write32(priv, IPW_INDIRECT_ADDR, aligned_addr);
454 _ipw_write16(priv, IPW_INDIRECT_DATA + dif_len, value);
James Ketrenos43f66a62005-03-25 12:31:53 -0600455}
456
Zhu Yic8fe6672006-01-24 16:36:36 +0800457/* 8-bit indirect read (above 4K) */
James Ketrenos43f66a62005-03-25 12:31:53 -0600458static u8 _ipw_read_reg8(struct ipw_priv *priv, u32 reg)
459{
460 u32 word;
James Ketrenosb095c382005-08-24 22:04:42 -0500461 _ipw_write32(priv, IPW_INDIRECT_ADDR, reg & IPW_INDIRECT_ADDR_MASK);
Frans Pop9fd1ea42010-03-24 19:46:31 +0100462 IPW_DEBUG_IO(" reg = 0x%8X :\n", reg);
James Ketrenosb095c382005-08-24 22:04:42 -0500463 word = _ipw_read32(priv, IPW_INDIRECT_DATA);
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400464 return (word >> ((reg & 0x3) * 8)) & 0xff;
James Ketrenos43f66a62005-03-25 12:31:53 -0600465}
466
Zhu Yic8fe6672006-01-24 16:36:36 +0800467/* 32-bit indirect read (above 4K) */
James Ketrenos43f66a62005-03-25 12:31:53 -0600468static u32 _ipw_read_reg32(struct ipw_priv *priv, u32 reg)
469{
470 u32 value;
471
472 IPW_DEBUG_IO("%p : reg = 0x%08x\n", priv, reg);
473
James Ketrenosb095c382005-08-24 22:04:42 -0500474 _ipw_write32(priv, IPW_INDIRECT_ADDR, reg);
475 value = _ipw_read32(priv, IPW_INDIRECT_DATA);
Frans Pop9fd1ea42010-03-24 19:46:31 +0100476 IPW_DEBUG_IO(" reg = 0x%4X : value = 0x%4x\n", reg, value);
James Ketrenos43f66a62005-03-25 12:31:53 -0600477 return value;
478}
479
Zhu Yic8fe6672006-01-24 16:36:36 +0800480/* General purpose, no alignment requirement, iterative (multi-byte) read, */
481/* for area above 1st 4K of SRAM/reg space */
James Ketrenos43f66a62005-03-25 12:31:53 -0600482static void _ipw_read_indirect(struct ipw_priv *priv, u32 addr, u8 * buf,
483 int num)
484{
Zhu Yi2638bc32006-01-24 16:37:52 +0800485 u32 aligned_addr = addr & IPW_INDIRECT_ADDR_MASK; /* dword align */
James Ketrenos43f66a62005-03-25 12:31:53 -0600486 u32 dif_len = addr - aligned_addr;
James Ketrenos43f66a62005-03-25 12:31:53 -0600487 u32 i;
Jeff Garzikbf794512005-07-31 13:07:26 -0400488
James Ketrenos43f66a62005-03-25 12:31:53 -0600489 IPW_DEBUG_IO("addr = %i, buf = %p, num = %i\n", addr, buf, num);
490
James Ketrenosea2b26e2005-08-24 21:25:16 -0500491 if (num <= 0) {
492 return;
493 }
494
Zhu Yic8fe6672006-01-24 16:36:36 +0800495 /* Read the first dword (or portion) byte by byte */
James Ketrenos43f66a62005-03-25 12:31:53 -0600496 if (unlikely(dif_len)) {
James Ketrenosb095c382005-08-24 22:04:42 -0500497 _ipw_write32(priv, IPW_INDIRECT_ADDR, aligned_addr);
James Ketrenos43f66a62005-03-25 12:31:53 -0600498 /* Start reading at aligned_addr + dif_len */
James Ketrenosea2b26e2005-08-24 21:25:16 -0500499 for (i = dif_len; ((i < 4) && (num > 0)); i++, num--)
James Ketrenosb095c382005-08-24 22:04:42 -0500500 *buf++ = _ipw_read8(priv, IPW_INDIRECT_DATA + i);
James Ketrenos43f66a62005-03-25 12:31:53 -0600501 aligned_addr += 4;
502 }
503
Zhu Yic8fe6672006-01-24 16:36:36 +0800504 /* Read all of the middle dwords as dwords, with auto-increment */
James Ketrenosb095c382005-08-24 22:04:42 -0500505 _ipw_write32(priv, IPW_AUTOINC_ADDR, aligned_addr);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500506 for (; num >= 4; buf += 4, aligned_addr += 4, num -= 4)
James Ketrenosb095c382005-08-24 22:04:42 -0500507 *(u32 *) buf = _ipw_read32(priv, IPW_AUTOINC_DATA);
Jeff Garzikbf794512005-07-31 13:07:26 -0400508
Zhu Yic8fe6672006-01-24 16:36:36 +0800509 /* Read the last dword (or portion) byte by byte */
James Ketrenosea2b26e2005-08-24 21:25:16 -0500510 if (unlikely(num)) {
James Ketrenosb095c382005-08-24 22:04:42 -0500511 _ipw_write32(priv, IPW_INDIRECT_ADDR, aligned_addr);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500512 for (i = 0; num > 0; i++, num--)
James Ketrenosb095c382005-08-24 22:04:42 -0500513 *buf++ = ipw_read8(priv, IPW_INDIRECT_DATA + i);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500514 }
James Ketrenos43f66a62005-03-25 12:31:53 -0600515}
516
Zhu Yic8fe6672006-01-24 16:36:36 +0800517/* General purpose, no alignment requirement, iterative (multi-byte) write, */
518/* for area above 1st 4K of SRAM/reg space */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400519static void _ipw_write_indirect(struct ipw_priv *priv, u32 addr, u8 * buf,
James Ketrenos43f66a62005-03-25 12:31:53 -0600520 int num)
521{
Zhu Yi2638bc32006-01-24 16:37:52 +0800522 u32 aligned_addr = addr & IPW_INDIRECT_ADDR_MASK; /* dword align */
James Ketrenos43f66a62005-03-25 12:31:53 -0600523 u32 dif_len = addr - aligned_addr;
James Ketrenos43f66a62005-03-25 12:31:53 -0600524 u32 i;
Jeff Garzikbf794512005-07-31 13:07:26 -0400525
James Ketrenos43f66a62005-03-25 12:31:53 -0600526 IPW_DEBUG_IO("addr = %i, buf = %p, num = %i\n", addr, buf, num);
Jeff Garzikbf794512005-07-31 13:07:26 -0400527
James Ketrenosea2b26e2005-08-24 21:25:16 -0500528 if (num <= 0) {
529 return;
530 }
531
Zhu Yic8fe6672006-01-24 16:36:36 +0800532 /* Write the first dword (or portion) byte by byte */
James Ketrenos43f66a62005-03-25 12:31:53 -0600533 if (unlikely(dif_len)) {
James Ketrenosb095c382005-08-24 22:04:42 -0500534 _ipw_write32(priv, IPW_INDIRECT_ADDR, aligned_addr);
Zhu Yic8fe6672006-01-24 16:36:36 +0800535 /* Start writing at aligned_addr + dif_len */
James Ketrenosea2b26e2005-08-24 21:25:16 -0500536 for (i = dif_len; ((i < 4) && (num > 0)); i++, num--, buf++)
James Ketrenosb095c382005-08-24 22:04:42 -0500537 _ipw_write8(priv, IPW_INDIRECT_DATA + i, *buf);
James Ketrenos43f66a62005-03-25 12:31:53 -0600538 aligned_addr += 4;
539 }
Jeff Garzikbf794512005-07-31 13:07:26 -0400540
Zhu Yic8fe6672006-01-24 16:36:36 +0800541 /* Write all of the middle dwords as dwords, with auto-increment */
James Ketrenosb095c382005-08-24 22:04:42 -0500542 _ipw_write32(priv, IPW_AUTOINC_ADDR, aligned_addr);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500543 for (; num >= 4; buf += 4, aligned_addr += 4, num -= 4)
James Ketrenosb095c382005-08-24 22:04:42 -0500544 _ipw_write32(priv, IPW_AUTOINC_DATA, *(u32 *) buf);
Jeff Garzikbf794512005-07-31 13:07:26 -0400545
Zhu Yic8fe6672006-01-24 16:36:36 +0800546 /* Write the last dword (or portion) byte by byte */
James Ketrenosea2b26e2005-08-24 21:25:16 -0500547 if (unlikely(num)) {
James Ketrenosb095c382005-08-24 22:04:42 -0500548 _ipw_write32(priv, IPW_INDIRECT_ADDR, aligned_addr);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500549 for (i = 0; num > 0; i++, num--, buf++)
James Ketrenosb095c382005-08-24 22:04:42 -0500550 _ipw_write8(priv, IPW_INDIRECT_DATA + i, *buf);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500551 }
James Ketrenos43f66a62005-03-25 12:31:53 -0600552}
553
Zhu Yic8fe6672006-01-24 16:36:36 +0800554/* General purpose, no alignment requirement, iterative (multi-byte) write, */
555/* for 1st 4K of SRAM/regs space */
Jeff Garzikbf794512005-07-31 13:07:26 -0400556static void ipw_write_direct(struct ipw_priv *priv, u32 addr, void *buf,
James Ketrenos43f66a62005-03-25 12:31:53 -0600557 int num)
558{
559 memcpy_toio((priv->hw_base + addr), buf, num);
560}
561
Zhu Yic8fe6672006-01-24 16:36:36 +0800562/* Set bit(s) in low 4K of SRAM/regs */
James Ketrenos43f66a62005-03-25 12:31:53 -0600563static inline void ipw_set_bit(struct ipw_priv *priv, u32 reg, u32 mask)
564{
565 ipw_write32(priv, reg, ipw_read32(priv, reg) | mask);
566}
567
Zhu Yic8fe6672006-01-24 16:36:36 +0800568/* Clear bit(s) in low 4K of SRAM/regs */
James Ketrenos43f66a62005-03-25 12:31:53 -0600569static inline void ipw_clear_bit(struct ipw_priv *priv, u32 reg, u32 mask)
570{
571 ipw_write32(priv, reg, ipw_read32(priv, reg) & ~mask);
572}
573
Zhu Yi89c318e2006-06-08 22:19:49 -0700574static inline void __ipw_enable_interrupts(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -0600575{
576 if (priv->status & STATUS_INT_ENABLED)
577 return;
578 priv->status |= STATUS_INT_ENABLED;
James Ketrenosb095c382005-08-24 22:04:42 -0500579 ipw_write32(priv, IPW_INTA_MASK_R, IPW_INTA_MASK_ALL);
James Ketrenos43f66a62005-03-25 12:31:53 -0600580}
581
Zhu Yi89c318e2006-06-08 22:19:49 -0700582static inline void __ipw_disable_interrupts(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -0600583{
584 if (!(priv->status & STATUS_INT_ENABLED))
585 return;
586 priv->status &= ~STATUS_INT_ENABLED;
James Ketrenosb095c382005-08-24 22:04:42 -0500587 ipw_write32(priv, IPW_INTA_MASK_R, ~IPW_INTA_MASK_ALL);
James Ketrenos43f66a62005-03-25 12:31:53 -0600588}
589
Zhu Yi89c318e2006-06-08 22:19:49 -0700590static inline void ipw_enable_interrupts(struct ipw_priv *priv)
591{
592 unsigned long flags;
593
594 spin_lock_irqsave(&priv->irq_lock, flags);
595 __ipw_enable_interrupts(priv);
596 spin_unlock_irqrestore(&priv->irq_lock, flags);
597}
598
599static inline void ipw_disable_interrupts(struct ipw_priv *priv)
600{
601 unsigned long flags;
602
603 spin_lock_irqsave(&priv->irq_lock, flags);
604 __ipw_disable_interrupts(priv);
605 spin_unlock_irqrestore(&priv->irq_lock, flags);
606}
607
James Ketrenos43f66a62005-03-25 12:31:53 -0600608static char *ipw_error_desc(u32 val)
609{
610 switch (val) {
Jeff Garzikbf794512005-07-31 13:07:26 -0400611 case IPW_FW_ERROR_OK:
James Ketrenos43f66a62005-03-25 12:31:53 -0600612 return "ERROR_OK";
Jeff Garzikbf794512005-07-31 13:07:26 -0400613 case IPW_FW_ERROR_FAIL:
James Ketrenos43f66a62005-03-25 12:31:53 -0600614 return "ERROR_FAIL";
Jeff Garzikbf794512005-07-31 13:07:26 -0400615 case IPW_FW_ERROR_MEMORY_UNDERFLOW:
James Ketrenos43f66a62005-03-25 12:31:53 -0600616 return "MEMORY_UNDERFLOW";
Jeff Garzikbf794512005-07-31 13:07:26 -0400617 case IPW_FW_ERROR_MEMORY_OVERFLOW:
James Ketrenos43f66a62005-03-25 12:31:53 -0600618 return "MEMORY_OVERFLOW";
Jeff Garzikbf794512005-07-31 13:07:26 -0400619 case IPW_FW_ERROR_BAD_PARAM:
James Ketrenosb095c382005-08-24 22:04:42 -0500620 return "BAD_PARAM";
Jeff Garzikbf794512005-07-31 13:07:26 -0400621 case IPW_FW_ERROR_BAD_CHECKSUM:
James Ketrenosb095c382005-08-24 22:04:42 -0500622 return "BAD_CHECKSUM";
Jeff Garzikbf794512005-07-31 13:07:26 -0400623 case IPW_FW_ERROR_NMI_INTERRUPT:
James Ketrenosb095c382005-08-24 22:04:42 -0500624 return "NMI_INTERRUPT";
Jeff Garzikbf794512005-07-31 13:07:26 -0400625 case IPW_FW_ERROR_BAD_DATABASE:
James Ketrenosb095c382005-08-24 22:04:42 -0500626 return "BAD_DATABASE";
Jeff Garzikbf794512005-07-31 13:07:26 -0400627 case IPW_FW_ERROR_ALLOC_FAIL:
James Ketrenosb095c382005-08-24 22:04:42 -0500628 return "ALLOC_FAIL";
Jeff Garzikbf794512005-07-31 13:07:26 -0400629 case IPW_FW_ERROR_DMA_UNDERRUN:
James Ketrenosb095c382005-08-24 22:04:42 -0500630 return "DMA_UNDERRUN";
Jeff Garzikbf794512005-07-31 13:07:26 -0400631 case IPW_FW_ERROR_DMA_STATUS:
James Ketrenosb095c382005-08-24 22:04:42 -0500632 return "DMA_STATUS";
633 case IPW_FW_ERROR_DINO_ERROR:
634 return "DINO_ERROR";
635 case IPW_FW_ERROR_EEPROM_ERROR:
636 return "EEPROM_ERROR";
Jeff Garzikbf794512005-07-31 13:07:26 -0400637 case IPW_FW_ERROR_SYSASSERT:
James Ketrenosb095c382005-08-24 22:04:42 -0500638 return "SYSASSERT";
Jeff Garzikbf794512005-07-31 13:07:26 -0400639 case IPW_FW_ERROR_FATAL_ERROR:
James Ketrenosb095c382005-08-24 22:04:42 -0500640 return "FATAL_ERROR";
Jeff Garzikbf794512005-07-31 13:07:26 -0400641 default:
James Ketrenosb095c382005-08-24 22:04:42 -0500642 return "UNKNOWN_ERROR";
James Ketrenos43f66a62005-03-25 12:31:53 -0600643 }
644}
645
James Ketrenosb39860c2005-08-12 09:36:32 -0500646static void ipw_dump_error_log(struct ipw_priv *priv,
647 struct ipw_fw_error *error)
James Ketrenos43f66a62005-03-25 12:31:53 -0600648{
James Ketrenosb39860c2005-08-12 09:36:32 -0500649 u32 i;
James Ketrenos43f66a62005-03-25 12:31:53 -0600650
James Ketrenosb39860c2005-08-12 09:36:32 -0500651 if (!error) {
652 IPW_ERROR("Error allocating and capturing error log. "
653 "Nothing to dump.\n");
654 return;
James Ketrenos43f66a62005-03-25 12:31:53 -0600655 }
656
James Ketrenosb39860c2005-08-12 09:36:32 -0500657 IPW_ERROR("Start IPW Error Log Dump:\n");
658 IPW_ERROR("Status: 0x%08X, Config: %08X\n",
659 error->status, error->config);
James Ketrenos43f66a62005-03-25 12:31:53 -0600660
James Ketrenosb39860c2005-08-12 09:36:32 -0500661 for (i = 0; i < error->elem_len; i++)
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400662 IPW_ERROR("%s %i 0x%08x 0x%08x 0x%08x 0x%08x 0x%08x\n",
James Ketrenosb39860c2005-08-12 09:36:32 -0500663 ipw_error_desc(error->elem[i].desc),
664 error->elem[i].time,
665 error->elem[i].blink1,
666 error->elem[i].blink2,
667 error->elem[i].link1,
668 error->elem[i].link2, error->elem[i].data);
669 for (i = 0; i < error->log_len; i++)
670 IPW_ERROR("%i\t0x%08x\t%i\n",
671 error->log[i].time,
James Ketrenos286568a2005-08-30 10:34:25 -0500672 error->log[i].data, error->log[i].event);
James Ketrenos43f66a62005-03-25 12:31:53 -0600673}
James Ketrenos43f66a62005-03-25 12:31:53 -0600674
James Ketrenosc848d0a2005-08-24 21:56:24 -0500675static inline int ipw_is_init(struct ipw_priv *priv)
676{
677 return (priv->status & STATUS_INIT) ? 1 : 0;
James Ketrenos43f66a62005-03-25 12:31:53 -0600678}
679
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400680static int ipw_get_ordinal(struct ipw_priv *priv, u32 ord, void *val, u32 * len)
James Ketrenos43f66a62005-03-25 12:31:53 -0600681{
682 u32 addr, field_info, field_len, field_count, total_len;
683
684 IPW_DEBUG_ORD("ordinal = %i\n", ord);
685
686 if (!priv || !val || !len) {
687 IPW_DEBUG_ORD("Invalid argument\n");
688 return -EINVAL;
689 }
Jeff Garzikbf794512005-07-31 13:07:26 -0400690
James Ketrenos43f66a62005-03-25 12:31:53 -0600691 /* verify device ordinal tables have been initialized */
692 if (!priv->table0_addr || !priv->table1_addr || !priv->table2_addr) {
693 IPW_DEBUG_ORD("Access ordinals before initialization\n");
694 return -EINVAL;
695 }
696
697 switch (IPW_ORD_TABLE_ID_MASK & ord) {
698 case IPW_ORD_TABLE_0_MASK:
699 /*
700 * TABLE 0: Direct access to a table of 32 bit values
701 *
Jeff Garzikbf794512005-07-31 13:07:26 -0400702 * This is a very simple table with the data directly
James Ketrenos43f66a62005-03-25 12:31:53 -0600703 * read from the table
704 */
705
706 /* remove the table id from the ordinal */
707 ord &= IPW_ORD_TABLE_VALUE_MASK;
708
709 /* boundary check */
710 if (ord > priv->table0_len) {
711 IPW_DEBUG_ORD("ordinal value (%i) longer then "
712 "max (%i)\n", ord, priv->table0_len);
713 return -EINVAL;
714 }
715
716 /* verify we have enough room to store the value */
717 if (*len < sizeof(u32)) {
718 IPW_DEBUG_ORD("ordinal buffer length too small, "
Jiri Bencaaa4d302005-06-07 14:58:41 +0200719 "need %zd\n", sizeof(u32));
James Ketrenos43f66a62005-03-25 12:31:53 -0600720 return -EINVAL;
721 }
722
723 IPW_DEBUG_ORD("Reading TABLE0[%i] from offset 0x%08x\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400724 ord, priv->table0_addr + (ord << 2));
James Ketrenos43f66a62005-03-25 12:31:53 -0600725
726 *len = sizeof(u32);
727 ord <<= 2;
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400728 *((u32 *) val) = ipw_read32(priv, priv->table0_addr + ord);
James Ketrenos43f66a62005-03-25 12:31:53 -0600729 break;
730
731 case IPW_ORD_TABLE_1_MASK:
732 /*
733 * TABLE 1: Indirect access to a table of 32 bit values
Jeff Garzikbf794512005-07-31 13:07:26 -0400734 *
735 * This is a fairly large table of u32 values each
James Ketrenos43f66a62005-03-25 12:31:53 -0600736 * representing starting addr for the data (which is
737 * also a u32)
738 */
739
740 /* remove the table id from the ordinal */
741 ord &= IPW_ORD_TABLE_VALUE_MASK;
Jeff Garzikbf794512005-07-31 13:07:26 -0400742
James Ketrenos43f66a62005-03-25 12:31:53 -0600743 /* boundary check */
744 if (ord > priv->table1_len) {
745 IPW_DEBUG_ORD("ordinal value too long\n");
746 return -EINVAL;
747 }
748
749 /* verify we have enough room to store the value */
750 if (*len < sizeof(u32)) {
751 IPW_DEBUG_ORD("ordinal buffer length too small, "
Jiri Bencaaa4d302005-06-07 14:58:41 +0200752 "need %zd\n", sizeof(u32));
James Ketrenos43f66a62005-03-25 12:31:53 -0600753 return -EINVAL;
754 }
755
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400756 *((u32 *) val) =
757 ipw_read_reg32(priv, (priv->table1_addr + (ord << 2)));
James Ketrenos43f66a62005-03-25 12:31:53 -0600758 *len = sizeof(u32);
759 break;
760
761 case IPW_ORD_TABLE_2_MASK:
762 /*
763 * TABLE 2: Indirect access to a table of variable sized values
764 *
765 * This table consist of six values, each containing
766 * - dword containing the starting offset of the data
767 * - dword containing the lengh in the first 16bits
768 * and the count in the second 16bits
769 */
770
771 /* remove the table id from the ordinal */
772 ord &= IPW_ORD_TABLE_VALUE_MASK;
773
774 /* boundary check */
775 if (ord > priv->table2_len) {
776 IPW_DEBUG_ORD("ordinal value too long\n");
777 return -EINVAL;
778 }
779
780 /* get the address of statistic */
781 addr = ipw_read_reg32(priv, priv->table2_addr + (ord << 3));
Jeff Garzikbf794512005-07-31 13:07:26 -0400782
783 /* get the second DW of statistics ;
James Ketrenos43f66a62005-03-25 12:31:53 -0600784 * two 16-bit words - first is length, second is count */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400785 field_info =
786 ipw_read_reg32(priv,
787 priv->table2_addr + (ord << 3) +
788 sizeof(u32));
Jeff Garzikbf794512005-07-31 13:07:26 -0400789
James Ketrenos43f66a62005-03-25 12:31:53 -0600790 /* get each entry length */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400791 field_len = *((u16 *) & field_info);
Jeff Garzikbf794512005-07-31 13:07:26 -0400792
James Ketrenos43f66a62005-03-25 12:31:53 -0600793 /* get number of entries */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400794 field_count = *(((u16 *) & field_info) + 1);
Jeff Garzikbf794512005-07-31 13:07:26 -0400795
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200796 /* abort if not enough memory */
James Ketrenos43f66a62005-03-25 12:31:53 -0600797 total_len = field_len * field_count;
798 if (total_len > *len) {
799 *len = total_len;
800 return -EINVAL;
801 }
Jeff Garzikbf794512005-07-31 13:07:26 -0400802
James Ketrenos43f66a62005-03-25 12:31:53 -0600803 *len = total_len;
804 if (!total_len)
805 return 0;
806
807 IPW_DEBUG_ORD("addr = 0x%08x, total_len = %i, "
Jeff Garzikbf794512005-07-31 13:07:26 -0400808 "field_info = 0x%08x\n",
James Ketrenos43f66a62005-03-25 12:31:53 -0600809 addr, total_len, field_info);
810 ipw_read_indirect(priv, addr, val, total_len);
811 break;
812
813 default:
814 IPW_DEBUG_ORD("Invalid ordinal!\n");
815 return -EINVAL;
816
817 }
818
James Ketrenos43f66a62005-03-25 12:31:53 -0600819 return 0;
820}
821
822static void ipw_init_ordinals(struct ipw_priv *priv)
823{
824 priv->table0_addr = IPW_ORDINALS_TABLE_LOWER;
Jeff Garzikbf794512005-07-31 13:07:26 -0400825 priv->table0_len = ipw_read32(priv, priv->table0_addr);
James Ketrenos43f66a62005-03-25 12:31:53 -0600826
827 IPW_DEBUG_ORD("table 0 offset at 0x%08x, len = %i\n",
828 priv->table0_addr, priv->table0_len);
829
830 priv->table1_addr = ipw_read32(priv, IPW_ORDINALS_TABLE_1);
831 priv->table1_len = ipw_read_reg32(priv, priv->table1_addr);
832
833 IPW_DEBUG_ORD("table 1 offset at 0x%08x, len = %i\n",
834 priv->table1_addr, priv->table1_len);
835
836 priv->table2_addr = ipw_read32(priv, IPW_ORDINALS_TABLE_2);
837 priv->table2_len = ipw_read_reg32(priv, priv->table2_addr);
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400838 priv->table2_len &= 0x0000ffff; /* use first two bytes */
James Ketrenos43f66a62005-03-25 12:31:53 -0600839
840 IPW_DEBUG_ORD("table 2 offset at 0x%08x, len = %i\n",
841 priv->table2_addr, priv->table2_len);
842
843}
844
Adrian Bunka73e22b2006-01-21 01:39:42 +0100845static u32 ipw_register_toggle(u32 reg)
James Ketrenosa613bff2005-08-24 21:43:11 -0500846{
James Ketrenosb095c382005-08-24 22:04:42 -0500847 reg &= ~IPW_START_STANDBY;
848 if (reg & IPW_GATE_ODMA)
849 reg &= ~IPW_GATE_ODMA;
850 if (reg & IPW_GATE_IDMA)
851 reg &= ~IPW_GATE_IDMA;
852 if (reg & IPW_GATE_ADMA)
853 reg &= ~IPW_GATE_ADMA;
James Ketrenosa613bff2005-08-24 21:43:11 -0500854 return reg;
855}
856
857/*
858 * LED behavior:
859 * - On radio ON, turn on any LEDs that require to be on during start
860 * - On initialization, start unassociated blink
861 * - On association, disable unassociated blink
862 * - On disassociation, start unassociated blink
863 * - On radio OFF, turn off any LEDs started during radio on
864 *
865 */
Zhu Yiede61112006-01-24 16:37:10 +0800866#define LD_TIME_LINK_ON msecs_to_jiffies(300)
867#define LD_TIME_LINK_OFF msecs_to_jiffies(2700)
868#define LD_TIME_ACT_ON msecs_to_jiffies(250)
James Ketrenosa613bff2005-08-24 21:43:11 -0500869
Adrian Bunka73e22b2006-01-21 01:39:42 +0100870static void ipw_led_link_on(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -0500871{
872 unsigned long flags;
873 u32 led;
874
875 /* If configured to not use LEDs, or nic_type is 1,
876 * then we don't toggle a LINK led */
877 if (priv->config & CFG_NO_LED || priv->nic_type == EEPROM_NIC_TYPE_1)
878 return;
879
880 spin_lock_irqsave(&priv->lock, flags);
881
882 if (!(priv->status & STATUS_RF_KILL_MASK) &&
883 !(priv->status & STATUS_LED_LINK_ON)) {
884 IPW_DEBUG_LED("Link LED On\n");
James Ketrenosb095c382005-08-24 22:04:42 -0500885 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -0500886 led |= priv->led_association_on;
887
888 led = ipw_register_toggle(led);
889
890 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -0500891 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -0500892
893 priv->status |= STATUS_LED_LINK_ON;
894
895 /* If we aren't associated, schedule turning the LED off */
896 if (!(priv->status & STATUS_ASSOCIATED))
897 queue_delayed_work(priv->workqueue,
898 &priv->led_link_off,
899 LD_TIME_LINK_ON);
900 }
901
902 spin_unlock_irqrestore(&priv->lock, flags);
903}
904
David Howellsc4028952006-11-22 14:57:56 +0000905static void ipw_bg_led_link_on(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -0500906{
David Howellsc4028952006-11-22 14:57:56 +0000907 struct ipw_priv *priv =
908 container_of(work, struct ipw_priv, led_link_on.work);
Zhu Yi46441512006-01-24 16:37:59 +0800909 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +0000910 ipw_led_link_on(priv);
Zhu Yi46441512006-01-24 16:37:59 +0800911 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -0500912}
913
Adrian Bunka73e22b2006-01-21 01:39:42 +0100914static void ipw_led_link_off(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -0500915{
916 unsigned long flags;
917 u32 led;
918
919 /* If configured not to use LEDs, or nic type is 1,
920 * then we don't goggle the LINK led. */
921 if (priv->config & CFG_NO_LED || priv->nic_type == EEPROM_NIC_TYPE_1)
922 return;
923
924 spin_lock_irqsave(&priv->lock, flags);
925
926 if (priv->status & STATUS_LED_LINK_ON) {
James Ketrenosb095c382005-08-24 22:04:42 -0500927 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -0500928 led &= priv->led_association_off;
929 led = ipw_register_toggle(led);
930
931 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -0500932 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -0500933
934 IPW_DEBUG_LED("Link LED Off\n");
935
936 priv->status &= ~STATUS_LED_LINK_ON;
937
938 /* If we aren't associated and the radio is on, schedule
939 * turning the LED on (blink while unassociated) */
940 if (!(priv->status & STATUS_RF_KILL_MASK) &&
941 !(priv->status & STATUS_ASSOCIATED))
942 queue_delayed_work(priv->workqueue, &priv->led_link_on,
943 LD_TIME_LINK_OFF);
944
945 }
946
947 spin_unlock_irqrestore(&priv->lock, flags);
948}
949
David Howellsc4028952006-11-22 14:57:56 +0000950static void ipw_bg_led_link_off(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -0500951{
David Howellsc4028952006-11-22 14:57:56 +0000952 struct ipw_priv *priv =
953 container_of(work, struct ipw_priv, led_link_off.work);
Zhu Yi46441512006-01-24 16:37:59 +0800954 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +0000955 ipw_led_link_off(priv);
Zhu Yi46441512006-01-24 16:37:59 +0800956 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -0500957}
958
Arjan van de Ven858119e2006-01-14 13:20:43 -0800959static void __ipw_led_activity_on(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -0500960{
James Ketrenosa613bff2005-08-24 21:43:11 -0500961 u32 led;
962
963 if (priv->config & CFG_NO_LED)
964 return;
965
James Ketrenosb095c382005-08-24 22:04:42 -0500966 if (priv->status & STATUS_RF_KILL_MASK)
James Ketrenosa613bff2005-08-24 21:43:11 -0500967 return;
James Ketrenosa613bff2005-08-24 21:43:11 -0500968
969 if (!(priv->status & STATUS_LED_ACT_ON)) {
James Ketrenosb095c382005-08-24 22:04:42 -0500970 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -0500971 led |= priv->led_activity_on;
972
973 led = ipw_register_toggle(led);
974
975 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -0500976 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -0500977
978 IPW_DEBUG_LED("Activity LED On\n");
979
980 priv->status |= STATUS_LED_ACT_ON;
981
James Ketrenosc848d0a2005-08-24 21:56:24 -0500982 cancel_delayed_work(&priv->led_act_off);
James Ketrenosa613bff2005-08-24 21:43:11 -0500983 queue_delayed_work(priv->workqueue, &priv->led_act_off,
984 LD_TIME_ACT_ON);
985 } else {
986 /* Reschedule LED off for full time period */
987 cancel_delayed_work(&priv->led_act_off);
988 queue_delayed_work(priv->workqueue, &priv->led_act_off,
989 LD_TIME_ACT_ON);
990 }
James Ketrenosb095c382005-08-24 22:04:42 -0500991}
James Ketrenosa613bff2005-08-24 21:43:11 -0500992
Adrian Bunka73e22b2006-01-21 01:39:42 +0100993#if 0
James Ketrenosb095c382005-08-24 22:04:42 -0500994void ipw_led_activity_on(struct ipw_priv *priv)
995{
996 unsigned long flags;
997 spin_lock_irqsave(&priv->lock, flags);
998 __ipw_led_activity_on(priv);
James Ketrenosa613bff2005-08-24 21:43:11 -0500999 spin_unlock_irqrestore(&priv->lock, flags);
1000}
Adrian Bunka73e22b2006-01-21 01:39:42 +01001001#endif /* 0 */
James Ketrenosa613bff2005-08-24 21:43:11 -05001002
Adrian Bunka73e22b2006-01-21 01:39:42 +01001003static void ipw_led_activity_off(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -05001004{
1005 unsigned long flags;
1006 u32 led;
1007
1008 if (priv->config & CFG_NO_LED)
1009 return;
1010
1011 spin_lock_irqsave(&priv->lock, flags);
1012
1013 if (priv->status & STATUS_LED_ACT_ON) {
James Ketrenosb095c382005-08-24 22:04:42 -05001014 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -05001015 led &= priv->led_activity_off;
1016
1017 led = ipw_register_toggle(led);
1018
1019 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -05001020 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -05001021
1022 IPW_DEBUG_LED("Activity LED Off\n");
1023
1024 priv->status &= ~STATUS_LED_ACT_ON;
1025 }
1026
1027 spin_unlock_irqrestore(&priv->lock, flags);
1028}
1029
David Howellsc4028952006-11-22 14:57:56 +00001030static void ipw_bg_led_activity_off(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -05001031{
David Howellsc4028952006-11-22 14:57:56 +00001032 struct ipw_priv *priv =
1033 container_of(work, struct ipw_priv, led_act_off.work);
Zhu Yi46441512006-01-24 16:37:59 +08001034 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00001035 ipw_led_activity_off(priv);
Zhu Yi46441512006-01-24 16:37:59 +08001036 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05001037}
1038
Adrian Bunka73e22b2006-01-21 01:39:42 +01001039static void ipw_led_band_on(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -05001040{
1041 unsigned long flags;
1042 u32 led;
1043
1044 /* Only nic type 1 supports mode LEDs */
James Ketrenosc848d0a2005-08-24 21:56:24 -05001045 if (priv->config & CFG_NO_LED ||
1046 priv->nic_type != EEPROM_NIC_TYPE_1 || !priv->assoc_network)
James Ketrenosa613bff2005-08-24 21:43:11 -05001047 return;
1048
1049 spin_lock_irqsave(&priv->lock, flags);
1050
James Ketrenosb095c382005-08-24 22:04:42 -05001051 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -05001052 if (priv->assoc_network->mode == IEEE_A) {
1053 led |= priv->led_ofdm_on;
1054 led &= priv->led_association_off;
1055 IPW_DEBUG_LED("Mode LED On: 802.11a\n");
1056 } else if (priv->assoc_network->mode == IEEE_G) {
1057 led |= priv->led_ofdm_on;
1058 led |= priv->led_association_on;
1059 IPW_DEBUG_LED("Mode LED On: 802.11g\n");
1060 } else {
1061 led &= priv->led_ofdm_off;
1062 led |= priv->led_association_on;
1063 IPW_DEBUG_LED("Mode LED On: 802.11b\n");
1064 }
1065
1066 led = ipw_register_toggle(led);
1067
1068 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -05001069 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -05001070
1071 spin_unlock_irqrestore(&priv->lock, flags);
1072}
1073
Adrian Bunka73e22b2006-01-21 01:39:42 +01001074static void ipw_led_band_off(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -05001075{
1076 unsigned long flags;
1077 u32 led;
1078
1079 /* Only nic type 1 supports mode LEDs */
1080 if (priv->config & CFG_NO_LED || priv->nic_type != EEPROM_NIC_TYPE_1)
1081 return;
1082
1083 spin_lock_irqsave(&priv->lock, flags);
1084
James Ketrenosb095c382005-08-24 22:04:42 -05001085 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -05001086 led &= priv->led_ofdm_off;
1087 led &= priv->led_association_off;
1088
1089 led = ipw_register_toggle(led);
1090
1091 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -05001092 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -05001093
1094 spin_unlock_irqrestore(&priv->lock, flags);
1095}
1096
Adrian Bunka73e22b2006-01-21 01:39:42 +01001097static void ipw_led_radio_on(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -05001098{
1099 ipw_led_link_on(priv);
1100}
1101
Adrian Bunka73e22b2006-01-21 01:39:42 +01001102static void ipw_led_radio_off(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -05001103{
1104 ipw_led_activity_off(priv);
1105 ipw_led_link_off(priv);
1106}
1107
Adrian Bunka73e22b2006-01-21 01:39:42 +01001108static void ipw_led_link_up(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -05001109{
1110 /* Set the Link Led on for all nic types */
1111 ipw_led_link_on(priv);
1112}
1113
Adrian Bunka73e22b2006-01-21 01:39:42 +01001114static void ipw_led_link_down(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -05001115{
1116 ipw_led_activity_off(priv);
1117 ipw_led_link_off(priv);
1118
1119 if (priv->status & STATUS_RF_KILL_MASK)
1120 ipw_led_radio_off(priv);
1121}
1122
Adrian Bunka73e22b2006-01-21 01:39:42 +01001123static void ipw_led_init(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -05001124{
1125 priv->nic_type = priv->eeprom[EEPROM_NIC_TYPE];
1126
1127 /* Set the default PINs for the link and activity leds */
James Ketrenosb095c382005-08-24 22:04:42 -05001128 priv->led_activity_on = IPW_ACTIVITY_LED;
1129 priv->led_activity_off = ~(IPW_ACTIVITY_LED);
James Ketrenosa613bff2005-08-24 21:43:11 -05001130
James Ketrenosb095c382005-08-24 22:04:42 -05001131 priv->led_association_on = IPW_ASSOCIATED_LED;
1132 priv->led_association_off = ~(IPW_ASSOCIATED_LED);
James Ketrenosa613bff2005-08-24 21:43:11 -05001133
1134 /* Set the default PINs for the OFDM leds */
James Ketrenosb095c382005-08-24 22:04:42 -05001135 priv->led_ofdm_on = IPW_OFDM_LED;
1136 priv->led_ofdm_off = ~(IPW_OFDM_LED);
James Ketrenosa613bff2005-08-24 21:43:11 -05001137
1138 switch (priv->nic_type) {
1139 case EEPROM_NIC_TYPE_1:
1140 /* In this NIC type, the LEDs are reversed.... */
James Ketrenosb095c382005-08-24 22:04:42 -05001141 priv->led_activity_on = IPW_ASSOCIATED_LED;
1142 priv->led_activity_off = ~(IPW_ASSOCIATED_LED);
1143 priv->led_association_on = IPW_ACTIVITY_LED;
1144 priv->led_association_off = ~(IPW_ACTIVITY_LED);
James Ketrenosa613bff2005-08-24 21:43:11 -05001145
1146 if (!(priv->config & CFG_NO_LED))
1147 ipw_led_band_on(priv);
1148
1149 /* And we don't blink link LEDs for this nic, so
1150 * just return here */
1151 return;
1152
1153 case EEPROM_NIC_TYPE_3:
1154 case EEPROM_NIC_TYPE_2:
1155 case EEPROM_NIC_TYPE_4:
1156 case EEPROM_NIC_TYPE_0:
1157 break;
1158
1159 default:
1160 IPW_DEBUG_INFO("Unknown NIC type from EEPROM: %d\n",
1161 priv->nic_type);
1162 priv->nic_type = EEPROM_NIC_TYPE_0;
1163 break;
1164 }
1165
1166 if (!(priv->config & CFG_NO_LED)) {
1167 if (priv->status & STATUS_ASSOCIATED)
1168 ipw_led_link_on(priv);
1169 else
1170 ipw_led_link_off(priv);
1171 }
1172}
1173
Adrian Bunka73e22b2006-01-21 01:39:42 +01001174static void ipw_led_shutdown(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -05001175{
James Ketrenosa613bff2005-08-24 21:43:11 -05001176 ipw_led_activity_off(priv);
1177 ipw_led_link_off(priv);
1178 ipw_led_band_off(priv);
James Ketrenosafbf30a2005-08-25 00:05:33 -05001179 cancel_delayed_work(&priv->led_link_on);
1180 cancel_delayed_work(&priv->led_link_off);
1181 cancel_delayed_work(&priv->led_act_off);
James Ketrenosa613bff2005-08-24 21:43:11 -05001182}
1183
James Ketrenos43f66a62005-03-25 12:31:53 -06001184/*
1185 * The following adds a new attribute to the sysfs representation
1186 * of this device driver (i.e. a new file in /sys/bus/pci/drivers/ipw/)
1187 * used for controling the debug level.
Jeff Garzikbf794512005-07-31 13:07:26 -04001188 *
James Ketrenos43f66a62005-03-25 12:31:53 -06001189 * See the level definitions in ipw for details.
1190 */
1191static ssize_t show_debug_level(struct device_driver *d, char *buf)
1192{
1193 return sprintf(buf, "0x%08X\n", ipw_debug_level);
1194}
James Ketrenosa613bff2005-08-24 21:43:11 -05001195
1196static ssize_t store_debug_level(struct device_driver *d, const char *buf,
1197 size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001198{
1199 char *p = (char *)buf;
1200 u32 val;
1201
1202 if (p[1] == 'x' || p[1] == 'X' || p[0] == 'x' || p[0] == 'X') {
1203 p++;
1204 if (p[0] == 'x' || p[0] == 'X')
1205 p++;
1206 val = simple_strtoul(p, &p, 16);
1207 } else
1208 val = simple_strtoul(p, &p, 10);
Jeff Garzikbf794512005-07-31 13:07:26 -04001209 if (p == buf)
1210 printk(KERN_INFO DRV_NAME
James Ketrenos43f66a62005-03-25 12:31:53 -06001211 ": %s is not in hex or decimal form.\n", buf);
1212 else
1213 ipw_debug_level = val;
1214
1215 return strnlen(buf, count);
1216}
1217
Jeff Garzikbf794512005-07-31 13:07:26 -04001218static DRIVER_ATTR(debug_level, S_IWUSR | S_IRUGO,
James Ketrenos43f66a62005-03-25 12:31:53 -06001219 show_debug_level, store_debug_level);
1220
James Ketrenosb39860c2005-08-12 09:36:32 -05001221static inline u32 ipw_get_event_log_len(struct ipw_priv *priv)
1222{
Zhu Yic8fe6672006-01-24 16:36:36 +08001223 /* length = 1st dword in log */
James Ketrenosb39860c2005-08-12 09:36:32 -05001224 return ipw_read_reg32(priv, ipw_read32(priv, IPW_EVENT_LOG));
1225}
1226
1227static void ipw_capture_event_log(struct ipw_priv *priv,
1228 u32 log_len, struct ipw_event *log)
1229{
1230 u32 base;
1231
1232 if (log_len) {
1233 base = ipw_read32(priv, IPW_EVENT_LOG);
1234 ipw_read_indirect(priv, base + sizeof(base) + sizeof(u32),
1235 (u8 *) log, sizeof(*log) * log_len);
1236 }
1237}
1238
1239static struct ipw_fw_error *ipw_alloc_error_log(struct ipw_priv *priv)
1240{
1241 struct ipw_fw_error *error;
1242 u32 log_len = ipw_get_event_log_len(priv);
1243 u32 base = ipw_read32(priv, IPW_ERROR_LOG);
1244 u32 elem_len = ipw_read_reg32(priv, base);
1245
1246 error = kmalloc(sizeof(*error) +
1247 sizeof(*error->elem) * elem_len +
1248 sizeof(*error->log) * log_len, GFP_ATOMIC);
1249 if (!error) {
1250 IPW_ERROR("Memory allocation for firmware error log "
1251 "failed.\n");
1252 return NULL;
1253 }
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001254 error->jiffies = jiffies;
James Ketrenosb39860c2005-08-12 09:36:32 -05001255 error->status = priv->status;
1256 error->config = priv->config;
1257 error->elem_len = elem_len;
1258 error->log_len = log_len;
1259 error->elem = (struct ipw_error_elem *)error->payload;
Zhu Yi3b26b112005-11-17 13:58:30 +08001260 error->log = (struct ipw_event *)(error->elem + elem_len);
James Ketrenosb39860c2005-08-12 09:36:32 -05001261
1262 ipw_capture_event_log(priv, log_len, error->log);
1263
1264 if (elem_len)
1265 ipw_read_indirect(priv, base + sizeof(base), (u8 *) error->elem,
1266 sizeof(*error->elem) * elem_len);
1267
1268 return error;
1269}
1270
James Ketrenosb39860c2005-08-12 09:36:32 -05001271static ssize_t show_event_log(struct device *d,
1272 struct device_attribute *attr, char *buf)
1273{
1274 struct ipw_priv *priv = dev_get_drvdata(d);
1275 u32 log_len = ipw_get_event_log_len(priv);
Reinette Chatre412e9e72007-12-18 22:01:02 -08001276 u32 log_size;
1277 struct ipw_event *log;
James Ketrenosb39860c2005-08-12 09:36:32 -05001278 u32 len = 0, i;
1279
Reinette Chatre412e9e72007-12-18 22:01:02 -08001280 /* not using min() because of its strict type checking */
1281 log_size = PAGE_SIZE / sizeof(*log) > log_len ?
1282 sizeof(*log) * log_len : PAGE_SIZE;
1283 log = kzalloc(log_size, GFP_KERNEL);
1284 if (!log) {
1285 IPW_ERROR("Unable to allocate memory for log\n");
1286 return 0;
1287 }
1288 log_len = log_size / sizeof(*log);
James Ketrenosb39860c2005-08-12 09:36:32 -05001289 ipw_capture_event_log(priv, log_len, log);
1290
1291 len += snprintf(buf + len, PAGE_SIZE - len, "%08X", log_len);
1292 for (i = 0; i < log_len; i++)
1293 len += snprintf(buf + len, PAGE_SIZE - len,
1294 "\n%08X%08X%08X",
1295 log[i].time, log[i].event, log[i].data);
1296 len += snprintf(buf + len, PAGE_SIZE - len, "\n");
Reinette Chatre412e9e72007-12-18 22:01:02 -08001297 kfree(log);
James Ketrenosb39860c2005-08-12 09:36:32 -05001298 return len;
1299}
1300
1301static DEVICE_ATTR(event_log, S_IRUGO, show_event_log, NULL);
1302
1303static ssize_t show_error(struct device *d,
1304 struct device_attribute *attr, char *buf)
1305{
1306 struct ipw_priv *priv = dev_get_drvdata(d);
1307 u32 len = 0, i;
1308 if (!priv->error)
1309 return 0;
1310 len += snprintf(buf + len, PAGE_SIZE - len,
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001311 "%08lX%08X%08X%08X",
1312 priv->error->jiffies,
James Ketrenosb39860c2005-08-12 09:36:32 -05001313 priv->error->status,
1314 priv->error->config, priv->error->elem_len);
1315 for (i = 0; i < priv->error->elem_len; i++)
1316 len += snprintf(buf + len, PAGE_SIZE - len,
1317 "\n%08X%08X%08X%08X%08X%08X%08X",
1318 priv->error->elem[i].time,
1319 priv->error->elem[i].desc,
1320 priv->error->elem[i].blink1,
1321 priv->error->elem[i].blink2,
1322 priv->error->elem[i].link1,
1323 priv->error->elem[i].link2,
1324 priv->error->elem[i].data);
1325
1326 len += snprintf(buf + len, PAGE_SIZE - len,
1327 "\n%08X", priv->error->log_len);
1328 for (i = 0; i < priv->error->log_len; i++)
1329 len += snprintf(buf + len, PAGE_SIZE - len,
1330 "\n%08X%08X%08X",
1331 priv->error->log[i].time,
1332 priv->error->log[i].event,
1333 priv->error->log[i].data);
1334 len += snprintf(buf + len, PAGE_SIZE - len, "\n");
1335 return len;
1336}
1337
1338static ssize_t clear_error(struct device *d,
1339 struct device_attribute *attr,
1340 const char *buf, size_t count)
1341{
1342 struct ipw_priv *priv = dev_get_drvdata(d);
Jesper Juhl8f760782006-06-27 02:55:06 -07001343
1344 kfree(priv->error);
1345 priv->error = NULL;
James Ketrenosb39860c2005-08-12 09:36:32 -05001346 return count;
1347}
1348
1349static DEVICE_ATTR(error, S_IRUGO | S_IWUSR, show_error, clear_error);
1350
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001351static ssize_t show_cmd_log(struct device *d,
1352 struct device_attribute *attr, char *buf)
1353{
1354 struct ipw_priv *priv = dev_get_drvdata(d);
1355 u32 len = 0, i;
1356 if (!priv->cmdlog)
1357 return 0;
1358 for (i = (priv->cmdlog_pos + 1) % priv->cmdlog_len;
1359 (i != priv->cmdlog_pos) && (PAGE_SIZE - len);
1360 i = (i + 1) % priv->cmdlog_len) {
1361 len +=
1362 snprintf(buf + len, PAGE_SIZE - len,
1363 "\n%08lX%08X%08X%08X\n", priv->cmdlog[i].jiffies,
1364 priv->cmdlog[i].retcode, priv->cmdlog[i].cmd.cmd,
1365 priv->cmdlog[i].cmd.len);
1366 len +=
1367 snprintk_buf(buf + len, PAGE_SIZE - len,
1368 (u8 *) priv->cmdlog[i].cmd.param,
1369 priv->cmdlog[i].cmd.len);
1370 len += snprintf(buf + len, PAGE_SIZE - len, "\n");
1371 }
1372 len += snprintf(buf + len, PAGE_SIZE - len, "\n");
1373 return len;
1374}
1375
1376static DEVICE_ATTR(cmd_log, S_IRUGO, show_cmd_log, NULL);
1377
Zhu Yid685b8c2006-04-13 17:20:27 +08001378#ifdef CONFIG_IPW2200_PROMISCUOUS
1379static void ipw_prom_free(struct ipw_priv *priv);
1380static int ipw_prom_alloc(struct ipw_priv *priv);
1381static ssize_t store_rtap_iface(struct device *d,
1382 struct device_attribute *attr,
1383 const char *buf, size_t count)
1384{
1385 struct ipw_priv *priv = dev_get_drvdata(d);
1386 int rc = 0;
1387
1388 if (count < 1)
1389 return -EINVAL;
1390
1391 switch (buf[0]) {
1392 case '0':
1393 if (!rtap_iface)
1394 return count;
1395
1396 if (netif_running(priv->prom_net_dev)) {
1397 IPW_WARNING("Interface is up. Cannot unregister.\n");
1398 return count;
1399 }
1400
1401 ipw_prom_free(priv);
1402 rtap_iface = 0;
1403 break;
1404
1405 case '1':
1406 if (rtap_iface)
1407 return count;
1408
1409 rc = ipw_prom_alloc(priv);
1410 if (!rc)
1411 rtap_iface = 1;
1412 break;
1413
1414 default:
1415 return -EINVAL;
1416 }
1417
1418 if (rc) {
1419 IPW_ERROR("Failed to register promiscuous network "
1420 "device (error %d).\n", rc);
1421 }
1422
1423 return count;
1424}
1425
1426static ssize_t show_rtap_iface(struct device *d,
1427 struct device_attribute *attr,
1428 char *buf)
1429{
1430 struct ipw_priv *priv = dev_get_drvdata(d);
1431 if (rtap_iface)
1432 return sprintf(buf, "%s", priv->prom_net_dev->name);
1433 else {
1434 buf[0] = '-';
1435 buf[1] = '1';
1436 buf[2] = '\0';
1437 return 3;
1438 }
1439}
1440
1441static DEVICE_ATTR(rtap_iface, S_IWUSR | S_IRUSR, show_rtap_iface,
1442 store_rtap_iface);
1443
1444static ssize_t store_rtap_filter(struct device *d,
1445 struct device_attribute *attr,
1446 const char *buf, size_t count)
1447{
1448 struct ipw_priv *priv = dev_get_drvdata(d);
1449
1450 if (!priv->prom_priv) {
1451 IPW_ERROR("Attempting to set filter without "
1452 "rtap_iface enabled.\n");
1453 return -EPERM;
1454 }
1455
1456 priv->prom_priv->filter = simple_strtol(buf, NULL, 0);
1457
1458 IPW_DEBUG_INFO("Setting rtap filter to " BIT_FMT16 "\n",
1459 BIT_ARG16(priv->prom_priv->filter));
1460
1461 return count;
1462}
1463
1464static ssize_t show_rtap_filter(struct device *d,
1465 struct device_attribute *attr,
1466 char *buf)
1467{
1468 struct ipw_priv *priv = dev_get_drvdata(d);
1469 return sprintf(buf, "0x%04X",
1470 priv->prom_priv ? priv->prom_priv->filter : 0);
1471}
1472
1473static DEVICE_ATTR(rtap_filter, S_IWUSR | S_IRUSR, show_rtap_filter,
1474 store_rtap_filter);
1475#endif
1476
James Ketrenosa613bff2005-08-24 21:43:11 -05001477static ssize_t show_scan_age(struct device *d, struct device_attribute *attr,
1478 char *buf)
1479{
1480 struct ipw_priv *priv = dev_get_drvdata(d);
1481 return sprintf(buf, "%d\n", priv->ieee->scan_age);
1482}
1483
1484static ssize_t store_scan_age(struct device *d, struct device_attribute *attr,
1485 const char *buf, size_t count)
1486{
1487 struct ipw_priv *priv = dev_get_drvdata(d);
1488 struct net_device *dev = priv->net_dev;
1489 char buffer[] = "00000000";
1490 unsigned long len =
1491 (sizeof(buffer) - 1) > count ? count : sizeof(buffer) - 1;
1492 unsigned long val;
1493 char *p = buffer;
1494
1495 IPW_DEBUG_INFO("enter\n");
1496
1497 strncpy(buffer, buf, len);
1498 buffer[len] = 0;
1499
1500 if (p[1] == 'x' || p[1] == 'X' || p[0] == 'x' || p[0] == 'X') {
1501 p++;
1502 if (p[0] == 'x' || p[0] == 'X')
1503 p++;
1504 val = simple_strtoul(p, &p, 16);
1505 } else
1506 val = simple_strtoul(p, &p, 10);
1507 if (p == buffer) {
1508 IPW_DEBUG_INFO("%s: user supplied invalid value.\n", dev->name);
1509 } else {
1510 priv->ieee->scan_age = val;
1511 IPW_DEBUG_INFO("set scan_age = %u\n", priv->ieee->scan_age);
1512 }
1513
1514 IPW_DEBUG_INFO("exit\n");
1515 return len;
1516}
1517
1518static DEVICE_ATTR(scan_age, S_IWUSR | S_IRUGO, show_scan_age, store_scan_age);
1519
1520static ssize_t show_led(struct device *d, struct device_attribute *attr,
1521 char *buf)
1522{
1523 struct ipw_priv *priv = dev_get_drvdata(d);
1524 return sprintf(buf, "%d\n", (priv->config & CFG_NO_LED) ? 0 : 1);
1525}
1526
1527static ssize_t store_led(struct device *d, struct device_attribute *attr,
1528 const char *buf, size_t count)
1529{
1530 struct ipw_priv *priv = dev_get_drvdata(d);
1531
1532 IPW_DEBUG_INFO("enter\n");
1533
1534 if (count == 0)
1535 return 0;
1536
1537 if (*buf == 0) {
1538 IPW_DEBUG_LED("Disabling LED control.\n");
1539 priv->config |= CFG_NO_LED;
1540 ipw_led_shutdown(priv);
1541 } else {
1542 IPW_DEBUG_LED("Enabling LED control.\n");
1543 priv->config &= ~CFG_NO_LED;
1544 ipw_led_init(priv);
1545 }
1546
1547 IPW_DEBUG_INFO("exit\n");
1548 return count;
1549}
1550
1551static DEVICE_ATTR(led, S_IWUSR | S_IRUGO, show_led, store_led);
1552
Andrew Mortonad3fee52005-06-20 14:30:36 -07001553static ssize_t show_status(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001554 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001555{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001556 struct ipw_priv *p = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001557 return sprintf(buf, "0x%08x\n", (int)p->status);
1558}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001559
James Ketrenos43f66a62005-03-25 12:31:53 -06001560static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
1561
Andrew Mortonad3fee52005-06-20 14:30:36 -07001562static ssize_t show_cfg(struct device *d, struct device_attribute *attr,
1563 char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001564{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001565 struct ipw_priv *p = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001566 return sprintf(buf, "0x%08x\n", (int)p->config);
1567}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001568
James Ketrenos43f66a62005-03-25 12:31:53 -06001569static DEVICE_ATTR(cfg, S_IRUGO, show_cfg, NULL);
1570
Andrew Mortonad3fee52005-06-20 14:30:36 -07001571static ssize_t show_nic_type(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001572 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001573{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001574 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenosa613bff2005-08-24 21:43:11 -05001575 return sprintf(buf, "TYPE: %d\n", priv->nic_type);
James Ketrenos43f66a62005-03-25 12:31:53 -06001576}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001577
James Ketrenos43f66a62005-03-25 12:31:53 -06001578static DEVICE_ATTR(nic_type, S_IRUGO, show_nic_type, NULL);
1579
Andrew Mortonad3fee52005-06-20 14:30:36 -07001580static ssize_t show_ucode_version(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001581 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001582{
1583 u32 len = sizeof(u32), tmp = 0;
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001584 struct ipw_priv *p = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001585
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001586 if (ipw_get_ordinal(p, IPW_ORD_STAT_UCODE_VERSION, &tmp, &len))
James Ketrenos43f66a62005-03-25 12:31:53 -06001587 return 0;
1588
1589 return sprintf(buf, "0x%08x\n", tmp);
1590}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001591
1592static DEVICE_ATTR(ucode_version, S_IWUSR | S_IRUGO, show_ucode_version, NULL);
James Ketrenos43f66a62005-03-25 12:31:53 -06001593
Andrew Mortonad3fee52005-06-20 14:30:36 -07001594static ssize_t show_rtc(struct device *d, struct device_attribute *attr,
1595 char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001596{
1597 u32 len = sizeof(u32), tmp = 0;
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001598 struct ipw_priv *p = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001599
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001600 if (ipw_get_ordinal(p, IPW_ORD_STAT_RTC, &tmp, &len))
James Ketrenos43f66a62005-03-25 12:31:53 -06001601 return 0;
1602
1603 return sprintf(buf, "0x%08x\n", tmp);
1604}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001605
1606static DEVICE_ATTR(rtc, S_IWUSR | S_IRUGO, show_rtc, NULL);
James Ketrenos43f66a62005-03-25 12:31:53 -06001607
1608/*
1609 * Add a device attribute to view/control the delay between eeprom
1610 * operations.
1611 */
Andrew Mortonad3fee52005-06-20 14:30:36 -07001612static ssize_t show_eeprom_delay(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001613 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001614{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001615 struct ipw_priv *p = dev_get_drvdata(d);
1616 int n = p->eeprom_delay;
James Ketrenos43f66a62005-03-25 12:31:53 -06001617 return sprintf(buf, "%i\n", n);
1618}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001619static ssize_t store_eeprom_delay(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001620 struct device_attribute *attr,
1621 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001622{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001623 struct ipw_priv *p = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001624 sscanf(buf, "%i", &p->eeprom_delay);
1625 return strnlen(buf, count);
1626}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001627
1628static DEVICE_ATTR(eeprom_delay, S_IWUSR | S_IRUGO,
1629 show_eeprom_delay, store_eeprom_delay);
James Ketrenos43f66a62005-03-25 12:31:53 -06001630
Andrew Mortonad3fee52005-06-20 14:30:36 -07001631static ssize_t show_command_event_reg(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001632 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001633{
1634 u32 reg = 0;
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001635 struct ipw_priv *p = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001636
James Ketrenosb095c382005-08-24 22:04:42 -05001637 reg = ipw_read_reg32(p, IPW_INTERNAL_CMD_EVENT);
James Ketrenos43f66a62005-03-25 12:31:53 -06001638 return sprintf(buf, "0x%08x\n", reg);
1639}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001640static ssize_t store_command_event_reg(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001641 struct device_attribute *attr,
1642 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001643{
1644 u32 reg;
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001645 struct ipw_priv *p = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001646
1647 sscanf(buf, "%x", &reg);
James Ketrenosb095c382005-08-24 22:04:42 -05001648 ipw_write_reg32(p, IPW_INTERNAL_CMD_EVENT, reg);
James Ketrenos43f66a62005-03-25 12:31:53 -06001649 return strnlen(buf, count);
1650}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001651
1652static DEVICE_ATTR(command_event_reg, S_IWUSR | S_IRUGO,
1653 show_command_event_reg, store_command_event_reg);
James Ketrenos43f66a62005-03-25 12:31:53 -06001654
Andrew Mortonad3fee52005-06-20 14:30:36 -07001655static ssize_t show_mem_gpio_reg(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001656 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001657{
1658 u32 reg = 0;
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001659 struct ipw_priv *p = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001660
1661 reg = ipw_read_reg32(p, 0x301100);
1662 return sprintf(buf, "0x%08x\n", reg);
1663}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001664static ssize_t store_mem_gpio_reg(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001665 struct device_attribute *attr,
1666 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001667{
1668 u32 reg;
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001669 struct ipw_priv *p = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001670
1671 sscanf(buf, "%x", &reg);
1672 ipw_write_reg32(p, 0x301100, reg);
1673 return strnlen(buf, count);
1674}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001675
1676static DEVICE_ATTR(mem_gpio_reg, S_IWUSR | S_IRUGO,
1677 show_mem_gpio_reg, store_mem_gpio_reg);
James Ketrenos43f66a62005-03-25 12:31:53 -06001678
Andrew Mortonad3fee52005-06-20 14:30:36 -07001679static ssize_t show_indirect_dword(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001680 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001681{
1682 u32 reg = 0;
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001683 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenosafbf30a2005-08-25 00:05:33 -05001684
Jeff Garzikbf794512005-07-31 13:07:26 -04001685 if (priv->status & STATUS_INDIRECT_DWORD)
James Ketrenos43f66a62005-03-25 12:31:53 -06001686 reg = ipw_read_reg32(priv, priv->indirect_dword);
Jeff Garzikbf794512005-07-31 13:07:26 -04001687 else
James Ketrenos43f66a62005-03-25 12:31:53 -06001688 reg = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04001689
James Ketrenos43f66a62005-03-25 12:31:53 -06001690 return sprintf(buf, "0x%08x\n", reg);
1691}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001692static ssize_t store_indirect_dword(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001693 struct device_attribute *attr,
1694 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001695{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001696 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001697
1698 sscanf(buf, "%x", &priv->indirect_dword);
1699 priv->status |= STATUS_INDIRECT_DWORD;
1700 return strnlen(buf, count);
1701}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001702
1703static DEVICE_ATTR(indirect_dword, S_IWUSR | S_IRUGO,
1704 show_indirect_dword, store_indirect_dword);
James Ketrenos43f66a62005-03-25 12:31:53 -06001705
Andrew Mortonad3fee52005-06-20 14:30:36 -07001706static ssize_t show_indirect_byte(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001707 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001708{
1709 u8 reg = 0;
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001710 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenosafbf30a2005-08-25 00:05:33 -05001711
Jeff Garzikbf794512005-07-31 13:07:26 -04001712 if (priv->status & STATUS_INDIRECT_BYTE)
James Ketrenos43f66a62005-03-25 12:31:53 -06001713 reg = ipw_read_reg8(priv, priv->indirect_byte);
Jeff Garzikbf794512005-07-31 13:07:26 -04001714 else
James Ketrenos43f66a62005-03-25 12:31:53 -06001715 reg = 0;
1716
1717 return sprintf(buf, "0x%02x\n", reg);
1718}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001719static ssize_t store_indirect_byte(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001720 struct device_attribute *attr,
1721 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001722{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001723 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001724
1725 sscanf(buf, "%x", &priv->indirect_byte);
1726 priv->status |= STATUS_INDIRECT_BYTE;
1727 return strnlen(buf, count);
1728}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001729
1730static DEVICE_ATTR(indirect_byte, S_IWUSR | S_IRUGO,
James Ketrenos43f66a62005-03-25 12:31:53 -06001731 show_indirect_byte, store_indirect_byte);
1732
Andrew Mortonad3fee52005-06-20 14:30:36 -07001733static ssize_t show_direct_dword(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001734 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001735{
1736 u32 reg = 0;
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001737 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001738
Jeff Garzikbf794512005-07-31 13:07:26 -04001739 if (priv->status & STATUS_DIRECT_DWORD)
James Ketrenos43f66a62005-03-25 12:31:53 -06001740 reg = ipw_read32(priv, priv->direct_dword);
Jeff Garzikbf794512005-07-31 13:07:26 -04001741 else
James Ketrenos43f66a62005-03-25 12:31:53 -06001742 reg = 0;
1743
1744 return sprintf(buf, "0x%08x\n", reg);
1745}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001746static ssize_t store_direct_dword(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001747 struct device_attribute *attr,
1748 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001749{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001750 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001751
1752 sscanf(buf, "%x", &priv->direct_dword);
1753 priv->status |= STATUS_DIRECT_DWORD;
1754 return strnlen(buf, count);
1755}
James Ketrenos43f66a62005-03-25 12:31:53 -06001756
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001757static DEVICE_ATTR(direct_dword, S_IWUSR | S_IRUGO,
1758 show_direct_dword, store_direct_dword);
James Ketrenos43f66a62005-03-25 12:31:53 -06001759
Arjan van de Ven858119e2006-01-14 13:20:43 -08001760static int rf_kill_active(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06001761{
Matthew Garrett25f94ae2009-11-11 14:36:31 -05001762 if (0 == (ipw_read32(priv, 0x30) & 0x10000)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001763 priv->status |= STATUS_RF_KILL_HW;
Matthew Garrett25f94ae2009-11-11 14:36:31 -05001764 wiphy_rfkill_set_hw_state(priv->ieee->wdev.wiphy, true);
1765 } else {
James Ketrenos43f66a62005-03-25 12:31:53 -06001766 priv->status &= ~STATUS_RF_KILL_HW;
Matthew Garrett25f94ae2009-11-11 14:36:31 -05001767 wiphy_rfkill_set_hw_state(priv->ieee->wdev.wiphy, false);
1768 }
James Ketrenos43f66a62005-03-25 12:31:53 -06001769
1770 return (priv->status & STATUS_RF_KILL_HW) ? 1 : 0;
1771}
1772
Andrew Mortonad3fee52005-06-20 14:30:36 -07001773static ssize_t show_rf_kill(struct device *d, struct device_attribute *attr,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001774 char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001775{
1776 /* 0 - RF kill not enabled
Jeff Garzikbf794512005-07-31 13:07:26 -04001777 1 - SW based RF kill active (sysfs)
James Ketrenos43f66a62005-03-25 12:31:53 -06001778 2 - HW based RF kill active
1779 3 - Both HW and SW baed RF kill active */
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001780 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001781 int val = ((priv->status & STATUS_RF_KILL_SW) ? 0x1 : 0x0) |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001782 (rf_kill_active(priv) ? 0x2 : 0x0);
James Ketrenos43f66a62005-03-25 12:31:53 -06001783 return sprintf(buf, "%i\n", val);
1784}
1785
1786static int ipw_radio_kill_sw(struct ipw_priv *priv, int disable_radio)
1787{
Jeff Garzikbf794512005-07-31 13:07:26 -04001788 if ((disable_radio ? 1 : 0) ==
James Ketrenosea2b26e2005-08-24 21:25:16 -05001789 ((priv->status & STATUS_RF_KILL_SW) ? 1 : 0))
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001790 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06001791
1792 IPW_DEBUG_RF_KILL("Manual SW RF Kill set to: RADIO %s\n",
1793 disable_radio ? "OFF" : "ON");
1794
1795 if (disable_radio) {
1796 priv->status |= STATUS_RF_KILL_SW;
1797
Dan Williams0b531672007-10-09 13:55:24 -04001798 if (priv->workqueue) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001799 cancel_delayed_work(&priv->request_scan);
Dan Williamsea177302008-06-02 17:51:23 -04001800 cancel_delayed_work(&priv->request_direct_scan);
1801 cancel_delayed_work(&priv->request_passive_scan);
Dan Williams0b531672007-10-09 13:55:24 -04001802 cancel_delayed_work(&priv->scan_event);
1803 }
James Ketrenos43f66a62005-03-25 12:31:53 -06001804 queue_work(priv->workqueue, &priv->down);
1805 } else {
1806 priv->status &= ~STATUS_RF_KILL_SW;
1807 if (rf_kill_active(priv)) {
1808 IPW_DEBUG_RF_KILL("Can not turn radio back on - "
1809 "disabled by HW switch\n");
1810 /* Make sure the RF_KILL check timer is running */
1811 cancel_delayed_work(&priv->rf_kill);
Jeff Garzikbf794512005-07-31 13:07:26 -04001812 queue_delayed_work(priv->workqueue, &priv->rf_kill,
Anton Blanchardbe84e3d2007-10-15 00:38:01 -05001813 round_jiffies_relative(2 * HZ));
Jeff Garzikbf794512005-07-31 13:07:26 -04001814 } else
James Ketrenos43f66a62005-03-25 12:31:53 -06001815 queue_work(priv->workqueue, &priv->up);
1816 }
1817
1818 return 1;
1819}
1820
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001821static ssize_t store_rf_kill(struct device *d, struct device_attribute *attr,
1822 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001823{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001824 struct ipw_priv *priv = dev_get_drvdata(d);
Jeff Garzikbf794512005-07-31 13:07:26 -04001825
James Ketrenos43f66a62005-03-25 12:31:53 -06001826 ipw_radio_kill_sw(priv, buf[0] == '1');
1827
1828 return count;
1829}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001830
1831static DEVICE_ATTR(rf_kill, S_IWUSR | S_IRUGO, show_rf_kill, store_rf_kill);
James Ketrenos43f66a62005-03-25 12:31:53 -06001832
James Ketrenosb095c382005-08-24 22:04:42 -05001833static ssize_t show_speed_scan(struct device *d, struct device_attribute *attr,
1834 char *buf)
1835{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001836 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenosb095c382005-08-24 22:04:42 -05001837 int pos = 0, len = 0;
1838 if (priv->config & CFG_SPEED_SCAN) {
1839 while (priv->speed_scan[pos] != 0)
1840 len += sprintf(&buf[len], "%d ",
1841 priv->speed_scan[pos++]);
1842 return len + sprintf(&buf[len], "\n");
1843 }
1844
1845 return sprintf(buf, "0\n");
1846}
1847
1848static ssize_t store_speed_scan(struct device *d, struct device_attribute *attr,
1849 const char *buf, size_t count)
1850{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001851 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenosb095c382005-08-24 22:04:42 -05001852 int channel, pos = 0;
1853 const char *p = buf;
1854
1855 /* list of space separated channels to scan, optionally ending with 0 */
1856 while ((channel = simple_strtol(p, NULL, 0))) {
1857 if (pos == MAX_SPEED_SCAN - 1) {
1858 priv->speed_scan[pos] = 0;
1859 break;
1860 }
1861
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001862 if (libipw_is_valid_channel(priv->ieee, channel))
James Ketrenosb095c382005-08-24 22:04:42 -05001863 priv->speed_scan[pos++] = channel;
1864 else
1865 IPW_WARNING("Skipping invalid channel request: %d\n",
1866 channel);
1867 p = strchr(p, ' ');
1868 if (!p)
1869 break;
1870 while (*p == ' ' || *p == '\t')
1871 p++;
1872 }
1873
1874 if (pos == 0)
1875 priv->config &= ~CFG_SPEED_SCAN;
1876 else {
1877 priv->speed_scan_pos = 0;
1878 priv->config |= CFG_SPEED_SCAN;
1879 }
1880
1881 return count;
1882}
1883
1884static DEVICE_ATTR(speed_scan, S_IWUSR | S_IRUGO, show_speed_scan,
1885 store_speed_scan);
1886
1887static ssize_t show_net_stats(struct device *d, struct device_attribute *attr,
1888 char *buf)
1889{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001890 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenosb095c382005-08-24 22:04:42 -05001891 return sprintf(buf, "%c\n", (priv->config & CFG_NET_STATS) ? '1' : '0');
1892}
1893
1894static ssize_t store_net_stats(struct device *d, struct device_attribute *attr,
1895 const char *buf, size_t count)
1896{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001897 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenosb095c382005-08-24 22:04:42 -05001898 if (buf[0] == '1')
1899 priv->config |= CFG_NET_STATS;
1900 else
1901 priv->config &= ~CFG_NET_STATS;
1902
1903 return count;
1904}
1905
James Ketrenosafbf30a2005-08-25 00:05:33 -05001906static DEVICE_ATTR(net_stats, S_IWUSR | S_IRUGO,
1907 show_net_stats, store_net_stats);
James Ketrenosb095c382005-08-24 22:04:42 -05001908
Zhu Yi375dd242007-02-14 16:04:24 +08001909static ssize_t show_channels(struct device *d,
1910 struct device_attribute *attr,
1911 char *buf)
1912{
1913 struct ipw_priv *priv = dev_get_drvdata(d);
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001914 const struct libipw_geo *geo = libipw_get_geo(priv->ieee);
Zhu Yi375dd242007-02-14 16:04:24 +08001915 int len = 0, i;
1916
1917 len = sprintf(&buf[len],
1918 "Displaying %d channels in 2.4Ghz band "
1919 "(802.11bg):\n", geo->bg_channels);
1920
1921 for (i = 0; i < geo->bg_channels; i++) {
1922 len += sprintf(&buf[len], "%d: BSS%s%s, %s, Band %s.\n",
1923 geo->bg[i].channel,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001924 geo->bg[i].flags & LIBIPW_CH_RADAR_DETECT ?
Zhu Yi375dd242007-02-14 16:04:24 +08001925 " (radar spectrum)" : "",
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001926 ((geo->bg[i].flags & LIBIPW_CH_NO_IBSS) ||
1927 (geo->bg[i].flags & LIBIPW_CH_RADAR_DETECT))
Zhu Yi375dd242007-02-14 16:04:24 +08001928 ? "" : ", IBSS",
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001929 geo->bg[i].flags & LIBIPW_CH_PASSIVE_ONLY ?
Zhu Yi375dd242007-02-14 16:04:24 +08001930 "passive only" : "active/passive",
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001931 geo->bg[i].flags & LIBIPW_CH_B_ONLY ?
Zhu Yi375dd242007-02-14 16:04:24 +08001932 "B" : "B/G");
1933 }
1934
1935 len += sprintf(&buf[len],
1936 "Displaying %d channels in 5.2Ghz band "
1937 "(802.11a):\n", geo->a_channels);
1938 for (i = 0; i < geo->a_channels; i++) {
1939 len += sprintf(&buf[len], "%d: BSS%s%s, %s.\n",
1940 geo->a[i].channel,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001941 geo->a[i].flags & LIBIPW_CH_RADAR_DETECT ?
Zhu Yi375dd242007-02-14 16:04:24 +08001942 " (radar spectrum)" : "",
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001943 ((geo->a[i].flags & LIBIPW_CH_NO_IBSS) ||
1944 (geo->a[i].flags & LIBIPW_CH_RADAR_DETECT))
Zhu Yi375dd242007-02-14 16:04:24 +08001945 ? "" : ", IBSS",
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001946 geo->a[i].flags & LIBIPW_CH_PASSIVE_ONLY ?
Zhu Yi375dd242007-02-14 16:04:24 +08001947 "passive only" : "active/passive");
1948 }
1949
1950 return len;
1951}
1952
1953static DEVICE_ATTR(channels, S_IRUSR, show_channels, NULL);
1954
James Ketrenosea2b26e2005-08-24 21:25:16 -05001955static void notify_wx_assoc_event(struct ipw_priv *priv)
1956{
1957 union iwreq_data wrqu;
1958 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
1959 if (priv->status & STATUS_ASSOCIATED)
1960 memcpy(wrqu.ap_addr.sa_data, priv->bssid, ETH_ALEN);
1961 else
1962 memset(wrqu.ap_addr.sa_data, 0, ETH_ALEN);
1963 wireless_send_event(priv->net_dev, SIOCGIWAP, &wrqu, NULL);
1964}
1965
James Ketrenos43f66a62005-03-25 12:31:53 -06001966static void ipw_irq_tasklet(struct ipw_priv *priv)
1967{
1968 u32 inta, inta_mask, handled = 0;
1969 unsigned long flags;
1970 int rc = 0;
1971
Zhu Yi89c318e2006-06-08 22:19:49 -07001972 spin_lock_irqsave(&priv->irq_lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06001973
James Ketrenosb095c382005-08-24 22:04:42 -05001974 inta = ipw_read32(priv, IPW_INTA_RW);
1975 inta_mask = ipw_read32(priv, IPW_INTA_MASK_R);
1976 inta &= (IPW_INTA_MASK_ALL & inta_mask);
James Ketrenos43f66a62005-03-25 12:31:53 -06001977
1978 /* Add any cached INTA values that need to be handled */
1979 inta |= priv->isr_inta;
1980
Zhu Yi89c318e2006-06-08 22:19:49 -07001981 spin_unlock_irqrestore(&priv->irq_lock, flags);
1982
1983 spin_lock_irqsave(&priv->lock, flags);
1984
James Ketrenos43f66a62005-03-25 12:31:53 -06001985 /* handle all the justifications for the interrupt */
James Ketrenosb095c382005-08-24 22:04:42 -05001986 if (inta & IPW_INTA_BIT_RX_TRANSFER) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001987 ipw_rx(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05001988 handled |= IPW_INTA_BIT_RX_TRANSFER;
James Ketrenos43f66a62005-03-25 12:31:53 -06001989 }
1990
James Ketrenosb095c382005-08-24 22:04:42 -05001991 if (inta & IPW_INTA_BIT_TX_CMD_QUEUE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001992 IPW_DEBUG_HC("Command completed.\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001993 rc = ipw_queue_tx_reclaim(priv, &priv->txq_cmd, -1);
James Ketrenos43f66a62005-03-25 12:31:53 -06001994 priv->status &= ~STATUS_HCMD_ACTIVE;
1995 wake_up_interruptible(&priv->wait_command_queue);
James Ketrenosb095c382005-08-24 22:04:42 -05001996 handled |= IPW_INTA_BIT_TX_CMD_QUEUE;
James Ketrenos43f66a62005-03-25 12:31:53 -06001997 }
1998
James Ketrenosb095c382005-08-24 22:04:42 -05001999 if (inta & IPW_INTA_BIT_TX_QUEUE_1) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002000 IPW_DEBUG_TX("TX_QUEUE_1\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002001 rc = ipw_queue_tx_reclaim(priv, &priv->txq[0], 0);
James Ketrenosb095c382005-08-24 22:04:42 -05002002 handled |= IPW_INTA_BIT_TX_QUEUE_1;
James Ketrenos43f66a62005-03-25 12:31:53 -06002003 }
2004
James Ketrenosb095c382005-08-24 22:04:42 -05002005 if (inta & IPW_INTA_BIT_TX_QUEUE_2) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002006 IPW_DEBUG_TX("TX_QUEUE_2\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002007 rc = ipw_queue_tx_reclaim(priv, &priv->txq[1], 1);
James Ketrenosb095c382005-08-24 22:04:42 -05002008 handled |= IPW_INTA_BIT_TX_QUEUE_2;
James Ketrenos43f66a62005-03-25 12:31:53 -06002009 }
2010
James Ketrenosb095c382005-08-24 22:04:42 -05002011 if (inta & IPW_INTA_BIT_TX_QUEUE_3) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002012 IPW_DEBUG_TX("TX_QUEUE_3\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002013 rc = ipw_queue_tx_reclaim(priv, &priv->txq[2], 2);
James Ketrenosb095c382005-08-24 22:04:42 -05002014 handled |= IPW_INTA_BIT_TX_QUEUE_3;
James Ketrenos43f66a62005-03-25 12:31:53 -06002015 }
2016
James Ketrenosb095c382005-08-24 22:04:42 -05002017 if (inta & IPW_INTA_BIT_TX_QUEUE_4) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002018 IPW_DEBUG_TX("TX_QUEUE_4\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002019 rc = ipw_queue_tx_reclaim(priv, &priv->txq[3], 3);
James Ketrenosb095c382005-08-24 22:04:42 -05002020 handled |= IPW_INTA_BIT_TX_QUEUE_4;
James Ketrenos43f66a62005-03-25 12:31:53 -06002021 }
2022
James Ketrenosb095c382005-08-24 22:04:42 -05002023 if (inta & IPW_INTA_BIT_STATUS_CHANGE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002024 IPW_WARNING("STATUS_CHANGE\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002025 handled |= IPW_INTA_BIT_STATUS_CHANGE;
James Ketrenos43f66a62005-03-25 12:31:53 -06002026 }
2027
James Ketrenosb095c382005-08-24 22:04:42 -05002028 if (inta & IPW_INTA_BIT_BEACON_PERIOD_EXPIRED) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002029 IPW_WARNING("TX_PERIOD_EXPIRED\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002030 handled |= IPW_INTA_BIT_BEACON_PERIOD_EXPIRED;
James Ketrenos43f66a62005-03-25 12:31:53 -06002031 }
2032
James Ketrenosb095c382005-08-24 22:04:42 -05002033 if (inta & IPW_INTA_BIT_SLAVE_MODE_HOST_CMD_DONE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002034 IPW_WARNING("HOST_CMD_DONE\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002035 handled |= IPW_INTA_BIT_SLAVE_MODE_HOST_CMD_DONE;
James Ketrenos43f66a62005-03-25 12:31:53 -06002036 }
2037
James Ketrenosb095c382005-08-24 22:04:42 -05002038 if (inta & IPW_INTA_BIT_FW_INITIALIZATION_DONE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002039 IPW_WARNING("FW_INITIALIZATION_DONE\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002040 handled |= IPW_INTA_BIT_FW_INITIALIZATION_DONE;
James Ketrenos43f66a62005-03-25 12:31:53 -06002041 }
2042
James Ketrenosb095c382005-08-24 22:04:42 -05002043 if (inta & IPW_INTA_BIT_FW_CARD_DISABLE_PHY_OFF_DONE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002044 IPW_WARNING("PHY_OFF_DONE\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002045 handled |= IPW_INTA_BIT_FW_CARD_DISABLE_PHY_OFF_DONE;
James Ketrenos43f66a62005-03-25 12:31:53 -06002046 }
2047
James Ketrenosb095c382005-08-24 22:04:42 -05002048 if (inta & IPW_INTA_BIT_RF_KILL_DONE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002049 IPW_DEBUG_RF_KILL("RF_KILL_DONE\n");
2050 priv->status |= STATUS_RF_KILL_HW;
Matthew Garrett25f94ae2009-11-11 14:36:31 -05002051 wiphy_rfkill_set_hw_state(priv->ieee->wdev.wiphy, true);
James Ketrenos43f66a62005-03-25 12:31:53 -06002052 wake_up_interruptible(&priv->wait_command_queue);
James Ketrenosea2b26e2005-08-24 21:25:16 -05002053 priv->status &= ~(STATUS_ASSOCIATED | STATUS_ASSOCIATING);
James Ketrenos43f66a62005-03-25 12:31:53 -06002054 cancel_delayed_work(&priv->request_scan);
Dan Williamsea177302008-06-02 17:51:23 -04002055 cancel_delayed_work(&priv->request_direct_scan);
2056 cancel_delayed_work(&priv->request_passive_scan);
Dan Williams0b531672007-10-09 13:55:24 -04002057 cancel_delayed_work(&priv->scan_event);
James Ketrenosa613bff2005-08-24 21:43:11 -05002058 schedule_work(&priv->link_down);
James Ketrenos43f66a62005-03-25 12:31:53 -06002059 queue_delayed_work(priv->workqueue, &priv->rf_kill, 2 * HZ);
James Ketrenosb095c382005-08-24 22:04:42 -05002060 handled |= IPW_INTA_BIT_RF_KILL_DONE;
James Ketrenos43f66a62005-03-25 12:31:53 -06002061 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002062
James Ketrenosb095c382005-08-24 22:04:42 -05002063 if (inta & IPW_INTA_BIT_FATAL_ERROR) {
Zhu Yi1d1b09e2006-03-02 06:40:59 +08002064 IPW_WARNING("Firmware error detected. Restarting.\n");
James Ketrenosb39860c2005-08-12 09:36:32 -05002065 if (priv->error) {
Zhu Yi1d1b09e2006-03-02 06:40:59 +08002066 IPW_DEBUG_FW("Sysfs 'error' log already exists.\n");
James Ketrenosb39860c2005-08-12 09:36:32 -05002067 if (ipw_debug_level & IPW_DL_FW_ERRORS) {
2068 struct ipw_fw_error *error =
2069 ipw_alloc_error_log(priv);
2070 ipw_dump_error_log(priv, error);
Jesper Juhl8f760782006-06-27 02:55:06 -07002071 kfree(error);
James Ketrenosb39860c2005-08-12 09:36:32 -05002072 }
James Ketrenosb39860c2005-08-12 09:36:32 -05002073 } else {
2074 priv->error = ipw_alloc_error_log(priv);
2075 if (priv->error)
Zhu Yi1d1b09e2006-03-02 06:40:59 +08002076 IPW_DEBUG_FW("Sysfs 'error' log captured.\n");
James Ketrenosb39860c2005-08-12 09:36:32 -05002077 else
Zhu Yi1d1b09e2006-03-02 06:40:59 +08002078 IPW_DEBUG_FW("Error allocating sysfs 'error' "
2079 "log.\n");
James Ketrenosb39860c2005-08-12 09:36:32 -05002080 if (ipw_debug_level & IPW_DL_FW_ERRORS)
2081 ipw_dump_error_log(priv, priv->error);
James Ketrenosb39860c2005-08-12 09:36:32 -05002082 }
2083
James Ketrenosb095c382005-08-24 22:04:42 -05002084 /* XXX: If hardware encryption is for WPA/WPA2,
2085 * we have to notify the supplicant. */
2086 if (priv->ieee->sec.encrypt) {
2087 priv->status &= ~STATUS_ASSOCIATED;
2088 notify_wx_assoc_event(priv);
2089 }
2090
2091 /* Keep the restart process from trying to send host
2092 * commands by clearing the INIT status bit */
2093 priv->status &= ~STATUS_INIT;
James Ketrenosafbf30a2005-08-25 00:05:33 -05002094
2095 /* Cancel currently queued command. */
2096 priv->status &= ~STATUS_HCMD_ACTIVE;
2097 wake_up_interruptible(&priv->wait_command_queue);
2098
James Ketrenos43f66a62005-03-25 12:31:53 -06002099 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenosb095c382005-08-24 22:04:42 -05002100 handled |= IPW_INTA_BIT_FATAL_ERROR;
James Ketrenos43f66a62005-03-25 12:31:53 -06002101 }
2102
James Ketrenosb095c382005-08-24 22:04:42 -05002103 if (inta & IPW_INTA_BIT_PARITY_ERROR) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002104 IPW_ERROR("Parity error\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002105 handled |= IPW_INTA_BIT_PARITY_ERROR;
James Ketrenos43f66a62005-03-25 12:31:53 -06002106 }
2107
2108 if (handled != inta) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002109 IPW_ERROR("Unhandled INTA bits 0x%08x\n", inta & ~handled);
James Ketrenos43f66a62005-03-25 12:31:53 -06002110 }
2111
Zhu Yi89c318e2006-06-08 22:19:49 -07002112 spin_unlock_irqrestore(&priv->lock, flags);
2113
James Ketrenos43f66a62005-03-25 12:31:53 -06002114 /* enable all interrupts */
2115 ipw_enable_interrupts(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06002116}
Jeff Garzikbf794512005-07-31 13:07:26 -04002117
James Ketrenos43f66a62005-03-25 12:31:53 -06002118#define IPW_CMD(x) case IPW_CMD_ ## x : return #x
2119static char *get_cmd_string(u8 cmd)
2120{
2121 switch (cmd) {
2122 IPW_CMD(HOST_COMPLETE);
Jeff Garzikbf794512005-07-31 13:07:26 -04002123 IPW_CMD(POWER_DOWN);
2124 IPW_CMD(SYSTEM_CONFIG);
2125 IPW_CMD(MULTICAST_ADDRESS);
2126 IPW_CMD(SSID);
2127 IPW_CMD(ADAPTER_ADDRESS);
2128 IPW_CMD(PORT_TYPE);
2129 IPW_CMD(RTS_THRESHOLD);
2130 IPW_CMD(FRAG_THRESHOLD);
2131 IPW_CMD(POWER_MODE);
2132 IPW_CMD(WEP_KEY);
2133 IPW_CMD(TGI_TX_KEY);
2134 IPW_CMD(SCAN_REQUEST);
2135 IPW_CMD(SCAN_REQUEST_EXT);
2136 IPW_CMD(ASSOCIATE);
2137 IPW_CMD(SUPPORTED_RATES);
2138 IPW_CMD(SCAN_ABORT);
2139 IPW_CMD(TX_FLUSH);
2140 IPW_CMD(QOS_PARAMETERS);
2141 IPW_CMD(DINO_CONFIG);
2142 IPW_CMD(RSN_CAPABILITIES);
2143 IPW_CMD(RX_KEY);
2144 IPW_CMD(CARD_DISABLE);
2145 IPW_CMD(SEED_NUMBER);
2146 IPW_CMD(TX_POWER);
2147 IPW_CMD(COUNTRY_INFO);
2148 IPW_CMD(AIRONET_INFO);
2149 IPW_CMD(AP_TX_POWER);
2150 IPW_CMD(CCKM_INFO);
2151 IPW_CMD(CCX_VER_INFO);
2152 IPW_CMD(SET_CALIBRATION);
2153 IPW_CMD(SENSITIVITY_CALIB);
2154 IPW_CMD(RETRY_LIMIT);
2155 IPW_CMD(IPW_PRE_POWER_DOWN);
2156 IPW_CMD(VAP_BEACON_TEMPLATE);
2157 IPW_CMD(VAP_DTIM_PERIOD);
2158 IPW_CMD(EXT_SUPPORTED_RATES);
2159 IPW_CMD(VAP_LOCAL_TX_PWR_CONSTRAINT);
2160 IPW_CMD(VAP_QUIET_INTERVALS);
2161 IPW_CMD(VAP_CHANNEL_SWITCH);
2162 IPW_CMD(VAP_MANDATORY_CHANNELS);
2163 IPW_CMD(VAP_CELL_PWR_LIMIT);
2164 IPW_CMD(VAP_CF_PARAM_SET);
2165 IPW_CMD(VAP_SET_BEACONING_STATE);
2166 IPW_CMD(MEASUREMENT);
2167 IPW_CMD(POWER_CAPABILITY);
2168 IPW_CMD(SUPPORTED_CHANNELS);
2169 IPW_CMD(TPC_REPORT);
2170 IPW_CMD(WME_INFO);
2171 IPW_CMD(PRODUCTION_COMMAND);
2172 default:
James Ketrenos43f66a62005-03-25 12:31:53 -06002173 return "UNKNOWN";
2174 }
2175}
James Ketrenos43f66a62005-03-25 12:31:53 -06002176
2177#define HOST_COMPLETE_TIMEOUT HZ
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002178
2179static int __ipw_send_cmd(struct ipw_priv *priv, struct host_cmd *cmd)
James Ketrenos43f66a62005-03-25 12:31:53 -06002180{
2181 int rc = 0;
James Ketrenosa613bff2005-08-24 21:43:11 -05002182 unsigned long flags;
James Ketrenos43f66a62005-03-25 12:31:53 -06002183
James Ketrenosa613bff2005-08-24 21:43:11 -05002184 spin_lock_irqsave(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06002185 if (priv->status & STATUS_HCMD_ACTIVE) {
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002186 IPW_ERROR("Failed to send %s: Already sending a command.\n",
2187 get_cmd_string(cmd->cmd));
James Ketrenosa613bff2005-08-24 21:43:11 -05002188 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002189 return -EAGAIN;
James Ketrenos43f66a62005-03-25 12:31:53 -06002190 }
2191
2192 priv->status |= STATUS_HCMD_ACTIVE;
Jeff Garzikbf794512005-07-31 13:07:26 -04002193
James Ketrenosf6c5cb72005-08-25 00:39:09 -05002194 if (priv->cmdlog) {
2195 priv->cmdlog[priv->cmdlog_pos].jiffies = jiffies;
2196 priv->cmdlog[priv->cmdlog_pos].cmd.cmd = cmd->cmd;
2197 priv->cmdlog[priv->cmdlog_pos].cmd.len = cmd->len;
2198 memcpy(priv->cmdlog[priv->cmdlog_pos].cmd.param, cmd->param,
2199 cmd->len);
2200 priv->cmdlog[priv->cmdlog_pos].retcode = -1;
2201 }
2202
James Ketrenosb095c382005-08-24 22:04:42 -05002203 IPW_DEBUG_HC("%s command (#%d) %d bytes: 0x%08X\n",
2204 get_cmd_string(cmd->cmd), cmd->cmd, cmd->len,
2205 priv->status);
Zhu Yif516dbc2006-01-24 16:36:44 +08002206
2207#ifndef DEBUG_CMD_WEP_KEY
2208 if (cmd->cmd == IPW_CMD_WEP_KEY)
2209 IPW_DEBUG_HC("WEP_KEY command masked out for secure.\n");
2210 else
2211#endif
2212 printk_buf(IPW_DL_HOST_COMMAND, (u8 *) cmd->param, cmd->len);
2213
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002214 rc = ipw_queue_tx_hcmd(priv, cmd->cmd, cmd->param, cmd->len, 0);
James Ketrenosa613bff2005-08-24 21:43:11 -05002215 if (rc) {
2216 priv->status &= ~STATUS_HCMD_ACTIVE;
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002217 IPW_ERROR("Failed to send %s: Reason %d\n",
2218 get_cmd_string(cmd->cmd), rc);
James Ketrenosa613bff2005-08-24 21:43:11 -05002219 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenosf6c5cb72005-08-25 00:39:09 -05002220 goto exit;
James Ketrenosa613bff2005-08-24 21:43:11 -05002221 }
2222 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06002223
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002224 rc = wait_event_interruptible_timeout(priv->wait_command_queue,
2225 !(priv->
2226 status & STATUS_HCMD_ACTIVE),
2227 HOST_COMPLETE_TIMEOUT);
James Ketrenos43f66a62005-03-25 12:31:53 -06002228 if (rc == 0) {
James Ketrenosa613bff2005-08-24 21:43:11 -05002229 spin_lock_irqsave(&priv->lock, flags);
2230 if (priv->status & STATUS_HCMD_ACTIVE) {
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002231 IPW_ERROR("Failed to send %s: Command timed out.\n",
2232 get_cmd_string(cmd->cmd));
James Ketrenosa613bff2005-08-24 21:43:11 -05002233 priv->status &= ~STATUS_HCMD_ACTIVE;
2234 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenosf6c5cb72005-08-25 00:39:09 -05002235 rc = -EIO;
2236 goto exit;
James Ketrenosa613bff2005-08-24 21:43:11 -05002237 }
2238 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos3b9990c2005-08-19 13:18:55 -05002239 } else
2240 rc = 0;
James Ketrenosa613bff2005-08-24 21:43:11 -05002241
James Ketrenosb095c382005-08-24 22:04:42 -05002242 if (priv->status & STATUS_RF_KILL_HW) {
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002243 IPW_ERROR("Failed to send %s: Aborted due to RF kill switch.\n",
2244 get_cmd_string(cmd->cmd));
James Ketrenosf6c5cb72005-08-25 00:39:09 -05002245 rc = -EIO;
2246 goto exit;
James Ketrenos43f66a62005-03-25 12:31:53 -06002247 }
2248
Zhu Yi2638bc32006-01-24 16:37:52 +08002249 exit:
James Ketrenosf6c5cb72005-08-25 00:39:09 -05002250 if (priv->cmdlog) {
2251 priv->cmdlog[priv->cmdlog_pos++].retcode = rc;
2252 priv->cmdlog_pos %= priv->cmdlog_len;
2253 }
2254 return rc;
James Ketrenos43f66a62005-03-25 12:31:53 -06002255}
2256
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002257static int ipw_send_cmd_simple(struct ipw_priv *priv, u8 command)
James Ketrenos43f66a62005-03-25 12:31:53 -06002258{
2259 struct host_cmd cmd = {
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002260 .cmd = command,
James Ketrenos43f66a62005-03-25 12:31:53 -06002261 };
2262
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002263 return __ipw_send_cmd(priv, &cmd);
2264}
2265
2266static int ipw_send_cmd_pdu(struct ipw_priv *priv, u8 command, u8 len,
2267 void *data)
2268{
2269 struct host_cmd cmd = {
2270 .cmd = command,
2271 .len = len,
2272 .param = data,
2273 };
2274
2275 return __ipw_send_cmd(priv, &cmd);
2276}
2277
2278static int ipw_send_host_complete(struct ipw_priv *priv)
2279{
James Ketrenos43f66a62005-03-25 12:31:53 -06002280 if (!priv) {
2281 IPW_ERROR("Invalid args\n");
2282 return -1;
2283 }
2284
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002285 return ipw_send_cmd_simple(priv, IPW_CMD_HOST_COMPLETE);
James Ketrenos43f66a62005-03-25 12:31:53 -06002286}
2287
Zhu Yid685b8c2006-04-13 17:20:27 +08002288static int ipw_send_system_config(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002289{
Zhu Yid685b8c2006-04-13 17:20:27 +08002290 return ipw_send_cmd_pdu(priv, IPW_CMD_SYSTEM_CONFIG,
2291 sizeof(priv->sys_config),
2292 &priv->sys_config);
James Ketrenos43f66a62005-03-25 12:31:53 -06002293}
2294
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002295static int ipw_send_ssid(struct ipw_priv *priv, u8 * ssid, int len)
James Ketrenos43f66a62005-03-25 12:31:53 -06002296{
James Ketrenos43f66a62005-03-25 12:31:53 -06002297 if (!priv || !ssid) {
2298 IPW_ERROR("Invalid args\n");
2299 return -1;
2300 }
2301
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002302 return ipw_send_cmd_pdu(priv, IPW_CMD_SSID, min(len, IW_ESSID_MAX_SIZE),
Zhu Yi2638bc32006-01-24 16:37:52 +08002303 ssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06002304}
2305
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002306static int ipw_send_adapter_address(struct ipw_priv *priv, u8 * mac)
James Ketrenos43f66a62005-03-25 12:31:53 -06002307{
James Ketrenos43f66a62005-03-25 12:31:53 -06002308 if (!priv || !mac) {
2309 IPW_ERROR("Invalid args\n");
2310 return -1;
2311 }
2312
Johannes Berge1749612008-10-27 15:59:26 -07002313 IPW_DEBUG_INFO("%s: Setting MAC to %pM\n",
2314 priv->net_dev->name, mac);
James Ketrenos43f66a62005-03-25 12:31:53 -06002315
Zhu Yi2638bc32006-01-24 16:37:52 +08002316 return ipw_send_cmd_pdu(priv, IPW_CMD_ADAPTER_ADDRESS, ETH_ALEN, mac);
James Ketrenos43f66a62005-03-25 12:31:53 -06002317}
2318
James Ketrenosa613bff2005-08-24 21:43:11 -05002319/*
2320 * NOTE: This must be executed from our workqueue as it results in udelay
2321 * being called which may corrupt the keyboard if executed on default
2322 * workqueue
2323 */
James Ketrenos43f66a62005-03-25 12:31:53 -06002324static void ipw_adapter_restart(void *adapter)
2325{
2326 struct ipw_priv *priv = adapter;
2327
2328 if (priv->status & STATUS_RF_KILL_MASK)
2329 return;
2330
2331 ipw_down(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05002332
2333 if (priv->assoc_network &&
2334 (priv->assoc_network->capability & WLAN_CAPABILITY_IBSS))
2335 ipw_remove_current_network(priv);
2336
James Ketrenos43f66a62005-03-25 12:31:53 -06002337 if (ipw_up(priv)) {
2338 IPW_ERROR("Failed to up device\n");
2339 return;
2340 }
2341}
2342
David Howellsc4028952006-11-22 14:57:56 +00002343static void ipw_bg_adapter_restart(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -05002344{
David Howellsc4028952006-11-22 14:57:56 +00002345 struct ipw_priv *priv =
2346 container_of(work, struct ipw_priv, adapter_restart);
Zhu Yi46441512006-01-24 16:37:59 +08002347 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00002348 ipw_adapter_restart(priv);
Zhu Yi46441512006-01-24 16:37:59 +08002349 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05002350}
2351
Zhu Yie65054b2010-03-30 09:36:16 +08002352static void ipw_abort_scan(struct ipw_priv *priv);
2353
2354#define IPW_SCAN_CHECK_WATCHDOG (5 * HZ)
James Ketrenos43f66a62005-03-25 12:31:53 -06002355
2356static void ipw_scan_check(void *data)
2357{
2358 struct ipw_priv *priv = data;
Zhu Yie65054b2010-03-30 09:36:16 +08002359
2360 if (priv->status & STATUS_SCAN_ABORTING) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002361 IPW_DEBUG_SCAN("Scan completion watchdog resetting "
Zhu Yic7b6a672006-01-24 16:37:05 +08002362 "adapter after (%dms).\n",
2363 jiffies_to_msecs(IPW_SCAN_CHECK_WATCHDOG));
James Ketrenosa613bff2005-08-24 21:43:11 -05002364 queue_work(priv->workqueue, &priv->adapter_restart);
Zhu Yie65054b2010-03-30 09:36:16 +08002365 } else if (priv->status & STATUS_SCANNING) {
2366 IPW_DEBUG_SCAN("Scan completion watchdog aborting scan "
2367 "after (%dms).\n",
2368 jiffies_to_msecs(IPW_SCAN_CHECK_WATCHDOG));
2369 ipw_abort_scan(priv);
2370 queue_delayed_work(priv->workqueue, &priv->scan_check, HZ);
James Ketrenos43f66a62005-03-25 12:31:53 -06002371 }
2372}
2373
David Howellsc4028952006-11-22 14:57:56 +00002374static void ipw_bg_scan_check(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -05002375{
David Howellsc4028952006-11-22 14:57:56 +00002376 struct ipw_priv *priv =
2377 container_of(work, struct ipw_priv, scan_check.work);
Zhu Yi46441512006-01-24 16:37:59 +08002378 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00002379 ipw_scan_check(priv);
Zhu Yi46441512006-01-24 16:37:59 +08002380 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05002381}
2382
James Ketrenos43f66a62005-03-25 12:31:53 -06002383static int ipw_send_scan_request_ext(struct ipw_priv *priv,
2384 struct ipw_scan_request_ext *request)
2385{
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002386 return ipw_send_cmd_pdu(priv, IPW_CMD_SCAN_REQUEST_EXT,
Zhu Yi2638bc32006-01-24 16:37:52 +08002387 sizeof(*request), request);
James Ketrenos43f66a62005-03-25 12:31:53 -06002388}
2389
2390static int ipw_send_scan_abort(struct ipw_priv *priv)
2391{
James Ketrenos43f66a62005-03-25 12:31:53 -06002392 if (!priv) {
2393 IPW_ERROR("Invalid args\n");
2394 return -1;
2395 }
2396
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002397 return ipw_send_cmd_simple(priv, IPW_CMD_SCAN_ABORT);
James Ketrenos43f66a62005-03-25 12:31:53 -06002398}
2399
2400static int ipw_set_sensitivity(struct ipw_priv *priv, u16 sens)
2401{
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002402 struct ipw_sensitivity_calib calib = {
Zhu Yi851ca262006-08-21 11:37:58 +08002403 .beacon_rssi_raw = cpu_to_le16(sens),
James Ketrenos43f66a62005-03-25 12:31:53 -06002404 };
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002405
2406 return ipw_send_cmd_pdu(priv, IPW_CMD_SENSITIVITY_CALIB, sizeof(calib),
Zhu Yi2638bc32006-01-24 16:37:52 +08002407 &calib);
James Ketrenos43f66a62005-03-25 12:31:53 -06002408}
2409
2410static int ipw_send_associate(struct ipw_priv *priv,
2411 struct ipw_associate *associate)
2412{
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002413 if (!priv || !associate) {
2414 IPW_ERROR("Invalid args\n");
2415 return -1;
2416 }
2417
Al Viro5b5e8072007-12-27 01:54:06 -05002418 return ipw_send_cmd_pdu(priv, IPW_CMD_ASSOCIATE, sizeof(*associate),
2419 associate);
James Ketrenos43f66a62005-03-25 12:31:53 -06002420}
2421
2422static int ipw_send_supported_rates(struct ipw_priv *priv,
2423 struct ipw_supported_rates *rates)
2424{
James Ketrenos43f66a62005-03-25 12:31:53 -06002425 if (!priv || !rates) {
2426 IPW_ERROR("Invalid args\n");
2427 return -1;
2428 }
2429
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002430 return ipw_send_cmd_pdu(priv, IPW_CMD_SUPPORTED_RATES, sizeof(*rates),
Zhu Yi2638bc32006-01-24 16:37:52 +08002431 rates);
James Ketrenos43f66a62005-03-25 12:31:53 -06002432}
2433
2434static int ipw_set_random_seed(struct ipw_priv *priv)
2435{
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002436 u32 val;
James Ketrenos43f66a62005-03-25 12:31:53 -06002437
2438 if (!priv) {
2439 IPW_ERROR("Invalid args\n");
2440 return -1;
2441 }
2442
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002443 get_random_bytes(&val, sizeof(val));
James Ketrenos43f66a62005-03-25 12:31:53 -06002444
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002445 return ipw_send_cmd_pdu(priv, IPW_CMD_SEED_NUMBER, sizeof(val), &val);
James Ketrenos43f66a62005-03-25 12:31:53 -06002446}
2447
James Ketrenos43f66a62005-03-25 12:31:53 -06002448static int ipw_send_card_disable(struct ipw_priv *priv, u32 phy_off)
2449{
Al Viroe62e1ee2007-12-27 01:36:46 -05002450 __le32 v = cpu_to_le32(phy_off);
James Ketrenos43f66a62005-03-25 12:31:53 -06002451 if (!priv) {
2452 IPW_ERROR("Invalid args\n");
2453 return -1;
2454 }
2455
Al Viroe62e1ee2007-12-27 01:36:46 -05002456 return ipw_send_cmd_pdu(priv, IPW_CMD_CARD_DISABLE, sizeof(v), &v);
James Ketrenos43f66a62005-03-25 12:31:53 -06002457}
James Ketrenos43f66a62005-03-25 12:31:53 -06002458
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002459static int ipw_send_tx_power(struct ipw_priv *priv, struct ipw_tx_power *power)
James Ketrenos43f66a62005-03-25 12:31:53 -06002460{
James Ketrenos43f66a62005-03-25 12:31:53 -06002461 if (!priv || !power) {
2462 IPW_ERROR("Invalid args\n");
2463 return -1;
2464 }
2465
Zhu Yi2638bc32006-01-24 16:37:52 +08002466 return ipw_send_cmd_pdu(priv, IPW_CMD_TX_POWER, sizeof(*power), power);
James Ketrenos43f66a62005-03-25 12:31:53 -06002467}
James Ketrenos43f66a62005-03-25 12:31:53 -06002468
Zhu Yi6de9f7f2005-08-11 14:39:33 +08002469static int ipw_set_tx_power(struct ipw_priv *priv)
2470{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04002471 const struct libipw_geo *geo = libipw_get_geo(priv->ieee);
Zhu Yi6de9f7f2005-08-11 14:39:33 +08002472 struct ipw_tx_power tx_power;
2473 s8 max_power;
2474 int i;
2475
2476 memset(&tx_power, 0, sizeof(tx_power));
2477
2478 /* configure device for 'G' band */
2479 tx_power.ieee_mode = IPW_G_MODE;
2480 tx_power.num_channels = geo->bg_channels;
2481 for (i = 0; i < geo->bg_channels; i++) {
2482 max_power = geo->bg[i].max_power;
2483 tx_power.channels_tx_power[i].channel_number =
2484 geo->bg[i].channel;
2485 tx_power.channels_tx_power[i].tx_power = max_power ?
2486 min(max_power, priv->tx_power) : priv->tx_power;
2487 }
2488 if (ipw_send_tx_power(priv, &tx_power))
2489 return -EIO;
2490
2491 /* configure device to also handle 'B' band */
2492 tx_power.ieee_mode = IPW_B_MODE;
2493 if (ipw_send_tx_power(priv, &tx_power))
2494 return -EIO;
2495
2496 /* configure device to also handle 'A' band */
2497 if (priv->ieee->abg_true) {
2498 tx_power.ieee_mode = IPW_A_MODE;
2499 tx_power.num_channels = geo->a_channels;
2500 for (i = 0; i < tx_power.num_channels; i++) {
2501 max_power = geo->a[i].max_power;
2502 tx_power.channels_tx_power[i].channel_number =
2503 geo->a[i].channel;
2504 tx_power.channels_tx_power[i].tx_power = max_power ?
2505 min(max_power, priv->tx_power) : priv->tx_power;
2506 }
2507 if (ipw_send_tx_power(priv, &tx_power))
2508 return -EIO;
2509 }
James Ketrenos43f66a62005-03-25 12:31:53 -06002510 return 0;
2511}
2512
2513static int ipw_send_rts_threshold(struct ipw_priv *priv, u16 rts)
2514{
2515 struct ipw_rts_threshold rts_threshold = {
Zhu Yi851ca262006-08-21 11:37:58 +08002516 .rts_threshold = cpu_to_le16(rts),
James Ketrenos43f66a62005-03-25 12:31:53 -06002517 };
James Ketrenos43f66a62005-03-25 12:31:53 -06002518
2519 if (!priv) {
2520 IPW_ERROR("Invalid args\n");
2521 return -1;
2522 }
2523
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002524 return ipw_send_cmd_pdu(priv, IPW_CMD_RTS_THRESHOLD,
2525 sizeof(rts_threshold), &rts_threshold);
James Ketrenos43f66a62005-03-25 12:31:53 -06002526}
2527
2528static int ipw_send_frag_threshold(struct ipw_priv *priv, u16 frag)
2529{
2530 struct ipw_frag_threshold frag_threshold = {
Zhu Yi851ca262006-08-21 11:37:58 +08002531 .frag_threshold = cpu_to_le16(frag),
James Ketrenos43f66a62005-03-25 12:31:53 -06002532 };
James Ketrenos43f66a62005-03-25 12:31:53 -06002533
2534 if (!priv) {
2535 IPW_ERROR("Invalid args\n");
2536 return -1;
2537 }
2538
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002539 return ipw_send_cmd_pdu(priv, IPW_CMD_FRAG_THRESHOLD,
2540 sizeof(frag_threshold), &frag_threshold);
James Ketrenos43f66a62005-03-25 12:31:53 -06002541}
2542
2543static int ipw_send_power_mode(struct ipw_priv *priv, u32 mode)
2544{
Al Viroe62e1ee2007-12-27 01:36:46 -05002545 __le32 param;
James Ketrenos43f66a62005-03-25 12:31:53 -06002546
2547 if (!priv) {
2548 IPW_ERROR("Invalid args\n");
2549 return -1;
2550 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002551
James Ketrenos43f66a62005-03-25 12:31:53 -06002552 /* If on battery, set to 3, if AC set to CAM, else user
2553 * level */
2554 switch (mode) {
2555 case IPW_POWER_BATTERY:
Al Viroe62e1ee2007-12-27 01:36:46 -05002556 param = cpu_to_le32(IPW_POWER_INDEX_3);
James Ketrenos43f66a62005-03-25 12:31:53 -06002557 break;
2558 case IPW_POWER_AC:
Al Viroe62e1ee2007-12-27 01:36:46 -05002559 param = cpu_to_le32(IPW_POWER_MODE_CAM);
James Ketrenos43f66a62005-03-25 12:31:53 -06002560 break;
2561 default:
Al Viroe62e1ee2007-12-27 01:36:46 -05002562 param = cpu_to_le32(mode);
James Ketrenos43f66a62005-03-25 12:31:53 -06002563 break;
2564 }
2565
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002566 return ipw_send_cmd_pdu(priv, IPW_CMD_POWER_MODE, sizeof(param),
Zhu Yi2638bc32006-01-24 16:37:52 +08002567 &param);
James Ketrenos43f66a62005-03-25 12:31:53 -06002568}
2569
James Ketrenosafbf30a2005-08-25 00:05:33 -05002570static int ipw_send_retry_limit(struct ipw_priv *priv, u8 slimit, u8 llimit)
2571{
2572 struct ipw_retry_limit retry_limit = {
2573 .short_retry_limit = slimit,
2574 .long_retry_limit = llimit
2575 };
James Ketrenosafbf30a2005-08-25 00:05:33 -05002576
2577 if (!priv) {
2578 IPW_ERROR("Invalid args\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06002579 return -1;
2580 }
2581
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002582 return ipw_send_cmd_pdu(priv, IPW_CMD_RETRY_LIMIT, sizeof(retry_limit),
Zhu Yi2638bc32006-01-24 16:37:52 +08002583 &retry_limit);
James Ketrenos43f66a62005-03-25 12:31:53 -06002584}
2585
2586/*
2587 * The IPW device contains a Microwire compatible EEPROM that stores
2588 * various data like the MAC address. Usually the firmware has exclusive
2589 * access to the eeprom, but during device initialization (before the
2590 * device driver has sent the HostComplete command to the firmware) the
2591 * device driver has read access to the EEPROM by way of indirect addressing
2592 * through a couple of memory mapped registers.
2593 *
2594 * The following is a simplified implementation for pulling data out of the
2595 * the eeprom, along with some helper functions to find information in
2596 * the per device private data's copy of the eeprom.
2597 *
2598 * NOTE: To better understand how these functions work (i.e what is a chip
2599 * select and why do have to keep driving the eeprom clock?), read
2600 * just about any data sheet for a Microwire compatible EEPROM.
2601 */
2602
2603/* write a 32 bit value into the indirect accessor register */
2604static inline void eeprom_write_reg(struct ipw_priv *p, u32 data)
2605{
2606 ipw_write_reg32(p, FW_MEM_REG_EEPROM_ACCESS, data);
Jeff Garzikbf794512005-07-31 13:07:26 -04002607
James Ketrenos43f66a62005-03-25 12:31:53 -06002608 /* the eeprom requires some time to complete the operation */
2609 udelay(p->eeprom_delay);
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_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, 0);
2616 eeprom_write_reg(priv, EEPROM_BIT_CS);
2617 eeprom_write_reg(priv, EEPROM_BIT_CS | EEPROM_BIT_SK);
2618 eeprom_write_reg(priv, EEPROM_BIT_CS);
James Ketrenos43f66a62005-03-25 12:31:53 -06002619}
2620
2621/* perform a chip select operation */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002622static void eeprom_disable_cs(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002623{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002624 eeprom_write_reg(priv, EEPROM_BIT_CS);
2625 eeprom_write_reg(priv, 0);
2626 eeprom_write_reg(priv, EEPROM_BIT_SK);
James Ketrenos43f66a62005-03-25 12:31:53 -06002627}
2628
2629/* push a single bit down to the eeprom */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002630static inline void eeprom_write_bit(struct ipw_priv *p, u8 bit)
James Ketrenos43f66a62005-03-25 12:31:53 -06002631{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002632 int d = (bit ? EEPROM_BIT_DI : 0);
2633 eeprom_write_reg(p, EEPROM_BIT_CS | d);
2634 eeprom_write_reg(p, EEPROM_BIT_CS | d | EEPROM_BIT_SK);
James Ketrenos43f66a62005-03-25 12:31:53 -06002635}
2636
2637/* push an opcode followed by an address down to the eeprom */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002638static void eeprom_op(struct ipw_priv *priv, u8 op, u8 addr)
James Ketrenos43f66a62005-03-25 12:31:53 -06002639{
2640 int i;
2641
2642 eeprom_cs(priv);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002643 eeprom_write_bit(priv, 1);
2644 eeprom_write_bit(priv, op & 2);
2645 eeprom_write_bit(priv, op & 1);
2646 for (i = 7; i >= 0; i--) {
2647 eeprom_write_bit(priv, addr & (1 << i));
James Ketrenos43f66a62005-03-25 12:31:53 -06002648 }
2649}
2650
2651/* pull 16 bits off the eeprom, one bit at a time */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002652static u16 eeprom_read_u16(struct ipw_priv *priv, u8 addr)
James Ketrenos43f66a62005-03-25 12:31:53 -06002653{
2654 int i;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002655 u16 r = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04002656
James Ketrenos43f66a62005-03-25 12:31:53 -06002657 /* Send READ Opcode */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002658 eeprom_op(priv, EEPROM_CMD_READ, addr);
James Ketrenos43f66a62005-03-25 12:31:53 -06002659
2660 /* Send dummy bit */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002661 eeprom_write_reg(priv, EEPROM_BIT_CS);
James Ketrenos43f66a62005-03-25 12:31:53 -06002662
2663 /* Read the byte off the eeprom one bit at a time */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002664 for (i = 0; i < 16; i++) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002665 u32 data = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002666 eeprom_write_reg(priv, EEPROM_BIT_CS | EEPROM_BIT_SK);
2667 eeprom_write_reg(priv, EEPROM_BIT_CS);
2668 data = ipw_read_reg32(priv, FW_MEM_REG_EEPROM_ACCESS);
2669 r = (r << 1) | ((data & EEPROM_BIT_DO) ? 1 : 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002670 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002671
James Ketrenos43f66a62005-03-25 12:31:53 -06002672 /* Send another dummy bit */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002673 eeprom_write_reg(priv, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002674 eeprom_disable_cs(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -04002675
James Ketrenos43f66a62005-03-25 12:31:53 -06002676 return r;
2677}
2678
2679/* helper function for pulling the mac address out of the private */
2680/* data's copy of the eeprom data */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002681static void eeprom_parse_mac(struct ipw_priv *priv, u8 * mac)
James Ketrenos43f66a62005-03-25 12:31:53 -06002682{
James Ketrenosafbf30a2005-08-25 00:05:33 -05002683 memcpy(mac, &priv->eeprom[EEPROM_MAC_ADDRESS], 6);
James Ketrenos43f66a62005-03-25 12:31:53 -06002684}
2685
2686/*
2687 * Either the device driver (i.e. the host) or the firmware can
2688 * load eeprom data into the designated region in SRAM. If neither
2689 * happens then the FW will shutdown with a fatal error.
2690 *
2691 * In order to signal the FW to load the EEPROM, the EEPROM_LOAD_DISABLE
2692 * bit needs region of shared SRAM needs to be non-zero.
2693 */
2694static void ipw_eeprom_init_sram(struct ipw_priv *priv)
2695{
2696 int i;
Al Viroe62e1ee2007-12-27 01:36:46 -05002697 __le16 *eeprom = (__le16 *) priv->eeprom;
Jeff Garzikbf794512005-07-31 13:07:26 -04002698
James Ketrenos43f66a62005-03-25 12:31:53 -06002699 IPW_DEBUG_TRACE(">>\n");
2700
2701 /* read entire contents of eeprom into private buffer */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002702 for (i = 0; i < 128; i++)
Al Viroe62e1ee2007-12-27 01:36:46 -05002703 eeprom[i] = cpu_to_le16(eeprom_read_u16(priv, (u8) i));
James Ketrenos43f66a62005-03-25 12:31:53 -06002704
Jeff Garzikbf794512005-07-31 13:07:26 -04002705 /*
2706 If the data looks correct, then copy it to our private
James Ketrenos43f66a62005-03-25 12:31:53 -06002707 copy. Otherwise let the firmware know to perform the operation
Zhu Yic7b6a672006-01-24 16:37:05 +08002708 on its own.
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002709 */
Alexey Dobriyan386093e2006-02-01 03:04:57 -08002710 if (priv->eeprom[EEPROM_VERSION] != 0) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002711 IPW_DEBUG_INFO("Writing EEPROM data into SRAM\n");
2712
2713 /* write the eeprom data to sram */
James Ketrenosb095c382005-08-24 22:04:42 -05002714 for (i = 0; i < IPW_EEPROM_IMAGE_SIZE; i++)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002715 ipw_write8(priv, IPW_EEPROM_DATA + i, priv->eeprom[i]);
James Ketrenos43f66a62005-03-25 12:31:53 -06002716
2717 /* Do not load eeprom data on fatal error or suspend */
2718 ipw_write32(priv, IPW_EEPROM_LOAD_DISABLE, 0);
2719 } else {
2720 IPW_DEBUG_INFO("Enabling FW initializationg of SRAM\n");
2721
2722 /* Load eeprom data on fatal error or suspend */
2723 ipw_write32(priv, IPW_EEPROM_LOAD_DISABLE, 1);
2724 }
2725
2726 IPW_DEBUG_TRACE("<<\n");
2727}
2728
Arjan van de Ven858119e2006-01-14 13:20:43 -08002729static void ipw_zero_memory(struct ipw_priv *priv, u32 start, u32 count)
James Ketrenos43f66a62005-03-25 12:31:53 -06002730{
2731 count >>= 2;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002732 if (!count)
2733 return;
James Ketrenosb095c382005-08-24 22:04:42 -05002734 _ipw_write32(priv, IPW_AUTOINC_ADDR, start);
Jeff Garzikbf794512005-07-31 13:07:26 -04002735 while (count--)
James Ketrenosb095c382005-08-24 22:04:42 -05002736 _ipw_write32(priv, IPW_AUTOINC_DATA, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002737}
2738
2739static inline void ipw_fw_dma_reset_command_blocks(struct ipw_priv *priv)
2740{
James Ketrenosb095c382005-08-24 22:04:42 -05002741 ipw_zero_memory(priv, IPW_SHARED_SRAM_DMA_CONTROL,
Jeff Garzikbf794512005-07-31 13:07:26 -04002742 CB_NUMBER_OF_ELEMENTS_SMALL *
James Ketrenos43f66a62005-03-25 12:31:53 -06002743 sizeof(struct command_block));
2744}
2745
2746static int ipw_fw_dma_enable(struct ipw_priv *priv)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002747{ /* start dma engine but no transfers yet */
James Ketrenos43f66a62005-03-25 12:31:53 -06002748
Frans Pop9fd1ea42010-03-24 19:46:31 +01002749 IPW_DEBUG_FW(">> :\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04002750
James Ketrenos43f66a62005-03-25 12:31:53 -06002751 /* Start the dma */
2752 ipw_fw_dma_reset_command_blocks(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -04002753
James Ketrenos43f66a62005-03-25 12:31:53 -06002754 /* Write CB base address */
James Ketrenosb095c382005-08-24 22:04:42 -05002755 ipw_write_reg32(priv, IPW_DMA_I_CB_BASE, IPW_SHARED_SRAM_DMA_CONTROL);
James Ketrenos43f66a62005-03-25 12:31:53 -06002756
Frans Pop9fd1ea42010-03-24 19:46:31 +01002757 IPW_DEBUG_FW("<< :\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06002758 return 0;
2759}
2760
2761static void ipw_fw_dma_abort(struct ipw_priv *priv)
2762{
2763 u32 control = 0;
2764
2765 IPW_DEBUG_FW(">> :\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04002766
Pavel Machek67fd6b42006-07-11 15:34:05 +02002767 /* set the Stop and Abort bit */
James Ketrenos43f66a62005-03-25 12:31:53 -06002768 control = DMA_CONTROL_SMALL_CB_CONST_VALUE | DMA_CB_STOP_AND_ABORT;
James Ketrenosb095c382005-08-24 22:04:42 -05002769 ipw_write_reg32(priv, IPW_DMA_I_DMA_CONTROL, control);
James Ketrenos43f66a62005-03-25 12:31:53 -06002770 priv->sram_desc.last_cb_index = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04002771
Frans Pop9fd1ea42010-03-24 19:46:31 +01002772 IPW_DEBUG_FW("<<\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06002773}
2774
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002775static int ipw_fw_dma_write_command_block(struct ipw_priv *priv, int index,
2776 struct command_block *cb)
James Ketrenos43f66a62005-03-25 12:31:53 -06002777{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002778 u32 address =
James Ketrenosb095c382005-08-24 22:04:42 -05002779 IPW_SHARED_SRAM_DMA_CONTROL +
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002780 (sizeof(struct command_block) * index);
James Ketrenos43f66a62005-03-25 12:31:53 -06002781 IPW_DEBUG_FW(">> :\n");
2782
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002783 ipw_write_indirect(priv, address, (u8 *) cb,
2784 (int)sizeof(struct command_block));
James Ketrenos43f66a62005-03-25 12:31:53 -06002785
2786 IPW_DEBUG_FW("<< :\n");
2787 return 0;
2788
2789}
2790
2791static int ipw_fw_dma_kick(struct ipw_priv *priv)
2792{
2793 u32 control = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002794 u32 index = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06002795
2796 IPW_DEBUG_FW(">> :\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04002797
James Ketrenos43f66a62005-03-25 12:31:53 -06002798 for (index = 0; index < priv->sram_desc.last_cb_index; index++)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002799 ipw_fw_dma_write_command_block(priv, index,
2800 &priv->sram_desc.cb_list[index]);
James Ketrenos43f66a62005-03-25 12:31:53 -06002801
2802 /* Enable the DMA in the CSR register */
James Ketrenosb095c382005-08-24 22:04:42 -05002803 ipw_clear_bit(priv, IPW_RESET_REG,
2804 IPW_RESET_REG_MASTER_DISABLED |
2805 IPW_RESET_REG_STOP_MASTER);
Jeff Garzikbf794512005-07-31 13:07:26 -04002806
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002807 /* Set the Start bit. */
James Ketrenos43f66a62005-03-25 12:31:53 -06002808 control = DMA_CONTROL_SMALL_CB_CONST_VALUE | DMA_CB_START;
James Ketrenosb095c382005-08-24 22:04:42 -05002809 ipw_write_reg32(priv, IPW_DMA_I_DMA_CONTROL, control);
James Ketrenos43f66a62005-03-25 12:31:53 -06002810
2811 IPW_DEBUG_FW("<< :\n");
2812 return 0;
2813}
2814
2815static void ipw_fw_dma_dump_command_block(struct ipw_priv *priv)
2816{
2817 u32 address;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002818 u32 register_value = 0;
2819 u32 cb_fields_address = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06002820
2821 IPW_DEBUG_FW(">> :\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002822 address = ipw_read_reg32(priv, IPW_DMA_I_CURRENT_CB);
Frans Pop9fd1ea42010-03-24 19:46:31 +01002823 IPW_DEBUG_FW_INFO("Current CB is 0x%x\n", address);
James Ketrenos43f66a62005-03-25 12:31:53 -06002824
2825 /* Read the DMA Controlor register */
James Ketrenosb095c382005-08-24 22:04:42 -05002826 register_value = ipw_read_reg32(priv, IPW_DMA_I_DMA_CONTROL);
Frans Pop9fd1ea42010-03-24 19:46:31 +01002827 IPW_DEBUG_FW_INFO("IPW_DMA_I_DMA_CONTROL is 0x%x\n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002828
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002829 /* Print the CB values */
James Ketrenos43f66a62005-03-25 12:31:53 -06002830 cb_fields_address = address;
2831 register_value = ipw_read_reg32(priv, cb_fields_address);
Frans Pop9fd1ea42010-03-24 19:46:31 +01002832 IPW_DEBUG_FW_INFO("Current CB Control Field is 0x%x\n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002833
2834 cb_fields_address += sizeof(u32);
2835 register_value = ipw_read_reg32(priv, cb_fields_address);
Frans Pop9fd1ea42010-03-24 19:46:31 +01002836 IPW_DEBUG_FW_INFO("Current CB Source Field is 0x%x\n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002837
2838 cb_fields_address += sizeof(u32);
2839 register_value = ipw_read_reg32(priv, cb_fields_address);
Frans Pop9fd1ea42010-03-24 19:46:31 +01002840 IPW_DEBUG_FW_INFO("Current CB Destination Field is 0x%x\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06002841 register_value);
2842
2843 cb_fields_address += sizeof(u32);
2844 register_value = ipw_read_reg32(priv, cb_fields_address);
Frans Pop9fd1ea42010-03-24 19:46:31 +01002845 IPW_DEBUG_FW_INFO("Current CB Status Field is 0x%x\n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002846
2847 IPW_DEBUG_FW(">> :\n");
2848}
2849
2850static int ipw_fw_dma_command_block_index(struct ipw_priv *priv)
2851{
2852 u32 current_cb_address = 0;
2853 u32 current_cb_index = 0;
2854
2855 IPW_DEBUG_FW("<< :\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002856 current_cb_address = ipw_read_reg32(priv, IPW_DMA_I_CURRENT_CB);
Jeff Garzikbf794512005-07-31 13:07:26 -04002857
James Ketrenosb095c382005-08-24 22:04:42 -05002858 current_cb_index = (current_cb_address - IPW_SHARED_SRAM_DMA_CONTROL) /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002859 sizeof(struct command_block);
Jeff Garzikbf794512005-07-31 13:07:26 -04002860
Frans Pop9fd1ea42010-03-24 19:46:31 +01002861 IPW_DEBUG_FW_INFO("Current CB index 0x%x address = 0x%X\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002862 current_cb_index, current_cb_address);
James Ketrenos43f66a62005-03-25 12:31:53 -06002863
2864 IPW_DEBUG_FW(">> :\n");
2865 return current_cb_index;
2866
2867}
2868
2869static int ipw_fw_dma_add_command_block(struct ipw_priv *priv,
2870 u32 src_address,
2871 u32 dest_address,
2872 u32 length,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002873 int interrupt_enabled, int is_last)
James Ketrenos43f66a62005-03-25 12:31:53 -06002874{
2875
Jeff Garzikbf794512005-07-31 13:07:26 -04002876 u32 control = CB_VALID | CB_SRC_LE | CB_DEST_LE | CB_SRC_AUTOINC |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002877 CB_SRC_IO_GATED | CB_DEST_AUTOINC | CB_SRC_SIZE_LONG |
2878 CB_DEST_SIZE_LONG;
James Ketrenos43f66a62005-03-25 12:31:53 -06002879 struct command_block *cb;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002880 u32 last_cb_element = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06002881
2882 IPW_DEBUG_FW_INFO("src_address=0x%x dest_address=0x%x length=0x%x\n",
2883 src_address, dest_address, length);
2884
2885 if (priv->sram_desc.last_cb_index >= CB_NUMBER_OF_ELEMENTS_SMALL)
2886 return -1;
2887
2888 last_cb_element = priv->sram_desc.last_cb_index;
2889 cb = &priv->sram_desc.cb_list[last_cb_element];
2890 priv->sram_desc.last_cb_index++;
2891
2892 /* Calculate the new CB control word */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002893 if (interrupt_enabled)
James Ketrenos43f66a62005-03-25 12:31:53 -06002894 control |= CB_INT_ENABLED;
2895
2896 if (is_last)
2897 control |= CB_LAST_VALID;
Jeff Garzikbf794512005-07-31 13:07:26 -04002898
James Ketrenos43f66a62005-03-25 12:31:53 -06002899 control |= length;
2900
2901 /* Calculate the CB Element's checksum value */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002902 cb->status = control ^ src_address ^ dest_address;
James Ketrenos43f66a62005-03-25 12:31:53 -06002903
2904 /* Copy the Source and Destination addresses */
2905 cb->dest_addr = dest_address;
2906 cb->source_addr = src_address;
2907
2908 /* Copy the Control Word last */
2909 cb->control = control;
2910
2911 return 0;
2912}
2913
Zhu Yi11ebd1b2009-08-28 11:42:31 +08002914static int ipw_fw_dma_add_buffer(struct ipw_priv *priv, dma_addr_t *src_address,
2915 int nr, u32 dest_address, u32 len)
James Ketrenos43f66a62005-03-25 12:31:53 -06002916{
Zhu Yi11ebd1b2009-08-28 11:42:31 +08002917 int ret, i;
2918 u32 size;
2919
Frans Pop9fd1ea42010-03-24 19:46:31 +01002920 IPW_DEBUG_FW(">>\n");
Zhu Yi11ebd1b2009-08-28 11:42:31 +08002921 IPW_DEBUG_FW_INFO("nr=%d dest_address=0x%x len=0x%x\n",
2922 nr, dest_address, len);
2923
2924 for (i = 0; i < nr; i++) {
2925 size = min_t(u32, len - i * CB_MAX_LENGTH, CB_MAX_LENGTH);
2926 ret = ipw_fw_dma_add_command_block(priv, src_address[i],
2927 dest_address +
2928 i * CB_MAX_LENGTH, size,
2929 0, 0);
2930 if (ret) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002931 IPW_DEBUG_FW_INFO(": Failed\n");
2932 return -1;
Jeff Garzikbf794512005-07-31 13:07:26 -04002933 } else
James Ketrenos43f66a62005-03-25 12:31:53 -06002934 IPW_DEBUG_FW_INFO(": Added new cb\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06002935 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002936
Frans Pop9fd1ea42010-03-24 19:46:31 +01002937 IPW_DEBUG_FW("<<\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06002938 return 0;
2939}
2940
2941static int ipw_fw_dma_wait(struct ipw_priv *priv)
2942{
Zhu Yi397ae122006-01-24 16:37:22 +08002943 u32 current_index = 0, previous_index;
James Ketrenos43f66a62005-03-25 12:31:53 -06002944 u32 watchdog = 0;
2945
Frans Pop9fd1ea42010-03-24 19:46:31 +01002946 IPW_DEBUG_FW(">> :\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06002947
2948 current_index = ipw_fw_dma_command_block_index(priv);
Zhu Yi397ae122006-01-24 16:37:22 +08002949 IPW_DEBUG_FW_INFO("sram_desc.last_cb_index:0x%08X\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002950 (int)priv->sram_desc.last_cb_index);
James Ketrenos43f66a62005-03-25 12:31:53 -06002951
2952 while (current_index < priv->sram_desc.last_cb_index) {
2953 udelay(50);
Zhu Yi397ae122006-01-24 16:37:22 +08002954 previous_index = current_index;
James Ketrenos43f66a62005-03-25 12:31:53 -06002955 current_index = ipw_fw_dma_command_block_index(priv);
2956
Zhu Yi397ae122006-01-24 16:37:22 +08002957 if (previous_index < current_index) {
2958 watchdog = 0;
2959 continue;
2960 }
2961 if (++watchdog > 400) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002962 IPW_DEBUG_FW_INFO("Timeout\n");
2963 ipw_fw_dma_dump_command_block(priv);
2964 ipw_fw_dma_abort(priv);
2965 return -1;
2966 }
2967 }
2968
2969 ipw_fw_dma_abort(priv);
2970
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002971 /*Disable the DMA in the CSR register */
James Ketrenosb095c382005-08-24 22:04:42 -05002972 ipw_set_bit(priv, IPW_RESET_REG,
2973 IPW_RESET_REG_MASTER_DISABLED | IPW_RESET_REG_STOP_MASTER);
James Ketrenos43f66a62005-03-25 12:31:53 -06002974
Frans Pop9fd1ea42010-03-24 19:46:31 +01002975 IPW_DEBUG_FW("<< dmaWaitSync\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06002976 return 0;
2977}
2978
Jeff Garzikbf794512005-07-31 13:07:26 -04002979static void ipw_remove_current_network(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002980{
2981 struct list_head *element, *safe;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04002982 struct libipw_network *network = NULL;
James Ketrenosa613bff2005-08-24 21:43:11 -05002983 unsigned long flags;
2984
2985 spin_lock_irqsave(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06002986 list_for_each_safe(element, safe, &priv->ieee->network_list) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04002987 network = list_entry(element, struct libipw_network, list);
James Ketrenos43f66a62005-03-25 12:31:53 -06002988 if (!memcmp(network->bssid, priv->bssid, ETH_ALEN)) {
2989 list_del(element);
Jeff Garzikbf794512005-07-31 13:07:26 -04002990 list_add_tail(&network->list,
James Ketrenos43f66a62005-03-25 12:31:53 -06002991 &priv->ieee->network_free_list);
2992 }
2993 }
James Ketrenosa613bff2005-08-24 21:43:11 -05002994 spin_unlock_irqrestore(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06002995}
2996
2997/**
Jeff Garzikbf794512005-07-31 13:07:26 -04002998 * Check that card is still alive.
James Ketrenos43f66a62005-03-25 12:31:53 -06002999 * Reads debug register from domain0.
3000 * If card is present, pre-defined value should
3001 * be found there.
Jeff Garzikbf794512005-07-31 13:07:26 -04003002 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003003 * @param priv
3004 * @return 1 if card is present, 0 otherwise
3005 */
3006static inline int ipw_alive(struct ipw_priv *priv)
3007{
3008 return ipw_read32(priv, 0x90) == 0xd55555d5;
3009}
3010
Zhu Yic7b6a672006-01-24 16:37:05 +08003011/* timeout in msec, attempted in 10-msec quanta */
Arjan van de Ven858119e2006-01-14 13:20:43 -08003012static int ipw_poll_bit(struct ipw_priv *priv, u32 addr, u32 mask,
James Ketrenos43f66a62005-03-25 12:31:53 -06003013 int timeout)
3014{
3015 int i = 0;
3016
3017 do {
Jeff Garzikbf794512005-07-31 13:07:26 -04003018 if ((ipw_read32(priv, addr) & mask) == mask)
James Ketrenos43f66a62005-03-25 12:31:53 -06003019 return i;
3020 mdelay(10);
3021 i += 10;
3022 } while (i < timeout);
Jeff Garzikbf794512005-07-31 13:07:26 -04003023
James Ketrenos43f66a62005-03-25 12:31:53 -06003024 return -ETIME;
3025}
3026
Jeff Garzikbf794512005-07-31 13:07:26 -04003027/* These functions load the firmware and micro code for the operation of
James Ketrenos43f66a62005-03-25 12:31:53 -06003028 * the ipw hardware. It assumes the buffer has all the bits for the
3029 * image and the caller is handling the memory allocation and clean up.
3030 */
3031
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003032static int ipw_stop_master(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06003033{
3034 int rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04003035
Frans Pop9fd1ea42010-03-24 19:46:31 +01003036 IPW_DEBUG_TRACE(">>\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06003037 /* stop master. typical delay - 0 */
James Ketrenosb095c382005-08-24 22:04:42 -05003038 ipw_set_bit(priv, IPW_RESET_REG, IPW_RESET_REG_STOP_MASTER);
James Ketrenos43f66a62005-03-25 12:31:53 -06003039
Zhu Yic7b6a672006-01-24 16:37:05 +08003040 /* timeout is in msec, polled in 10-msec quanta */
James Ketrenosb095c382005-08-24 22:04:42 -05003041 rc = ipw_poll_bit(priv, IPW_RESET_REG,
3042 IPW_RESET_REG_MASTER_DISABLED, 100);
James Ketrenos43f66a62005-03-25 12:31:53 -06003043 if (rc < 0) {
Zhu Yic7b6a672006-01-24 16:37:05 +08003044 IPW_ERROR("wait for stop master failed after 100ms\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06003045 return -1;
3046 }
3047
3048 IPW_DEBUG_INFO("stop master %dms\n", rc);
3049
3050 return rc;
3051}
3052
3053static void ipw_arc_release(struct ipw_priv *priv)
3054{
Frans Pop9fd1ea42010-03-24 19:46:31 +01003055 IPW_DEBUG_TRACE(">>\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06003056 mdelay(5);
3057
James Ketrenosb095c382005-08-24 22:04:42 -05003058 ipw_clear_bit(priv, IPW_RESET_REG, CBD_RESET_REG_PRINCETON_RESET);
James Ketrenos43f66a62005-03-25 12:31:53 -06003059
3060 /* no one knows timing, for safety add some delay */
3061 mdelay(5);
3062}
3063
James Ketrenos43f66a62005-03-25 12:31:53 -06003064struct fw_chunk {
Al Viroe62e1ee2007-12-27 01:36:46 -05003065 __le32 address;
3066 __le32 length;
James Ketrenos43f66a62005-03-25 12:31:53 -06003067};
3068
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003069static int ipw_load_ucode(struct ipw_priv *priv, u8 * data, size_t len)
James Ketrenos43f66a62005-03-25 12:31:53 -06003070{
3071 int rc = 0, i, addr;
3072 u8 cr = 0;
Al Viroe62e1ee2007-12-27 01:36:46 -05003073 __le16 *image;
James Ketrenos43f66a62005-03-25 12:31:53 -06003074
Al Viroe62e1ee2007-12-27 01:36:46 -05003075 image = (__le16 *) data;
Jeff Garzikbf794512005-07-31 13:07:26 -04003076
Frans Pop9fd1ea42010-03-24 19:46:31 +01003077 IPW_DEBUG_TRACE(">>\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06003078
3079 rc = ipw_stop_master(priv);
3080
3081 if (rc < 0)
3082 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04003083
James Ketrenosb095c382005-08-24 22:04:42 -05003084 for (addr = IPW_SHARED_LOWER_BOUND;
3085 addr < IPW_REGISTER_DOMAIN1_END; addr += 4) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003086 ipw_write32(priv, addr, 0);
3087 }
3088
3089 /* no ucode (yet) */
3090 memset(&priv->dino_alive, 0, sizeof(priv->dino_alive));
3091 /* destroy DMA queues */
3092 /* reset sequence */
3093
James Ketrenosb095c382005-08-24 22:04:42 -05003094 ipw_write_reg32(priv, IPW_MEM_HALT_AND_RESET, IPW_BIT_HALT_RESET_ON);
James Ketrenos43f66a62005-03-25 12:31:53 -06003095 ipw_arc_release(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05003096 ipw_write_reg32(priv, IPW_MEM_HALT_AND_RESET, IPW_BIT_HALT_RESET_OFF);
James Ketrenos43f66a62005-03-25 12:31:53 -06003097 mdelay(1);
3098
3099 /* reset PHY */
James Ketrenosb095c382005-08-24 22:04:42 -05003100 ipw_write_reg32(priv, IPW_INTERNAL_CMD_EVENT, IPW_BASEBAND_POWER_DOWN);
James Ketrenos43f66a62005-03-25 12:31:53 -06003101 mdelay(1);
Jeff Garzikbf794512005-07-31 13:07:26 -04003102
James Ketrenosb095c382005-08-24 22:04:42 -05003103 ipw_write_reg32(priv, IPW_INTERNAL_CMD_EVENT, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06003104 mdelay(1);
Jeff Garzikbf794512005-07-31 13:07:26 -04003105
James Ketrenos43f66a62005-03-25 12:31:53 -06003106 /* enable ucode store */
Zhu Yic8fe6672006-01-24 16:36:36 +08003107 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, 0x0);
3108 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, DINO_ENABLE_CS);
James Ketrenos43f66a62005-03-25 12:31:53 -06003109 mdelay(1);
3110
3111 /* write ucode */
3112 /**
3113 * @bug
3114 * Do NOT set indirect address register once and then
3115 * store data to indirect data register in the loop.
3116 * It seems very reasonable, but in this case DINO do not
3117 * accept ucode. It is essential to set address each time.
3118 */
3119 /* load new ipw uCode */
3120 for (i = 0; i < len / 2; i++)
James Ketrenosb095c382005-08-24 22:04:42 -05003121 ipw_write_reg16(priv, IPW_BASEBAND_CONTROL_STORE,
Al Viroe62e1ee2007-12-27 01:36:46 -05003122 le16_to_cpu(image[i]));
James Ketrenos43f66a62005-03-25 12:31:53 -06003123
James Ketrenos43f66a62005-03-25 12:31:53 -06003124 /* enable DINO */
James Ketrenosb095c382005-08-24 22:04:42 -05003125 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, 0);
3126 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, DINO_ENABLE_SYSTEM);
James Ketrenos43f66a62005-03-25 12:31:53 -06003127
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003128 /* this is where the igx / win driver deveates from the VAP driver. */
James Ketrenos43f66a62005-03-25 12:31:53 -06003129
3130 /* wait for alive response */
3131 for (i = 0; i < 100; i++) {
3132 /* poll for incoming data */
James Ketrenosb095c382005-08-24 22:04:42 -05003133 cr = ipw_read_reg8(priv, IPW_BASEBAND_CONTROL_STATUS);
James Ketrenos43f66a62005-03-25 12:31:53 -06003134 if (cr & DINO_RXFIFO_DATA)
3135 break;
3136 mdelay(1);
3137 }
3138
3139 if (cr & DINO_RXFIFO_DATA) {
3140 /* alive_command_responce size is NOT multiple of 4 */
Al Viroe62e1ee2007-12-27 01:36:46 -05003141 __le32 response_buffer[(sizeof(priv->dino_alive) + 3) / 4];
Jeff Garzikbf794512005-07-31 13:07:26 -04003142
3143 for (i = 0; i < ARRAY_SIZE(response_buffer); i++)
James Ketrenos43f66a62005-03-25 12:31:53 -06003144 response_buffer[i] =
Al Viroe62e1ee2007-12-27 01:36:46 -05003145 cpu_to_le32(ipw_read_reg32(priv,
James Ketrenosb095c382005-08-24 22:04:42 -05003146 IPW_BASEBAND_RX_FIFO_READ));
James Ketrenos43f66a62005-03-25 12:31:53 -06003147 memcpy(&priv->dino_alive, response_buffer,
3148 sizeof(priv->dino_alive));
3149 if (priv->dino_alive.alive_command == 1
3150 && priv->dino_alive.ucode_valid == 1) {
3151 rc = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003152 IPW_DEBUG_INFO
3153 ("Microcode OK, rev. %d (0x%x) dev. %d (0x%x) "
3154 "of %02d/%02d/%02d %02d:%02d\n",
3155 priv->dino_alive.software_revision,
3156 priv->dino_alive.software_revision,
3157 priv->dino_alive.device_identifier,
3158 priv->dino_alive.device_identifier,
3159 priv->dino_alive.time_stamp[0],
3160 priv->dino_alive.time_stamp[1],
3161 priv->dino_alive.time_stamp[2],
3162 priv->dino_alive.time_stamp[3],
3163 priv->dino_alive.time_stamp[4]);
James Ketrenos43f66a62005-03-25 12:31:53 -06003164 } else {
3165 IPW_DEBUG_INFO("Microcode is not alive\n");
3166 rc = -EINVAL;
3167 }
3168 } else {
3169 IPW_DEBUG_INFO("No alive response from DINO\n");
3170 rc = -ETIME;
3171 }
3172
3173 /* disable DINO, otherwise for some reason
3174 firmware have problem getting alive resp. */
James Ketrenosb095c382005-08-24 22:04:42 -05003175 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06003176
James Ketrenos43f66a62005-03-25 12:31:53 -06003177 return rc;
3178}
3179
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003180static int ipw_load_firmware(struct ipw_priv *priv, u8 * data, size_t len)
James Ketrenos43f66a62005-03-25 12:31:53 -06003181{
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003182 int ret = -1;
James Ketrenos43f66a62005-03-25 12:31:53 -06003183 int offset = 0;
3184 struct fw_chunk *chunk;
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003185 int total_nr = 0;
3186 int i;
3187 struct pci_pool *pool;
Zhu Yi41093162010-03-09 16:05:31 +08003188 void **virts;
3189 dma_addr_t *phys;
James Ketrenos43f66a62005-03-25 12:31:53 -06003190
Frans Pop9fd1ea42010-03-24 19:46:31 +01003191 IPW_DEBUG_TRACE("<< :\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06003192
Zhu Yi41093162010-03-09 16:05:31 +08003193 virts = kmalloc(sizeof(void *) * CB_NUMBER_OF_ELEMENTS_SMALL,
3194 GFP_KERNEL);
3195 if (!virts)
3196 return -ENOMEM;
3197
3198 phys = kmalloc(sizeof(dma_addr_t) * CB_NUMBER_OF_ELEMENTS_SMALL,
3199 GFP_KERNEL);
3200 if (!phys) {
3201 kfree(virts);
3202 return -ENOMEM;
3203 }
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003204 pool = pci_pool_create("ipw2200", priv->pci_dev, CB_MAX_LENGTH, 0, 0);
3205 if (!pool) {
3206 IPW_ERROR("pci_pool_create failed\n");
Zhu Yi41093162010-03-09 16:05:31 +08003207 kfree(phys);
3208 kfree(virts);
James Ketrenos43f66a62005-03-25 12:31:53 -06003209 return -ENOMEM;
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003210 }
James Ketrenos43f66a62005-03-25 12:31:53 -06003211
3212 /* Start the Dma */
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003213 ret = ipw_fw_dma_enable(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06003214
Alexander Beregalov0ee904c2009-04-11 14:50:23 +00003215 /* the DMA is already ready this would be a bug. */
3216 BUG_ON(priv->sram_desc.last_cb_index > 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06003217
3218 do {
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003219 u32 chunk_len;
3220 u8 *start;
3221 int size;
3222 int nr = 0;
3223
James Ketrenos43f66a62005-03-25 12:31:53 -06003224 chunk = (struct fw_chunk *)(data + offset);
3225 offset += sizeof(struct fw_chunk);
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003226 chunk_len = le32_to_cpu(chunk->length);
3227 start = data + offset;
3228
3229 nr = (chunk_len + CB_MAX_LENGTH - 1) / CB_MAX_LENGTH;
3230 for (i = 0; i < nr; i++) {
3231 virts[total_nr] = pci_pool_alloc(pool, GFP_KERNEL,
3232 &phys[total_nr]);
3233 if (!virts[total_nr]) {
3234 ret = -ENOMEM;
3235 goto out;
3236 }
3237 size = min_t(u32, chunk_len - i * CB_MAX_LENGTH,
3238 CB_MAX_LENGTH);
3239 memcpy(virts[total_nr], start, size);
3240 start += size;
3241 total_nr++;
3242 /* We don't support fw chunk larger than 64*8K */
3243 BUG_ON(total_nr > CB_NUMBER_OF_ELEMENTS_SMALL);
3244 }
3245
James Ketrenos43f66a62005-03-25 12:31:53 -06003246 /* build DMA packet and queue up for sending */
Jeff Garzikbf794512005-07-31 13:07:26 -04003247 /* dma to chunk->address, the chunk->length bytes from data +
James Ketrenos43f66a62005-03-25 12:31:53 -06003248 * offeset*/
3249 /* Dma loading */
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003250 ret = ipw_fw_dma_add_buffer(priv, &phys[total_nr - nr],
3251 nr, le32_to_cpu(chunk->address),
3252 chunk_len);
3253 if (ret) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003254 IPW_DEBUG_INFO("dmaAddBuffer Failed\n");
3255 goto out;
3256 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003257
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003258 offset += chunk_len;
James Ketrenos43f66a62005-03-25 12:31:53 -06003259 } while (offset < len);
3260
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003261 /* Run the DMA and wait for the answer */
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003262 ret = ipw_fw_dma_kick(priv);
3263 if (ret) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003264 IPW_ERROR("dmaKick Failed\n");
3265 goto out;
3266 }
3267
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003268 ret = ipw_fw_dma_wait(priv);
3269 if (ret) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003270 IPW_ERROR("dmaWaitSync Failed\n");
3271 goto out;
3272 }
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003273 out:
3274 for (i = 0; i < total_nr; i++)
3275 pci_pool_free(pool, virts[i], phys[i]);
3276
3277 pci_pool_destroy(pool);
Zhu Yi41093162010-03-09 16:05:31 +08003278 kfree(phys);
3279 kfree(virts);
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003280
3281 return ret;
James Ketrenos43f66a62005-03-25 12:31:53 -06003282}
3283
3284/* stop nic */
3285static int ipw_stop_nic(struct ipw_priv *priv)
3286{
3287 int rc = 0;
3288
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003289 /* stop */
James Ketrenosb095c382005-08-24 22:04:42 -05003290 ipw_write32(priv, IPW_RESET_REG, IPW_RESET_REG_STOP_MASTER);
Jeff Garzikbf794512005-07-31 13:07:26 -04003291
James Ketrenosb095c382005-08-24 22:04:42 -05003292 rc = ipw_poll_bit(priv, IPW_RESET_REG,
3293 IPW_RESET_REG_MASTER_DISABLED, 500);
James Ketrenos43f66a62005-03-25 12:31:53 -06003294 if (rc < 0) {
Zhu Yic7b6a672006-01-24 16:37:05 +08003295 IPW_ERROR("wait for reg master disabled failed after 500ms\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06003296 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04003297 }
James Ketrenos43f66a62005-03-25 12:31:53 -06003298
James Ketrenosb095c382005-08-24 22:04:42 -05003299 ipw_set_bit(priv, IPW_RESET_REG, CBD_RESET_REG_PRINCETON_RESET);
Jeff Garzikbf794512005-07-31 13:07:26 -04003300
James Ketrenos43f66a62005-03-25 12:31:53 -06003301 return rc;
3302}
3303
3304static void ipw_start_nic(struct ipw_priv *priv)
3305{
3306 IPW_DEBUG_TRACE(">>\n");
3307
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003308 /* prvHwStartNic release ARC */
James Ketrenosb095c382005-08-24 22:04:42 -05003309 ipw_clear_bit(priv, IPW_RESET_REG,
3310 IPW_RESET_REG_MASTER_DISABLED |
3311 IPW_RESET_REG_STOP_MASTER |
James Ketrenos43f66a62005-03-25 12:31:53 -06003312 CBD_RESET_REG_PRINCETON_RESET);
Jeff Garzikbf794512005-07-31 13:07:26 -04003313
James Ketrenos43f66a62005-03-25 12:31:53 -06003314 /* enable power management */
James Ketrenosb095c382005-08-24 22:04:42 -05003315 ipw_set_bit(priv, IPW_GP_CNTRL_RW,
3316 IPW_GP_CNTRL_BIT_HOST_ALLOWS_STANDBY);
James Ketrenos43f66a62005-03-25 12:31:53 -06003317
3318 IPW_DEBUG_TRACE("<<\n");
3319}
Jeff Garzikbf794512005-07-31 13:07:26 -04003320
James Ketrenos43f66a62005-03-25 12:31:53 -06003321static int ipw_init_nic(struct ipw_priv *priv)
3322{
3323 int rc;
3324
3325 IPW_DEBUG_TRACE(">>\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04003326 /* reset */
James Ketrenos43f66a62005-03-25 12:31:53 -06003327 /*prvHwInitNic */
3328 /* set "initialization complete" bit to move adapter to D0 state */
James Ketrenosb095c382005-08-24 22:04:42 -05003329 ipw_set_bit(priv, IPW_GP_CNTRL_RW, IPW_GP_CNTRL_BIT_INIT_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003330
3331 /* low-level PLL activation */
James Ketrenosb095c382005-08-24 22:04:42 -05003332 ipw_write32(priv, IPW_READ_INT_REGISTER,
3333 IPW_BIT_INT_HOST_SRAM_READ_INT_REGISTER);
James Ketrenos43f66a62005-03-25 12:31:53 -06003334
3335 /* wait for clock stabilization */
James Ketrenosb095c382005-08-24 22:04:42 -05003336 rc = ipw_poll_bit(priv, IPW_GP_CNTRL_RW,
3337 IPW_GP_CNTRL_BIT_CLOCK_READY, 250);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003338 if (rc < 0)
James Ketrenos43f66a62005-03-25 12:31:53 -06003339 IPW_DEBUG_INFO("FAILED wait for clock stablization\n");
3340
3341 /* assert SW reset */
James Ketrenosb095c382005-08-24 22:04:42 -05003342 ipw_set_bit(priv, IPW_RESET_REG, IPW_RESET_REG_SW_RESET);
James Ketrenos43f66a62005-03-25 12:31:53 -06003343
3344 udelay(10);
3345
3346 /* set "initialization complete" bit to move adapter to D0 state */
James Ketrenosb095c382005-08-24 22:04:42 -05003347 ipw_set_bit(priv, IPW_GP_CNTRL_RW, IPW_GP_CNTRL_BIT_INIT_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003348
3349 IPW_DEBUG_TRACE(">>\n");
3350 return 0;
3351}
3352
Jeff Garzikbf794512005-07-31 13:07:26 -04003353/* Call this function from process context, it will sleep in request_firmware.
James Ketrenos43f66a62005-03-25 12:31:53 -06003354 * Probe is an ok place to call this from.
3355 */
3356static int ipw_reset_nic(struct ipw_priv *priv)
3357{
3358 int rc = 0;
James Ketrenosa613bff2005-08-24 21:43:11 -05003359 unsigned long flags;
James Ketrenos43f66a62005-03-25 12:31:53 -06003360
3361 IPW_DEBUG_TRACE(">>\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04003362
James Ketrenos43f66a62005-03-25 12:31:53 -06003363 rc = ipw_init_nic(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -04003364
James Ketrenosa613bff2005-08-24 21:43:11 -05003365 spin_lock_irqsave(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06003366 /* Clear the 'host command active' bit... */
3367 priv->status &= ~STATUS_HCMD_ACTIVE;
3368 wake_up_interruptible(&priv->wait_command_queue);
James Ketrenosafbf30a2005-08-25 00:05:33 -05003369 priv->status &= ~(STATUS_SCANNING | STATUS_SCAN_ABORTING);
3370 wake_up_interruptible(&priv->wait_state);
James Ketrenosa613bff2005-08-24 21:43:11 -05003371 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06003372
3373 IPW_DEBUG_TRACE("<<\n");
3374 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04003375}
James Ketrenos43f66a62005-03-25 12:31:53 -06003376
James Ketrenos9006ea72006-03-08 03:22:28 +08003377
3378struct ipw_fw {
Zhu Yi0070f8c2006-04-13 17:20:12 +08003379 __le32 ver;
3380 __le32 boot_size;
3381 __le32 ucode_size;
3382 __le32 fw_size;
James Ketrenos9006ea72006-03-08 03:22:28 +08003383 u8 data[0];
3384};
3385
Jeff Garzikbf794512005-07-31 13:07:26 -04003386static int ipw_get_fw(struct ipw_priv *priv,
James Ketrenos9006ea72006-03-08 03:22:28 +08003387 const struct firmware **raw, const char *name)
James Ketrenos43f66a62005-03-25 12:31:53 -06003388{
James Ketrenos9006ea72006-03-08 03:22:28 +08003389 struct ipw_fw *fw;
James Ketrenos43f66a62005-03-25 12:31:53 -06003390 int rc;
3391
3392 /* ask firmware_class module to get the boot firmware off disk */
James Ketrenos9006ea72006-03-08 03:22:28 +08003393 rc = request_firmware(raw, name, &priv->pci_dev->dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06003394 if (rc < 0) {
James Ketrenos9006ea72006-03-08 03:22:28 +08003395 IPW_ERROR("%s request_firmware failed: Reason %d\n", name, rc);
James Ketrenos43f66a62005-03-25 12:31:53 -06003396 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04003397 }
James Ketrenos43f66a62005-03-25 12:31:53 -06003398
James Ketrenos9006ea72006-03-08 03:22:28 +08003399 if ((*raw)->size < sizeof(*fw)) {
3400 IPW_ERROR("%s is too small (%zd)\n", name, (*raw)->size);
James Ketrenos43f66a62005-03-25 12:31:53 -06003401 return -EINVAL;
3402 }
3403
James Ketrenos9006ea72006-03-08 03:22:28 +08003404 fw = (void *)(*raw)->data;
3405
Zhu Yi0070f8c2006-04-13 17:20:12 +08003406 if ((*raw)->size < sizeof(*fw) + le32_to_cpu(fw->boot_size) +
3407 le32_to_cpu(fw->ucode_size) + le32_to_cpu(fw->fw_size)) {
James Ketrenos9006ea72006-03-08 03:22:28 +08003408 IPW_ERROR("%s is too small or corrupt (%zd)\n",
3409 name, (*raw)->size);
3410 return -EINVAL;
3411 }
3412
3413 IPW_DEBUG_INFO("Read firmware '%s' image v%d.%d (%zd bytes)\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06003414 name,
James Ketrenos9006ea72006-03-08 03:22:28 +08003415 le32_to_cpu(fw->ver) >> 16,
3416 le32_to_cpu(fw->ver) & 0xff,
3417 (*raw)->size - sizeof(*fw));
James Ketrenos43f66a62005-03-25 12:31:53 -06003418 return 0;
3419}
3420
James Ketrenosb095c382005-08-24 22:04:42 -05003421#define IPW_RX_BUF_SIZE (3000)
James Ketrenos43f66a62005-03-25 12:31:53 -06003422
Arjan van de Ven858119e2006-01-14 13:20:43 -08003423static void ipw_rx_queue_reset(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06003424 struct ipw_rx_queue *rxq)
3425{
3426 unsigned long flags;
3427 int i;
3428
3429 spin_lock_irqsave(&rxq->lock, flags);
3430
3431 INIT_LIST_HEAD(&rxq->rx_free);
3432 INIT_LIST_HEAD(&rxq->rx_used);
3433
3434 /* Fill the rx_used queue with _all_ of the Rx buffers */
3435 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++) {
3436 /* In the reset function, these buffers may have been allocated
3437 * to an SKB, so we need to unmap and free potential storage */
3438 if (rxq->pool[i].skb != NULL) {
3439 pci_unmap_single(priv->pci_dev, rxq->pool[i].dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05003440 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003441 dev_kfree_skb(rxq->pool[i].skb);
James Ketrenosa613bff2005-08-24 21:43:11 -05003442 rxq->pool[i].skb = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -06003443 }
3444 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
3445 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003446
James Ketrenos43f66a62005-03-25 12:31:53 -06003447 /* Set us so that we have processed and used all buffers, but have
3448 * not restocked the Rx queue with fresh buffers */
3449 rxq->read = rxq->write = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06003450 rxq->free_count = 0;
3451 spin_unlock_irqrestore(&rxq->lock, flags);
3452}
3453
3454#ifdef CONFIG_PM
3455static int fw_loaded = 0;
James Ketrenos9006ea72006-03-08 03:22:28 +08003456static const struct firmware *raw = NULL;
James Ketrenosafbf30a2005-08-25 00:05:33 -05003457
3458static void free_firmware(void)
3459{
3460 if (fw_loaded) {
James Ketrenos9006ea72006-03-08 03:22:28 +08003461 release_firmware(raw);
3462 raw = NULL;
James Ketrenosafbf30a2005-08-25 00:05:33 -05003463 fw_loaded = 0;
3464 }
3465}
3466#else
3467#define free_firmware() do {} while (0)
James Ketrenos43f66a62005-03-25 12:31:53 -06003468#endif
3469
3470static int ipw_load(struct ipw_priv *priv)
3471{
3472#ifndef CONFIG_PM
James Ketrenos9006ea72006-03-08 03:22:28 +08003473 const struct firmware *raw = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -06003474#endif
James Ketrenos9006ea72006-03-08 03:22:28 +08003475 struct ipw_fw *fw;
3476 u8 *boot_img, *ucode_img, *fw_img;
3477 u8 *name = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -06003478 int rc = 0, retries = 3;
3479
Zhu Yi397ae122006-01-24 16:37:22 +08003480 switch (priv->ieee->iw_mode) {
3481 case IW_MODE_ADHOC:
James Ketrenos9006ea72006-03-08 03:22:28 +08003482 name = "ipw2200-ibss.fw";
Zhu Yi397ae122006-01-24 16:37:22 +08003483 break;
James Ketrenosb095c382005-08-24 22:04:42 -05003484#ifdef CONFIG_IPW2200_MONITOR
Zhu Yi397ae122006-01-24 16:37:22 +08003485 case IW_MODE_MONITOR:
James Ketrenos9006ea72006-03-08 03:22:28 +08003486 name = "ipw2200-sniffer.fw";
Zhu Yi397ae122006-01-24 16:37:22 +08003487 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06003488#endif
Zhu Yi397ae122006-01-24 16:37:22 +08003489 case IW_MODE_INFRA:
James Ketrenos9006ea72006-03-08 03:22:28 +08003490 name = "ipw2200-bss.fw";
Zhu Yi397ae122006-01-24 16:37:22 +08003491 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06003492 }
Zhu Yi397ae122006-01-24 16:37:22 +08003493
James Ketrenos9006ea72006-03-08 03:22:28 +08003494 if (!name) {
3495 rc = -EINVAL;
3496 goto error;
3497 }
3498
3499#ifdef CONFIG_PM
3500 if (!fw_loaded) {
3501#endif
3502 rc = ipw_get_fw(priv, &raw, name);
3503 if (rc < 0)
3504 goto error;
3505#ifdef CONFIG_PM
3506 }
3507#endif
3508
3509 fw = (void *)raw->data;
3510 boot_img = &fw->data[0];
Zhu Yi0070f8c2006-04-13 17:20:12 +08003511 ucode_img = &fw->data[le32_to_cpu(fw->boot_size)];
3512 fw_img = &fw->data[le32_to_cpu(fw->boot_size) +
3513 le32_to_cpu(fw->ucode_size)];
James Ketrenos9006ea72006-03-08 03:22:28 +08003514
Zhu Yi397ae122006-01-24 16:37:22 +08003515 if (rc < 0)
3516 goto error;
James Ketrenos43f66a62005-03-25 12:31:53 -06003517
3518 if (!priv->rxq)
3519 priv->rxq = ipw_rx_queue_alloc(priv);
3520 else
3521 ipw_rx_queue_reset(priv, priv->rxq);
3522 if (!priv->rxq) {
3523 IPW_ERROR("Unable to initialize Rx queue\n");
3524 goto error;
3525 }
3526
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003527 retry:
James Ketrenos43f66a62005-03-25 12:31:53 -06003528 /* Ensure interrupts are disabled */
James Ketrenosb095c382005-08-24 22:04:42 -05003529 ipw_write32(priv, IPW_INTA_MASK_R, ~IPW_INTA_MASK_ALL);
James Ketrenos43f66a62005-03-25 12:31:53 -06003530 priv->status &= ~STATUS_INT_ENABLED;
3531
3532 /* ack pending interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -05003533 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_MASK_ALL);
Jeff Garzikbf794512005-07-31 13:07:26 -04003534
James Ketrenos43f66a62005-03-25 12:31:53 -06003535 ipw_stop_nic(priv);
3536
3537 rc = ipw_reset_nic(priv);
Zhu Yi397ae122006-01-24 16:37:22 +08003538 if (rc < 0) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003539 IPW_ERROR("Unable to reset NIC\n");
3540 goto error;
3541 }
3542
James Ketrenosb095c382005-08-24 22:04:42 -05003543 ipw_zero_memory(priv, IPW_NIC_SRAM_LOWER_BOUND,
3544 IPW_NIC_SRAM_UPPER_BOUND - IPW_NIC_SRAM_LOWER_BOUND);
James Ketrenos43f66a62005-03-25 12:31:53 -06003545
3546 /* DMA the initial boot firmware into the device */
Zhu Yi0070f8c2006-04-13 17:20:12 +08003547 rc = ipw_load_firmware(priv, boot_img, le32_to_cpu(fw->boot_size));
James Ketrenos43f66a62005-03-25 12:31:53 -06003548 if (rc < 0) {
Peter Jonesa4f6bbb2005-08-26 00:33:34 -05003549 IPW_ERROR("Unable to load boot firmware: %d\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -06003550 goto error;
3551 }
3552
3553 /* kick start the device */
3554 ipw_start_nic(priv);
3555
Zhu Yic7b6a672006-01-24 16:37:05 +08003556 /* wait for the device to finish its initial startup sequence */
James Ketrenosb095c382005-08-24 22:04:42 -05003557 rc = ipw_poll_bit(priv, IPW_INTA_RW,
3558 IPW_INTA_BIT_FW_INITIALIZATION_DONE, 500);
James Ketrenos43f66a62005-03-25 12:31:53 -06003559 if (rc < 0) {
3560 IPW_ERROR("device failed to boot initial fw image\n");
3561 goto error;
3562 }
3563 IPW_DEBUG_INFO("initial device response after %dms\n", rc);
3564
Jeff Garzikbf794512005-07-31 13:07:26 -04003565 /* ack fw init done interrupt */
James Ketrenosb095c382005-08-24 22:04:42 -05003566 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_BIT_FW_INITIALIZATION_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003567
3568 /* DMA the ucode into the device */
Zhu Yi0070f8c2006-04-13 17:20:12 +08003569 rc = ipw_load_ucode(priv, ucode_img, le32_to_cpu(fw->ucode_size));
James Ketrenos43f66a62005-03-25 12:31:53 -06003570 if (rc < 0) {
Peter Jonesa4f6bbb2005-08-26 00:33:34 -05003571 IPW_ERROR("Unable to load ucode: %d\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -06003572 goto error;
3573 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003574
James Ketrenos43f66a62005-03-25 12:31:53 -06003575 /* stop nic */
3576 ipw_stop_nic(priv);
3577
3578 /* DMA bss firmware into the device */
Zhu Yi0070f8c2006-04-13 17:20:12 +08003579 rc = ipw_load_firmware(priv, fw_img, le32_to_cpu(fw->fw_size));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003580 if (rc < 0) {
Peter Jonesa4f6bbb2005-08-26 00:33:34 -05003581 IPW_ERROR("Unable to load firmware: %d\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -06003582 goto error;
3583 }
Zhu Yi397ae122006-01-24 16:37:22 +08003584#ifdef CONFIG_PM
3585 fw_loaded = 1;
3586#endif
3587
James Ketrenos43f66a62005-03-25 12:31:53 -06003588 ipw_write32(priv, IPW_EEPROM_LOAD_DISABLE, 0);
3589
3590 rc = ipw_queue_reset(priv);
Zhu Yi397ae122006-01-24 16:37:22 +08003591 if (rc < 0) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003592 IPW_ERROR("Unable to initialize queues\n");
3593 goto error;
3594 }
3595
3596 /* Ensure interrupts are disabled */
James Ketrenosb095c382005-08-24 22:04:42 -05003597 ipw_write32(priv, IPW_INTA_MASK_R, ~IPW_INTA_MASK_ALL);
James Ketrenosc848d0a2005-08-24 21:56:24 -05003598 /* ack pending interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -05003599 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_MASK_ALL);
Jeff Garzikbf794512005-07-31 13:07:26 -04003600
James Ketrenos43f66a62005-03-25 12:31:53 -06003601 /* kick start the device */
3602 ipw_start_nic(priv);
3603
James Ketrenosb095c382005-08-24 22:04:42 -05003604 if (ipw_read32(priv, IPW_INTA_RW) & IPW_INTA_BIT_PARITY_ERROR) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003605 if (retries > 0) {
3606 IPW_WARNING("Parity error. Retrying init.\n");
3607 retries--;
3608 goto retry;
3609 }
3610
3611 IPW_ERROR("TODO: Handle parity error -- schedule restart?\n");
3612 rc = -EIO;
3613 goto error;
3614 }
3615
3616 /* wait for the device */
James Ketrenosb095c382005-08-24 22:04:42 -05003617 rc = ipw_poll_bit(priv, IPW_INTA_RW,
3618 IPW_INTA_BIT_FW_INITIALIZATION_DONE, 500);
James Ketrenos43f66a62005-03-25 12:31:53 -06003619 if (rc < 0) {
Zhu Yic7b6a672006-01-24 16:37:05 +08003620 IPW_ERROR("device failed to start within 500ms\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06003621 goto error;
3622 }
3623 IPW_DEBUG_INFO("device response after %dms\n", rc);
3624
3625 /* ack fw init done interrupt */
James Ketrenosb095c382005-08-24 22:04:42 -05003626 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_BIT_FW_INITIALIZATION_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003627
3628 /* read eeprom data and initialize the eeprom region of sram */
3629 priv->eeprom_delay = 1;
Jeff Garzikbf794512005-07-31 13:07:26 -04003630 ipw_eeprom_init_sram(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06003631
3632 /* enable interrupts */
3633 ipw_enable_interrupts(priv);
3634
3635 /* Ensure our queue has valid packets */
3636 ipw_rx_queue_replenish(priv);
3637
James Ketrenosb095c382005-08-24 22:04:42 -05003638 ipw_write32(priv, IPW_RX_READ_INDEX, priv->rxq->read);
James Ketrenos43f66a62005-03-25 12:31:53 -06003639
3640 /* ack pending interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -05003641 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_MASK_ALL);
James Ketrenos43f66a62005-03-25 12:31:53 -06003642
3643#ifndef CONFIG_PM
James Ketrenos9006ea72006-03-08 03:22:28 +08003644 release_firmware(raw);
James Ketrenos43f66a62005-03-25 12:31:53 -06003645#endif
3646 return 0;
3647
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003648 error:
James Ketrenos43f66a62005-03-25 12:31:53 -06003649 if (priv->rxq) {
3650 ipw_rx_queue_free(priv, priv->rxq);
3651 priv->rxq = NULL;
3652 }
3653 ipw_tx_queue_free(priv);
James Ketrenos9006ea72006-03-08 03:22:28 +08003654 if (raw)
3655 release_firmware(raw);
James Ketrenos43f66a62005-03-25 12:31:53 -06003656#ifdef CONFIG_PM
3657 fw_loaded = 0;
James Ketrenos9006ea72006-03-08 03:22:28 +08003658 raw = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -06003659#endif
3660
3661 return rc;
3662}
3663
Jeff Garzikbf794512005-07-31 13:07:26 -04003664/**
James Ketrenos43f66a62005-03-25 12:31:53 -06003665 * DMA services
3666 *
3667 * Theory of operation
3668 *
3669 * A queue is a circular buffers with 'Read' and 'Write' pointers.
3670 * 2 empty entries always kept in the buffer to protect from overflow.
3671 *
3672 * For Tx queue, there are low mark and high mark limits. If, after queuing
Jeff Garzikbf794512005-07-31 13:07:26 -04003673 * the packet for Tx, free space become < low mark, Tx queue stopped. When
3674 * reclaiming packets (on 'tx done IRQ), if free space become > high mark,
James Ketrenos43f66a62005-03-25 12:31:53 -06003675 * Tx queue resumed.
3676 *
3677 * The IPW operates with six queues, one receive queue in the device's
3678 * sram, one transmit queue for sending commands to the device firmware,
Jeff Garzikbf794512005-07-31 13:07:26 -04003679 * and four transmit queues for data.
James Ketrenos43f66a62005-03-25 12:31:53 -06003680 *
Jeff Garzikbf794512005-07-31 13:07:26 -04003681 * The four transmit queues allow for performing quality of service (qos)
James Ketrenos43f66a62005-03-25 12:31:53 -06003682 * transmissions as per the 802.11 protocol. Currently Linux does not
Jeff Garzikbf794512005-07-31 13:07:26 -04003683 * provide a mechanism to the user for utilizing prioritized queues, so
James Ketrenos43f66a62005-03-25 12:31:53 -06003684 * we only utilize the first data transmit queue (queue1).
3685 */
3686
3687/**
3688 * Driver allocates buffers of this size for Rx
3689 */
3690
Dan Williams943dbef2008-02-14 17:49:41 -05003691/**
3692 * ipw_rx_queue_space - Return number of free slots available in queue.
3693 */
3694static int ipw_rx_queue_space(const struct ipw_rx_queue *q)
3695{
3696 int s = q->read - q->write;
3697 if (s <= 0)
3698 s += RX_QUEUE_SIZE;
3699 /* keep some buffer to not confuse full and empty queue */
3700 s -= 2;
3701 if (s < 0)
3702 s = 0;
3703 return s;
3704}
3705
3706static inline int ipw_tx_queue_space(const struct clx2_queue *q)
James Ketrenos43f66a62005-03-25 12:31:53 -06003707{
3708 int s = q->last_used - q->first_empty;
3709 if (s <= 0)
3710 s += q->n_bd;
3711 s -= 2; /* keep some reserve to not confuse empty and full situations */
3712 if (s < 0)
3713 s = 0;
3714 return s;
3715}
3716
3717static inline int ipw_queue_inc_wrap(int index, int n_bd)
3718{
3719 return (++index == n_bd) ? 0 : index;
3720}
3721
3722/**
3723 * Initialize common DMA queue structure
Jeff Garzikbf794512005-07-31 13:07:26 -04003724 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003725 * @param q queue to init
3726 * @param count Number of BD's to allocate. Should be power of 2
3727 * @param read_register Address for 'read' register
3728 * (not offset within BAR, full address)
3729 * @param write_register Address for 'write' register
3730 * (not offset within BAR, full address)
3731 * @param base_register Address for 'base' register
3732 * (not offset within BAR, full address)
3733 * @param size Address for 'size' register
3734 * (not offset within BAR, full address)
3735 */
Jeff Garzikbf794512005-07-31 13:07:26 -04003736static void ipw_queue_init(struct ipw_priv *priv, struct clx2_queue *q,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003737 int count, u32 read, u32 write, u32 base, u32 size)
James Ketrenos43f66a62005-03-25 12:31:53 -06003738{
3739 q->n_bd = count;
3740
3741 q->low_mark = q->n_bd / 4;
3742 if (q->low_mark < 4)
3743 q->low_mark = 4;
3744
3745 q->high_mark = q->n_bd / 8;
3746 if (q->high_mark < 2)
3747 q->high_mark = 2;
3748
3749 q->first_empty = q->last_used = 0;
3750 q->reg_r = read;
3751 q->reg_w = write;
3752
3753 ipw_write32(priv, base, q->dma_addr);
3754 ipw_write32(priv, size, count);
3755 ipw_write32(priv, read, 0);
3756 ipw_write32(priv, write, 0);
3757
3758 _ipw_read32(priv, 0x90);
3759}
3760
Jeff Garzikbf794512005-07-31 13:07:26 -04003761static int ipw_queue_tx_init(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06003762 struct clx2_tx_queue *q,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003763 int count, u32 read, u32 write, u32 base, u32 size)
James Ketrenos43f66a62005-03-25 12:31:53 -06003764{
3765 struct pci_dev *dev = priv->pci_dev;
3766
3767 q->txb = kmalloc(sizeof(q->txb[0]) * count, GFP_KERNEL);
3768 if (!q->txb) {
3769 IPW_ERROR("vmalloc for auxilary BD structures failed\n");
3770 return -ENOMEM;
3771 }
3772
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003773 q->bd =
3774 pci_alloc_consistent(dev, sizeof(q->bd[0]) * count, &q->q.dma_addr);
James Ketrenos43f66a62005-03-25 12:31:53 -06003775 if (!q->bd) {
Jiri Bencaaa4d302005-06-07 14:58:41 +02003776 IPW_ERROR("pci_alloc_consistent(%zd) failed\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003777 sizeof(q->bd[0]) * count);
James Ketrenos43f66a62005-03-25 12:31:53 -06003778 kfree(q->txb);
3779 q->txb = NULL;
3780 return -ENOMEM;
3781 }
3782
3783 ipw_queue_init(priv, &q->q, count, read, write, base, size);
3784 return 0;
3785}
3786
3787/**
3788 * Free one TFD, those at index [txq->q.last_used].
3789 * Do NOT advance any indexes
Jeff Garzikbf794512005-07-31 13:07:26 -04003790 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003791 * @param dev
3792 * @param txq
3793 */
3794static void ipw_queue_tx_free_tfd(struct ipw_priv *priv,
3795 struct clx2_tx_queue *txq)
3796{
3797 struct tfd_frame *bd = &txq->bd[txq->q.last_used];
3798 struct pci_dev *dev = priv->pci_dev;
3799 int i;
Jeff Garzikbf794512005-07-31 13:07:26 -04003800
James Ketrenos43f66a62005-03-25 12:31:53 -06003801 /* classify bd */
3802 if (bd->control_flags.message_type == TX_HOST_COMMAND_TYPE)
3803 /* nothing to cleanup after for host commands */
3804 return;
3805
3806 /* sanity check */
James Ketrenosa613bff2005-08-24 21:43:11 -05003807 if (le32_to_cpu(bd->u.data.num_chunks) > NUM_TFD_CHUNKS) {
3808 IPW_ERROR("Too many chunks: %i\n",
3809 le32_to_cpu(bd->u.data.num_chunks));
James Ketrenos43f66a62005-03-25 12:31:53 -06003810 /** @todo issue fatal error, it is quite serious situation */
3811 return;
3812 }
3813
3814 /* unmap chunks if any */
James Ketrenosa613bff2005-08-24 21:43:11 -05003815 for (i = 0; i < le32_to_cpu(bd->u.data.num_chunks); i++) {
3816 pci_unmap_single(dev, le32_to_cpu(bd->u.data.chunk_ptr[i]),
3817 le16_to_cpu(bd->u.data.chunk_len[i]),
3818 PCI_DMA_TODEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003819 if (txq->txb[txq->q.last_used]) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04003820 libipw_txb_free(txq->txb[txq->q.last_used]);
James Ketrenos43f66a62005-03-25 12:31:53 -06003821 txq->txb[txq->q.last_used] = NULL;
3822 }
3823 }
3824}
3825
3826/**
3827 * Deallocate DMA queue.
Jeff Garzikbf794512005-07-31 13:07:26 -04003828 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003829 * Empty queue by removing and destroying all BD's.
3830 * Free all buffers.
Jeff Garzikbf794512005-07-31 13:07:26 -04003831 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003832 * @param dev
3833 * @param q
3834 */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003835static void ipw_queue_tx_free(struct ipw_priv *priv, struct clx2_tx_queue *txq)
James Ketrenos43f66a62005-03-25 12:31:53 -06003836{
3837 struct clx2_queue *q = &txq->q;
3838 struct pci_dev *dev = priv->pci_dev;
3839
Jeff Garzikbf794512005-07-31 13:07:26 -04003840 if (q->n_bd == 0)
3841 return;
James Ketrenos43f66a62005-03-25 12:31:53 -06003842
3843 /* first, empty all BD's */
3844 for (; q->first_empty != q->last_used;
3845 q->last_used = ipw_queue_inc_wrap(q->last_used, q->n_bd)) {
3846 ipw_queue_tx_free_tfd(priv, txq);
3847 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003848
James Ketrenos43f66a62005-03-25 12:31:53 -06003849 /* free buffers belonging to queue itself */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003850 pci_free_consistent(dev, sizeof(txq->bd[0]) * q->n_bd, txq->bd,
James Ketrenos43f66a62005-03-25 12:31:53 -06003851 q->dma_addr);
3852 kfree(txq->txb);
3853
3854 /* 0 fill whole structure */
3855 memset(txq, 0, sizeof(*txq));
3856}
3857
James Ketrenos43f66a62005-03-25 12:31:53 -06003858/**
3859 * Destroy all DMA queues and structures
Jeff Garzikbf794512005-07-31 13:07:26 -04003860 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003861 * @param priv
3862 */
3863static void ipw_tx_queue_free(struct ipw_priv *priv)
3864{
3865 /* Tx CMD queue */
3866 ipw_queue_tx_free(priv, &priv->txq_cmd);
3867
3868 /* Tx queues */
3869 ipw_queue_tx_free(priv, &priv->txq[0]);
3870 ipw_queue_tx_free(priv, &priv->txq[1]);
3871 ipw_queue_tx_free(priv, &priv->txq[2]);
3872 ipw_queue_tx_free(priv, &priv->txq[3]);
3873}
3874
Arjan van de Ven858119e2006-01-14 13:20:43 -08003875static void ipw_create_bssid(struct ipw_priv *priv, u8 * bssid)
James Ketrenos43f66a62005-03-25 12:31:53 -06003876{
3877 /* First 3 bytes are manufacturer */
3878 bssid[0] = priv->mac_addr[0];
3879 bssid[1] = priv->mac_addr[1];
3880 bssid[2] = priv->mac_addr[2];
3881
3882 /* Last bytes are random */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003883 get_random_bytes(&bssid[3], ETH_ALEN - 3);
James Ketrenos43f66a62005-03-25 12:31:53 -06003884
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003885 bssid[0] &= 0xfe; /* clear multicast bit */
3886 bssid[0] |= 0x02; /* set local assignment bit (IEEE802) */
James Ketrenos43f66a62005-03-25 12:31:53 -06003887}
3888
Arjan van de Ven858119e2006-01-14 13:20:43 -08003889static u8 ipw_add_station(struct ipw_priv *priv, u8 * bssid)
James Ketrenos43f66a62005-03-25 12:31:53 -06003890{
3891 struct ipw_station_entry entry;
3892 int i;
3893
3894 for (i = 0; i < priv->num_stations; i++) {
3895 if (!memcmp(priv->stations[i], bssid, ETH_ALEN)) {
3896 /* Another node is active in network */
3897 priv->missed_adhoc_beacons = 0;
3898 if (!(priv->config & CFG_STATIC_CHANNEL))
3899 /* when other nodes drop out, we drop out */
3900 priv->config &= ~CFG_ADHOC_PERSIST;
3901
3902 return i;
3903 }
3904 }
3905
3906 if (i == MAX_STATIONS)
3907 return IPW_INVALID_STATION;
3908
Johannes Berge1749612008-10-27 15:59:26 -07003909 IPW_DEBUG_SCAN("Adding AdHoc station: %pM\n", bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06003910
3911 entry.reserved = 0;
3912 entry.support_mode = 0;
3913 memcpy(entry.mac_addr, bssid, ETH_ALEN);
3914 memcpy(priv->stations[i], bssid, ETH_ALEN);
3915 ipw_write_direct(priv, IPW_STATION_TABLE_LOWER + i * sizeof(entry),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003916 &entry, sizeof(entry));
James Ketrenos43f66a62005-03-25 12:31:53 -06003917 priv->num_stations++;
3918
3919 return i;
3920}
3921
Arjan van de Ven858119e2006-01-14 13:20:43 -08003922static u8 ipw_find_station(struct ipw_priv *priv, u8 * bssid)
James Ketrenos43f66a62005-03-25 12:31:53 -06003923{
3924 int i;
3925
Jeff Garzikbf794512005-07-31 13:07:26 -04003926 for (i = 0; i < priv->num_stations; i++)
3927 if (!memcmp(priv->stations[i], bssid, ETH_ALEN))
James Ketrenos43f66a62005-03-25 12:31:53 -06003928 return i;
3929
3930 return IPW_INVALID_STATION;
3931}
3932
3933static void ipw_send_disassociate(struct ipw_priv *priv, int quiet)
3934{
3935 int err;
3936
Hong Liu7b996592005-08-25 17:36:13 +08003937 if (priv->status & STATUS_ASSOCIATING) {
3938 IPW_DEBUG_ASSOC("Disassociating while associating.\n");
3939 queue_work(priv->workqueue, &priv->disassociate);
3940 return;
3941 }
3942
3943 if (!(priv->status & STATUS_ASSOCIATED)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003944 IPW_DEBUG_ASSOC("Disassociating while not associated.\n");
3945 return;
3946 }
3947
Johannes Berge1749612008-10-27 15:59:26 -07003948 IPW_DEBUG_ASSOC("Disassocation attempt from %pM "
James Ketrenos43f66a62005-03-25 12:31:53 -06003949 "on channel %d.\n",
Johannes Berge1749612008-10-27 15:59:26 -07003950 priv->assoc_request.bssid,
James Ketrenos43f66a62005-03-25 12:31:53 -06003951 priv->assoc_request.channel);
3952
3953 priv->status &= ~(STATUS_ASSOCIATING | STATUS_ASSOCIATED);
3954 priv->status |= STATUS_DISASSOCIATING;
3955
3956 if (quiet)
3957 priv->assoc_request.assoc_type = HC_DISASSOC_QUIET;
3958 else
3959 priv->assoc_request.assoc_type = HC_DISASSOCIATE;
Hong Liue6324722005-09-14 21:04:15 -05003960
James Ketrenos43f66a62005-03-25 12:31:53 -06003961 err = ipw_send_associate(priv, &priv->assoc_request);
3962 if (err) {
3963 IPW_DEBUG_HC("Attempt to send [dis]associate command "
3964 "failed.\n");
3965 return;
3966 }
3967
3968}
3969
James Ketrenosc848d0a2005-08-24 21:56:24 -05003970static int ipw_disassociate(void *data)
James Ketrenos43f66a62005-03-25 12:31:53 -06003971{
James Ketrenosc848d0a2005-08-24 21:56:24 -05003972 struct ipw_priv *priv = data;
3973 if (!(priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)))
3974 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06003975 ipw_send_disassociate(data, 0);
Zhu Yib8ddafd2008-11-27 13:42:20 +08003976 netif_carrier_off(priv->net_dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05003977 return 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06003978}
3979
David Howellsc4028952006-11-22 14:57:56 +00003980static void ipw_bg_disassociate(struct work_struct *work)
James Ketrenos43f66a62005-03-25 12:31:53 -06003981{
David Howellsc4028952006-11-22 14:57:56 +00003982 struct ipw_priv *priv =
3983 container_of(work, struct ipw_priv, disassociate);
Zhu Yi46441512006-01-24 16:37:59 +08003984 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00003985 ipw_disassociate(priv);
Zhu Yi46441512006-01-24 16:37:59 +08003986 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06003987}
3988
David Howellsc4028952006-11-22 14:57:56 +00003989static void ipw_system_config(struct work_struct *work)
Zhu Yid8bad6d2005-07-13 12:25:38 -05003990{
David Howellsc4028952006-11-22 14:57:56 +00003991 struct ipw_priv *priv =
3992 container_of(work, struct ipw_priv, system_config);
Zhu Yid685b8c2006-04-13 17:20:27 +08003993
3994#ifdef CONFIG_IPW2200_PROMISCUOUS
3995 if (priv->prom_net_dev && netif_running(priv->prom_net_dev)) {
3996 priv->sys_config.accept_all_data_frames = 1;
3997 priv->sys_config.accept_non_directed_frames = 1;
3998 priv->sys_config.accept_all_mgmt_bcpr = 1;
3999 priv->sys_config.accept_all_mgmt_frames = 1;
4000 }
4001#endif
4002
4003 ipw_send_system_config(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06004004}
4005
4006struct ipw_status_code {
4007 u16 status;
4008 const char *reason;
4009};
4010
4011static const struct ipw_status_code ipw_status_codes[] = {
4012 {0x00, "Successful"},
4013 {0x01, "Unspecified failure"},
4014 {0x0A, "Cannot support all requested capabilities in the "
4015 "Capability information field"},
4016 {0x0B, "Reassociation denied due to inability to confirm that "
4017 "association exists"},
4018 {0x0C, "Association denied due to reason outside the scope of this "
4019 "standard"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004020 {0x0D,
4021 "Responding station does not support the specified authentication "
James Ketrenos43f66a62005-03-25 12:31:53 -06004022 "algorithm"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004023 {0x0E,
4024 "Received an Authentication frame with authentication sequence "
James Ketrenos43f66a62005-03-25 12:31:53 -06004025 "transaction sequence number out of expected sequence"},
4026 {0x0F, "Authentication rejected because of challenge failure"},
4027 {0x10, "Authentication rejected due to timeout waiting for next "
4028 "frame in sequence"},
4029 {0x11, "Association denied because AP is unable to handle additional "
4030 "associated stations"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004031 {0x12,
4032 "Association denied due to requesting station not supporting all "
James Ketrenos43f66a62005-03-25 12:31:53 -06004033 "of the datarates in the BSSBasicServiceSet Parameter"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004034 {0x13,
4035 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06004036 "short preamble operation"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004037 {0x14,
4038 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06004039 "PBCC encoding"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004040 {0x15,
4041 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06004042 "channel agility"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004043 {0x19,
4044 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06004045 "short slot operation"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004046 {0x1A,
4047 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06004048 "DSSS-OFDM operation"},
4049 {0x28, "Invalid Information Element"},
4050 {0x29, "Group Cipher is not valid"},
4051 {0x2A, "Pairwise Cipher is not valid"},
4052 {0x2B, "AKMP is not valid"},
4053 {0x2C, "Unsupported RSN IE version"},
4054 {0x2D, "Invalid RSN IE Capabilities"},
4055 {0x2E, "Cipher suite is rejected per security policy"},
4056};
4057
Jeff Garzikbf794512005-07-31 13:07:26 -04004058static const char *ipw_get_status_code(u16 status)
James Ketrenos43f66a62005-03-25 12:31:53 -06004059{
4060 int i;
Jeff Garzikbf794512005-07-31 13:07:26 -04004061 for (i = 0; i < ARRAY_SIZE(ipw_status_codes); i++)
James Ketrenosea2b26e2005-08-24 21:25:16 -05004062 if (ipw_status_codes[i].status == (status & 0xff))
James Ketrenos43f66a62005-03-25 12:31:53 -06004063 return ipw_status_codes[i].reason;
4064 return "Unknown status value.";
4065}
James Ketrenos43f66a62005-03-25 12:31:53 -06004066
4067static void inline average_init(struct average *avg)
4068{
4069 memset(avg, 0, sizeof(*avg));
4070}
4071
Zhu Yi00d21de2006-04-13 17:19:02 +08004072#define DEPTH_RSSI 8
4073#define DEPTH_NOISE 16
4074static s16 exponential_average(s16 prev_avg, s16 val, u8 depth)
4075{
4076 return ((depth-1)*prev_avg + val)/depth;
4077}
4078
Arjan van de Ven858119e2006-01-14 13:20:43 -08004079static void average_add(struct average *avg, s16 val)
James Ketrenos43f66a62005-03-25 12:31:53 -06004080{
4081 avg->sum -= avg->entries[avg->pos];
4082 avg->sum += val;
4083 avg->entries[avg->pos++] = val;
4084 if (unlikely(avg->pos == AVG_ENTRIES)) {
4085 avg->init = 1;
4086 avg->pos = 0;
4087 }
4088}
4089
Arjan van de Ven858119e2006-01-14 13:20:43 -08004090static s16 average_value(struct average *avg)
James Ketrenos43f66a62005-03-25 12:31:53 -06004091{
4092 if (!unlikely(avg->init)) {
4093 if (avg->pos)
4094 return avg->sum / avg->pos;
4095 return 0;
4096 }
4097
4098 return avg->sum / AVG_ENTRIES;
4099}
4100
4101static void ipw_reset_stats(struct ipw_priv *priv)
4102{
4103 u32 len = sizeof(u32);
4104
4105 priv->quality = 0;
4106
4107 average_init(&priv->average_missed_beacons);
Zhu Yi00d21de2006-04-13 17:19:02 +08004108 priv->exp_avg_rssi = -60;
4109 priv->exp_avg_noise = -85 + 0x100;
James Ketrenos43f66a62005-03-25 12:31:53 -06004110
4111 priv->last_rate = 0;
4112 priv->last_missed_beacons = 0;
4113 priv->last_rx_packets = 0;
4114 priv->last_tx_packets = 0;
4115 priv->last_tx_failures = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004116
James Ketrenos43f66a62005-03-25 12:31:53 -06004117 /* Firmware managed, reset only when NIC is restarted, so we have to
4118 * normalize on the current value */
Jeff Garzikbf794512005-07-31 13:07:26 -04004119 ipw_get_ordinal(priv, IPW_ORD_STAT_RX_ERR_CRC,
James Ketrenos43f66a62005-03-25 12:31:53 -06004120 &priv->last_rx_err, &len);
Jeff Garzikbf794512005-07-31 13:07:26 -04004121 ipw_get_ordinal(priv, IPW_ORD_STAT_TX_FAILURE,
James Ketrenos43f66a62005-03-25 12:31:53 -06004122 &priv->last_tx_failures, &len);
4123
4124 /* Driver managed, reset with each association */
4125 priv->missed_adhoc_beacons = 0;
4126 priv->missed_beacons = 0;
4127 priv->tx_packets = 0;
4128 priv->rx_packets = 0;
4129
4130}
4131
Arjan van de Ven858119e2006-01-14 13:20:43 -08004132static u32 ipw_get_max_rate(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06004133{
4134 u32 i = 0x80000000;
4135 u32 mask = priv->rates_mask;
4136 /* If currently associated in B mode, restrict the maximum
4137 * rate match to B rates */
4138 if (priv->assoc_request.ieee_mode == IPW_B_MODE)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004139 mask &= LIBIPW_CCK_RATES_MASK;
James Ketrenos43f66a62005-03-25 12:31:53 -06004140
4141 /* TODO: Verify that the rate is supported by the current rates
4142 * list. */
4143
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004144 while (i && !(mask & i))
4145 i >>= 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06004146 switch (i) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004147 case LIBIPW_CCK_RATE_1MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004148 return 1000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004149 case LIBIPW_CCK_RATE_2MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004150 return 2000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004151 case LIBIPW_CCK_RATE_5MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004152 return 5500000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004153 case LIBIPW_OFDM_RATE_6MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004154 return 6000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004155 case LIBIPW_OFDM_RATE_9MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004156 return 9000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004157 case LIBIPW_CCK_RATE_11MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004158 return 11000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004159 case LIBIPW_OFDM_RATE_12MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004160 return 12000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004161 case LIBIPW_OFDM_RATE_18MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004162 return 18000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004163 case LIBIPW_OFDM_RATE_24MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004164 return 24000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004165 case LIBIPW_OFDM_RATE_36MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004166 return 36000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004167 case LIBIPW_OFDM_RATE_48MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004168 return 48000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004169 case LIBIPW_OFDM_RATE_54MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004170 return 54000000;
James Ketrenos43f66a62005-03-25 12:31:53 -06004171 }
4172
Jeff Garzikbf794512005-07-31 13:07:26 -04004173 if (priv->ieee->mode == IEEE_B)
James Ketrenos43f66a62005-03-25 12:31:53 -06004174 return 11000000;
4175 else
4176 return 54000000;
4177}
4178
4179static u32 ipw_get_current_rate(struct ipw_priv *priv)
4180{
4181 u32 rate, len = sizeof(rate);
4182 int err;
4183
Jeff Garzikbf794512005-07-31 13:07:26 -04004184 if (!(priv->status & STATUS_ASSOCIATED))
James Ketrenos43f66a62005-03-25 12:31:53 -06004185 return 0;
4186
4187 if (priv->tx_packets > IPW_REAL_RATE_RX_PACKET_THRESHOLD) {
Jeff Garzikbf794512005-07-31 13:07:26 -04004188 err = ipw_get_ordinal(priv, IPW_ORD_STAT_TX_CURR_RATE, &rate,
James Ketrenos43f66a62005-03-25 12:31:53 -06004189 &len);
4190 if (err) {
4191 IPW_DEBUG_INFO("failed querying ordinals.\n");
4192 return 0;
4193 }
Jeff Garzikbf794512005-07-31 13:07:26 -04004194 } else
James Ketrenos43f66a62005-03-25 12:31:53 -06004195 return ipw_get_max_rate(priv);
4196
4197 switch (rate) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05004198 case IPW_TX_RATE_1MB:
4199 return 1000000;
4200 case IPW_TX_RATE_2MB:
4201 return 2000000;
4202 case IPW_TX_RATE_5MB:
4203 return 5500000;
4204 case IPW_TX_RATE_6MB:
4205 return 6000000;
4206 case IPW_TX_RATE_9MB:
4207 return 9000000;
4208 case IPW_TX_RATE_11MB:
4209 return 11000000;
4210 case IPW_TX_RATE_12MB:
4211 return 12000000;
4212 case IPW_TX_RATE_18MB:
4213 return 18000000;
4214 case IPW_TX_RATE_24MB:
4215 return 24000000;
4216 case IPW_TX_RATE_36MB:
4217 return 36000000;
4218 case IPW_TX_RATE_48MB:
4219 return 48000000;
4220 case IPW_TX_RATE_54MB:
4221 return 54000000;
James Ketrenos43f66a62005-03-25 12:31:53 -06004222 }
4223
4224 return 0;
4225}
4226
James Ketrenos43f66a62005-03-25 12:31:53 -06004227#define IPW_STATS_INTERVAL (2 * HZ)
4228static void ipw_gather_stats(struct ipw_priv *priv)
4229{
4230 u32 rx_err, rx_err_delta, rx_packets_delta;
4231 u32 tx_failures, tx_failures_delta, tx_packets_delta;
4232 u32 missed_beacons_percent, missed_beacons_delta;
4233 u32 quality = 0;
4234 u32 len = sizeof(u32);
4235 s16 rssi;
Jeff Garzikbf794512005-07-31 13:07:26 -04004236 u32 beacon_quality, signal_quality, tx_quality, rx_quality,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004237 rate_quality;
James Ketrenosea2b26e2005-08-24 21:25:16 -05004238 u32 max_rate;
James Ketrenos43f66a62005-03-25 12:31:53 -06004239
4240 if (!(priv->status & STATUS_ASSOCIATED)) {
4241 priv->quality = 0;
4242 return;
4243 }
4244
4245 /* Update the statistics */
Jeff Garzikbf794512005-07-31 13:07:26 -04004246 ipw_get_ordinal(priv, IPW_ORD_STAT_MISSED_BEACONS,
James Ketrenos43f66a62005-03-25 12:31:53 -06004247 &priv->missed_beacons, &len);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004248 missed_beacons_delta = priv->missed_beacons - priv->last_missed_beacons;
James Ketrenos43f66a62005-03-25 12:31:53 -06004249 priv->last_missed_beacons = priv->missed_beacons;
4250 if (priv->assoc_request.beacon_interval) {
4251 missed_beacons_percent = missed_beacons_delta *
Al Viro5b5e8072007-12-27 01:54:06 -05004252 (HZ * le16_to_cpu(priv->assoc_request.beacon_interval)) /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004253 (IPW_STATS_INTERVAL * 10);
James Ketrenos43f66a62005-03-25 12:31:53 -06004254 } else {
4255 missed_beacons_percent = 0;
4256 }
4257 average_add(&priv->average_missed_beacons, missed_beacons_percent);
4258
4259 ipw_get_ordinal(priv, IPW_ORD_STAT_RX_ERR_CRC, &rx_err, &len);
4260 rx_err_delta = rx_err - priv->last_rx_err;
4261 priv->last_rx_err = rx_err;
4262
4263 ipw_get_ordinal(priv, IPW_ORD_STAT_TX_FAILURE, &tx_failures, &len);
4264 tx_failures_delta = tx_failures - priv->last_tx_failures;
4265 priv->last_tx_failures = tx_failures;
4266
4267 rx_packets_delta = priv->rx_packets - priv->last_rx_packets;
4268 priv->last_rx_packets = priv->rx_packets;
4269
4270 tx_packets_delta = priv->tx_packets - priv->last_tx_packets;
4271 priv->last_tx_packets = priv->tx_packets;
4272
4273 /* Calculate quality based on the following:
Jeff Garzikbf794512005-07-31 13:07:26 -04004274 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004275 * Missed beacon: 100% = 0, 0% = 70% missed
4276 * Rate: 60% = 1Mbs, 100% = Max
4277 * Rx and Tx errors represent a straight % of total Rx/Tx
4278 * RSSI: 100% = > -50, 0% = < -80
4279 * Rx errors: 100% = 0, 0% = 50% missed
Jeff Garzikbf794512005-07-31 13:07:26 -04004280 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004281 * The lowest computed quality is used.
4282 *
4283 */
4284#define BEACON_THRESHOLD 5
4285 beacon_quality = 100 - missed_beacons_percent;
4286 if (beacon_quality < BEACON_THRESHOLD)
4287 beacon_quality = 0;
4288 else
Jeff Garzikbf794512005-07-31 13:07:26 -04004289 beacon_quality = (beacon_quality - BEACON_THRESHOLD) * 100 /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004290 (100 - BEACON_THRESHOLD);
Jeff Garzikbf794512005-07-31 13:07:26 -04004291 IPW_DEBUG_STATS("Missed beacon: %3d%% (%d%%)\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06004292 beacon_quality, missed_beacons_percent);
Jeff Garzikbf794512005-07-31 13:07:26 -04004293
James Ketrenos43f66a62005-03-25 12:31:53 -06004294 priv->last_rate = ipw_get_current_rate(priv);
James Ketrenosea2b26e2005-08-24 21:25:16 -05004295 max_rate = ipw_get_max_rate(priv);
4296 rate_quality = priv->last_rate * 40 / max_rate + 60;
James Ketrenos43f66a62005-03-25 12:31:53 -06004297 IPW_DEBUG_STATS("Rate quality : %3d%% (%dMbs)\n",
4298 rate_quality, priv->last_rate / 1000000);
Jeff Garzikbf794512005-07-31 13:07:26 -04004299
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004300 if (rx_packets_delta > 100 && rx_packets_delta + rx_err_delta)
Jeff Garzikbf794512005-07-31 13:07:26 -04004301 rx_quality = 100 - (rx_err_delta * 100) /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004302 (rx_packets_delta + rx_err_delta);
James Ketrenos43f66a62005-03-25 12:31:53 -06004303 else
4304 rx_quality = 100;
4305 IPW_DEBUG_STATS("Rx quality : %3d%% (%u errors, %u packets)\n",
4306 rx_quality, rx_err_delta, rx_packets_delta);
Jeff Garzikbf794512005-07-31 13:07:26 -04004307
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004308 if (tx_packets_delta > 100 && tx_packets_delta + tx_failures_delta)
Jeff Garzikbf794512005-07-31 13:07:26 -04004309 tx_quality = 100 - (tx_failures_delta * 100) /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004310 (tx_packets_delta + tx_failures_delta);
James Ketrenos43f66a62005-03-25 12:31:53 -06004311 else
4312 tx_quality = 100;
4313 IPW_DEBUG_STATS("Tx quality : %3d%% (%u errors, %u packets)\n",
4314 tx_quality, tx_failures_delta, tx_packets_delta);
Jeff Garzikbf794512005-07-31 13:07:26 -04004315
Zhu Yi00d21de2006-04-13 17:19:02 +08004316 rssi = priv->exp_avg_rssi;
James Ketrenosc848d0a2005-08-24 21:56:24 -05004317 signal_quality =
4318 (100 *
4319 (priv->ieee->perfect_rssi - priv->ieee->worst_rssi) *
4320 (priv->ieee->perfect_rssi - priv->ieee->worst_rssi) -
4321 (priv->ieee->perfect_rssi - rssi) *
4322 (15 * (priv->ieee->perfect_rssi - priv->ieee->worst_rssi) +
4323 62 * (priv->ieee->perfect_rssi - rssi))) /
4324 ((priv->ieee->perfect_rssi - priv->ieee->worst_rssi) *
4325 (priv->ieee->perfect_rssi - priv->ieee->worst_rssi));
4326 if (signal_quality > 100)
James Ketrenos43f66a62005-03-25 12:31:53 -06004327 signal_quality = 100;
James Ketrenosc848d0a2005-08-24 21:56:24 -05004328 else if (signal_quality < 1)
James Ketrenos43f66a62005-03-25 12:31:53 -06004329 signal_quality = 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05004330
Zhu Yi61fb9ed2006-04-13 17:19:55 +08004331 IPW_DEBUG_STATS("Signal level : %3d%% (%d dBm)\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06004332 signal_quality, rssi);
Jeff Garzikbf794512005-07-31 13:07:26 -04004333
Reinette Chatre21f8a732009-08-18 10:25:05 -07004334 quality = min(rx_quality, signal_quality);
4335 quality = min(tx_quality, quality);
4336 quality = min(rate_quality, quality);
4337 quality = min(beacon_quality, quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004338 if (quality == beacon_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004339 IPW_DEBUG_STATS("Quality (%d%%): Clamped to missed beacons.\n",
4340 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004341 if (quality == rate_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004342 IPW_DEBUG_STATS("Quality (%d%%): Clamped to rate quality.\n",
4343 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004344 if (quality == tx_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004345 IPW_DEBUG_STATS("Quality (%d%%): Clamped to Tx quality.\n",
4346 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004347 if (quality == rx_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004348 IPW_DEBUG_STATS("Quality (%d%%): Clamped to Rx quality.\n",
4349 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004350 if (quality == signal_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004351 IPW_DEBUG_STATS("Quality (%d%%): Clamped to signal quality.\n",
4352 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004353
4354 priv->quality = quality;
Jeff Garzikbf794512005-07-31 13:07:26 -04004355
4356 queue_delayed_work(priv->workqueue, &priv->gather_stats,
James Ketrenos43f66a62005-03-25 12:31:53 -06004357 IPW_STATS_INTERVAL);
4358}
4359
David Howellsc4028952006-11-22 14:57:56 +00004360static void ipw_bg_gather_stats(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -05004361{
David Howellsc4028952006-11-22 14:57:56 +00004362 struct ipw_priv *priv =
4363 container_of(work, struct ipw_priv, gather_stats.work);
Zhu Yi46441512006-01-24 16:37:59 +08004364 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00004365 ipw_gather_stats(priv);
Zhu Yi46441512006-01-24 16:37:59 +08004366 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05004367}
4368
Ben Cahille7582562005-10-06 15:34:41 -05004369/* Missed beacon behavior:
4370 * 1st missed -> roaming_threshold, just wait, don't do any scan/roam.
4371 * roaming_threshold -> disassociate_threshold, scan and roam for better signal.
4372 * Above disassociate threshold, give up and stop scanning.
4373 * Roaming is disabled if disassociate_threshold <= roaming_threshold */
Arjan van de Ven858119e2006-01-14 13:20:43 -08004374static void ipw_handle_missed_beacon(struct ipw_priv *priv,
James Ketrenosea2b26e2005-08-24 21:25:16 -05004375 int missed_count)
4376{
4377 priv->notif_missed_beacons = missed_count;
4378
James Ketrenosafbf30a2005-08-25 00:05:33 -05004379 if (missed_count > priv->disassociate_threshold &&
James Ketrenosea2b26e2005-08-24 21:25:16 -05004380 priv->status & STATUS_ASSOCIATED) {
4381 /* If associated and we've hit the missed
4382 * beacon threshold, disassociate, turn
4383 * off roaming, and abort any active scans */
4384 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF |
James Ketrenosafbf30a2005-08-25 00:05:33 -05004385 IPW_DL_STATE | IPW_DL_ASSOC,
James Ketrenosea2b26e2005-08-24 21:25:16 -05004386 "Missed beacon: %d - disassociate\n", missed_count);
4387 priv->status &= ~STATUS_ROAMING;
James Ketrenosa613bff2005-08-24 21:43:11 -05004388 if (priv->status & STATUS_SCANNING) {
4389 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF |
4390 IPW_DL_STATE,
4391 "Aborting scan with missed beacon.\n");
James Ketrenosea2b26e2005-08-24 21:25:16 -05004392 queue_work(priv->workqueue, &priv->abort_scan);
James Ketrenosa613bff2005-08-24 21:43:11 -05004393 }
4394
James Ketrenosea2b26e2005-08-24 21:25:16 -05004395 queue_work(priv->workqueue, &priv->disassociate);
4396 return;
4397 }
4398
4399 if (priv->status & STATUS_ROAMING) {
4400 /* If we are currently roaming, then just
4401 * print a debug statement... */
4402 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
4403 "Missed beacon: %d - roam in progress\n",
4404 missed_count);
4405 return;
4406 }
4407
Zhu Yi4bfdb912006-01-24 16:37:16 +08004408 if (roaming &&
4409 (missed_count > priv->roaming_threshold &&
4410 missed_count <= priv->disassociate_threshold)) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05004411 /* If we are not already roaming, set the ROAM
Ben Cahille7582562005-10-06 15:34:41 -05004412 * bit in the status and kick off a scan.
4413 * This can happen several times before we reach
4414 * disassociate_threshold. */
James Ketrenosea2b26e2005-08-24 21:25:16 -05004415 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
4416 "Missed beacon: %d - initiate "
4417 "roaming\n", missed_count);
4418 if (!(priv->status & STATUS_ROAMING)) {
4419 priv->status |= STATUS_ROAMING;
4420 if (!(priv->status & STATUS_SCANNING))
David Howellsc4028952006-11-22 14:57:56 +00004421 queue_delayed_work(priv->workqueue,
4422 &priv->request_scan, 0);
James Ketrenosea2b26e2005-08-24 21:25:16 -05004423 }
4424 return;
4425 }
4426
Helmut Schaa14a4dfe2008-12-10 13:17:26 +01004427 if (priv->status & STATUS_SCANNING &&
4428 missed_count > IPW_MB_SCAN_CANCEL_THRESHOLD) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05004429 /* Stop scan to keep fw from getting
4430 * stuck (only if we aren't roaming --
4431 * otherwise we'll never scan more than 2 or 3
4432 * channels..) */
James Ketrenosb095c382005-08-24 22:04:42 -05004433 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF | IPW_DL_STATE,
4434 "Aborting scan with missed beacon.\n");
James Ketrenosea2b26e2005-08-24 21:25:16 -05004435 queue_work(priv->workqueue, &priv->abort_scan);
4436 }
4437
4438 IPW_DEBUG_NOTIF("Missed beacon: %d\n", missed_count);
James Ketrenosea2b26e2005-08-24 21:25:16 -05004439}
4440
Dan Williams0b531672007-10-09 13:55:24 -04004441static void ipw_scan_event(struct work_struct *work)
4442{
4443 union iwreq_data wrqu;
4444
4445 struct ipw_priv *priv =
4446 container_of(work, struct ipw_priv, scan_event.work);
4447
4448 wrqu.data.length = 0;
4449 wrqu.data.flags = 0;
4450 wireless_send_event(priv->net_dev, SIOCGIWSCAN, &wrqu, NULL);
4451}
4452
4453static void handle_scan_event(struct ipw_priv *priv)
4454{
4455 /* Only userspace-requested scan completion events go out immediately */
4456 if (!priv->user_requested_scan) {
4457 if (!delayed_work_pending(&priv->scan_event))
4458 queue_delayed_work(priv->workqueue, &priv->scan_event,
Anton Blanchardbe84e3d2007-10-15 00:38:01 -05004459 round_jiffies_relative(msecs_to_jiffies(4000)));
Dan Williams0b531672007-10-09 13:55:24 -04004460 } else {
4461 union iwreq_data wrqu;
4462
4463 priv->user_requested_scan = 0;
4464 cancel_delayed_work(&priv->scan_event);
4465
4466 wrqu.data.length = 0;
4467 wrqu.data.flags = 0;
4468 wireless_send_event(priv->net_dev, SIOCGIWSCAN, &wrqu, NULL);
4469 }
4470}
4471
James Ketrenos43f66a62005-03-25 12:31:53 -06004472/**
4473 * Handle host notification packet.
4474 * Called from interrupt routine
4475 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08004476static void ipw_rx_notification(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06004477 struct ipw_rx_notification *notif)
4478{
John W. Linville9387b7c2008-09-30 20:59:05 -04004479 DECLARE_SSID_BUF(ssid);
Al Viroe62e1ee2007-12-27 01:36:46 -05004480 u16 size = le16_to_cpu(notif->size);
James Ketrenosa613bff2005-08-24 21:43:11 -05004481
Al Viroe62e1ee2007-12-27 01:36:46 -05004482 IPW_DEBUG_NOTIF("type = %i (%d bytes)\n", notif->subtype, size);
Jeff Garzikbf794512005-07-31 13:07:26 -04004483
James Ketrenos43f66a62005-03-25 12:31:53 -06004484 switch (notif->subtype) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004485 case HOST_NOTIFICATION_STATUS_ASSOCIATED:{
4486 struct notif_association *assoc = &notif->u.assoc;
Jeff Garzikbf794512005-07-31 13:07:26 -04004487
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004488 switch (assoc->state) {
4489 case CMAS_ASSOCIATED:{
4490 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4491 IPW_DL_ASSOC,
Frans Pop9fd1ea42010-03-24 19:46:31 +01004492 "associated: '%s' %pM\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04004493 print_ssid(ssid, priv->essid,
4494 priv->essid_len),
Johannes Berge1749612008-10-27 15:59:26 -07004495 priv->bssid);
Jeff Garzikbf794512005-07-31 13:07:26 -04004496
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004497 switch (priv->ieee->iw_mode) {
4498 case IW_MODE_INFRA:
4499 memcpy(priv->ieee->bssid,
4500 priv->bssid, ETH_ALEN);
4501 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06004502
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004503 case IW_MODE_ADHOC:
4504 memcpy(priv->ieee->bssid,
4505 priv->bssid, ETH_ALEN);
Jeff Garzikbf794512005-07-31 13:07:26 -04004506
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004507 /* clear out the station table */
4508 priv->num_stations = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06004509
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004510 IPW_DEBUG_ASSOC
4511 ("queueing adhoc check\n");
4512 queue_delayed_work(priv->
4513 workqueue,
4514 &priv->
4515 adhoc_check,
Al Viro5b5e8072007-12-27 01:54:06 -05004516 le16_to_cpu(priv->
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004517 assoc_request.
Al Viro5b5e8072007-12-27 01:54:06 -05004518 beacon_interval));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004519 break;
4520 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004521
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004522 priv->status &= ~STATUS_ASSOCIATING;
4523 priv->status |= STATUS_ASSOCIATED;
Zhu Yid8bad6d2005-07-13 12:25:38 -05004524 queue_work(priv->workqueue,
4525 &priv->system_config);
James Ketrenos43f66a62005-03-25 12:31:53 -06004526
Zhu Yie43e3c12006-04-13 17:20:45 +08004527#ifdef CONFIG_IPW2200_QOS
James Ketrenosafbf30a2005-08-25 00:05:33 -05004528#define IPW_GET_PACKET_STYPE(x) WLAN_FC_GET_STYPE( \
John W. Linville72118012008-09-30 21:43:03 -04004529 le16_to_cpu(((struct ieee80211_hdr *)(x))->frame_control))
James Ketrenosafbf30a2005-08-25 00:05:33 -05004530 if ((priv->status & STATUS_AUTH) &&
4531 (IPW_GET_PACKET_STYPE(&notif->u.raw)
4532 == IEEE80211_STYPE_ASSOC_RESP)) {
James Ketrenosb095c382005-08-24 22:04:42 -05004533 if ((sizeof
4534 (struct
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004535 libipw_assoc_response)
Al Viroe62e1ee2007-12-27 01:36:46 -05004536 <= size)
4537 && (size <= 2314)) {
James Ketrenosb095c382005-08-24 22:04:42 -05004538 struct
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004539 libipw_rx_stats
James Ketrenosb095c382005-08-24 22:04:42 -05004540 stats = {
Al Viroe62e1ee2007-12-27 01:36:46 -05004541 .len = size - 1,
James Ketrenosb095c382005-08-24 22:04:42 -05004542 };
4543
4544 IPW_DEBUG_QOS
4545 ("QoS Associate "
Al Viroe62e1ee2007-12-27 01:36:46 -05004546 "size %d\n", size);
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004547 libipw_rx_mgt(priv->
James Ketrenosb095c382005-08-24 22:04:42 -05004548 ieee,
4549 (struct
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004550 libipw_hdr_4addr
James Ketrenosb095c382005-08-24 22:04:42 -05004551 *)
4552 &notif->u.raw, &stats);
4553 }
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004554 }
James Ketrenosb095c382005-08-24 22:04:42 -05004555#endif
James Ketrenos43f66a62005-03-25 12:31:53 -06004556
James Ketrenosa613bff2005-08-24 21:43:11 -05004557 schedule_work(&priv->link_up);
James Ketrenos43f66a62005-03-25 12:31:53 -06004558
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004559 break;
4560 }
4561
4562 case CMAS_AUTHENTICATED:{
4563 if (priv->
4564 status & (STATUS_ASSOCIATED |
4565 STATUS_AUTH)) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004566 struct notif_authenticate *auth
4567 = &notif->u.auth;
4568 IPW_DEBUG(IPW_DL_NOTIF |
4569 IPW_DL_STATE |
4570 IPW_DL_ASSOC,
4571 "deauthenticated: '%s' "
Johannes Berge1749612008-10-27 15:59:26 -07004572 "%pM"
Frans Pop9fd1ea42010-03-24 19:46:31 +01004573 ": (0x%04X) - %s\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04004574 print_ssid(ssid,
4575 priv->
4576 essid,
4577 priv->
4578 essid_len),
Johannes Berge1749612008-10-27 15:59:26 -07004579 priv->bssid,
Al Viro83f7d572008-03-16 22:26:44 +00004580 le16_to_cpu(auth->status),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004581 ipw_get_status_code
Al Viro83f7d572008-03-16 22:26:44 +00004582 (le16_to_cpu
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004583 (auth->status)));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004584
4585 priv->status &=
4586 ~(STATUS_ASSOCIATING |
4587 STATUS_AUTH |
4588 STATUS_ASSOCIATED);
4589
James Ketrenosa613bff2005-08-24 21:43:11 -05004590 schedule_work(&priv->link_down);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004591 break;
4592 }
4593
4594 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4595 IPW_DL_ASSOC,
Johannes Berge1749612008-10-27 15:59:26 -07004596 "authenticated: '%s' %pM\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04004597 print_ssid(ssid, priv->essid,
4598 priv->essid_len),
Johannes Berge1749612008-10-27 15:59:26 -07004599 priv->bssid);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004600 break;
4601 }
4602
4603 case CMAS_INIT:{
James Ketrenosea2b26e2005-08-24 21:25:16 -05004604 if (priv->status & STATUS_AUTH) {
4605 struct
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004606 libipw_assoc_response
James Ketrenosea2b26e2005-08-24 21:25:16 -05004607 *resp;
4608 resp =
4609 (struct
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004610 libipw_assoc_response
James Ketrenosea2b26e2005-08-24 21:25:16 -05004611 *)&notif->u.raw;
4612 IPW_DEBUG(IPW_DL_NOTIF |
4613 IPW_DL_STATE |
4614 IPW_DL_ASSOC,
4615 "association failed (0x%04X): %s\n",
Al Viro83f7d572008-03-16 22:26:44 +00004616 le16_to_cpu(resp->status),
James Ketrenosea2b26e2005-08-24 21:25:16 -05004617 ipw_get_status_code
Al Viro83f7d572008-03-16 22:26:44 +00004618 (le16_to_cpu
James Ketrenosea2b26e2005-08-24 21:25:16 -05004619 (resp->status)));
4620 }
4621
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004622 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4623 IPW_DL_ASSOC,
Frans Pop9fd1ea42010-03-24 19:46:31 +01004624 "disassociated: '%s' %pM\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04004625 print_ssid(ssid, priv->essid,
4626 priv->essid_len),
Johannes Berge1749612008-10-27 15:59:26 -07004627 priv->bssid);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004628
4629 priv->status &=
4630 ~(STATUS_DISASSOCIATING |
4631 STATUS_ASSOCIATING |
4632 STATUS_ASSOCIATED | STATUS_AUTH);
James Ketrenosb095c382005-08-24 22:04:42 -05004633 if (priv->assoc_network
4634 && (priv->assoc_network->
4635 capability &
4636 WLAN_CAPABILITY_IBSS))
4637 ipw_remove_current_network
4638 (priv);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004639
James Ketrenosa613bff2005-08-24 21:43:11 -05004640 schedule_work(&priv->link_down);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004641
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004642 break;
4643 }
4644
James Ketrenosb095c382005-08-24 22:04:42 -05004645 case CMAS_RX_ASSOC_RESP:
4646 break;
4647
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004648 default:
4649 IPW_ERROR("assoc: unknown (%d)\n",
4650 assoc->state);
4651 break;
4652 }
4653
James Ketrenos43f66a62005-03-25 12:31:53 -06004654 break;
4655 }
Jeff Garzikbf794512005-07-31 13:07:26 -04004656
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004657 case HOST_NOTIFICATION_STATUS_AUTHENTICATE:{
4658 struct notif_authenticate *auth = &notif->u.auth;
4659 switch (auth->state) {
4660 case CMAS_AUTHENTICATED:
4661 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
Frans Pop9fd1ea42010-03-24 19:46:31 +01004662 "authenticated: '%s' %pM\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04004663 print_ssid(ssid, priv->essid,
4664 priv->essid_len),
Johannes Berge1749612008-10-27 15:59:26 -07004665 priv->bssid);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004666 priv->status |= STATUS_AUTH;
4667 break;
4668
4669 case CMAS_INIT:
4670 if (priv->status & STATUS_AUTH) {
4671 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4672 IPW_DL_ASSOC,
4673 "authentication failed (0x%04X): %s\n",
Al Viro83f7d572008-03-16 22:26:44 +00004674 le16_to_cpu(auth->status),
4675 ipw_get_status_code(le16_to_cpu
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004676 (auth->
4677 status)));
4678 }
4679 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4680 IPW_DL_ASSOC,
Johannes Berge1749612008-10-27 15:59:26 -07004681 "deauthenticated: '%s' %pM\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04004682 print_ssid(ssid, priv->essid,
4683 priv->essid_len),
Johannes Berge1749612008-10-27 15:59:26 -07004684 priv->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06004685
4686 priv->status &= ~(STATUS_ASSOCIATING |
4687 STATUS_AUTH |
4688 STATUS_ASSOCIATED);
4689
James Ketrenosa613bff2005-08-24 21:43:11 -05004690 schedule_work(&priv->link_down);
James Ketrenos43f66a62005-03-25 12:31:53 -06004691 break;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004692
4693 case CMAS_TX_AUTH_SEQ_1:
4694 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4695 IPW_DL_ASSOC, "AUTH_SEQ_1\n");
4696 break;
4697 case CMAS_RX_AUTH_SEQ_2:
4698 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4699 IPW_DL_ASSOC, "AUTH_SEQ_2\n");
4700 break;
4701 case CMAS_AUTH_SEQ_1_PASS:
4702 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4703 IPW_DL_ASSOC, "AUTH_SEQ_1_PASS\n");
4704 break;
4705 case CMAS_AUTH_SEQ_1_FAIL:
4706 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4707 IPW_DL_ASSOC, "AUTH_SEQ_1_FAIL\n");
4708 break;
4709 case CMAS_TX_AUTH_SEQ_3:
4710 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4711 IPW_DL_ASSOC, "AUTH_SEQ_3\n");
4712 break;
4713 case CMAS_RX_AUTH_SEQ_4:
4714 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4715 IPW_DL_ASSOC, "RX_AUTH_SEQ_4\n");
4716 break;
4717 case CMAS_AUTH_SEQ_2_PASS:
4718 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4719 IPW_DL_ASSOC, "AUTH_SEQ_2_PASS\n");
4720 break;
4721 case CMAS_AUTH_SEQ_2_FAIL:
4722 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4723 IPW_DL_ASSOC, "AUT_SEQ_2_FAIL\n");
4724 break;
4725 case CMAS_TX_ASSOC:
4726 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4727 IPW_DL_ASSOC, "TX_ASSOC\n");
4728 break;
4729 case CMAS_RX_ASSOC_RESP:
4730 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4731 IPW_DL_ASSOC, "RX_ASSOC_RESP\n");
James Ketrenosb095c382005-08-24 22:04:42 -05004732
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004733 break;
4734 case CMAS_ASSOCIATED:
4735 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4736 IPW_DL_ASSOC, "ASSOCIATED\n");
4737 break;
4738 default:
4739 IPW_DEBUG_NOTIF("auth: failure - %d\n",
4740 auth->state);
4741 break;
4742 }
4743 break;
4744 }
4745
4746 case HOST_NOTIFICATION_STATUS_SCAN_CHANNEL_RESULT:{
4747 struct notif_channel_result *x =
4748 &notif->u.channel_result;
4749
Al Viroe62e1ee2007-12-27 01:36:46 -05004750 if (size == sizeof(*x)) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004751 IPW_DEBUG_SCAN("Scan result for channel %d\n",
4752 x->channel_num);
4753 } else {
4754 IPW_DEBUG_SCAN("Scan result of wrong size %d "
4755 "(should be %zd)\n",
Al Viroe62e1ee2007-12-27 01:36:46 -05004756 size, sizeof(*x));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004757 }
4758 break;
4759 }
4760
4761 case HOST_NOTIFICATION_STATUS_SCAN_COMPLETED:{
4762 struct notif_scan_complete *x = &notif->u.scan_complete;
Al Viroe62e1ee2007-12-27 01:36:46 -05004763 if (size == sizeof(*x)) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004764 IPW_DEBUG_SCAN
4765 ("Scan completed: type %d, %d channels, "
4766 "%d status\n", x->scan_type,
4767 x->num_channels, x->status);
4768 } else {
4769 IPW_ERROR("Scan completed of wrong size %d "
4770 "(should be %zd)\n",
Al Viroe62e1ee2007-12-27 01:36:46 -05004771 size, sizeof(*x));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004772 }
4773
4774 priv->status &=
4775 ~(STATUS_SCANNING | STATUS_SCAN_ABORTING);
4776
James Ketrenosa0e04ab2005-08-25 00:49:43 -05004777 wake_up_interruptible(&priv->wait_state);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004778 cancel_delayed_work(&priv->scan_check);
4779
James Ketrenosb095c382005-08-24 22:04:42 -05004780 if (priv->status & STATUS_EXIT_PENDING)
4781 break;
4782
4783 priv->ieee->scans++;
4784
4785#ifdef CONFIG_IPW2200_MONITOR
4786 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05004787 priv->status |= STATUS_SCAN_FORCED;
David Howellsc4028952006-11-22 14:57:56 +00004788 queue_delayed_work(priv->workqueue,
4789 &priv->request_scan, 0);
James Ketrenosb095c382005-08-24 22:04:42 -05004790 break;
4791 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05004792 priv->status &= ~STATUS_SCAN_FORCED;
James Ketrenosb095c382005-08-24 22:04:42 -05004793#endif /* CONFIG_IPW2200_MONITOR */
4794
Dan Williamsea177302008-06-02 17:51:23 -04004795 /* Do queued direct scans first */
4796 if (priv->status & STATUS_DIRECT_SCAN_PENDING) {
4797 queue_delayed_work(priv->workqueue,
4798 &priv->request_direct_scan, 0);
4799 }
4800
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004801 if (!(priv->status & (STATUS_ASSOCIATED |
4802 STATUS_ASSOCIATING |
4803 STATUS_ROAMING |
4804 STATUS_DISASSOCIATING)))
4805 queue_work(priv->workqueue, &priv->associate);
4806 else if (priv->status & STATUS_ROAMING) {
Ben Cahille7582562005-10-06 15:34:41 -05004807 if (x->status == SCAN_COMPLETED_STATUS_COMPLETE)
4808 /* If a scan completed and we are in roam mode, then
4809 * the scan that completed was the one requested as a
4810 * result of entering roam... so, schedule the
4811 * roam work */
4812 queue_work(priv->workqueue,
4813 &priv->roam);
4814 else
4815 /* Don't schedule if we aborted the scan */
4816 priv->status &= ~STATUS_ROAMING;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004817 } else if (priv->status & STATUS_SCAN_PENDING)
David Howellsc4028952006-11-22 14:57:56 +00004818 queue_delayed_work(priv->workqueue,
4819 &priv->request_scan, 0);
James Ketrenosa613bff2005-08-24 21:43:11 -05004820 else if (priv->config & CFG_BACKGROUND_SCAN
4821 && priv->status & STATUS_ASSOCIATED)
4822 queue_delayed_work(priv->workqueue,
Stephen Hemminger1c9d5e42007-06-22 21:34:06 -07004823 &priv->request_scan,
Anton Blanchardbe84e3d2007-10-15 00:38:01 -05004824 round_jiffies_relative(HZ));
Zhu Yi07f02e42006-04-13 17:19:25 +08004825
4826 /* Send an empty event to user space.
4827 * We don't send the received data on the event because
4828 * it would require us to do complex transcoding, and
4829 * we want to minimise the work done in the irq handler
4830 * Use a request to extract the data.
4831 * Also, we generate this even for any scan, regardless
4832 * on how the scan was initiated. User space can just
4833 * sync on periodic scan to get fresh data...
4834 * Jean II */
Dan Williams0b531672007-10-09 13:55:24 -04004835 if (x->status == SCAN_COMPLETED_STATUS_COMPLETE)
4836 handle_scan_event(priv);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004837 break;
4838 }
4839
4840 case HOST_NOTIFICATION_STATUS_FRAG_LENGTH:{
4841 struct notif_frag_length *x = &notif->u.frag_len;
4842
Al Viroe62e1ee2007-12-27 01:36:46 -05004843 if (size == sizeof(*x))
James Ketrenosa613bff2005-08-24 21:43:11 -05004844 IPW_ERROR("Frag length: %d\n",
4845 le16_to_cpu(x->frag_length));
4846 else
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004847 IPW_ERROR("Frag length of wrong size %d "
4848 "(should be %zd)\n",
Al Viroe62e1ee2007-12-27 01:36:46 -05004849 size, sizeof(*x));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004850 break;
4851 }
4852
4853 case HOST_NOTIFICATION_STATUS_LINK_DETERIORATION:{
4854 struct notif_link_deterioration *x =
4855 &notif->u.link_deterioration;
James Ketrenosafbf30a2005-08-25 00:05:33 -05004856
Al Viroe62e1ee2007-12-27 01:36:46 -05004857 if (size == sizeof(*x)) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004858 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
Cahill, Ben M12977152006-03-08 02:58:02 +08004859 "link deterioration: type %d, cnt %d\n",
4860 x->silence_notification_type,
4861 x->silence_count);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004862 memcpy(&priv->last_link_deterioration, x,
4863 sizeof(*x));
4864 } else {
4865 IPW_ERROR("Link Deterioration of wrong size %d "
4866 "(should be %zd)\n",
Al Viroe62e1ee2007-12-27 01:36:46 -05004867 size, sizeof(*x));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004868 }
4869 break;
4870 }
4871
4872 case HOST_NOTIFICATION_DINO_CONFIG_RESPONSE:{
4873 IPW_ERROR("Dino config\n");
4874 if (priv->hcmd
James Ketrenosa613bff2005-08-24 21:43:11 -05004875 && priv->hcmd->cmd != HOST_CMD_DINO_CONFIG)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004876 IPW_ERROR("Unexpected DINO_CONFIG_RESPONSE\n");
James Ketrenosa613bff2005-08-24 21:43:11 -05004877
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004878 break;
4879 }
4880
4881 case HOST_NOTIFICATION_STATUS_BEACON_STATE:{
4882 struct notif_beacon_state *x = &notif->u.beacon_state;
Al Viroe62e1ee2007-12-27 01:36:46 -05004883 if (size != sizeof(*x)) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004884 IPW_ERROR
4885 ("Beacon state of wrong size %d (should "
Al Viroe62e1ee2007-12-27 01:36:46 -05004886 "be %zd)\n", size, sizeof(*x));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004887 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04004888 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004889
James Ketrenosa613bff2005-08-24 21:43:11 -05004890 if (le32_to_cpu(x->state) ==
4891 HOST_NOTIFICATION_STATUS_BEACON_MISSING)
4892 ipw_handle_missed_beacon(priv,
4893 le32_to_cpu(x->
4894 number));
Jeff Garzikbf794512005-07-31 13:07:26 -04004895
James Ketrenos43f66a62005-03-25 12:31:53 -06004896 break;
4897 }
Jeff Garzikbf794512005-07-31 13:07:26 -04004898
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004899 case HOST_NOTIFICATION_STATUS_TGI_TX_KEY:{
4900 struct notif_tgi_tx_key *x = &notif->u.tgi_tx_key;
Al Viroe62e1ee2007-12-27 01:36:46 -05004901 if (size == sizeof(*x)) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004902 IPW_ERROR("TGi Tx Key: state 0x%02x sec type "
4903 "0x%02x station %d\n",
4904 x->key_state, x->security_type,
4905 x->station_index);
4906 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06004907 }
4908
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004909 IPW_ERROR
4910 ("TGi Tx Key of wrong size %d (should be %zd)\n",
Al Viroe62e1ee2007-12-27 01:36:46 -05004911 size, sizeof(*x));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004912 break;
4913 }
4914
4915 case HOST_NOTIFICATION_CALIB_KEEP_RESULTS:{
4916 struct notif_calibration *x = &notif->u.calibration;
4917
Al Viroe62e1ee2007-12-27 01:36:46 -05004918 if (size == sizeof(*x)) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004919 memcpy(&priv->calib, x, sizeof(*x));
4920 IPW_DEBUG_INFO("TODO: Calibration\n");
4921 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06004922 }
4923
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004924 IPW_ERROR
4925 ("Calibration of wrong size %d (should be %zd)\n",
Al Viroe62e1ee2007-12-27 01:36:46 -05004926 size, sizeof(*x));
James Ketrenos43f66a62005-03-25 12:31:53 -06004927 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04004928 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004929
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004930 case HOST_NOTIFICATION_NOISE_STATS:{
Al Viroe62e1ee2007-12-27 01:36:46 -05004931 if (size == sizeof(u32)) {
Zhu Yi00d21de2006-04-13 17:19:02 +08004932 priv->exp_avg_noise =
4933 exponential_average(priv->exp_avg_noise,
4934 (u8) (le32_to_cpu(notif->u.noise.value) & 0xff),
4935 DEPTH_NOISE);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004936 break;
4937 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004938
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004939 IPW_ERROR
4940 ("Noise stat is wrong size %d (should be %zd)\n",
Al Viroe62e1ee2007-12-27 01:36:46 -05004941 size, sizeof(u32));
James Ketrenos43f66a62005-03-25 12:31:53 -06004942 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04004943 }
4944
James Ketrenos43f66a62005-03-25 12:31:53 -06004945 default:
Zhu Yi1dd31b62006-02-20 18:28:09 -08004946 IPW_DEBUG_NOTIF("Unknown notification: "
4947 "subtype=%d,flags=0x%2x,size=%d\n",
Al Viroe62e1ee2007-12-27 01:36:46 -05004948 notif->subtype, notif->flags, size);
James Ketrenos43f66a62005-03-25 12:31:53 -06004949 }
4950}
4951
4952/**
4953 * Destroys all DMA structures and initialise them again
Jeff Garzikbf794512005-07-31 13:07:26 -04004954 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004955 * @param priv
4956 * @return error code
4957 */
4958static int ipw_queue_reset(struct ipw_priv *priv)
4959{
4960 int rc = 0;
4961 /** @todo customize queue sizes */
4962 int nTx = 64, nTxCmd = 8;
4963 ipw_tx_queue_free(priv);
4964 /* Tx CMD queue */
4965 rc = ipw_queue_tx_init(priv, &priv->txq_cmd, nTxCmd,
James Ketrenosb095c382005-08-24 22:04:42 -05004966 IPW_TX_CMD_QUEUE_READ_INDEX,
4967 IPW_TX_CMD_QUEUE_WRITE_INDEX,
4968 IPW_TX_CMD_QUEUE_BD_BASE,
4969 IPW_TX_CMD_QUEUE_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004970 if (rc) {
4971 IPW_ERROR("Tx Cmd queue init failed\n");
4972 goto error;
4973 }
4974 /* Tx queue(s) */
4975 rc = ipw_queue_tx_init(priv, &priv->txq[0], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004976 IPW_TX_QUEUE_0_READ_INDEX,
4977 IPW_TX_QUEUE_0_WRITE_INDEX,
4978 IPW_TX_QUEUE_0_BD_BASE, IPW_TX_QUEUE_0_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004979 if (rc) {
4980 IPW_ERROR("Tx 0 queue init failed\n");
4981 goto error;
4982 }
4983 rc = ipw_queue_tx_init(priv, &priv->txq[1], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004984 IPW_TX_QUEUE_1_READ_INDEX,
4985 IPW_TX_QUEUE_1_WRITE_INDEX,
4986 IPW_TX_QUEUE_1_BD_BASE, IPW_TX_QUEUE_1_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004987 if (rc) {
4988 IPW_ERROR("Tx 1 queue init failed\n");
4989 goto error;
4990 }
4991 rc = ipw_queue_tx_init(priv, &priv->txq[2], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004992 IPW_TX_QUEUE_2_READ_INDEX,
4993 IPW_TX_QUEUE_2_WRITE_INDEX,
4994 IPW_TX_QUEUE_2_BD_BASE, IPW_TX_QUEUE_2_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004995 if (rc) {
4996 IPW_ERROR("Tx 2 queue init failed\n");
4997 goto error;
4998 }
4999 rc = ipw_queue_tx_init(priv, &priv->txq[3], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05005000 IPW_TX_QUEUE_3_READ_INDEX,
5001 IPW_TX_QUEUE_3_WRITE_INDEX,
5002 IPW_TX_QUEUE_3_BD_BASE, IPW_TX_QUEUE_3_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06005003 if (rc) {
5004 IPW_ERROR("Tx 3 queue init failed\n");
5005 goto error;
5006 }
5007 /* statistics */
5008 priv->rx_bufs_min = 0;
5009 priv->rx_pend_max = 0;
5010 return rc;
5011
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005012 error:
James Ketrenos43f66a62005-03-25 12:31:53 -06005013 ipw_tx_queue_free(priv);
5014 return rc;
5015}
5016
5017/**
5018 * Reclaim Tx queue entries no more used by NIC.
Jeff Garzikbf794512005-07-31 13:07:26 -04005019 *
Stefano Brivio8ff9d212008-01-12 23:12:26 +01005020 * When FW advances 'R' index, all entries between old and
James Ketrenos43f66a62005-03-25 12:31:53 -06005021 * new 'R' index need to be reclaimed. As result, some free space
5022 * forms. If there is enough free space (> low mark), wake Tx queue.
Jeff Garzikbf794512005-07-31 13:07:26 -04005023 *
James Ketrenos43f66a62005-03-25 12:31:53 -06005024 * @note Need to protect against garbage in 'R' index
5025 * @param priv
5026 * @param txq
5027 * @param qindex
5028 * @return Number of used entries remains in the queue
5029 */
Jeff Garzikbf794512005-07-31 13:07:26 -04005030static int ipw_queue_tx_reclaim(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06005031 struct clx2_tx_queue *txq, int qindex)
5032{
5033 u32 hw_tail;
5034 int used;
5035 struct clx2_queue *q = &txq->q;
5036
5037 hw_tail = ipw_read32(priv, q->reg_r);
5038 if (hw_tail >= q->n_bd) {
5039 IPW_ERROR
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005040 ("Read index for DMA queue (%d) is out of range [0-%d)\n",
5041 hw_tail, q->n_bd);
James Ketrenos43f66a62005-03-25 12:31:53 -06005042 goto done;
5043 }
5044 for (; q->last_used != hw_tail;
5045 q->last_used = ipw_queue_inc_wrap(q->last_used, q->n_bd)) {
5046 ipw_queue_tx_free_tfd(priv, txq);
5047 priv->tx_packets++;
5048 }
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005049 done:
Dan Williams943dbef2008-02-14 17:49:41 -05005050 if ((ipw_tx_queue_space(q) > q->low_mark) &&
David S. Miller521c4d92008-07-22 18:32:47 -07005051 (qindex >= 0))
James Ketrenos9ddf84f2005-08-16 17:07:11 -05005052 netif_wake_queue(priv->net_dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06005053 used = q->first_empty - q->last_used;
5054 if (used < 0)
5055 used += q->n_bd;
5056
5057 return used;
5058}
5059
5060static int ipw_queue_tx_hcmd(struct ipw_priv *priv, int hcmd, void *buf,
5061 int len, int sync)
5062{
5063 struct clx2_tx_queue *txq = &priv->txq_cmd;
5064 struct clx2_queue *q = &txq->q;
5065 struct tfd_frame *tfd;
5066
Dan Williams943dbef2008-02-14 17:49:41 -05005067 if (ipw_tx_queue_space(q) < (sync ? 1 : 2)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005068 IPW_ERROR("No space for Tx\n");
5069 return -EBUSY;
5070 }
5071
5072 tfd = &txq->bd[q->first_empty];
5073 txq->txb[q->first_empty] = NULL;
5074
5075 memset(tfd, 0, sizeof(*tfd));
5076 tfd->control_flags.message_type = TX_HOST_COMMAND_TYPE;
5077 tfd->control_flags.control_bits = TFD_NEED_IRQ_MASK;
5078 priv->hcmd_seq++;
5079 tfd->u.cmd.index = hcmd;
5080 tfd->u.cmd.length = len;
5081 memcpy(tfd->u.cmd.payload, buf, len);
5082 q->first_empty = ipw_queue_inc_wrap(q->first_empty, q->n_bd);
5083 ipw_write32(priv, q->reg_w, q->first_empty);
5084 _ipw_read32(priv, 0x90);
5085
5086 return 0;
5087}
5088
Jeff Garzikbf794512005-07-31 13:07:26 -04005089/*
James Ketrenos43f66a62005-03-25 12:31:53 -06005090 * Rx theory of operation
5091 *
5092 * The host allocates 32 DMA target addresses and passes the host address
James Ketrenosb095c382005-08-24 22:04:42 -05005093 * to the firmware at register IPW_RFDS_TABLE_LOWER + N * RFD_SIZE where N is
James Ketrenos43f66a62005-03-25 12:31:53 -06005094 * 0 to 31
5095 *
5096 * Rx Queue Indexes
5097 * The host/firmware share two index registers for managing the Rx buffers.
5098 *
Jeff Garzikbf794512005-07-31 13:07:26 -04005099 * The READ index maps to the first position that the firmware may be writing
5100 * to -- the driver can read up to (but not including) this position and get
5101 * good data.
James Ketrenos43f66a62005-03-25 12:31:53 -06005102 * The READ index is managed by the firmware once the card is enabled.
5103 *
5104 * The WRITE index maps to the last position the driver has read from -- the
5105 * position preceding WRITE is the last slot the firmware can place a packet.
5106 *
5107 * The queue is empty (no good data) if WRITE = READ - 1, and is full if
Jeff Garzikbf794512005-07-31 13:07:26 -04005108 * WRITE = READ.
James Ketrenos43f66a62005-03-25 12:31:53 -06005109 *
Jeff Garzikbf794512005-07-31 13:07:26 -04005110 * During initialization the host sets up the READ queue position to the first
James Ketrenos43f66a62005-03-25 12:31:53 -06005111 * INDEX position, and WRITE to the last (READ - 1 wrapped)
5112 *
5113 * When the firmware places a packet in a buffer it will advance the READ index
5114 * and fire the RX interrupt. The driver can then query the READ index and
5115 * process as many packets as possible, moving the WRITE index forward as it
5116 * resets the Rx queue buffers with new memory.
Jeff Garzikbf794512005-07-31 13:07:26 -04005117 *
James Ketrenos43f66a62005-03-25 12:31:53 -06005118 * The management in the driver is as follows:
Jeff Garzikbf794512005-07-31 13:07:26 -04005119 * + A list of pre-allocated SKBs is stored in ipw->rxq->rx_free. When
James Ketrenos43f66a62005-03-25 12:31:53 -06005120 * ipw->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled
Jeff Garzikbf794512005-07-31 13:07:26 -04005121 * to replensish the ipw->rxq->rx_free.
James Ketrenos43f66a62005-03-25 12:31:53 -06005122 * + In ipw_rx_queue_replenish (scheduled) if 'processed' != 'read' then the
5123 * ipw->rxq is replenished and the READ INDEX is updated (updating the
5124 * 'processed' and 'read' driver indexes as well)
5125 * + A received packet is processed and handed to the kernel network stack,
5126 * detached from the ipw->rxq. The driver 'processed' index is updated.
5127 * + The Host/Firmware ipw->rxq is replenished at tasklet time from the rx_free
Jeff Garzikbf794512005-07-31 13:07:26 -04005128 * list. If there are no allocated buffers in ipw->rxq->rx_free, the READ
5129 * INDEX is not incremented and ipw->status(RX_STALLED) is set. If there
James Ketrenos43f66a62005-03-25 12:31:53 -06005130 * were enough free buffers and RX_STALLED is set it is cleared.
5131 *
5132 *
5133 * Driver sequence:
5134 *
Jeff Garzikbf794512005-07-31 13:07:26 -04005135 * ipw_rx_queue_alloc() Allocates rx_free
James Ketrenos43f66a62005-03-25 12:31:53 -06005136 * ipw_rx_queue_replenish() Replenishes rx_free list from rx_used, and calls
5137 * ipw_rx_queue_restock
5138 * ipw_rx_queue_restock() Moves available buffers from rx_free into Rx
5139 * queue, updates firmware pointers, and updates
5140 * the WRITE index. If insufficient rx_free buffers
5141 * are available, schedules ipw_rx_queue_replenish
5142 *
5143 * -- enable interrupts --
5144 * ISR - ipw_rx() Detach ipw_rx_mem_buffers from pool up to the
Jeff Garzikbf794512005-07-31 13:07:26 -04005145 * READ INDEX, detaching the SKB from the pool.
James Ketrenos43f66a62005-03-25 12:31:53 -06005146 * Moves the packet buffer from queue to rx_used.
5147 * Calls ipw_rx_queue_restock to refill any empty
5148 * slots.
5149 * ...
5150 *
5151 */
5152
Jeff Garzikbf794512005-07-31 13:07:26 -04005153/*
James Ketrenos43f66a62005-03-25 12:31:53 -06005154 * If there are slots in the RX queue that need to be restocked,
5155 * and we have free pre-allocated buffers, fill the ranks as much
5156 * as we can pulling from rx_free.
5157 *
5158 * This moves the 'write' index forward to catch up with 'processed', and
5159 * also updates the memory address in the firmware to reference the new
5160 * target buffer.
5161 */
5162static void ipw_rx_queue_restock(struct ipw_priv *priv)
5163{
5164 struct ipw_rx_queue *rxq = priv->rxq;
5165 struct list_head *element;
5166 struct ipw_rx_mem_buffer *rxb;
5167 unsigned long flags;
5168 int write;
5169
5170 spin_lock_irqsave(&rxq->lock, flags);
5171 write = rxq->write;
Dan Williams943dbef2008-02-14 17:49:41 -05005172 while ((ipw_rx_queue_space(rxq) > 0) && (rxq->free_count)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005173 element = rxq->rx_free.next;
5174 rxb = list_entry(element, struct ipw_rx_mem_buffer, list);
5175 list_del(element);
5176
James Ketrenosb095c382005-08-24 22:04:42 -05005177 ipw_write32(priv, IPW_RFDS_TABLE_LOWER + rxq->write * RFD_SIZE,
James Ketrenos43f66a62005-03-25 12:31:53 -06005178 rxb->dma_addr);
5179 rxq->queue[rxq->write] = rxb;
5180 rxq->write = (rxq->write + 1) % RX_QUEUE_SIZE;
5181 rxq->free_count--;
5182 }
5183 spin_unlock_irqrestore(&rxq->lock, flags);
5184
Jeff Garzikbf794512005-07-31 13:07:26 -04005185 /* If the pre-allocated buffer pool is dropping low, schedule to
James Ketrenos43f66a62005-03-25 12:31:53 -06005186 * refill it */
5187 if (rxq->free_count <= RX_LOW_WATERMARK)
5188 queue_work(priv->workqueue, &priv->rx_replenish);
5189
5190 /* If we've added more space for the firmware to place data, tell it */
Jeff Garzikbf794512005-07-31 13:07:26 -04005191 if (write != rxq->write)
James Ketrenosb095c382005-08-24 22:04:42 -05005192 ipw_write32(priv, IPW_RX_WRITE_INDEX, rxq->write);
James Ketrenos43f66a62005-03-25 12:31:53 -06005193}
5194
5195/*
5196 * Move all used packet from rx_used to rx_free, allocating a new SKB for each.
Jeff Garzikbf794512005-07-31 13:07:26 -04005197 * Also restock the Rx queue via ipw_rx_queue_restock.
5198 *
James Ketrenos43f66a62005-03-25 12:31:53 -06005199 * This is called as a scheduled work item (except for during intialization)
5200 */
5201static void ipw_rx_queue_replenish(void *data)
5202{
5203 struct ipw_priv *priv = data;
5204 struct ipw_rx_queue *rxq = priv->rxq;
5205 struct list_head *element;
5206 struct ipw_rx_mem_buffer *rxb;
5207 unsigned long flags;
5208
5209 spin_lock_irqsave(&rxq->lock, flags);
5210 while (!list_empty(&rxq->rx_used)) {
5211 element = rxq->rx_used.next;
5212 rxb = list_entry(element, struct ipw_rx_mem_buffer, list);
James Ketrenosb095c382005-08-24 22:04:42 -05005213 rxb->skb = alloc_skb(IPW_RX_BUF_SIZE, GFP_ATOMIC);
James Ketrenos43f66a62005-03-25 12:31:53 -06005214 if (!rxb->skb) {
5215 printk(KERN_CRIT "%s: Can not allocate SKB buffers.\n",
5216 priv->net_dev->name);
5217 /* We don't reschedule replenish work here -- we will
5218 * call the restock method and if it still needs
5219 * more buffers it will schedule replenish */
5220 break;
5221 }
5222 list_del(element);
Jeff Garzikbf794512005-07-31 13:07:26 -04005223
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005224 rxb->dma_addr =
5225 pci_map_single(priv->pci_dev, rxb->skb->data,
James Ketrenosb095c382005-08-24 22:04:42 -05005226 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
Jeff Garzikbf794512005-07-31 13:07:26 -04005227
James Ketrenos43f66a62005-03-25 12:31:53 -06005228 list_add_tail(&rxb->list, &rxq->rx_free);
5229 rxq->free_count++;
5230 }
5231 spin_unlock_irqrestore(&rxq->lock, flags);
5232
5233 ipw_rx_queue_restock(priv);
5234}
5235
David Howellsc4028952006-11-22 14:57:56 +00005236static void ipw_bg_rx_queue_replenish(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -05005237{
David Howellsc4028952006-11-22 14:57:56 +00005238 struct ipw_priv *priv =
5239 container_of(work, struct ipw_priv, rx_replenish);
Zhu Yi46441512006-01-24 16:37:59 +08005240 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00005241 ipw_rx_queue_replenish(priv);
Zhu Yi46441512006-01-24 16:37:59 +08005242 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005243}
5244
James Ketrenos43f66a62005-03-25 12:31:53 -06005245/* Assumes that the skb field of the buffers in 'pool' is kept accurate.
Zhu Yic7b6a672006-01-24 16:37:05 +08005246 * If an SKB has been detached, the POOL needs to have its SKB set to NULL
Jeff Garzikbf794512005-07-31 13:07:26 -04005247 * This free routine walks the list of POOL entries and if SKB is set to
James Ketrenos43f66a62005-03-25 12:31:53 -06005248 * non NULL it is unmapped and freed
5249 */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005250static void ipw_rx_queue_free(struct ipw_priv *priv, struct ipw_rx_queue *rxq)
James Ketrenos43f66a62005-03-25 12:31:53 -06005251{
5252 int i;
5253
5254 if (!rxq)
5255 return;
Jeff Garzikbf794512005-07-31 13:07:26 -04005256
James Ketrenos43f66a62005-03-25 12:31:53 -06005257 for (i = 0; i < RX_QUEUE_SIZE + RX_FREE_BUFFERS; i++) {
5258 if (rxq->pool[i].skb != NULL) {
5259 pci_unmap_single(priv->pci_dev, rxq->pool[i].dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05005260 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06005261 dev_kfree_skb(rxq->pool[i].skb);
5262 }
5263 }
5264
5265 kfree(rxq);
5266}
5267
5268static struct ipw_rx_queue *ipw_rx_queue_alloc(struct ipw_priv *priv)
5269{
5270 struct ipw_rx_queue *rxq;
5271 int i;
5272
Takisc75f4742005-12-01 01:41:45 -08005273 rxq = kzalloc(sizeof(*rxq), GFP_KERNEL);
Panagiotis Issarisad18b0e2005-09-05 04:14:10 +02005274 if (unlikely(!rxq)) {
5275 IPW_ERROR("memory allocation failed\n");
5276 return NULL;
5277 }
James Ketrenos43f66a62005-03-25 12:31:53 -06005278 spin_lock_init(&rxq->lock);
5279 INIT_LIST_HEAD(&rxq->rx_free);
5280 INIT_LIST_HEAD(&rxq->rx_used);
5281
5282 /* Fill the rx_used queue with _all_ of the Rx buffers */
Jeff Garzikbf794512005-07-31 13:07:26 -04005283 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++)
James Ketrenos43f66a62005-03-25 12:31:53 -06005284 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
5285
5286 /* Set us so that we have processed and used all buffers, but have
5287 * not restocked the Rx queue with fresh buffers */
5288 rxq->read = rxq->write = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005289 rxq->free_count = 0;
5290
5291 return rxq;
5292}
5293
5294static int ipw_is_rate_in_mask(struct ipw_priv *priv, int ieee_mode, u8 rate)
5295{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005296 rate &= ~LIBIPW_BASIC_RATE_MASK;
James Ketrenos43f66a62005-03-25 12:31:53 -06005297 if (ieee_mode == IEEE_A) {
5298 switch (rate) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005299 case LIBIPW_OFDM_RATE_6MB:
5300 return priv->rates_mask & LIBIPW_OFDM_RATE_6MB_MASK ?
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005301 1 : 0;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005302 case LIBIPW_OFDM_RATE_9MB:
5303 return priv->rates_mask & LIBIPW_OFDM_RATE_9MB_MASK ?
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005304 1 : 0;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005305 case LIBIPW_OFDM_RATE_12MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005306 return priv->
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005307 rates_mask & LIBIPW_OFDM_RATE_12MB_MASK ? 1 : 0;
5308 case LIBIPW_OFDM_RATE_18MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005309 return priv->
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005310 rates_mask & LIBIPW_OFDM_RATE_18MB_MASK ? 1 : 0;
5311 case LIBIPW_OFDM_RATE_24MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005312 return priv->
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005313 rates_mask & LIBIPW_OFDM_RATE_24MB_MASK ? 1 : 0;
5314 case LIBIPW_OFDM_RATE_36MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005315 return priv->
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005316 rates_mask & LIBIPW_OFDM_RATE_36MB_MASK ? 1 : 0;
5317 case LIBIPW_OFDM_RATE_48MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005318 return priv->
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005319 rates_mask & LIBIPW_OFDM_RATE_48MB_MASK ? 1 : 0;
5320 case LIBIPW_OFDM_RATE_54MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005321 return priv->
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005322 rates_mask & LIBIPW_OFDM_RATE_54MB_MASK ? 1 : 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005323 default:
5324 return 0;
5325 }
5326 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005327
James Ketrenos43f66a62005-03-25 12:31:53 -06005328 /* B and G mixed */
5329 switch (rate) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005330 case LIBIPW_CCK_RATE_1MB:
5331 return priv->rates_mask & LIBIPW_CCK_RATE_1MB_MASK ? 1 : 0;
5332 case LIBIPW_CCK_RATE_2MB:
5333 return priv->rates_mask & LIBIPW_CCK_RATE_2MB_MASK ? 1 : 0;
5334 case LIBIPW_CCK_RATE_5MB:
5335 return priv->rates_mask & LIBIPW_CCK_RATE_5MB_MASK ? 1 : 0;
5336 case LIBIPW_CCK_RATE_11MB:
5337 return priv->rates_mask & LIBIPW_CCK_RATE_11MB_MASK ? 1 : 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005338 }
5339
5340 /* If we are limited to B modulations, bail at this point */
5341 if (ieee_mode == IEEE_B)
5342 return 0;
5343
5344 /* G */
5345 switch (rate) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005346 case LIBIPW_OFDM_RATE_6MB:
5347 return priv->rates_mask & LIBIPW_OFDM_RATE_6MB_MASK ? 1 : 0;
5348 case LIBIPW_OFDM_RATE_9MB:
5349 return priv->rates_mask & LIBIPW_OFDM_RATE_9MB_MASK ? 1 : 0;
5350 case LIBIPW_OFDM_RATE_12MB:
5351 return priv->rates_mask & LIBIPW_OFDM_RATE_12MB_MASK ? 1 : 0;
5352 case LIBIPW_OFDM_RATE_18MB:
5353 return priv->rates_mask & LIBIPW_OFDM_RATE_18MB_MASK ? 1 : 0;
5354 case LIBIPW_OFDM_RATE_24MB:
5355 return priv->rates_mask & LIBIPW_OFDM_RATE_24MB_MASK ? 1 : 0;
5356 case LIBIPW_OFDM_RATE_36MB:
5357 return priv->rates_mask & LIBIPW_OFDM_RATE_36MB_MASK ? 1 : 0;
5358 case LIBIPW_OFDM_RATE_48MB:
5359 return priv->rates_mask & LIBIPW_OFDM_RATE_48MB_MASK ? 1 : 0;
5360 case LIBIPW_OFDM_RATE_54MB:
5361 return priv->rates_mask & LIBIPW_OFDM_RATE_54MB_MASK ? 1 : 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005362 }
5363
5364 return 0;
5365}
5366
Jeff Garzikbf794512005-07-31 13:07:26 -04005367static int ipw_compatible_rates(struct ipw_priv *priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005368 const struct libipw_network *network,
James Ketrenos43f66a62005-03-25 12:31:53 -06005369 struct ipw_supported_rates *rates)
5370{
5371 int num_rates, i;
5372
5373 memset(rates, 0, sizeof(*rates));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005374 num_rates = min(network->rates_len, (u8) IPW_MAX_RATES);
James Ketrenos43f66a62005-03-25 12:31:53 -06005375 rates->num_rates = 0;
5376 for (i = 0; i < num_rates; i++) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005377 if (!ipw_is_rate_in_mask(priv, network->mode,
5378 network->rates[i])) {
5379
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005380 if (network->rates[i] & LIBIPW_BASIC_RATE_MASK) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005381 IPW_DEBUG_SCAN("Adding masked mandatory "
5382 "rate %02X\n",
5383 network->rates[i]);
5384 rates->supported_rates[rates->num_rates++] =
5385 network->rates[i];
5386 continue;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005387 }
5388
James Ketrenos43f66a62005-03-25 12:31:53 -06005389 IPW_DEBUG_SCAN("Rate %02X masked : 0x%08X\n",
5390 network->rates[i], priv->rates_mask);
5391 continue;
5392 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005393
James Ketrenos43f66a62005-03-25 12:31:53 -06005394 rates->supported_rates[rates->num_rates++] = network->rates[i];
5395 }
5396
James Ketrenosa613bff2005-08-24 21:43:11 -05005397 num_rates = min(network->rates_ex_len,
5398 (u8) (IPW_MAX_RATES - num_rates));
James Ketrenos43f66a62005-03-25 12:31:53 -06005399 for (i = 0; i < num_rates; i++) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005400 if (!ipw_is_rate_in_mask(priv, network->mode,
5401 network->rates_ex[i])) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005402 if (network->rates_ex[i] & LIBIPW_BASIC_RATE_MASK) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005403 IPW_DEBUG_SCAN("Adding masked mandatory "
5404 "rate %02X\n",
5405 network->rates_ex[i]);
5406 rates->supported_rates[rates->num_rates++] =
5407 network->rates[i];
5408 continue;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005409 }
5410
James Ketrenos43f66a62005-03-25 12:31:53 -06005411 IPW_DEBUG_SCAN("Rate %02X masked : 0x%08X\n",
5412 network->rates_ex[i], priv->rates_mask);
5413 continue;
5414 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005415
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005416 rates->supported_rates[rates->num_rates++] =
5417 network->rates_ex[i];
James Ketrenos43f66a62005-03-25 12:31:53 -06005418 }
5419
James Ketrenosea2b26e2005-08-24 21:25:16 -05005420 return 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06005421}
5422
Arjan van de Ven858119e2006-01-14 13:20:43 -08005423static void ipw_copy_rates(struct ipw_supported_rates *dest,
James Ketrenos43f66a62005-03-25 12:31:53 -06005424 const struct ipw_supported_rates *src)
5425{
5426 u8 i;
5427 for (i = 0; i < src->num_rates; i++)
5428 dest->supported_rates[i] = src->supported_rates[i];
5429 dest->num_rates = src->num_rates;
5430}
5431
5432/* TODO: Look at sniffed packets in the air to determine if the basic rate
5433 * mask should ever be used -- right now all callers to add the scan rates are
5434 * set with the modulation = CCK, so BASIC_RATE_MASK is never set... */
5435static void ipw_add_cck_scan_rates(struct ipw_supported_rates *rates,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005436 u8 modulation, u32 rate_mask)
James Ketrenos43f66a62005-03-25 12:31:53 -06005437{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005438 u8 basic_mask = (LIBIPW_OFDM_MODULATION == modulation) ?
5439 LIBIPW_BASIC_RATE_MASK : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005440
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005441 if (rate_mask & LIBIPW_CCK_RATE_1MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005442 rates->supported_rates[rates->num_rates++] =
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005443 LIBIPW_BASIC_RATE_MASK | LIBIPW_CCK_RATE_1MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005444
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005445 if (rate_mask & LIBIPW_CCK_RATE_2MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005446 rates->supported_rates[rates->num_rates++] =
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005447 LIBIPW_BASIC_RATE_MASK | LIBIPW_CCK_RATE_2MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005448
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005449 if (rate_mask & LIBIPW_CCK_RATE_5MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005450 rates->supported_rates[rates->num_rates++] = basic_mask |
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005451 LIBIPW_CCK_RATE_5MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005452
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005453 if (rate_mask & LIBIPW_CCK_RATE_11MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005454 rates->supported_rates[rates->num_rates++] = basic_mask |
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005455 LIBIPW_CCK_RATE_11MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005456}
5457
5458static void ipw_add_ofdm_scan_rates(struct ipw_supported_rates *rates,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005459 u8 modulation, u32 rate_mask)
James Ketrenos43f66a62005-03-25 12:31:53 -06005460{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005461 u8 basic_mask = (LIBIPW_OFDM_MODULATION == modulation) ?
5462 LIBIPW_BASIC_RATE_MASK : 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005463
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005464 if (rate_mask & LIBIPW_OFDM_RATE_6MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005465 rates->supported_rates[rates->num_rates++] = basic_mask |
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005466 LIBIPW_OFDM_RATE_6MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005467
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005468 if (rate_mask & LIBIPW_OFDM_RATE_9MB_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_9MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005471
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005472 if (rate_mask & LIBIPW_OFDM_RATE_12MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005473 rates->supported_rates[rates->num_rates++] = basic_mask |
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005474 LIBIPW_OFDM_RATE_12MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005475
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005476 if (rate_mask & LIBIPW_OFDM_RATE_18MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005477 rates->supported_rates[rates->num_rates++] =
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005478 LIBIPW_OFDM_RATE_18MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005479
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005480 if (rate_mask & LIBIPW_OFDM_RATE_24MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005481 rates->supported_rates[rates->num_rates++] = basic_mask |
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005482 LIBIPW_OFDM_RATE_24MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005483
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005484 if (rate_mask & LIBIPW_OFDM_RATE_36MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005485 rates->supported_rates[rates->num_rates++] =
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005486 LIBIPW_OFDM_RATE_36MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005487
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005488 if (rate_mask & LIBIPW_OFDM_RATE_48MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005489 rates->supported_rates[rates->num_rates++] =
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005490 LIBIPW_OFDM_RATE_48MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005491
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005492 if (rate_mask & LIBIPW_OFDM_RATE_54MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005493 rates->supported_rates[rates->num_rates++] =
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005494 LIBIPW_OFDM_RATE_54MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005495}
5496
5497struct ipw_network_match {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005498 struct libipw_network *network;
James Ketrenos43f66a62005-03-25 12:31:53 -06005499 struct ipw_supported_rates rates;
5500};
5501
James Ketrenosc848d0a2005-08-24 21:56:24 -05005502static int ipw_find_adhoc_network(struct ipw_priv *priv,
5503 struct ipw_network_match *match,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005504 struct libipw_network *network,
James Ketrenosc848d0a2005-08-24 21:56:24 -05005505 int roaming)
5506{
5507 struct ipw_supported_rates rates;
John W. Linville9387b7c2008-09-30 20:59:05 -04005508 DECLARE_SSID_BUF(ssid);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005509
5510 /* Verify that this network's capability is compatible with the
5511 * current mode (AdHoc or Infrastructure) */
5512 if ((priv->ieee->iw_mode == IW_MODE_ADHOC &&
5513 !(network->capability & WLAN_CAPABILITY_IBSS))) {
Johannes Berge1749612008-10-27 15:59:26 -07005514 IPW_DEBUG_MERGE("Network '%s (%pM)' excluded due to "
James Ketrenosc848d0a2005-08-24 21:56:24 -05005515 "capability mismatch.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005516 print_ssid(ssid, network->ssid,
5517 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005518 network->bssid);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005519 return 0;
5520 }
5521
James Ketrenosc848d0a2005-08-24 21:56:24 -05005522 if (unlikely(roaming)) {
5523 /* If we are roaming, then ensure check if this is a valid
5524 * network to try and roam to */
5525 if ((network->ssid_len != match->network->ssid_len) ||
5526 memcmp(network->ssid, match->network->ssid,
5527 network->ssid_len)) {
Johannes Berge1749612008-10-27 15:59:26 -07005528 IPW_DEBUG_MERGE("Network '%s (%pM)' excluded "
James Ketrenosc848d0a2005-08-24 21:56:24 -05005529 "because of non-network ESSID.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005530 print_ssid(ssid, network->ssid,
5531 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005532 network->bssid);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005533 return 0;
5534 }
5535 } else {
5536 /* If an ESSID has been configured then compare the broadcast
5537 * ESSID to ours */
5538 if ((priv->config & CFG_STATIC_ESSID) &&
5539 ((network->ssid_len != priv->essid_len) ||
5540 memcmp(network->ssid, priv->essid,
5541 min(network->ssid_len, priv->essid_len)))) {
5542 char escaped[IW_ESSID_MAX_SIZE * 2 + 1];
James Ketrenosafbf30a2005-08-25 00:05:33 -05005543
James Ketrenosc848d0a2005-08-24 21:56:24 -05005544 strncpy(escaped,
John W. Linville9387b7c2008-09-30 20:59:05 -04005545 print_ssid(ssid, network->ssid,
5546 network->ssid_len),
James Ketrenosc848d0a2005-08-24 21:56:24 -05005547 sizeof(escaped));
Johannes Berge1749612008-10-27 15:59:26 -07005548 IPW_DEBUG_MERGE("Network '%s (%pM)' excluded "
James Ketrenosc848d0a2005-08-24 21:56:24 -05005549 "because of ESSID mismatch: '%s'.\n",
Johannes Berge1749612008-10-27 15:59:26 -07005550 escaped, network->bssid,
John W. Linville9387b7c2008-09-30 20:59:05 -04005551 print_ssid(ssid, priv->essid,
5552 priv->essid_len));
James Ketrenosc848d0a2005-08-24 21:56:24 -05005553 return 0;
5554 }
5555 }
5556
5557 /* If the old network rate is better than this one, don't bother
5558 * testing everything else. */
5559
5560 if (network->time_stamp[0] < match->network->time_stamp[0]) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05005561 IPW_DEBUG_MERGE("Network '%s excluded because newer than "
5562 "current network.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005563 print_ssid(ssid, match->network->ssid,
5564 match->network->ssid_len));
James Ketrenosc848d0a2005-08-24 21:56:24 -05005565 return 0;
5566 } else if (network->time_stamp[1] < match->network->time_stamp[1]) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05005567 IPW_DEBUG_MERGE("Network '%s excluded because newer than "
5568 "current network.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005569 print_ssid(ssid, match->network->ssid,
5570 match->network->ssid_len));
James Ketrenosc848d0a2005-08-24 21:56:24 -05005571 return 0;
5572 }
5573
5574 /* Now go through and see if the requested network is valid... */
5575 if (priv->ieee->scan_age != 0 &&
5576 time_after(jiffies, network->last_scanned + priv->ieee->scan_age)) {
Johannes Berge1749612008-10-27 15:59:26 -07005577 IPW_DEBUG_MERGE("Network '%s (%pM)' excluded "
Zhu Yic7b6a672006-01-24 16:37:05 +08005578 "because of age: %ums.\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,
Zhu Yi2638bc32006-01-24 16:37:52 +08005582 jiffies_to_msecs(jiffies -
5583 network->last_scanned));
James Ketrenosc848d0a2005-08-24 21:56:24 -05005584 return 0;
5585 }
5586
5587 if ((priv->config & CFG_STATIC_CHANNEL) &&
5588 (network->channel != priv->channel)) {
Johannes Berge1749612008-10-27 15:59:26 -07005589 IPW_DEBUG_MERGE("Network '%s (%pM)' excluded "
James Ketrenosc848d0a2005-08-24 21:56:24 -05005590 "because of channel mismatch: %d != %d.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005591 print_ssid(ssid, network->ssid,
5592 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005593 network->bssid,
James Ketrenosc848d0a2005-08-24 21:56:24 -05005594 network->channel, priv->channel);
5595 return 0;
5596 }
5597
5598 /* Verify privacy compatability */
5599 if (((priv->capability & CAP_PRIVACY_ON) ? 1 : 0) !=
5600 ((network->capability & WLAN_CAPABILITY_PRIVACY) ? 1 : 0)) {
Johannes Berge1749612008-10-27 15:59:26 -07005601 IPW_DEBUG_MERGE("Network '%s (%pM)' excluded "
James Ketrenosc848d0a2005-08-24 21:56:24 -05005602 "because of privacy mismatch: %s != %s.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005603 print_ssid(ssid, network->ssid,
5604 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005605 network->bssid,
James Ketrenosafbf30a2005-08-25 00:05:33 -05005606 priv->
5607 capability & CAP_PRIVACY_ON ? "on" : "off",
5608 network->
5609 capability & WLAN_CAPABILITY_PRIVACY ? "on" :
5610 "off");
James Ketrenosc848d0a2005-08-24 21:56:24 -05005611 return 0;
5612 }
5613
5614 if (!memcmp(network->bssid, priv->bssid, ETH_ALEN)) {
Johannes Berge1749612008-10-27 15:59:26 -07005615 IPW_DEBUG_MERGE("Network '%s (%pM)' excluded "
5616 "because of the same BSSID match: %pM"
John W. Linville9387b7c2008-09-30 20:59:05 -04005617 ".\n", print_ssid(ssid, network->ssid,
5618 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005619 network->bssid,
5620 priv->bssid);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005621 return 0;
5622 }
5623
5624 /* Filter out any incompatible freq / mode combinations */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005625 if (!libipw_is_valid_mode(priv->ieee, network->mode)) {
Johannes Berge1749612008-10-27 15:59:26 -07005626 IPW_DEBUG_MERGE("Network '%s (%pM)' excluded "
James Ketrenosc848d0a2005-08-24 21:56:24 -05005627 "because of invalid frequency/mode "
5628 "combination.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005629 print_ssid(ssid, network->ssid,
5630 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005631 network->bssid);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005632 return 0;
5633 }
5634
5635 /* Ensure that the rates supported by the driver are compatible with
5636 * this AP, including verification of basic rates (mandatory) */
5637 if (!ipw_compatible_rates(priv, network, &rates)) {
Johannes Berge1749612008-10-27 15:59:26 -07005638 IPW_DEBUG_MERGE("Network '%s (%pM)' excluded "
James Ketrenosc848d0a2005-08-24 21:56:24 -05005639 "because configured rate mask excludes "
5640 "AP mandatory rate.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005641 print_ssid(ssid, network->ssid,
5642 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005643 network->bssid);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005644 return 0;
5645 }
5646
5647 if (rates.num_rates == 0) {
Johannes Berge1749612008-10-27 15:59:26 -07005648 IPW_DEBUG_MERGE("Network '%s (%pM)' excluded "
James Ketrenosc848d0a2005-08-24 21:56:24 -05005649 "because of no compatible rates.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005650 print_ssid(ssid, network->ssid,
5651 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005652 network->bssid);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005653 return 0;
5654 }
5655
5656 /* TODO: Perform any further minimal comparititive tests. We do not
5657 * want to put too much policy logic here; intelligent scan selection
5658 * should occur within a generic IEEE 802.11 user space tool. */
5659
5660 /* Set up 'new' AP to this network */
5661 ipw_copy_rates(&match->rates, &rates);
5662 match->network = network;
Johannes Berge1749612008-10-27 15:59:26 -07005663 IPW_DEBUG_MERGE("Network '%s (%pM)' is a viable match.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005664 print_ssid(ssid, network->ssid, network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005665 network->bssid);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005666
5667 return 1;
5668}
5669
David Howellsc4028952006-11-22 14:57:56 +00005670static void ipw_merge_adhoc_network(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -05005671{
John W. Linville9387b7c2008-09-30 20:59:05 -04005672 DECLARE_SSID_BUF(ssid);
David Howellsc4028952006-11-22 14:57:56 +00005673 struct ipw_priv *priv =
5674 container_of(work, struct ipw_priv, merge_networks);
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005675 struct libipw_network *network = NULL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05005676 struct ipw_network_match match = {
5677 .network = priv->assoc_network
5678 };
5679
James Ketrenosafbf30a2005-08-25 00:05:33 -05005680 if ((priv->status & STATUS_ASSOCIATED) &&
5681 (priv->ieee->iw_mode == IW_MODE_ADHOC)) {
James Ketrenosc848d0a2005-08-24 21:56:24 -05005682 /* First pass through ROAM process -- look for a better
5683 * network */
5684 unsigned long flags;
5685
5686 spin_lock_irqsave(&priv->ieee->lock, flags);
5687 list_for_each_entry(network, &priv->ieee->network_list, list) {
5688 if (network != priv->assoc_network)
5689 ipw_find_adhoc_network(priv, &match, network,
5690 1);
5691 }
5692 spin_unlock_irqrestore(&priv->ieee->lock, flags);
5693
5694 if (match.network == priv->assoc_network) {
5695 IPW_DEBUG_MERGE("No better ADHOC in this network to "
5696 "merge to.\n");
5697 return;
5698 }
5699
Zhu Yi46441512006-01-24 16:37:59 +08005700 mutex_lock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005701 if ((priv->ieee->iw_mode == IW_MODE_ADHOC)) {
5702 IPW_DEBUG_MERGE("remove network %s\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005703 print_ssid(ssid, priv->essid,
5704 priv->essid_len));
James Ketrenosc848d0a2005-08-24 21:56:24 -05005705 ipw_remove_current_network(priv);
5706 }
5707
5708 ipw_disassociate(priv);
5709 priv->assoc_network = match.network;
Zhu Yi46441512006-01-24 16:37:59 +08005710 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005711 return;
5712 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05005713}
5714
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005715static int ipw_best_network(struct ipw_priv *priv,
5716 struct ipw_network_match *match,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005717 struct libipw_network *network, int roaming)
James Ketrenos43f66a62005-03-25 12:31:53 -06005718{
5719 struct ipw_supported_rates rates;
John W. Linville9387b7c2008-09-30 20:59:05 -04005720 DECLARE_SSID_BUF(ssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06005721
5722 /* Verify that this network's capability is compatible with the
5723 * current mode (AdHoc or Infrastructure) */
5724 if ((priv->ieee->iw_mode == IW_MODE_INFRA &&
Jouni Malinen24743852005-08-14 20:59:59 -07005725 !(network->capability & WLAN_CAPABILITY_ESS)) ||
James Ketrenos43f66a62005-03-25 12:31:53 -06005726 (priv->ieee->iw_mode == IW_MODE_ADHOC &&
5727 !(network->capability & WLAN_CAPABILITY_IBSS))) {
Johannes Berge1749612008-10-27 15:59:26 -07005728 IPW_DEBUG_ASSOC("Network '%s (%pM)' excluded due to "
Jeff Garzikbf794512005-07-31 13:07:26 -04005729 "capability mismatch.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005730 print_ssid(ssid, network->ssid,
5731 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005732 network->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06005733 return 0;
5734 }
5735
James Ketrenos43f66a62005-03-25 12:31:53 -06005736 if (unlikely(roaming)) {
5737 /* If we are roaming, then ensure check if this is a valid
5738 * network to try and roam to */
5739 if ((network->ssid_len != match->network->ssid_len) ||
Jeff Garzikbf794512005-07-31 13:07:26 -04005740 memcmp(network->ssid, match->network->ssid,
James Ketrenos43f66a62005-03-25 12:31:53 -06005741 network->ssid_len)) {
Johannes Berge1749612008-10-27 15:59:26 -07005742 IPW_DEBUG_ASSOC("Network '%s (%pM)' excluded "
James Ketrenos43f66a62005-03-25 12:31:53 -06005743 "because of non-network ESSID.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005744 print_ssid(ssid, network->ssid,
5745 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005746 network->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06005747 return 0;
5748 }
5749 } else {
Jeff Garzikbf794512005-07-31 13:07:26 -04005750 /* If an ESSID has been configured then compare the broadcast
5751 * ESSID to ours */
5752 if ((priv->config & CFG_STATIC_ESSID) &&
James Ketrenos43f66a62005-03-25 12:31:53 -06005753 ((network->ssid_len != priv->essid_len) ||
Jeff Garzikbf794512005-07-31 13:07:26 -04005754 memcmp(network->ssid, priv->essid,
James Ketrenos43f66a62005-03-25 12:31:53 -06005755 min(network->ssid_len, priv->essid_len)))) {
5756 char escaped[IW_ESSID_MAX_SIZE * 2 + 1];
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005757 strncpy(escaped,
John W. Linville9387b7c2008-09-30 20:59:05 -04005758 print_ssid(ssid, network->ssid,
5759 network->ssid_len),
James Ketrenos43f66a62005-03-25 12:31:53 -06005760 sizeof(escaped));
Johannes Berge1749612008-10-27 15:59:26 -07005761 IPW_DEBUG_ASSOC("Network '%s (%pM)' excluded "
Jeff Garzikbf794512005-07-31 13:07:26 -04005762 "because of ESSID mismatch: '%s'.\n",
Johannes Berge1749612008-10-27 15:59:26 -07005763 escaped, network->bssid,
John W. Linville9387b7c2008-09-30 20:59:05 -04005764 print_ssid(ssid, priv->essid,
5765 priv->essid_len));
James Ketrenos43f66a62005-03-25 12:31:53 -06005766 return 0;
5767 }
5768 }
5769
5770 /* If the old network rate is better than this one, don't bother
5771 * testing everything else. */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005772 if (match->network && match->network->stats.rssi > network->stats.rssi) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005773 char escaped[IW_ESSID_MAX_SIZE * 2 + 1];
Jeff Garzikbf794512005-07-31 13:07:26 -04005774 strncpy(escaped,
John W. Linville9387b7c2008-09-30 20:59:05 -04005775 print_ssid(ssid, network->ssid, network->ssid_len),
James Ketrenos43f66a62005-03-25 12:31:53 -06005776 sizeof(escaped));
Johannes Berge1749612008-10-27 15:59:26 -07005777 IPW_DEBUG_ASSOC("Network '%s (%pM)' excluded because "
5778 "'%s (%pM)' has a stronger signal.\n",
5779 escaped, network->bssid,
John W. Linville9387b7c2008-09-30 20:59:05 -04005780 print_ssid(ssid, match->network->ssid,
5781 match->network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005782 match->network->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06005783 return 0;
5784 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005785
James Ketrenos43f66a62005-03-25 12:31:53 -06005786 /* If this network has already had an association attempt within the
5787 * last 3 seconds, do not try and associate again... */
5788 if (network->last_associate &&
James Ketrenosea2b26e2005-08-24 21:25:16 -05005789 time_after(network->last_associate + (HZ * 3UL), jiffies)) {
Johannes Berge1749612008-10-27 15:59:26 -07005790 IPW_DEBUG_ASSOC("Network '%s (%pM)' excluded "
Zhu Yic7b6a672006-01-24 16:37:05 +08005791 "because of storming (%ums since last "
James Ketrenos43f66a62005-03-25 12:31:53 -06005792 "assoc attempt).\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005793 print_ssid(ssid, network->ssid,
5794 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005795 network->bssid,
Zhu Yi2638bc32006-01-24 16:37:52 +08005796 jiffies_to_msecs(jiffies -
5797 network->last_associate));
James Ketrenos43f66a62005-03-25 12:31:53 -06005798 return 0;
5799 }
5800
5801 /* Now go through and see if the requested network is valid... */
Jeff Garzikbf794512005-07-31 13:07:26 -04005802 if (priv->ieee->scan_age != 0 &&
James Ketrenosea2b26e2005-08-24 21:25:16 -05005803 time_after(jiffies, network->last_scanned + priv->ieee->scan_age)) {
Johannes Berge1749612008-10-27 15:59:26 -07005804 IPW_DEBUG_ASSOC("Network '%s (%pM)' excluded "
Zhu Yic7b6a672006-01-24 16:37:05 +08005805 "because of age: %ums.\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,
Zhu Yi2638bc32006-01-24 16:37:52 +08005809 jiffies_to_msecs(jiffies -
5810 network->last_scanned));
James Ketrenos43f66a62005-03-25 12:31:53 -06005811 return 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005812 }
James Ketrenos43f66a62005-03-25 12:31:53 -06005813
Jeff Garzikbf794512005-07-31 13:07:26 -04005814 if ((priv->config & CFG_STATIC_CHANNEL) &&
James Ketrenos43f66a62005-03-25 12:31:53 -06005815 (network->channel != priv->channel)) {
Johannes Berge1749612008-10-27 15:59:26 -07005816 IPW_DEBUG_ASSOC("Network '%s (%pM)' excluded "
James Ketrenos43f66a62005-03-25 12:31:53 -06005817 "because of channel mismatch: %d != %d.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005818 print_ssid(ssid, network->ssid,
5819 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005820 network->bssid,
James Ketrenos43f66a62005-03-25 12:31:53 -06005821 network->channel, priv->channel);
5822 return 0;
5823 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005824
James Ketrenos43f66a62005-03-25 12:31:53 -06005825 /* Verify privacy compatability */
Jeff Garzikbf794512005-07-31 13:07:26 -04005826 if (((priv->capability & CAP_PRIVACY_ON) ? 1 : 0) !=
James Ketrenos43f66a62005-03-25 12:31:53 -06005827 ((network->capability & WLAN_CAPABILITY_PRIVACY) ? 1 : 0)) {
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 privacy mismatch: %s != %s.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005830 print_ssid(ssid, network->ssid,
5831 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005832 network->bssid,
Jeff Garzikbf794512005-07-31 13:07:26 -04005833 priv->capability & CAP_PRIVACY_ON ? "on" :
James Ketrenos43f66a62005-03-25 12:31:53 -06005834 "off",
Jeff Garzikbf794512005-07-31 13:07:26 -04005835 network->capability &
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005836 WLAN_CAPABILITY_PRIVACY ? "on" : "off");
James Ketrenos43f66a62005-03-25 12:31:53 -06005837 return 0;
5838 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005839
5840 if ((priv->config & CFG_STATIC_BSSID) &&
James Ketrenos43f66a62005-03-25 12:31:53 -06005841 memcmp(network->bssid, priv->bssid, ETH_ALEN)) {
Johannes Berge1749612008-10-27 15:59:26 -07005842 IPW_DEBUG_ASSOC("Network '%s (%pM)' excluded "
5843 "because of BSSID mismatch: %pM.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005844 print_ssid(ssid, network->ssid,
5845 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005846 network->bssid, priv->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06005847 return 0;
5848 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005849
James Ketrenos43f66a62005-03-25 12:31:53 -06005850 /* Filter out any incompatible freq / mode combinations */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005851 if (!libipw_is_valid_mode(priv->ieee, network->mode)) {
Johannes Berge1749612008-10-27 15:59:26 -07005852 IPW_DEBUG_ASSOC("Network '%s (%pM)' excluded "
James Ketrenos43f66a62005-03-25 12:31:53 -06005853 "because of invalid frequency/mode "
5854 "combination.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005855 print_ssid(ssid, network->ssid,
5856 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005857 network->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06005858 return 0;
5859 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005860
Liu Hong1fe0adb2005-08-19 09:33:10 -05005861 /* Filter out invalid channel in current GEO */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005862 if (!libipw_is_valid_channel(priv->ieee, network->channel)) {
Johannes Berge1749612008-10-27 15:59:26 -07005863 IPW_DEBUG_ASSOC("Network '%s (%pM)' excluded "
Liu Hong1fe0adb2005-08-19 09:33:10 -05005864 "because of invalid channel in current GEO\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005865 print_ssid(ssid, network->ssid,
5866 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005867 network->bssid);
Liu Hong1fe0adb2005-08-19 09:33:10 -05005868 return 0;
5869 }
5870
James Ketrenosea2b26e2005-08-24 21:25:16 -05005871 /* Ensure that the rates supported by the driver are compatible with
5872 * this AP, including verification of basic rates (mandatory) */
5873 if (!ipw_compatible_rates(priv, network, &rates)) {
Johannes Berge1749612008-10-27 15:59:26 -07005874 IPW_DEBUG_ASSOC("Network '%s (%pM)' excluded "
James Ketrenosea2b26e2005-08-24 21:25:16 -05005875 "because configured rate mask excludes "
5876 "AP mandatory rate.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005877 print_ssid(ssid, network->ssid,
5878 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005879 network->bssid);
James Ketrenosea2b26e2005-08-24 21:25:16 -05005880 return 0;
5881 }
5882
James Ketrenos43f66a62005-03-25 12:31:53 -06005883 if (rates.num_rates == 0) {
Johannes Berge1749612008-10-27 15:59:26 -07005884 IPW_DEBUG_ASSOC("Network '%s (%pM)' excluded "
James Ketrenos43f66a62005-03-25 12:31:53 -06005885 "because of no compatible rates.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005886 print_ssid(ssid, network->ssid,
5887 network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005888 network->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06005889 return 0;
5890 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005891
James Ketrenos43f66a62005-03-25 12:31:53 -06005892 /* TODO: Perform any further minimal comparititive tests. We do not
5893 * want to put too much policy logic here; intelligent scan selection
5894 * should occur within a generic IEEE 802.11 user space tool. */
5895
5896 /* Set up 'new' AP to this network */
5897 ipw_copy_rates(&match->rates, &rates);
5898 match->network = network;
5899
Johannes Berge1749612008-10-27 15:59:26 -07005900 IPW_DEBUG_ASSOC("Network '%s (%pM)' is a viable match.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04005901 print_ssid(ssid, network->ssid, network->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07005902 network->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06005903
5904 return 1;
5905}
5906
Jeff Garzikbf794512005-07-31 13:07:26 -04005907static void ipw_adhoc_create(struct ipw_priv *priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005908 struct libipw_network *network)
James Ketrenos43f66a62005-03-25 12:31:53 -06005909{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005910 const struct libipw_geo *geo = libipw_get_geo(priv->ieee);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005911 int i;
5912
James Ketrenos43f66a62005-03-25 12:31:53 -06005913 /*
5914 * For the purposes of scanning, we can set our wireless mode
5915 * to trigger scans across combinations of bands, but when it
5916 * comes to creating a new ad-hoc network, we have tell the FW
5917 * exactly which band to use.
5918 *
Jeff Garzikbf794512005-07-31 13:07:26 -04005919 * We also have the possibility of an invalid channel for the
James Ketrenos43f66a62005-03-25 12:31:53 -06005920 * chossen band. Attempting to create a new ad-hoc network
5921 * with an invalid channel for wireless mode will trigger a
5922 * FW fatal error.
James Ketrenosafbf30a2005-08-25 00:05:33 -05005923 *
James Ketrenos43f66a62005-03-25 12:31:53 -06005924 */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005925 switch (libipw_is_valid_channel(priv->ieee, priv->channel)) {
5926 case LIBIPW_52GHZ_BAND:
James Ketrenosafbf30a2005-08-25 00:05:33 -05005927 network->mode = IEEE_A;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005928 i = libipw_channel_to_index(priv->ieee, priv->channel);
Eric Sesterhenn5d9428d2006-04-02 13:52:48 +02005929 BUG_ON(i == -1);
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005930 if (geo->a[i].flags & LIBIPW_CH_PASSIVE_ONLY) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05005931 IPW_WARNING("Overriding invalid channel\n");
5932 priv->channel = geo->a[0].channel;
5933 }
5934 break;
5935
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005936 case LIBIPW_24GHZ_BAND:
James Ketrenosafbf30a2005-08-25 00:05:33 -05005937 if (priv->ieee->mode & IEEE_G)
5938 network->mode = IEEE_G;
5939 else
5940 network->mode = IEEE_B;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005941 i = libipw_channel_to_index(priv->ieee, priv->channel);
Eric Sesterhenn5d9428d2006-04-02 13:52:48 +02005942 BUG_ON(i == -1);
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005943 if (geo->bg[i].flags & LIBIPW_CH_PASSIVE_ONLY) {
Liu Hong1fe0adb2005-08-19 09:33:10 -05005944 IPW_WARNING("Overriding invalid channel\n");
5945 priv->channel = geo->bg[0].channel;
5946 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05005947 break;
5948
5949 default:
James Ketrenos43f66a62005-03-25 12:31:53 -06005950 IPW_WARNING("Overriding invalid channel\n");
5951 if (priv->ieee->mode & IEEE_A) {
5952 network->mode = IEEE_A;
James Ketrenosb095c382005-08-24 22:04:42 -05005953 priv->channel = geo->a[0].channel;
James Ketrenos43f66a62005-03-25 12:31:53 -06005954 } else if (priv->ieee->mode & IEEE_G) {
5955 network->mode = IEEE_G;
James Ketrenosb095c382005-08-24 22:04:42 -05005956 priv->channel = geo->bg[0].channel;
James Ketrenos43f66a62005-03-25 12:31:53 -06005957 } else {
5958 network->mode = IEEE_B;
James Ketrenosb095c382005-08-24 22:04:42 -05005959 priv->channel = geo->bg[0].channel;
James Ketrenos43f66a62005-03-25 12:31:53 -06005960 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05005961 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06005962 }
5963
5964 network->channel = priv->channel;
5965 priv->config |= CFG_ADHOC_PERSIST;
5966 ipw_create_bssid(priv, network->bssid);
5967 network->ssid_len = priv->essid_len;
5968 memcpy(network->ssid, priv->essid, priv->essid_len);
5969 memset(&network->stats, 0, sizeof(network->stats));
5970 network->capability = WLAN_CAPABILITY_IBSS;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005971 if (!(priv->config & CFG_PREAMBLE_LONG))
5972 network->capability |= WLAN_CAPABILITY_SHORT_PREAMBLE;
James Ketrenos43f66a62005-03-25 12:31:53 -06005973 if (priv->capability & CAP_PRIVACY_ON)
5974 network->capability |= WLAN_CAPABILITY_PRIVACY;
5975 network->rates_len = min(priv->rates.num_rates, MAX_RATES_LENGTH);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005976 memcpy(network->rates, priv->rates.supported_rates, network->rates_len);
James Ketrenos43f66a62005-03-25 12:31:53 -06005977 network->rates_ex_len = priv->rates.num_rates - network->rates_len;
Jeff Garzikbf794512005-07-31 13:07:26 -04005978 memcpy(network->rates_ex,
James Ketrenos43f66a62005-03-25 12:31:53 -06005979 &priv->rates.supported_rates[network->rates_len],
5980 network->rates_ex_len);
5981 network->last_scanned = 0;
5982 network->flags = 0;
5983 network->last_associate = 0;
5984 network->time_stamp[0] = 0;
5985 network->time_stamp[1] = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005986 network->beacon_interval = 100; /* Default */
5987 network->listen_interval = 10; /* Default */
5988 network->atim_window = 0; /* Default */
James Ketrenos43f66a62005-03-25 12:31:53 -06005989 network->wpa_ie_len = 0;
5990 network->rsn_ie_len = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005991}
5992
James Ketrenosb095c382005-08-24 22:04:42 -05005993static void ipw_send_tgi_tx_key(struct ipw_priv *priv, int type, int index)
5994{
Zhu Yi0a7bcf22006-01-24 16:37:28 +08005995 struct ipw_tgi_tx_key key;
James Ketrenosb095c382005-08-24 22:04:42 -05005996
5997 if (!(priv->ieee->sec.flags & (1 << index)))
5998 return;
5999
Zhu Yi0a7bcf22006-01-24 16:37:28 +08006000 key.key_id = index;
6001 memcpy(key.key, priv->ieee->sec.keys[index], SCM_TEMPORAL_KEY_LENGTH);
6002 key.security_type = type;
6003 key.station_index = 0; /* always 0 for BSS */
6004 key.flags = 0;
James Ketrenosb095c382005-08-24 22:04:42 -05006005 /* 0 for new key; previous value of counter (after fatal error) */
Zhu Yi851ca262006-08-21 11:37:58 +08006006 key.tx_counter[0] = cpu_to_le32(0);
6007 key.tx_counter[1] = cpu_to_le32(0);
James Ketrenosb095c382005-08-24 22:04:42 -05006008
Zhu Yi0a7bcf22006-01-24 16:37:28 +08006009 ipw_send_cmd_pdu(priv, IPW_CMD_TGI_TX_KEY, sizeof(key), &key);
James Ketrenosb095c382005-08-24 22:04:42 -05006010}
6011
6012static void ipw_send_wep_keys(struct ipw_priv *priv, int type)
James Ketrenos43f66a62005-03-25 12:31:53 -06006013{
Zhu Yi0a7bcf22006-01-24 16:37:28 +08006014 struct ipw_wep_key key;
James Ketrenos43f66a62005-03-25 12:31:53 -06006015 int i;
James Ketrenos43f66a62005-03-25 12:31:53 -06006016
Zhu Yi0a7bcf22006-01-24 16:37:28 +08006017 key.cmd_id = DINO_CMD_WEP_KEY;
6018 key.seq_num = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06006019
James Ketrenosb095c382005-08-24 22:04:42 -05006020 /* Note: AES keys cannot be set for multiple times.
6021 * Only set it at the first time. */
Jeff Garzikbf794512005-07-31 13:07:26 -04006022 for (i = 0; i < 4; i++) {
Zhu Yi0a7bcf22006-01-24 16:37:28 +08006023 key.key_index = i | type;
James Ketrenosb095c382005-08-24 22:04:42 -05006024 if (!(priv->ieee->sec.flags & (1 << i))) {
Zhu Yi0a7bcf22006-01-24 16:37:28 +08006025 key.key_size = 0;
James Ketrenosb095c382005-08-24 22:04:42 -05006026 continue;
James Ketrenos43f66a62005-03-25 12:31:53 -06006027 }
6028
Zhu Yi0a7bcf22006-01-24 16:37:28 +08006029 key.key_size = priv->ieee->sec.key_sizes[i];
6030 memcpy(key.key, priv->ieee->sec.keys[i], key.key_size);
James Ketrenosb095c382005-08-24 22:04:42 -05006031
Zhu Yi0a7bcf22006-01-24 16:37:28 +08006032 ipw_send_cmd_pdu(priv, IPW_CMD_WEP_KEY, sizeof(key), &key);
Jeff Garzikbf794512005-07-31 13:07:26 -04006033 }
James Ketrenos43f66a62005-03-25 12:31:53 -06006034}
6035
Zhu Yi1fbfea52005-08-05 17:22:56 +08006036static void ipw_set_hw_decrypt_unicast(struct ipw_priv *priv, int level)
6037{
6038 if (priv->ieee->host_encrypt)
6039 return;
6040
6041 switch (level) {
6042 case SEC_LEVEL_3:
6043 priv->sys_config.disable_unicast_decryption = 0;
6044 priv->ieee->host_decrypt = 0;
6045 break;
6046 case SEC_LEVEL_2:
6047 priv->sys_config.disable_unicast_decryption = 1;
6048 priv->ieee->host_decrypt = 1;
6049 break;
6050 case SEC_LEVEL_1:
6051 priv->sys_config.disable_unicast_decryption = 0;
6052 priv->ieee->host_decrypt = 0;
6053 break;
6054 case SEC_LEVEL_0:
6055 priv->sys_config.disable_unicast_decryption = 1;
6056 break;
6057 default:
6058 break;
6059 }
6060}
6061
6062static void ipw_set_hw_decrypt_multicast(struct ipw_priv *priv, int level)
6063{
6064 if (priv->ieee->host_encrypt)
6065 return;
6066
6067 switch (level) {
6068 case SEC_LEVEL_3:
6069 priv->sys_config.disable_multicast_decryption = 0;
6070 break;
6071 case SEC_LEVEL_2:
6072 priv->sys_config.disable_multicast_decryption = 1;
6073 break;
6074 case SEC_LEVEL_1:
6075 priv->sys_config.disable_multicast_decryption = 0;
6076 break;
6077 case SEC_LEVEL_0:
6078 priv->sys_config.disable_multicast_decryption = 1;
6079 break;
6080 default:
6081 break;
6082 }
6083}
6084
James Ketrenosb095c382005-08-24 22:04:42 -05006085static void ipw_set_hwcrypto_keys(struct ipw_priv *priv)
6086{
6087 switch (priv->ieee->sec.level) {
6088 case SEC_LEVEL_3:
Zhu Yid8bad6d2005-07-13 12:25:38 -05006089 if (priv->ieee->sec.flags & SEC_ACTIVE_KEY)
6090 ipw_send_tgi_tx_key(priv,
6091 DCT_FLAG_EXT_SECURITY_CCM,
6092 priv->ieee->sec.active_key);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006093
Hong Liu567deaf2005-08-31 18:07:22 +08006094 if (!priv->ieee->host_mc_decrypt)
6095 ipw_send_wep_keys(priv, DCW_WEP_KEY_SEC_TYPE_CCM);
James Ketrenosb095c382005-08-24 22:04:42 -05006096 break;
6097 case SEC_LEVEL_2:
Zhu Yid8bad6d2005-07-13 12:25:38 -05006098 if (priv->ieee->sec.flags & SEC_ACTIVE_KEY)
6099 ipw_send_tgi_tx_key(priv,
6100 DCT_FLAG_EXT_SECURITY_TKIP,
6101 priv->ieee->sec.active_key);
James Ketrenosb095c382005-08-24 22:04:42 -05006102 break;
6103 case SEC_LEVEL_1:
6104 ipw_send_wep_keys(priv, DCW_WEP_KEY_SEC_TYPE_WEP);
Hong Liu29cb8432005-09-12 10:43:33 -05006105 ipw_set_hw_decrypt_unicast(priv, priv->ieee->sec.level);
6106 ipw_set_hw_decrypt_multicast(priv, priv->ieee->sec.level);
James Ketrenosb095c382005-08-24 22:04:42 -05006107 break;
6108 case SEC_LEVEL_0:
6109 default:
6110 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06006111 }
6112}
6113
6114static void ipw_adhoc_check(void *data)
6115{
6116 struct ipw_priv *priv = data;
Jeff Garzikbf794512005-07-31 13:07:26 -04006117
James Ketrenosafbf30a2005-08-25 00:05:33 -05006118 if (priv->missed_adhoc_beacons++ > priv->disassociate_threshold &&
James Ketrenos43f66a62005-03-25 12:31:53 -06006119 !(priv->config & CFG_ADHOC_PERSIST)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006120 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF |
6121 IPW_DL_STATE | IPW_DL_ASSOC,
6122 "Missed beacon: %d - disassociate\n",
6123 priv->missed_adhoc_beacons);
James Ketrenos43f66a62005-03-25 12:31:53 -06006124 ipw_remove_current_network(priv);
6125 ipw_disassociate(priv);
6126 return;
6127 }
6128
Jeff Garzikbf794512005-07-31 13:07:26 -04006129 queue_delayed_work(priv->workqueue, &priv->adhoc_check,
Al Viro5b5e8072007-12-27 01:54:06 -05006130 le16_to_cpu(priv->assoc_request.beacon_interval));
James Ketrenos43f66a62005-03-25 12:31:53 -06006131}
6132
David Howellsc4028952006-11-22 14:57:56 +00006133static void ipw_bg_adhoc_check(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -05006134{
David Howellsc4028952006-11-22 14:57:56 +00006135 struct ipw_priv *priv =
6136 container_of(work, struct ipw_priv, adhoc_check.work);
Zhu Yi46441512006-01-24 16:37:59 +08006137 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00006138 ipw_adhoc_check(priv);
Zhu Yi46441512006-01-24 16:37:59 +08006139 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05006140}
6141
James Ketrenos43f66a62005-03-25 12:31:53 -06006142static void ipw_debug_config(struct ipw_priv *priv)
6143{
John W. Linville9387b7c2008-09-30 20:59:05 -04006144 DECLARE_SSID_BUF(ssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06006145 IPW_DEBUG_INFO("Scan completed, no valid APs matched "
6146 "[CFG 0x%08X]\n", priv->config);
6147 if (priv->config & CFG_STATIC_CHANNEL)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04006148 IPW_DEBUG_INFO("Channel locked to %d\n", priv->channel);
James Ketrenos43f66a62005-03-25 12:31:53 -06006149 else
6150 IPW_DEBUG_INFO("Channel unlocked.\n");
6151 if (priv->config & CFG_STATIC_ESSID)
Jeff Garzikbf794512005-07-31 13:07:26 -04006152 IPW_DEBUG_INFO("ESSID locked to '%s'\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04006153 print_ssid(ssid, priv->essid, priv->essid_len));
James Ketrenos43f66a62005-03-25 12:31:53 -06006154 else
6155 IPW_DEBUG_INFO("ESSID unlocked.\n");
6156 if (priv->config & CFG_STATIC_BSSID)
Johannes Berge1749612008-10-27 15:59:26 -07006157 IPW_DEBUG_INFO("BSSID locked to %pM\n", priv->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06006158 else
6159 IPW_DEBUG_INFO("BSSID unlocked.\n");
6160 if (priv->capability & CAP_PRIVACY_ON)
6161 IPW_DEBUG_INFO("PRIVACY on\n");
6162 else
6163 IPW_DEBUG_INFO("PRIVACY off\n");
6164 IPW_DEBUG_INFO("RATE MASK: 0x%08X\n", priv->rates_mask);
6165}
James Ketrenos43f66a62005-03-25 12:31:53 -06006166
Arjan van de Ven858119e2006-01-14 13:20:43 -08006167static void ipw_set_fixed_rate(struct ipw_priv *priv, int mode)
James Ketrenos43f66a62005-03-25 12:31:53 -06006168{
6169 /* TODO: Verify that this works... */
Reinette Chatre21f8a732009-08-18 10:25:05 -07006170 struct ipw_fixed_rate fr;
James Ketrenos43f66a62005-03-25 12:31:53 -06006171 u32 reg;
6172 u16 mask = 0;
Reinette Chatre21f8a732009-08-18 10:25:05 -07006173 u16 new_tx_rates = priv->rates_mask;
James Ketrenos43f66a62005-03-25 12:31:53 -06006174
Jeff Garzikbf794512005-07-31 13:07:26 -04006175 /* Identify 'current FW band' and match it with the fixed
James Ketrenos43f66a62005-03-25 12:31:53 -06006176 * Tx rates */
Jeff Garzikbf794512005-07-31 13:07:26 -04006177
James Ketrenos43f66a62005-03-25 12:31:53 -06006178 switch (priv->ieee->freq_band) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006179 case LIBIPW_52GHZ_BAND: /* A only */
James Ketrenos43f66a62005-03-25 12:31:53 -06006180 /* IEEE_A */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006181 if (priv->rates_mask & ~LIBIPW_OFDM_RATES_MASK) {
James Ketrenos43f66a62005-03-25 12:31:53 -06006182 /* Invalid fixed rate mask */
James Ketrenosea2b26e2005-08-24 21:25:16 -05006183 IPW_DEBUG_WX
6184 ("invalid fixed rate mask in ipw_set_fixed_rate\n");
Reinette Chatre21f8a732009-08-18 10:25:05 -07006185 new_tx_rates = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06006186 break;
6187 }
Jeff Garzikbf794512005-07-31 13:07:26 -04006188
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006189 new_tx_rates >>= LIBIPW_OFDM_SHIFT_MASK_A;
James Ketrenos43f66a62005-03-25 12:31:53 -06006190 break;
6191
Jeff Garzik0edd5b42005-09-07 00:48:31 -04006192 default: /* 2.4Ghz or Mixed */
James Ketrenos43f66a62005-03-25 12:31:53 -06006193 /* IEEE_B */
James Ketrenosb095c382005-08-24 22:04:42 -05006194 if (mode == IEEE_B) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006195 if (new_tx_rates & ~LIBIPW_CCK_RATES_MASK) {
James Ketrenos43f66a62005-03-25 12:31:53 -06006196 /* Invalid fixed rate mask */
James Ketrenosea2b26e2005-08-24 21:25:16 -05006197 IPW_DEBUG_WX
6198 ("invalid fixed rate mask in ipw_set_fixed_rate\n");
Reinette Chatre21f8a732009-08-18 10:25:05 -07006199 new_tx_rates = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06006200 }
6201 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04006202 }
James Ketrenos43f66a62005-03-25 12:31:53 -06006203
6204 /* IEEE_G */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006205 if (new_tx_rates & ~(LIBIPW_CCK_RATES_MASK |
6206 LIBIPW_OFDM_RATES_MASK)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06006207 /* Invalid fixed rate mask */
James Ketrenosea2b26e2005-08-24 21:25:16 -05006208 IPW_DEBUG_WX
6209 ("invalid fixed rate mask in ipw_set_fixed_rate\n");
Reinette Chatre21f8a732009-08-18 10:25:05 -07006210 new_tx_rates = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06006211 break;
6212 }
6213
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006214 if (LIBIPW_OFDM_RATE_6MB_MASK & new_tx_rates) {
6215 mask |= (LIBIPW_OFDM_RATE_6MB_MASK >> 1);
6216 new_tx_rates &= ~LIBIPW_OFDM_RATE_6MB_MASK;
James Ketrenos43f66a62005-03-25 12:31:53 -06006217 }
Jeff Garzikbf794512005-07-31 13:07:26 -04006218
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006219 if (LIBIPW_OFDM_RATE_9MB_MASK & new_tx_rates) {
6220 mask |= (LIBIPW_OFDM_RATE_9MB_MASK >> 1);
6221 new_tx_rates &= ~LIBIPW_OFDM_RATE_9MB_MASK;
James Ketrenos43f66a62005-03-25 12:31:53 -06006222 }
Jeff Garzikbf794512005-07-31 13:07:26 -04006223
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006224 if (LIBIPW_OFDM_RATE_12MB_MASK & new_tx_rates) {
6225 mask |= (LIBIPW_OFDM_RATE_12MB_MASK >> 1);
6226 new_tx_rates &= ~LIBIPW_OFDM_RATE_12MB_MASK;
James Ketrenos43f66a62005-03-25 12:31:53 -06006227 }
Jeff Garzikbf794512005-07-31 13:07:26 -04006228
Reinette Chatre21f8a732009-08-18 10:25:05 -07006229 new_tx_rates |= mask;
James Ketrenos43f66a62005-03-25 12:31:53 -06006230 break;
6231 }
6232
Reinette Chatre21f8a732009-08-18 10:25:05 -07006233 fr.tx_rates = cpu_to_le16(new_tx_rates);
6234
James Ketrenos43f66a62005-03-25 12:31:53 -06006235 reg = ipw_read32(priv, IPW_MEM_FIXED_OVERRIDE);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04006236 ipw_write_reg32(priv, reg, *(u32 *) & fr);
James Ketrenos43f66a62005-03-25 12:31:53 -06006237}
6238
James Ketrenosea2b26e2005-08-24 21:25:16 -05006239static void ipw_abort_scan(struct ipw_priv *priv)
6240{
6241 int err;
6242
6243 if (priv->status & STATUS_SCAN_ABORTING) {
6244 IPW_DEBUG_HC("Ignoring concurrent scan abort request.\n");
6245 return;
6246 }
6247 priv->status |= STATUS_SCAN_ABORTING;
6248
6249 err = ipw_send_scan_abort(priv);
6250 if (err)
6251 IPW_DEBUG_HC("Request to abort scan failed.\n");
6252}
6253
James Ketrenosafbf30a2005-08-25 00:05:33 -05006254static void ipw_add_scan_channels(struct ipw_priv *priv,
6255 struct ipw_scan_request_ext *scan,
6256 int scan_type)
6257{
6258 int channel_index = 0;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006259 const struct libipw_geo *geo;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006260 int i;
6261
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006262 geo = libipw_get_geo(priv->ieee);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006263
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006264 if (priv->ieee->freq_band & LIBIPW_52GHZ_BAND) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006265 int start = channel_index;
6266 for (i = 0; i < geo->a_channels; i++) {
6267 if ((priv->status & STATUS_ASSOCIATED) &&
6268 geo->a[i].channel == priv->channel)
6269 continue;
6270 channel_index++;
6271 scan->channels_list[channel_index] = geo->a[i].channel;
Liu Hong1fe0adb2005-08-19 09:33:10 -05006272 ipw_set_scan_type(scan, channel_index,
6273 geo->a[i].
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006274 flags & LIBIPW_CH_PASSIVE_ONLY ?
Liu Hong1fe0adb2005-08-19 09:33:10 -05006275 IPW_SCAN_PASSIVE_FULL_DWELL_SCAN :
6276 scan_type);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006277 }
6278
6279 if (start != channel_index) {
6280 scan->channels_list[start] = (u8) (IPW_A_MODE << 6) |
6281 (channel_index - start);
6282 channel_index++;
6283 }
6284 }
6285
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006286 if (priv->ieee->freq_band & LIBIPW_24GHZ_BAND) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006287 int start = channel_index;
6288 if (priv->config & CFG_SPEED_SCAN) {
Liu Hong1fe0adb2005-08-19 09:33:10 -05006289 int index;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006290 u8 channels[LIBIPW_24GHZ_CHANNELS] = {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006291 /* nop out the list */
6292 [0] = 0
6293 };
6294
6295 u8 channel;
Zhu Yi7dd24592009-07-27 10:10:20 +08006296 while (channel_index < IPW_SCAN_CHANNELS - 1) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006297 channel =
6298 priv->speed_scan[priv->speed_scan_pos];
6299 if (channel == 0) {
6300 priv->speed_scan_pos = 0;
6301 channel = priv->speed_scan[0];
6302 }
6303 if ((priv->status & STATUS_ASSOCIATED) &&
6304 channel == priv->channel) {
6305 priv->speed_scan_pos++;
6306 continue;
6307 }
6308
6309 /* If this channel has already been
6310 * added in scan, break from loop
6311 * and this will be the first channel
6312 * in the next scan.
6313 */
6314 if (channels[channel - 1] != 0)
6315 break;
6316
6317 channels[channel - 1] = 1;
6318 priv->speed_scan_pos++;
6319 channel_index++;
6320 scan->channels_list[channel_index] = channel;
Liu Hong1fe0adb2005-08-19 09:33:10 -05006321 index =
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006322 libipw_channel_to_index(priv->ieee, channel);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006323 ipw_set_scan_type(scan, channel_index,
Liu Hong1fe0adb2005-08-19 09:33:10 -05006324 geo->bg[index].
6325 flags &
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006326 LIBIPW_CH_PASSIVE_ONLY ?
Liu Hong1fe0adb2005-08-19 09:33:10 -05006327 IPW_SCAN_PASSIVE_FULL_DWELL_SCAN
6328 : scan_type);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006329 }
6330 } else {
6331 for (i = 0; i < geo->bg_channels; i++) {
6332 if ((priv->status & STATUS_ASSOCIATED) &&
6333 geo->bg[i].channel == priv->channel)
6334 continue;
6335 channel_index++;
6336 scan->channels_list[channel_index] =
6337 geo->bg[i].channel;
6338 ipw_set_scan_type(scan, channel_index,
Liu Hong1fe0adb2005-08-19 09:33:10 -05006339 geo->bg[i].
6340 flags &
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006341 LIBIPW_CH_PASSIVE_ONLY ?
Liu Hong1fe0adb2005-08-19 09:33:10 -05006342 IPW_SCAN_PASSIVE_FULL_DWELL_SCAN
6343 : scan_type);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006344 }
6345 }
6346
6347 if (start != channel_index) {
6348 scan->channels_list[start] = (u8) (IPW_B_MODE << 6) |
6349 (channel_index - start);
6350 }
6351 }
6352}
6353
Helmut Schaa14a4dfe2008-12-10 13:17:26 +01006354static int ipw_passive_dwell_time(struct ipw_priv *priv)
6355{
6356 /* staying on passive channels longer than the DTIM interval during a
6357 * scan, while associated, causes the firmware to cancel the scan
6358 * without notification. Hence, don't stay on passive channels longer
6359 * than the beacon interval.
6360 */
6361 if (priv->status & STATUS_ASSOCIATED
6362 && priv->assoc_network->beacon_interval > 10)
6363 return priv->assoc_network->beacon_interval - 10;
6364 else
6365 return 120;
6366}
6367
Dan Williamsea177302008-06-02 17:51:23 -04006368static int ipw_request_scan_helper(struct ipw_priv *priv, int type, int direct)
James Ketrenosea2b26e2005-08-24 21:25:16 -05006369{
6370 struct ipw_scan_request_ext scan;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006371 int err = 0, scan_type;
6372
6373 if (!(priv->status & STATUS_INIT) ||
6374 (priv->status & STATUS_EXIT_PENDING))
6375 return 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006376
Zhu Yi46441512006-01-24 16:37:59 +08006377 mutex_lock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05006378
Dan Williamsea177302008-06-02 17:51:23 -04006379 if (direct && (priv->direct_scan_ssid_len == 0)) {
6380 IPW_DEBUG_HC("Direct scan requested but no SSID to scan for\n");
6381 priv->status &= ~STATUS_DIRECT_SCAN_PENDING;
6382 goto done;
6383 }
6384
James Ketrenosea2b26e2005-08-24 21:25:16 -05006385 if (priv->status & STATUS_SCANNING) {
Dan Williamsea177302008-06-02 17:51:23 -04006386 IPW_DEBUG_HC("Concurrent scan requested. Queuing.\n");
6387 priv->status |= direct ? STATUS_DIRECT_SCAN_PENDING :
6388 STATUS_SCAN_PENDING;
James Ketrenosb095c382005-08-24 22:04:42 -05006389 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006390 }
6391
James Ketrenosafbf30a2005-08-25 00:05:33 -05006392 if (!(priv->status & STATUS_SCAN_FORCED) &&
6393 priv->status & STATUS_SCAN_ABORTING) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006394 IPW_DEBUG_HC("Scan request while abort pending. Queuing.\n");
Dan Williamsea177302008-06-02 17:51:23 -04006395 priv->status |= direct ? STATUS_DIRECT_SCAN_PENDING :
6396 STATUS_SCAN_PENDING;
James Ketrenosb095c382005-08-24 22:04:42 -05006397 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006398 }
6399
6400 if (priv->status & STATUS_RF_KILL_MASK) {
Dan Williamsea177302008-06-02 17:51:23 -04006401 IPW_DEBUG_HC("Queuing scan due to RF Kill activation\n");
6402 priv->status |= direct ? STATUS_DIRECT_SCAN_PENDING :
6403 STATUS_SCAN_PENDING;
James Ketrenosb095c382005-08-24 22:04:42 -05006404 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006405 }
6406
6407 memset(&scan, 0, sizeof(scan));
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006408 scan.full_scan_index = cpu_to_le32(libipw_get_scans(priv->ieee));
James Ketrenosea2b26e2005-08-24 21:25:16 -05006409
Zhu Yi094c4d22006-08-21 11:39:03 +08006410 if (type == IW_SCAN_TYPE_PASSIVE) {
Helmut Schaa14a4dfe2008-12-10 13:17:26 +01006411 IPW_DEBUG_WX("use passive scanning\n");
6412 scan_type = IPW_SCAN_PASSIVE_FULL_DWELL_SCAN;
Zhu Yi094c4d22006-08-21 11:39:03 +08006413 scan.dwell_time[IPW_SCAN_PASSIVE_FULL_DWELL_SCAN] =
Helmut Schaa14a4dfe2008-12-10 13:17:26 +01006414 cpu_to_le16(ipw_passive_dwell_time(priv));
Zhu Yi094c4d22006-08-21 11:39:03 +08006415 ipw_add_scan_channels(priv, &scan, scan_type);
6416 goto send_request;
6417 }
6418
6419 /* Use active scan by default. */
Helmut Schaa14a4dfe2008-12-10 13:17:26 +01006420 if (priv->config & CFG_SPEED_SCAN)
James Ketrenosb095c382005-08-24 22:04:42 -05006421 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_SCAN] =
Zhu Yi094c4d22006-08-21 11:39:03 +08006422 cpu_to_le16(30);
James Ketrenosb095c382005-08-24 22:04:42 -05006423 else
6424 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_SCAN] =
Zhu Yi094c4d22006-08-21 11:39:03 +08006425 cpu_to_le16(20);
James Ketrenosb095c382005-08-24 22:04:42 -05006426
James Ketrenosa613bff2005-08-24 21:43:11 -05006427 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_AND_DIRECT_SCAN] =
Zhu Yi094c4d22006-08-21 11:39:03 +08006428 cpu_to_le16(20);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006429
Helmut Schaa14a4dfe2008-12-10 13:17:26 +01006430 scan.dwell_time[IPW_SCAN_PASSIVE_FULL_DWELL_SCAN] =
6431 cpu_to_le16(ipw_passive_dwell_time(priv));
Dan Williamsea177302008-06-02 17:51:23 -04006432 scan.dwell_time[IPW_SCAN_ACTIVE_DIRECT_SCAN] = cpu_to_le16(20);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006433
James Ketrenosb095c382005-08-24 22:04:42 -05006434#ifdef CONFIG_IPW2200_MONITOR
James Ketrenosea2b26e2005-08-24 21:25:16 -05006435 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006436 u8 channel;
James Ketrenosb095c382005-08-24 22:04:42 -05006437 u8 band = 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006438
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006439 switch (libipw_is_valid_channel(priv->ieee, priv->channel)) {
6440 case LIBIPW_52GHZ_BAND:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006441 band = (u8) (IPW_A_MODE << 6) | 1;
James Ketrenosb095c382005-08-24 22:04:42 -05006442 channel = priv->channel;
6443 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006444
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006445 case LIBIPW_24GHZ_BAND:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006446 band = (u8) (IPW_B_MODE << 6) | 1;
James Ketrenosb095c382005-08-24 22:04:42 -05006447 channel = priv->channel;
6448 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006449
James Ketrenosb095c382005-08-24 22:04:42 -05006450 default:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006451 band = (u8) (IPW_B_MODE << 6) | 1;
6452 channel = 9;
James Ketrenosb095c382005-08-24 22:04:42 -05006453 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006454 }
6455
James Ketrenosb095c382005-08-24 22:04:42 -05006456 scan.channels_list[0] = band;
6457 scan.channels_list[1] = channel;
6458 ipw_set_scan_type(&scan, 1, IPW_SCAN_PASSIVE_FULL_DWELL_SCAN);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006459
James Ketrenosb095c382005-08-24 22:04:42 -05006460 /* NOTE: The card will sit on this channel for this time
6461 * period. Scan aborts are timing sensitive and frequently
6462 * result in firmware restarts. As such, it is best to
6463 * set a small dwell_time here and just keep re-issuing
6464 * scans. Otherwise fast channel hopping will not actually
6465 * hop channels.
6466 *
6467 * TODO: Move SPEED SCAN support to all modes and bands */
James Ketrenosa613bff2005-08-24 21:43:11 -05006468 scan.dwell_time[IPW_SCAN_PASSIVE_FULL_DWELL_SCAN] =
Zhu Yi094c4d22006-08-21 11:39:03 +08006469 cpu_to_le16(2000);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006470 } else {
James Ketrenosb095c382005-08-24 22:04:42 -05006471#endif /* CONFIG_IPW2200_MONITOR */
Dan Williamsea177302008-06-02 17:51:23 -04006472 /* Honor direct scans first, otherwise if we are roaming make
6473 * this a direct scan for the current network. Finally,
6474 * ensure that every other scan is a fast channel hop scan */
6475 if (direct) {
6476 err = ipw_send_ssid(priv, priv->direct_scan_ssid,
6477 priv->direct_scan_ssid_len);
6478 if (err) {
6479 IPW_DEBUG_HC("Attempt to send SSID command "
6480 "failed\n");
6481 goto done;
6482 }
6483
6484 scan_type = IPW_SCAN_ACTIVE_BROADCAST_AND_DIRECT_SCAN;
6485 } else if ((priv->status & STATUS_ROAMING)
6486 || (!(priv->status & STATUS_ASSOCIATED)
6487 && (priv->config & CFG_STATIC_ESSID)
6488 && (le32_to_cpu(scan.full_scan_index) % 2))) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006489 err = ipw_send_ssid(priv, priv->essid, priv->essid_len);
6490 if (err) {
James Ketrenosb095c382005-08-24 22:04:42 -05006491 IPW_DEBUG_HC("Attempt to send SSID command "
6492 "failed.\n");
6493 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006494 }
6495
6496 scan_type = IPW_SCAN_ACTIVE_BROADCAST_AND_DIRECT_SCAN;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006497 } else
James Ketrenosea2b26e2005-08-24 21:25:16 -05006498 scan_type = IPW_SCAN_ACTIVE_BROADCAST_SCAN;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006499
James Ketrenosafbf30a2005-08-25 00:05:33 -05006500 ipw_add_scan_channels(priv, &scan, scan_type);
James Ketrenosb095c382005-08-24 22:04:42 -05006501#ifdef CONFIG_IPW2200_MONITOR
James Ketrenosea2b26e2005-08-24 21:25:16 -05006502 }
6503#endif
6504
Zhu Yi094c4d22006-08-21 11:39:03 +08006505send_request:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006506 err = ipw_send_scan_request_ext(priv, &scan);
6507 if (err) {
6508 IPW_DEBUG_HC("Sending scan command failed: %08X\n", err);
James Ketrenosb095c382005-08-24 22:04:42 -05006509 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006510 }
6511
6512 priv->status |= STATUS_SCANNING;
Dan Williamsea177302008-06-02 17:51:23 -04006513 if (direct) {
6514 priv->status &= ~STATUS_DIRECT_SCAN_PENDING;
6515 priv->direct_scan_ssid_len = 0;
6516 } else
6517 priv->status &= ~STATUS_SCAN_PENDING;
6518
James Ketrenosafbf30a2005-08-25 00:05:33 -05006519 queue_delayed_work(priv->workqueue, &priv->scan_check,
6520 IPW_SCAN_CHECK_WATCHDOG);
Zhu Yi094c4d22006-08-21 11:39:03 +08006521done:
Zhu Yi46441512006-01-24 16:37:59 +08006522 mutex_unlock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05006523 return err;
James Ketrenosc848d0a2005-08-24 21:56:24 -05006524}
6525
David Howellsc4028952006-11-22 14:57:56 +00006526static void ipw_request_passive_scan(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -05006527{
David Howellsc4028952006-11-22 14:57:56 +00006528 struct ipw_priv *priv =
Dan Williamsea177302008-06-02 17:51:23 -04006529 container_of(work, struct ipw_priv, request_passive_scan.work);
6530 ipw_request_scan_helper(priv, IW_SCAN_TYPE_PASSIVE, 0);
David Howellsc4028952006-11-22 14:57:56 +00006531}
6532
6533static void ipw_request_scan(struct work_struct *work)
6534{
6535 struct ipw_priv *priv =
6536 container_of(work, struct ipw_priv, request_scan.work);
Dan Williamsea177302008-06-02 17:51:23 -04006537 ipw_request_scan_helper(priv, IW_SCAN_TYPE_ACTIVE, 0);
6538}
6539
6540static void ipw_request_direct_scan(struct work_struct *work)
6541{
6542 struct ipw_priv *priv =
6543 container_of(work, struct ipw_priv, request_direct_scan.work);
6544 ipw_request_scan_helper(priv, IW_SCAN_TYPE_ACTIVE, 1);
David Howellsc4028952006-11-22 14:57:56 +00006545}
6546
6547static void ipw_bg_abort_scan(struct work_struct *work)
6548{
6549 struct ipw_priv *priv =
6550 container_of(work, struct ipw_priv, abort_scan);
Zhu Yi46441512006-01-24 16:37:59 +08006551 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00006552 ipw_abort_scan(priv);
Zhu Yi46441512006-01-24 16:37:59 +08006553 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05006554}
6555
James Ketrenosea2b26e2005-08-24 21:25:16 -05006556static int ipw_wpa_enable(struct ipw_priv *priv, int value)
6557{
James Ketrenosb095c382005-08-24 22:04:42 -05006558 /* This is called when wpa_supplicant loads and closes the driver
6559 * interface. */
Hong Liucdd1fa12005-08-31 18:14:27 +08006560 priv->ieee->wpa_enabled = value;
James Ketrenosb095c382005-08-24 22:04:42 -05006561 return 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006562}
6563
James Ketrenosea2b26e2005-08-24 21:25:16 -05006564static int ipw_wpa_set_auth_algs(struct ipw_priv *priv, int value)
6565{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006566 struct libipw_device *ieee = priv->ieee;
6567 struct libipw_security sec = {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006568 .flags = SEC_AUTH_MODE,
6569 };
6570 int ret = 0;
6571
James Ketrenosafbf30a2005-08-25 00:05:33 -05006572 if (value & IW_AUTH_ALG_SHARED_KEY) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006573 sec.auth_mode = WLAN_AUTH_SHARED_KEY;
6574 ieee->open_wep = 0;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006575 } else if (value & IW_AUTH_ALG_OPEN_SYSTEM) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006576 sec.auth_mode = WLAN_AUTH_OPEN;
6577 ieee->open_wep = 1;
Zhu Yi3e234b42006-01-24 16:36:52 +08006578 } else if (value & IW_AUTH_ALG_LEAP) {
6579 sec.auth_mode = WLAN_AUTH_LEAP;
6580 ieee->open_wep = 1;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006581 } else
6582 return -EINVAL;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006583
6584 if (ieee->set_security)
6585 ieee->set_security(ieee->dev, &sec);
6586 else
6587 ret = -EOPNOTSUPP;
6588
6589 return ret;
6590}
6591
Adrian Bunka73e22b2006-01-21 01:39:42 +01006592static void ipw_wpa_assoc_frame(struct ipw_priv *priv, char *wpa_ie,
6593 int wpa_ie_len)
James Ketrenosafbf30a2005-08-25 00:05:33 -05006594{
6595 /* make sure WPA is enabled */
6596 ipw_wpa_enable(priv, 1);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006597}
6598
6599static int ipw_set_rsn_capa(struct ipw_priv *priv,
6600 char *capabilities, int length)
6601{
James Ketrenosafbf30a2005-08-25 00:05:33 -05006602 IPW_DEBUG_HC("HOST_CMD_RSN_CAPABILITIES\n");
6603
Zhu Yi0a7bcf22006-01-24 16:37:28 +08006604 return ipw_send_cmd_pdu(priv, IPW_CMD_RSN_CAPABILITIES, length,
Zhu Yi2638bc32006-01-24 16:37:52 +08006605 capabilities);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006606}
6607
James Ketrenosafbf30a2005-08-25 00:05:33 -05006608/*
6609 * WE-18 support
6610 */
6611
6612/* SIOCSIWGENIE */
6613static int ipw_wx_set_genie(struct net_device *dev,
6614 struct iw_request_info *info,
6615 union iwreq_data *wrqu, char *extra)
6616{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006617 struct ipw_priv *priv = libipw_priv(dev);
6618 struct libipw_device *ieee = priv->ieee;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006619 u8 *buf;
6620 int err = 0;
6621
6622 if (wrqu->data.length > MAX_WPA_IE_LEN ||
6623 (wrqu->data.length && extra == NULL))
6624 return -EINVAL;
6625
James Ketrenosafbf30a2005-08-25 00:05:33 -05006626 if (wrqu->data.length) {
Julia Lawalld3e50332010-05-15 23:21:01 +02006627 buf = kmemdup(extra, wrqu->data.length, GFP_KERNEL);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006628 if (buf == NULL) {
6629 err = -ENOMEM;
6630 goto out;
6631 }
6632
James Ketrenosafbf30a2005-08-25 00:05:33 -05006633 kfree(ieee->wpa_ie);
6634 ieee->wpa_ie = buf;
6635 ieee->wpa_ie_len = wrqu->data.length;
6636 } else {
6637 kfree(ieee->wpa_ie);
6638 ieee->wpa_ie = NULL;
6639 ieee->wpa_ie_len = 0;
6640 }
6641
6642 ipw_wpa_assoc_frame(priv, ieee->wpa_ie, ieee->wpa_ie_len);
6643 out:
James Ketrenosafbf30a2005-08-25 00:05:33 -05006644 return err;
6645}
6646
6647/* SIOCGIWGENIE */
6648static int ipw_wx_get_genie(struct net_device *dev,
6649 struct iw_request_info *info,
6650 union iwreq_data *wrqu, char *extra)
6651{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006652 struct ipw_priv *priv = libipw_priv(dev);
6653 struct libipw_device *ieee = priv->ieee;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006654 int err = 0;
6655
James Ketrenosafbf30a2005-08-25 00:05:33 -05006656 if (ieee->wpa_ie_len == 0 || ieee->wpa_ie == NULL) {
6657 wrqu->data.length = 0;
6658 goto out;
6659 }
6660
6661 if (wrqu->data.length < ieee->wpa_ie_len) {
6662 err = -E2BIG;
6663 goto out;
6664 }
6665
6666 wrqu->data.length = ieee->wpa_ie_len;
6667 memcpy(extra, ieee->wpa_ie, ieee->wpa_ie_len);
6668
6669 out:
James Ketrenosafbf30a2005-08-25 00:05:33 -05006670 return err;
6671}
6672
Zhu Yi1fbfea52005-08-05 17:22:56 +08006673static int wext_cipher2level(int cipher)
6674{
6675 switch (cipher) {
6676 case IW_AUTH_CIPHER_NONE:
6677 return SEC_LEVEL_0;
6678 case IW_AUTH_CIPHER_WEP40:
6679 case IW_AUTH_CIPHER_WEP104:
6680 return SEC_LEVEL_1;
6681 case IW_AUTH_CIPHER_TKIP:
6682 return SEC_LEVEL_2;
6683 case IW_AUTH_CIPHER_CCMP:
6684 return SEC_LEVEL_3;
6685 default:
6686 return -1;
6687 }
6688}
6689
James Ketrenosafbf30a2005-08-25 00:05:33 -05006690/* SIOCSIWAUTH */
6691static int ipw_wx_set_auth(struct net_device *dev,
6692 struct iw_request_info *info,
6693 union iwreq_data *wrqu, char *extra)
6694{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006695 struct ipw_priv *priv = libipw_priv(dev);
6696 struct libipw_device *ieee = priv->ieee;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006697 struct iw_param *param = &wrqu->param;
John W. Linville274bfb82008-10-29 11:35:05 -04006698 struct lib80211_crypt_data *crypt;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006699 unsigned long flags;
6700 int ret = 0;
6701
6702 switch (param->flags & IW_AUTH_INDEX) {
6703 case IW_AUTH_WPA_VERSION:
Zhu Yi1fbfea52005-08-05 17:22:56 +08006704 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006705 case IW_AUTH_CIPHER_PAIRWISE:
Zhu Yi1fbfea52005-08-05 17:22:56 +08006706 ipw_set_hw_decrypt_unicast(priv,
6707 wext_cipher2level(param->value));
6708 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006709 case IW_AUTH_CIPHER_GROUP:
Zhu Yi1fbfea52005-08-05 17:22:56 +08006710 ipw_set_hw_decrypt_multicast(priv,
6711 wext_cipher2level(param->value));
6712 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006713 case IW_AUTH_KEY_MGMT:
6714 /*
6715 * ipw2200 does not use these parameters
6716 */
6717 break;
6718
6719 case IW_AUTH_TKIP_COUNTERMEASURES:
John W. Linville274bfb82008-10-29 11:35:05 -04006720 crypt = priv->ieee->crypt_info.crypt[priv->ieee->crypt_info.tx_keyidx];
James Ketrenos991d1cc2005-10-13 09:26:48 +00006721 if (!crypt || !crypt->ops->set_flags || !crypt->ops->get_flags)
James Ketrenosafbf30a2005-08-25 00:05:33 -05006722 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006723
6724 flags = crypt->ops->get_flags(crypt->priv);
6725
6726 if (param->value)
6727 flags |= IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
6728 else
6729 flags &= ~IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
6730
6731 crypt->ops->set_flags(flags, crypt->priv);
6732
6733 break;
6734
6735 case IW_AUTH_DROP_UNENCRYPTED:{
6736 /* HACK:
6737 *
6738 * wpa_supplicant calls set_wpa_enabled when the driver
6739 * is loaded and unloaded, regardless of if WPA is being
6740 * used. No other calls are made which can be used to
6741 * determine if encryption will be used or not prior to
6742 * association being expected. If encryption is not being
6743 * used, drop_unencrypted is set to false, else true -- we
6744 * can use this to determine if the CAP_PRIVACY_ON bit should
6745 * be set.
6746 */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006747 struct libipw_security sec = {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006748 .flags = SEC_ENABLED,
6749 .enabled = param->value,
6750 };
6751 priv->ieee->drop_unencrypted = param->value;
6752 /* We only change SEC_LEVEL for open mode. Others
6753 * are set by ipw_wpa_set_encryption.
6754 */
6755 if (!param->value) {
6756 sec.flags |= SEC_LEVEL;
6757 sec.level = SEC_LEVEL_0;
6758 } else {
6759 sec.flags |= SEC_LEVEL;
6760 sec.level = SEC_LEVEL_1;
6761 }
6762 if (priv->ieee->set_security)
6763 priv->ieee->set_security(priv->ieee->dev, &sec);
6764 break;
6765 }
6766
6767 case IW_AUTH_80211_AUTH_ALG:
6768 ret = ipw_wpa_set_auth_algs(priv, param->value);
6769 break;
6770
6771 case IW_AUTH_WPA_ENABLED:
6772 ret = ipw_wpa_enable(priv, param->value);
Zhu Yie3c5a642006-04-13 17:21:13 +08006773 ipw_disassociate(priv);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006774 break;
6775
6776 case IW_AUTH_RX_UNENCRYPTED_EAPOL:
6777 ieee->ieee802_1x = param->value;
6778 break;
6779
James Ketrenosafbf30a2005-08-25 00:05:33 -05006780 case IW_AUTH_PRIVACY_INVOKED:
6781 ieee->privacy_invoked = param->value;
6782 break;
6783
6784 default:
6785 return -EOPNOTSUPP;
6786 }
6787 return ret;
6788}
6789
6790/* SIOCGIWAUTH */
6791static int ipw_wx_get_auth(struct net_device *dev,
6792 struct iw_request_info *info,
6793 union iwreq_data *wrqu, char *extra)
6794{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006795 struct ipw_priv *priv = libipw_priv(dev);
6796 struct libipw_device *ieee = priv->ieee;
John W. Linville274bfb82008-10-29 11:35:05 -04006797 struct lib80211_crypt_data *crypt;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006798 struct iw_param *param = &wrqu->param;
6799 int ret = 0;
6800
6801 switch (param->flags & IW_AUTH_INDEX) {
6802 case IW_AUTH_WPA_VERSION:
6803 case IW_AUTH_CIPHER_PAIRWISE:
6804 case IW_AUTH_CIPHER_GROUP:
6805 case IW_AUTH_KEY_MGMT:
6806 /*
6807 * wpa_supplicant will control these internally
6808 */
6809 ret = -EOPNOTSUPP;
6810 break;
6811
6812 case IW_AUTH_TKIP_COUNTERMEASURES:
John W. Linville274bfb82008-10-29 11:35:05 -04006813 crypt = priv->ieee->crypt_info.crypt[priv->ieee->crypt_info.tx_keyidx];
James Ketrenos991d1cc2005-10-13 09:26:48 +00006814 if (!crypt || !crypt->ops->get_flags)
James Ketrenosafbf30a2005-08-25 00:05:33 -05006815 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006816
6817 param->value = (crypt->ops->get_flags(crypt->priv) &
6818 IEEE80211_CRYPTO_TKIP_COUNTERMEASURES) ? 1 : 0;
6819
6820 break;
6821
6822 case IW_AUTH_DROP_UNENCRYPTED:
6823 param->value = ieee->drop_unencrypted;
6824 break;
6825
6826 case IW_AUTH_80211_AUTH_ALG:
6827 param->value = ieee->sec.auth_mode;
6828 break;
6829
6830 case IW_AUTH_WPA_ENABLED:
6831 param->value = ieee->wpa_enabled;
6832 break;
6833
6834 case IW_AUTH_RX_UNENCRYPTED_EAPOL:
6835 param->value = ieee->ieee802_1x;
6836 break;
6837
6838 case IW_AUTH_ROAMING_CONTROL:
6839 case IW_AUTH_PRIVACY_INVOKED:
6840 param->value = ieee->privacy_invoked;
6841 break;
6842
6843 default:
6844 return -EOPNOTSUPP;
6845 }
6846 return 0;
6847}
6848
6849/* SIOCSIWENCODEEXT */
6850static int ipw_wx_set_encodeext(struct net_device *dev,
6851 struct iw_request_info *info,
6852 union iwreq_data *wrqu, char *extra)
6853{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006854 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006855 struct iw_encode_ext *ext = (struct iw_encode_ext *)extra;
6856
6857 if (hwcrypto) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006858 if (ext->alg == IW_ENCODE_ALG_TKIP) {
Hong Liu567deaf2005-08-31 18:07:22 +08006859 /* IPW HW can't build TKIP MIC,
6860 host decryption still needed */
6861 if (ext->ext_flags & IW_ENCODE_EXT_GROUP_KEY)
6862 priv->ieee->host_mc_decrypt = 1;
6863 else {
6864 priv->ieee->host_encrypt = 0;
6865 priv->ieee->host_encrypt_msdu = 1;
6866 priv->ieee->host_decrypt = 1;
6867 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05006868 } else {
6869 priv->ieee->host_encrypt = 0;
6870 priv->ieee->host_encrypt_msdu = 0;
6871 priv->ieee->host_decrypt = 0;
Hong Liu567deaf2005-08-31 18:07:22 +08006872 priv->ieee->host_mc_decrypt = 0;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006873 }
6874 }
6875
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006876 return libipw_wx_set_encodeext(priv->ieee, info, wrqu, extra);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006877}
6878
6879/* SIOCGIWENCODEEXT */
6880static int ipw_wx_get_encodeext(struct net_device *dev,
6881 struct iw_request_info *info,
6882 union iwreq_data *wrqu, char *extra)
6883{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006884 struct ipw_priv *priv = libipw_priv(dev);
6885 return libipw_wx_get_encodeext(priv->ieee, info, wrqu, extra);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006886}
6887
6888/* SIOCSIWMLME */
6889static int ipw_wx_set_mlme(struct net_device *dev,
6890 struct iw_request_info *info,
6891 union iwreq_data *wrqu, char *extra)
6892{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006893 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006894 struct iw_mlme *mlme = (struct iw_mlme *)extra;
Al Viroe62e1ee2007-12-27 01:36:46 -05006895 __le16 reason;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006896
6897 reason = cpu_to_le16(mlme->reason_code);
6898
6899 switch (mlme->cmd) {
6900 case IW_MLME_DEAUTH:
Pavel Machek67fd6b42006-07-11 15:34:05 +02006901 /* silently ignore */
James Ketrenosafbf30a2005-08-25 00:05:33 -05006902 break;
6903
6904 case IW_MLME_DISASSOC:
6905 ipw_disassociate(priv);
6906 break;
6907
6908 default:
6909 return -EOPNOTSUPP;
6910 }
6911 return 0;
6912}
James Ketrenosea2b26e2005-08-24 21:25:16 -05006913
Zhu Yie43e3c12006-04-13 17:20:45 +08006914#ifdef CONFIG_IPW2200_QOS
James Ketrenosb095c382005-08-24 22:04:42 -05006915
6916/* QoS */
6917/*
6918* get the modulation type of the current network or
6919* the card current mode
6920*/
Adrian Bunk53d0bcf2006-03-04 13:14:31 +01006921static u8 ipw_qos_current_mode(struct ipw_priv * priv)
James Ketrenosb095c382005-08-24 22:04:42 -05006922{
6923 u8 mode = 0;
6924
6925 if (priv->status & STATUS_ASSOCIATED) {
6926 unsigned long flags;
6927
6928 spin_lock_irqsave(&priv->ieee->lock, flags);
6929 mode = priv->assoc_network->mode;
6930 spin_unlock_irqrestore(&priv->ieee->lock, flags);
6931 } else {
6932 mode = priv->ieee->mode;
6933 }
Frans Pop9fd1ea42010-03-24 19:46:31 +01006934 IPW_DEBUG_QOS("QoS network/card mode %d\n", mode);
James Ketrenosb095c382005-08-24 22:04:42 -05006935 return mode;
6936}
6937
6938/*
6939* Handle management frame beacon and probe response
6940*/
James Ketrenos3b9990c2005-08-19 13:18:55 -05006941static int ipw_qos_handle_probe_response(struct ipw_priv *priv,
6942 int active_network,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006943 struct libipw_network *network)
James Ketrenosb095c382005-08-24 22:04:42 -05006944{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006945 u32 size = sizeof(struct libipw_qos_parameters);
James Ketrenosb095c382005-08-24 22:04:42 -05006946
James Ketrenosafbf30a2005-08-25 00:05:33 -05006947 if (network->capability & WLAN_CAPABILITY_IBSS)
James Ketrenosb095c382005-08-24 22:04:42 -05006948 network->qos_data.active = network->qos_data.supported;
6949
6950 if (network->flags & NETWORK_HAS_QOS_MASK) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006951 if (active_network &&
6952 (network->flags & NETWORK_HAS_QOS_PARAMETERS))
James Ketrenosb095c382005-08-24 22:04:42 -05006953 network->qos_data.active = network->qos_data.supported;
6954
6955 if ((network->qos_data.active == 1) && (active_network == 1) &&
6956 (network->flags & NETWORK_HAS_QOS_PARAMETERS) &&
6957 (network->qos_data.old_param_count !=
6958 network->qos_data.param_count)) {
6959 network->qos_data.old_param_count =
6960 network->qos_data.param_count;
6961 schedule_work(&priv->qos_activate);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006962 IPW_DEBUG_QOS("QoS parameters change call "
6963 "qos_activate\n");
James Ketrenosb095c382005-08-24 22:04:42 -05006964 }
6965 } else {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006966 if ((priv->ieee->mode == IEEE_B) || (network->mode == IEEE_B))
6967 memcpy(&network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05006968 &def_parameters_CCK, size);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006969 else
6970 memcpy(&network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05006971 &def_parameters_OFDM, size);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006972
James Ketrenosb095c382005-08-24 22:04:42 -05006973 if ((network->qos_data.active == 1) && (active_network == 1)) {
Frans Pop9fd1ea42010-03-24 19:46:31 +01006974 IPW_DEBUG_QOS("QoS was disabled call qos_activate\n");
James Ketrenosb095c382005-08-24 22:04:42 -05006975 schedule_work(&priv->qos_activate);
6976 }
6977
6978 network->qos_data.active = 0;
6979 network->qos_data.supported = 0;
6980 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05006981 if ((priv->status & STATUS_ASSOCIATED) &&
6982 (priv->ieee->iw_mode == IW_MODE_ADHOC) && (active_network == 0)) {
6983 if (memcmp(network->bssid, priv->bssid, ETH_ALEN))
John W. Linvillec5d3dce2008-09-30 17:17:26 -04006984 if (network->capability & WLAN_CAPABILITY_IBSS)
James Ketrenosb095c382005-08-24 22:04:42 -05006985 if ((network->ssid_len ==
James Ketrenosafbf30a2005-08-25 00:05:33 -05006986 priv->assoc_network->ssid_len) &&
6987 !memcmp(network->ssid,
6988 priv->assoc_network->ssid,
6989 network->ssid_len)) {
James Ketrenosb095c382005-08-24 22:04:42 -05006990 queue_work(priv->workqueue,
6991 &priv->merge_networks);
6992 }
James Ketrenosb095c382005-08-24 22:04:42 -05006993 }
6994
6995 return 0;
6996}
6997
6998/*
6999* This function set up the firmware to support QoS. It sends
7000* IPW_CMD_QOS_PARAMETERS and IPW_CMD_WME_INFO
7001*/
7002static int ipw_qos_activate(struct ipw_priv *priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007003 struct libipw_qos_data *qos_network_data)
James Ketrenosb095c382005-08-24 22:04:42 -05007004{
7005 int err;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007006 struct libipw_qos_parameters qos_parameters[QOS_QOS_SETS];
7007 struct libipw_qos_parameters *active_one = NULL;
7008 u32 size = sizeof(struct libipw_qos_parameters);
James Ketrenosb095c382005-08-24 22:04:42 -05007009 u32 burst_duration;
7010 int i;
7011 u8 type;
7012
7013 type = ipw_qos_current_mode(priv);
7014
7015 active_one = &(qos_parameters[QOS_PARAM_SET_DEF_CCK]);
7016 memcpy(active_one, priv->qos_data.def_qos_parm_CCK, size);
7017 active_one = &(qos_parameters[QOS_PARAM_SET_DEF_OFDM]);
7018 memcpy(active_one, priv->qos_data.def_qos_parm_OFDM, size);
7019
7020 if (qos_network_data == NULL) {
7021 if (type == IEEE_B) {
7022 IPW_DEBUG_QOS("QoS activate network mode %d\n", type);
7023 active_one = &def_parameters_CCK;
7024 } else
7025 active_one = &def_parameters_OFDM;
7026
James Ketrenosafbf30a2005-08-25 00:05:33 -05007027 memcpy(&qos_parameters[QOS_PARAM_SET_ACTIVE], active_one, size);
James Ketrenosb095c382005-08-24 22:04:42 -05007028 burst_duration = ipw_qos_get_burst_duration(priv);
7029 for (i = 0; i < QOS_QUEUE_NUM; i++)
James Ketrenosafbf30a2005-08-25 00:05:33 -05007030 qos_parameters[QOS_PARAM_SET_ACTIVE].tx_op_limit[i] =
Al Viro8fffc152007-12-27 01:25:40 -05007031 cpu_to_le16(burst_duration);
James Ketrenosafbf30a2005-08-25 00:05:33 -05007032 } else if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
James Ketrenosb095c382005-08-24 22:04:42 -05007033 if (type == IEEE_B) {
7034 IPW_DEBUG_QOS("QoS activate IBSS nework mode %d\n",
7035 type);
7036 if (priv->qos_data.qos_enable == 0)
7037 active_one = &def_parameters_CCK;
7038 else
7039 active_one = priv->qos_data.def_qos_parm_CCK;
7040 } else {
7041 if (priv->qos_data.qos_enable == 0)
7042 active_one = &def_parameters_OFDM;
7043 else
7044 active_one = priv->qos_data.def_qos_parm_OFDM;
7045 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05007046 memcpy(&qos_parameters[QOS_PARAM_SET_ACTIVE], active_one, size);
James Ketrenosb095c382005-08-24 22:04:42 -05007047 } else {
7048 unsigned long flags;
7049 int active;
7050
7051 spin_lock_irqsave(&priv->ieee->lock, flags);
7052 active_one = &(qos_network_data->parameters);
7053 qos_network_data->old_param_count =
7054 qos_network_data->param_count;
James Ketrenosafbf30a2005-08-25 00:05:33 -05007055 memcpy(&qos_parameters[QOS_PARAM_SET_ACTIVE], active_one, size);
James Ketrenosb095c382005-08-24 22:04:42 -05007056 active = qos_network_data->supported;
7057 spin_unlock_irqrestore(&priv->ieee->lock, flags);
7058
7059 if (active == 0) {
7060 burst_duration = ipw_qos_get_burst_duration(priv);
7061 for (i = 0; i < QOS_QUEUE_NUM; i++)
7062 qos_parameters[QOS_PARAM_SET_ACTIVE].
Al Viro8fffc152007-12-27 01:25:40 -05007063 tx_op_limit[i] = cpu_to_le16(burst_duration);
James Ketrenosb095c382005-08-24 22:04:42 -05007064 }
7065 }
7066
7067 IPW_DEBUG_QOS("QoS sending IPW_CMD_QOS_PARAMETERS\n");
James Ketrenosafbf30a2005-08-25 00:05:33 -05007068 err = ipw_send_qos_params_command(priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007069 (struct libipw_qos_parameters *)
James Ketrenosafbf30a2005-08-25 00:05:33 -05007070 &(qos_parameters[0]));
James Ketrenosb095c382005-08-24 22:04:42 -05007071 if (err)
7072 IPW_DEBUG_QOS("QoS IPW_CMD_QOS_PARAMETERS failed\n");
7073
7074 return err;
7075}
7076
7077/*
7078* send IPW_CMD_WME_INFO to the firmware
7079*/
7080static int ipw_qos_set_info_element(struct ipw_priv *priv)
7081{
7082 int ret = 0;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007083 struct libipw_qos_information_element qos_info;
James Ketrenosb095c382005-08-24 22:04:42 -05007084
7085 if (priv == NULL)
7086 return -1;
7087
7088 qos_info.elementID = QOS_ELEMENT_ID;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007089 qos_info.length = sizeof(struct libipw_qos_information_element) - 2;
James Ketrenosb095c382005-08-24 22:04:42 -05007090
7091 qos_info.version = QOS_VERSION_1;
7092 qos_info.ac_info = 0;
7093
7094 memcpy(qos_info.qui, qos_oui, QOS_OUI_LEN);
7095 qos_info.qui_type = QOS_OUI_TYPE;
7096 qos_info.qui_subtype = QOS_OUI_INFO_SUB_TYPE;
7097
7098 ret = ipw_send_qos_info_command(priv, &qos_info);
7099 if (ret != 0) {
7100 IPW_DEBUG_QOS("QoS error calling ipw_send_qos_info_command\n");
7101 }
7102 return ret;
7103}
7104
7105/*
7106* Set the QoS parameter with the association request structure
7107*/
7108static int ipw_qos_association(struct ipw_priv *priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007109 struct libipw_network *network)
James Ketrenosb095c382005-08-24 22:04:42 -05007110{
7111 int err = 0;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007112 struct libipw_qos_data *qos_data = NULL;
7113 struct libipw_qos_data ibss_data = {
James Ketrenosb095c382005-08-24 22:04:42 -05007114 .supported = 1,
7115 .active = 1,
7116 };
7117
7118 switch (priv->ieee->iw_mode) {
7119 case IW_MODE_ADHOC:
Eric Sesterhenn5d9428d2006-04-02 13:52:48 +02007120 BUG_ON(!(network->capability & WLAN_CAPABILITY_IBSS));
James Ketrenosb095c382005-08-24 22:04:42 -05007121
7122 qos_data = &ibss_data;
7123 break;
7124
7125 case IW_MODE_INFRA:
7126 qos_data = &network->qos_data;
7127 break;
7128
7129 default:
7130 BUG();
7131 break;
7132 }
7133
7134 err = ipw_qos_activate(priv, qos_data);
7135 if (err) {
7136 priv->assoc_request.policy_support &= ~HC_QOS_SUPPORT_ASSOC;
7137 return err;
7138 }
7139
7140 if (priv->qos_data.qos_enable && qos_data->supported) {
7141 IPW_DEBUG_QOS("QoS will be enabled for this association\n");
7142 priv->assoc_request.policy_support |= HC_QOS_SUPPORT_ASSOC;
7143 return ipw_qos_set_info_element(priv);
7144 }
7145
7146 return 0;
7147}
7148
7149/*
Matt LaPlante0779bf22006-11-30 05:24:39 +01007150* handling the beaconing responses. if we get different QoS setting
7151* off the network from the associated setting, adjust the QoS
James Ketrenosb095c382005-08-24 22:04:42 -05007152* setting
7153*/
7154static int ipw_qos_association_resp(struct ipw_priv *priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007155 struct libipw_network *network)
James Ketrenosb095c382005-08-24 22:04:42 -05007156{
7157 int ret = 0;
7158 unsigned long flags;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007159 u32 size = sizeof(struct libipw_qos_parameters);
James Ketrenosb095c382005-08-24 22:04:42 -05007160 int set_qos_param = 0;
7161
James Ketrenosafbf30a2005-08-25 00:05:33 -05007162 if ((priv == NULL) || (network == NULL) ||
7163 (priv->assoc_network == NULL))
James Ketrenosb095c382005-08-24 22:04:42 -05007164 return ret;
7165
7166 if (!(priv->status & STATUS_ASSOCIATED))
7167 return ret;
7168
James Ketrenosafbf30a2005-08-25 00:05:33 -05007169 if ((priv->ieee->iw_mode != IW_MODE_INFRA))
James Ketrenosb095c382005-08-24 22:04:42 -05007170 return ret;
James Ketrenosb095c382005-08-24 22:04:42 -05007171
7172 spin_lock_irqsave(&priv->ieee->lock, flags);
7173 if (network->flags & NETWORK_HAS_QOS_PARAMETERS) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007174 memcpy(&priv->assoc_network->qos_data, &network->qos_data,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007175 sizeof(struct libipw_qos_data));
James Ketrenosb095c382005-08-24 22:04:42 -05007176 priv->assoc_network->qos_data.active = 1;
7177 if ((network->qos_data.old_param_count !=
7178 network->qos_data.param_count)) {
7179 set_qos_param = 1;
7180 network->qos_data.old_param_count =
7181 network->qos_data.param_count;
7182 }
7183
7184 } else {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007185 if ((network->mode == IEEE_B) || (priv->ieee->mode == IEEE_B))
7186 memcpy(&priv->assoc_network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05007187 &def_parameters_CCK, size);
James Ketrenosafbf30a2005-08-25 00:05:33 -05007188 else
7189 memcpy(&priv->assoc_network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05007190 &def_parameters_OFDM, size);
James Ketrenosb095c382005-08-24 22:04:42 -05007191 priv->assoc_network->qos_data.active = 0;
7192 priv->assoc_network->qos_data.supported = 0;
7193 set_qos_param = 1;
7194 }
7195
7196 spin_unlock_irqrestore(&priv->ieee->lock, flags);
7197
7198 if (set_qos_param == 1)
7199 schedule_work(&priv->qos_activate);
7200
7201 return ret;
7202}
7203
7204static u32 ipw_qos_get_burst_duration(struct ipw_priv *priv)
7205{
7206 u32 ret = 0;
7207
7208 if ((priv == NULL))
7209 return 0;
7210
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007211 if (!(priv->ieee->modulation & LIBIPW_OFDM_MODULATION))
James Ketrenosb095c382005-08-24 22:04:42 -05007212 ret = priv->qos_data.burst_duration_CCK;
James Ketrenosafbf30a2005-08-25 00:05:33 -05007213 else
James Ketrenosb095c382005-08-24 22:04:42 -05007214 ret = priv->qos_data.burst_duration_OFDM;
James Ketrenosafbf30a2005-08-25 00:05:33 -05007215
James Ketrenosb095c382005-08-24 22:04:42 -05007216 return ret;
7217}
7218
7219/*
7220* Initialize the setting of QoS global
7221*/
7222static void ipw_qos_init(struct ipw_priv *priv, int enable,
7223 int burst_enable, u32 burst_duration_CCK,
7224 u32 burst_duration_OFDM)
7225{
7226 priv->qos_data.qos_enable = enable;
7227
7228 if (priv->qos_data.qos_enable) {
7229 priv->qos_data.def_qos_parm_CCK = &def_qos_parameters_CCK;
7230 priv->qos_data.def_qos_parm_OFDM = &def_qos_parameters_OFDM;
7231 IPW_DEBUG_QOS("QoS is enabled\n");
7232 } else {
7233 priv->qos_data.def_qos_parm_CCK = &def_parameters_CCK;
7234 priv->qos_data.def_qos_parm_OFDM = &def_parameters_OFDM;
7235 IPW_DEBUG_QOS("QoS is not enabled\n");
7236 }
7237
7238 priv->qos_data.burst_enable = burst_enable;
7239
7240 if (burst_enable) {
7241 priv->qos_data.burst_duration_CCK = burst_duration_CCK;
7242 priv->qos_data.burst_duration_OFDM = burst_duration_OFDM;
7243 } else {
7244 priv->qos_data.burst_duration_CCK = 0;
7245 priv->qos_data.burst_duration_OFDM = 0;
7246 }
7247}
7248
7249/*
7250* map the packet priority to the right TX Queue
7251*/
7252static int ipw_get_tx_queue_number(struct ipw_priv *priv, u16 priority)
7253{
7254 if (priority > 7 || !priv->qos_data.qos_enable)
7255 priority = 0;
7256
7257 return from_priority_to_tx_queue[priority] - 1;
7258}
7259
Zhu Yia5cf4fe2006-04-13 17:19:11 +08007260static int ipw_is_qos_active(struct net_device *dev,
7261 struct sk_buff *skb)
James Ketrenosb095c382005-08-24 22:04:42 -05007262{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007263 struct ipw_priv *priv = libipw_priv(dev);
7264 struct libipw_qos_data *qos_data = NULL;
James Ketrenosb095c382005-08-24 22:04:42 -05007265 int active, supported;
Zhu Yia5cf4fe2006-04-13 17:19:11 +08007266 u8 *daddr = skb->data + ETH_ALEN;
7267 int unicast = !is_multicast_ether_addr(daddr);
James Ketrenosb095c382005-08-24 22:04:42 -05007268
7269 if (!(priv->status & STATUS_ASSOCIATED))
7270 return 0;
7271
7272 qos_data = &priv->assoc_network->qos_data;
7273
James Ketrenosb095c382005-08-24 22:04:42 -05007274 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
7275 if (unicast == 0)
7276 qos_data->active = 0;
7277 else
7278 qos_data->active = qos_data->supported;
7279 }
James Ketrenosb095c382005-08-24 22:04:42 -05007280 active = qos_data->active;
7281 supported = qos_data->supported;
James Ketrenosafbf30a2005-08-25 00:05:33 -05007282 IPW_DEBUG_QOS("QoS %d network is QoS active %d supported %d "
7283 "unicast %d\n",
7284 priv->qos_data.qos_enable, active, supported, unicast);
Zhu Yia5cf4fe2006-04-13 17:19:11 +08007285 if (active && priv->qos_data.qos_enable)
7286 return 1;
James Ketrenosb095c382005-08-24 22:04:42 -05007287
Zhu Yia5cf4fe2006-04-13 17:19:11 +08007288 return 0;
7289
7290}
7291/*
7292* add QoS parameter to the TX command
7293*/
7294static int ipw_qos_set_tx_queue_command(struct ipw_priv *priv,
7295 u16 priority,
7296 struct tfd_data *tfd)
7297{
7298 int tx_queue_id = 0;
7299
7300
7301 tx_queue_id = from_priority_to_tx_queue[priority] - 1;
7302 tfd->tx_flags_ext |= DCT_FLAG_EXT_QOS_ENABLED;
7303
7304 if (priv->qos_data.qos_no_ack_mask & (1UL << tx_queue_id)) {
7305 tfd->tx_flags &= ~DCT_FLAG_ACK_REQD;
Zhu Yi851ca262006-08-21 11:37:58 +08007306 tfd->tfd.tfd_26.mchdr.qos_ctrl |= cpu_to_le16(CTRL_QOS_NO_ACK);
James Ketrenosb095c382005-08-24 22:04:42 -05007307 }
Zhu Yia5cf4fe2006-04-13 17:19:11 +08007308 return 0;
James Ketrenosb095c382005-08-24 22:04:42 -05007309}
7310
7311/*
7312* background support to run QoS activate functionality
7313*/
David Howellsc4028952006-11-22 14:57:56 +00007314static void ipw_bg_qos_activate(struct work_struct *work)
James Ketrenosb095c382005-08-24 22:04:42 -05007315{
David Howellsc4028952006-11-22 14:57:56 +00007316 struct ipw_priv *priv =
7317 container_of(work, struct ipw_priv, qos_activate);
James Ketrenosb095c382005-08-24 22:04:42 -05007318
Zhu Yi46441512006-01-24 16:37:59 +08007319 mutex_lock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05007320
7321 if (priv->status & STATUS_ASSOCIATED)
7322 ipw_qos_activate(priv, &(priv->assoc_network->qos_data));
7323
Zhu Yi46441512006-01-24 16:37:59 +08007324 mutex_unlock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05007325}
7326
James Ketrenos3b9990c2005-08-19 13:18:55 -05007327static int ipw_handle_probe_response(struct net_device *dev,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007328 struct libipw_probe_response *resp,
7329 struct libipw_network *network)
James Ketrenosb095c382005-08-24 22:04:42 -05007330{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007331 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos3b9990c2005-08-19 13:18:55 -05007332 int active_network = ((priv->status & STATUS_ASSOCIATED) &&
7333 (network == priv->assoc_network));
James Ketrenosb095c382005-08-24 22:04:42 -05007334
James Ketrenos3b9990c2005-08-19 13:18:55 -05007335 ipw_qos_handle_probe_response(priv, active_network, network);
James Ketrenosb095c382005-08-24 22:04:42 -05007336
James Ketrenos3b9990c2005-08-19 13:18:55 -05007337 return 0;
7338}
James Ketrenosb095c382005-08-24 22:04:42 -05007339
James Ketrenos3b9990c2005-08-19 13:18:55 -05007340static int ipw_handle_beacon(struct net_device *dev,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007341 struct libipw_beacon *resp,
7342 struct libipw_network *network)
James Ketrenos3b9990c2005-08-19 13:18:55 -05007343{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007344 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos3b9990c2005-08-19 13:18:55 -05007345 int active_network = ((priv->status & STATUS_ASSOCIATED) &&
7346 (network == priv->assoc_network));
7347
7348 ipw_qos_handle_probe_response(priv, active_network, network);
7349
7350 return 0;
7351}
7352
7353static int ipw_handle_assoc_response(struct net_device *dev,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007354 struct libipw_assoc_response *resp,
7355 struct libipw_network *network)
James Ketrenos3b9990c2005-08-19 13:18:55 -05007356{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007357 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos3b9990c2005-08-19 13:18:55 -05007358 ipw_qos_association_resp(priv, network);
James Ketrenosb095c382005-08-24 22:04:42 -05007359 return 0;
7360}
7361
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007362static int ipw_send_qos_params_command(struct ipw_priv *priv, struct libipw_qos_parameters
James Ketrenosb095c382005-08-24 22:04:42 -05007363 *qos_param)
7364{
Zhu Yi4e226992006-01-24 16:37:36 +08007365 return ipw_send_cmd_pdu(priv, IPW_CMD_QOS_PARAMETERS,
7366 sizeof(*qos_param) * 3, qos_param);
James Ketrenosb095c382005-08-24 22:04:42 -05007367}
7368
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007369static int ipw_send_qos_info_command(struct ipw_priv *priv, struct libipw_qos_information_element
James Ketrenosb095c382005-08-24 22:04:42 -05007370 *qos_param)
7371{
Zhu Yi4e226992006-01-24 16:37:36 +08007372 return ipw_send_cmd_pdu(priv, IPW_CMD_WME_INFO, sizeof(*qos_param),
7373 qos_param);
James Ketrenosb095c382005-08-24 22:04:42 -05007374}
7375
Zhu Yie43e3c12006-04-13 17:20:45 +08007376#endif /* CONFIG_IPW2200_QOS */
James Ketrenosb095c382005-08-24 22:04:42 -05007377
James Ketrenos43f66a62005-03-25 12:31:53 -06007378static int ipw_associate_network(struct ipw_priv *priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007379 struct libipw_network *network,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007380 struct ipw_supported_rates *rates, int roaming)
James Ketrenos43f66a62005-03-25 12:31:53 -06007381{
7382 int err;
John W. Linville9387b7c2008-09-30 20:59:05 -04007383 DECLARE_SSID_BUF(ssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06007384
7385 if (priv->config & CFG_FIXED_RATE)
James Ketrenosb095c382005-08-24 22:04:42 -05007386 ipw_set_fixed_rate(priv, network->mode);
James Ketrenos43f66a62005-03-25 12:31:53 -06007387
7388 if (!(priv->config & CFG_STATIC_ESSID)) {
Jeff Garzikbf794512005-07-31 13:07:26 -04007389 priv->essid_len = min(network->ssid_len,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007390 (u8) IW_ESSID_MAX_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06007391 memcpy(priv->essid, network->ssid, priv->essid_len);
7392 }
7393
7394 network->last_associate = jiffies;
7395
7396 memset(&priv->assoc_request, 0, sizeof(priv->assoc_request));
7397 priv->assoc_request.channel = network->channel;
Zhu Yi3e234b42006-01-24 16:36:52 +08007398 priv->assoc_request.auth_key = 0;
7399
James Ketrenos43f66a62005-03-25 12:31:53 -06007400 if ((priv->capability & CAP_PRIVACY_ON) &&
Zhu Yi3e234b42006-01-24 16:36:52 +08007401 (priv->ieee->sec.auth_mode == WLAN_AUTH_SHARED_KEY)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06007402 priv->assoc_request.auth_type = AUTH_SHARED_KEY;
James Ketrenosb095c382005-08-24 22:04:42 -05007403 priv->assoc_request.auth_key = priv->ieee->sec.active_key;
7404
Zhu Yi1ba61e02006-02-15 13:00:55 +08007405 if (priv->ieee->sec.level == SEC_LEVEL_1)
James Ketrenosb095c382005-08-24 22:04:42 -05007406 ipw_send_wep_keys(priv, DCW_WEP_KEY_SEC_TYPE_WEP);
Zhu Yi3e234b42006-01-24 16:36:52 +08007407
7408 } else if ((priv->capability & CAP_PRIVACY_ON) &&
7409 (priv->ieee->sec.auth_mode == WLAN_AUTH_LEAP))
7410 priv->assoc_request.auth_type = AUTH_LEAP;
7411 else
James Ketrenos43f66a62005-03-25 12:31:53 -06007412 priv->assoc_request.auth_type = AUTH_OPEN;
James Ketrenos43f66a62005-03-25 12:31:53 -06007413
James Ketrenosa613bff2005-08-24 21:43:11 -05007414 if (priv->ieee->wpa_ie_len) {
Al Viro5b5e8072007-12-27 01:54:06 -05007415 priv->assoc_request.policy_support = cpu_to_le16(0x02); /* RSN active */
James Ketrenosea2b26e2005-08-24 21:25:16 -05007416 ipw_set_rsn_capa(priv, priv->ieee->wpa_ie,
7417 priv->ieee->wpa_ie_len);
7418 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007419
Jeff Garzikbf794512005-07-31 13:07:26 -04007420 /*
7421 * It is valid for our ieee device to support multiple modes, but
7422 * when it comes to associating to a given network we have to choose
James Ketrenos43f66a62005-03-25 12:31:53 -06007423 * just one mode.
7424 */
7425 if (network->mode & priv->ieee->mode & IEEE_A)
7426 priv->assoc_request.ieee_mode = IPW_A_MODE;
7427 else if (network->mode & priv->ieee->mode & IEEE_G)
7428 priv->assoc_request.ieee_mode = IPW_G_MODE;
7429 else if (network->mode & priv->ieee->mode & IEEE_B)
7430 priv->assoc_request.ieee_mode = IPW_B_MODE;
7431
Al Viro5b5e8072007-12-27 01:54:06 -05007432 priv->assoc_request.capability = cpu_to_le16(network->capability);
James Ketrenosea2b26e2005-08-24 21:25:16 -05007433 if ((network->capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
7434 && !(priv->config & CFG_PREAMBLE_LONG)) {
7435 priv->assoc_request.preamble_length = DCT_FLAG_SHORT_PREAMBLE;
7436 } else {
7437 priv->assoc_request.preamble_length = DCT_FLAG_LONG_PREAMBLE;
7438
7439 /* Clear the short preamble if we won't be supporting it */
7440 priv->assoc_request.capability &=
Al Viro5b5e8072007-12-27 01:54:06 -05007441 ~cpu_to_le16(WLAN_CAPABILITY_SHORT_PREAMBLE);
James Ketrenosea2b26e2005-08-24 21:25:16 -05007442 }
7443
James Ketrenosafbf30a2005-08-25 00:05:33 -05007444 /* Clear capability bits that aren't used in Ad Hoc */
7445 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
7446 priv->assoc_request.capability &=
Al Viro5b5e8072007-12-27 01:54:06 -05007447 ~cpu_to_le16(WLAN_CAPABILITY_SHORT_SLOT_TIME);
James Ketrenosafbf30a2005-08-25 00:05:33 -05007448
James Ketrenos43f66a62005-03-25 12:31:53 -06007449 IPW_DEBUG_ASSOC("%sssocation attempt: '%s', channel %d, "
James Ketrenosea2b26e2005-08-24 21:25:16 -05007450 "802.11%c [%d], %s[:%s], enc=%s%s%s%c%c\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06007451 roaming ? "Rea" : "A",
John W. Linville9387b7c2008-09-30 20:59:05 -04007452 print_ssid(ssid, priv->essid, priv->essid_len),
Jeff Garzikbf794512005-07-31 13:07:26 -04007453 network->channel,
7454 ipw_modes[priv->assoc_request.ieee_mode],
7455 rates->num_rates,
James Ketrenosea2b26e2005-08-24 21:25:16 -05007456 (priv->assoc_request.preamble_length ==
7457 DCT_FLAG_LONG_PREAMBLE) ? "long" : "short",
7458 network->capability &
7459 WLAN_CAPABILITY_SHORT_PREAMBLE ? "short" : "long",
James Ketrenos43f66a62005-03-25 12:31:53 -06007460 priv->capability & CAP_PRIVACY_ON ? "on " : "off",
Jeff Garzikbf794512005-07-31 13:07:26 -04007461 priv->capability & CAP_PRIVACY_ON ?
7462 (priv->capability & CAP_SHARED_KEY ? "(shared)" :
James Ketrenos43f66a62005-03-25 12:31:53 -06007463 "(open)") : "",
7464 priv->capability & CAP_PRIVACY_ON ? " key=" : "",
Jeff Garzikbf794512005-07-31 13:07:26 -04007465 priv->capability & CAP_PRIVACY_ON ?
James Ketrenosb095c382005-08-24 22:04:42 -05007466 '1' + priv->ieee->sec.active_key : '.',
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007467 priv->capability & CAP_PRIVACY_ON ? '.' : ' ');
James Ketrenos43f66a62005-03-25 12:31:53 -06007468
Al Viro5b5e8072007-12-27 01:54:06 -05007469 priv->assoc_request.beacon_interval = cpu_to_le16(network->beacon_interval);
James Ketrenos43f66a62005-03-25 12:31:53 -06007470 if ((priv->ieee->iw_mode == IW_MODE_ADHOC) &&
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007471 (network->time_stamp[0] == 0) && (network->time_stamp[1] == 0)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06007472 priv->assoc_request.assoc_type = HC_IBSS_START;
7473 priv->assoc_request.assoc_tsf_msw = 0;
7474 priv->assoc_request.assoc_tsf_lsw = 0;
7475 } else {
7476 if (unlikely(roaming))
7477 priv->assoc_request.assoc_type = HC_REASSOCIATE;
7478 else
7479 priv->assoc_request.assoc_type = HC_ASSOCIATE;
Al Viro5b5e8072007-12-27 01:54:06 -05007480 priv->assoc_request.assoc_tsf_msw = cpu_to_le32(network->time_stamp[1]);
7481 priv->assoc_request.assoc_tsf_lsw = cpu_to_le32(network->time_stamp[0]);
James Ketrenos43f66a62005-03-25 12:31:53 -06007482 }
7483
James Ketrenosafbf30a2005-08-25 00:05:33 -05007484 memcpy(priv->assoc_request.bssid, network->bssid, ETH_ALEN);
James Ketrenos43f66a62005-03-25 12:31:53 -06007485
7486 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
7487 memset(&priv->assoc_request.dest, 0xFF, ETH_ALEN);
Al Viro5b5e8072007-12-27 01:54:06 -05007488 priv->assoc_request.atim_window = cpu_to_le16(network->atim_window);
James Ketrenos43f66a62005-03-25 12:31:53 -06007489 } else {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007490 memcpy(priv->assoc_request.dest, network->bssid, ETH_ALEN);
James Ketrenos43f66a62005-03-25 12:31:53 -06007491 priv->assoc_request.atim_window = 0;
7492 }
7493
Al Viro5b5e8072007-12-27 01:54:06 -05007494 priv->assoc_request.listen_interval = cpu_to_le16(network->listen_interval);
Jeff Garzikbf794512005-07-31 13:07:26 -04007495
James Ketrenos43f66a62005-03-25 12:31:53 -06007496 err = ipw_send_ssid(priv, priv->essid, priv->essid_len);
7497 if (err) {
7498 IPW_DEBUG_HC("Attempt to send SSID command failed.\n");
7499 return err;
7500 }
7501
7502 rates->ieee_mode = priv->assoc_request.ieee_mode;
7503 rates->purpose = IPW_RATE_CONNECT;
7504 ipw_send_supported_rates(priv, rates);
Jeff Garzikbf794512005-07-31 13:07:26 -04007505
James Ketrenos43f66a62005-03-25 12:31:53 -06007506 if (priv->assoc_request.ieee_mode == IPW_G_MODE)
7507 priv->sys_config.dot11g_auto_detection = 1;
7508 else
7509 priv->sys_config.dot11g_auto_detection = 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05007510
7511 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
7512 priv->sys_config.answer_broadcast_ssid_probe = 1;
7513 else
7514 priv->sys_config.answer_broadcast_ssid_probe = 0;
7515
Zhu Yid685b8c2006-04-13 17:20:27 +08007516 err = ipw_send_system_config(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06007517 if (err) {
7518 IPW_DEBUG_HC("Attempt to send sys config command failed.\n");
7519 return err;
7520 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007521
James Ketrenos43f66a62005-03-25 12:31:53 -06007522 IPW_DEBUG_ASSOC("Association sensitivity: %d\n", network->stats.rssi);
James Ketrenosea2b26e2005-08-24 21:25:16 -05007523 err = ipw_set_sensitivity(priv, network->stats.rssi + IPW_RSSI_TO_DBM);
James Ketrenos43f66a62005-03-25 12:31:53 -06007524 if (err) {
7525 IPW_DEBUG_HC("Attempt to send associate command failed.\n");
7526 return err;
7527 }
7528
7529 /*
7530 * If preemption is enabled, it is possible for the association
7531 * to complete before we return from ipw_send_associate. Therefore
7532 * we have to be sure and update our priviate data first.
7533 */
7534 priv->channel = network->channel;
7535 memcpy(priv->bssid, network->bssid, ETH_ALEN);
Jeff Garzikbf794512005-07-31 13:07:26 -04007536 priv->status |= STATUS_ASSOCIATING;
James Ketrenos43f66a62005-03-25 12:31:53 -06007537 priv->status &= ~STATUS_SECURITY_UPDATED;
7538
7539 priv->assoc_network = network;
7540
Zhu Yie43e3c12006-04-13 17:20:45 +08007541#ifdef CONFIG_IPW2200_QOS
James Ketrenosb095c382005-08-24 22:04:42 -05007542 ipw_qos_association(priv, network);
7543#endif
7544
James Ketrenos43f66a62005-03-25 12:31:53 -06007545 err = ipw_send_associate(priv, &priv->assoc_request);
7546 if (err) {
7547 IPW_DEBUG_HC("Attempt to send associate command failed.\n");
7548 return err;
7549 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007550
Frans Pop9fd1ea42010-03-24 19:46:31 +01007551 IPW_DEBUG(IPW_DL_STATE, "associating: '%s' %pM\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04007552 print_ssid(ssid, priv->essid, priv->essid_len),
Johannes Berge1749612008-10-27 15:59:26 -07007553 priv->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06007554
7555 return 0;
7556}
7557
7558static void ipw_roam(void *data)
7559{
7560 struct ipw_priv *priv = data;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007561 struct libipw_network *network = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -06007562 struct ipw_network_match match = {
7563 .network = priv->assoc_network
7564 };
7565
7566 /* The roaming process is as follows:
Jeff Garzikbf794512005-07-31 13:07:26 -04007567 *
7568 * 1. Missed beacon threshold triggers the roaming process by
James Ketrenos43f66a62005-03-25 12:31:53 -06007569 * setting the status ROAM bit and requesting a scan.
7570 * 2. When the scan completes, it schedules the ROAM work
7571 * 3. The ROAM work looks at all of the known networks for one that
7572 * is a better network than the currently associated. If none
7573 * found, the ROAM process is over (ROAM bit cleared)
7574 * 4. If a better network is found, a disassociation request is
7575 * sent.
7576 * 5. When the disassociation completes, the roam work is again
7577 * scheduled. The second time through, the driver is no longer
7578 * associated, and the newly selected network is sent an
Jeff Garzikbf794512005-07-31 13:07:26 -04007579 * association request.
James Ketrenos43f66a62005-03-25 12:31:53 -06007580 * 6. At this point ,the roaming process is complete and the ROAM
7581 * status bit is cleared.
7582 */
7583
7584 /* If we are no longer associated, and the roaming bit is no longer
7585 * set, then we are not actively roaming, so just return */
7586 if (!(priv->status & (STATUS_ASSOCIATED | STATUS_ROAMING)))
7587 return;
Jeff Garzikbf794512005-07-31 13:07:26 -04007588
James Ketrenos43f66a62005-03-25 12:31:53 -06007589 if (priv->status & STATUS_ASSOCIATED) {
Jeff Garzikbf794512005-07-31 13:07:26 -04007590 /* First pass through ROAM process -- look for a better
James Ketrenos43f66a62005-03-25 12:31:53 -06007591 * network */
James Ketrenosa613bff2005-08-24 21:43:11 -05007592 unsigned long flags;
James Ketrenos43f66a62005-03-25 12:31:53 -06007593 u8 rssi = priv->assoc_network->stats.rssi;
7594 priv->assoc_network->stats.rssi = -128;
James Ketrenosa613bff2005-08-24 21:43:11 -05007595 spin_lock_irqsave(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06007596 list_for_each_entry(network, &priv->ieee->network_list, list) {
7597 if (network != priv->assoc_network)
7598 ipw_best_network(priv, &match, network, 1);
7599 }
James Ketrenosa613bff2005-08-24 21:43:11 -05007600 spin_unlock_irqrestore(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06007601 priv->assoc_network->stats.rssi = rssi;
Jeff Garzikbf794512005-07-31 13:07:26 -04007602
James Ketrenos43f66a62005-03-25 12:31:53 -06007603 if (match.network == priv->assoc_network) {
7604 IPW_DEBUG_ASSOC("No better APs in this network to "
7605 "roam to.\n");
7606 priv->status &= ~STATUS_ROAMING;
7607 ipw_debug_config(priv);
7608 return;
7609 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007610
James Ketrenos43f66a62005-03-25 12:31:53 -06007611 ipw_send_disassociate(priv, 1);
7612 priv->assoc_network = match.network;
7613
7614 return;
Jeff Garzikbf794512005-07-31 13:07:26 -04007615 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007616
7617 /* Second pass through ROAM process -- request association */
7618 ipw_compatible_rates(priv, priv->assoc_network, &match.rates);
7619 ipw_associate_network(priv, priv->assoc_network, &match.rates, 1);
7620 priv->status &= ~STATUS_ROAMING;
7621}
7622
David Howellsc4028952006-11-22 14:57:56 +00007623static void ipw_bg_roam(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -05007624{
David Howellsc4028952006-11-22 14:57:56 +00007625 struct ipw_priv *priv =
7626 container_of(work, struct ipw_priv, roam);
Zhu Yi46441512006-01-24 16:37:59 +08007627 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00007628 ipw_roam(priv);
Zhu Yi46441512006-01-24 16:37:59 +08007629 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05007630}
7631
7632static int ipw_associate(void *data)
James Ketrenos43f66a62005-03-25 12:31:53 -06007633{
7634 struct ipw_priv *priv = data;
7635
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007636 struct libipw_network *network = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -06007637 struct ipw_network_match match = {
7638 .network = NULL
7639 };
7640 struct ipw_supported_rates *rates;
7641 struct list_head *element;
James Ketrenosa613bff2005-08-24 21:43:11 -05007642 unsigned long flags;
John W. Linville9387b7c2008-09-30 20:59:05 -04007643 DECLARE_SSID_BUF(ssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06007644
James Ketrenosb095c382005-08-24 22:04:42 -05007645 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
7646 IPW_DEBUG_ASSOC("Not attempting association (monitor mode)\n");
7647 return 0;
7648 }
7649
James Ketrenosc848d0a2005-08-24 21:56:24 -05007650 if (priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007651 IPW_DEBUG_ASSOC("Not attempting association (already in "
7652 "progress)\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05007653 return 0;
7654 }
7655
Hong Liue6324722005-09-14 21:04:15 -05007656 if (priv->status & STATUS_DISASSOCIATING) {
7657 IPW_DEBUG_ASSOC("Not attempting association (in "
7658 "disassociating)\n ");
7659 queue_work(priv->workqueue, &priv->associate);
7660 return 0;
7661 }
7662
James Ketrenosc848d0a2005-08-24 21:56:24 -05007663 if (!ipw_is_init(priv) || (priv->status & STATUS_SCANNING)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007664 IPW_DEBUG_ASSOC("Not attempting association (scanning or not "
7665 "initialized)\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05007666 return 0;
7667 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007668
7669 if (!(priv->config & CFG_ASSOCIATE) &&
Alexey Fisher3e4127f2008-11-06 09:51:16 +01007670 !(priv->config & (CFG_STATIC_ESSID | CFG_STATIC_BSSID))) {
James Ketrenos43f66a62005-03-25 12:31:53 -06007671 IPW_DEBUG_ASSOC("Not attempting association (associate=0)\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05007672 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06007673 }
7674
James Ketrenosa613bff2005-08-24 21:43:11 -05007675 /* Protect our use of the network_list */
7676 spin_lock_irqsave(&priv->ieee->lock, flags);
Jeff Garzikbf794512005-07-31 13:07:26 -04007677 list_for_each_entry(network, &priv->ieee->network_list, list)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007678 ipw_best_network(priv, &match, network, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06007679
7680 network = match.network;
7681 rates = &match.rates;
7682
7683 if (network == NULL &&
7684 priv->ieee->iw_mode == IW_MODE_ADHOC &&
7685 priv->config & CFG_ADHOC_CREATE &&
7686 priv->config & CFG_STATIC_ESSID &&
Dan Williamsa6d4eae2008-05-29 14:38:28 -04007687 priv->config & CFG_STATIC_CHANNEL) {
7688 /* Use oldest network if the free list is empty */
7689 if (list_empty(&priv->ieee->network_free_list)) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007690 struct libipw_network *oldest = NULL;
7691 struct libipw_network *target;
Dan Williamsa6d4eae2008-05-29 14:38:28 -04007692
7693 list_for_each_entry(target, &priv->ieee->network_list, list) {
7694 if ((oldest == NULL) ||
7695 (target->last_scanned < oldest->last_scanned))
7696 oldest = target;
7697 }
7698
7699 /* If there are no more slots, expire the oldest */
7700 list_del(&oldest->list);
7701 target = oldest;
Johannes Berge1749612008-10-27 15:59:26 -07007702 IPW_DEBUG_ASSOC("Expired '%s' (%pM) from "
Dan Williamsa6d4eae2008-05-29 14:38:28 -04007703 "network list.\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04007704 print_ssid(ssid, target->ssid,
7705 target->ssid_len),
Johannes Berge1749612008-10-27 15:59:26 -07007706 target->bssid);
Dan Williamsa6d4eae2008-05-29 14:38:28 -04007707 list_add_tail(&target->list,
7708 &priv->ieee->network_free_list);
7709 }
7710
James Ketrenos43f66a62005-03-25 12:31:53 -06007711 element = priv->ieee->network_free_list.next;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007712 network = list_entry(element, struct libipw_network, list);
James Ketrenos43f66a62005-03-25 12:31:53 -06007713 ipw_adhoc_create(priv, network);
7714 rates = &priv->rates;
7715 list_del(element);
7716 list_add_tail(&network->list, &priv->ieee->network_list);
7717 }
James Ketrenosa613bff2005-08-24 21:43:11 -05007718 spin_unlock_irqrestore(&priv->ieee->lock, flags);
Jeff Garzikbf794512005-07-31 13:07:26 -04007719
James Ketrenos43f66a62005-03-25 12:31:53 -06007720 /* If we reached the end of the list, then we don't have any valid
7721 * matching APs */
7722 if (!network) {
7723 ipw_debug_config(priv);
7724
James Ketrenosb095c382005-08-24 22:04:42 -05007725 if (!(priv->status & STATUS_SCANNING)) {
7726 if (!(priv->config & CFG_SPEED_SCAN))
7727 queue_delayed_work(priv->workqueue,
7728 &priv->request_scan,
7729 SCAN_INTERVAL);
7730 else
David Howellsc4028952006-11-22 14:57:56 +00007731 queue_delayed_work(priv->workqueue,
7732 &priv->request_scan, 0);
James Ketrenosb095c382005-08-24 22:04:42 -05007733 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007734
James Ketrenosc848d0a2005-08-24 21:56:24 -05007735 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06007736 }
7737
7738 ipw_associate_network(priv, network, rates, 0);
James Ketrenosc848d0a2005-08-24 21:56:24 -05007739
7740 return 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06007741}
Jeff Garzikbf794512005-07-31 13:07:26 -04007742
David Howellsc4028952006-11-22 14:57:56 +00007743static void ipw_bg_associate(struct work_struct *work)
James Ketrenos43f66a62005-03-25 12:31:53 -06007744{
David Howellsc4028952006-11-22 14:57:56 +00007745 struct ipw_priv *priv =
7746 container_of(work, struct ipw_priv, associate);
Zhu Yi46441512006-01-24 16:37:59 +08007747 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00007748 ipw_associate(priv);
Zhu Yi46441512006-01-24 16:37:59 +08007749 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06007750}
7751
James Ketrenosb095c382005-08-24 22:04:42 -05007752static void ipw_rebuild_decrypted_skb(struct ipw_priv *priv,
7753 struct sk_buff *skb)
7754{
7755 struct ieee80211_hdr *hdr;
7756 u16 fc;
7757
7758 hdr = (struct ieee80211_hdr *)skb->data;
John W. Linville72118012008-09-30 21:43:03 -04007759 fc = le16_to_cpu(hdr->frame_control);
James Ketrenosb095c382005-08-24 22:04:42 -05007760 if (!(fc & IEEE80211_FCTL_PROTECTED))
7761 return;
7762
7763 fc &= ~IEEE80211_FCTL_PROTECTED;
John W. Linville72118012008-09-30 21:43:03 -04007764 hdr->frame_control = cpu_to_le16(fc);
James Ketrenosb095c382005-08-24 22:04:42 -05007765 switch (priv->ieee->sec.level) {
7766 case SEC_LEVEL_3:
7767 /* Remove CCMP HDR */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007768 memmove(skb->data + LIBIPW_3ADDR_LEN,
7769 skb->data + LIBIPW_3ADDR_LEN + 8,
7770 skb->len - LIBIPW_3ADDR_LEN - 8);
Zhu Yif4ff4972005-09-12 10:48:48 -05007771 skb_trim(skb, skb->len - 16); /* CCMP_HDR_LEN + CCMP_MIC_LEN */
James Ketrenosb095c382005-08-24 22:04:42 -05007772 break;
7773 case SEC_LEVEL_2:
7774 break;
7775 case SEC_LEVEL_1:
7776 /* Remove IV */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007777 memmove(skb->data + LIBIPW_3ADDR_LEN,
7778 skb->data + LIBIPW_3ADDR_LEN + 4,
7779 skb->len - LIBIPW_3ADDR_LEN - 4);
Zhu Yif4ff4972005-09-12 10:48:48 -05007780 skb_trim(skb, skb->len - 8); /* IV + ICV */
James Ketrenosb095c382005-08-24 22:04:42 -05007781 break;
7782 case SEC_LEVEL_0:
7783 break;
7784 default:
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02007785 printk(KERN_ERR "Unknown security level %d\n",
James Ketrenosb095c382005-08-24 22:04:42 -05007786 priv->ieee->sec.level);
7787 break;
7788 }
7789}
7790
7791static void ipw_handle_data_packet(struct ipw_priv *priv,
7792 struct ipw_rx_mem_buffer *rxb,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007793 struct libipw_rx_stats *stats)
James Ketrenos43f66a62005-03-25 12:31:53 -06007794{
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007795 struct net_device *dev = priv->net_dev;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007796 struct libipw_hdr_4addr *hdr;
James Ketrenos43f66a62005-03-25 12:31:53 -06007797 struct ipw_rx_packet *pkt = (struct ipw_rx_packet *)rxb->skb->data;
7798
7799 /* We received data from the HW, so stop the watchdog */
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007800 dev->trans_start = jiffies;
James Ketrenos43f66a62005-03-25 12:31:53 -06007801
Jeff Garzikbf794512005-07-31 13:07:26 -04007802 /* We only process data packets if the
James Ketrenos43f66a62005-03-25 12:31:53 -06007803 * interface is open */
James Ketrenosa613bff2005-08-24 21:43:11 -05007804 if (unlikely((le16_to_cpu(pkt->u.frame.length) + IPW_RX_FRAME_SIZE) >
James Ketrenos43f66a62005-03-25 12:31:53 -06007805 skb_tailroom(rxb->skb))) {
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007806 dev->stats.rx_errors++;
James Ketrenos43f66a62005-03-25 12:31:53 -06007807 priv->wstats.discard.misc++;
7808 IPW_DEBUG_DROP("Corruption detected! Oh no!\n");
7809 return;
7810 } else if (unlikely(!netif_running(priv->net_dev))) {
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007811 dev->stats.rx_dropped++;
James Ketrenos43f66a62005-03-25 12:31:53 -06007812 priv->wstats.discard.misc++;
7813 IPW_DEBUG_DROP("Dropping packet while interface is not up.\n");
7814 return;
7815 }
7816
7817 /* Advance skb->data to the start of the actual payload */
Jiri Bencaaa4d302005-06-07 14:58:41 +02007818 skb_reserve(rxb->skb, offsetof(struct ipw_rx_packet, u.frame.data));
James Ketrenos43f66a62005-03-25 12:31:53 -06007819
7820 /* Set the size of the skb to the size of the frame */
James Ketrenosa613bff2005-08-24 21:43:11 -05007821 skb_put(rxb->skb, le16_to_cpu(pkt->u.frame.length));
James Ketrenos43f66a62005-03-25 12:31:53 -06007822
7823 IPW_DEBUG_RX("Rx packet of %d bytes.\n", rxb->skb->len);
7824
James Ketrenosb095c382005-08-24 22:04:42 -05007825 /* HW decrypt will not clear the WEP bit, MIC, PN, etc. */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007826 hdr = (struct libipw_hdr_4addr *)rxb->skb->data;
Hong Liu567deaf2005-08-31 18:07:22 +08007827 if (priv->ieee->iw_mode != IW_MODE_MONITOR &&
Stephen Hemminger3c190652006-01-03 15:27:38 -08007828 (is_multicast_ether_addr(hdr->addr1) ?
Hong Liu567deaf2005-08-31 18:07:22 +08007829 !priv->ieee->host_mc_decrypt : !priv->ieee->host_decrypt))
James Ketrenosb095c382005-08-24 22:04:42 -05007830 ipw_rebuild_decrypted_skb(priv, rxb->skb);
7831
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007832 if (!libipw_rx(priv->ieee, rxb->skb, stats))
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007833 dev->stats.rx_errors++;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007834 else { /* libipw_rx succeeded, so it now owns the SKB */
James Ketrenos43f66a62005-03-25 12:31:53 -06007835 rxb->skb = NULL;
James Ketrenosb095c382005-08-24 22:04:42 -05007836 __ipw_led_activity_on(priv);
James Ketrenosa613bff2005-08-24 21:43:11 -05007837 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007838}
7839
Zhu Yi459d4082006-04-13 17:21:00 +08007840#ifdef CONFIG_IPW2200_RADIOTAP
Mike Kershaw24a47db2005-08-26 00:41:54 -05007841static void ipw_handle_data_packet_monitor(struct ipw_priv *priv,
7842 struct ipw_rx_mem_buffer *rxb,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007843 struct libipw_rx_stats *stats)
Mike Kershaw24a47db2005-08-26 00:41:54 -05007844{
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007845 struct net_device *dev = priv->net_dev;
Mike Kershaw24a47db2005-08-26 00:41:54 -05007846 struct ipw_rx_packet *pkt = (struct ipw_rx_packet *)rxb->skb->data;
7847 struct ipw_rx_frame *frame = &pkt->u.frame;
7848
7849 /* initial pull of some data */
7850 u16 received_channel = frame->received_channel;
7851 u8 antennaAndPhy = frame->antennaAndPhy;
7852 s8 antsignal = frame->rssi_dbm - IPW_RSSI_TO_DBM; /* call it signed anyhow */
7853 u16 pktrate = frame->rate;
7854
7855 /* Magic struct that slots into the radiotap header -- no reason
7856 * to build this manually element by element, we can write it much
7857 * more efficiently than we can parse it. ORDER MATTERS HERE */
Zhu Yid685b8c2006-04-13 17:20:27 +08007858 struct ipw_rt_hdr *ipw_rt;
Mike Kershaw24a47db2005-08-26 00:41:54 -05007859
7860 short len = le16_to_cpu(pkt->u.frame.length);
7861
7862 /* We received data from the HW, so stop the watchdog */
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007863 dev->trans_start = jiffies;
Mike Kershaw24a47db2005-08-26 00:41:54 -05007864
7865 /* We only process data packets if the
7866 * interface is open */
7867 if (unlikely((le16_to_cpu(pkt->u.frame.length) + IPW_RX_FRAME_SIZE) >
7868 skb_tailroom(rxb->skb))) {
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007869 dev->stats.rx_errors++;
Mike Kershaw24a47db2005-08-26 00:41:54 -05007870 priv->wstats.discard.misc++;
7871 IPW_DEBUG_DROP("Corruption detected! Oh no!\n");
7872 return;
7873 } else if (unlikely(!netif_running(priv->net_dev))) {
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007874 dev->stats.rx_dropped++;
Mike Kershaw24a47db2005-08-26 00:41:54 -05007875 priv->wstats.discard.misc++;
7876 IPW_DEBUG_DROP("Dropping packet while interface is not up.\n");
7877 return;
7878 }
7879
7880 /* Libpcap 0.9.3+ can handle variable length radiotap, so we'll use
7881 * that now */
7882 if (len > IPW_RX_BUF_SIZE - sizeof(struct ipw_rt_hdr)) {
7883 /* FIXME: Should alloc bigger skb instead */
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007884 dev->stats.rx_dropped++;
Mike Kershaw24a47db2005-08-26 00:41:54 -05007885 priv->wstats.discard.misc++;
7886 IPW_DEBUG_DROP("Dropping too large packet in monitor\n");
7887 return;
7888 }
7889
7890 /* copy the frame itself */
7891 memmove(rxb->skb->data + sizeof(struct ipw_rt_hdr),
7892 rxb->skb->data + IPW_RX_FRAME_SIZE, len);
7893
Mike Kershaw24a47db2005-08-26 00:41:54 -05007894 ipw_rt = (struct ipw_rt_hdr *)rxb->skb->data;
7895
7896 ipw_rt->rt_hdr.it_version = PKTHDR_RADIOTAP_VERSION;
7897 ipw_rt->rt_hdr.it_pad = 0; /* always good to zero */
Al Viro743b84d2007-12-27 01:43:16 -05007898 ipw_rt->rt_hdr.it_len = cpu_to_le16(sizeof(struct ipw_rt_hdr)); /* total header+data */
Mike Kershaw24a47db2005-08-26 00:41:54 -05007899
7900 /* Big bitfield of all the fields we provide in radiotap */
Al Viro743b84d2007-12-27 01:43:16 -05007901 ipw_rt->rt_hdr.it_present = cpu_to_le32(
7902 (1 << IEEE80211_RADIOTAP_TSFT) |
Zhu Yi4b1f8a92006-12-05 14:42:14 +08007903 (1 << IEEE80211_RADIOTAP_FLAGS) |
Mike Kershaw24a47db2005-08-26 00:41:54 -05007904 (1 << IEEE80211_RADIOTAP_RATE) |
7905 (1 << IEEE80211_RADIOTAP_CHANNEL) |
7906 (1 << IEEE80211_RADIOTAP_DBM_ANTSIGNAL) |
Zhu Yid685b8c2006-04-13 17:20:27 +08007907 (1 << IEEE80211_RADIOTAP_DBM_ANTNOISE) |
Mike Kershaw24a47db2005-08-26 00:41:54 -05007908 (1 << IEEE80211_RADIOTAP_ANTENNA));
7909
7910 /* Zero the flags, we'll add to them as we go */
7911 ipw_rt->rt_flags = 0;
Zhu Yi4b1f8a92006-12-05 14:42:14 +08007912 ipw_rt->rt_tsf = (u64)(frame->parent_tsf[3] << 24 |
7913 frame->parent_tsf[2] << 16 |
7914 frame->parent_tsf[1] << 8 |
7915 frame->parent_tsf[0]);
Mike Kershaw24a47db2005-08-26 00:41:54 -05007916
7917 /* Convert signal to DBM */
7918 ipw_rt->rt_dbmsignal = antsignal;
Reinette Chatre21f8a732009-08-18 10:25:05 -07007919 ipw_rt->rt_dbmnoise = (s8) le16_to_cpu(frame->noise);
Mike Kershaw24a47db2005-08-26 00:41:54 -05007920
7921 /* Convert the channel data and set the flags */
7922 ipw_rt->rt_channel = cpu_to_le16(ieee80211chan2mhz(received_channel));
7923 if (received_channel > 14) { /* 802.11a */
7924 ipw_rt->rt_chbitmask =
7925 cpu_to_le16((IEEE80211_CHAN_OFDM | IEEE80211_CHAN_5GHZ));
7926 } else if (antennaAndPhy & 32) { /* 802.11b */
7927 ipw_rt->rt_chbitmask =
7928 cpu_to_le16((IEEE80211_CHAN_CCK | IEEE80211_CHAN_2GHZ));
7929 } else { /* 802.11g */
7930 ipw_rt->rt_chbitmask =
Al Viro472caf82007-12-27 01:50:54 -05007931 cpu_to_le16(IEEE80211_CHAN_OFDM | IEEE80211_CHAN_2GHZ);
Mike Kershaw24a47db2005-08-26 00:41:54 -05007932 }
7933
7934 /* set the rate in multiples of 500k/s */
7935 switch (pktrate) {
7936 case IPW_TX_RATE_1MB:
7937 ipw_rt->rt_rate = 2;
7938 break;
7939 case IPW_TX_RATE_2MB:
7940 ipw_rt->rt_rate = 4;
7941 break;
7942 case IPW_TX_RATE_5MB:
7943 ipw_rt->rt_rate = 10;
7944 break;
7945 case IPW_TX_RATE_6MB:
7946 ipw_rt->rt_rate = 12;
7947 break;
7948 case IPW_TX_RATE_9MB:
7949 ipw_rt->rt_rate = 18;
7950 break;
7951 case IPW_TX_RATE_11MB:
7952 ipw_rt->rt_rate = 22;
7953 break;
7954 case IPW_TX_RATE_12MB:
7955 ipw_rt->rt_rate = 24;
7956 break;
7957 case IPW_TX_RATE_18MB:
7958 ipw_rt->rt_rate = 36;
7959 break;
7960 case IPW_TX_RATE_24MB:
7961 ipw_rt->rt_rate = 48;
7962 break;
7963 case IPW_TX_RATE_36MB:
7964 ipw_rt->rt_rate = 72;
7965 break;
7966 case IPW_TX_RATE_48MB:
7967 ipw_rt->rt_rate = 96;
7968 break;
7969 case IPW_TX_RATE_54MB:
7970 ipw_rt->rt_rate = 108;
7971 break;
7972 default:
7973 ipw_rt->rt_rate = 0;
7974 break;
7975 }
7976
7977 /* antenna number */
7978 ipw_rt->rt_antenna = (antennaAndPhy & 3); /* Is this right? */
7979
7980 /* set the preamble flag if we have it */
7981 if ((antennaAndPhy & 64))
7982 ipw_rt->rt_flags |= IEEE80211_RADIOTAP_F_SHORTPRE;
7983
7984 /* Set the size of the skb to the size of the frame */
7985 skb_put(rxb->skb, len + sizeof(struct ipw_rt_hdr));
James Ketrenos43f66a62005-03-25 12:31:53 -06007986
7987 IPW_DEBUG_RX("Rx packet of %d bytes.\n", rxb->skb->len);
7988
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007989 if (!libipw_rx(priv->ieee, rxb->skb, stats))
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007990 dev->stats.rx_errors++;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007991 else { /* libipw_rx succeeded, so it now owns the SKB */
James Ketrenos43f66a62005-03-25 12:31:53 -06007992 rxb->skb = NULL;
Mike Kershaw24a47db2005-08-26 00:41:54 -05007993 /* no LED during capture */
7994 }
7995}
7996#endif
7997
Zhu Yid685b8c2006-04-13 17:20:27 +08007998#ifdef CONFIG_IPW2200_PROMISCUOUS
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007999#define libipw_is_probe_response(fc) \
Zhu Yid685b8c2006-04-13 17:20:27 +08008000 ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT && \
8001 (fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_PROBE_RESP )
8002
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008003#define libipw_is_management(fc) \
Zhu Yid685b8c2006-04-13 17:20:27 +08008004 ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT)
8005
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008006#define libipw_is_control(fc) \
Zhu Yid685b8c2006-04-13 17:20:27 +08008007 ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_CTL)
8008
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008009#define libipw_is_data(fc) \
Zhu Yid685b8c2006-04-13 17:20:27 +08008010 ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA)
8011
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008012#define libipw_is_assoc_request(fc) \
Zhu Yid685b8c2006-04-13 17:20:27 +08008013 ((fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_ASSOC_REQ)
8014
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008015#define libipw_is_reassoc_request(fc) \
Zhu Yid685b8c2006-04-13 17:20:27 +08008016 ((fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_REASSOC_REQ)
8017
8018static void ipw_handle_promiscuous_rx(struct ipw_priv *priv,
8019 struct ipw_rx_mem_buffer *rxb,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008020 struct libipw_rx_stats *stats)
Zhu Yid685b8c2006-04-13 17:20:27 +08008021{
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00008022 struct net_device *dev = priv->prom_net_dev;
Zhu Yid685b8c2006-04-13 17:20:27 +08008023 struct ipw_rx_packet *pkt = (struct ipw_rx_packet *)rxb->skb->data;
8024 struct ipw_rx_frame *frame = &pkt->u.frame;
8025 struct ipw_rt_hdr *ipw_rt;
8026
8027 /* First cache any information we need before we overwrite
8028 * the information provided in the skb from the hardware */
8029 struct ieee80211_hdr *hdr;
8030 u16 channel = frame->received_channel;
8031 u8 phy_flags = frame->antennaAndPhy;
8032 s8 signal = frame->rssi_dbm - IPW_RSSI_TO_DBM;
Reinette Chatre21f8a732009-08-18 10:25:05 -07008033 s8 noise = (s8) le16_to_cpu(frame->noise);
Zhu Yid685b8c2006-04-13 17:20:27 +08008034 u8 rate = frame->rate;
8035 short len = le16_to_cpu(pkt->u.frame.length);
Zhu Yid685b8c2006-04-13 17:20:27 +08008036 struct sk_buff *skb;
8037 int hdr_only = 0;
8038 u16 filter = priv->prom_priv->filter;
8039
8040 /* If the filter is set to not include Rx frames then return */
8041 if (filter & IPW_PROM_NO_RX)
8042 return;
8043
Zhu Yid685b8c2006-04-13 17:20:27 +08008044 /* We received data from the HW, so stop the watchdog */
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00008045 dev->trans_start = jiffies;
Zhu Yid685b8c2006-04-13 17:20:27 +08008046
8047 if (unlikely((len + IPW_RX_FRAME_SIZE) > skb_tailroom(rxb->skb))) {
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00008048 dev->stats.rx_errors++;
Zhu Yid685b8c2006-04-13 17:20:27 +08008049 IPW_DEBUG_DROP("Corruption detected! Oh no!\n");
8050 return;
8051 }
8052
8053 /* We only process data packets if the interface is open */
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00008054 if (unlikely(!netif_running(dev))) {
8055 dev->stats.rx_dropped++;
Zhu Yid685b8c2006-04-13 17:20:27 +08008056 IPW_DEBUG_DROP("Dropping packet while interface is not up.\n");
8057 return;
8058 }
8059
8060 /* Libpcap 0.9.3+ can handle variable length radiotap, so we'll use
8061 * that now */
8062 if (len > IPW_RX_BUF_SIZE - sizeof(struct ipw_rt_hdr)) {
8063 /* FIXME: Should alloc bigger skb instead */
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00008064 dev->stats.rx_dropped++;
Zhu Yid685b8c2006-04-13 17:20:27 +08008065 IPW_DEBUG_DROP("Dropping too large packet in monitor\n");
8066 return;
8067 }
8068
8069 hdr = (void *)rxb->skb->data + IPW_RX_FRAME_SIZE;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008070 if (libipw_is_management(le16_to_cpu(hdr->frame_control))) {
Zhu Yid685b8c2006-04-13 17:20:27 +08008071 if (filter & IPW_PROM_NO_MGMT)
8072 return;
8073 if (filter & IPW_PROM_MGMT_HEADER_ONLY)
8074 hdr_only = 1;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008075 } else if (libipw_is_control(le16_to_cpu(hdr->frame_control))) {
Zhu Yid685b8c2006-04-13 17:20:27 +08008076 if (filter & IPW_PROM_NO_CTL)
8077 return;
8078 if (filter & IPW_PROM_CTL_HEADER_ONLY)
8079 hdr_only = 1;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008080 } else if (libipw_is_data(le16_to_cpu(hdr->frame_control))) {
Zhu Yid685b8c2006-04-13 17:20:27 +08008081 if (filter & IPW_PROM_NO_DATA)
8082 return;
8083 if (filter & IPW_PROM_DATA_HEADER_ONLY)
8084 hdr_only = 1;
8085 }
8086
8087 /* Copy the SKB since this is for the promiscuous side */
8088 skb = skb_copy(rxb->skb, GFP_ATOMIC);
8089 if (skb == NULL) {
8090 IPW_ERROR("skb_clone failed for promiscuous copy.\n");
8091 return;
8092 }
8093
8094 /* copy the frame data to write after where the radiotap header goes */
8095 ipw_rt = (void *)skb->data;
8096
8097 if (hdr_only)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008098 len = libipw_get_hdrlen(le16_to_cpu(hdr->frame_control));
Zhu Yid685b8c2006-04-13 17:20:27 +08008099
8100 memcpy(ipw_rt->payload, hdr, len);
8101
Zhu Yid685b8c2006-04-13 17:20:27 +08008102 ipw_rt->rt_hdr.it_version = PKTHDR_RADIOTAP_VERSION;
8103 ipw_rt->rt_hdr.it_pad = 0; /* always good to zero */
Al Viro743b84d2007-12-27 01:43:16 -05008104 ipw_rt->rt_hdr.it_len = cpu_to_le16(sizeof(*ipw_rt)); /* total header+data */
Zhu Yid685b8c2006-04-13 17:20:27 +08008105
8106 /* Set the size of the skb to the size of the frame */
Al Viro743b84d2007-12-27 01:43:16 -05008107 skb_put(skb, sizeof(*ipw_rt) + len);
Zhu Yid685b8c2006-04-13 17:20:27 +08008108
8109 /* Big bitfield of all the fields we provide in radiotap */
Al Viro743b84d2007-12-27 01:43:16 -05008110 ipw_rt->rt_hdr.it_present = cpu_to_le32(
8111 (1 << IEEE80211_RADIOTAP_TSFT) |
Zhu Yi4b1f8a92006-12-05 14:42:14 +08008112 (1 << IEEE80211_RADIOTAP_FLAGS) |
Zhu Yid685b8c2006-04-13 17:20:27 +08008113 (1 << IEEE80211_RADIOTAP_RATE) |
8114 (1 << IEEE80211_RADIOTAP_CHANNEL) |
8115 (1 << IEEE80211_RADIOTAP_DBM_ANTSIGNAL) |
8116 (1 << IEEE80211_RADIOTAP_DBM_ANTNOISE) |
8117 (1 << IEEE80211_RADIOTAP_ANTENNA));
8118
8119 /* Zero the flags, we'll add to them as we go */
8120 ipw_rt->rt_flags = 0;
Zhu Yi4b1f8a92006-12-05 14:42:14 +08008121 ipw_rt->rt_tsf = (u64)(frame->parent_tsf[3] << 24 |
8122 frame->parent_tsf[2] << 16 |
8123 frame->parent_tsf[1] << 8 |
8124 frame->parent_tsf[0]);
Zhu Yid685b8c2006-04-13 17:20:27 +08008125
8126 /* Convert to DBM */
8127 ipw_rt->rt_dbmsignal = signal;
8128 ipw_rt->rt_dbmnoise = noise;
8129
8130 /* Convert the channel data and set the flags */
8131 ipw_rt->rt_channel = cpu_to_le16(ieee80211chan2mhz(channel));
8132 if (channel > 14) { /* 802.11a */
8133 ipw_rt->rt_chbitmask =
8134 cpu_to_le16((IEEE80211_CHAN_OFDM | IEEE80211_CHAN_5GHZ));
8135 } else if (phy_flags & (1 << 5)) { /* 802.11b */
8136 ipw_rt->rt_chbitmask =
8137 cpu_to_le16((IEEE80211_CHAN_CCK | IEEE80211_CHAN_2GHZ));
8138 } else { /* 802.11g */
8139 ipw_rt->rt_chbitmask =
Al Viro472caf82007-12-27 01:50:54 -05008140 cpu_to_le16(IEEE80211_CHAN_OFDM | IEEE80211_CHAN_2GHZ);
Zhu Yid685b8c2006-04-13 17:20:27 +08008141 }
8142
8143 /* set the rate in multiples of 500k/s */
8144 switch (rate) {
8145 case IPW_TX_RATE_1MB:
8146 ipw_rt->rt_rate = 2;
8147 break;
8148 case IPW_TX_RATE_2MB:
8149 ipw_rt->rt_rate = 4;
8150 break;
8151 case IPW_TX_RATE_5MB:
8152 ipw_rt->rt_rate = 10;
8153 break;
8154 case IPW_TX_RATE_6MB:
8155 ipw_rt->rt_rate = 12;
8156 break;
8157 case IPW_TX_RATE_9MB:
8158 ipw_rt->rt_rate = 18;
8159 break;
8160 case IPW_TX_RATE_11MB:
8161 ipw_rt->rt_rate = 22;
8162 break;
8163 case IPW_TX_RATE_12MB:
8164 ipw_rt->rt_rate = 24;
8165 break;
8166 case IPW_TX_RATE_18MB:
8167 ipw_rt->rt_rate = 36;
8168 break;
8169 case IPW_TX_RATE_24MB:
8170 ipw_rt->rt_rate = 48;
8171 break;
8172 case IPW_TX_RATE_36MB:
8173 ipw_rt->rt_rate = 72;
8174 break;
8175 case IPW_TX_RATE_48MB:
8176 ipw_rt->rt_rate = 96;
8177 break;
8178 case IPW_TX_RATE_54MB:
8179 ipw_rt->rt_rate = 108;
8180 break;
8181 default:
8182 ipw_rt->rt_rate = 0;
8183 break;
8184 }
8185
8186 /* antenna number */
8187 ipw_rt->rt_antenna = (phy_flags & 3);
8188
8189 /* set the preamble flag if we have it */
8190 if (phy_flags & (1 << 6))
8191 ipw_rt->rt_flags |= IEEE80211_RADIOTAP_F_SHORTPRE;
8192
8193 IPW_DEBUG_RX("Rx packet of %d bytes.\n", skb->len);
8194
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008195 if (!libipw_rx(priv->prom_priv->ieee, skb, stats)) {
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00008196 dev->stats.rx_errors++;
Zhu Yid685b8c2006-04-13 17:20:27 +08008197 dev_kfree_skb_any(skb);
8198 }
8199}
8200#endif
8201
Arjan van de Ven858119e2006-01-14 13:20:43 -08008202static int is_network_packet(struct ipw_priv *priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008203 struct libipw_hdr_4addr *header)
James Ketrenosea2b26e2005-08-24 21:25:16 -05008204{
8205 /* Filter incoming packets to determine if they are targetted toward
8206 * this network, discarding packets coming from ourselves */
8207 switch (priv->ieee->iw_mode) {
James Ketrenosa613bff2005-08-24 21:43:11 -05008208 case IW_MODE_ADHOC: /* Header: Dest. | Source | BSSID */
James Ketrenosc848d0a2005-08-24 21:56:24 -05008209 /* packets from our adapter are dropped (echo) */
8210 if (!memcmp(header->addr2, priv->net_dev->dev_addr, ETH_ALEN))
8211 return 0;
8212
Peter Jones90700fd2005-08-26 16:51:06 -05008213 /* {broad,multi}cast packets to our BSSID go through */
Stephen Hemminger3c190652006-01-03 15:27:38 -08008214 if (is_multicast_ether_addr(header->addr1))
James Ketrenosea2b26e2005-08-24 21:25:16 -05008215 return !memcmp(header->addr3, priv->bssid, ETH_ALEN);
James Ketrenosa613bff2005-08-24 21:43:11 -05008216
8217 /* packets to our adapter go through */
8218 return !memcmp(header->addr1, priv->net_dev->dev_addr,
8219 ETH_ALEN);
James Ketrenosa613bff2005-08-24 21:43:11 -05008220
Peter Jones90700fd2005-08-26 16:51:06 -05008221 case IW_MODE_INFRA: /* Header: Dest. | BSSID | Source */
James Ketrenosc848d0a2005-08-24 21:56:24 -05008222 /* packets from our adapter are dropped (echo) */
8223 if (!memcmp(header->addr3, priv->net_dev->dev_addr, ETH_ALEN))
8224 return 0;
8225
Peter Jones90700fd2005-08-26 16:51:06 -05008226 /* {broad,multi}cast packets to our BSS go through */
Stephen Hemminger3c190652006-01-03 15:27:38 -08008227 if (is_multicast_ether_addr(header->addr1))
James Ketrenosa613bff2005-08-24 21:43:11 -05008228 return !memcmp(header->addr2, priv->bssid, ETH_ALEN);
8229
8230 /* packets to our adapter go through */
8231 return !memcmp(header->addr1, priv->net_dev->dev_addr,
8232 ETH_ALEN);
James Ketrenosea2b26e2005-08-24 21:25:16 -05008233 }
James Ketrenosa613bff2005-08-24 21:43:11 -05008234
James Ketrenosea2b26e2005-08-24 21:25:16 -05008235 return 1;
8236}
8237
James Ketrenosafbf30a2005-08-25 00:05:33 -05008238#define IPW_PACKET_RETRY_TIME HZ
8239
Arjan van de Ven858119e2006-01-14 13:20:43 -08008240static int is_duplicate_packet(struct ipw_priv *priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008241 struct libipw_hdr_4addr *header)
James Ketrenosafbf30a2005-08-25 00:05:33 -05008242{
James Ketrenosafbf30a2005-08-25 00:05:33 -05008243 u16 sc = le16_to_cpu(header->seq_ctl);
8244 u16 seq = WLAN_GET_SEQ_SEQ(sc);
8245 u16 frag = WLAN_GET_SEQ_FRAG(sc);
8246 u16 *last_seq, *last_frag;
8247 unsigned long *last_time;
8248
8249 switch (priv->ieee->iw_mode) {
8250 case IW_MODE_ADHOC:
8251 {
8252 struct list_head *p;
8253 struct ipw_ibss_seq *entry = NULL;
8254 u8 *mac = header->addr2;
8255 int index = mac[5] % IPW_IBSS_MAC_HASH_SIZE;
8256
8257 __list_for_each(p, &priv->ibss_mac_hash[index]) {
8258 entry =
8259 list_entry(p, struct ipw_ibss_seq, list);
8260 if (!memcmp(entry->mac, mac, ETH_ALEN))
8261 break;
8262 }
8263 if (p == &priv->ibss_mac_hash[index]) {
8264 entry = kmalloc(sizeof(*entry), GFP_ATOMIC);
8265 if (!entry) {
8266 IPW_ERROR
8267 ("Cannot malloc new mac entry\n");
8268 return 0;
8269 }
8270 memcpy(entry->mac, mac, ETH_ALEN);
8271 entry->seq_num = seq;
8272 entry->frag_num = frag;
8273 entry->packet_time = jiffies;
8274 list_add(&entry->list,
8275 &priv->ibss_mac_hash[index]);
8276 return 0;
8277 }
8278 last_seq = &entry->seq_num;
8279 last_frag = &entry->frag_num;
8280 last_time = &entry->packet_time;
8281 break;
8282 }
8283 case IW_MODE_INFRA:
8284 last_seq = &priv->last_seq_num;
8285 last_frag = &priv->last_frag_num;
8286 last_time = &priv->last_packet_time;
8287 break;
8288 default:
8289 return 0;
8290 }
8291 if ((*last_seq == seq) &&
8292 time_after(*last_time + IPW_PACKET_RETRY_TIME, jiffies)) {
8293 if (*last_frag == frag)
8294 goto drop;
8295 if (*last_frag + 1 != frag)
8296 /* out-of-order fragment */
8297 goto drop;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008298 } else
8299 *last_seq = seq;
8300
Zhu Yif57ce7c2005-07-13 12:22:15 -05008301 *last_frag = frag;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008302 *last_time = jiffies;
8303 return 0;
8304
8305 drop:
Zhu Yi87b016c2005-08-05 17:17:35 +08008306 /* Comment this line now since we observed the card receives
8307 * duplicate packets but the FCTL_RETRY bit is not set in the
8308 * IBSS mode with fragmentation enabled.
John W. Linville72118012008-09-30 21:43:03 -04008309 BUG_ON(!(le16_to_cpu(header->frame_control) & IEEE80211_FCTL_RETRY)); */
James Ketrenosafbf30a2005-08-25 00:05:33 -05008310 return 1;
8311}
8312
James Ketrenosb095c382005-08-24 22:04:42 -05008313static void ipw_handle_mgmt_packet(struct ipw_priv *priv,
8314 struct ipw_rx_mem_buffer *rxb,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008315 struct libipw_rx_stats *stats)
James Ketrenosb095c382005-08-24 22:04:42 -05008316{
8317 struct sk_buff *skb = rxb->skb;
8318 struct ipw_rx_packet *pkt = (struct ipw_rx_packet *)skb->data;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008319 struct libipw_hdr_4addr *header = (struct libipw_hdr_4addr *)
James Ketrenosb095c382005-08-24 22:04:42 -05008320 (skb->data + IPW_RX_FRAME_SIZE);
8321
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008322 libipw_rx_mgt(priv->ieee, header, stats);
James Ketrenosb095c382005-08-24 22:04:42 -05008323
8324 if (priv->ieee->iw_mode == IW_MODE_ADHOC &&
8325 ((WLAN_FC_GET_STYPE(le16_to_cpu(header->frame_ctl)) ==
8326 IEEE80211_STYPE_PROBE_RESP) ||
8327 (WLAN_FC_GET_STYPE(le16_to_cpu(header->frame_ctl)) ==
8328 IEEE80211_STYPE_BEACON))) {
8329 if (!memcmp(header->addr3, priv->bssid, ETH_ALEN))
8330 ipw_add_station(priv, header->addr2);
8331 }
8332
8333 if (priv->config & CFG_NET_STATS) {
8334 IPW_DEBUG_HC("sending stat packet\n");
8335
8336 /* Set the size of the skb to the size of the full
8337 * ipw header and 802.11 frame */
8338 skb_put(skb, le16_to_cpu(pkt->u.frame.length) +
8339 IPW_RX_FRAME_SIZE);
8340
8341 /* Advance past the ipw packet header to the 802.11 frame */
8342 skb_pull(skb, IPW_RX_FRAME_SIZE);
8343
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008344 /* Push the libipw_rx_stats before the 802.11 frame */
James Ketrenosb095c382005-08-24 22:04:42 -05008345 memcpy(skb_push(skb, sizeof(*stats)), stats, sizeof(*stats));
8346
8347 skb->dev = priv->ieee->dev;
8348
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008349 /* Point raw at the libipw_stats */
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07008350 skb_reset_mac_header(skb);
James Ketrenosb095c382005-08-24 22:04:42 -05008351
8352 skb->pkt_type = PACKET_OTHERHOST;
Harvey Harrisonc1b4aa32009-01-29 13:26:44 -08008353 skb->protocol = cpu_to_be16(ETH_P_80211_STATS);
James Ketrenosb095c382005-08-24 22:04:42 -05008354 memset(skb->cb, 0, sizeof(rxb->skb->cb));
8355 netif_rx(skb);
8356 rxb->skb = NULL;
8357 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008358}
8359
James Ketrenos43f66a62005-03-25 12:31:53 -06008360/*
8361 * Main entry function for recieving a packet with 80211 headers. This
8362 * should be called when ever the FW has notified us that there is a new
8363 * skb in the recieve queue.
8364 */
8365static void ipw_rx(struct ipw_priv *priv)
8366{
8367 struct ipw_rx_mem_buffer *rxb;
8368 struct ipw_rx_packet *pkt;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008369 struct libipw_hdr_4addr *header;
James Ketrenos43f66a62005-03-25 12:31:53 -06008370 u32 r, w, i;
8371 u8 network_packet;
Dan Williams943dbef2008-02-14 17:49:41 -05008372 u8 fill_rx = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008373
James Ketrenosb095c382005-08-24 22:04:42 -05008374 r = ipw_read32(priv, IPW_RX_READ_INDEX);
8375 w = ipw_read32(priv, IPW_RX_WRITE_INDEX);
Dan Williams943dbef2008-02-14 17:49:41 -05008376 i = priv->rxq->read;
8377
8378 if (ipw_rx_queue_space (priv->rxq) > (RX_QUEUE_SIZE / 2))
8379 fill_rx = 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06008380
8381 while (i != r) {
8382 rxb = priv->rxq->queue[i];
James Ketrenos43f66a62005-03-25 12:31:53 -06008383 if (unlikely(rxb == NULL)) {
8384 printk(KERN_CRIT "Queue not allocated!\n");
8385 break;
8386 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008387 priv->rxq->queue[i] = NULL;
8388
8389 pci_dma_sync_single_for_cpu(priv->pci_dev, rxb->dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05008390 IPW_RX_BUF_SIZE,
James Ketrenos43f66a62005-03-25 12:31:53 -06008391 PCI_DMA_FROMDEVICE);
8392
8393 pkt = (struct ipw_rx_packet *)rxb->skb->data;
8394 IPW_DEBUG_RX("Packet: type=%02X seq=%02X bits=%02X\n",
8395 pkt->header.message_type,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008396 pkt->header.rx_seq_num, pkt->header.control_bits);
James Ketrenos43f66a62005-03-25 12:31:53 -06008397
8398 switch (pkt->header.message_type) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008399 case RX_FRAME_TYPE: /* 802.11 frame */ {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008400 struct libipw_rx_stats stats = {
Zhu Yi851ca262006-08-21 11:37:58 +08008401 .rssi = pkt->u.frame.rssi_dbm -
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008402 IPW_RSSI_TO_DBM,
James Ketrenosc848d0a2005-08-24 21:56:24 -05008403 .signal =
Reinette Chatre21f8a732009-08-18 10:25:05 -07008404 pkt->u.frame.rssi_dbm -
Bill Mossb1916082006-02-15 08:50:18 +08008405 IPW_RSSI_TO_DBM + 0x100,
James Ketrenosc848d0a2005-08-24 21:56:24 -05008406 .noise =
8407 le16_to_cpu(pkt->u.frame.noise),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008408 .rate = pkt->u.frame.rate,
8409 .mac_time = jiffies,
8410 .received_channel =
8411 pkt->u.frame.received_channel,
8412 .freq =
8413 (pkt->u.frame.
8414 control & (1 << 0)) ?
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008415 LIBIPW_24GHZ_BAND :
8416 LIBIPW_52GHZ_BAND,
James Ketrenosa613bff2005-08-24 21:43:11 -05008417 .len = le16_to_cpu(pkt->u.frame.length),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008418 };
James Ketrenos43f66a62005-03-25 12:31:53 -06008419
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008420 if (stats.rssi != 0)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008421 stats.mask |= LIBIPW_STATMASK_RSSI;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008422 if (stats.signal != 0)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008423 stats.mask |= LIBIPW_STATMASK_SIGNAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008424 if (stats.noise != 0)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008425 stats.mask |= LIBIPW_STATMASK_NOISE;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008426 if (stats.rate != 0)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008427 stats.mask |= LIBIPW_STATMASK_RATE;
James Ketrenos43f66a62005-03-25 12:31:53 -06008428
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008429 priv->rx_packets++;
James Ketrenos43f66a62005-03-25 12:31:53 -06008430
Zhu Yid685b8c2006-04-13 17:20:27 +08008431#ifdef CONFIG_IPW2200_PROMISCUOUS
8432 if (priv->prom_net_dev && netif_running(priv->prom_net_dev))
8433 ipw_handle_promiscuous_rx(priv, rxb, &stats);
8434#endif
8435
James Ketrenosb095c382005-08-24 22:04:42 -05008436#ifdef CONFIG_IPW2200_MONITOR
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008437 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
Zhu Yi459d4082006-04-13 17:21:00 +08008438#ifdef CONFIG_IPW2200_RADIOTAP
Zhu Yid685b8c2006-04-13 17:20:27 +08008439
8440 ipw_handle_data_packet_monitor(priv,
8441 rxb,
8442 &stats);
Mike Kershaw24a47db2005-08-26 00:41:54 -05008443#else
Zhu Yid685b8c2006-04-13 17:20:27 +08008444 ipw_handle_data_packet(priv, rxb,
8445 &stats);
Mike Kershaw24a47db2005-08-26 00:41:54 -05008446#endif
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008447 break;
8448 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008449#endif
Jeff Garzikbf794512005-07-31 13:07:26 -04008450
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008451 header =
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008452 (struct libipw_hdr_4addr *)(rxb->skb->
James Ketrenos0dacca12005-09-21 12:23:41 -05008453 data +
8454 IPW_RX_FRAME_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06008455 /* TODO: Check Ad-Hoc dest/source and make sure
8456 * that we are actually parsing these packets
Jeff Garzikbf794512005-07-31 13:07:26 -04008457 * correctly -- we should probably use the
James Ketrenos43f66a62005-03-25 12:31:53 -06008458 * frame control of the packet and disregard
8459 * the current iw_mode */
James Ketrenos43f66a62005-03-25 12:31:53 -06008460
James Ketrenosea2b26e2005-08-24 21:25:16 -05008461 network_packet =
8462 is_network_packet(priv, header);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008463 if (network_packet && priv->assoc_network) {
8464 priv->assoc_network->stats.rssi =
8465 stats.rssi;
Zhu Yi00d21de2006-04-13 17:19:02 +08008466 priv->exp_avg_rssi =
8467 exponential_average(priv->exp_avg_rssi,
8468 stats.rssi, DEPTH_RSSI);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008469 }
8470
8471 IPW_DEBUG_RX("Frame: len=%u\n",
James Ketrenosa613bff2005-08-24 21:43:11 -05008472 le16_to_cpu(pkt->u.frame.length));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008473
James Ketrenosa613bff2005-08-24 21:43:11 -05008474 if (le16_to_cpu(pkt->u.frame.length) <
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008475 libipw_get_hdrlen(le16_to_cpu(
Zhu Yi9d0be032006-02-15 06:18:19 +08008476 header->frame_ctl))) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008477 IPW_DEBUG_DROP
8478 ("Received packet is too small. "
8479 "Dropping.\n");
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00008480 priv->net_dev->stats.rx_errors++;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008481 priv->wstats.discard.misc++;
8482 break;
8483 }
8484
James Ketrenosa613bff2005-08-24 21:43:11 -05008485 switch (WLAN_FC_GET_TYPE
8486 (le16_to_cpu(header->frame_ctl))) {
James Ketrenosb095c382005-08-24 22:04:42 -05008487
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008488 case IEEE80211_FTYPE_MGMT:
James Ketrenosb095c382005-08-24 22:04:42 -05008489 ipw_handle_mgmt_packet(priv, rxb,
8490 &stats);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008491 break;
8492
8493 case IEEE80211_FTYPE_CTL:
8494 break;
8495
8496 case IEEE80211_FTYPE_DATA:
James Ketrenosafbf30a2005-08-25 00:05:33 -05008497 if (unlikely(!network_packet ||
8498 is_duplicate_packet(priv,
8499 header)))
8500 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008501 IPW_DEBUG_DROP("Dropping: "
Johannes Berge1749612008-10-27 15:59:26 -07008502 "%pM, "
8503 "%pM, "
8504 "%pM\n",
8505 header->addr1,
8506 header->addr2,
8507 header->addr3);
James Ketrenosb095c382005-08-24 22:04:42 -05008508 break;
8509 }
8510
8511 ipw_handle_data_packet(priv, rxb,
8512 &stats);
8513
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008514 break;
8515 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008516 break;
8517 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008518
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008519 case RX_HOST_NOTIFICATION_TYPE:{
8520 IPW_DEBUG_RX
8521 ("Notification: subtype=%02X flags=%02X size=%d\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06008522 pkt->u.notification.subtype,
8523 pkt->u.notification.flags,
Zhu Yi720eeb42006-12-05 14:41:40 +08008524 le16_to_cpu(pkt->u.notification.size));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008525 ipw_rx_notification(priv, &pkt->u.notification);
8526 break;
8527 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008528
8529 default:
8530 IPW_DEBUG_RX("Bad Rx packet of type %d\n",
8531 pkt->header.message_type);
8532 break;
8533 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008534
8535 /* For now we just don't re-use anything. We can tweak this
8536 * later to try and re-use notification packets and SKBs that
James Ketrenos43f66a62005-03-25 12:31:53 -06008537 * fail to Rx correctly */
8538 if (rxb->skb != NULL) {
8539 dev_kfree_skb_any(rxb->skb);
8540 rxb->skb = NULL;
8541 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008542
James Ketrenos43f66a62005-03-25 12:31:53 -06008543 pci_unmap_single(priv->pci_dev, rxb->dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05008544 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06008545 list_add_tail(&rxb->list, &priv->rxq->rx_used);
Jeff Garzikbf794512005-07-31 13:07:26 -04008546
James Ketrenos43f66a62005-03-25 12:31:53 -06008547 i = (i + 1) % RX_QUEUE_SIZE;
Dan Williams943dbef2008-02-14 17:49:41 -05008548
8549 /* If there are a lot of unsued frames, restock the Rx queue
8550 * so the ucode won't assert */
8551 if (fill_rx) {
8552 priv->rxq->read = i;
8553 ipw_rx_queue_replenish(priv);
8554 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008555 }
8556
8557 /* Backtrack one entry */
Dan Williams943dbef2008-02-14 17:49:41 -05008558 priv->rxq->read = i;
James Ketrenos43f66a62005-03-25 12:31:53 -06008559 ipw_rx_queue_restock(priv);
8560}
8561
James Ketrenosafbf30a2005-08-25 00:05:33 -05008562#define DEFAULT_RTS_THRESHOLD 2304U
8563#define MIN_RTS_THRESHOLD 1U
8564#define MAX_RTS_THRESHOLD 2304U
8565#define DEFAULT_BEACON_INTERVAL 100U
8566#define DEFAULT_SHORT_RETRY_LIMIT 7U
8567#define DEFAULT_LONG_RETRY_LIMIT 4U
8568
Zhu Yid6d5b5c2006-02-16 16:21:09 +08008569/**
8570 * ipw_sw_reset
8571 * @option: options to control different reset behaviour
8572 * 0 = reset everything except the 'disable' module_param
8573 * 1 = reset everything and print out driver info (for probe only)
8574 * 2 = reset everything
8575 */
8576static int ipw_sw_reset(struct ipw_priv *priv, int option)
James Ketrenos43f66a62005-03-25 12:31:53 -06008577{
James Ketrenosafbf30a2005-08-25 00:05:33 -05008578 int band, modulation;
8579 int old_mode = priv->ieee->iw_mode;
James Ketrenos43f66a62005-03-25 12:31:53 -06008580
James Ketrenosafbf30a2005-08-25 00:05:33 -05008581 /* Initialize module parameter values here */
8582 priv->config = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008583
James Ketrenosafbf30a2005-08-25 00:05:33 -05008584 /* We default to disabling the LED code as right now it causes
8585 * too many systems to lock up... */
Reinette Chatre21f8a732009-08-18 10:25:05 -07008586 if (!led_support)
James Ketrenosafbf30a2005-08-25 00:05:33 -05008587 priv->config |= CFG_NO_LED;
James Ketrenos43f66a62005-03-25 12:31:53 -06008588
James Ketrenosafbf30a2005-08-25 00:05:33 -05008589 if (associate)
8590 priv->config |= CFG_ASSOCIATE;
8591 else
8592 IPW_DEBUG_INFO("Auto associate disabled.\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04008593
James Ketrenosafbf30a2005-08-25 00:05:33 -05008594 if (auto_create)
8595 priv->config |= CFG_ADHOC_CREATE;
8596 else
8597 IPW_DEBUG_INFO("Auto adhoc creation disabled.\n");
8598
Zhu Yi17ed0812006-01-24 16:36:31 +08008599 priv->config &= ~CFG_STATIC_ESSID;
8600 priv->essid_len = 0;
8601 memset(priv->essid, 0, IW_ESSID_MAX_SIZE);
8602
Zhu Yid6d5b5c2006-02-16 16:21:09 +08008603 if (disable && option) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008604 priv->status |= STATUS_RF_KILL_SW;
8605 IPW_DEBUG_INFO("Radio disabled.\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06008606 }
8607
Reinette Chatre21f8a732009-08-18 10:25:05 -07008608 if (default_channel != 0) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008609 priv->config |= CFG_STATIC_CHANNEL;
Reinette Chatre21f8a732009-08-18 10:25:05 -07008610 priv->channel = default_channel;
8611 IPW_DEBUG_INFO("Bind to static channel %d\n", default_channel);
James Ketrenosafbf30a2005-08-25 00:05:33 -05008612 /* TODO: Validate that provided channel is in range */
8613 }
Zhu Yie43e3c12006-04-13 17:20:45 +08008614#ifdef CONFIG_IPW2200_QOS
James Ketrenosafbf30a2005-08-25 00:05:33 -05008615 ipw_qos_init(priv, qos_enable, qos_burst_enable,
8616 burst_duration_CCK, burst_duration_OFDM);
Zhu Yie43e3c12006-04-13 17:20:45 +08008617#endif /* CONFIG_IPW2200_QOS */
James Ketrenosafbf30a2005-08-25 00:05:33 -05008618
Reinette Chatre21f8a732009-08-18 10:25:05 -07008619 switch (network_mode) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008620 case 1:
8621 priv->ieee->iw_mode = IW_MODE_ADHOC;
8622 priv->net_dev->type = ARPHRD_ETHER;
8623
8624 break;
8625#ifdef CONFIG_IPW2200_MONITOR
8626 case 2:
8627 priv->ieee->iw_mode = IW_MODE_MONITOR;
Zhu Yi459d4082006-04-13 17:21:00 +08008628#ifdef CONFIG_IPW2200_RADIOTAP
Mike Kershaw24a47db2005-08-26 00:41:54 -05008629 priv->net_dev->type = ARPHRD_IEEE80211_RADIOTAP;
8630#else
James Ketrenosafbf30a2005-08-25 00:05:33 -05008631 priv->net_dev->type = ARPHRD_IEEE80211;
Mike Kershaw24a47db2005-08-26 00:41:54 -05008632#endif
James Ketrenosafbf30a2005-08-25 00:05:33 -05008633 break;
8634#endif
8635 default:
8636 case 0:
8637 priv->net_dev->type = ARPHRD_ETHER;
8638 priv->ieee->iw_mode = IW_MODE_INFRA;
8639 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06008640 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008641
James Ketrenosafbf30a2005-08-25 00:05:33 -05008642 if (hwcrypto) {
8643 priv->ieee->host_encrypt = 0;
8644 priv->ieee->host_encrypt_msdu = 0;
8645 priv->ieee->host_decrypt = 0;
Hong Liu567deaf2005-08-31 18:07:22 +08008646 priv->ieee->host_mc_decrypt = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008647 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05008648 IPW_DEBUG_INFO("Hardware crypto [%s]\n", hwcrypto ? "on" : "off");
James Ketrenos43f66a62005-03-25 12:31:53 -06008649
Zhu Yie402c932005-08-05 17:20:40 +08008650 /* IPW2200/2915 is abled to do hardware fragmentation. */
8651 priv->ieee->host_open_frag = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008652
James Ketrenosafbf30a2005-08-25 00:05:33 -05008653 if ((priv->pci_dev->device == 0x4223) ||
8654 (priv->pci_dev->device == 0x4224)) {
Zhu Yie8c69e22006-02-17 08:25:12 +08008655 if (option == 1)
James Ketrenosafbf30a2005-08-25 00:05:33 -05008656 printk(KERN_INFO DRV_NAME
8657 ": Detected Intel PRO/Wireless 2915ABG Network "
8658 "Connection\n");
8659 priv->ieee->abg_true = 1;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008660 band = LIBIPW_52GHZ_BAND | LIBIPW_24GHZ_BAND;
8661 modulation = LIBIPW_OFDM_MODULATION |
8662 LIBIPW_CCK_MODULATION;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008663 priv->adapter = IPW_2915ABG;
8664 priv->ieee->mode = IEEE_A | IEEE_G | IEEE_B;
James Ketrenos43f66a62005-03-25 12:31:53 -06008665 } else {
Zhu Yie8c69e22006-02-17 08:25:12 +08008666 if (option == 1)
James Ketrenosafbf30a2005-08-25 00:05:33 -05008667 printk(KERN_INFO DRV_NAME
8668 ": Detected Intel PRO/Wireless 2200BG Network "
8669 "Connection\n");
8670
8671 priv->ieee->abg_true = 0;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008672 band = LIBIPW_24GHZ_BAND;
8673 modulation = LIBIPW_OFDM_MODULATION |
8674 LIBIPW_CCK_MODULATION;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008675 priv->adapter = IPW_2200BG;
8676 priv->ieee->mode = IEEE_G | IEEE_B;
James Ketrenos43f66a62005-03-25 12:31:53 -06008677 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008678
James Ketrenosafbf30a2005-08-25 00:05:33 -05008679 priv->ieee->freq_band = band;
8680 priv->ieee->modulation = modulation;
Jeff Garzikbf794512005-07-31 13:07:26 -04008681
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008682 priv->rates_mask = LIBIPW_DEFAULT_RATES_MASK;
James Ketrenos43f66a62005-03-25 12:31:53 -06008683
James Ketrenosafbf30a2005-08-25 00:05:33 -05008684 priv->disassociate_threshold = IPW_MB_DISASSOCIATE_THRESHOLD_DEFAULT;
8685 priv->roaming_threshold = IPW_MB_ROAMING_THRESHOLD_DEFAULT;
James Ketrenos43f66a62005-03-25 12:31:53 -06008686
James Ketrenosafbf30a2005-08-25 00:05:33 -05008687 priv->rts_threshold = DEFAULT_RTS_THRESHOLD;
8688 priv->short_retry_limit = DEFAULT_SHORT_RETRY_LIMIT;
8689 priv->long_retry_limit = DEFAULT_LONG_RETRY_LIMIT;
Jeff Garzikbf794512005-07-31 13:07:26 -04008690
James Ketrenosafbf30a2005-08-25 00:05:33 -05008691 /* If power management is turned on, default to AC mode */
8692 priv->power_mode = IPW_POWER_AC;
8693 priv->tx_power = IPW_TX_POWER_DEFAULT;
James Ketrenos43f66a62005-03-25 12:31:53 -06008694
Zhu Yi0ece35b2005-08-05 17:26:51 +08008695 return old_mode == priv->ieee->iw_mode;
James Ketrenos43f66a62005-03-25 12:31:53 -06008696}
8697
8698/*
8699 * This file defines the Wireless Extension handlers. It does not
8700 * define any methods of hardware manipulation and relies on the
8701 * functions defined in ipw_main to provide the HW interaction.
Jeff Garzikbf794512005-07-31 13:07:26 -04008702 *
8703 * The exception to this is the use of the ipw_get_ordinal()
James Ketrenos43f66a62005-03-25 12:31:53 -06008704 * function used to poll the hardware vs. making unecessary calls.
8705 *
8706 */
8707
James Ketrenos43f66a62005-03-25 12:31:53 -06008708static int ipw_set_channel(struct ipw_priv *priv, u8 channel)
8709{
8710 if (channel == 0) {
8711 IPW_DEBUG_INFO("Setting channel to ANY (0)\n");
8712 priv->config &= ~CFG_STATIC_CHANNEL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008713 IPW_DEBUG_ASSOC("Attempting to associate with new "
8714 "parameters.\n");
8715 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06008716 return 0;
8717 }
8718
8719 priv->config |= CFG_STATIC_CHANNEL;
8720
8721 if (priv->channel == channel) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008722 IPW_DEBUG_INFO("Request to set channel to current value (%d)\n",
8723 channel);
James Ketrenos43f66a62005-03-25 12:31:53 -06008724 return 0;
8725 }
8726
8727 IPW_DEBUG_INFO("Setting channel to %i\n", (int)channel);
8728 priv->channel = channel;
8729
James Ketrenosb095c382005-08-24 22:04:42 -05008730#ifdef CONFIG_IPW2200_MONITOR
8731 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008732 int i;
James Ketrenosb095c382005-08-24 22:04:42 -05008733 if (priv->status & STATUS_SCANNING) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008734 IPW_DEBUG_SCAN("Scan abort triggered due to "
James Ketrenosb095c382005-08-24 22:04:42 -05008735 "channel change.\n");
James Ketrenosafbf30a2005-08-25 00:05:33 -05008736 ipw_abort_scan(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05008737 }
8738
8739 for (i = 1000; i && (priv->status & STATUS_SCANNING); i--)
8740 udelay(10);
8741
8742 if (priv->status & STATUS_SCANNING)
8743 IPW_DEBUG_SCAN("Still scanning...\n");
8744 else
8745 IPW_DEBUG_SCAN("Took %dms to abort current scan\n",
8746 1000 - i);
8747
8748 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008749 }
James Ketrenosb095c382005-08-24 22:04:42 -05008750#endif /* CONFIG_IPW2200_MONITOR */
8751
James Ketrenosc848d0a2005-08-24 21:56:24 -05008752 /* Network configuration changed -- force [re]association */
8753 IPW_DEBUG_ASSOC("[re]association triggered due to channel change.\n");
8754 if (!ipw_disassociate(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -06008755 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06008756
8757 return 0;
8758}
8759
Jeff Garzikbf794512005-07-31 13:07:26 -04008760static int ipw_wx_set_freq(struct net_device *dev,
8761 struct iw_request_info *info,
8762 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06008763{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008764 struct ipw_priv *priv = libipw_priv(dev);
8765 const struct libipw_geo *geo = libipw_get_geo(priv->ieee);
James Ketrenos43f66a62005-03-25 12:31:53 -06008766 struct iw_freq *fwrq = &wrqu->freq;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008767 int ret = 0, i;
Liu Hong1fe0adb2005-08-19 09:33:10 -05008768 u8 channel, flags;
8769 int band;
Jeff Garzikbf794512005-07-31 13:07:26 -04008770
James Ketrenosb095c382005-08-24 22:04:42 -05008771 if (fwrq->m == 0) {
8772 IPW_DEBUG_WX("SET Freq/Channel -> any\n");
Zhu Yi46441512006-01-24 16:37:59 +08008773 mutex_lock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05008774 ret = ipw_set_channel(priv, 0);
Zhu Yi46441512006-01-24 16:37:59 +08008775 mutex_unlock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05008776 return ret;
8777 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008778 /* if setting by freq convert to channel */
8779 if (fwrq->e == 1) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008780 channel = libipw_freq_to_channel(priv->ieee, fwrq->m);
James Ketrenosb095c382005-08-24 22:04:42 -05008781 if (channel == 0)
8782 return -EINVAL;
8783 } else
8784 channel = fwrq->m;
Jeff Garzikbf794512005-07-31 13:07:26 -04008785
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008786 if (!(band = libipw_is_valid_channel(priv->ieee, channel)))
James Ketrenosb095c382005-08-24 22:04:42 -05008787 return -EINVAL;
Jeff Garzikbf794512005-07-31 13:07:26 -04008788
Liu Hong1fe0adb2005-08-19 09:33:10 -05008789 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008790 i = libipw_channel_to_index(priv->ieee, channel);
James Ketrenosafbf30a2005-08-25 00:05:33 -05008791 if (i == -1)
8792 return -EINVAL;
Liu Hong1fe0adb2005-08-19 09:33:10 -05008793
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008794 flags = (band == LIBIPW_24GHZ_BAND) ?
Liu Hong1fe0adb2005-08-19 09:33:10 -05008795 geo->bg[i].flags : geo->a[i].flags;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008796 if (flags & LIBIPW_CH_PASSIVE_ONLY) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008797 IPW_DEBUG_WX("Invalid Ad-Hoc channel for 802.11a\n");
8798 return -EINVAL;
James Ketrenos43f66a62005-03-25 12:31:53 -06008799 }
8800 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008801
Frans Pop9fd1ea42010-03-24 19:46:31 +01008802 IPW_DEBUG_WX("SET Freq/Channel -> %d\n", fwrq->m);
Zhu Yi46441512006-01-24 16:37:59 +08008803 mutex_lock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05008804 ret = ipw_set_channel(priv, channel);
Zhu Yi46441512006-01-24 16:37:59 +08008805 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008806 return ret;
James Ketrenos43f66a62005-03-25 12:31:53 -06008807}
8808
Jeff Garzikbf794512005-07-31 13:07:26 -04008809static int ipw_wx_get_freq(struct net_device *dev,
8810 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008811 union iwreq_data *wrqu, char *extra)
8812{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008813 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06008814
8815 wrqu->freq.e = 0;
8816
8817 /* If we are associated, trying to associate, or have a statically
8818 * configured CHANNEL then return that; otherwise return ANY */
Zhu Yi46441512006-01-24 16:37:59 +08008819 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008820 if (priv->config & CFG_STATIC_CHANNEL ||
Zhu Yic580f672006-08-21 11:37:01 +08008821 priv->status & (STATUS_ASSOCIATING | STATUS_ASSOCIATED)) {
8822 int i;
8823
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008824 i = libipw_channel_to_index(priv->ieee, priv->channel);
Zhu Yic580f672006-08-21 11:37:01 +08008825 BUG_ON(i == -1);
8826 wrqu->freq.e = 1;
8827
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008828 switch (libipw_is_valid_channel(priv->ieee, priv->channel)) {
8829 case LIBIPW_52GHZ_BAND:
Zhu Yic580f672006-08-21 11:37:01 +08008830 wrqu->freq.m = priv->ieee->geo.a[i].freq * 100000;
8831 break;
8832
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008833 case LIBIPW_24GHZ_BAND:
Zhu Yic580f672006-08-21 11:37:01 +08008834 wrqu->freq.m = priv->ieee->geo.bg[i].freq * 100000;
8835 break;
8836
8837 default:
8838 BUG();
8839 }
8840 } else
James Ketrenos43f66a62005-03-25 12:31:53 -06008841 wrqu->freq.m = 0;
8842
Zhu Yi46441512006-01-24 16:37:59 +08008843 mutex_unlock(&priv->mutex);
Frans Pop9fd1ea42010-03-24 19:46:31 +01008844 IPW_DEBUG_WX("GET Freq/Channel -> %d\n", priv->channel);
James Ketrenos43f66a62005-03-25 12:31:53 -06008845 return 0;
8846}
8847
Jeff Garzikbf794512005-07-31 13:07:26 -04008848static int ipw_wx_set_mode(struct net_device *dev,
8849 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008850 union iwreq_data *wrqu, char *extra)
8851{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008852 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06008853 int err = 0;
8854
8855 IPW_DEBUG_WX("Set MODE: %d\n", wrqu->mode);
8856
James Ketrenos43f66a62005-03-25 12:31:53 -06008857 switch (wrqu->mode) {
James Ketrenosb095c382005-08-24 22:04:42 -05008858#ifdef CONFIG_IPW2200_MONITOR
James Ketrenos43f66a62005-03-25 12:31:53 -06008859 case IW_MODE_MONITOR:
8860#endif
8861 case IW_MODE_ADHOC:
8862 case IW_MODE_INFRA:
8863 break;
8864 case IW_MODE_AUTO:
8865 wrqu->mode = IW_MODE_INFRA;
8866 break;
8867 default:
8868 return -EINVAL;
8869 }
James Ketrenosb095c382005-08-24 22:04:42 -05008870 if (wrqu->mode == priv->ieee->iw_mode)
8871 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008872
Zhu Yi46441512006-01-24 16:37:59 +08008873 mutex_lock(&priv->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -05008874
8875 ipw_sw_reset(priv, 0);
8876
James Ketrenosb095c382005-08-24 22:04:42 -05008877#ifdef CONFIG_IPW2200_MONITOR
Jeff Garzikbf794512005-07-31 13:07:26 -04008878 if (priv->ieee->iw_mode == IW_MODE_MONITOR)
James Ketrenos43f66a62005-03-25 12:31:53 -06008879 priv->net_dev->type = ARPHRD_ETHER;
Jeff Garzikbf794512005-07-31 13:07:26 -04008880
8881 if (wrqu->mode == IW_MODE_MONITOR)
Zhu Yi459d4082006-04-13 17:21:00 +08008882#ifdef CONFIG_IPW2200_RADIOTAP
Mike Kershaw24a47db2005-08-26 00:41:54 -05008883 priv->net_dev->type = ARPHRD_IEEE80211_RADIOTAP;
8884#else
James Ketrenos43f66a62005-03-25 12:31:53 -06008885 priv->net_dev->type = ARPHRD_IEEE80211;
Mike Kershaw24a47db2005-08-26 00:41:54 -05008886#endif
James Ketrenosb095c382005-08-24 22:04:42 -05008887#endif /* CONFIG_IPW2200_MONITOR */
Jeff Garzikbf794512005-07-31 13:07:26 -04008888
Jeff Garzikbf794512005-07-31 13:07:26 -04008889 /* Free the existing firmware and reset the fw_loaded
Nick Andrew877d0312009-01-26 11:06:57 +01008890 * flag so ipw_load() will bring in the new firmware */
James Ketrenosafbf30a2005-08-25 00:05:33 -05008891 free_firmware();
James Ketrenos43f66a62005-03-25 12:31:53 -06008892
8893 priv->ieee->iw_mode = wrqu->mode;
Jeff Garzikbf794512005-07-31 13:07:26 -04008894
James Ketrenosc848d0a2005-08-24 21:56:24 -05008895 queue_work(priv->workqueue, &priv->adapter_restart);
Zhu Yi46441512006-01-24 16:37:59 +08008896 mutex_unlock(&priv->mutex);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008897 return err;
James Ketrenos43f66a62005-03-25 12:31:53 -06008898}
8899
Jeff Garzikbf794512005-07-31 13:07:26 -04008900static int ipw_wx_get_mode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008901 struct iw_request_info *info,
8902 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06008903{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008904 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08008905 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008906 wrqu->mode = priv->ieee->iw_mode;
8907 IPW_DEBUG_WX("Get MODE -> %d\n", wrqu->mode);
Zhu Yi46441512006-01-24 16:37:59 +08008908 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008909 return 0;
8910}
8911
James Ketrenos43f66a62005-03-25 12:31:53 -06008912/* Values are in microsecond */
8913static const s32 timeout_duration[] = {
8914 350000,
8915 250000,
8916 75000,
8917 37000,
8918 25000,
8919};
8920
8921static const s32 period_duration[] = {
8922 400000,
8923 700000,
8924 1000000,
8925 1000000,
8926 1000000
8927};
8928
Jeff Garzikbf794512005-07-31 13:07:26 -04008929static int ipw_wx_get_range(struct net_device *dev,
8930 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008931 union iwreq_data *wrqu, char *extra)
8932{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008933 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06008934 struct iw_range *range = (struct iw_range *)extra;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008935 const struct libipw_geo *geo = libipw_get_geo(priv->ieee);
James Ketrenosb095c382005-08-24 22:04:42 -05008936 int i = 0, j;
James Ketrenos43f66a62005-03-25 12:31:53 -06008937
8938 wrqu->data.length = sizeof(*range);
8939 memset(range, 0, sizeof(*range));
8940
8941 /* 54Mbs == ~27 Mb/s real (802.11g) */
Jeff Garzikbf794512005-07-31 13:07:26 -04008942 range->throughput = 27 * 1000 * 1000;
James Ketrenos43f66a62005-03-25 12:31:53 -06008943
8944 range->max_qual.qual = 100;
8945 /* TODO: Find real max RSSI and stick here */
8946 range->max_qual.level = 0;
Bill Mossb1916082006-02-15 08:50:18 +08008947 range->max_qual.noise = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008948 range->max_qual.updated = 7; /* Updated all three */
James Ketrenos43f66a62005-03-25 12:31:53 -06008949
8950 range->avg_qual.qual = 70;
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02008951 /* TODO: Find real 'good' to 'bad' threshold value for RSSI */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008952 range->avg_qual.level = 0; /* FIXME to real average level */
James Ketrenos43f66a62005-03-25 12:31:53 -06008953 range->avg_qual.noise = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008954 range->avg_qual.updated = 7; /* Updated all three */
Zhu Yi46441512006-01-24 16:37:59 +08008955 mutex_lock(&priv->mutex);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008956 range->num_bitrates = min(priv->rates.num_rates, (u8) IW_MAX_BITRATES);
James Ketrenos43f66a62005-03-25 12:31:53 -06008957
Jeff Garzikbf794512005-07-31 13:07:26 -04008958 for (i = 0; i < range->num_bitrates; i++)
8959 range->bitrate[i] = (priv->rates.supported_rates[i] & 0x7F) *
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008960 500000;
Jeff Garzikbf794512005-07-31 13:07:26 -04008961
James Ketrenos43f66a62005-03-25 12:31:53 -06008962 range->max_rts = DEFAULT_RTS_THRESHOLD;
8963 range->min_frag = MIN_FRAG_THRESHOLD;
8964 range->max_frag = MAX_FRAG_THRESHOLD;
8965
8966 range->encoding_size[0] = 5;
Jeff Garzikbf794512005-07-31 13:07:26 -04008967 range->encoding_size[1] = 13;
James Ketrenos43f66a62005-03-25 12:31:53 -06008968 range->num_encoding_sizes = 2;
8969 range->max_encoding_tokens = WEP_KEYS;
8970
8971 /* Set the Wireless Extension versions */
8972 range->we_version_compiled = WIRELESS_EXT;
Dan Williamsf1b50862006-01-30 13:58:56 -05008973 range->we_version_source = 18;
James Ketrenos43f66a62005-03-25 12:31:53 -06008974
James Ketrenosb095c382005-08-24 22:04:42 -05008975 i = 0;
8976 if (priv->ieee->mode & (IEEE_B | IEEE_G)) {
Zhu Yie815de42006-03-02 05:55:51 +08008977 for (j = 0; j < geo->bg_channels && i < IW_MAX_FREQUENCIES; j++) {
8978 if ((priv->ieee->iw_mode == IW_MODE_ADHOC) &&
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008979 (geo->bg[j].flags & LIBIPW_CH_PASSIVE_ONLY))
Zhu Yie815de42006-03-02 05:55:51 +08008980 continue;
8981
James Ketrenosb095c382005-08-24 22:04:42 -05008982 range->freq[i].i = geo->bg[j].channel;
8983 range->freq[i].m = geo->bg[j].freq * 100000;
8984 range->freq[i].e = 1;
Zhu Yie815de42006-03-02 05:55:51 +08008985 i++;
James Ketrenosb095c382005-08-24 22:04:42 -05008986 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008987 }
James Ketrenosb095c382005-08-24 22:04:42 -05008988
8989 if (priv->ieee->mode & IEEE_A) {
Zhu Yie815de42006-03-02 05:55:51 +08008990 for (j = 0; j < geo->a_channels && i < IW_MAX_FREQUENCIES; j++) {
8991 if ((priv->ieee->iw_mode == IW_MODE_ADHOC) &&
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008992 (geo->a[j].flags & LIBIPW_CH_PASSIVE_ONLY))
Zhu Yie815de42006-03-02 05:55:51 +08008993 continue;
8994
James Ketrenosb095c382005-08-24 22:04:42 -05008995 range->freq[i].i = geo->a[j].channel;
8996 range->freq[i].m = geo->a[j].freq * 100000;
8997 range->freq[i].e = 1;
Zhu Yie815de42006-03-02 05:55:51 +08008998 i++;
James Ketrenosb095c382005-08-24 22:04:42 -05008999 }
9000 }
9001
9002 range->num_channels = i;
9003 range->num_frequency = i;
9004
Zhu Yi46441512006-01-24 16:37:59 +08009005 mutex_unlock(&priv->mutex);
Benoit Boissinot97a78ca2005-09-15 17:30:28 +00009006
9007 /* Event capability (kernel + driver) */
9008 range->event_capa[0] = (IW_EVENT_CAPA_K_0 |
9009 IW_EVENT_CAPA_MASK(SIOCGIWTHRSPY) |
Zhu Yi07f02e42006-04-13 17:19:25 +08009010 IW_EVENT_CAPA_MASK(SIOCGIWAP) |
9011 IW_EVENT_CAPA_MASK(SIOCGIWSCAN));
Benoit Boissinot97a78ca2005-09-15 17:30:28 +00009012 range->event_capa[1] = IW_EVENT_CAPA_K_1;
James Ketrenos43f66a62005-03-25 12:31:53 -06009013
Dan Williamsf1b50862006-01-30 13:58:56 -05009014 range->enc_capa = IW_ENC_CAPA_WPA | IW_ENC_CAPA_WPA2 |
9015 IW_ENC_CAPA_CIPHER_TKIP | IW_ENC_CAPA_CIPHER_CCMP;
9016
Dan Williams374fdfb2007-12-12 10:25:07 -05009017 range->scan_capa = IW_SCAN_CAPA_ESSID | IW_SCAN_CAPA_TYPE;
9018
James Ketrenos43f66a62005-03-25 12:31:53 -06009019 IPW_DEBUG_WX("GET Range\n");
9020 return 0;
9021}
9022
Jeff Garzikbf794512005-07-31 13:07:26 -04009023static int ipw_wx_set_wap(struct net_device *dev,
9024 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009025 union iwreq_data *wrqu, char *extra)
9026{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009027 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009028
9029 static const unsigned char any[] = {
9030 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
9031 };
9032 static const unsigned char off[] = {
9033 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
9034 };
9035
Jeff Garzikbf794512005-07-31 13:07:26 -04009036 if (wrqu->ap_addr.sa_family != ARPHRD_ETHER)
James Ketrenos43f66a62005-03-25 12:31:53 -06009037 return -EINVAL;
Zhu Yi46441512006-01-24 16:37:59 +08009038 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009039 if (!memcmp(any, wrqu->ap_addr.sa_data, ETH_ALEN) ||
9040 !memcmp(off, wrqu->ap_addr.sa_data, ETH_ALEN)) {
9041 /* we disable mandatory BSSID association */
9042 IPW_DEBUG_WX("Setting AP BSSID to ANY\n");
9043 priv->config &= ~CFG_STATIC_BSSID;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009044 IPW_DEBUG_ASSOC("Attempting to associate with new "
9045 "parameters.\n");
9046 ipw_associate(priv);
Zhu Yi46441512006-01-24 16:37:59 +08009047 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009048 return 0;
9049 }
9050
9051 priv->config |= CFG_STATIC_BSSID;
9052 if (!memcmp(priv->bssid, wrqu->ap_addr.sa_data, ETH_ALEN)) {
9053 IPW_DEBUG_WX("BSSID set to current BSSID.\n");
Zhu Yi46441512006-01-24 16:37:59 +08009054 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009055 return 0;
9056 }
9057
Johannes Berge1749612008-10-27 15:59:26 -07009058 IPW_DEBUG_WX("Setting mandatory BSSID to %pM\n",
9059 wrqu->ap_addr.sa_data);
James Ketrenos43f66a62005-03-25 12:31:53 -06009060
9061 memcpy(priv->bssid, wrqu->ap_addr.sa_data, ETH_ALEN);
9062
James Ketrenosc848d0a2005-08-24 21:56:24 -05009063 /* Network configuration changed -- force [re]association */
9064 IPW_DEBUG_ASSOC("[re]association triggered due to BSSID change.\n");
9065 if (!ipw_disassociate(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -06009066 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06009067
Zhu Yi46441512006-01-24 16:37:59 +08009068 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009069 return 0;
9070}
9071
Jeff Garzikbf794512005-07-31 13:07:26 -04009072static int ipw_wx_get_wap(struct net_device *dev,
9073 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009074 union iwreq_data *wrqu, char *extra)
9075{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009076 struct ipw_priv *priv = libipw_priv(dev);
Joe Perches0795af52007-10-03 17:59:30 -07009077
James Ketrenos43f66a62005-03-25 12:31:53 -06009078 /* If we are associated, trying to associate, or have a statically
9079 * configured BSSID then return that; otherwise return ANY */
Zhu Yi46441512006-01-24 16:37:59 +08009080 mutex_lock(&priv->mutex);
Jeff Garzikbf794512005-07-31 13:07:26 -04009081 if (priv->config & CFG_STATIC_BSSID ||
James Ketrenos43f66a62005-03-25 12:31:53 -06009082 priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) {
9083 wrqu->ap_addr.sa_family = ARPHRD_ETHER;
James Ketrenosafbf30a2005-08-25 00:05:33 -05009084 memcpy(wrqu->ap_addr.sa_data, priv->bssid, ETH_ALEN);
James Ketrenos43f66a62005-03-25 12:31:53 -06009085 } else
9086 memset(wrqu->ap_addr.sa_data, 0, ETH_ALEN);
9087
Johannes Berge1749612008-10-27 15:59:26 -07009088 IPW_DEBUG_WX("Getting WAP BSSID: %pM\n",
9089 wrqu->ap_addr.sa_data);
Zhu Yi46441512006-01-24 16:37:59 +08009090 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009091 return 0;
9092}
9093
Jeff Garzikbf794512005-07-31 13:07:26 -04009094static int ipw_wx_set_essid(struct net_device *dev,
9095 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009096 union iwreq_data *wrqu, char *extra)
9097{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009098 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yiab644b02006-08-21 11:37:13 +08009099 int length;
John W. Linville9387b7c2008-09-30 20:59:05 -04009100 DECLARE_SSID_BUF(ssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06009101
Zhu Yiab644b02006-08-21 11:37:13 +08009102 mutex_lock(&priv->mutex);
9103
9104 if (!wrqu->essid.flags)
9105 {
9106 IPW_DEBUG_WX("Setting ESSID to ANY\n");
9107 ipw_disassociate(priv);
9108 priv->config &= ~CFG_STATIC_ESSID;
9109 ipw_associate(priv);
9110 mutex_unlock(&priv->mutex);
9111 return 0;
9112 }
9113
Zhu Yia9f0d422006-08-21 11:37:26 +08009114 length = min((int)wrqu->essid.length, IW_ESSID_MAX_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06009115
9116 priv->config |= CFG_STATIC_ESSID;
9117
Zhu Yia9f0d422006-08-21 11:37:26 +08009118 if (priv->essid_len == length && !memcmp(priv->essid, extra, length)
9119 && (priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING))) {
James Ketrenos43f66a62005-03-25 12:31:53 -06009120 IPW_DEBUG_WX("ESSID set to current ESSID.\n");
Zhu Yi46441512006-01-24 16:37:59 +08009121 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009122 return 0;
9123 }
9124
John W. Linville9387b7c2008-09-30 20:59:05 -04009125 IPW_DEBUG_WX("Setting ESSID: '%s' (%d)\n",
9126 print_ssid(ssid, extra, length), length);
James Ketrenos43f66a62005-03-25 12:31:53 -06009127
9128 priv->essid_len = length;
Zhu Yia9f0d422006-08-21 11:37:26 +08009129 memcpy(priv->essid, extra, priv->essid_len);
Jeff Garzikbf794512005-07-31 13:07:26 -04009130
James Ketrenosc848d0a2005-08-24 21:56:24 -05009131 /* Network configuration changed -- force [re]association */
9132 IPW_DEBUG_ASSOC("[re]association triggered due to ESSID change.\n");
9133 if (!ipw_disassociate(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -06009134 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06009135
Zhu Yi46441512006-01-24 16:37:59 +08009136 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009137 return 0;
9138}
9139
Jeff Garzikbf794512005-07-31 13:07:26 -04009140static int ipw_wx_get_essid(struct net_device *dev,
9141 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009142 union iwreq_data *wrqu, char *extra)
9143{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009144 struct ipw_priv *priv = libipw_priv(dev);
John W. Linville9387b7c2008-09-30 20:59:05 -04009145 DECLARE_SSID_BUF(ssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06009146
9147 /* If we are associated, trying to associate, or have a statically
9148 * configured ESSID then return that; otherwise return ANY */
Zhu Yi46441512006-01-24 16:37:59 +08009149 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009150 if (priv->config & CFG_STATIC_ESSID ||
Jeff Garzikbf794512005-07-31 13:07:26 -04009151 priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) {
9152 IPW_DEBUG_WX("Getting essid: '%s'\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04009153 print_ssid(ssid, priv->essid, priv->essid_len));
Jeff Garzikbf794512005-07-31 13:07:26 -04009154 memcpy(extra, priv->essid, priv->essid_len);
James Ketrenos43f66a62005-03-25 12:31:53 -06009155 wrqu->essid.length = priv->essid_len;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009156 wrqu->essid.flags = 1; /* active */
James Ketrenos43f66a62005-03-25 12:31:53 -06009157 } else {
9158 IPW_DEBUG_WX("Getting essid: ANY\n");
9159 wrqu->essid.length = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009160 wrqu->essid.flags = 0; /* active */
James Ketrenos43f66a62005-03-25 12:31:53 -06009161 }
Zhu Yi46441512006-01-24 16:37:59 +08009162 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009163 return 0;
9164}
9165
Jeff Garzikbf794512005-07-31 13:07:26 -04009166static int ipw_wx_set_nick(struct net_device *dev,
9167 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009168 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009169{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009170 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009171
9172 IPW_DEBUG_WX("Setting nick to '%s'\n", extra);
9173 if (wrqu->data.length > IW_ESSID_MAX_SIZE)
9174 return -E2BIG;
Zhu Yi46441512006-01-24 16:37:59 +08009175 mutex_lock(&priv->mutex);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009176 wrqu->data.length = min((size_t) wrqu->data.length, sizeof(priv->nick));
James Ketrenos43f66a62005-03-25 12:31:53 -06009177 memset(priv->nick, 0, sizeof(priv->nick));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009178 memcpy(priv->nick, extra, wrqu->data.length);
James Ketrenos43f66a62005-03-25 12:31:53 -06009179 IPW_DEBUG_TRACE("<<\n");
Zhu Yi46441512006-01-24 16:37:59 +08009180 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009181 return 0;
9182
9183}
9184
Jeff Garzikbf794512005-07-31 13:07:26 -04009185static int ipw_wx_get_nick(struct net_device *dev,
9186 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009187 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009188{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009189 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009190 IPW_DEBUG_WX("Getting nick\n");
Zhu Yi46441512006-01-24 16:37:59 +08009191 mutex_lock(&priv->mutex);
Jean Tourrilhes919ee6d2006-08-29 18:01:40 -07009192 wrqu->data.length = strlen(priv->nick);
James Ketrenos43f66a62005-03-25 12:31:53 -06009193 memcpy(extra, priv->nick, wrqu->data.length);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009194 wrqu->data.flags = 1; /* active */
Zhu Yi46441512006-01-24 16:37:59 +08009195 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009196 return 0;
9197}
9198
Olivier Hochreutiner651be262006-03-08 03:13:55 +08009199static int ipw_wx_set_sens(struct net_device *dev,
9200 struct iw_request_info *info,
9201 union iwreq_data *wrqu, char *extra)
9202{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009203 struct ipw_priv *priv = libipw_priv(dev);
Olivier Hochreutiner651be262006-03-08 03:13:55 +08009204 int err = 0;
9205
9206 IPW_DEBUG_WX("Setting roaming threshold to %d\n", wrqu->sens.value);
9207 IPW_DEBUG_WX("Setting disassociate threshold to %d\n", 3*wrqu->sens.value);
9208 mutex_lock(&priv->mutex);
9209
9210 if (wrqu->sens.fixed == 0)
9211 {
9212 priv->roaming_threshold = IPW_MB_ROAMING_THRESHOLD_DEFAULT;
9213 priv->disassociate_threshold = IPW_MB_DISASSOCIATE_THRESHOLD_DEFAULT;
9214 goto out;
9215 }
9216 if ((wrqu->sens.value > IPW_MB_ROAMING_THRESHOLD_MAX) ||
9217 (wrqu->sens.value < IPW_MB_ROAMING_THRESHOLD_MIN)) {
9218 err = -EINVAL;
9219 goto out;
9220 }
9221
9222 priv->roaming_threshold = wrqu->sens.value;
9223 priv->disassociate_threshold = 3*wrqu->sens.value;
9224 out:
9225 mutex_unlock(&priv->mutex);
9226 return err;
9227}
9228
9229static int ipw_wx_get_sens(struct net_device *dev,
9230 struct iw_request_info *info,
9231 union iwreq_data *wrqu, char *extra)
9232{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009233 struct ipw_priv *priv = libipw_priv(dev);
Olivier Hochreutiner651be262006-03-08 03:13:55 +08009234 mutex_lock(&priv->mutex);
9235 wrqu->sens.fixed = 1;
9236 wrqu->sens.value = priv->roaming_threshold;
9237 mutex_unlock(&priv->mutex);
9238
Frans Pop9fd1ea42010-03-24 19:46:31 +01009239 IPW_DEBUG_WX("GET roaming threshold -> %s %d\n",
Olivier Hochreutiner651be262006-03-08 03:13:55 +08009240 wrqu->power.disabled ? "OFF" : "ON", wrqu->power.value);
9241
9242 return 0;
9243}
9244
James Ketrenos43f66a62005-03-25 12:31:53 -06009245static int ipw_wx_set_rate(struct net_device *dev,
9246 struct iw_request_info *info,
9247 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009248{
James Ketrenosea2b26e2005-08-24 21:25:16 -05009249 /* TODO: We should use semaphores or locks for access to priv */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009250 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009251 u32 target_rate = wrqu->bitrate.value;
9252 u32 fixed, mask;
9253
9254 /* value = -1, fixed = 0 means auto only, so we should use all rates offered by AP */
9255 /* value = X, fixed = 1 means only rate X */
9256 /* value = X, fixed = 0 means all rates lower equal X */
9257
9258 if (target_rate == -1) {
9259 fixed = 0;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009260 mask = LIBIPW_DEFAULT_RATES_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009261 /* Now we should reassociate */
9262 goto apply;
9263 }
9264
9265 mask = 0;
9266 fixed = wrqu->bitrate.fixed;
9267
9268 if (target_rate == 1000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009269 mask |= LIBIPW_CCK_RATE_1MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009270 if (target_rate == 1000000)
9271 goto apply;
9272
9273 if (target_rate == 2000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009274 mask |= LIBIPW_CCK_RATE_2MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009275 if (target_rate == 2000000)
9276 goto apply;
9277
9278 if (target_rate == 5500000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009279 mask |= LIBIPW_CCK_RATE_5MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009280 if (target_rate == 5500000)
9281 goto apply;
9282
9283 if (target_rate == 6000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009284 mask |= LIBIPW_OFDM_RATE_6MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009285 if (target_rate == 6000000)
9286 goto apply;
9287
9288 if (target_rate == 9000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009289 mask |= LIBIPW_OFDM_RATE_9MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009290 if (target_rate == 9000000)
9291 goto apply;
9292
9293 if (target_rate == 11000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009294 mask |= LIBIPW_CCK_RATE_11MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009295 if (target_rate == 11000000)
9296 goto apply;
9297
9298 if (target_rate == 12000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009299 mask |= LIBIPW_OFDM_RATE_12MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009300 if (target_rate == 12000000)
9301 goto apply;
9302
9303 if (target_rate == 18000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009304 mask |= LIBIPW_OFDM_RATE_18MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009305 if (target_rate == 18000000)
9306 goto apply;
9307
9308 if (target_rate == 24000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009309 mask |= LIBIPW_OFDM_RATE_24MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009310 if (target_rate == 24000000)
9311 goto apply;
9312
9313 if (target_rate == 36000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009314 mask |= LIBIPW_OFDM_RATE_36MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009315 if (target_rate == 36000000)
9316 goto apply;
9317
9318 if (target_rate == 48000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009319 mask |= LIBIPW_OFDM_RATE_48MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009320 if (target_rate == 48000000)
9321 goto apply;
9322
9323 if (target_rate == 54000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009324 mask |= LIBIPW_OFDM_RATE_54MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009325 if (target_rate == 54000000)
9326 goto apply;
9327
9328 IPW_DEBUG_WX("invalid rate specified, returning error\n");
9329 return -EINVAL;
9330
9331 apply:
9332 IPW_DEBUG_WX("Setting rate mask to 0x%08X [%s]\n",
9333 mask, fixed ? "fixed" : "sub-rates");
Zhu Yi46441512006-01-24 16:37:59 +08009334 mutex_lock(&priv->mutex);
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009335 if (mask == LIBIPW_DEFAULT_RATES_MASK) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05009336 priv->config &= ~CFG_FIXED_RATE;
James Ketrenosb095c382005-08-24 22:04:42 -05009337 ipw_set_fixed_rate(priv, priv->ieee->mode);
9338 } else
James Ketrenosea2b26e2005-08-24 21:25:16 -05009339 priv->config |= CFG_FIXED_RATE;
9340
James Ketrenosc848d0a2005-08-24 21:56:24 -05009341 if (priv->rates_mask == mask) {
9342 IPW_DEBUG_WX("Mask set to current mask.\n");
Zhu Yi46441512006-01-24 16:37:59 +08009343 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009344 return 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009345 }
9346
James Ketrenosc848d0a2005-08-24 21:56:24 -05009347 priv->rates_mask = mask;
9348
9349 /* Network configuration changed -- force [re]association */
9350 IPW_DEBUG_ASSOC("[re]association triggered due to rates change.\n");
9351 if (!ipw_disassociate(priv))
9352 ipw_associate(priv);
9353
Zhu Yi46441512006-01-24 16:37:59 +08009354 mutex_unlock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009355 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009356}
9357
Jeff Garzikbf794512005-07-31 13:07:26 -04009358static int ipw_wx_get_rate(struct net_device *dev,
9359 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009360 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009361{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009362 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009363 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009364 wrqu->bitrate.value = priv->last_rate;
Zhu Yi455936c2006-04-13 17:20:05 +08009365 wrqu->bitrate.fixed = (priv->config & CFG_FIXED_RATE) ? 1 : 0;
Zhu Yi46441512006-01-24 16:37:59 +08009366 mutex_unlock(&priv->mutex);
Frans Pop9fd1ea42010-03-24 19:46:31 +01009367 IPW_DEBUG_WX("GET Rate -> %d\n", wrqu->bitrate.value);
James Ketrenos43f66a62005-03-25 12:31:53 -06009368 return 0;
9369}
9370
Jeff Garzikbf794512005-07-31 13:07:26 -04009371static int ipw_wx_set_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);
Zhu Yiea8862d2007-01-11 17:32:54 +08009377 if (wrqu->rts.disabled || !wrqu->rts.fixed)
James Ketrenos43f66a62005-03-25 12:31:53 -06009378 priv->rts_threshold = DEFAULT_RTS_THRESHOLD;
9379 else {
9380 if (wrqu->rts.value < MIN_RTS_THRESHOLD ||
James Ketrenosc848d0a2005-08-24 21:56:24 -05009381 wrqu->rts.value > MAX_RTS_THRESHOLD) {
Zhu Yi46441512006-01-24 16:37:59 +08009382 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009383 return -EINVAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009384 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009385 priv->rts_threshold = wrqu->rts.value;
9386 }
9387
9388 ipw_send_rts_threshold(priv, priv->rts_threshold);
Zhu Yi46441512006-01-24 16:37:59 +08009389 mutex_unlock(&priv->mutex);
Frans Pop9fd1ea42010-03-24 19:46:31 +01009390 IPW_DEBUG_WX("SET RTS Threshold -> %d\n", priv->rts_threshold);
James Ketrenos43f66a62005-03-25 12:31:53 -06009391 return 0;
9392}
9393
Jeff Garzikbf794512005-07-31 13:07:26 -04009394static int ipw_wx_get_rts(struct net_device *dev,
9395 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009396 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009397{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009398 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009399 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009400 wrqu->rts.value = priv->rts_threshold;
9401 wrqu->rts.fixed = 0; /* no auto select */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009402 wrqu->rts.disabled = (wrqu->rts.value == DEFAULT_RTS_THRESHOLD);
Zhu Yi46441512006-01-24 16:37:59 +08009403 mutex_unlock(&priv->mutex);
Frans Pop9fd1ea42010-03-24 19:46:31 +01009404 IPW_DEBUG_WX("GET RTS Threshold -> %d\n", wrqu->rts.value);
James Ketrenos43f66a62005-03-25 12:31:53 -06009405 return 0;
9406}
9407
Jeff Garzikbf794512005-07-31 13:07:26 -04009408static int ipw_wx_set_txpow(struct net_device *dev,
9409 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009410 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009411{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009412 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009413 int err = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009414
Zhu Yi46441512006-01-24 16:37:59 +08009415 mutex_lock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009416 if (ipw_radio_kill_sw(priv, wrqu->power.disabled)) {
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009417 err = -EINPROGRESS;
9418 goto out;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009419 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009420
James Ketrenosb095c382005-08-24 22:04:42 -05009421 if (!wrqu->power.fixed)
9422 wrqu->power.value = IPW_TX_POWER_DEFAULT;
James Ketrenos43f66a62005-03-25 12:31:53 -06009423
James Ketrenosc848d0a2005-08-24 21:56:24 -05009424 if (wrqu->power.flags != IW_TXPOW_DBM) {
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009425 err = -EINVAL;
9426 goto out;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009427 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009428
James Ketrenosb095c382005-08-24 22:04:42 -05009429 if ((wrqu->power.value > IPW_TX_POWER_MAX) ||
James Ketrenosafbf30a2005-08-25 00:05:33 -05009430 (wrqu->power.value < IPW_TX_POWER_MIN)) {
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009431 err = -EINVAL;
9432 goto out;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009433 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009434
9435 priv->tx_power = wrqu->power.value;
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009436 err = ipw_set_tx_power(priv);
9437 out:
Zhu Yi46441512006-01-24 16:37:59 +08009438 mutex_unlock(&priv->mutex);
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009439 return err;
James Ketrenos43f66a62005-03-25 12:31:53 -06009440}
9441
Jeff Garzikbf794512005-07-31 13:07:26 -04009442static int ipw_wx_get_txpow(struct net_device *dev,
9443 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009444 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009445{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009446 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009447 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009448 wrqu->power.value = priv->tx_power;
9449 wrqu->power.fixed = 1;
9450 wrqu->power.flags = IW_TXPOW_DBM;
9451 wrqu->power.disabled = (priv->status & STATUS_RF_KILL_MASK) ? 1 : 0;
Zhu Yi46441512006-01-24 16:37:59 +08009452 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009453
Frans Pop9fd1ea42010-03-24 19:46:31 +01009454 IPW_DEBUG_WX("GET TX Power -> %s %d\n",
Zhu Yi22501c82005-08-11 10:49:17 +08009455 wrqu->power.disabled ? "OFF" : "ON", wrqu->power.value);
James Ketrenos43f66a62005-03-25 12:31:53 -06009456
9457 return 0;
9458}
9459
Jeff Garzikbf794512005-07-31 13:07:26 -04009460static int ipw_wx_set_frag(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009461 struct iw_request_info *info,
9462 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009463{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009464 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009465 mutex_lock(&priv->mutex);
Zhu Yiea8862d2007-01-11 17:32:54 +08009466 if (wrqu->frag.disabled || !wrqu->frag.fixed)
James Ketrenos43f66a62005-03-25 12:31:53 -06009467 priv->ieee->fts = DEFAULT_FTS;
9468 else {
9469 if (wrqu->frag.value < MIN_FRAG_THRESHOLD ||
James Ketrenosb095c382005-08-24 22:04:42 -05009470 wrqu->frag.value > MAX_FRAG_THRESHOLD) {
Zhu Yi46441512006-01-24 16:37:59 +08009471 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009472 return -EINVAL;
James Ketrenosb095c382005-08-24 22:04:42 -05009473 }
Jeff Garzikbf794512005-07-31 13:07:26 -04009474
James Ketrenos43f66a62005-03-25 12:31:53 -06009475 priv->ieee->fts = wrqu->frag.value & ~0x1;
9476 }
9477
9478 ipw_send_frag_threshold(priv, wrqu->frag.value);
Zhu Yi46441512006-01-24 16:37:59 +08009479 mutex_unlock(&priv->mutex);
Frans Pop9fd1ea42010-03-24 19:46:31 +01009480 IPW_DEBUG_WX("SET Frag Threshold -> %d\n", wrqu->frag.value);
James Ketrenos43f66a62005-03-25 12:31:53 -06009481 return 0;
9482}
9483
Jeff Garzikbf794512005-07-31 13:07:26 -04009484static int ipw_wx_get_frag(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009485 struct iw_request_info *info,
9486 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009487{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009488 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009489 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009490 wrqu->frag.value = priv->ieee->fts;
9491 wrqu->frag.fixed = 0; /* no auto select */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009492 wrqu->frag.disabled = (wrqu->frag.value == DEFAULT_FTS);
Zhu Yi46441512006-01-24 16:37:59 +08009493 mutex_unlock(&priv->mutex);
Frans Pop9fd1ea42010-03-24 19:46:31 +01009494 IPW_DEBUG_WX("GET Frag Threshold -> %d\n", wrqu->frag.value);
James Ketrenos43f66a62005-03-25 12:31:53 -06009495
9496 return 0;
9497}
9498
Jeff Garzikbf794512005-07-31 13:07:26 -04009499static int ipw_wx_set_retry(struct net_device *dev,
9500 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009501 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009502{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009503 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009504
9505 if (wrqu->retry.flags & IW_RETRY_LIFETIME || wrqu->retry.disabled)
9506 return -EINVAL;
9507
9508 if (!(wrqu->retry.flags & IW_RETRY_LIMIT))
9509 return 0;
9510
Zhu Yid5f7ac22006-08-21 11:38:17 +08009511 if (wrqu->retry.value < 0 || wrqu->retry.value >= 255)
James Ketrenosafbf30a2005-08-25 00:05:33 -05009512 return -EINVAL;
9513
Zhu Yi46441512006-01-24 16:37:59 +08009514 mutex_lock(&priv->mutex);
Jean Tourrilhes919ee6d2006-08-29 18:01:40 -07009515 if (wrqu->retry.flags & IW_RETRY_SHORT)
James Ketrenosafbf30a2005-08-25 00:05:33 -05009516 priv->short_retry_limit = (u8) wrqu->retry.value;
Jean Tourrilhes919ee6d2006-08-29 18:01:40 -07009517 else if (wrqu->retry.flags & IW_RETRY_LONG)
James Ketrenosafbf30a2005-08-25 00:05:33 -05009518 priv->long_retry_limit = (u8) wrqu->retry.value;
9519 else {
9520 priv->short_retry_limit = (u8) wrqu->retry.value;
9521 priv->long_retry_limit = (u8) wrqu->retry.value;
9522 }
9523
9524 ipw_send_retry_limit(priv, priv->short_retry_limit,
9525 priv->long_retry_limit);
Zhu Yi46441512006-01-24 16:37:59 +08009526 mutex_unlock(&priv->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009527 IPW_DEBUG_WX("SET retry limit -> short:%d long:%d\n",
9528 priv->short_retry_limit, priv->long_retry_limit);
9529 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009530}
9531
Jeff Garzikbf794512005-07-31 13:07:26 -04009532static int ipw_wx_get_retry(struct net_device *dev,
9533 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009534 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009535{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009536 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009537
Zhu Yi46441512006-01-24 16:37:59 +08009538 mutex_lock(&priv->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009539 wrqu->retry.disabled = 0;
9540
9541 if ((wrqu->retry.flags & IW_RETRY_TYPE) == IW_RETRY_LIFETIME) {
Zhu Yi46441512006-01-24 16:37:59 +08009542 mutex_unlock(&priv->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009543 return -EINVAL;
9544 }
9545
Jean Tourrilhes919ee6d2006-08-29 18:01:40 -07009546 if (wrqu->retry.flags & IW_RETRY_LONG) {
9547 wrqu->retry.flags = IW_RETRY_LIMIT | IW_RETRY_LONG;
James Ketrenosafbf30a2005-08-25 00:05:33 -05009548 wrqu->retry.value = priv->long_retry_limit;
Jean Tourrilhes919ee6d2006-08-29 18:01:40 -07009549 } else if (wrqu->retry.flags & IW_RETRY_SHORT) {
9550 wrqu->retry.flags = IW_RETRY_LIMIT | IW_RETRY_SHORT;
James Ketrenosafbf30a2005-08-25 00:05:33 -05009551 wrqu->retry.value = priv->short_retry_limit;
9552 } else {
9553 wrqu->retry.flags = IW_RETRY_LIMIT;
9554 wrqu->retry.value = priv->short_retry_limit;
9555 }
Zhu Yi46441512006-01-24 16:37:59 +08009556 mutex_unlock(&priv->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009557
Frans Pop9fd1ea42010-03-24 19:46:31 +01009558 IPW_DEBUG_WX("GET retry -> %d\n", wrqu->retry.value);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009559
9560 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009561}
9562
Jeff Garzikbf794512005-07-31 13:07:26 -04009563static int ipw_wx_set_scan(struct net_device *dev,
9564 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009565 union iwreq_data *wrqu, char *extra)
9566{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009567 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi094c4d22006-08-21 11:39:03 +08009568 struct iw_scan_req *req = (struct iw_scan_req *)extra;
Dan Williamsea177302008-06-02 17:51:23 -04009569 struct delayed_work *work = NULL;
Zhu Yi094c4d22006-08-21 11:39:03 +08009570
Dan Williams0b531672007-10-09 13:55:24 -04009571 mutex_lock(&priv->mutex);
Dan Williamsea177302008-06-02 17:51:23 -04009572
Dan Williams0b531672007-10-09 13:55:24 -04009573 priv->user_requested_scan = 1;
Dan Williams0b531672007-10-09 13:55:24 -04009574
Zhu Yi094c4d22006-08-21 11:39:03 +08009575 if (wrqu->data.length == sizeof(struct iw_scan_req)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05009576 if (wrqu->data.flags & IW_SCAN_THIS_ESSID) {
Dan Williamsea177302008-06-02 17:51:23 -04009577 int len = min((int)req->essid_len,
9578 (int)sizeof(priv->direct_scan_ssid));
9579 memcpy(priv->direct_scan_ssid, req->essid, len);
9580 priv->direct_scan_ssid_len = len;
9581 work = &priv->request_direct_scan;
9582 } else if (req->scan_type == IW_SCAN_TYPE_PASSIVE) {
9583 work = &priv->request_passive_scan;
James Ketrenosafbf30a2005-08-25 00:05:33 -05009584 }
Dan Williamsea177302008-06-02 17:51:23 -04009585 } else {
9586 /* Normal active broadcast scan */
9587 work = &priv->request_scan;
James Ketrenosafbf30a2005-08-25 00:05:33 -05009588 }
James Ketrenos8935f392005-10-05 15:59:08 -05009589
Dan Williamsea177302008-06-02 17:51:23 -04009590 mutex_unlock(&priv->mutex);
9591
James Ketrenos43f66a62005-03-25 12:31:53 -06009592 IPW_DEBUG_WX("Start scan\n");
James Ketrenosb095c382005-08-24 22:04:42 -05009593
Dan Williamsea177302008-06-02 17:51:23 -04009594 queue_delayed_work(priv->workqueue, work, 0);
James Ketrenosb095c382005-08-24 22:04:42 -05009595
James Ketrenos43f66a62005-03-25 12:31:53 -06009596 return 0;
9597}
9598
Jeff Garzikbf794512005-07-31 13:07:26 -04009599static int ipw_wx_get_scan(struct net_device *dev,
9600 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009601 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009602{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009603 struct ipw_priv *priv = libipw_priv(dev);
9604 return libipw_wx_get_scan(priv->ieee, info, wrqu, extra);
James Ketrenos43f66a62005-03-25 12:31:53 -06009605}
9606
Jeff Garzikbf794512005-07-31 13:07:26 -04009607static int ipw_wx_set_encode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009608 struct iw_request_info *info,
9609 union iwreq_data *wrqu, char *key)
James Ketrenos43f66a62005-03-25 12:31:53 -06009610{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009611 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009612 int ret;
Hong Liucaeff812005-08-05 17:25:50 +08009613 u32 cap = priv->capability;
James Ketrenosafbf30a2005-08-25 00:05:33 -05009614
Zhu Yi46441512006-01-24 16:37:59 +08009615 mutex_lock(&priv->mutex);
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009616 ret = libipw_wx_set_encode(priv->ieee, info, wrqu, key);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009617
Hong Liucaeff812005-08-05 17:25:50 +08009618 /* In IBSS mode, we need to notify the firmware to update
9619 * the beacon info after we changed the capability. */
9620 if (cap != priv->capability &&
9621 priv->ieee->iw_mode == IW_MODE_ADHOC &&
9622 priv->status & STATUS_ASSOCIATED)
9623 ipw_disassociate(priv);
9624
Zhu Yi46441512006-01-24 16:37:59 +08009625 mutex_unlock(&priv->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009626 return ret;
James Ketrenos43f66a62005-03-25 12:31:53 -06009627}
9628
Jeff Garzikbf794512005-07-31 13:07:26 -04009629static int ipw_wx_get_encode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009630 struct iw_request_info *info,
9631 union iwreq_data *wrqu, char *key)
James Ketrenos43f66a62005-03-25 12:31:53 -06009632{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009633 struct ipw_priv *priv = libipw_priv(dev);
9634 return libipw_wx_get_encode(priv->ieee, info, wrqu, key);
James Ketrenos43f66a62005-03-25 12:31:53 -06009635}
9636
Jeff Garzikbf794512005-07-31 13:07:26 -04009637static int ipw_wx_set_power(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009638 struct iw_request_info *info,
9639 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009640{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009641 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009642 int err;
Zhu Yi46441512006-01-24 16:37:59 +08009643 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009644 if (wrqu->power.disabled) {
9645 priv->power_mode = IPW_POWER_LEVEL(priv->power_mode);
9646 err = ipw_send_power_mode(priv, IPW_POWER_MODE_CAM);
9647 if (err) {
9648 IPW_DEBUG_WX("failed setting power mode.\n");
Zhu Yi46441512006-01-24 16:37:59 +08009649 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009650 return err;
9651 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009652 IPW_DEBUG_WX("SET Power Management Mode -> off\n");
Zhu Yi46441512006-01-24 16:37:59 +08009653 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009654 return 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04009655 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009656
9657 switch (wrqu->power.flags & IW_POWER_MODE) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009658 case IW_POWER_ON: /* If not specified */
9659 case IW_POWER_MODE: /* If set all mask */
Jean Delvarec03983a2007-10-19 23:22:55 +02009660 case IW_POWER_ALL_R: /* If explicitly state all */
James Ketrenos43f66a62005-03-25 12:31:53 -06009661 break;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009662 default: /* Otherwise we don't support it */
James Ketrenos43f66a62005-03-25 12:31:53 -06009663 IPW_DEBUG_WX("SET PM Mode: %X not supported.\n",
9664 wrqu->power.flags);
Zhu Yi46441512006-01-24 16:37:59 +08009665 mutex_unlock(&priv->mutex);
Jeff Garzikbf794512005-07-31 13:07:26 -04009666 return -EOPNOTSUPP;
James Ketrenos43f66a62005-03-25 12:31:53 -06009667 }
Jeff Garzikbf794512005-07-31 13:07:26 -04009668
James Ketrenos43f66a62005-03-25 12:31:53 -06009669 /* If the user hasn't specified a power management mode yet, default
9670 * to BATTERY */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009671 if (IPW_POWER_LEVEL(priv->power_mode) == IPW_POWER_AC)
James Ketrenos43f66a62005-03-25 12:31:53 -06009672 priv->power_mode = IPW_POWER_ENABLED | IPW_POWER_BATTERY;
Jeff Garzikbf794512005-07-31 13:07:26 -04009673 else
James Ketrenos43f66a62005-03-25 12:31:53 -06009674 priv->power_mode = IPW_POWER_ENABLED | priv->power_mode;
Zhu Yi4e157f02007-07-12 16:09:32 +08009675
James Ketrenos43f66a62005-03-25 12:31:53 -06009676 err = ipw_send_power_mode(priv, IPW_POWER_LEVEL(priv->power_mode));
9677 if (err) {
9678 IPW_DEBUG_WX("failed setting power mode.\n");
Zhu Yi46441512006-01-24 16:37:59 +08009679 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009680 return err;
9681 }
9682
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009683 IPW_DEBUG_WX("SET Power Management Mode -> 0x%02X\n", priv->power_mode);
Zhu Yi46441512006-01-24 16:37:59 +08009684 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009685 return 0;
9686}
9687
Jeff Garzikbf794512005-07-31 13:07:26 -04009688static int ipw_wx_get_power(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009689 struct iw_request_info *info,
9690 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009691{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009692 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009693 mutex_lock(&priv->mutex);
James Ketrenosa613bff2005-08-24 21:43:11 -05009694 if (!(priv->power_mode & IPW_POWER_ENABLED))
James Ketrenos43f66a62005-03-25 12:31:53 -06009695 wrqu->power.disabled = 1;
James Ketrenosa613bff2005-08-24 21:43:11 -05009696 else
James Ketrenos43f66a62005-03-25 12:31:53 -06009697 wrqu->power.disabled = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009698
Zhu Yi46441512006-01-24 16:37:59 +08009699 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009700 IPW_DEBUG_WX("GET Power Management Mode -> %02X\n", priv->power_mode);
Jeff Garzikbf794512005-07-31 13:07:26 -04009701
James Ketrenos43f66a62005-03-25 12:31:53 -06009702 return 0;
9703}
9704
Jeff Garzikbf794512005-07-31 13:07:26 -04009705static int ipw_wx_set_powermode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009706 struct iw_request_info *info,
9707 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009708{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009709 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009710 int mode = *(int *)extra;
9711 int err;
Zhu Yi4e157f02007-07-12 16:09:32 +08009712
Zhu Yi46441512006-01-24 16:37:59 +08009713 mutex_lock(&priv->mutex);
Zhu Yi4e157f02007-07-12 16:09:32 +08009714 if ((mode < 1) || (mode > IPW_POWER_LIMIT))
James Ketrenos43f66a62005-03-25 12:31:53 -06009715 mode = IPW_POWER_AC;
Jeff Garzikbf794512005-07-31 13:07:26 -04009716
Zhu Yi4e157f02007-07-12 16:09:32 +08009717 if (IPW_POWER_LEVEL(priv->power_mode) != mode) {
James Ketrenos43f66a62005-03-25 12:31:53 -06009718 err = ipw_send_power_mode(priv, mode);
James Ketrenos43f66a62005-03-25 12:31:53 -06009719 if (err) {
9720 IPW_DEBUG_WX("failed setting power mode.\n");
Zhu Yi46441512006-01-24 16:37:59 +08009721 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009722 return err;
9723 }
Zhu Yi4e157f02007-07-12 16:09:32 +08009724 priv->power_mode = IPW_POWER_ENABLED | mode;
James Ketrenos43f66a62005-03-25 12:31:53 -06009725 }
Zhu Yi46441512006-01-24 16:37:59 +08009726 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009727 return 0;
9728}
9729
9730#define MAX_WX_STRING 80
Jeff Garzikbf794512005-07-31 13:07:26 -04009731static int ipw_wx_get_powermode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009732 struct iw_request_info *info,
9733 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009734{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009735 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009736 int level = IPW_POWER_LEVEL(priv->power_mode);
9737 char *p = extra;
9738
9739 p += snprintf(p, MAX_WX_STRING, "Power save level: %d ", level);
9740
9741 switch (level) {
9742 case IPW_POWER_AC:
9743 p += snprintf(p, MAX_WX_STRING - (p - extra), "(AC)");
9744 break;
9745 case IPW_POWER_BATTERY:
9746 p += snprintf(p, MAX_WX_STRING - (p - extra), "(BATTERY)");
9747 break;
9748 default:
9749 p += snprintf(p, MAX_WX_STRING - (p - extra),
Jeff Garzikbf794512005-07-31 13:07:26 -04009750 "(Timeout %dms, Period %dms)",
James Ketrenos43f66a62005-03-25 12:31:53 -06009751 timeout_duration[level - 1] / 1000,
9752 period_duration[level - 1] / 1000);
9753 }
9754
9755 if (!(priv->power_mode & IPW_POWER_ENABLED))
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009756 p += snprintf(p, MAX_WX_STRING - (p - extra), " OFF");
James Ketrenos43f66a62005-03-25 12:31:53 -06009757
9758 wrqu->data.length = p - extra + 1;
9759
9760 return 0;
9761}
9762
9763static int ipw_wx_set_wireless_mode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009764 struct iw_request_info *info,
9765 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009766{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009767 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009768 int mode = *(int *)extra;
9769 u8 band = 0, modulation = 0;
9770
9771 if (mode == 0 || mode & ~IEEE_MODE_MASK) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009772 IPW_WARNING("Attempt to set invalid wireless mode: %d\n", mode);
James Ketrenos43f66a62005-03-25 12:31:53 -06009773 return -EINVAL;
9774 }
Zhu Yi46441512006-01-24 16:37:59 +08009775 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009776 if (priv->adapter == IPW_2915ABG) {
James Ketrenosa33a1982005-09-14 14:28:59 -05009777 priv->ieee->abg_true = 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06009778 if (mode & IEEE_A) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009779 band |= LIBIPW_52GHZ_BAND;
9780 modulation |= LIBIPW_OFDM_MODULATION;
James Ketrenos43f66a62005-03-25 12:31:53 -06009781 } else
James Ketrenosa33a1982005-09-14 14:28:59 -05009782 priv->ieee->abg_true = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009783 } else {
9784 if (mode & IEEE_A) {
9785 IPW_WARNING("Attempt to set 2200BG into "
9786 "802.11a mode\n");
Zhu Yi46441512006-01-24 16:37:59 +08009787 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009788 return -EINVAL;
9789 }
9790
James Ketrenosa33a1982005-09-14 14:28:59 -05009791 priv->ieee->abg_true = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009792 }
9793
9794 if (mode & IEEE_B) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009795 band |= LIBIPW_24GHZ_BAND;
9796 modulation |= LIBIPW_CCK_MODULATION;
James Ketrenos43f66a62005-03-25 12:31:53 -06009797 } else
James Ketrenosa33a1982005-09-14 14:28:59 -05009798 priv->ieee->abg_true = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04009799
James Ketrenos43f66a62005-03-25 12:31:53 -06009800 if (mode & IEEE_G) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009801 band |= LIBIPW_24GHZ_BAND;
9802 modulation |= LIBIPW_OFDM_MODULATION;
James Ketrenos43f66a62005-03-25 12:31:53 -06009803 } else
James Ketrenosa33a1982005-09-14 14:28:59 -05009804 priv->ieee->abg_true = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009805
9806 priv->ieee->mode = mode;
9807 priv->ieee->freq_band = band;
9808 priv->ieee->modulation = modulation;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009809 init_supported_rates(priv, &priv->rates);
James Ketrenos43f66a62005-03-25 12:31:53 -06009810
James Ketrenosc848d0a2005-08-24 21:56:24 -05009811 /* Network configuration changed -- force [re]association */
9812 IPW_DEBUG_ASSOC("[re]association triggered due to mode change.\n");
9813 if (!ipw_disassociate(priv)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06009814 ipw_send_supported_rates(priv, &priv->rates);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009815 ipw_associate(priv);
9816 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009817
James Ketrenosa613bff2005-08-24 21:43:11 -05009818 /* Update the band LEDs */
9819 ipw_led_band_on(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06009820
Jeff Garzikbf794512005-07-31 13:07:26 -04009821 IPW_DEBUG_WX("PRIV SET MODE: %c%c%c\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06009822 mode & IEEE_A ? 'a' : '.',
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009823 mode & IEEE_B ? 'b' : '.', mode & IEEE_G ? 'g' : '.');
Zhu Yi46441512006-01-24 16:37:59 +08009824 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009825 return 0;
9826}
9827
9828static int ipw_wx_get_wireless_mode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009829 struct iw_request_info *info,
9830 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009831{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009832 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009833 mutex_lock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009834 switch (priv->ieee->mode) {
9835 case IEEE_A:
James Ketrenos43f66a62005-03-25 12:31:53 -06009836 strncpy(extra, "802.11a (1)", MAX_WX_STRING);
9837 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009838 case IEEE_B:
9839 strncpy(extra, "802.11b (2)", MAX_WX_STRING);
9840 break;
9841 case IEEE_A | IEEE_B:
9842 strncpy(extra, "802.11ab (3)", MAX_WX_STRING);
9843 break;
9844 case IEEE_G:
9845 strncpy(extra, "802.11g (4)", MAX_WX_STRING);
9846 break;
9847 case IEEE_A | IEEE_G:
9848 strncpy(extra, "802.11ag (5)", MAX_WX_STRING);
9849 break;
9850 case IEEE_B | IEEE_G:
9851 strncpy(extra, "802.11bg (6)", MAX_WX_STRING);
9852 break;
9853 case IEEE_A | IEEE_B | IEEE_G:
9854 strncpy(extra, "802.11abg (7)", MAX_WX_STRING);
9855 break;
9856 default:
9857 strncpy(extra, "unknown", MAX_WX_STRING);
James Ketrenos43f66a62005-03-25 12:31:53 -06009858 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04009859 }
9860
James Ketrenos43f66a62005-03-25 12:31:53 -06009861 IPW_DEBUG_WX("PRIV GET MODE: %s\n", extra);
9862
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009863 wrqu->data.length = strlen(extra) + 1;
Zhu Yi46441512006-01-24 16:37:59 +08009864 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009865
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009866 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009867}
9868
James Ketrenosea2b26e2005-08-24 21:25:16 -05009869static int ipw_wx_set_preamble(struct net_device *dev,
9870 struct iw_request_info *info,
9871 union iwreq_data *wrqu, char *extra)
9872{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009873 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009874 int mode = *(int *)extra;
Zhu Yi46441512006-01-24 16:37:59 +08009875 mutex_lock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009876 /* Switching from SHORT -> LONG requires a disassociation */
9877 if (mode == 1) {
9878 if (!(priv->config & CFG_PREAMBLE_LONG)) {
9879 priv->config |= CFG_PREAMBLE_LONG;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009880
9881 /* Network configuration changed -- force [re]association */
9882 IPW_DEBUG_ASSOC
9883 ("[re]association triggered due to preamble change.\n");
9884 if (!ipw_disassociate(priv))
9885 ipw_associate(priv);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009886 }
9887 goto done;
9888 }
9889
9890 if (mode == 0) {
9891 priv->config &= ~CFG_PREAMBLE_LONG;
9892 goto done;
9893 }
Zhu Yi46441512006-01-24 16:37:59 +08009894 mutex_unlock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009895 return -EINVAL;
9896
9897 done:
Zhu Yi46441512006-01-24 16:37:59 +08009898 mutex_unlock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009899 return 0;
9900}
9901
9902static int ipw_wx_get_preamble(struct net_device *dev,
9903 struct iw_request_info *info,
9904 union iwreq_data *wrqu, char *extra)
9905{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009906 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009907 mutex_lock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009908 if (priv->config & CFG_PREAMBLE_LONG)
9909 snprintf(wrqu->name, IFNAMSIZ, "long (1)");
9910 else
9911 snprintf(wrqu->name, IFNAMSIZ, "auto (0)");
Zhu Yi46441512006-01-24 16:37:59 +08009912 mutex_unlock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009913 return 0;
9914}
9915
James Ketrenosb095c382005-08-24 22:04:42 -05009916#ifdef CONFIG_IPW2200_MONITOR
James Ketrenosea2b26e2005-08-24 21:25:16 -05009917static int ipw_wx_set_monitor(struct net_device *dev,
Jeff Garzikbf794512005-07-31 13:07:26 -04009918 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009919 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009920{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009921 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009922 int *parms = (int *)extra;
9923 int enable = (parms[0] > 0);
Zhu Yi46441512006-01-24 16:37:59 +08009924 mutex_lock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009925 IPW_DEBUG_WX("SET MONITOR: %d %d\n", enable, parms[1]);
James Ketrenos43f66a62005-03-25 12:31:53 -06009926 if (enable) {
9927 if (priv->ieee->iw_mode != IW_MODE_MONITOR) {
Zhu Yi459d4082006-04-13 17:21:00 +08009928#ifdef CONFIG_IPW2200_RADIOTAP
Mike Kershaw24a47db2005-08-26 00:41:54 -05009929 priv->net_dev->type = ARPHRD_IEEE80211_RADIOTAP;
9930#else
James Ketrenos43f66a62005-03-25 12:31:53 -06009931 priv->net_dev->type = ARPHRD_IEEE80211;
Mike Kershaw24a47db2005-08-26 00:41:54 -05009932#endif
James Ketrenosa613bff2005-08-24 21:43:11 -05009933 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06009934 }
Jeff Garzikbf794512005-07-31 13:07:26 -04009935
James Ketrenos43f66a62005-03-25 12:31:53 -06009936 ipw_set_channel(priv, parms[1]);
9937 } else {
James Ketrenosc848d0a2005-08-24 21:56:24 -05009938 if (priv->ieee->iw_mode != IW_MODE_MONITOR) {
Zhu Yi46441512006-01-24 16:37:59 +08009939 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009940 return 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009941 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009942 priv->net_dev->type = ARPHRD_ETHER;
James Ketrenosa613bff2005-08-24 21:43:11 -05009943 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06009944 }
Zhu Yi46441512006-01-24 16:37:59 +08009945 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009946 return 0;
9947}
9948
Pavel Machek67fd6b42006-07-11 15:34:05 +02009949#endif /* CONFIG_IPW2200_MONITOR */
James Ketrenosb095c382005-08-24 22:04:42 -05009950
Jeff Garzikbf794512005-07-31 13:07:26 -04009951static int ipw_wx_reset(struct net_device *dev,
9952 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009953 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009954{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009955 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009956 IPW_DEBUG_WX("RESET\n");
James Ketrenosa613bff2005-08-24 21:43:11 -05009957 queue_work(priv->workqueue, &priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06009958 return 0;
9959}
James Ketrenosb095c382005-08-24 22:04:42 -05009960
James Ketrenosb095c382005-08-24 22:04:42 -05009961static int ipw_wx_sw_reset(struct net_device *dev,
9962 struct iw_request_info *info,
9963 union iwreq_data *wrqu, char *extra)
9964{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009965 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenosb095c382005-08-24 22:04:42 -05009966 union iwreq_data wrqu_sec = {
9967 .encoding = {
9968 .flags = IW_ENCODE_DISABLED,
9969 },
9970 };
James Ketrenosafbf30a2005-08-25 00:05:33 -05009971 int ret;
James Ketrenosb095c382005-08-24 22:04:42 -05009972
9973 IPW_DEBUG_WX("SW_RESET\n");
9974
Zhu Yi46441512006-01-24 16:37:59 +08009975 mutex_lock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05009976
Zhu Yid6d5b5c2006-02-16 16:21:09 +08009977 ret = ipw_sw_reset(priv, 2);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009978 if (!ret) {
9979 free_firmware();
9980 ipw_adapter_restart(priv);
9981 }
James Ketrenosb095c382005-08-24 22:04:42 -05009982
9983 /* The SW reset bit might have been toggled on by the 'disable'
9984 * module parameter, so take appropriate action */
9985 ipw_radio_kill_sw(priv, priv->status & STATUS_RF_KILL_SW);
9986
Zhu Yi46441512006-01-24 16:37:59 +08009987 mutex_unlock(&priv->mutex);
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009988 libipw_wx_set_encode(priv->ieee, info, &wrqu_sec, NULL);
Zhu Yi46441512006-01-24 16:37:59 +08009989 mutex_lock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05009990
9991 if (!(priv->status & STATUS_RF_KILL_MASK)) {
9992 /* Configuration likely changed -- force [re]association */
9993 IPW_DEBUG_ASSOC("[re]association triggered due to sw "
9994 "reset.\n");
9995 if (!ipw_disassociate(priv))
9996 ipw_associate(priv);
9997 }
9998
Zhu Yi46441512006-01-24 16:37:59 +08009999 mutex_unlock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -050010000
10001 return 0;
10002}
James Ketrenos43f66a62005-03-25 12:31:53 -060010003
10004/* Rebase the WE IOCTLs to zero for the handler array */
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010005static iw_handler ipw_wx_handlers[] = {
Joe Perches56b632e2010-03-18 18:29:38 -070010006 IW_HANDLER(SIOCGIWNAME, (iw_handler)cfg80211_wext_giwname),
10007 IW_HANDLER(SIOCSIWFREQ, ipw_wx_set_freq),
10008 IW_HANDLER(SIOCGIWFREQ, ipw_wx_get_freq),
10009 IW_HANDLER(SIOCSIWMODE, ipw_wx_set_mode),
10010 IW_HANDLER(SIOCGIWMODE, ipw_wx_get_mode),
10011 IW_HANDLER(SIOCSIWSENS, ipw_wx_set_sens),
10012 IW_HANDLER(SIOCGIWSENS, ipw_wx_get_sens),
10013 IW_HANDLER(SIOCGIWRANGE, ipw_wx_get_range),
10014 IW_HANDLER(SIOCSIWAP, ipw_wx_set_wap),
10015 IW_HANDLER(SIOCGIWAP, ipw_wx_get_wap),
10016 IW_HANDLER(SIOCSIWSCAN, ipw_wx_set_scan),
10017 IW_HANDLER(SIOCGIWSCAN, ipw_wx_get_scan),
10018 IW_HANDLER(SIOCSIWESSID, ipw_wx_set_essid),
10019 IW_HANDLER(SIOCGIWESSID, ipw_wx_get_essid),
10020 IW_HANDLER(SIOCSIWNICKN, ipw_wx_set_nick),
10021 IW_HANDLER(SIOCGIWNICKN, ipw_wx_get_nick),
10022 IW_HANDLER(SIOCSIWRATE, ipw_wx_set_rate),
10023 IW_HANDLER(SIOCGIWRATE, ipw_wx_get_rate),
10024 IW_HANDLER(SIOCSIWRTS, ipw_wx_set_rts),
10025 IW_HANDLER(SIOCGIWRTS, ipw_wx_get_rts),
10026 IW_HANDLER(SIOCSIWFRAG, ipw_wx_set_frag),
10027 IW_HANDLER(SIOCGIWFRAG, ipw_wx_get_frag),
10028 IW_HANDLER(SIOCSIWTXPOW, ipw_wx_set_txpow),
10029 IW_HANDLER(SIOCGIWTXPOW, ipw_wx_get_txpow),
10030 IW_HANDLER(SIOCSIWRETRY, ipw_wx_set_retry),
10031 IW_HANDLER(SIOCGIWRETRY, ipw_wx_get_retry),
10032 IW_HANDLER(SIOCSIWENCODE, ipw_wx_set_encode),
10033 IW_HANDLER(SIOCGIWENCODE, ipw_wx_get_encode),
10034 IW_HANDLER(SIOCSIWPOWER, ipw_wx_set_power),
10035 IW_HANDLER(SIOCGIWPOWER, ipw_wx_get_power),
10036 IW_HANDLER(SIOCSIWSPY, iw_handler_set_spy),
10037 IW_HANDLER(SIOCGIWSPY, iw_handler_get_spy),
10038 IW_HANDLER(SIOCSIWTHRSPY, iw_handler_set_thrspy),
10039 IW_HANDLER(SIOCGIWTHRSPY, iw_handler_get_thrspy),
10040 IW_HANDLER(SIOCSIWGENIE, ipw_wx_set_genie),
10041 IW_HANDLER(SIOCGIWGENIE, ipw_wx_get_genie),
10042 IW_HANDLER(SIOCSIWMLME, ipw_wx_set_mlme),
10043 IW_HANDLER(SIOCSIWAUTH, ipw_wx_set_auth),
10044 IW_HANDLER(SIOCGIWAUTH, ipw_wx_get_auth),
10045 IW_HANDLER(SIOCSIWENCODEEXT, ipw_wx_set_encodeext),
10046 IW_HANDLER(SIOCGIWENCODEEXT, ipw_wx_get_encodeext),
James Ketrenos43f66a62005-03-25 12:31:53 -060010047};
10048
James Ketrenosb095c382005-08-24 22:04:42 -050010049enum {
10050 IPW_PRIV_SET_POWER = SIOCIWFIRSTPRIV,
10051 IPW_PRIV_GET_POWER,
10052 IPW_PRIV_SET_MODE,
10053 IPW_PRIV_GET_MODE,
10054 IPW_PRIV_SET_PREAMBLE,
10055 IPW_PRIV_GET_PREAMBLE,
10056 IPW_PRIV_RESET,
10057 IPW_PRIV_SW_RESET,
10058#ifdef CONFIG_IPW2200_MONITOR
10059 IPW_PRIV_SET_MONITOR,
10060#endif
10061};
James Ketrenos43f66a62005-03-25 12:31:53 -060010062
Jeff Garzikbf794512005-07-31 13:07:26 -040010063static struct iw_priv_args ipw_priv_args[] = {
James Ketrenos43f66a62005-03-25 12:31:53 -060010064 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010065 .cmd = IPW_PRIV_SET_POWER,
10066 .set_args = IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
10067 .name = "set_power"},
James Ketrenos43f66a62005-03-25 12:31:53 -060010068 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010069 .cmd = IPW_PRIV_GET_POWER,
10070 .get_args = IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | MAX_WX_STRING,
10071 .name = "get_power"},
James Ketrenos43f66a62005-03-25 12:31:53 -060010072 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010073 .cmd = IPW_PRIV_SET_MODE,
10074 .set_args = IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
10075 .name = "set_mode"},
James Ketrenos43f66a62005-03-25 12:31:53 -060010076 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010077 .cmd = IPW_PRIV_GET_MODE,
10078 .get_args = IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | MAX_WX_STRING,
10079 .name = "get_mode"},
James Ketrenos43f66a62005-03-25 12:31:53 -060010080 {
James Ketrenosea2b26e2005-08-24 21:25:16 -050010081 .cmd = IPW_PRIV_SET_PREAMBLE,
10082 .set_args = IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
10083 .name = "set_preamble"},
10084 {
10085 .cmd = IPW_PRIV_GET_PREAMBLE,
10086 .get_args = IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | IFNAMSIZ,
10087 .name = "get_preamble"},
James Ketrenos43f66a62005-03-25 12:31:53 -060010088 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010089 IPW_PRIV_RESET,
10090 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 0, 0, "reset"},
James Ketrenosb095c382005-08-24 22:04:42 -050010091 {
10092 IPW_PRIV_SW_RESET,
10093 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 0, 0, "sw_reset"},
10094#ifdef CONFIG_IPW2200_MONITOR
10095 {
10096 IPW_PRIV_SET_MONITOR,
10097 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 2, 0, "monitor"},
10098#endif /* CONFIG_IPW2200_MONITOR */
James Ketrenos43f66a62005-03-25 12:31:53 -060010099};
10100
10101static iw_handler ipw_priv_handler[] = {
10102 ipw_wx_set_powermode,
10103 ipw_wx_get_powermode,
10104 ipw_wx_set_wireless_mode,
10105 ipw_wx_get_wireless_mode,
James Ketrenosea2b26e2005-08-24 21:25:16 -050010106 ipw_wx_set_preamble,
10107 ipw_wx_get_preamble,
Jeff Garzikbf794512005-07-31 13:07:26 -040010108 ipw_wx_reset,
James Ketrenosb095c382005-08-24 22:04:42 -050010109 ipw_wx_sw_reset,
10110#ifdef CONFIG_IPW2200_MONITOR
10111 ipw_wx_set_monitor,
James Ketrenos43f66a62005-03-25 12:31:53 -060010112#endif
10113};
10114
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010115static struct iw_handler_def ipw_wx_handler_def = {
James Ketrenosea2b26e2005-08-24 21:25:16 -050010116 .standard = ipw_wx_handlers,
10117 .num_standard = ARRAY_SIZE(ipw_wx_handlers),
10118 .num_private = ARRAY_SIZE(ipw_priv_handler),
10119 .num_private_args = ARRAY_SIZE(ipw_priv_args),
10120 .private = ipw_priv_handler,
10121 .private_args = ipw_priv_args,
Benoit Boissinot97a78ca2005-09-15 17:30:28 +000010122 .get_wireless_stats = ipw_get_wireless_stats,
James Ketrenos43f66a62005-03-25 12:31:53 -060010123};
10124
James Ketrenos43f66a62005-03-25 12:31:53 -060010125/*
10126 * Get wireless statistics.
10127 * Called by /proc/net/wireless
10128 * Also called by SIOCGIWSTATS
10129 */
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010130static struct iw_statistics *ipw_get_wireless_stats(struct net_device *dev)
James Ketrenos43f66a62005-03-25 12:31:53 -060010131{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010132 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060010133 struct iw_statistics *wstats;
Jeff Garzikbf794512005-07-31 13:07:26 -040010134
James Ketrenos43f66a62005-03-25 12:31:53 -060010135 wstats = &priv->wstats;
10136
James Ketrenosea2b26e2005-08-24 21:25:16 -050010137 /* if hw is disabled, then ipw_get_ordinal() can't be called.
James Ketrenosafbf30a2005-08-25 00:05:33 -050010138 * netdev->get_wireless_stats seems to be called before fw is
James Ketrenos43f66a62005-03-25 12:31:53 -060010139 * initialized. STATUS_ASSOCIATED will only be set if the hw is up
10140 * and associated; if not associcated, the values are all meaningless
10141 * anyway, so set them all to NULL and INVALID */
10142 if (!(priv->status & STATUS_ASSOCIATED)) {
10143 wstats->miss.beacon = 0;
10144 wstats->discard.retries = 0;
10145 wstats->qual.qual = 0;
10146 wstats->qual.level = 0;
10147 wstats->qual.noise = 0;
10148 wstats->qual.updated = 7;
10149 wstats->qual.updated |= IW_QUAL_NOISE_INVALID |
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010150 IW_QUAL_QUAL_INVALID | IW_QUAL_LEVEL_INVALID;
James Ketrenos43f66a62005-03-25 12:31:53 -060010151 return wstats;
Jeff Garzikbf794512005-07-31 13:07:26 -040010152 }
James Ketrenos43f66a62005-03-25 12:31:53 -060010153
10154 wstats->qual.qual = priv->quality;
Zhu Yi00d21de2006-04-13 17:19:02 +080010155 wstats->qual.level = priv->exp_avg_rssi;
10156 wstats->qual.noise = priv->exp_avg_noise;
James Ketrenos43f66a62005-03-25 12:31:53 -060010157 wstats->qual.updated = IW_QUAL_QUAL_UPDATED | IW_QUAL_LEVEL_UPDATED |
Bill Mossb1916082006-02-15 08:50:18 +080010158 IW_QUAL_NOISE_UPDATED | IW_QUAL_DBM;
James Ketrenos43f66a62005-03-25 12:31:53 -060010159
10160 wstats->miss.beacon = average_value(&priv->average_missed_beacons);
10161 wstats->discard.retries = priv->last_tx_failures;
10162 wstats->discard.code = priv->ieee->ieee_stats.rx_discards_undecryptable;
Jeff Garzikbf794512005-07-31 13:07:26 -040010163
James Ketrenos43f66a62005-03-25 12:31:53 -060010164/* if (ipw_get_ordinal(priv, IPW_ORD_STAT_TX_RETRY, &tx_retry, &len))
10165 goto fail_get_ordinal;
10166 wstats->discard.retries += tx_retry; */
Jeff Garzikbf794512005-07-31 13:07:26 -040010167
James Ketrenos43f66a62005-03-25 12:31:53 -060010168 return wstats;
10169}
10170
James Ketrenos43f66a62005-03-25 12:31:53 -060010171/* net device stuff */
10172
Arjan van de Ven858119e2006-01-14 13:20:43 -080010173static void init_sys_config(struct ipw_sys_config *sys_config)
James Ketrenos43f66a62005-03-25 12:31:53 -060010174{
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010175 memset(sys_config, 0, sizeof(struct ipw_sys_config));
Zhu Yi810dabd2006-01-24 16:36:59 +080010176 sys_config->bt_coexistence = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060010177 sys_config->answer_broadcast_ssid_probe = 0;
10178 sys_config->accept_all_data_frames = 0;
10179 sys_config->accept_non_directed_frames = 1;
10180 sys_config->exclude_unicast_unencrypted = 0;
10181 sys_config->disable_unicast_decryption = 1;
10182 sys_config->exclude_multicast_unencrypted = 0;
10183 sys_config->disable_multicast_decryption = 1;
Zhu Yid2b83e12006-04-13 17:19:36 +080010184 if (antenna < CFG_SYS_ANTENNA_BOTH || antenna > CFG_SYS_ANTENNA_B)
10185 antenna = CFG_SYS_ANTENNA_BOTH;
10186 sys_config->antenna_diversity = antenna;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010187 sys_config->pass_crc_to_host = 0; /* TODO: See if 1 gives us FCS */
James Ketrenos43f66a62005-03-25 12:31:53 -060010188 sys_config->dot11g_auto_detection = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -040010189 sys_config->enable_cts_to_self = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060010190 sys_config->bt_coexist_collision_thr = 0;
Pavel Machek67fd6b42006-07-11 15:34:05 +020010191 sys_config->pass_noise_stats_to_host = 1; /* 1 -- fix for 256 */
Cahill, Ben M12977152006-03-08 02:58:02 +080010192 sys_config->silence_threshold = 0x1e;
James Ketrenos43f66a62005-03-25 12:31:53 -060010193}
10194
10195static int ipw_net_open(struct net_device *dev)
10196{
James Ketrenos43f66a62005-03-25 12:31:53 -060010197 IPW_DEBUG_INFO("dev->open\n");
David S. Miller521c4d92008-07-22 18:32:47 -070010198 netif_start_queue(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060010199 return 0;
10200}
10201
10202static int ipw_net_stop(struct net_device *dev)
10203{
10204 IPW_DEBUG_INFO("dev->close\n");
10205 netif_stop_queue(dev);
10206 return 0;
10207}
10208
10209/*
10210todo:
10211
10212modify to send one tfd per fragment instead of using chunking. otherwise
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010213we need to heavily modify the libipw_skb_to_txb.
James Ketrenos43f66a62005-03-25 12:31:53 -060010214*/
10215
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010216static int ipw_tx_skb(struct ipw_priv *priv, struct libipw_txb *txb,
James Ketrenos227d2dc2005-07-28 16:25:55 -050010217 int pri)
James Ketrenos43f66a62005-03-25 12:31:53 -060010218{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010219 struct libipw_hdr_3addrqos *hdr = (struct libipw_hdr_3addrqos *)
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010220 txb->fragments[0]->data;
James Ketrenos43f66a62005-03-25 12:31:53 -060010221 int i = 0;
10222 struct tfd_frame *tfd;
Zhu Yie43e3c12006-04-13 17:20:45 +080010223#ifdef CONFIG_IPW2200_QOS
James Ketrenosb095c382005-08-24 22:04:42 -050010224 int tx_id = ipw_get_tx_queue_number(priv, pri);
10225 struct clx2_tx_queue *txq = &priv->txq[tx_id];
10226#else
James Ketrenos43f66a62005-03-25 12:31:53 -060010227 struct clx2_tx_queue *txq = &priv->txq[0];
James Ketrenosb095c382005-08-24 22:04:42 -050010228#endif
James Ketrenos43f66a62005-03-25 12:31:53 -060010229 struct clx2_queue *q = &txq->q;
10230 u8 id, hdr_len, unicast;
James Ketrenosc848d0a2005-08-24 21:56:24 -050010231 int fc;
James Ketrenos43f66a62005-03-25 12:31:53 -060010232
Zhu Yib8ddafd2008-11-27 13:42:20 +080010233 if (!(priv->status & STATUS_ASSOCIATED))
10234 goto drop;
10235
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010236 hdr_len = libipw_get_hdrlen(le16_to_cpu(hdr->frame_ctl));
James Ketrenos43f66a62005-03-25 12:31:53 -060010237 switch (priv->ieee->iw_mode) {
10238 case IW_MODE_ADHOC:
Stephen Hemminger3c190652006-01-03 15:27:38 -080010239 unicast = !is_multicast_ether_addr(hdr->addr1);
James Ketrenos43f66a62005-03-25 12:31:53 -060010240 id = ipw_find_station(priv, hdr->addr1);
10241 if (id == IPW_INVALID_STATION) {
10242 id = ipw_add_station(priv, hdr->addr1);
10243 if (id == IPW_INVALID_STATION) {
10244 IPW_WARNING("Attempt to send data to "
Johannes Berge1749612008-10-27 15:59:26 -070010245 "invalid cell: %pM\n",
10246 hdr->addr1);
James Ketrenos43f66a62005-03-25 12:31:53 -060010247 goto drop;
10248 }
10249 }
10250 break;
10251
10252 case IW_MODE_INFRA:
10253 default:
Stephen Hemminger3c190652006-01-03 15:27:38 -080010254 unicast = !is_multicast_ether_addr(hdr->addr3);
James Ketrenos43f66a62005-03-25 12:31:53 -060010255 id = 0;
10256 break;
10257 }
10258
10259 tfd = &txq->bd[q->first_empty];
10260 txq->txb[q->first_empty] = txb;
10261 memset(tfd, 0, sizeof(*tfd));
10262 tfd->u.data.station_number = id;
10263
10264 tfd->control_flags.message_type = TX_FRAME_TYPE;
10265 tfd->control_flags.control_bits = TFD_NEED_IRQ_MASK;
10266
10267 tfd->u.data.cmd_id = DINO_CMD_TX;
James Ketrenosa613bff2005-08-24 21:43:11 -050010268 tfd->u.data.len = cpu_to_le16(txb->payload_size);
Jeff Garzikbf794512005-07-31 13:07:26 -040010269
James Ketrenos43f66a62005-03-25 12:31:53 -060010270 if (priv->assoc_request.ieee_mode == IPW_B_MODE)
James Ketrenosb095c382005-08-24 22:04:42 -050010271 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_MODE_CCK;
James Ketrenos43f66a62005-03-25 12:31:53 -060010272 else
James Ketrenosb095c382005-08-24 22:04:42 -050010273 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_MODE_OFDM;
James Ketrenos43f66a62005-03-25 12:31:53 -060010274
James Ketrenosea2b26e2005-08-24 21:25:16 -050010275 if (priv->assoc_request.preamble_length == DCT_FLAG_SHORT_PREAMBLE)
10276 tfd->u.data.tx_flags |= DCT_FLAG_SHORT_PREAMBLE;
James Ketrenos43f66a62005-03-25 12:31:53 -060010277
James Ketrenosc848d0a2005-08-24 21:56:24 -050010278 fc = le16_to_cpu(hdr->frame_ctl);
10279 hdr->frame_ctl = cpu_to_le16(fc & ~IEEE80211_FCTL_MOREFRAGS);
James Ketrenos43f66a62005-03-25 12:31:53 -060010280
10281 memcpy(&tfd->u.data.tfd.tfd_24.mchdr, hdr, hdr_len);
10282
James Ketrenosb095c382005-08-24 22:04:42 -050010283 if (likely(unicast))
10284 tfd->u.data.tx_flags |= DCT_FLAG_ACK_REQD;
10285
10286 if (txb->encrypted && !priv->ieee->host_encrypt) {
10287 switch (priv->ieee->sec.level) {
10288 case SEC_LEVEL_3:
10289 tfd->u.data.tfd.tfd_24.mchdr.frame_ctl |=
Zhu Yi851ca262006-08-21 11:37:58 +080010290 cpu_to_le16(IEEE80211_FCTL_PROTECTED);
James Ketrenosb095c382005-08-24 22:04:42 -050010291 /* XXX: ACK flag must be set for CCMP even if it
10292 * is a multicast/broadcast packet, because CCMP
10293 * group communication encrypted by GTK is
10294 * actually done by the AP. */
10295 if (!unicast)
10296 tfd->u.data.tx_flags |= DCT_FLAG_ACK_REQD;
10297
10298 tfd->u.data.tx_flags &= ~DCT_FLAG_NO_WEP;
10299 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_SECURITY_CCM;
10300 tfd->u.data.key_index = 0;
10301 tfd->u.data.key_index |= DCT_WEP_INDEX_USE_IMMEDIATE;
10302 break;
10303 case SEC_LEVEL_2:
10304 tfd->u.data.tfd.tfd_24.mchdr.frame_ctl |=
Zhu Yi851ca262006-08-21 11:37:58 +080010305 cpu_to_le16(IEEE80211_FCTL_PROTECTED);
James Ketrenosb095c382005-08-24 22:04:42 -050010306 tfd->u.data.tx_flags &= ~DCT_FLAG_NO_WEP;
10307 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_SECURITY_TKIP;
10308 tfd->u.data.key_index = DCT_WEP_INDEX_USE_IMMEDIATE;
10309 break;
10310 case SEC_LEVEL_1:
10311 tfd->u.data.tfd.tfd_24.mchdr.frame_ctl |=
Zhu Yi851ca262006-08-21 11:37:58 +080010312 cpu_to_le16(IEEE80211_FCTL_PROTECTED);
John W. Linville274bfb82008-10-29 11:35:05 -040010313 tfd->u.data.key_index = priv->ieee->crypt_info.tx_keyidx;
10314 if (priv->ieee->sec.key_sizes[priv->ieee->crypt_info.tx_keyidx] <=
James Ketrenosb095c382005-08-24 22:04:42 -050010315 40)
10316 tfd->u.data.key_index |= DCT_WEP_KEY_64Bit;
10317 else
10318 tfd->u.data.key_index |= DCT_WEP_KEY_128Bit;
10319 break;
10320 case SEC_LEVEL_0:
10321 break;
10322 default:
André Goddard Rosaaf901ca2009-11-14 13:09:05 -020010323 printk(KERN_ERR "Unknown security level %d\n",
James Ketrenosb095c382005-08-24 22:04:42 -050010324 priv->ieee->sec.level);
10325 break;
10326 }
10327 } else
10328 /* No hardware encryption */
10329 tfd->u.data.tx_flags |= DCT_FLAG_NO_WEP;
10330
Zhu Yie43e3c12006-04-13 17:20:45 +080010331#ifdef CONFIG_IPW2200_QOS
Zhu Yia5cf4fe2006-04-13 17:19:11 +080010332 if (fc & IEEE80211_STYPE_QOS_DATA)
10333 ipw_qos_set_tx_queue_command(priv, pri, &(tfd->u.data));
Zhu Yie43e3c12006-04-13 17:20:45 +080010334#endif /* CONFIG_IPW2200_QOS */
James Ketrenosb095c382005-08-24 22:04:42 -050010335
James Ketrenos43f66a62005-03-25 12:31:53 -060010336 /* payload */
James Ketrenosa613bff2005-08-24 21:43:11 -050010337 tfd->u.data.num_chunks = cpu_to_le32(min((u8) (NUM_TFD_CHUNKS - 2),
10338 txb->nr_frags));
10339 IPW_DEBUG_FRAG("%i fragments being sent as %i chunks.\n",
10340 txb->nr_frags, le32_to_cpu(tfd->u.data.num_chunks));
10341 for (i = 0; i < le32_to_cpu(tfd->u.data.num_chunks); i++) {
10342 IPW_DEBUG_FRAG("Adding fragment %i of %i (%d bytes).\n",
10343 i, le32_to_cpu(tfd->u.data.num_chunks),
10344 txb->fragments[i]->len - hdr_len);
Jeff Garzikbf794512005-07-31 13:07:26 -040010345 IPW_DEBUG_TX("Dumping TX packet frag %i of %i (%d bytes):\n",
James Ketrenos43f66a62005-03-25 12:31:53 -060010346 i, tfd->u.data.num_chunks,
10347 txb->fragments[i]->len - hdr_len);
Jeff Garzikbf794512005-07-31 13:07:26 -040010348 printk_buf(IPW_DL_TX, txb->fragments[i]->data + hdr_len,
James Ketrenos43f66a62005-03-25 12:31:53 -060010349 txb->fragments[i]->len - hdr_len);
10350
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010351 tfd->u.data.chunk_ptr[i] =
James Ketrenosa613bff2005-08-24 21:43:11 -050010352 cpu_to_le32(pci_map_single
10353 (priv->pci_dev,
10354 txb->fragments[i]->data + hdr_len,
10355 txb->fragments[i]->len - hdr_len,
10356 PCI_DMA_TODEVICE));
10357 tfd->u.data.chunk_len[i] =
10358 cpu_to_le16(txb->fragments[i]->len - hdr_len);
James Ketrenos43f66a62005-03-25 12:31:53 -060010359 }
10360
10361 if (i != txb->nr_frags) {
10362 struct sk_buff *skb;
10363 u16 remaining_bytes = 0;
10364 int j;
10365
10366 for (j = i; j < txb->nr_frags; j++)
10367 remaining_bytes += txb->fragments[j]->len - hdr_len;
10368
10369 printk(KERN_INFO "Trying to reallocate for %d bytes\n",
10370 remaining_bytes);
10371 skb = alloc_skb(remaining_bytes, GFP_ATOMIC);
10372 if (skb != NULL) {
James Ketrenosa613bff2005-08-24 21:43:11 -050010373 tfd->u.data.chunk_len[i] = cpu_to_le16(remaining_bytes);
James Ketrenos43f66a62005-03-25 12:31:53 -060010374 for (j = i; j < txb->nr_frags; j++) {
10375 int size = txb->fragments[j]->len - hdr_len;
James Ketrenosafbf30a2005-08-25 00:05:33 -050010376
James Ketrenos43f66a62005-03-25 12:31:53 -060010377 printk(KERN_INFO "Adding frag %d %d...\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010378 j, size);
James Ketrenos43f66a62005-03-25 12:31:53 -060010379 memcpy(skb_put(skb, size),
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010380 txb->fragments[j]->data + hdr_len, size);
James Ketrenos43f66a62005-03-25 12:31:53 -060010381 }
10382 dev_kfree_skb_any(txb->fragments[i]);
10383 txb->fragments[i] = skb;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010384 tfd->u.data.chunk_ptr[i] =
James Ketrenosa613bff2005-08-24 21:43:11 -050010385 cpu_to_le32(pci_map_single
10386 (priv->pci_dev, skb->data,
Al Viro49587302007-12-27 01:57:47 -050010387 remaining_bytes,
James Ketrenosa613bff2005-08-24 21:43:11 -050010388 PCI_DMA_TODEVICE));
10389
Marcin Slusarz5c058632008-02-13 00:06:12 +010010390 le32_add_cpu(&tfd->u.data.num_chunks, 1);
Jeff Garzikbf794512005-07-31 13:07:26 -040010391 }
James Ketrenos43f66a62005-03-25 12:31:53 -060010392 }
10393
10394 /* kick DMA */
10395 q->first_empty = ipw_queue_inc_wrap(q->first_empty, q->n_bd);
10396 ipw_write32(priv, q->reg_w, q->first_empty);
10397
Dan Williams943dbef2008-02-14 17:49:41 -050010398 if (ipw_tx_queue_space(q) < q->high_mark)
James Ketrenosf6970142006-02-14 09:10:51 +080010399 netif_stop_queue(priv->net_dev);
10400
James Ketrenos227d2dc2005-07-28 16:25:55 -050010401 return NETDEV_TX_OK;
James Ketrenos43f66a62005-03-25 12:31:53 -060010402
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010403 drop:
James Ketrenos43f66a62005-03-25 12:31:53 -060010404 IPW_DEBUG_DROP("Silently dropping Tx packet.\n");
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010405 libipw_txb_free(txb);
James Ketrenos227d2dc2005-07-28 16:25:55 -050010406 return NETDEV_TX_OK;
10407}
10408
10409static int ipw_net_is_queue_full(struct net_device *dev, int pri)
10410{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010411 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yie43e3c12006-04-13 17:20:45 +080010412#ifdef CONFIG_IPW2200_QOS
James Ketrenos227d2dc2005-07-28 16:25:55 -050010413 int tx_id = ipw_get_tx_queue_number(priv, pri);
10414 struct clx2_tx_queue *txq = &priv->txq[tx_id];
10415#else
10416 struct clx2_tx_queue *txq = &priv->txq[0];
Zhu Yie43e3c12006-04-13 17:20:45 +080010417#endif /* CONFIG_IPW2200_QOS */
James Ketrenos227d2dc2005-07-28 16:25:55 -050010418
Dan Williams943dbef2008-02-14 17:49:41 -050010419 if (ipw_tx_queue_space(&txq->q) < txq->q.high_mark)
James Ketrenos227d2dc2005-07-28 16:25:55 -050010420 return 1;
10421
10422 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060010423}
10424
Zhu Yid685b8c2006-04-13 17:20:27 +080010425#ifdef CONFIG_IPW2200_PROMISCUOUS
10426static void ipw_handle_promiscuous_tx(struct ipw_priv *priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010427 struct libipw_txb *txb)
Zhu Yid685b8c2006-04-13 17:20:27 +080010428{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010429 struct libipw_rx_stats dummystats;
Zhu Yid685b8c2006-04-13 17:20:27 +080010430 struct ieee80211_hdr *hdr;
10431 u8 n;
10432 u16 filter = priv->prom_priv->filter;
10433 int hdr_only = 0;
10434
10435 if (filter & IPW_PROM_NO_TX)
10436 return;
10437
10438 memset(&dummystats, 0, sizeof(dummystats));
10439
10440 /* Filtering of fragment chains is done agains the first fragment */
10441 hdr = (void *)txb->fragments[0]->data;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010442 if (libipw_is_management(le16_to_cpu(hdr->frame_control))) {
Zhu Yid685b8c2006-04-13 17:20:27 +080010443 if (filter & IPW_PROM_NO_MGMT)
10444 return;
10445 if (filter & IPW_PROM_MGMT_HEADER_ONLY)
10446 hdr_only = 1;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010447 } else if (libipw_is_control(le16_to_cpu(hdr->frame_control))) {
Zhu Yid685b8c2006-04-13 17:20:27 +080010448 if (filter & IPW_PROM_NO_CTL)
10449 return;
10450 if (filter & IPW_PROM_CTL_HEADER_ONLY)
10451 hdr_only = 1;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010452 } else if (libipw_is_data(le16_to_cpu(hdr->frame_control))) {
Zhu Yid685b8c2006-04-13 17:20:27 +080010453 if (filter & IPW_PROM_NO_DATA)
10454 return;
10455 if (filter & IPW_PROM_DATA_HEADER_ONLY)
10456 hdr_only = 1;
10457 }
10458
10459 for(n=0; n<txb->nr_frags; ++n) {
10460 struct sk_buff *src = txb->fragments[n];
10461 struct sk_buff *dst;
10462 struct ieee80211_radiotap_header *rt_hdr;
10463 int len;
10464
10465 if (hdr_only) {
10466 hdr = (void *)src->data;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010467 len = libipw_get_hdrlen(le16_to_cpu(hdr->frame_control));
Zhu Yid685b8c2006-04-13 17:20:27 +080010468 } else
10469 len = src->len;
10470
Johannes Berg007e5dd2008-11-27 23:13:38 +010010471 dst = alloc_skb(len + sizeof(*rt_hdr), GFP_ATOMIC);
10472 if (!dst)
10473 continue;
Zhu Yid685b8c2006-04-13 17:20:27 +080010474
10475 rt_hdr = (void *)skb_put(dst, sizeof(*rt_hdr));
10476
10477 rt_hdr->it_version = PKTHDR_RADIOTAP_VERSION;
10478 rt_hdr->it_pad = 0;
10479 rt_hdr->it_present = 0; /* after all, it's just an idea */
Al Viro743b84d2007-12-27 01:43:16 -050010480 rt_hdr->it_present |= cpu_to_le32(1 << IEEE80211_RADIOTAP_CHANNEL);
Zhu Yid685b8c2006-04-13 17:20:27 +080010481
Al Viroe62e1ee2007-12-27 01:36:46 -050010482 *(__le16*)skb_put(dst, sizeof(u16)) = cpu_to_le16(
Zhu Yid685b8c2006-04-13 17:20:27 +080010483 ieee80211chan2mhz(priv->channel));
10484 if (priv->channel > 14) /* 802.11a */
Al Viroe62e1ee2007-12-27 01:36:46 -050010485 *(__le16*)skb_put(dst, sizeof(u16)) =
Zhu Yid685b8c2006-04-13 17:20:27 +080010486 cpu_to_le16(IEEE80211_CHAN_OFDM |
10487 IEEE80211_CHAN_5GHZ);
10488 else if (priv->ieee->mode == IEEE_B) /* 802.11b */
Al Viroe62e1ee2007-12-27 01:36:46 -050010489 *(__le16*)skb_put(dst, sizeof(u16)) =
Zhu Yid685b8c2006-04-13 17:20:27 +080010490 cpu_to_le16(IEEE80211_CHAN_CCK |
10491 IEEE80211_CHAN_2GHZ);
10492 else /* 802.11g */
Al Viroe62e1ee2007-12-27 01:36:46 -050010493 *(__le16*)skb_put(dst, sizeof(u16)) =
Zhu Yid685b8c2006-04-13 17:20:27 +080010494 cpu_to_le16(IEEE80211_CHAN_OFDM |
10495 IEEE80211_CHAN_2GHZ);
10496
Al Viro743b84d2007-12-27 01:43:16 -050010497 rt_hdr->it_len = cpu_to_le16(dst->len);
Zhu Yid685b8c2006-04-13 17:20:27 +080010498
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -030010499 skb_copy_from_linear_data(src, skb_put(dst, len), len);
Zhu Yid685b8c2006-04-13 17:20:27 +080010500
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010501 if (!libipw_rx(priv->prom_priv->ieee, dst, &dummystats))
Zhu Yid685b8c2006-04-13 17:20:27 +080010502 dev_kfree_skb_any(dst);
10503 }
10504}
10505#endif
10506
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +000010507static netdev_tx_t ipw_net_hard_start_xmit(struct libipw_txb *txb,
10508 struct net_device *dev, int pri)
James Ketrenos43f66a62005-03-25 12:31:53 -060010509{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010510 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060010511 unsigned long flags;
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +000010512 netdev_tx_t ret;
James Ketrenos43f66a62005-03-25 12:31:53 -060010513
10514 IPW_DEBUG_TX("dev->xmit(%d bytes)\n", txb->payload_size);
James Ketrenos43f66a62005-03-25 12:31:53 -060010515 spin_lock_irqsave(&priv->lock, flags);
10516
Zhu Yid685b8c2006-04-13 17:20:27 +080010517#ifdef CONFIG_IPW2200_PROMISCUOUS
10518 if (rtap_iface && netif_running(priv->prom_net_dev))
10519 ipw_handle_promiscuous_tx(priv, txb);
10520#endif
10521
James Ketrenos227d2dc2005-07-28 16:25:55 -050010522 ret = ipw_tx_skb(priv, txb, pri);
10523 if (ret == NETDEV_TX_OK)
10524 __ipw_led_activity_on(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060010525 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -060010526
James Ketrenos227d2dc2005-07-28 16:25:55 -050010527 return ret;
James Ketrenos43f66a62005-03-25 12:31:53 -060010528}
10529
James Ketrenos43f66a62005-03-25 12:31:53 -060010530static void ipw_net_set_multicast_list(struct net_device *dev)
10531{
10532
10533}
10534
10535static int ipw_net_set_mac_address(struct net_device *dev, void *p)
10536{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010537 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060010538 struct sockaddr *addr = p;
Joe Perches0795af52007-10-03 17:59:30 -070010539
James Ketrenos43f66a62005-03-25 12:31:53 -060010540 if (!is_valid_ether_addr(addr->sa_data))
10541 return -EADDRNOTAVAIL;
Zhu Yi46441512006-01-24 16:37:59 +080010542 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060010543 priv->config |= CFG_CUSTOM_MAC;
10544 memcpy(priv->mac_addr, addr->sa_data, ETH_ALEN);
Johannes Berge1749612008-10-27 15:59:26 -070010545 printk(KERN_INFO "%s: Setting MAC to %pM\n",
10546 priv->net_dev->name, priv->mac_addr);
James Ketrenosa613bff2005-08-24 21:43:11 -050010547 queue_work(priv->workqueue, &priv->adapter_restart);
Zhu Yi46441512006-01-24 16:37:59 +080010548 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060010549 return 0;
10550}
10551
Jeff Garzikbf794512005-07-31 13:07:26 -040010552static void ipw_ethtool_get_drvinfo(struct net_device *dev,
James Ketrenos43f66a62005-03-25 12:31:53 -060010553 struct ethtool_drvinfo *info)
10554{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010555 struct ipw_priv *p = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060010556 char vers[64];
10557 char date[32];
10558 u32 len;
10559
10560 strcpy(info->driver, DRV_NAME);
10561 strcpy(info->version, DRV_VERSION);
10562
10563 len = sizeof(vers);
10564 ipw_get_ordinal(p, IPW_ORD_STAT_FW_VERSION, vers, &len);
10565 len = sizeof(date);
10566 ipw_get_ordinal(p, IPW_ORD_STAT_FW_DATE, date, &len);
10567
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010568 snprintf(info->fw_version, sizeof(info->fw_version), "%s (%s)",
James Ketrenos43f66a62005-03-25 12:31:53 -060010569 vers, date);
10570 strcpy(info->bus_info, pci_name(p->pci_dev));
James Ketrenosb095c382005-08-24 22:04:42 -050010571 info->eedump_len = IPW_EEPROM_IMAGE_SIZE;
James Ketrenos43f66a62005-03-25 12:31:53 -060010572}
10573
10574static u32 ipw_ethtool_get_link(struct net_device *dev)
10575{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010576 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060010577 return (priv->status & STATUS_ASSOCIATED) != 0;
10578}
10579
10580static int ipw_ethtool_get_eeprom_len(struct net_device *dev)
10581{
James Ketrenosb095c382005-08-24 22:04:42 -050010582 return IPW_EEPROM_IMAGE_SIZE;
James Ketrenos43f66a62005-03-25 12:31:53 -060010583}
10584
10585static int ipw_ethtool_get_eeprom(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010586 struct ethtool_eeprom *eeprom, u8 * bytes)
James Ketrenos43f66a62005-03-25 12:31:53 -060010587{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010588 struct ipw_priv *p = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060010589
James Ketrenosb095c382005-08-24 22:04:42 -050010590 if (eeprom->offset + eeprom->len > IPW_EEPROM_IMAGE_SIZE)
James Ketrenos43f66a62005-03-25 12:31:53 -060010591 return -EINVAL;
Zhu Yi46441512006-01-24 16:37:59 +080010592 mutex_lock(&p->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010593 memcpy(bytes, &p->eeprom[eeprom->offset], eeprom->len);
Zhu Yi46441512006-01-24 16:37:59 +080010594 mutex_unlock(&p->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060010595 return 0;
10596}
10597
10598static int ipw_ethtool_set_eeprom(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010599 struct ethtool_eeprom *eeprom, u8 * bytes)
James Ketrenos43f66a62005-03-25 12:31:53 -060010600{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010601 struct ipw_priv *p = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060010602 int i;
10603
James Ketrenosb095c382005-08-24 22:04:42 -050010604 if (eeprom->offset + eeprom->len > IPW_EEPROM_IMAGE_SIZE)
James Ketrenos43f66a62005-03-25 12:31:53 -060010605 return -EINVAL;
Zhu Yi46441512006-01-24 16:37:59 +080010606 mutex_lock(&p->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010607 memcpy(&p->eeprom[eeprom->offset], bytes, eeprom->len);
Adrian Bunk71e585f2006-03-11 04:42:58 +010010608 for (i = 0; i < IPW_EEPROM_IMAGE_SIZE; i++)
10609 ipw_write8(p, i + IPW_EEPROM_DATA, p->eeprom[i]);
Zhu Yi46441512006-01-24 16:37:59 +080010610 mutex_unlock(&p->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060010611 return 0;
10612}
10613
Jeff Garzik7282d492006-09-13 14:30:00 -040010614static const struct ethtool_ops ipw_ethtool_ops = {
James Ketrenosea2b26e2005-08-24 21:25:16 -050010615 .get_link = ipw_ethtool_get_link,
10616 .get_drvinfo = ipw_ethtool_get_drvinfo,
10617 .get_eeprom_len = ipw_ethtool_get_eeprom_len,
10618 .get_eeprom = ipw_ethtool_get_eeprom,
10619 .set_eeprom = ipw_ethtool_set_eeprom,
James Ketrenos43f66a62005-03-25 12:31:53 -060010620};
10621
David Howells7d12e782006-10-05 14:55:46 +010010622static irqreturn_t ipw_isr(int irq, void *data)
James Ketrenos43f66a62005-03-25 12:31:53 -060010623{
10624 struct ipw_priv *priv = data;
10625 u32 inta, inta_mask;
Jeff Garzikbf794512005-07-31 13:07:26 -040010626
James Ketrenos43f66a62005-03-25 12:31:53 -060010627 if (!priv)
10628 return IRQ_NONE;
10629
Zhu Yi89c318e2006-06-08 22:19:49 -070010630 spin_lock(&priv->irq_lock);
James Ketrenos43f66a62005-03-25 12:31:53 -060010631
10632 if (!(priv->status & STATUS_INT_ENABLED)) {
Zhu Yid00d0122007-07-12 16:09:40 +080010633 /* IRQ is disabled */
James Ketrenos43f66a62005-03-25 12:31:53 -060010634 goto none;
10635 }
10636
James Ketrenosb095c382005-08-24 22:04:42 -050010637 inta = ipw_read32(priv, IPW_INTA_RW);
10638 inta_mask = ipw_read32(priv, IPW_INTA_MASK_R);
Jeff Garzikbf794512005-07-31 13:07:26 -040010639
James Ketrenos43f66a62005-03-25 12:31:53 -060010640 if (inta == 0xFFFFFFFF) {
10641 /* Hardware disappeared */
10642 IPW_WARNING("IRQ INTA == 0xFFFFFFFF\n");
10643 goto none;
10644 }
10645
James Ketrenosb095c382005-08-24 22:04:42 -050010646 if (!(inta & (IPW_INTA_MASK_ALL & inta_mask))) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010647 /* Shared interrupt */
10648 goto none;
10649 }
10650
10651 /* tell the device to stop sending interrupts */
Zhu Yi89c318e2006-06-08 22:19:49 -070010652 __ipw_disable_interrupts(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -040010653
James Ketrenos43f66a62005-03-25 12:31:53 -060010654 /* ack current interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -050010655 inta &= (IPW_INTA_MASK_ALL & inta_mask);
10656 ipw_write32(priv, IPW_INTA_RW, inta);
Jeff Garzikbf794512005-07-31 13:07:26 -040010657
James Ketrenos43f66a62005-03-25 12:31:53 -060010658 /* Cache INTA value for our tasklet */
10659 priv->isr_inta = inta;
10660
10661 tasklet_schedule(&priv->irq_tasklet);
10662
Zhu Yi89c318e2006-06-08 22:19:49 -070010663 spin_unlock(&priv->irq_lock);
James Ketrenos43f66a62005-03-25 12:31:53 -060010664
10665 return IRQ_HANDLED;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010666 none:
Zhu Yi89c318e2006-06-08 22:19:49 -070010667 spin_unlock(&priv->irq_lock);
James Ketrenos43f66a62005-03-25 12:31:53 -060010668 return IRQ_NONE;
10669}
10670
10671static void ipw_rf_kill(void *adapter)
10672{
10673 struct ipw_priv *priv = adapter;
10674 unsigned long flags;
Jeff Garzikbf794512005-07-31 13:07:26 -040010675
James Ketrenos43f66a62005-03-25 12:31:53 -060010676 spin_lock_irqsave(&priv->lock, flags);
10677
10678 if (rf_kill_active(priv)) {
10679 IPW_DEBUG_RF_KILL("RF Kill active, rescheduling GPIO check\n");
10680 if (priv->workqueue)
10681 queue_delayed_work(priv->workqueue,
10682 &priv->rf_kill, 2 * HZ);
10683 goto exit_unlock;
10684 }
10685
10686 /* RF Kill is now disabled, so bring the device back up */
10687
10688 if (!(priv->status & STATUS_RF_KILL_MASK)) {
10689 IPW_DEBUG_RF_KILL("HW RF Kill no longer active, restarting "
10690 "device\n");
10691
10692 /* we can not do an adapter restart while inside an irq lock */
10693 queue_work(priv->workqueue, &priv->adapter_restart);
Jeff Garzikbf794512005-07-31 13:07:26 -040010694 } else
James Ketrenos43f66a62005-03-25 12:31:53 -060010695 IPW_DEBUG_RF_KILL("HW RF Kill deactivated. SW RF Kill still "
10696 "enabled\n");
10697
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010698 exit_unlock:
James Ketrenos43f66a62005-03-25 12:31:53 -060010699 spin_unlock_irqrestore(&priv->lock, flags);
10700}
10701
David Howellsc4028952006-11-22 14:57:56 +000010702static void ipw_bg_rf_kill(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -050010703{
David Howellsc4028952006-11-22 14:57:56 +000010704 struct ipw_priv *priv =
10705 container_of(work, struct ipw_priv, rf_kill.work);
Zhu Yi46441512006-01-24 16:37:59 +080010706 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +000010707 ipw_rf_kill(priv);
Zhu Yi46441512006-01-24 16:37:59 +080010708 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010709}
10710
Adrian Bunka73e22b2006-01-21 01:39:42 +010010711static void ipw_link_up(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -050010712{
James Ketrenosafbf30a2005-08-25 00:05:33 -050010713 priv->last_seq_num = -1;
10714 priv->last_frag_num = -1;
10715 priv->last_packet_time = 0;
10716
James Ketrenosa613bff2005-08-24 21:43:11 -050010717 netif_carrier_on(priv->net_dev);
James Ketrenosa613bff2005-08-24 21:43:11 -050010718
James Ketrenosc848d0a2005-08-24 21:56:24 -050010719 cancel_delayed_work(&priv->request_scan);
Dan Williamsea177302008-06-02 17:51:23 -040010720 cancel_delayed_work(&priv->request_direct_scan);
10721 cancel_delayed_work(&priv->request_passive_scan);
Dan Williams0b531672007-10-09 13:55:24 -040010722 cancel_delayed_work(&priv->scan_event);
James Ketrenosa613bff2005-08-24 21:43:11 -050010723 ipw_reset_stats(priv);
10724 /* Ensure the rate is updated immediately */
10725 priv->last_rate = ipw_get_current_rate(priv);
10726 ipw_gather_stats(priv);
10727 ipw_led_link_up(priv);
10728 notify_wx_assoc_event(priv);
10729
10730 if (priv->config & CFG_BACKGROUND_SCAN)
10731 queue_delayed_work(priv->workqueue, &priv->request_scan, HZ);
10732}
10733
David Howellsc4028952006-11-22 14:57:56 +000010734static void ipw_bg_link_up(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -050010735{
David Howellsc4028952006-11-22 14:57:56 +000010736 struct ipw_priv *priv =
10737 container_of(work, struct ipw_priv, link_up);
Zhu Yi46441512006-01-24 16:37:59 +080010738 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +000010739 ipw_link_up(priv);
Zhu Yi46441512006-01-24 16:37:59 +080010740 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010741}
10742
Adrian Bunka73e22b2006-01-21 01:39:42 +010010743static void ipw_link_down(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -050010744{
10745 ipw_led_link_down(priv);
10746 netif_carrier_off(priv->net_dev);
James Ketrenosa613bff2005-08-24 21:43:11 -050010747 notify_wx_assoc_event(priv);
10748
10749 /* Cancel any queued work ... */
10750 cancel_delayed_work(&priv->request_scan);
Dan Williamsea177302008-06-02 17:51:23 -040010751 cancel_delayed_work(&priv->request_direct_scan);
10752 cancel_delayed_work(&priv->request_passive_scan);
James Ketrenosa613bff2005-08-24 21:43:11 -050010753 cancel_delayed_work(&priv->adhoc_check);
10754 cancel_delayed_work(&priv->gather_stats);
10755
10756 ipw_reset_stats(priv);
10757
James Ketrenosafbf30a2005-08-25 00:05:33 -050010758 if (!(priv->status & STATUS_EXIT_PENDING)) {
10759 /* Queue up another scan... */
David Howellsc4028952006-11-22 14:57:56 +000010760 queue_delayed_work(priv->workqueue, &priv->request_scan, 0);
Dan Williams0b531672007-10-09 13:55:24 -040010761 } else
10762 cancel_delayed_work(&priv->scan_event);
James Ketrenosa613bff2005-08-24 21:43:11 -050010763}
10764
David Howellsc4028952006-11-22 14:57:56 +000010765static void ipw_bg_link_down(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -050010766{
David Howellsc4028952006-11-22 14:57:56 +000010767 struct ipw_priv *priv =
10768 container_of(work, struct ipw_priv, link_down);
Zhu Yi46441512006-01-24 16:37:59 +080010769 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +000010770 ipw_link_down(priv);
Zhu Yi46441512006-01-24 16:37:59 +080010771 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010772}
10773
Adrian Bunk2ef19e62007-12-11 23:20:22 +010010774static int __devinit ipw_setup_deferred_work(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -060010775{
10776 int ret = 0;
10777
James Ketrenos43f66a62005-03-25 12:31:53 -060010778 priv->workqueue = create_workqueue(DRV_NAME);
James Ketrenos43f66a62005-03-25 12:31:53 -060010779 init_waitqueue_head(&priv->wait_command_queue);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010780 init_waitqueue_head(&priv->wait_state);
James Ketrenos43f66a62005-03-25 12:31:53 -060010781
David Howellsc4028952006-11-22 14:57:56 +000010782 INIT_DELAYED_WORK(&priv->adhoc_check, ipw_bg_adhoc_check);
10783 INIT_WORK(&priv->associate, ipw_bg_associate);
10784 INIT_WORK(&priv->disassociate, ipw_bg_disassociate);
10785 INIT_WORK(&priv->system_config, ipw_system_config);
10786 INIT_WORK(&priv->rx_replenish, ipw_bg_rx_queue_replenish);
10787 INIT_WORK(&priv->adapter_restart, ipw_bg_adapter_restart);
10788 INIT_DELAYED_WORK(&priv->rf_kill, ipw_bg_rf_kill);
10789 INIT_WORK(&priv->up, ipw_bg_up);
10790 INIT_WORK(&priv->down, ipw_bg_down);
10791 INIT_DELAYED_WORK(&priv->request_scan, ipw_request_scan);
Dan Williamsea177302008-06-02 17:51:23 -040010792 INIT_DELAYED_WORK(&priv->request_direct_scan, ipw_request_direct_scan);
10793 INIT_DELAYED_WORK(&priv->request_passive_scan, ipw_request_passive_scan);
Dan Williams0b531672007-10-09 13:55:24 -040010794 INIT_DELAYED_WORK(&priv->scan_event, ipw_scan_event);
David Howellsc4028952006-11-22 14:57:56 +000010795 INIT_DELAYED_WORK(&priv->gather_stats, ipw_bg_gather_stats);
10796 INIT_WORK(&priv->abort_scan, ipw_bg_abort_scan);
10797 INIT_WORK(&priv->roam, ipw_bg_roam);
10798 INIT_DELAYED_WORK(&priv->scan_check, ipw_bg_scan_check);
10799 INIT_WORK(&priv->link_up, ipw_bg_link_up);
10800 INIT_WORK(&priv->link_down, ipw_bg_link_down);
10801 INIT_DELAYED_WORK(&priv->led_link_on, ipw_bg_led_link_on);
10802 INIT_DELAYED_WORK(&priv->led_link_off, ipw_bg_led_link_off);
10803 INIT_DELAYED_WORK(&priv->led_act_off, ipw_bg_led_activity_off);
10804 INIT_WORK(&priv->merge_networks, ipw_merge_adhoc_network);
James Ketrenos43f66a62005-03-25 12:31:53 -060010805
Zhu Yie43e3c12006-04-13 17:20:45 +080010806#ifdef CONFIG_IPW2200_QOS
David Howellsc4028952006-11-22 14:57:56 +000010807 INIT_WORK(&priv->qos_activate, ipw_bg_qos_activate);
Zhu Yie43e3c12006-04-13 17:20:45 +080010808#endif /* CONFIG_IPW2200_QOS */
James Ketrenos43f66a62005-03-25 12:31:53 -060010809
10810 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
10811 ipw_irq_tasklet, (unsigned long)priv);
10812
10813 return ret;
10814}
10815
James Ketrenos43f66a62005-03-25 12:31:53 -060010816static void shim__set_security(struct net_device *dev,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010817 struct libipw_security *sec)
James Ketrenos43f66a62005-03-25 12:31:53 -060010818{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010819 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060010820 int i;
Jeff Garzikbf794512005-07-31 13:07:26 -040010821 for (i = 0; i < 4; i++) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010822 if (sec->flags & (1 << i)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -050010823 priv->ieee->sec.encode_alg[i] = sec->encode_alg[i];
James Ketrenosb095c382005-08-24 22:04:42 -050010824 priv->ieee->sec.key_sizes[i] = sec->key_sizes[i];
James Ketrenos43f66a62005-03-25 12:31:53 -060010825 if (sec->key_sizes[i] == 0)
James Ketrenosb095c382005-08-24 22:04:42 -050010826 priv->ieee->sec.flags &= ~(1 << i);
10827 else {
10828 memcpy(priv->ieee->sec.keys[i], sec->keys[i],
James Ketrenos43f66a62005-03-25 12:31:53 -060010829 sec->key_sizes[i]);
James Ketrenosb095c382005-08-24 22:04:42 -050010830 priv->ieee->sec.flags |= (1 << i);
10831 }
James Ketrenos43f66a62005-03-25 12:31:53 -060010832 priv->status |= STATUS_SECURITY_UPDATED;
James Ketrenosb095c382005-08-24 22:04:42 -050010833 } else if (sec->level != SEC_LEVEL_1)
10834 priv->ieee->sec.flags &= ~(1 << i);
James Ketrenos43f66a62005-03-25 12:31:53 -060010835 }
10836
James Ketrenosb095c382005-08-24 22:04:42 -050010837 if (sec->flags & SEC_ACTIVE_KEY) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010838 if (sec->active_key <= 3) {
James Ketrenosb095c382005-08-24 22:04:42 -050010839 priv->ieee->sec.active_key = sec->active_key;
10840 priv->ieee->sec.flags |= SEC_ACTIVE_KEY;
Jeff Garzikbf794512005-07-31 13:07:26 -040010841 } else
James Ketrenosb095c382005-08-24 22:04:42 -050010842 priv->ieee->sec.flags &= ~SEC_ACTIVE_KEY;
James Ketrenos43f66a62005-03-25 12:31:53 -060010843 priv->status |= STATUS_SECURITY_UPDATED;
James Ketrenosb095c382005-08-24 22:04:42 -050010844 } else
10845 priv->ieee->sec.flags &= ~SEC_ACTIVE_KEY;
James Ketrenos43f66a62005-03-25 12:31:53 -060010846
10847 if ((sec->flags & SEC_AUTH_MODE) &&
James Ketrenosb095c382005-08-24 22:04:42 -050010848 (priv->ieee->sec.auth_mode != sec->auth_mode)) {
10849 priv->ieee->sec.auth_mode = sec->auth_mode;
10850 priv->ieee->sec.flags |= SEC_AUTH_MODE;
James Ketrenos43f66a62005-03-25 12:31:53 -060010851 if (sec->auth_mode == WLAN_AUTH_SHARED_KEY)
10852 priv->capability |= CAP_SHARED_KEY;
10853 else
10854 priv->capability &= ~CAP_SHARED_KEY;
10855 priv->status |= STATUS_SECURITY_UPDATED;
10856 }
Jeff Garzikbf794512005-07-31 13:07:26 -040010857
James Ketrenosb095c382005-08-24 22:04:42 -050010858 if (sec->flags & SEC_ENABLED && priv->ieee->sec.enabled != sec->enabled) {
10859 priv->ieee->sec.flags |= SEC_ENABLED;
10860 priv->ieee->sec.enabled = sec->enabled;
James Ketrenos43f66a62005-03-25 12:31:53 -060010861 priv->status |= STATUS_SECURITY_UPDATED;
Jeff Garzikbf794512005-07-31 13:07:26 -040010862 if (sec->enabled)
James Ketrenos43f66a62005-03-25 12:31:53 -060010863 priv->capability |= CAP_PRIVACY_ON;
10864 else
10865 priv->capability &= ~CAP_PRIVACY_ON;
10866 }
Jeff Garzikbf794512005-07-31 13:07:26 -040010867
James Ketrenosafbf30a2005-08-25 00:05:33 -050010868 if (sec->flags & SEC_ENCRYPT)
10869 priv->ieee->sec.encrypt = sec->encrypt;
James Ketrenos43f66a62005-03-25 12:31:53 -060010870
James Ketrenosb095c382005-08-24 22:04:42 -050010871 if (sec->flags & SEC_LEVEL && priv->ieee->sec.level != sec->level) {
10872 priv->ieee->sec.level = sec->level;
10873 priv->ieee->sec.flags |= SEC_LEVEL;
James Ketrenos43f66a62005-03-25 12:31:53 -060010874 priv->status |= STATUS_SECURITY_UPDATED;
10875 }
10876
Zhu Yi1fbfea52005-08-05 17:22:56 +080010877 if (!priv->ieee->host_encrypt && (sec->flags & SEC_ENCRYPT))
10878 ipw_set_hwcrypto_keys(priv);
10879
Jeff Garzikbf794512005-07-31 13:07:26 -040010880 /* To match current functionality of ipw2100 (which works well w/
10881 * various supplicants, we don't force a disassociate if the
James Ketrenos43f66a62005-03-25 12:31:53 -060010882 * privacy capability changes ... */
10883#if 0
10884 if ((priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) &&
Jeff Garzikbf794512005-07-31 13:07:26 -040010885 (((priv->assoc_request.capability &
Al Viro5b5e8072007-12-27 01:54:06 -050010886 cpu_to_le16(WLAN_CAPABILITY_PRIVACY)) && !sec->enabled) ||
Jeff Garzikbf794512005-07-31 13:07:26 -040010887 (!(priv->assoc_request.capability &
Al Viro5b5e8072007-12-27 01:54:06 -050010888 cpu_to_le16(WLAN_CAPABILITY_PRIVACY)) && sec->enabled))) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010889 IPW_DEBUG_ASSOC("Disassociating due to capability "
10890 "change.\n");
10891 ipw_disassociate(priv);
10892 }
10893#endif
10894}
10895
Jeff Garzikbf794512005-07-31 13:07:26 -040010896static int init_supported_rates(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -060010897 struct ipw_supported_rates *rates)
10898{
10899 /* TODO: Mask out rates based on priv->rates_mask */
10900
10901 memset(rates, 0, sizeof(*rates));
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010902 /* configure supported rates */
James Ketrenos43f66a62005-03-25 12:31:53 -060010903 switch (priv->ieee->freq_band) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010904 case LIBIPW_52GHZ_BAND:
James Ketrenos43f66a62005-03-25 12:31:53 -060010905 rates->ieee_mode = IPW_A_MODE;
10906 rates->purpose = IPW_RATE_CAPABILITIES;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010907 ipw_add_ofdm_scan_rates(rates, LIBIPW_CCK_MODULATION,
10908 LIBIPW_OFDM_DEFAULT_RATES_MASK);
James Ketrenos43f66a62005-03-25 12:31:53 -060010909 break;
10910
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010911 default: /* Mixed or 2.4Ghz */
James Ketrenos43f66a62005-03-25 12:31:53 -060010912 rates->ieee_mode = IPW_G_MODE;
10913 rates->purpose = IPW_RATE_CAPABILITIES;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010914 ipw_add_cck_scan_rates(rates, LIBIPW_CCK_MODULATION,
10915 LIBIPW_CCK_DEFAULT_RATES_MASK);
10916 if (priv->ieee->modulation & LIBIPW_OFDM_MODULATION) {
10917 ipw_add_ofdm_scan_rates(rates, LIBIPW_CCK_MODULATION,
10918 LIBIPW_OFDM_DEFAULT_RATES_MASK);
James Ketrenos43f66a62005-03-25 12:31:53 -060010919 }
10920 break;
10921 }
10922
10923 return 0;
10924}
10925
Jeff Garzikbf794512005-07-31 13:07:26 -040010926static int ipw_config(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -060010927{
James Ketrenos43f66a62005-03-25 12:31:53 -060010928 /* This is only called from ipw_up, which resets/reloads the firmware
10929 so, we don't need to first disable the card before we configure
10930 it */
Zhu Yi6de9f7f2005-08-11 14:39:33 +080010931 if (ipw_set_tx_power(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -060010932 goto error;
10933
10934 /* initialize adapter address */
10935 if (ipw_send_adapter_address(priv, priv->net_dev->dev_addr))
10936 goto error;
10937
10938 /* set basic system config settings */
10939 init_sys_config(&priv->sys_config);
Zhu Yi810dabd2006-01-24 16:36:59 +080010940
10941 /* Support Bluetooth if we have BT h/w on board, and user wants to.
10942 * Does not support BT priority yet (don't abort or defer our Tx) */
10943 if (bt_coexist) {
Zhu Yi2638bc32006-01-24 16:37:52 +080010944 unsigned char bt_caps = priv->eeprom[EEPROM_SKU_CAPABILITY];
Zhu Yi810dabd2006-01-24 16:36:59 +080010945
10946 if (bt_caps & EEPROM_SKU_CAP_BT_CHANNEL_SIG)
10947 priv->sys_config.bt_coexistence
Zhu Yi2638bc32006-01-24 16:37:52 +080010948 |= CFG_BT_COEXISTENCE_SIGNAL_CHNL;
Zhu Yi810dabd2006-01-24 16:36:59 +080010949 if (bt_caps & EEPROM_SKU_CAP_BT_OOB)
10950 priv->sys_config.bt_coexistence
Zhu Yi2638bc32006-01-24 16:37:52 +080010951 |= CFG_BT_COEXISTENCE_OOB;
Zhu Yi810dabd2006-01-24 16:36:59 +080010952 }
10953
Zhu Yid685b8c2006-04-13 17:20:27 +080010954#ifdef CONFIG_IPW2200_PROMISCUOUS
10955 if (priv->prom_net_dev && netif_running(priv->prom_net_dev)) {
10956 priv->sys_config.accept_all_data_frames = 1;
10957 priv->sys_config.accept_non_directed_frames = 1;
10958 priv->sys_config.accept_all_mgmt_bcpr = 1;
10959 priv->sys_config.accept_all_mgmt_frames = 1;
10960 }
10961#endif
10962
James Ketrenosc848d0a2005-08-24 21:56:24 -050010963 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
10964 priv->sys_config.answer_broadcast_ssid_probe = 1;
10965 else
10966 priv->sys_config.answer_broadcast_ssid_probe = 0;
10967
Zhu Yid685b8c2006-04-13 17:20:27 +080010968 if (ipw_send_system_config(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -060010969 goto error;
10970
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010971 init_supported_rates(priv, &priv->rates);
10972 if (ipw_send_supported_rates(priv, &priv->rates))
James Ketrenos43f66a62005-03-25 12:31:53 -060010973 goto error;
10974
10975 /* Set request-to-send threshold */
10976 if (priv->rts_threshold) {
10977 if (ipw_send_rts_threshold(priv, priv->rts_threshold))
10978 goto error;
10979 }
Zhu Yie43e3c12006-04-13 17:20:45 +080010980#ifdef CONFIG_IPW2200_QOS
James Ketrenosb095c382005-08-24 22:04:42 -050010981 IPW_DEBUG_QOS("QoS: call ipw_qos_activate\n");
10982 ipw_qos_activate(priv, NULL);
Zhu Yie43e3c12006-04-13 17:20:45 +080010983#endif /* CONFIG_IPW2200_QOS */
James Ketrenos43f66a62005-03-25 12:31:53 -060010984
10985 if (ipw_set_random_seed(priv))
10986 goto error;
Jeff Garzikbf794512005-07-31 13:07:26 -040010987
James Ketrenos43f66a62005-03-25 12:31:53 -060010988 /* final state transition to the RUN state */
10989 if (ipw_send_host_complete(priv))
10990 goto error;
10991
James Ketrenose6666192005-08-12 09:17:04 -050010992 priv->status |= STATUS_INIT;
10993
10994 ipw_led_init(priv);
10995 ipw_led_radio_on(priv);
10996 priv->notif_missed_beacons = 0;
10997
10998 /* Set hardware WEP key if it is configured. */
10999 if ((priv->capability & CAP_PRIVACY_ON) &&
11000 (priv->ieee->sec.level == SEC_LEVEL_1) &&
11001 !(priv->ieee->host_encrypt || priv->ieee->host_decrypt))
11002 ipw_set_hwcrypto_keys(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060011003
11004 return 0;
Jeff Garzikbf794512005-07-31 13:07:26 -040011005
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011006 error:
James Ketrenos43f66a62005-03-25 12:31:53 -060011007 return -EIO;
11008}
11009
James Ketrenos4f36f802005-08-03 20:36:56 -050011010/*
11011 * NOTE:
11012 *
11013 * These tables have been tested in conjunction with the
11014 * Intel PRO/Wireless 2200BG and 2915ABG Network Connection Adapters.
11015 *
11016 * Altering this values, using it on other hardware, or in geographies
11017 * not intended for resale of the above mentioned Intel adapters has
11018 * not been tested.
11019 *
Henrik Brix Andersen48a84772006-02-14 09:09:52 +080011020 * Remember to update the table in README.ipw2200 when changing this
11021 * table.
11022 *
James Ketrenos4f36f802005-08-03 20:36:56 -050011023 */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011024static const struct libipw_geo ipw_geos[] = {
James Ketrenos4f36f802005-08-03 20:36:56 -050011025 { /* Restricted */
11026 "---",
11027 .bg_channels = 11,
11028 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11029 {2427, 4}, {2432, 5}, {2437, 6},
11030 {2442, 7}, {2447, 8}, {2452, 9},
11031 {2457, 10}, {2462, 11}},
11032 },
11033
11034 { /* Custom US/Canada */
11035 "ZZF",
11036 .bg_channels = 11,
11037 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11038 {2427, 4}, {2432, 5}, {2437, 6},
11039 {2442, 7}, {2447, 8}, {2452, 9},
11040 {2457, 10}, {2462, 11}},
11041 .a_channels = 8,
11042 .a = {{5180, 36},
11043 {5200, 40},
11044 {5220, 44},
11045 {5240, 48},
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011046 {5260, 52, LIBIPW_CH_PASSIVE_ONLY},
11047 {5280, 56, LIBIPW_CH_PASSIVE_ONLY},
11048 {5300, 60, LIBIPW_CH_PASSIVE_ONLY},
11049 {5320, 64, LIBIPW_CH_PASSIVE_ONLY}},
James Ketrenos4f36f802005-08-03 20:36:56 -050011050 },
11051
11052 { /* Rest of World */
11053 "ZZD",
11054 .bg_channels = 13,
11055 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11056 {2427, 4}, {2432, 5}, {2437, 6},
11057 {2442, 7}, {2447, 8}, {2452, 9},
11058 {2457, 10}, {2462, 11}, {2467, 12},
11059 {2472, 13}},
11060 },
11061
11062 { /* Custom USA & Europe & High */
11063 "ZZA",
11064 .bg_channels = 11,
11065 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11066 {2427, 4}, {2432, 5}, {2437, 6},
11067 {2442, 7}, {2447, 8}, {2452, 9},
11068 {2457, 10}, {2462, 11}},
11069 .a_channels = 13,
11070 .a = {{5180, 36},
11071 {5200, 40},
11072 {5220, 44},
11073 {5240, 48},
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011074 {5260, 52, LIBIPW_CH_PASSIVE_ONLY},
11075 {5280, 56, LIBIPW_CH_PASSIVE_ONLY},
11076 {5300, 60, LIBIPW_CH_PASSIVE_ONLY},
11077 {5320, 64, LIBIPW_CH_PASSIVE_ONLY},
James Ketrenos4f36f802005-08-03 20:36:56 -050011078 {5745, 149},
11079 {5765, 153},
11080 {5785, 157},
11081 {5805, 161},
11082 {5825, 165}},
11083 },
11084
11085 { /* Custom NA & Europe */
11086 "ZZB",
11087 .bg_channels = 11,
11088 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11089 {2427, 4}, {2432, 5}, {2437, 6},
11090 {2442, 7}, {2447, 8}, {2452, 9},
11091 {2457, 10}, {2462, 11}},
11092 .a_channels = 13,
11093 .a = {{5180, 36},
11094 {5200, 40},
11095 {5220, 44},
11096 {5240, 48},
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011097 {5260, 52, LIBIPW_CH_PASSIVE_ONLY},
11098 {5280, 56, LIBIPW_CH_PASSIVE_ONLY},
11099 {5300, 60, LIBIPW_CH_PASSIVE_ONLY},
11100 {5320, 64, LIBIPW_CH_PASSIVE_ONLY},
11101 {5745, 149, LIBIPW_CH_PASSIVE_ONLY},
11102 {5765, 153, LIBIPW_CH_PASSIVE_ONLY},
11103 {5785, 157, LIBIPW_CH_PASSIVE_ONLY},
11104 {5805, 161, LIBIPW_CH_PASSIVE_ONLY},
11105 {5825, 165, LIBIPW_CH_PASSIVE_ONLY}},
James Ketrenos4f36f802005-08-03 20:36:56 -050011106 },
11107
11108 { /* Custom Japan */
11109 "ZZC",
11110 .bg_channels = 11,
11111 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11112 {2427, 4}, {2432, 5}, {2437, 6},
11113 {2442, 7}, {2447, 8}, {2452, 9},
11114 {2457, 10}, {2462, 11}},
11115 .a_channels = 4,
11116 .a = {{5170, 34}, {5190, 38},
11117 {5210, 42}, {5230, 46}},
11118 },
11119
11120 { /* Custom */
11121 "ZZM",
11122 .bg_channels = 11,
11123 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11124 {2427, 4}, {2432, 5}, {2437, 6},
11125 {2442, 7}, {2447, 8}, {2452, 9},
11126 {2457, 10}, {2462, 11}},
11127 },
11128
11129 { /* Europe */
11130 "ZZE",
11131 .bg_channels = 13,
11132 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11133 {2427, 4}, {2432, 5}, {2437, 6},
11134 {2442, 7}, {2447, 8}, {2452, 9},
11135 {2457, 10}, {2462, 11}, {2467, 12},
11136 {2472, 13}},
11137 .a_channels = 19,
11138 .a = {{5180, 36},
11139 {5200, 40},
11140 {5220, 44},
11141 {5240, 48},
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011142 {5260, 52, LIBIPW_CH_PASSIVE_ONLY},
11143 {5280, 56, LIBIPW_CH_PASSIVE_ONLY},
11144 {5300, 60, LIBIPW_CH_PASSIVE_ONLY},
11145 {5320, 64, LIBIPW_CH_PASSIVE_ONLY},
11146 {5500, 100, LIBIPW_CH_PASSIVE_ONLY},
11147 {5520, 104, LIBIPW_CH_PASSIVE_ONLY},
11148 {5540, 108, LIBIPW_CH_PASSIVE_ONLY},
11149 {5560, 112, LIBIPW_CH_PASSIVE_ONLY},
11150 {5580, 116, LIBIPW_CH_PASSIVE_ONLY},
11151 {5600, 120, LIBIPW_CH_PASSIVE_ONLY},
11152 {5620, 124, LIBIPW_CH_PASSIVE_ONLY},
11153 {5640, 128, LIBIPW_CH_PASSIVE_ONLY},
11154 {5660, 132, LIBIPW_CH_PASSIVE_ONLY},
11155 {5680, 136, LIBIPW_CH_PASSIVE_ONLY},
11156 {5700, 140, LIBIPW_CH_PASSIVE_ONLY}},
James Ketrenos4f36f802005-08-03 20:36:56 -050011157 },
11158
11159 { /* Custom Japan */
11160 "ZZJ",
11161 .bg_channels = 14,
11162 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11163 {2427, 4}, {2432, 5}, {2437, 6},
11164 {2442, 7}, {2447, 8}, {2452, 9},
11165 {2457, 10}, {2462, 11}, {2467, 12},
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011166 {2472, 13}, {2484, 14, LIBIPW_CH_B_ONLY}},
James Ketrenos4f36f802005-08-03 20:36:56 -050011167 .a_channels = 4,
11168 .a = {{5170, 34}, {5190, 38},
11169 {5210, 42}, {5230, 46}},
11170 },
11171
James Ketrenos03520572005-10-19 16:12:31 -050011172 { /* Rest of World */
11173 "ZZR",
11174 .bg_channels = 14,
11175 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11176 {2427, 4}, {2432, 5}, {2437, 6},
11177 {2442, 7}, {2447, 8}, {2452, 9},
11178 {2457, 10}, {2462, 11}, {2467, 12},
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011179 {2472, 13}, {2484, 14, LIBIPW_CH_B_ONLY |
11180 LIBIPW_CH_PASSIVE_ONLY}},
James Ketrenos03520572005-10-19 16:12:31 -050011181 },
11182
James Ketrenos4f36f802005-08-03 20:36:56 -050011183 { /* High Band */
11184 "ZZH",
11185 .bg_channels = 13,
11186 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11187 {2427, 4}, {2432, 5}, {2437, 6},
11188 {2442, 7}, {2447, 8}, {2452, 9},
11189 {2457, 10}, {2462, 11},
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011190 {2467, 12, LIBIPW_CH_PASSIVE_ONLY},
11191 {2472, 13, LIBIPW_CH_PASSIVE_ONLY}},
James Ketrenos4f36f802005-08-03 20:36:56 -050011192 .a_channels = 4,
11193 .a = {{5745, 149}, {5765, 153},
11194 {5785, 157}, {5805, 161}},
11195 },
11196
11197 { /* Custom Europe */
11198 "ZZG",
11199 .bg_channels = 13,
11200 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11201 {2427, 4}, {2432, 5}, {2437, 6},
11202 {2442, 7}, {2447, 8}, {2452, 9},
11203 {2457, 10}, {2462, 11},
11204 {2467, 12}, {2472, 13}},
11205 .a_channels = 4,
11206 .a = {{5180, 36}, {5200, 40},
11207 {5220, 44}, {5240, 48}},
11208 },
11209
11210 { /* Europe */
11211 "ZZK",
11212 .bg_channels = 13,
11213 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11214 {2427, 4}, {2432, 5}, {2437, 6},
11215 {2442, 7}, {2447, 8}, {2452, 9},
11216 {2457, 10}, {2462, 11},
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011217 {2467, 12, LIBIPW_CH_PASSIVE_ONLY},
11218 {2472, 13, LIBIPW_CH_PASSIVE_ONLY}},
James Ketrenos4f36f802005-08-03 20:36:56 -050011219 .a_channels = 24,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011220 .a = {{5180, 36, LIBIPW_CH_PASSIVE_ONLY},
11221 {5200, 40, LIBIPW_CH_PASSIVE_ONLY},
11222 {5220, 44, LIBIPW_CH_PASSIVE_ONLY},
11223 {5240, 48, LIBIPW_CH_PASSIVE_ONLY},
11224 {5260, 52, LIBIPW_CH_PASSIVE_ONLY},
11225 {5280, 56, LIBIPW_CH_PASSIVE_ONLY},
11226 {5300, 60, LIBIPW_CH_PASSIVE_ONLY},
11227 {5320, 64, LIBIPW_CH_PASSIVE_ONLY},
11228 {5500, 100, LIBIPW_CH_PASSIVE_ONLY},
11229 {5520, 104, LIBIPW_CH_PASSIVE_ONLY},
11230 {5540, 108, LIBIPW_CH_PASSIVE_ONLY},
11231 {5560, 112, LIBIPW_CH_PASSIVE_ONLY},
11232 {5580, 116, LIBIPW_CH_PASSIVE_ONLY},
11233 {5600, 120, LIBIPW_CH_PASSIVE_ONLY},
11234 {5620, 124, LIBIPW_CH_PASSIVE_ONLY},
11235 {5640, 128, LIBIPW_CH_PASSIVE_ONLY},
11236 {5660, 132, LIBIPW_CH_PASSIVE_ONLY},
11237 {5680, 136, LIBIPW_CH_PASSIVE_ONLY},
11238 {5700, 140, LIBIPW_CH_PASSIVE_ONLY},
11239 {5745, 149, LIBIPW_CH_PASSIVE_ONLY},
11240 {5765, 153, LIBIPW_CH_PASSIVE_ONLY},
11241 {5785, 157, LIBIPW_CH_PASSIVE_ONLY},
11242 {5805, 161, LIBIPW_CH_PASSIVE_ONLY},
11243 {5825, 165, LIBIPW_CH_PASSIVE_ONLY}},
James Ketrenos4f36f802005-08-03 20:36:56 -050011244 },
11245
11246 { /* Europe */
11247 "ZZL",
11248 .bg_channels = 11,
11249 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11250 {2427, 4}, {2432, 5}, {2437, 6},
11251 {2442, 7}, {2447, 8}, {2452, 9},
11252 {2457, 10}, {2462, 11}},
11253 .a_channels = 13,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011254 .a = {{5180, 36, LIBIPW_CH_PASSIVE_ONLY},
11255 {5200, 40, LIBIPW_CH_PASSIVE_ONLY},
11256 {5220, 44, LIBIPW_CH_PASSIVE_ONLY},
11257 {5240, 48, LIBIPW_CH_PASSIVE_ONLY},
11258 {5260, 52, LIBIPW_CH_PASSIVE_ONLY},
11259 {5280, 56, LIBIPW_CH_PASSIVE_ONLY},
11260 {5300, 60, LIBIPW_CH_PASSIVE_ONLY},
11261 {5320, 64, LIBIPW_CH_PASSIVE_ONLY},
11262 {5745, 149, LIBIPW_CH_PASSIVE_ONLY},
11263 {5765, 153, LIBIPW_CH_PASSIVE_ONLY},
11264 {5785, 157, LIBIPW_CH_PASSIVE_ONLY},
11265 {5805, 161, LIBIPW_CH_PASSIVE_ONLY},
11266 {5825, 165, LIBIPW_CH_PASSIVE_ONLY}},
James Ketrenos4f36f802005-08-03 20:36:56 -050011267 }
James Ketrenosafbf30a2005-08-25 00:05:33 -050011268};
11269
James Ketrenos43f66a62005-03-25 12:31:53 -060011270#define MAX_HW_RESTARTS 5
11271static int ipw_up(struct ipw_priv *priv)
11272{
James Ketrenos4f36f802005-08-03 20:36:56 -050011273 int rc, i, j;
James Ketrenos43f66a62005-03-25 12:31:53 -060011274
Dan Williamsc3d72b92009-02-11 13:26:06 -050011275 /* Age scan list entries found before suspend */
11276 if (priv->suspend_time) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011277 libipw_networks_age(priv->ieee, priv->suspend_time);
Dan Williamsc3d72b92009-02-11 13:26:06 -050011278 priv->suspend_time = 0;
11279 }
11280
James Ketrenos43f66a62005-03-25 12:31:53 -060011281 if (priv->status & STATUS_EXIT_PENDING)
11282 return -EIO;
11283
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011284 if (cmdlog && !priv->cmdlog) {
Yan Burmane6e3f122006-12-02 13:38:14 +020011285 priv->cmdlog = kcalloc(cmdlog, sizeof(*priv->cmdlog),
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011286 GFP_KERNEL);
11287 if (priv->cmdlog == NULL) {
11288 IPW_ERROR("Error allocating %d command log entries.\n",
11289 cmdlog);
Zhu Yid0b526b2006-04-13 17:19:50 +080011290 return -ENOMEM;
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011291 } else {
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011292 priv->cmdlog_len = cmdlog;
11293 }
11294 }
11295
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011296 for (i = 0; i < MAX_HW_RESTARTS; i++) {
Jeff Garzikbf794512005-07-31 13:07:26 -040011297 /* Load the microcode, firmware, and eeprom.
James Ketrenos43f66a62005-03-25 12:31:53 -060011298 * Also start the clocks. */
11299 rc = ipw_load(priv);
11300 if (rc) {
Peter Jonesa4f6bbb2005-08-26 00:33:34 -050011301 IPW_ERROR("Unable to load firmware: %d\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -060011302 return rc;
11303 }
11304
11305 ipw_init_ordinals(priv);
11306 if (!(priv->config & CFG_CUSTOM_MAC))
11307 eeprom_parse_mac(priv, priv->mac_addr);
11308 memcpy(priv->net_dev->dev_addr, priv->mac_addr, ETH_ALEN);
John W. Linville5e5eab52009-10-06 16:45:14 -040011309 memcpy(priv->net_dev->perm_addr, priv->mac_addr, ETH_ALEN);
James Ketrenos43f66a62005-03-25 12:31:53 -060011310
James Ketrenos4f36f802005-08-03 20:36:56 -050011311 for (j = 0; j < ARRAY_SIZE(ipw_geos); j++) {
11312 if (!memcmp(&priv->eeprom[EEPROM_COUNTRY_CODE],
11313 ipw_geos[j].name, 3))
11314 break;
11315 }
James Ketrenos03520572005-10-19 16:12:31 -050011316 if (j == ARRAY_SIZE(ipw_geos)) {
11317 IPW_WARNING("SKU [%c%c%c] not recognized.\n",
11318 priv->eeprom[EEPROM_COUNTRY_CODE + 0],
11319 priv->eeprom[EEPROM_COUNTRY_CODE + 1],
11320 priv->eeprom[EEPROM_COUNTRY_CODE + 2]);
James Ketrenos4f36f802005-08-03 20:36:56 -050011321 j = 0;
James Ketrenos03520572005-10-19 16:12:31 -050011322 }
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011323 if (libipw_set_geo(priv->ieee, &ipw_geos[j])) {
James Ketrenos4f36f802005-08-03 20:36:56 -050011324 IPW_WARNING("Could not set geography.");
James Ketrenos43f66a62005-03-25 12:31:53 -060011325 return 0;
James Ketrenos4f36f802005-08-03 20:36:56 -050011326 }
11327
James Ketrenosb095c382005-08-24 22:04:42 -050011328 if (priv->status & STATUS_RF_KILL_SW) {
11329 IPW_WARNING("Radio disabled by module parameter.\n");
11330 return 0;
11331 } else if (rf_kill_active(priv)) {
11332 IPW_WARNING("Radio Frequency Kill Switch is On:\n"
11333 "Kill switch must be turned off for "
11334 "wireless networking to work.\n");
11335 queue_delayed_work(priv->workqueue, &priv->rf_kill,
11336 2 * HZ);
James Ketrenos43f66a62005-03-25 12:31:53 -060011337 return 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -050011338 }
James Ketrenos43f66a62005-03-25 12:31:53 -060011339
11340 rc = ipw_config(priv);
11341 if (!rc) {
11342 IPW_DEBUG_INFO("Configured device on count %i\n", i);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011343
James Ketrenose6666192005-08-12 09:17:04 -050011344 /* If configure to try and auto-associate, kick
11345 * off a scan. */
David Howellsc4028952006-11-22 14:57:56 +000011346 queue_delayed_work(priv->workqueue,
11347 &priv->request_scan, 0);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011348
James Ketrenos43f66a62005-03-25 12:31:53 -060011349 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060011350 }
Jeff Garzikbf794512005-07-31 13:07:26 -040011351
James Ketrenosc848d0a2005-08-24 21:56:24 -050011352 IPW_DEBUG_INFO("Device configuration failed: 0x%08X\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -060011353 IPW_DEBUG_INFO("Failed to config device on retry %d of %d\n",
11354 i, MAX_HW_RESTARTS);
11355
11356 /* We had an error bringing up the hardware, so take it
11357 * all the way back down so we can try again */
11358 ipw_down(priv);
11359 }
11360
Jeff Garzikbf794512005-07-31 13:07:26 -040011361 /* tried to restart and config the device for as long as our
James Ketrenos43f66a62005-03-25 12:31:53 -060011362 * patience could withstand */
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011363 IPW_ERROR("Unable to initialize device after %d attempts.\n", i);
James Ketrenosc848d0a2005-08-24 21:56:24 -050011364
James Ketrenos43f66a62005-03-25 12:31:53 -060011365 return -EIO;
11366}
11367
David Howellsc4028952006-11-22 14:57:56 +000011368static void ipw_bg_up(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -050011369{
David Howellsc4028952006-11-22 14:57:56 +000011370 struct ipw_priv *priv =
11371 container_of(work, struct ipw_priv, up);
Zhu Yi46441512006-01-24 16:37:59 +080011372 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +000011373 ipw_up(priv);
Zhu Yi46441512006-01-24 16:37:59 +080011374 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -050011375}
11376
James Ketrenosb095c382005-08-24 22:04:42 -050011377static void ipw_deinit(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -060011378{
James Ketrenosb095c382005-08-24 22:04:42 -050011379 int i;
11380
11381 if (priv->status & STATUS_SCANNING) {
11382 IPW_DEBUG_INFO("Aborting scan during shutdown.\n");
11383 ipw_abort_scan(priv);
11384 }
11385
11386 if (priv->status & STATUS_ASSOCIATED) {
11387 IPW_DEBUG_INFO("Disassociating during shutdown.\n");
11388 ipw_disassociate(priv);
11389 }
11390
11391 ipw_led_shutdown(priv);
11392
11393 /* Wait up to 1s for status to change to not scanning and not
11394 * associated (disassociation can take a while for a ful 802.11
11395 * exchange */
11396 for (i = 1000; i && (priv->status &
11397 (STATUS_DISASSOCIATING |
11398 STATUS_ASSOCIATED | STATUS_SCANNING)); i--)
11399 udelay(10);
11400
11401 if (priv->status & (STATUS_DISASSOCIATING |
11402 STATUS_ASSOCIATED | STATUS_SCANNING))
11403 IPW_DEBUG_INFO("Still associated or scanning...\n");
11404 else
11405 IPW_DEBUG_INFO("Took %dms to de-init\n", 1000 - i);
11406
James Ketrenosc848d0a2005-08-24 21:56:24 -050011407 /* Attempt to disable the card */
James Ketrenos43f66a62005-03-25 12:31:53 -060011408 ipw_send_card_disable(priv, 0);
James Ketrenosb095c382005-08-24 22:04:42 -050011409
11410 priv->status &= ~STATUS_INIT;
11411}
11412
James Ketrenos43f66a62005-03-25 12:31:53 -060011413static void ipw_down(struct ipw_priv *priv)
11414{
James Ketrenosb095c382005-08-24 22:04:42 -050011415 int exit_pending = priv->status & STATUS_EXIT_PENDING;
11416
11417 priv->status |= STATUS_EXIT_PENDING;
11418
11419 if (ipw_is_init(priv))
11420 ipw_deinit(priv);
11421
11422 /* Wipe out the EXIT_PENDING status bit if we are not actually
11423 * exiting the module */
11424 if (!exit_pending)
11425 priv->status &= ~STATUS_EXIT_PENDING;
James Ketrenos43f66a62005-03-25 12:31:53 -060011426
11427 /* tell the device to stop sending interrupts */
11428 ipw_disable_interrupts(priv);
11429
11430 /* Clear all bits but the RF Kill */
James Ketrenosb095c382005-08-24 22:04:42 -050011431 priv->status &= STATUS_RF_KILL_MASK | STATUS_EXIT_PENDING;
James Ketrenos43f66a62005-03-25 12:31:53 -060011432 netif_carrier_off(priv->net_dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060011433
11434 ipw_stop_nic(priv);
James Ketrenosa613bff2005-08-24 21:43:11 -050011435
11436 ipw_led_radio_off(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060011437}
11438
David Howellsc4028952006-11-22 14:57:56 +000011439static void ipw_bg_down(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -050011440{
David Howellsc4028952006-11-22 14:57:56 +000011441 struct ipw_priv *priv =
11442 container_of(work, struct ipw_priv, down);
Zhu Yi46441512006-01-24 16:37:59 +080011443 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +000011444 ipw_down(priv);
Zhu Yi46441512006-01-24 16:37:59 +080011445 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060011446}
11447
11448/* Called by register_netdev() */
11449static int ipw_net_init(struct net_device *dev)
11450{
John W. Linvillea3caa992009-08-25 14:12:25 -040011451 int i, rc = 0;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011452 struct ipw_priv *priv = libipw_priv(dev);
John W. Linvillea3caa992009-08-25 14:12:25 -040011453 const struct libipw_geo *geo = libipw_get_geo(priv->ieee);
11454 struct wireless_dev *wdev = &priv->ieee->wdev;
Zhu Yi46441512006-01-24 16:37:59 +080011455 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060011456
James Ketrenosc848d0a2005-08-24 21:56:24 -050011457 if (ipw_up(priv)) {
John W. Linvillea3caa992009-08-25 14:12:25 -040011458 rc = -EIO;
11459 goto out;
James Ketrenos43f66a62005-03-25 12:31:53 -060011460 }
11461
John W. Linvillea3caa992009-08-25 14:12:25 -040011462 memcpy(wdev->wiphy->perm_addr, priv->mac_addr, ETH_ALEN);
11463
11464 /* fill-out priv->ieee->bg_band */
11465 if (geo->bg_channels) {
11466 struct ieee80211_supported_band *bg_band = &priv->ieee->bg_band;
11467
11468 bg_band->band = IEEE80211_BAND_2GHZ;
11469 bg_band->n_channels = geo->bg_channels;
11470 bg_band->channels =
11471 kzalloc(geo->bg_channels *
11472 sizeof(struct ieee80211_channel), GFP_KERNEL);
11473 /* translate geo->bg to bg_band.channels */
11474 for (i = 0; i < geo->bg_channels; i++) {
11475 bg_band->channels[i].band = IEEE80211_BAND_2GHZ;
11476 bg_band->channels[i].center_freq = geo->bg[i].freq;
11477 bg_band->channels[i].hw_value = geo->bg[i].channel;
11478 bg_band->channels[i].max_power = geo->bg[i].max_power;
11479 if (geo->bg[i].flags & LIBIPW_CH_PASSIVE_ONLY)
11480 bg_band->channels[i].flags |=
11481 IEEE80211_CHAN_PASSIVE_SCAN;
11482 if (geo->bg[i].flags & LIBIPW_CH_NO_IBSS)
11483 bg_band->channels[i].flags |=
11484 IEEE80211_CHAN_NO_IBSS;
11485 if (geo->bg[i].flags & LIBIPW_CH_RADAR_DETECT)
11486 bg_band->channels[i].flags |=
11487 IEEE80211_CHAN_RADAR;
11488 /* No equivalent for LIBIPW_CH_80211H_RULES,
11489 LIBIPW_CH_UNIFORM_SPREADING, or
11490 LIBIPW_CH_B_ONLY... */
11491 }
11492 /* point at bitrate info */
11493 bg_band->bitrates = ipw2200_bg_rates;
11494 bg_band->n_bitrates = ipw2200_num_bg_rates;
11495
11496 wdev->wiphy->bands[IEEE80211_BAND_2GHZ] = bg_band;
11497 }
11498
11499 /* fill-out priv->ieee->a_band */
11500 if (geo->a_channels) {
11501 struct ieee80211_supported_band *a_band = &priv->ieee->a_band;
11502
11503 a_band->band = IEEE80211_BAND_5GHZ;
11504 a_band->n_channels = geo->a_channels;
11505 a_band->channels =
11506 kzalloc(geo->a_channels *
11507 sizeof(struct ieee80211_channel), GFP_KERNEL);
11508 /* translate geo->bg to a_band.channels */
11509 for (i = 0; i < geo->a_channels; i++) {
11510 a_band->channels[i].band = IEEE80211_BAND_2GHZ;
11511 a_band->channels[i].center_freq = geo->a[i].freq;
11512 a_band->channels[i].hw_value = geo->a[i].channel;
11513 a_band->channels[i].max_power = geo->a[i].max_power;
11514 if (geo->a[i].flags & LIBIPW_CH_PASSIVE_ONLY)
11515 a_band->channels[i].flags |=
11516 IEEE80211_CHAN_PASSIVE_SCAN;
11517 if (geo->a[i].flags & LIBIPW_CH_NO_IBSS)
11518 a_band->channels[i].flags |=
11519 IEEE80211_CHAN_NO_IBSS;
11520 if (geo->a[i].flags & LIBIPW_CH_RADAR_DETECT)
11521 a_band->channels[i].flags |=
11522 IEEE80211_CHAN_RADAR;
11523 /* No equivalent for LIBIPW_CH_80211H_RULES,
11524 LIBIPW_CH_UNIFORM_SPREADING, or
11525 LIBIPW_CH_B_ONLY... */
11526 }
11527 /* point at bitrate info */
11528 a_band->bitrates = ipw2200_a_rates;
11529 a_band->n_bitrates = ipw2200_num_a_rates;
11530
11531 wdev->wiphy->bands[IEEE80211_BAND_5GHZ] = a_band;
11532 }
11533
11534 set_wiphy_dev(wdev->wiphy, &priv->pci_dev->dev);
11535
11536 /* With that information in place, we can now register the wiphy... */
11537 if (wiphy_register(wdev->wiphy)) {
11538 rc = -EIO;
11539 goto out;
11540 }
11541
11542out:
Zhu Yi46441512006-01-24 16:37:59 +080011543 mutex_unlock(&priv->mutex);
John W. Linvillea3caa992009-08-25 14:12:25 -040011544 return rc;
James Ketrenos43f66a62005-03-25 12:31:53 -060011545}
11546
11547/* PCI driver stuff */
Alexey Dobriyana3aa1882010-01-07 11:58:11 +000011548static DEFINE_PCI_DEVICE_TABLE(card_ids) = {
James Ketrenos43f66a62005-03-25 12:31:53 -060011549 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2701, 0, 0, 0},
11550 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2702, 0, 0, 0},
11551 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2711, 0, 0, 0},
11552 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2712, 0, 0, 0},
11553 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2721, 0, 0, 0},
11554 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2722, 0, 0, 0},
11555 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2731, 0, 0, 0},
11556 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2732, 0, 0, 0},
11557 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2741, 0, 0, 0},
11558 {PCI_VENDOR_ID_INTEL, 0x1043, 0x103c, 0x2741, 0, 0, 0},
11559 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2742, 0, 0, 0},
11560 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2751, 0, 0, 0},
11561 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2752, 0, 0, 0},
11562 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2753, 0, 0, 0},
11563 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2754, 0, 0, 0},
11564 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2761, 0, 0, 0},
11565 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2762, 0, 0, 0},
Joe Perches8ab0ea72009-06-24 22:13:27 -070011566 {PCI_VDEVICE(INTEL, 0x104f), 0},
11567 {PCI_VDEVICE(INTEL, 0x4220), 0}, /* BG */
11568 {PCI_VDEVICE(INTEL, 0x4221), 0}, /* BG */
11569 {PCI_VDEVICE(INTEL, 0x4223), 0}, /* ABG */
11570 {PCI_VDEVICE(INTEL, 0x4224), 0}, /* ABG */
Jeff Garzikbf794512005-07-31 13:07:26 -040011571
James Ketrenos43f66a62005-03-25 12:31:53 -060011572 /* required last entry */
11573 {0,}
11574};
11575
11576MODULE_DEVICE_TABLE(pci, card_ids);
11577
11578static struct attribute *ipw_sysfs_entries[] = {
11579 &dev_attr_rf_kill.attr,
11580 &dev_attr_direct_dword.attr,
11581 &dev_attr_indirect_byte.attr,
11582 &dev_attr_indirect_dword.attr,
11583 &dev_attr_mem_gpio_reg.attr,
11584 &dev_attr_command_event_reg.attr,
11585 &dev_attr_nic_type.attr,
11586 &dev_attr_status.attr,
11587 &dev_attr_cfg.attr,
James Ketrenosb39860c2005-08-12 09:36:32 -050011588 &dev_attr_error.attr,
11589 &dev_attr_event_log.attr,
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011590 &dev_attr_cmd_log.attr,
James Ketrenos43f66a62005-03-25 12:31:53 -060011591 &dev_attr_eeprom_delay.attr,
11592 &dev_attr_ucode_version.attr,
11593 &dev_attr_rtc.attr,
James Ketrenosa613bff2005-08-24 21:43:11 -050011594 &dev_attr_scan_age.attr,
11595 &dev_attr_led.attr,
James Ketrenosb095c382005-08-24 22:04:42 -050011596 &dev_attr_speed_scan.attr,
11597 &dev_attr_net_stats.attr,
Zhu Yi375dd242007-02-14 16:04:24 +080011598 &dev_attr_channels.attr,
Zhu Yid685b8c2006-04-13 17:20:27 +080011599#ifdef CONFIG_IPW2200_PROMISCUOUS
11600 &dev_attr_rtap_iface.attr,
11601 &dev_attr_rtap_filter.attr,
11602#endif
James Ketrenos43f66a62005-03-25 12:31:53 -060011603 NULL
11604};
11605
11606static struct attribute_group ipw_attribute_group = {
11607 .name = NULL, /* put in device directory */
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011608 .attrs = ipw_sysfs_entries,
James Ketrenos43f66a62005-03-25 12:31:53 -060011609};
11610
Zhu Yid685b8c2006-04-13 17:20:27 +080011611#ifdef CONFIG_IPW2200_PROMISCUOUS
11612static int ipw_prom_open(struct net_device *dev)
11613{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011614 struct ipw_prom_priv *prom_priv = libipw_priv(dev);
Zhu Yid685b8c2006-04-13 17:20:27 +080011615 struct ipw_priv *priv = prom_priv->priv;
11616
11617 IPW_DEBUG_INFO("prom dev->open\n");
11618 netif_carrier_off(dev);
Zhu Yid685b8c2006-04-13 17:20:27 +080011619
11620 if (priv->ieee->iw_mode != IW_MODE_MONITOR) {
11621 priv->sys_config.accept_all_data_frames = 1;
11622 priv->sys_config.accept_non_directed_frames = 1;
11623 priv->sys_config.accept_all_mgmt_bcpr = 1;
11624 priv->sys_config.accept_all_mgmt_frames = 1;
11625
11626 ipw_send_system_config(priv);
11627 }
11628
11629 return 0;
11630}
11631
11632static int ipw_prom_stop(struct net_device *dev)
11633{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011634 struct ipw_prom_priv *prom_priv = libipw_priv(dev);
Zhu Yid685b8c2006-04-13 17:20:27 +080011635 struct ipw_priv *priv = prom_priv->priv;
11636
11637 IPW_DEBUG_INFO("prom dev->stop\n");
11638
11639 if (priv->ieee->iw_mode != IW_MODE_MONITOR) {
11640 priv->sys_config.accept_all_data_frames = 0;
11641 priv->sys_config.accept_non_directed_frames = 0;
11642 priv->sys_config.accept_all_mgmt_bcpr = 0;
11643 priv->sys_config.accept_all_mgmt_frames = 0;
11644
11645 ipw_send_system_config(priv);
11646 }
11647
11648 return 0;
11649}
11650
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +000011651static netdev_tx_t ipw_prom_hard_start_xmit(struct sk_buff *skb,
11652 struct net_device *dev)
Zhu Yid685b8c2006-04-13 17:20:27 +080011653{
11654 IPW_DEBUG_INFO("prom dev->xmit\n");
Patrick McHardy4153e772009-06-12 04:08:02 +000011655 dev_kfree_skb(skb);
11656 return NETDEV_TX_OK;
Zhu Yid685b8c2006-04-13 17:20:27 +080011657}
11658
Stephen Hemminger44e9ad02009-03-20 19:36:41 +000011659static const struct net_device_ops ipw_prom_netdev_ops = {
11660 .ndo_open = ipw_prom_open,
11661 .ndo_stop = ipw_prom_stop,
11662 .ndo_start_xmit = ipw_prom_hard_start_xmit,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011663 .ndo_change_mtu = libipw_change_mtu,
Stephen Hemminger44e9ad02009-03-20 19:36:41 +000011664 .ndo_set_mac_address = eth_mac_addr,
11665 .ndo_validate_addr = eth_validate_addr,
11666};
11667
Zhu Yid685b8c2006-04-13 17:20:27 +080011668static int ipw_prom_alloc(struct ipw_priv *priv)
11669{
11670 int rc = 0;
11671
11672 if (priv->prom_net_dev)
11673 return -EPERM;
11674
Pavel Roskin27ae60f2010-03-12 00:01:22 -050011675 priv->prom_net_dev = alloc_libipw(sizeof(struct ipw_prom_priv), 1);
Zhu Yid685b8c2006-04-13 17:20:27 +080011676 if (priv->prom_net_dev == NULL)
11677 return -ENOMEM;
11678
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011679 priv->prom_priv = libipw_priv(priv->prom_net_dev);
Zhu Yid685b8c2006-04-13 17:20:27 +080011680 priv->prom_priv->ieee = netdev_priv(priv->prom_net_dev);
11681 priv->prom_priv->priv = priv;
11682
11683 strcpy(priv->prom_net_dev->name, "rtap%d");
Daniel Drake3f2eeac2008-04-02 20:33:54 +010011684 memcpy(priv->prom_net_dev->dev_addr, priv->mac_addr, ETH_ALEN);
Zhu Yid685b8c2006-04-13 17:20:27 +080011685
11686 priv->prom_net_dev->type = ARPHRD_IEEE80211_RADIOTAP;
Stephen Hemminger44e9ad02009-03-20 19:36:41 +000011687 priv->prom_net_dev->netdev_ops = &ipw_prom_netdev_ops;
Zhu Yid685b8c2006-04-13 17:20:27 +080011688
11689 priv->prom_priv->ieee->iw_mode = IW_MODE_MONITOR;
Masakazu Mokuno229ce3a2008-05-14 14:16:50 +090011690 SET_NETDEV_DEV(priv->prom_net_dev, &priv->pci_dev->dev);
Zhu Yid685b8c2006-04-13 17:20:27 +080011691
11692 rc = register_netdev(priv->prom_net_dev);
11693 if (rc) {
Pavel Roskin27ae60f2010-03-12 00:01:22 -050011694 free_libipw(priv->prom_net_dev, 1);
Zhu Yid685b8c2006-04-13 17:20:27 +080011695 priv->prom_net_dev = NULL;
11696 return rc;
11697 }
11698
11699 return 0;
11700}
11701
11702static void ipw_prom_free(struct ipw_priv *priv)
11703{
11704 if (!priv->prom_net_dev)
11705 return;
11706
11707 unregister_netdev(priv->prom_net_dev);
Pavel Roskin27ae60f2010-03-12 00:01:22 -050011708 free_libipw(priv->prom_net_dev, 1);
Zhu Yid685b8c2006-04-13 17:20:27 +080011709
11710 priv->prom_net_dev = NULL;
11711}
11712
11713#endif
11714
Stephen Hemminger44e9ad02009-03-20 19:36:41 +000011715static const struct net_device_ops ipw_netdev_ops = {
11716 .ndo_init = ipw_net_init,
11717 .ndo_open = ipw_net_open,
11718 .ndo_stop = ipw_net_stop,
11719 .ndo_set_multicast_list = ipw_net_set_multicast_list,
11720 .ndo_set_mac_address = ipw_net_set_mac_address,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011721 .ndo_start_xmit = libipw_xmit,
11722 .ndo_change_mtu = libipw_change_mtu,
Stephen Hemminger44e9ad02009-03-20 19:36:41 +000011723 .ndo_validate_addr = eth_validate_addr,
11724};
Zhu Yid685b8c2006-04-13 17:20:27 +080011725
Adrian Bunk2ef19e62007-12-11 23:20:22 +010011726static int __devinit ipw_pci_probe(struct pci_dev *pdev,
11727 const struct pci_device_id *ent)
James Ketrenos43f66a62005-03-25 12:31:53 -060011728{
11729 int err = 0;
11730 struct net_device *net_dev;
11731 void __iomem *base;
11732 u32 length, val;
11733 struct ipw_priv *priv;
James Ketrenosafbf30a2005-08-25 00:05:33 -050011734 int i;
James Ketrenos43f66a62005-03-25 12:31:53 -060011735
Pavel Roskin27ae60f2010-03-12 00:01:22 -050011736 net_dev = alloc_libipw(sizeof(struct ipw_priv), 0);
James Ketrenos43f66a62005-03-25 12:31:53 -060011737 if (net_dev == NULL) {
11738 err = -ENOMEM;
11739 goto out;
11740 }
11741
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011742 priv = libipw_priv(net_dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060011743 priv->ieee = netdev_priv(net_dev);
James Ketrenosa613bff2005-08-24 21:43:11 -050011744
James Ketrenos43f66a62005-03-25 12:31:53 -060011745 priv->net_dev = net_dev;
11746 priv->pci_dev = pdev;
James Ketrenos43f66a62005-03-25 12:31:53 -060011747 ipw_debug_level = debug;
Zhu Yi89c318e2006-06-08 22:19:49 -070011748 spin_lock_init(&priv->irq_lock);
James Ketrenos43f66a62005-03-25 12:31:53 -060011749 spin_lock_init(&priv->lock);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011750 for (i = 0; i < IPW_IBSS_MAC_HASH_SIZE; i++)
11751 INIT_LIST_HEAD(&priv->ibss_mac_hash[i]);
James Ketrenos43f66a62005-03-25 12:31:53 -060011752
Zhu Yi46441512006-01-24 16:37:59 +080011753 mutex_init(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060011754 if (pci_enable_device(pdev)) {
11755 err = -ENODEV;
Pavel Roskin27ae60f2010-03-12 00:01:22 -050011756 goto out_free_libipw;
James Ketrenos43f66a62005-03-25 12:31:53 -060011757 }
11758
11759 pci_set_master(pdev);
11760
Yang Hongyang284901a2009-04-06 19:01:15 -070011761 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Jeff Garzikbf794512005-07-31 13:07:26 -040011762 if (!err)
Yang Hongyang284901a2009-04-06 19:01:15 -070011763 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
James Ketrenos43f66a62005-03-25 12:31:53 -060011764 if (err) {
11765 printk(KERN_WARNING DRV_NAME ": No suitable DMA available.\n");
11766 goto out_pci_disable_device;
11767 }
11768
11769 pci_set_drvdata(pdev, priv);
11770
11771 err = pci_request_regions(pdev, DRV_NAME);
Jeff Garzikbf794512005-07-31 13:07:26 -040011772 if (err)
James Ketrenos43f66a62005-03-25 12:31:53 -060011773 goto out_pci_disable_device;
11774
Jeff Garzikbf794512005-07-31 13:07:26 -040011775 /* We disable the RETRY_TIMEOUT register (0x41) to keep
James Ketrenos43f66a62005-03-25 12:31:53 -060011776 * PCI Tx retries from interfering with C3 CPU state */
Jeff Garzikbf794512005-07-31 13:07:26 -040011777 pci_read_config_dword(pdev, 0x40, &val);
11778 if ((val & 0x0000ff00) != 0)
James Ketrenos43f66a62005-03-25 12:31:53 -060011779 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
Jeff Garzikbf794512005-07-31 13:07:26 -040011780
James Ketrenos43f66a62005-03-25 12:31:53 -060011781 length = pci_resource_len(pdev, 0);
11782 priv->hw_len = length;
Jeff Garzikbf794512005-07-31 13:07:26 -040011783
Arjan van de Ven275f1652008-10-20 21:42:39 -070011784 base = pci_ioremap_bar(pdev, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -060011785 if (!base) {
11786 err = -ENODEV;
11787 goto out_pci_release_regions;
11788 }
11789
11790 priv->hw_base = base;
11791 IPW_DEBUG_INFO("pci_resource_len = 0x%08x\n", length);
11792 IPW_DEBUG_INFO("pci_resource_base = %p\n", base);
11793
11794 err = ipw_setup_deferred_work(priv);
11795 if (err) {
11796 IPW_ERROR("Unable to setup deferred work\n");
11797 goto out_iounmap;
11798 }
11799
James Ketrenosb095c382005-08-24 22:04:42 -050011800 ipw_sw_reset(priv, 1);
James Ketrenos43f66a62005-03-25 12:31:53 -060011801
Thomas Gleixner1fb9df52006-07-01 19:29:39 -070011802 err = request_irq(pdev->irq, ipw_isr, IRQF_SHARED, DRV_NAME, priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060011803 if (err) {
11804 IPW_ERROR("Error allocating IRQ %d\n", pdev->irq);
11805 goto out_destroy_workqueue;
11806 }
11807
James Ketrenos43f66a62005-03-25 12:31:53 -060011808 SET_NETDEV_DEV(net_dev, &pdev->dev);
11809
Zhu Yi46441512006-01-24 16:37:59 +080011810 mutex_lock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -050011811
James Ketrenos43f66a62005-03-25 12:31:53 -060011812 priv->ieee->hard_start_xmit = ipw_net_hard_start_xmit;
11813 priv->ieee->set_security = shim__set_security;
James Ketrenos227d2dc2005-07-28 16:25:55 -050011814 priv->ieee->is_queue_full = ipw_net_is_queue_full;
James Ketrenos43f66a62005-03-25 12:31:53 -060011815
Zhu Yie43e3c12006-04-13 17:20:45 +080011816#ifdef CONFIG_IPW2200_QOS
Zhu Yia5cf4fe2006-04-13 17:19:11 +080011817 priv->ieee->is_qos_active = ipw_is_qos_active;
James Ketrenos3b9990c2005-08-19 13:18:55 -050011818 priv->ieee->handle_probe_response = ipw_handle_beacon;
11819 priv->ieee->handle_beacon = ipw_handle_probe_response;
11820 priv->ieee->handle_assoc_response = ipw_handle_assoc_response;
Zhu Yie43e3c12006-04-13 17:20:45 +080011821#endif /* CONFIG_IPW2200_QOS */
James Ketrenosb095c382005-08-24 22:04:42 -050011822
James Ketrenosc848d0a2005-08-24 21:56:24 -050011823 priv->ieee->perfect_rssi = -20;
11824 priv->ieee->worst_rssi = -85;
James Ketrenos43f66a62005-03-25 12:31:53 -060011825
Stephen Hemminger44e9ad02009-03-20 19:36:41 +000011826 net_dev->netdev_ops = &ipw_netdev_ops;
Benoit Boissinot97a78ca2005-09-15 17:30:28 +000011827 priv->wireless_data.spy_data = &priv->ieee->spy_data;
Benoit Boissinot97a78ca2005-09-15 17:30:28 +000011828 net_dev->wireless_data = &priv->wireless_data;
James Ketrenos43f66a62005-03-25 12:31:53 -060011829 net_dev->wireless_handlers = &ipw_wx_handler_def;
11830 net_dev->ethtool_ops = &ipw_ethtool_ops;
11831 net_dev->irq = pdev->irq;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011832 net_dev->base_addr = (unsigned long)priv->hw_base;
James Ketrenos43f66a62005-03-25 12:31:53 -060011833 net_dev->mem_start = pci_resource_start(pdev, 0);
11834 net_dev->mem_end = net_dev->mem_start + pci_resource_len(pdev, 0) - 1;
11835
11836 err = sysfs_create_group(&pdev->dev.kobj, &ipw_attribute_group);
11837 if (err) {
11838 IPW_ERROR("failed to create sysfs device attributes\n");
Zhu Yi46441512006-01-24 16:37:59 +080011839 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060011840 goto out_release_irq;
11841 }
11842
Zhu Yi46441512006-01-24 16:37:59 +080011843 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060011844 err = register_netdev(net_dev);
11845 if (err) {
11846 IPW_ERROR("failed to register network device\n");
James Ketrenosa613bff2005-08-24 21:43:11 -050011847 goto out_remove_sysfs;
James Ketrenos43f66a62005-03-25 12:31:53 -060011848 }
Henrik Brix Andersen48a84772006-02-14 09:09:52 +080011849
Zhu Yid685b8c2006-04-13 17:20:27 +080011850#ifdef CONFIG_IPW2200_PROMISCUOUS
11851 if (rtap_iface) {
11852 err = ipw_prom_alloc(priv);
11853 if (err) {
11854 IPW_ERROR("Failed to register promiscuous network "
11855 "device (error %d).\n", err);
11856 unregister_netdev(priv->net_dev);
11857 goto out_remove_sysfs;
11858 }
11859 }
11860#endif
11861
Henrik Brix Andersen48a84772006-02-14 09:09:52 +080011862 printk(KERN_INFO DRV_NAME ": Detected geography %s (%d 802.11bg "
11863 "channels, %d 802.11a channels)\n",
11864 priv->ieee->geo.name, priv->ieee->geo.bg_channels,
11865 priv->ieee->geo.a_channels);
11866
James Ketrenos43f66a62005-03-25 12:31:53 -060011867 return 0;
11868
James Ketrenosa613bff2005-08-24 21:43:11 -050011869 out_remove_sysfs:
James Ketrenos43f66a62005-03-25 12:31:53 -060011870 sysfs_remove_group(&pdev->dev.kobj, &ipw_attribute_group);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011871 out_release_irq:
James Ketrenos43f66a62005-03-25 12:31:53 -060011872 free_irq(pdev->irq, priv);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011873 out_destroy_workqueue:
James Ketrenos43f66a62005-03-25 12:31:53 -060011874 destroy_workqueue(priv->workqueue);
11875 priv->workqueue = NULL;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011876 out_iounmap:
James Ketrenos43f66a62005-03-25 12:31:53 -060011877 iounmap(priv->hw_base);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011878 out_pci_release_regions:
James Ketrenos43f66a62005-03-25 12:31:53 -060011879 pci_release_regions(pdev);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011880 out_pci_disable_device:
James Ketrenos43f66a62005-03-25 12:31:53 -060011881 pci_disable_device(pdev);
11882 pci_set_drvdata(pdev, NULL);
Pavel Roskin27ae60f2010-03-12 00:01:22 -050011883 out_free_libipw:
11884 free_libipw(priv->net_dev, 0);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011885 out:
James Ketrenos43f66a62005-03-25 12:31:53 -060011886 return err;
11887}
11888
Adrian Bunk2ef19e62007-12-11 23:20:22 +010011889static void __devexit ipw_pci_remove(struct pci_dev *pdev)
James Ketrenos43f66a62005-03-25 12:31:53 -060011890{
11891 struct ipw_priv *priv = pci_get_drvdata(pdev);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011892 struct list_head *p, *q;
11893 int i;
James Ketrenosb095c382005-08-24 22:04:42 -050011894
James Ketrenos43f66a62005-03-25 12:31:53 -060011895 if (!priv)
11896 return;
11897
Zhu Yi46441512006-01-24 16:37:59 +080011898 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060011899
James Ketrenosafbf30a2005-08-25 00:05:33 -050011900 priv->status |= STATUS_EXIT_PENDING;
James Ketrenos43f66a62005-03-25 12:31:53 -060011901 ipw_down(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060011902 sysfs_remove_group(&pdev->dev.kobj, &ipw_attribute_group);
11903
Zhu Yi46441512006-01-24 16:37:59 +080011904 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060011905
11906 unregister_netdev(priv->net_dev);
11907
11908 if (priv->rxq) {
11909 ipw_rx_queue_free(priv, priv->rxq);
11910 priv->rxq = NULL;
11911 }
11912 ipw_tx_queue_free(priv);
11913
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011914 if (priv->cmdlog) {
11915 kfree(priv->cmdlog);
11916 priv->cmdlog = NULL;
11917 }
James Ketrenos43f66a62005-03-25 12:31:53 -060011918 /* ipw_down will ensure that there is no more pending work
11919 * in the workqueue's, so we can safely remove them now. */
James Ketrenosa613bff2005-08-24 21:43:11 -050011920 cancel_delayed_work(&priv->adhoc_check);
11921 cancel_delayed_work(&priv->gather_stats);
11922 cancel_delayed_work(&priv->request_scan);
Dan Williamsea177302008-06-02 17:51:23 -040011923 cancel_delayed_work(&priv->request_direct_scan);
11924 cancel_delayed_work(&priv->request_passive_scan);
Dan Williams0b531672007-10-09 13:55:24 -040011925 cancel_delayed_work(&priv->scan_event);
James Ketrenosa613bff2005-08-24 21:43:11 -050011926 cancel_delayed_work(&priv->rf_kill);
11927 cancel_delayed_work(&priv->scan_check);
11928 destroy_workqueue(priv->workqueue);
11929 priv->workqueue = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -060011930
James Ketrenosafbf30a2005-08-25 00:05:33 -050011931 /* Free MAC hash list for ADHOC */
11932 for (i = 0; i < IPW_IBSS_MAC_HASH_SIZE; i++) {
11933 list_for_each_safe(p, q, &priv->ibss_mac_hash[i]) {
James Ketrenosafbf30a2005-08-25 00:05:33 -050011934 list_del(p);
Zhu Yi489f4452006-01-24 16:37:41 +080011935 kfree(list_entry(p, struct ipw_ibss_seq, list));
James Ketrenosafbf30a2005-08-25 00:05:33 -050011936 }
11937 }
11938
Jesper Juhl8f760782006-06-27 02:55:06 -070011939 kfree(priv->error);
11940 priv->error = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -060011941
Zhu Yid685b8c2006-04-13 17:20:27 +080011942#ifdef CONFIG_IPW2200_PROMISCUOUS
11943 ipw_prom_free(priv);
11944#endif
11945
James Ketrenos43f66a62005-03-25 12:31:53 -060011946 free_irq(pdev->irq, priv);
11947 iounmap(priv->hw_base);
11948 pci_release_regions(pdev);
11949 pci_disable_device(pdev);
11950 pci_set_drvdata(pdev, NULL);
Pavel Roskin27ae60f2010-03-12 00:01:22 -050011951 /* wiphy_unregister needs to be here, before free_libipw */
John W. Linvillea3caa992009-08-25 14:12:25 -040011952 wiphy_unregister(priv->ieee->wdev.wiphy);
11953 kfree(priv->ieee->a_band.channels);
11954 kfree(priv->ieee->bg_band.channels);
Pavel Roskin27ae60f2010-03-12 00:01:22 -050011955 free_libipw(priv->net_dev, 0);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011956 free_firmware();
James Ketrenos43f66a62005-03-25 12:31:53 -060011957}
11958
James Ketrenos43f66a62005-03-25 12:31:53 -060011959#ifdef CONFIG_PM
Pavel Machek583a4e82005-09-03 15:56:58 -070011960static int ipw_pci_suspend(struct pci_dev *pdev, pm_message_t state)
James Ketrenos43f66a62005-03-25 12:31:53 -060011961{
11962 struct ipw_priv *priv = pci_get_drvdata(pdev);
11963 struct net_device *dev = priv->net_dev;
11964
11965 printk(KERN_INFO "%s: Going into suspend...\n", dev->name);
11966
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011967 /* Take down the device; powers it off, etc. */
James Ketrenos43f66a62005-03-25 12:31:53 -060011968 ipw_down(priv);
11969
11970 /* Remove the PRESENT state of the device */
11971 netif_device_detach(dev);
11972
James Ketrenos43f66a62005-03-25 12:31:53 -060011973 pci_save_state(pdev);
James Ketrenos43f66a62005-03-25 12:31:53 -060011974 pci_disable_device(pdev);
Pavel Machek583a4e82005-09-03 15:56:58 -070011975 pci_set_power_state(pdev, pci_choose_state(pdev, state));
Jeff Garzikbf794512005-07-31 13:07:26 -040011976
Dan Williamsc3d72b92009-02-11 13:26:06 -050011977 priv->suspend_at = get_seconds();
11978
James Ketrenos43f66a62005-03-25 12:31:53 -060011979 return 0;
11980}
11981
11982static int ipw_pci_resume(struct pci_dev *pdev)
11983{
11984 struct ipw_priv *priv = pci_get_drvdata(pdev);
11985 struct net_device *dev = priv->net_dev;
John W. Linville02e0e5e2006-11-07 20:53:48 -050011986 int err;
James Ketrenos43f66a62005-03-25 12:31:53 -060011987 u32 val;
Jeff Garzikbf794512005-07-31 13:07:26 -040011988
James Ketrenos43f66a62005-03-25 12:31:53 -060011989 printk(KERN_INFO "%s: Coming out of suspend...\n", dev->name);
11990
James Ketrenosea2b26e2005-08-24 21:25:16 -050011991 pci_set_power_state(pdev, PCI_D0);
John W. Linville02e0e5e2006-11-07 20:53:48 -050011992 err = pci_enable_device(pdev);
11993 if (err) {
11994 printk(KERN_ERR "%s: pci_enable_device failed on resume\n",
11995 dev->name);
11996 return err;
11997 }
James Ketrenos43f66a62005-03-25 12:31:53 -060011998 pci_restore_state(pdev);
James Ketrenosea2b26e2005-08-24 21:25:16 -050011999
James Ketrenos43f66a62005-03-25 12:31:53 -060012000 /*
12001 * Suspend/Resume resets the PCI configuration space, so we have to
12002 * re-disable the RETRY_TIMEOUT register (0x41) to keep PCI Tx retries
12003 * from interfering with C3 CPU state. pci_restore_state won't help
12004 * here since it only restores the first 64 bytes pci config header.
12005 */
Jeff Garzikbf794512005-07-31 13:07:26 -040012006 pci_read_config_dword(pdev, 0x40, &val);
12007 if ((val & 0x0000ff00) != 0)
James Ketrenos43f66a62005-03-25 12:31:53 -060012008 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
12009
12010 /* Set the device back into the PRESENT state; this will also wake
12011 * the queue of needed */
12012 netif_device_attach(dev);
12013
Dan Williamsc3d72b92009-02-11 13:26:06 -050012014 priv->suspend_time = get_seconds() - priv->suspend_at;
12015
James Ketrenos43f66a62005-03-25 12:31:53 -060012016 /* Bring the device back up */
12017 queue_work(priv->workqueue, &priv->up);
Jeff Garzikbf794512005-07-31 13:07:26 -040012018
James Ketrenos43f66a62005-03-25 12:31:53 -060012019 return 0;
12020}
12021#endif
12022
Zhu Yic8c22c92006-08-21 11:38:39 +080012023static void ipw_pci_shutdown(struct pci_dev *pdev)
12024{
12025 struct ipw_priv *priv = pci_get_drvdata(pdev);
12026
12027 /* Take down the device; powers it off, etc. */
12028 ipw_down(priv);
12029
12030 pci_disable_device(pdev);
12031}
12032
James Ketrenos43f66a62005-03-25 12:31:53 -060012033/* driver initialization stuff */
12034static struct pci_driver ipw_driver = {
12035 .name = DRV_NAME,
12036 .id_table = card_ids,
12037 .probe = ipw_pci_probe,
12038 .remove = __devexit_p(ipw_pci_remove),
12039#ifdef CONFIG_PM
12040 .suspend = ipw_pci_suspend,
12041 .resume = ipw_pci_resume,
12042#endif
Zhu Yic8c22c92006-08-21 11:38:39 +080012043 .shutdown = ipw_pci_shutdown,
James Ketrenos43f66a62005-03-25 12:31:53 -060012044};
12045
12046static int __init ipw_init(void)
12047{
12048 int ret;
12049
12050 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
12051 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
12052
Jeff Garzik29917622006-08-19 17:48:59 -040012053 ret = pci_register_driver(&ipw_driver);
James Ketrenos43f66a62005-03-25 12:31:53 -060012054 if (ret) {
12055 IPW_ERROR("Unable to initialize PCI module\n");
12056 return ret;
12057 }
12058
Jeff Garzik0edd5b42005-09-07 00:48:31 -040012059 ret = driver_create_file(&ipw_driver.driver, &driver_attr_debug_level);
James Ketrenos43f66a62005-03-25 12:31:53 -060012060 if (ret) {
12061 IPW_ERROR("Unable to create driver sysfs file\n");
12062 pci_unregister_driver(&ipw_driver);
12063 return ret;
12064 }
12065
12066 return ret;
12067}
12068
12069static void __exit ipw_exit(void)
12070{
12071 driver_remove_file(&ipw_driver.driver, &driver_attr_debug_level);
12072 pci_unregister_driver(&ipw_driver);
12073}
12074
12075module_param(disable, int, 0444);
12076MODULE_PARM_DESC(disable, "manually disable the radio (default 0 [radio on])");
12077
12078module_param(associate, int, 0444);
Tim Gardner5c7f9b72008-10-14 10:38:03 -060012079MODULE_PARM_DESC(associate, "auto associate when scanning (default off)");
James Ketrenos43f66a62005-03-25 12:31:53 -060012080
12081module_param(auto_create, int, 0444);
12082MODULE_PARM_DESC(auto_create, "auto create adhoc network (default on)");
12083
Reinette Chatre21f8a732009-08-18 10:25:05 -070012084module_param_named(led, led_support, int, 0444);
ubuntu@tjworld.netc086aba2009-03-23 20:29:28 +000012085MODULE_PARM_DESC(led, "enable led control on some systems (default 1 on)");
James Ketrenosa613bff2005-08-24 21:43:11 -050012086
James Ketrenos43f66a62005-03-25 12:31:53 -060012087module_param(debug, int, 0444);
12088MODULE_PARM_DESC(debug, "debug output mask");
12089
Reinette Chatre21f8a732009-08-18 10:25:05 -070012090module_param_named(channel, default_channel, int, 0444);
Jeff Garzikbf794512005-07-31 13:07:26 -040012091MODULE_PARM_DESC(channel, "channel to limit associate to (default 0 [ANY])");
James Ketrenos43f66a62005-03-25 12:31:53 -060012092
Zhu Yid685b8c2006-04-13 17:20:27 +080012093#ifdef CONFIG_IPW2200_PROMISCUOUS
12094module_param(rtap_iface, int, 0444);
12095MODULE_PARM_DESC(rtap_iface, "create the rtap interface (1 - create, default 0)");
12096#endif
12097
Zhu Yie43e3c12006-04-13 17:20:45 +080012098#ifdef CONFIG_IPW2200_QOS
James Ketrenosb095c382005-08-24 22:04:42 -050012099module_param(qos_enable, int, 0444);
12100MODULE_PARM_DESC(qos_enable, "enable all QoS functionalitis");
James Ketrenos43f66a62005-03-25 12:31:53 -060012101
James Ketrenosb095c382005-08-24 22:04:42 -050012102module_param(qos_burst_enable, int, 0444);
12103MODULE_PARM_DESC(qos_burst_enable, "enable QoS burst mode");
12104
12105module_param(qos_no_ack_mask, int, 0444);
12106MODULE_PARM_DESC(qos_no_ack_mask, "mask Tx_Queue to no ack");
12107
12108module_param(burst_duration_CCK, int, 0444);
12109MODULE_PARM_DESC(burst_duration_CCK, "set CCK burst value");
12110
12111module_param(burst_duration_OFDM, int, 0444);
12112MODULE_PARM_DESC(burst_duration_OFDM, "set OFDM burst value");
Zhu Yie43e3c12006-04-13 17:20:45 +080012113#endif /* CONFIG_IPW2200_QOS */
James Ketrenosb095c382005-08-24 22:04:42 -050012114
12115#ifdef CONFIG_IPW2200_MONITOR
Reinette Chatre21f8a732009-08-18 10:25:05 -070012116module_param_named(mode, network_mode, int, 0444);
James Ketrenos43f66a62005-03-25 12:31:53 -060012117MODULE_PARM_DESC(mode, "network mode (0=BSS,1=IBSS,2=Monitor)");
12118#else
Reinette Chatre21f8a732009-08-18 10:25:05 -070012119module_param_named(mode, network_mode, int, 0444);
James Ketrenos43f66a62005-03-25 12:31:53 -060012120MODULE_PARM_DESC(mode, "network mode (0=BSS,1=IBSS)");
12121#endif
12122
Zhu Yi810dabd2006-01-24 16:36:59 +080012123module_param(bt_coexist, int, 0444);
12124MODULE_PARM_DESC(bt_coexist, "enable bluetooth coexistence (default off)");
12125
James Ketrenosb095c382005-08-24 22:04:42 -050012126module_param(hwcrypto, int, 0444);
Zhu Yibde37d02006-01-24 16:38:08 +080012127MODULE_PARM_DESC(hwcrypto, "enable hardware crypto (default off)");
James Ketrenosb095c382005-08-24 22:04:42 -050012128
James Ketrenosf6c5cb72005-08-25 00:39:09 -050012129module_param(cmdlog, int, 0444);
12130MODULE_PARM_DESC(cmdlog,
12131 "allocate a ring buffer for logging firmware commands");
12132
Zhu Yi4bfdb912006-01-24 16:37:16 +080012133module_param(roaming, int, 0444);
12134MODULE_PARM_DESC(roaming, "enable roaming support (default on)");
12135
Zhu Yid2b83e12006-04-13 17:19:36 +080012136module_param(antenna, int, 0444);
12137MODULE_PARM_DESC(antenna, "select antenna 1=Main, 3=Aux, default 0 [both], 2=slow_diversity (choose the one with lower background noise)");
12138
James Ketrenos43f66a62005-03-25 12:31:53 -060012139module_exit(ipw_exit);
12140module_init(ipw_init);