blob: 9368abdf18e297bc49adf599ec0fb89c523c58c5 [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>
Johannes Berg262eb9b22011-07-13 10:39:09 +020035#include <net/cfg80211-wext.h>
James Ketrenos43f66a62005-03-25 12:31:53 -060036#include "ipw2200.h"
Stanislav Yakovleva141e6a2012-04-10 21:44:47 -040037#include "ipw.h"
James Ketrenos43f66a62005-03-25 12:31:53 -060038
Zhu Yiae4af612006-04-13 17:20:34 +080039
40#ifndef KBUILD_EXTMOD
41#define VK "k"
42#else
43#define VK
44#endif
45
46#ifdef CONFIG_IPW2200_DEBUG
47#define VD "d"
48#else
49#define VD
50#endif
51
52#ifdef CONFIG_IPW2200_MONITOR
53#define VM "m"
54#else
55#define VM
56#endif
57
58#ifdef CONFIG_IPW2200_PROMISCUOUS
59#define VP "p"
60#else
61#define VP
62#endif
63
Zhu Yi459d4082006-04-13 17:21:00 +080064#ifdef CONFIG_IPW2200_RADIOTAP
Zhu Yiae4af612006-04-13 17:20:34 +080065#define VR "r"
66#else
67#define VR
68#endif
69
70#ifdef CONFIG_IPW2200_QOS
71#define VQ "q"
72#else
73#define VQ
74#endif
75
Zhu Yiee2c4ad2007-07-12 16:09:47 +080076#define IPW2200_VERSION "1.2.2" VK VD VM VP VR VQ
James Ketrenos43f66a62005-03-25 12:31:53 -060077#define DRV_DESCRIPTION "Intel(R) PRO/Wireless 2200/2915 Network Driver"
Zhu Yi171e7b22006-02-15 07:17:56 +080078#define DRV_COPYRIGHT "Copyright(c) 2003-2006 Intel Corporation"
James Ketrenos43f66a62005-03-25 12:31:53 -060079#define DRV_VERSION IPW2200_VERSION
80
James Ketrenosb095c382005-08-24 22:04:42 -050081#define ETH_P_80211_STATS (ETH_P_80211_RAW + 1)
82
James Ketrenos43f66a62005-03-25 12:31:53 -060083MODULE_DESCRIPTION(DRV_DESCRIPTION);
84MODULE_VERSION(DRV_VERSION);
85MODULE_AUTHOR(DRV_COPYRIGHT);
86MODULE_LICENSE("GPL");
Ben Hutchings873395a2009-11-07 21:59:10 +000087MODULE_FIRMWARE("ipw2200-ibss.fw");
88#ifdef CONFIG_IPW2200_MONITOR
89MODULE_FIRMWARE("ipw2200-sniffer.fw");
90#endif
91MODULE_FIRMWARE("ipw2200-bss.fw");
James Ketrenos43f66a62005-03-25 12:31:53 -060092
James Ketrenosf6c5cb72005-08-25 00:39:09 -050093static int cmdlog = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060094static int debug = 0;
Reinette Chatre21f8a732009-08-18 10:25:05 -070095static int default_channel = 0;
96static int network_mode = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060097
98static u32 ipw_debug_level;
Tim Gardner5c7f9b72008-10-14 10:38:03 -060099static int associate;
James Ketrenos43f66a62005-03-25 12:31:53 -0600100static int auto_create = 1;
ubuntu@tjworld.netc086aba2009-03-23 20:29:28 +0000101static int led_support = 1;
James Ketrenos43f66a62005-03-25 12:31:53 -0600102static int disable = 0;
Zhu Yi810dabd2006-01-24 16:36:59 +0800103static int bt_coexist = 0;
Zhu Yibde37d02006-01-24 16:38:08 +0800104static int hwcrypto = 0;
Zhu Yi4bfdb912006-01-24 16:37:16 +0800105static int roaming = 1;
James Ketrenos43f66a62005-03-25 12:31:53 -0600106static const char ipw_modes[] = {
107 'a', 'b', 'g', '?'
108};
Zhu Yid2b83e12006-04-13 17:19:36 +0800109static int antenna = CFG_SYS_ANTENNA_BOTH;
James Ketrenos43f66a62005-03-25 12:31:53 -0600110
Zhu Yid685b8c2006-04-13 17:20:27 +0800111#ifdef CONFIG_IPW2200_PROMISCUOUS
112static int rtap_iface = 0; /* def: 0 -- do not create rtap interface */
113#endif
114
John W. Linvillea3caa992009-08-25 14:12:25 -0400115static struct ieee80211_rate ipw2200_rates[] = {
116 { .bitrate = 10 },
117 { .bitrate = 20, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
118 { .bitrate = 55, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
119 { .bitrate = 110, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
120 { .bitrate = 60 },
121 { .bitrate = 90 },
122 { .bitrate = 120 },
123 { .bitrate = 180 },
124 { .bitrate = 240 },
125 { .bitrate = 360 },
126 { .bitrate = 480 },
127 { .bitrate = 540 }
128};
129
130#define ipw2200_a_rates (ipw2200_rates + 4)
131#define ipw2200_num_a_rates 8
132#define ipw2200_bg_rates (ipw2200_rates + 0)
133#define ipw2200_num_bg_rates 12
Zhu Yid685b8c2006-04-13 17:20:27 +0800134
Johannes Berg776d68f2011-11-09 21:33:45 +0100135/* Ugly macro to convert literal channel numbers into their mhz equivalents
136 * There are certianly some conditions that will break this (like feeding it '30')
137 * but they shouldn't arise since nothing talks on channel 30. */
138#define ieee80211chan2mhz(x) \
139 (((x) <= 14) ? \
140 (((x) == 14) ? 2484 : ((x) * 5) + 2407) : \
141 ((x) + 1000) * 5)
142
Zhu Yie43e3c12006-04-13 17:20:45 +0800143#ifdef CONFIG_IPW2200_QOS
James Ketrenosb095c382005-08-24 22:04:42 -0500144static int qos_enable = 0;
145static int qos_burst_enable = 0;
146static int qos_no_ack_mask = 0;
147static int burst_duration_CCK = 0;
148static int burst_duration_OFDM = 0;
149
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400150static struct libipw_qos_parameters def_qos_parameters_OFDM = {
James Ketrenosb095c382005-08-24 22:04:42 -0500151 {QOS_TX0_CW_MIN_OFDM, QOS_TX1_CW_MIN_OFDM, QOS_TX2_CW_MIN_OFDM,
152 QOS_TX3_CW_MIN_OFDM},
153 {QOS_TX0_CW_MAX_OFDM, QOS_TX1_CW_MAX_OFDM, QOS_TX2_CW_MAX_OFDM,
154 QOS_TX3_CW_MAX_OFDM},
155 {QOS_TX0_AIFS, QOS_TX1_AIFS, QOS_TX2_AIFS, QOS_TX3_AIFS},
156 {QOS_TX0_ACM, QOS_TX1_ACM, QOS_TX2_ACM, QOS_TX3_ACM},
157 {QOS_TX0_TXOP_LIMIT_OFDM, QOS_TX1_TXOP_LIMIT_OFDM,
158 QOS_TX2_TXOP_LIMIT_OFDM, QOS_TX3_TXOP_LIMIT_OFDM}
159};
160
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400161static struct libipw_qos_parameters def_qos_parameters_CCK = {
James Ketrenosb095c382005-08-24 22:04:42 -0500162 {QOS_TX0_CW_MIN_CCK, QOS_TX1_CW_MIN_CCK, QOS_TX2_CW_MIN_CCK,
163 QOS_TX3_CW_MIN_CCK},
164 {QOS_TX0_CW_MAX_CCK, QOS_TX1_CW_MAX_CCK, QOS_TX2_CW_MAX_CCK,
165 QOS_TX3_CW_MAX_CCK},
166 {QOS_TX0_AIFS, QOS_TX1_AIFS, QOS_TX2_AIFS, QOS_TX3_AIFS},
167 {QOS_TX0_ACM, QOS_TX1_ACM, QOS_TX2_ACM, QOS_TX3_ACM},
168 {QOS_TX0_TXOP_LIMIT_CCK, QOS_TX1_TXOP_LIMIT_CCK, QOS_TX2_TXOP_LIMIT_CCK,
169 QOS_TX3_TXOP_LIMIT_CCK}
170};
171
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400172static struct libipw_qos_parameters def_parameters_OFDM = {
James Ketrenosb095c382005-08-24 22:04:42 -0500173 {DEF_TX0_CW_MIN_OFDM, DEF_TX1_CW_MIN_OFDM, DEF_TX2_CW_MIN_OFDM,
174 DEF_TX3_CW_MIN_OFDM},
175 {DEF_TX0_CW_MAX_OFDM, DEF_TX1_CW_MAX_OFDM, DEF_TX2_CW_MAX_OFDM,
176 DEF_TX3_CW_MAX_OFDM},
177 {DEF_TX0_AIFS, DEF_TX1_AIFS, DEF_TX2_AIFS, DEF_TX3_AIFS},
178 {DEF_TX0_ACM, DEF_TX1_ACM, DEF_TX2_ACM, DEF_TX3_ACM},
179 {DEF_TX0_TXOP_LIMIT_OFDM, DEF_TX1_TXOP_LIMIT_OFDM,
180 DEF_TX2_TXOP_LIMIT_OFDM, DEF_TX3_TXOP_LIMIT_OFDM}
181};
182
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400183static struct libipw_qos_parameters def_parameters_CCK = {
James Ketrenosb095c382005-08-24 22:04:42 -0500184 {DEF_TX0_CW_MIN_CCK, DEF_TX1_CW_MIN_CCK, DEF_TX2_CW_MIN_CCK,
185 DEF_TX3_CW_MIN_CCK},
186 {DEF_TX0_CW_MAX_CCK, DEF_TX1_CW_MAX_CCK, DEF_TX2_CW_MAX_CCK,
187 DEF_TX3_CW_MAX_CCK},
188 {DEF_TX0_AIFS, DEF_TX1_AIFS, DEF_TX2_AIFS, DEF_TX3_AIFS},
189 {DEF_TX0_ACM, DEF_TX1_ACM, DEF_TX2_ACM, DEF_TX3_ACM},
190 {DEF_TX0_TXOP_LIMIT_CCK, DEF_TX1_TXOP_LIMIT_CCK, DEF_TX2_TXOP_LIMIT_CCK,
191 DEF_TX3_TXOP_LIMIT_CCK}
192};
193
194static u8 qos_oui[QOS_OUI_LEN] = { 0x00, 0x50, 0xF2 };
195
196static int from_priority_to_tx_queue[] = {
197 IPW_TX_QUEUE_1, IPW_TX_QUEUE_2, IPW_TX_QUEUE_2, IPW_TX_QUEUE_1,
198 IPW_TX_QUEUE_3, IPW_TX_QUEUE_3, IPW_TX_QUEUE_4, IPW_TX_QUEUE_4
199};
200
201static u32 ipw_qos_get_burst_duration(struct ipw_priv *priv);
202
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400203static int ipw_send_qos_params_command(struct ipw_priv *priv, struct libipw_qos_parameters
James Ketrenosb095c382005-08-24 22:04:42 -0500204 *qos_param);
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -0400205static int ipw_send_qos_info_command(struct ipw_priv *priv, struct libipw_qos_information_element
James Ketrenosb095c382005-08-24 22:04:42 -0500206 *qos_param);
Zhu Yie43e3c12006-04-13 17:20:45 +0800207#endif /* CONFIG_IPW2200_QOS */
James Ketrenosb095c382005-08-24 22:04:42 -0500208
Benoit Boissinot97a78ca2005-09-15 17:30:28 +0000209static struct iw_statistics *ipw_get_wireless_stats(struct net_device *dev);
James Ketrenosb095c382005-08-24 22:04:42 -0500210static void ipw_remove_current_network(struct ipw_priv *priv);
James Ketrenos43f66a62005-03-25 12:31:53 -0600211static void ipw_rx(struct ipw_priv *priv);
Jeff Garzikbf794512005-07-31 13:07:26 -0400212static int ipw_queue_tx_reclaim(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -0600213 struct clx2_tx_queue *txq, int qindex);
214static int ipw_queue_reset(struct ipw_priv *priv);
215
216static int ipw_queue_tx_hcmd(struct ipw_priv *priv, int hcmd, void *buf,
217 int len, int sync);
218
219static void ipw_tx_queue_free(struct ipw_priv *);
220
221static struct ipw_rx_queue *ipw_rx_queue_alloc(struct ipw_priv *);
222static void ipw_rx_queue_free(struct ipw_priv *, struct ipw_rx_queue *);
223static void ipw_rx_queue_replenish(void *);
James Ketrenos43f66a62005-03-25 12:31:53 -0600224static int ipw_up(struct ipw_priv *);
David Howellsc4028952006-11-22 14:57:56 +0000225static void ipw_bg_up(struct work_struct *work);
James Ketrenos43f66a62005-03-25 12:31:53 -0600226static void ipw_down(struct ipw_priv *);
David Howellsc4028952006-11-22 14:57:56 +0000227static void ipw_bg_down(struct work_struct *work);
James Ketrenos43f66a62005-03-25 12:31:53 -0600228static int ipw_config(struct ipw_priv *);
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400229static int init_supported_rates(struct ipw_priv *priv,
230 struct ipw_supported_rates *prates);
James Ketrenosb095c382005-08-24 22:04:42 -0500231static void ipw_set_hwcrypto_keys(struct ipw_priv *);
232static void ipw_send_wep_keys(struct ipw_priv *, int);
James Ketrenos43f66a62005-03-25 12:31:53 -0600233
James Ketrenosf6c5cb72005-08-25 00:39:09 -0500234static int snprint_line(char *buf, size_t count,
235 const u8 * data, u32 len, u32 ofs)
James Ketrenos43f66a62005-03-25 12:31:53 -0600236{
237 int out, i, j, l;
238 char c;
Jeff Garzikbf794512005-07-31 13:07:26 -0400239
James Ketrenos43f66a62005-03-25 12:31:53 -0600240 out = snprintf(buf, count, "%08X", ofs);
241
242 for (l = 0, i = 0; i < 2; i++) {
243 out += snprintf(buf + out, count - out, " ");
Jeff Garzikbf794512005-07-31 13:07:26 -0400244 for (j = 0; j < 8 && l < len; j++, l++)
245 out += snprintf(buf + out, count - out, "%02X ",
James Ketrenos43f66a62005-03-25 12:31:53 -0600246 data[(i * 8 + j)]);
247 for (; j < 8; j++)
248 out += snprintf(buf + out, count - out, " ");
249 }
Jeff Garzikbf794512005-07-31 13:07:26 -0400250
James Ketrenos43f66a62005-03-25 12:31:53 -0600251 out += snprintf(buf + out, count - out, " ");
252 for (l = 0, i = 0; i < 2; i++) {
253 out += snprintf(buf + out, count - out, " ");
254 for (j = 0; j < 8 && l < len; j++, l++) {
255 c = data[(i * 8 + j)];
256 if (!isascii(c) || !isprint(c))
257 c = '.';
Jeff Garzikbf794512005-07-31 13:07:26 -0400258
James Ketrenos43f66a62005-03-25 12:31:53 -0600259 out += snprintf(buf + out, count - out, "%c", c);
260 }
261
262 for (; j < 8; j++)
263 out += snprintf(buf + out, count - out, " ");
264 }
Jeff Garzikbf794512005-07-31 13:07:26 -0400265
James Ketrenosf6c5cb72005-08-25 00:39:09 -0500266 return out;
James Ketrenos43f66a62005-03-25 12:31:53 -0600267}
268
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400269static void printk_buf(int level, const u8 * data, u32 len)
James Ketrenos43f66a62005-03-25 12:31:53 -0600270{
271 char line[81];
272 u32 ofs = 0;
273 if (!(ipw_debug_level & level))
274 return;
275
276 while (len) {
James Ketrenosf6c5cb72005-08-25 00:39:09 -0500277 snprint_line(line, sizeof(line), &data[ofs],
278 min(len, 16U), ofs);
279 printk(KERN_DEBUG "%s\n", line);
James Ketrenos43f66a62005-03-25 12:31:53 -0600280 ofs += 16;
281 len -= min(len, 16U);
282 }
283}
284
James Ketrenosf6c5cb72005-08-25 00:39:09 -0500285static int snprintk_buf(u8 * output, size_t size, const u8 * data, size_t len)
286{
287 size_t out = size;
288 u32 ofs = 0;
289 int total = 0;
290
291 while (size && len) {
292 out = snprint_line(output, size, &data[ofs],
293 min_t(size_t, len, 16U), ofs);
294
295 ofs += 16;
296 output += out;
297 size -= out;
298 len -= min_t(size_t, len, 16U);
299 total += out;
300 }
301 return total;
302}
303
Zhu Yic8fe6672006-01-24 16:36:36 +0800304/* alias for 32-bit indirect read (for SRAM/reg above 4K), with debug wrapper */
James Ketrenos43f66a62005-03-25 12:31:53 -0600305static u32 _ipw_read_reg32(struct ipw_priv *priv, u32 reg);
306#define ipw_read_reg32(a, b) _ipw_read_reg32(a, b)
307
Zhu Yic8fe6672006-01-24 16:36:36 +0800308/* alias for 8-bit indirect read (for SRAM/reg above 4K), with debug wrapper */
James Ketrenos43f66a62005-03-25 12:31:53 -0600309static u8 _ipw_read_reg8(struct ipw_priv *ipw, u32 reg);
310#define ipw_read_reg8(a, b) _ipw_read_reg8(a, b)
311
Zhu Yic8fe6672006-01-24 16:36:36 +0800312/* 8-bit indirect write (for SRAM/reg above 4K), with debug wrapper */
James Ketrenos43f66a62005-03-25 12:31:53 -0600313static void _ipw_write_reg8(struct ipw_priv *priv, u32 reg, u8 value);
314static inline void ipw_write_reg8(struct ipw_priv *a, u32 b, u8 c)
315{
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400316 IPW_DEBUG_IO("%s %d: write_indirect8(0x%08X, 0x%08X)\n", __FILE__,
317 __LINE__, (u32) (b), (u32) (c));
James Ketrenos43f66a62005-03-25 12:31:53 -0600318 _ipw_write_reg8(a, b, c);
319}
320
Zhu Yic8fe6672006-01-24 16:36:36 +0800321/* 16-bit indirect write (for SRAM/reg above 4K), with debug wrapper */
James Ketrenos43f66a62005-03-25 12:31:53 -0600322static void _ipw_write_reg16(struct ipw_priv *priv, u32 reg, u16 value);
323static inline void ipw_write_reg16(struct ipw_priv *a, u32 b, u16 c)
324{
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400325 IPW_DEBUG_IO("%s %d: write_indirect16(0x%08X, 0x%08X)\n", __FILE__,
326 __LINE__, (u32) (b), (u32) (c));
James Ketrenos43f66a62005-03-25 12:31:53 -0600327 _ipw_write_reg16(a, b, c);
328}
329
Zhu Yic8fe6672006-01-24 16:36:36 +0800330/* 32-bit indirect write (for SRAM/reg above 4K), with debug wrapper */
James Ketrenos43f66a62005-03-25 12:31:53 -0600331static void _ipw_write_reg32(struct ipw_priv *priv, u32 reg, u32 value);
332static inline void ipw_write_reg32(struct ipw_priv *a, u32 b, u32 c)
333{
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400334 IPW_DEBUG_IO("%s %d: write_indirect32(0x%08X, 0x%08X)\n", __FILE__,
335 __LINE__, (u32) (b), (u32) (c));
James Ketrenos43f66a62005-03-25 12:31:53 -0600336 _ipw_write_reg32(a, b, c);
337}
338
Zhu Yic8fe6672006-01-24 16:36:36 +0800339/* 8-bit direct write (low 4K) */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100340static inline void _ipw_write8(struct ipw_priv *ipw, unsigned long ofs,
341 u8 val)
342{
343 writeb(val, ipw->hw_base + ofs);
344}
Zhu Yic8fe6672006-01-24 16:36:36 +0800345
346/* 8-bit direct write (for low 4K of SRAM/regs), with debug wrapper */
Takashi Iwaifb55d882008-07-31 19:02:06 +0200347#define ipw_write8(ipw, ofs, val) do { \
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100348 IPW_DEBUG_IO("%s %d: write_direct8(0x%08X, 0x%08X)\n", __FILE__, \
349 __LINE__, (u32)(ofs), (u32)(val)); \
350 _ipw_write8(ipw, ofs, val); \
351} while (0)
James Ketrenos43f66a62005-03-25 12:31:53 -0600352
Zhu Yic8fe6672006-01-24 16:36:36 +0800353/* 16-bit direct write (low 4K) */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100354static inline void _ipw_write16(struct ipw_priv *ipw, unsigned long ofs,
355 u16 val)
356{
357 writew(val, ipw->hw_base + ofs);
358}
Zhu Yic8fe6672006-01-24 16:36:36 +0800359
360/* 16-bit direct write (for low 4K of SRAM/regs), with debug wrapper */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100361#define ipw_write16(ipw, ofs, val) do { \
362 IPW_DEBUG_IO("%s %d: write_direct16(0x%08X, 0x%08X)\n", __FILE__, \
363 __LINE__, (u32)(ofs), (u32)(val)); \
364 _ipw_write16(ipw, ofs, val); \
365} while (0)
James Ketrenos43f66a62005-03-25 12:31:53 -0600366
Zhu Yic8fe6672006-01-24 16:36:36 +0800367/* 32-bit direct write (low 4K) */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100368static inline void _ipw_write32(struct ipw_priv *ipw, unsigned long ofs,
369 u32 val)
370{
371 writel(val, ipw->hw_base + ofs);
372}
Zhu Yic8fe6672006-01-24 16:36:36 +0800373
374/* 32-bit direct write (for low 4K of SRAM/regs), with debug wrapper */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100375#define ipw_write32(ipw, ofs, val) do { \
376 IPW_DEBUG_IO("%s %d: write_direct32(0x%08X, 0x%08X)\n", __FILE__, \
377 __LINE__, (u32)(ofs), (u32)(val)); \
378 _ipw_write32(ipw, ofs, val); \
379} while (0)
James Ketrenos43f66a62005-03-25 12:31:53 -0600380
Zhu Yic8fe6672006-01-24 16:36:36 +0800381/* 8-bit direct read (low 4K) */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100382static inline u8 _ipw_read8(struct ipw_priv *ipw, unsigned long ofs)
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400383{
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100384 return readb(ipw->hw_base + ofs);
James Ketrenos43f66a62005-03-25 12:31:53 -0600385}
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400386
Zhu Yic8fe6672006-01-24 16:36:36 +0800387/* alias to 8-bit direct read (low 4K of SRAM/regs), with debug wrapper */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100388#define ipw_read8(ipw, ofs) ({ \
389 IPW_DEBUG_IO("%s %d: read_direct8(0x%08X)\n", __FILE__, __LINE__, \
390 (u32)(ofs)); \
391 _ipw_read8(ipw, ofs); \
392})
James Ketrenos43f66a62005-03-25 12:31:53 -0600393
Zhu Yic8fe6672006-01-24 16:36:36 +0800394/* 16-bit direct read (low 4K) */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100395static inline u16 _ipw_read16(struct ipw_priv *ipw, unsigned long ofs)
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400396{
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100397 return readw(ipw->hw_base + ofs);
James Ketrenos43f66a62005-03-25 12:31:53 -0600398}
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400399
Zhu Yic8fe6672006-01-24 16:36:36 +0800400/* alias to 16-bit direct read (low 4K of SRAM/regs), with debug wrapper */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100401#define ipw_read16(ipw, ofs) ({ \
402 IPW_DEBUG_IO("%s %d: read_direct16(0x%08X)\n", __FILE__, __LINE__, \
403 (u32)(ofs)); \
404 _ipw_read16(ipw, ofs); \
405})
James Ketrenos43f66a62005-03-25 12:31:53 -0600406
Zhu Yic8fe6672006-01-24 16:36:36 +0800407/* 32-bit direct read (low 4K) */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100408static inline u32 _ipw_read32(struct ipw_priv *ipw, unsigned long ofs)
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400409{
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100410 return readl(ipw->hw_base + ofs);
James Ketrenos43f66a62005-03-25 12:31:53 -0600411}
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400412
Zhu Yic8fe6672006-01-24 16:36:36 +0800413/* alias to 32-bit direct read (low 4K of SRAM/regs), with debug wrapper */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100414#define ipw_read32(ipw, ofs) ({ \
415 IPW_DEBUG_IO("%s %d: read_direct32(0x%08X)\n", __FILE__, __LINE__, \
416 (u32)(ofs)); \
417 _ipw_read32(ipw, ofs); \
418})
James Ketrenos43f66a62005-03-25 12:31:53 -0600419
420static void _ipw_read_indirect(struct ipw_priv *, u32, u8 *, int);
Zhu Yic8fe6672006-01-24 16:36:36 +0800421/* alias to multi-byte read (SRAM/regs above 4K), with debug wrapper */
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100422#define ipw_read_indirect(a, b, c, d) ({ \
423 IPW_DEBUG_IO("%s %d: read_indirect(0x%08X) %u bytes\n", __FILE__, \
424 __LINE__, (u32)(b), (u32)(d)); \
425 _ipw_read_indirect(a, b, c, d); \
426})
James Ketrenos43f66a62005-03-25 12:31:53 -0600427
Zhu Yic8fe6672006-01-24 16:36:36 +0800428/* alias to multi-byte read (SRAM/regs above 4K), with debug wrapper */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400429static void _ipw_write_indirect(struct ipw_priv *priv, u32 addr, u8 * data,
430 int num);
Jiri Slaby1788bcd2009-02-12 22:29:40 +0100431#define ipw_write_indirect(a, b, c, d) do { \
432 IPW_DEBUG_IO("%s %d: write_indirect(0x%08X) %u bytes\n", __FILE__, \
433 __LINE__, (u32)(b), (u32)(d)); \
434 _ipw_write_indirect(a, b, c, d); \
435} while (0)
James Ketrenos43f66a62005-03-25 12:31:53 -0600436
Zhu Yic8fe6672006-01-24 16:36:36 +0800437/* 32-bit indirect write (above 4K) */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400438static void _ipw_write_reg32(struct ipw_priv *priv, u32 reg, u32 value)
James Ketrenos43f66a62005-03-25 12:31:53 -0600439{
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400440 IPW_DEBUG_IO(" %p : reg = 0x%8X : value = 0x%8X\n", priv, reg, value);
James Ketrenosb095c382005-08-24 22:04:42 -0500441 _ipw_write32(priv, IPW_INDIRECT_ADDR, reg);
442 _ipw_write32(priv, IPW_INDIRECT_DATA, value);
James Ketrenos43f66a62005-03-25 12:31:53 -0600443}
444
Zhu Yic8fe6672006-01-24 16:36:36 +0800445/* 8-bit indirect write (above 4K) */
James Ketrenos43f66a62005-03-25 12:31:53 -0600446static void _ipw_write_reg8(struct ipw_priv *priv, u32 reg, u8 value)
447{
Zhu Yi2638bc32006-01-24 16:37:52 +0800448 u32 aligned_addr = reg & IPW_INDIRECT_ADDR_MASK; /* dword align */
Zhu Yic8fe6672006-01-24 16:36:36 +0800449 u32 dif_len = reg - aligned_addr;
450
James Ketrenos43f66a62005-03-25 12:31:53 -0600451 IPW_DEBUG_IO(" reg = 0x%8X : value = 0x%8X\n", reg, value);
Zhu Yic8fe6672006-01-24 16:36:36 +0800452 _ipw_write32(priv, IPW_INDIRECT_ADDR, aligned_addr);
453 _ipw_write8(priv, IPW_INDIRECT_DATA + dif_len, value);
James Ketrenos43f66a62005-03-25 12:31:53 -0600454}
455
Zhu Yic8fe6672006-01-24 16:36:36 +0800456/* 16-bit indirect write (above 4K) */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400457static void _ipw_write_reg16(struct ipw_priv *priv, u32 reg, u16 value)
James Ketrenos43f66a62005-03-25 12:31:53 -0600458{
Zhu Yi2638bc32006-01-24 16:37:52 +0800459 u32 aligned_addr = reg & IPW_INDIRECT_ADDR_MASK; /* dword align */
Zhu Yic8fe6672006-01-24 16:36:36 +0800460 u32 dif_len = (reg - aligned_addr) & (~0x1ul);
461
James Ketrenos43f66a62005-03-25 12:31:53 -0600462 IPW_DEBUG_IO(" reg = 0x%8X : value = 0x%8X\n", reg, value);
Zhu Yic8fe6672006-01-24 16:36:36 +0800463 _ipw_write32(priv, IPW_INDIRECT_ADDR, aligned_addr);
464 _ipw_write16(priv, IPW_INDIRECT_DATA + dif_len, value);
James Ketrenos43f66a62005-03-25 12:31:53 -0600465}
466
Zhu Yic8fe6672006-01-24 16:36:36 +0800467/* 8-bit indirect read (above 4K) */
James Ketrenos43f66a62005-03-25 12:31:53 -0600468static u8 _ipw_read_reg8(struct ipw_priv *priv, u32 reg)
469{
470 u32 word;
James Ketrenosb095c382005-08-24 22:04:42 -0500471 _ipw_write32(priv, IPW_INDIRECT_ADDR, reg & IPW_INDIRECT_ADDR_MASK);
Frans Pop9fd1ea42010-03-24 19:46:31 +0100472 IPW_DEBUG_IO(" reg = 0x%8X :\n", reg);
James Ketrenosb095c382005-08-24 22:04:42 -0500473 word = _ipw_read32(priv, IPW_INDIRECT_DATA);
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400474 return (word >> ((reg & 0x3) * 8)) & 0xff;
James Ketrenos43f66a62005-03-25 12:31:53 -0600475}
476
Zhu Yic8fe6672006-01-24 16:36:36 +0800477/* 32-bit indirect read (above 4K) */
James Ketrenos43f66a62005-03-25 12:31:53 -0600478static u32 _ipw_read_reg32(struct ipw_priv *priv, u32 reg)
479{
480 u32 value;
481
482 IPW_DEBUG_IO("%p : reg = 0x%08x\n", priv, reg);
483
James Ketrenosb095c382005-08-24 22:04:42 -0500484 _ipw_write32(priv, IPW_INDIRECT_ADDR, reg);
485 value = _ipw_read32(priv, IPW_INDIRECT_DATA);
Frans Pop9fd1ea42010-03-24 19:46:31 +0100486 IPW_DEBUG_IO(" reg = 0x%4X : value = 0x%4x\n", reg, value);
James Ketrenos43f66a62005-03-25 12:31:53 -0600487 return value;
488}
489
Zhu Yic8fe6672006-01-24 16:36:36 +0800490/* General purpose, no alignment requirement, iterative (multi-byte) read, */
491/* for area above 1st 4K of SRAM/reg space */
James Ketrenos43f66a62005-03-25 12:31:53 -0600492static void _ipw_read_indirect(struct ipw_priv *priv, u32 addr, u8 * buf,
493 int num)
494{
Zhu Yi2638bc32006-01-24 16:37:52 +0800495 u32 aligned_addr = addr & IPW_INDIRECT_ADDR_MASK; /* dword align */
James Ketrenos43f66a62005-03-25 12:31:53 -0600496 u32 dif_len = addr - aligned_addr;
James Ketrenos43f66a62005-03-25 12:31:53 -0600497 u32 i;
Jeff Garzikbf794512005-07-31 13:07:26 -0400498
James Ketrenos43f66a62005-03-25 12:31:53 -0600499 IPW_DEBUG_IO("addr = %i, buf = %p, num = %i\n", addr, buf, num);
500
James Ketrenosea2b26e2005-08-24 21:25:16 -0500501 if (num <= 0) {
502 return;
503 }
504
Zhu Yic8fe6672006-01-24 16:36:36 +0800505 /* Read the first dword (or portion) byte by byte */
James Ketrenos43f66a62005-03-25 12:31:53 -0600506 if (unlikely(dif_len)) {
James Ketrenosb095c382005-08-24 22:04:42 -0500507 _ipw_write32(priv, IPW_INDIRECT_ADDR, aligned_addr);
James Ketrenos43f66a62005-03-25 12:31:53 -0600508 /* Start reading at aligned_addr + dif_len */
James Ketrenosea2b26e2005-08-24 21:25:16 -0500509 for (i = dif_len; ((i < 4) && (num > 0)); i++, num--)
James Ketrenosb095c382005-08-24 22:04:42 -0500510 *buf++ = _ipw_read8(priv, IPW_INDIRECT_DATA + i);
James Ketrenos43f66a62005-03-25 12:31:53 -0600511 aligned_addr += 4;
512 }
513
Zhu Yic8fe6672006-01-24 16:36:36 +0800514 /* Read all of the middle dwords as dwords, with auto-increment */
James Ketrenosb095c382005-08-24 22:04:42 -0500515 _ipw_write32(priv, IPW_AUTOINC_ADDR, aligned_addr);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500516 for (; num >= 4; buf += 4, aligned_addr += 4, num -= 4)
James Ketrenosb095c382005-08-24 22:04:42 -0500517 *(u32 *) buf = _ipw_read32(priv, IPW_AUTOINC_DATA);
Jeff Garzikbf794512005-07-31 13:07:26 -0400518
Zhu Yic8fe6672006-01-24 16:36:36 +0800519 /* Read the last dword (or portion) byte by byte */
James Ketrenosea2b26e2005-08-24 21:25:16 -0500520 if (unlikely(num)) {
James Ketrenosb095c382005-08-24 22:04:42 -0500521 _ipw_write32(priv, IPW_INDIRECT_ADDR, aligned_addr);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500522 for (i = 0; num > 0; i++, num--)
James Ketrenosb095c382005-08-24 22:04:42 -0500523 *buf++ = ipw_read8(priv, IPW_INDIRECT_DATA + i);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500524 }
James Ketrenos43f66a62005-03-25 12:31:53 -0600525}
526
Zhu Yic8fe6672006-01-24 16:36:36 +0800527/* General purpose, no alignment requirement, iterative (multi-byte) write, */
528/* for area above 1st 4K of SRAM/reg space */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400529static void _ipw_write_indirect(struct ipw_priv *priv, u32 addr, u8 * buf,
James Ketrenos43f66a62005-03-25 12:31:53 -0600530 int num)
531{
Zhu Yi2638bc32006-01-24 16:37:52 +0800532 u32 aligned_addr = addr & IPW_INDIRECT_ADDR_MASK; /* dword align */
James Ketrenos43f66a62005-03-25 12:31:53 -0600533 u32 dif_len = addr - aligned_addr;
James Ketrenos43f66a62005-03-25 12:31:53 -0600534 u32 i;
Jeff Garzikbf794512005-07-31 13:07:26 -0400535
James Ketrenos43f66a62005-03-25 12:31:53 -0600536 IPW_DEBUG_IO("addr = %i, buf = %p, num = %i\n", addr, buf, num);
Jeff Garzikbf794512005-07-31 13:07:26 -0400537
James Ketrenosea2b26e2005-08-24 21:25:16 -0500538 if (num <= 0) {
539 return;
540 }
541
Zhu Yic8fe6672006-01-24 16:36:36 +0800542 /* Write the first dword (or portion) byte by byte */
James Ketrenos43f66a62005-03-25 12:31:53 -0600543 if (unlikely(dif_len)) {
James Ketrenosb095c382005-08-24 22:04:42 -0500544 _ipw_write32(priv, IPW_INDIRECT_ADDR, aligned_addr);
Zhu Yic8fe6672006-01-24 16:36:36 +0800545 /* Start writing at aligned_addr + dif_len */
James Ketrenosea2b26e2005-08-24 21:25:16 -0500546 for (i = dif_len; ((i < 4) && (num > 0)); i++, num--, buf++)
James Ketrenosb095c382005-08-24 22:04:42 -0500547 _ipw_write8(priv, IPW_INDIRECT_DATA + i, *buf);
James Ketrenos43f66a62005-03-25 12:31:53 -0600548 aligned_addr += 4;
549 }
Jeff Garzikbf794512005-07-31 13:07:26 -0400550
Zhu Yic8fe6672006-01-24 16:36:36 +0800551 /* Write all of the middle dwords as dwords, with auto-increment */
James Ketrenosb095c382005-08-24 22:04:42 -0500552 _ipw_write32(priv, IPW_AUTOINC_ADDR, aligned_addr);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500553 for (; num >= 4; buf += 4, aligned_addr += 4, num -= 4)
James Ketrenosb095c382005-08-24 22:04:42 -0500554 _ipw_write32(priv, IPW_AUTOINC_DATA, *(u32 *) buf);
Jeff Garzikbf794512005-07-31 13:07:26 -0400555
Zhu Yic8fe6672006-01-24 16:36:36 +0800556 /* Write the last dword (or portion) byte by byte */
James Ketrenosea2b26e2005-08-24 21:25:16 -0500557 if (unlikely(num)) {
James Ketrenosb095c382005-08-24 22:04:42 -0500558 _ipw_write32(priv, IPW_INDIRECT_ADDR, aligned_addr);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500559 for (i = 0; num > 0; i++, num--, buf++)
James Ketrenosb095c382005-08-24 22:04:42 -0500560 _ipw_write8(priv, IPW_INDIRECT_DATA + i, *buf);
James Ketrenosea2b26e2005-08-24 21:25:16 -0500561 }
James Ketrenos43f66a62005-03-25 12:31:53 -0600562}
563
Zhu Yic8fe6672006-01-24 16:36:36 +0800564/* General purpose, no alignment requirement, iterative (multi-byte) write, */
565/* for 1st 4K of SRAM/regs space */
Jeff Garzikbf794512005-07-31 13:07:26 -0400566static void ipw_write_direct(struct ipw_priv *priv, u32 addr, void *buf,
James Ketrenos43f66a62005-03-25 12:31:53 -0600567 int num)
568{
569 memcpy_toio((priv->hw_base + addr), buf, num);
570}
571
Zhu Yic8fe6672006-01-24 16:36:36 +0800572/* Set bit(s) in low 4K of SRAM/regs */
James Ketrenos43f66a62005-03-25 12:31:53 -0600573static inline void ipw_set_bit(struct ipw_priv *priv, u32 reg, u32 mask)
574{
575 ipw_write32(priv, reg, ipw_read32(priv, reg) | mask);
576}
577
Zhu Yic8fe6672006-01-24 16:36:36 +0800578/* Clear bit(s) in low 4K of SRAM/regs */
James Ketrenos43f66a62005-03-25 12:31:53 -0600579static inline void ipw_clear_bit(struct ipw_priv *priv, u32 reg, u32 mask)
580{
581 ipw_write32(priv, reg, ipw_read32(priv, reg) & ~mask);
582}
583
Zhu Yi89c318e2006-06-08 22:19:49 -0700584static inline void __ipw_enable_interrupts(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -0600585{
586 if (priv->status & STATUS_INT_ENABLED)
587 return;
588 priv->status |= STATUS_INT_ENABLED;
James Ketrenosb095c382005-08-24 22:04:42 -0500589 ipw_write32(priv, IPW_INTA_MASK_R, IPW_INTA_MASK_ALL);
James Ketrenos43f66a62005-03-25 12:31:53 -0600590}
591
Zhu Yi89c318e2006-06-08 22:19:49 -0700592static inline void __ipw_disable_interrupts(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -0600593{
594 if (!(priv->status & STATUS_INT_ENABLED))
595 return;
596 priv->status &= ~STATUS_INT_ENABLED;
James Ketrenosb095c382005-08-24 22:04:42 -0500597 ipw_write32(priv, IPW_INTA_MASK_R, ~IPW_INTA_MASK_ALL);
James Ketrenos43f66a62005-03-25 12:31:53 -0600598}
599
Zhu Yi89c318e2006-06-08 22:19:49 -0700600static inline void ipw_enable_interrupts(struct ipw_priv *priv)
601{
602 unsigned long flags;
603
604 spin_lock_irqsave(&priv->irq_lock, flags);
605 __ipw_enable_interrupts(priv);
606 spin_unlock_irqrestore(&priv->irq_lock, flags);
607}
608
609static inline void ipw_disable_interrupts(struct ipw_priv *priv)
610{
611 unsigned long flags;
612
613 spin_lock_irqsave(&priv->irq_lock, flags);
614 __ipw_disable_interrupts(priv);
615 spin_unlock_irqrestore(&priv->irq_lock, flags);
616}
617
James Ketrenos43f66a62005-03-25 12:31:53 -0600618static char *ipw_error_desc(u32 val)
619{
620 switch (val) {
Jeff Garzikbf794512005-07-31 13:07:26 -0400621 case IPW_FW_ERROR_OK:
James Ketrenos43f66a62005-03-25 12:31:53 -0600622 return "ERROR_OK";
Jeff Garzikbf794512005-07-31 13:07:26 -0400623 case IPW_FW_ERROR_FAIL:
James Ketrenos43f66a62005-03-25 12:31:53 -0600624 return "ERROR_FAIL";
Jeff Garzikbf794512005-07-31 13:07:26 -0400625 case IPW_FW_ERROR_MEMORY_UNDERFLOW:
James Ketrenos43f66a62005-03-25 12:31:53 -0600626 return "MEMORY_UNDERFLOW";
Jeff Garzikbf794512005-07-31 13:07:26 -0400627 case IPW_FW_ERROR_MEMORY_OVERFLOW:
James Ketrenos43f66a62005-03-25 12:31:53 -0600628 return "MEMORY_OVERFLOW";
Jeff Garzikbf794512005-07-31 13:07:26 -0400629 case IPW_FW_ERROR_BAD_PARAM:
James Ketrenosb095c382005-08-24 22:04:42 -0500630 return "BAD_PARAM";
Jeff Garzikbf794512005-07-31 13:07:26 -0400631 case IPW_FW_ERROR_BAD_CHECKSUM:
James Ketrenosb095c382005-08-24 22:04:42 -0500632 return "BAD_CHECKSUM";
Jeff Garzikbf794512005-07-31 13:07:26 -0400633 case IPW_FW_ERROR_NMI_INTERRUPT:
James Ketrenosb095c382005-08-24 22:04:42 -0500634 return "NMI_INTERRUPT";
Jeff Garzikbf794512005-07-31 13:07:26 -0400635 case IPW_FW_ERROR_BAD_DATABASE:
James Ketrenosb095c382005-08-24 22:04:42 -0500636 return "BAD_DATABASE";
Jeff Garzikbf794512005-07-31 13:07:26 -0400637 case IPW_FW_ERROR_ALLOC_FAIL:
James Ketrenosb095c382005-08-24 22:04:42 -0500638 return "ALLOC_FAIL";
Jeff Garzikbf794512005-07-31 13:07:26 -0400639 case IPW_FW_ERROR_DMA_UNDERRUN:
James Ketrenosb095c382005-08-24 22:04:42 -0500640 return "DMA_UNDERRUN";
Jeff Garzikbf794512005-07-31 13:07:26 -0400641 case IPW_FW_ERROR_DMA_STATUS:
James Ketrenosb095c382005-08-24 22:04:42 -0500642 return "DMA_STATUS";
643 case IPW_FW_ERROR_DINO_ERROR:
644 return "DINO_ERROR";
645 case IPW_FW_ERROR_EEPROM_ERROR:
646 return "EEPROM_ERROR";
Jeff Garzikbf794512005-07-31 13:07:26 -0400647 case IPW_FW_ERROR_SYSASSERT:
James Ketrenosb095c382005-08-24 22:04:42 -0500648 return "SYSASSERT";
Jeff Garzikbf794512005-07-31 13:07:26 -0400649 case IPW_FW_ERROR_FATAL_ERROR:
James Ketrenosb095c382005-08-24 22:04:42 -0500650 return "FATAL_ERROR";
Jeff Garzikbf794512005-07-31 13:07:26 -0400651 default:
James Ketrenosb095c382005-08-24 22:04:42 -0500652 return "UNKNOWN_ERROR";
James Ketrenos43f66a62005-03-25 12:31:53 -0600653 }
654}
655
James Ketrenosb39860c2005-08-12 09:36:32 -0500656static void ipw_dump_error_log(struct ipw_priv *priv,
657 struct ipw_fw_error *error)
James Ketrenos43f66a62005-03-25 12:31:53 -0600658{
James Ketrenosb39860c2005-08-12 09:36:32 -0500659 u32 i;
James Ketrenos43f66a62005-03-25 12:31:53 -0600660
James Ketrenosb39860c2005-08-12 09:36:32 -0500661 if (!error) {
662 IPW_ERROR("Error allocating and capturing error log. "
663 "Nothing to dump.\n");
664 return;
James Ketrenos43f66a62005-03-25 12:31:53 -0600665 }
666
James Ketrenosb39860c2005-08-12 09:36:32 -0500667 IPW_ERROR("Start IPW Error Log Dump:\n");
668 IPW_ERROR("Status: 0x%08X, Config: %08X\n",
669 error->status, error->config);
James Ketrenos43f66a62005-03-25 12:31:53 -0600670
James Ketrenosb39860c2005-08-12 09:36:32 -0500671 for (i = 0; i < error->elem_len; i++)
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400672 IPW_ERROR("%s %i 0x%08x 0x%08x 0x%08x 0x%08x 0x%08x\n",
James Ketrenosb39860c2005-08-12 09:36:32 -0500673 ipw_error_desc(error->elem[i].desc),
674 error->elem[i].time,
675 error->elem[i].blink1,
676 error->elem[i].blink2,
677 error->elem[i].link1,
678 error->elem[i].link2, error->elem[i].data);
679 for (i = 0; i < error->log_len; i++)
680 IPW_ERROR("%i\t0x%08x\t%i\n",
681 error->log[i].time,
James Ketrenos286568a2005-08-30 10:34:25 -0500682 error->log[i].data, error->log[i].event);
James Ketrenos43f66a62005-03-25 12:31:53 -0600683}
James Ketrenos43f66a62005-03-25 12:31:53 -0600684
James Ketrenosc848d0a2005-08-24 21:56:24 -0500685static inline int ipw_is_init(struct ipw_priv *priv)
686{
687 return (priv->status & STATUS_INIT) ? 1 : 0;
James Ketrenos43f66a62005-03-25 12:31:53 -0600688}
689
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400690static int ipw_get_ordinal(struct ipw_priv *priv, u32 ord, void *val, u32 * len)
James Ketrenos43f66a62005-03-25 12:31:53 -0600691{
692 u32 addr, field_info, field_len, field_count, total_len;
693
694 IPW_DEBUG_ORD("ordinal = %i\n", ord);
695
696 if (!priv || !val || !len) {
697 IPW_DEBUG_ORD("Invalid argument\n");
698 return -EINVAL;
699 }
Jeff Garzikbf794512005-07-31 13:07:26 -0400700
James Ketrenos43f66a62005-03-25 12:31:53 -0600701 /* verify device ordinal tables have been initialized */
702 if (!priv->table0_addr || !priv->table1_addr || !priv->table2_addr) {
703 IPW_DEBUG_ORD("Access ordinals before initialization\n");
704 return -EINVAL;
705 }
706
707 switch (IPW_ORD_TABLE_ID_MASK & ord) {
708 case IPW_ORD_TABLE_0_MASK:
709 /*
710 * TABLE 0: Direct access to a table of 32 bit values
711 *
Jeff Garzikbf794512005-07-31 13:07:26 -0400712 * This is a very simple table with the data directly
James Ketrenos43f66a62005-03-25 12:31:53 -0600713 * read from the table
714 */
715
716 /* remove the table id from the ordinal */
717 ord &= IPW_ORD_TABLE_VALUE_MASK;
718
719 /* boundary check */
720 if (ord > priv->table0_len) {
721 IPW_DEBUG_ORD("ordinal value (%i) longer then "
722 "max (%i)\n", ord, priv->table0_len);
723 return -EINVAL;
724 }
725
726 /* verify we have enough room to store the value */
727 if (*len < sizeof(u32)) {
728 IPW_DEBUG_ORD("ordinal buffer length too small, "
Jiri Bencaaa4d302005-06-07 14:58:41 +0200729 "need %zd\n", sizeof(u32));
James Ketrenos43f66a62005-03-25 12:31:53 -0600730 return -EINVAL;
731 }
732
733 IPW_DEBUG_ORD("Reading TABLE0[%i] from offset 0x%08x\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400734 ord, priv->table0_addr + (ord << 2));
James Ketrenos43f66a62005-03-25 12:31:53 -0600735
736 *len = sizeof(u32);
737 ord <<= 2;
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400738 *((u32 *) val) = ipw_read32(priv, priv->table0_addr + ord);
James Ketrenos43f66a62005-03-25 12:31:53 -0600739 break;
740
741 case IPW_ORD_TABLE_1_MASK:
742 /*
743 * TABLE 1: Indirect access to a table of 32 bit values
Jeff Garzikbf794512005-07-31 13:07:26 -0400744 *
745 * This is a fairly large table of u32 values each
James Ketrenos43f66a62005-03-25 12:31:53 -0600746 * representing starting addr for the data (which is
747 * also a u32)
748 */
749
750 /* remove the table id from the ordinal */
751 ord &= IPW_ORD_TABLE_VALUE_MASK;
Jeff Garzikbf794512005-07-31 13:07:26 -0400752
James Ketrenos43f66a62005-03-25 12:31:53 -0600753 /* boundary check */
754 if (ord > priv->table1_len) {
755 IPW_DEBUG_ORD("ordinal value too long\n");
756 return -EINVAL;
757 }
758
759 /* verify we have enough room to store the value */
760 if (*len < sizeof(u32)) {
761 IPW_DEBUG_ORD("ordinal buffer length too small, "
Jiri Bencaaa4d302005-06-07 14:58:41 +0200762 "need %zd\n", sizeof(u32));
James Ketrenos43f66a62005-03-25 12:31:53 -0600763 return -EINVAL;
764 }
765
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400766 *((u32 *) val) =
767 ipw_read_reg32(priv, (priv->table1_addr + (ord << 2)));
James Ketrenos43f66a62005-03-25 12:31:53 -0600768 *len = sizeof(u32);
769 break;
770
771 case IPW_ORD_TABLE_2_MASK:
772 /*
773 * TABLE 2: Indirect access to a table of variable sized values
774 *
775 * This table consist of six values, each containing
776 * - dword containing the starting offset of the data
777 * - dword containing the lengh in the first 16bits
778 * and the count in the second 16bits
779 */
780
781 /* remove the table id from the ordinal */
782 ord &= IPW_ORD_TABLE_VALUE_MASK;
783
784 /* boundary check */
785 if (ord > priv->table2_len) {
786 IPW_DEBUG_ORD("ordinal value too long\n");
787 return -EINVAL;
788 }
789
790 /* get the address of statistic */
791 addr = ipw_read_reg32(priv, priv->table2_addr + (ord << 3));
Jeff Garzikbf794512005-07-31 13:07:26 -0400792
793 /* get the second DW of statistics ;
James Ketrenos43f66a62005-03-25 12:31:53 -0600794 * two 16-bit words - first is length, second is count */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400795 field_info =
796 ipw_read_reg32(priv,
797 priv->table2_addr + (ord << 3) +
798 sizeof(u32));
Jeff Garzikbf794512005-07-31 13:07:26 -0400799
James Ketrenos43f66a62005-03-25 12:31:53 -0600800 /* get each entry length */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400801 field_len = *((u16 *) & field_info);
Jeff Garzikbf794512005-07-31 13:07:26 -0400802
James Ketrenos43f66a62005-03-25 12:31:53 -0600803 /* get number of entries */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400804 field_count = *(((u16 *) & field_info) + 1);
Jeff Garzikbf794512005-07-31 13:07:26 -0400805
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200806 /* abort if not enough memory */
James Ketrenos43f66a62005-03-25 12:31:53 -0600807 total_len = field_len * field_count;
808 if (total_len > *len) {
809 *len = total_len;
810 return -EINVAL;
811 }
Jeff Garzikbf794512005-07-31 13:07:26 -0400812
James Ketrenos43f66a62005-03-25 12:31:53 -0600813 *len = total_len;
814 if (!total_len)
815 return 0;
816
817 IPW_DEBUG_ORD("addr = 0x%08x, total_len = %i, "
Jeff Garzikbf794512005-07-31 13:07:26 -0400818 "field_info = 0x%08x\n",
James Ketrenos43f66a62005-03-25 12:31:53 -0600819 addr, total_len, field_info);
820 ipw_read_indirect(priv, addr, val, total_len);
821 break;
822
823 default:
824 IPW_DEBUG_ORD("Invalid ordinal!\n");
825 return -EINVAL;
826
827 }
828
James Ketrenos43f66a62005-03-25 12:31:53 -0600829 return 0;
830}
831
832static void ipw_init_ordinals(struct ipw_priv *priv)
833{
834 priv->table0_addr = IPW_ORDINALS_TABLE_LOWER;
Jeff Garzikbf794512005-07-31 13:07:26 -0400835 priv->table0_len = ipw_read32(priv, priv->table0_addr);
James Ketrenos43f66a62005-03-25 12:31:53 -0600836
837 IPW_DEBUG_ORD("table 0 offset at 0x%08x, len = %i\n",
838 priv->table0_addr, priv->table0_len);
839
840 priv->table1_addr = ipw_read32(priv, IPW_ORDINALS_TABLE_1);
841 priv->table1_len = ipw_read_reg32(priv, priv->table1_addr);
842
843 IPW_DEBUG_ORD("table 1 offset at 0x%08x, len = %i\n",
844 priv->table1_addr, priv->table1_len);
845
846 priv->table2_addr = ipw_read32(priv, IPW_ORDINALS_TABLE_2);
847 priv->table2_len = ipw_read_reg32(priv, priv->table2_addr);
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400848 priv->table2_len &= 0x0000ffff; /* use first two bytes */
James Ketrenos43f66a62005-03-25 12:31:53 -0600849
850 IPW_DEBUG_ORD("table 2 offset at 0x%08x, len = %i\n",
851 priv->table2_addr, priv->table2_len);
852
853}
854
Adrian Bunka73e22b2006-01-21 01:39:42 +0100855static u32 ipw_register_toggle(u32 reg)
James Ketrenosa613bff2005-08-24 21:43:11 -0500856{
James Ketrenosb095c382005-08-24 22:04:42 -0500857 reg &= ~IPW_START_STANDBY;
858 if (reg & IPW_GATE_ODMA)
859 reg &= ~IPW_GATE_ODMA;
860 if (reg & IPW_GATE_IDMA)
861 reg &= ~IPW_GATE_IDMA;
862 if (reg & IPW_GATE_ADMA)
863 reg &= ~IPW_GATE_ADMA;
James Ketrenosa613bff2005-08-24 21:43:11 -0500864 return reg;
865}
866
867/*
868 * LED behavior:
869 * - On radio ON, turn on any LEDs that require to be on during start
870 * - On initialization, start unassociated blink
871 * - On association, disable unassociated blink
872 * - On disassociation, start unassociated blink
873 * - On radio OFF, turn off any LEDs started during radio on
874 *
875 */
Zhu Yiede61112006-01-24 16:37:10 +0800876#define LD_TIME_LINK_ON msecs_to_jiffies(300)
877#define LD_TIME_LINK_OFF msecs_to_jiffies(2700)
878#define LD_TIME_ACT_ON msecs_to_jiffies(250)
James Ketrenosa613bff2005-08-24 21:43:11 -0500879
Adrian Bunka73e22b2006-01-21 01:39:42 +0100880static void ipw_led_link_on(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -0500881{
882 unsigned long flags;
883 u32 led;
884
885 /* If configured to not use LEDs, or nic_type is 1,
886 * then we don't toggle a LINK led */
887 if (priv->config & CFG_NO_LED || priv->nic_type == EEPROM_NIC_TYPE_1)
888 return;
889
890 spin_lock_irqsave(&priv->lock, flags);
891
892 if (!(priv->status & STATUS_RF_KILL_MASK) &&
893 !(priv->status & STATUS_LED_LINK_ON)) {
894 IPW_DEBUG_LED("Link LED On\n");
James Ketrenosb095c382005-08-24 22:04:42 -0500895 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -0500896 led |= priv->led_association_on;
897
898 led = ipw_register_toggle(led);
899
900 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -0500901 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -0500902
903 priv->status |= STATUS_LED_LINK_ON;
904
905 /* If we aren't associated, schedule turning the LED off */
906 if (!(priv->status & STATUS_ASSOCIATED))
Tejun Heobcb6d912011-01-26 12:12:50 +0100907 schedule_delayed_work(&priv->led_link_off,
908 LD_TIME_LINK_ON);
James Ketrenosa613bff2005-08-24 21:43:11 -0500909 }
910
911 spin_unlock_irqrestore(&priv->lock, flags);
912}
913
David Howellsc4028952006-11-22 14:57:56 +0000914static void ipw_bg_led_link_on(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -0500915{
David Howellsc4028952006-11-22 14:57:56 +0000916 struct ipw_priv *priv =
917 container_of(work, struct ipw_priv, led_link_on.work);
Zhu Yi46441512006-01-24 16:37:59 +0800918 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +0000919 ipw_led_link_on(priv);
Zhu Yi46441512006-01-24 16:37:59 +0800920 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -0500921}
922
Adrian Bunka73e22b2006-01-21 01:39:42 +0100923static void ipw_led_link_off(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -0500924{
925 unsigned long flags;
926 u32 led;
927
928 /* If configured not to use LEDs, or nic type is 1,
929 * then we don't goggle the LINK led. */
930 if (priv->config & CFG_NO_LED || priv->nic_type == EEPROM_NIC_TYPE_1)
931 return;
932
933 spin_lock_irqsave(&priv->lock, flags);
934
935 if (priv->status & STATUS_LED_LINK_ON) {
James Ketrenosb095c382005-08-24 22:04:42 -0500936 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -0500937 led &= priv->led_association_off;
938 led = ipw_register_toggle(led);
939
940 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -0500941 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -0500942
943 IPW_DEBUG_LED("Link LED Off\n");
944
945 priv->status &= ~STATUS_LED_LINK_ON;
946
947 /* If we aren't associated and the radio is on, schedule
948 * turning the LED on (blink while unassociated) */
949 if (!(priv->status & STATUS_RF_KILL_MASK) &&
950 !(priv->status & STATUS_ASSOCIATED))
Tejun Heobcb6d912011-01-26 12:12:50 +0100951 schedule_delayed_work(&priv->led_link_on,
952 LD_TIME_LINK_OFF);
James Ketrenosa613bff2005-08-24 21:43:11 -0500953
954 }
955
956 spin_unlock_irqrestore(&priv->lock, flags);
957}
958
David Howellsc4028952006-11-22 14:57:56 +0000959static void ipw_bg_led_link_off(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -0500960{
David Howellsc4028952006-11-22 14:57:56 +0000961 struct ipw_priv *priv =
962 container_of(work, struct ipw_priv, led_link_off.work);
Zhu Yi46441512006-01-24 16:37:59 +0800963 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +0000964 ipw_led_link_off(priv);
Zhu Yi46441512006-01-24 16:37:59 +0800965 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -0500966}
967
Arjan van de Ven858119e2006-01-14 13:20:43 -0800968static void __ipw_led_activity_on(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -0500969{
James Ketrenosa613bff2005-08-24 21:43:11 -0500970 u32 led;
971
972 if (priv->config & CFG_NO_LED)
973 return;
974
James Ketrenosb095c382005-08-24 22:04:42 -0500975 if (priv->status & STATUS_RF_KILL_MASK)
James Ketrenosa613bff2005-08-24 21:43:11 -0500976 return;
James Ketrenosa613bff2005-08-24 21:43:11 -0500977
978 if (!(priv->status & STATUS_LED_ACT_ON)) {
James Ketrenosb095c382005-08-24 22:04:42 -0500979 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -0500980 led |= priv->led_activity_on;
981
982 led = ipw_register_toggle(led);
983
984 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -0500985 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -0500986
987 IPW_DEBUG_LED("Activity LED On\n");
988
989 priv->status |= STATUS_LED_ACT_ON;
990
James Ketrenosc848d0a2005-08-24 21:56:24 -0500991 cancel_delayed_work(&priv->led_act_off);
Tejun Heobcb6d912011-01-26 12:12:50 +0100992 schedule_delayed_work(&priv->led_act_off, LD_TIME_ACT_ON);
James Ketrenosa613bff2005-08-24 21:43:11 -0500993 } else {
994 /* Reschedule LED off for full time period */
995 cancel_delayed_work(&priv->led_act_off);
Tejun Heobcb6d912011-01-26 12:12:50 +0100996 schedule_delayed_work(&priv->led_act_off, LD_TIME_ACT_ON);
James Ketrenosa613bff2005-08-24 21:43:11 -0500997 }
James Ketrenosb095c382005-08-24 22:04:42 -0500998}
James Ketrenosa613bff2005-08-24 21:43:11 -0500999
Adrian Bunka73e22b2006-01-21 01:39:42 +01001000#if 0
James Ketrenosb095c382005-08-24 22:04:42 -05001001void ipw_led_activity_on(struct ipw_priv *priv)
1002{
1003 unsigned long flags;
1004 spin_lock_irqsave(&priv->lock, flags);
1005 __ipw_led_activity_on(priv);
James Ketrenosa613bff2005-08-24 21:43:11 -05001006 spin_unlock_irqrestore(&priv->lock, flags);
1007}
Adrian Bunka73e22b2006-01-21 01:39:42 +01001008#endif /* 0 */
James Ketrenosa613bff2005-08-24 21:43:11 -05001009
Adrian Bunka73e22b2006-01-21 01:39:42 +01001010static void ipw_led_activity_off(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -05001011{
1012 unsigned long flags;
1013 u32 led;
1014
1015 if (priv->config & CFG_NO_LED)
1016 return;
1017
1018 spin_lock_irqsave(&priv->lock, flags);
1019
1020 if (priv->status & STATUS_LED_ACT_ON) {
James Ketrenosb095c382005-08-24 22:04:42 -05001021 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -05001022 led &= priv->led_activity_off;
1023
1024 led = ipw_register_toggle(led);
1025
1026 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -05001027 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -05001028
1029 IPW_DEBUG_LED("Activity LED Off\n");
1030
1031 priv->status &= ~STATUS_LED_ACT_ON;
1032 }
1033
1034 spin_unlock_irqrestore(&priv->lock, flags);
1035}
1036
David Howellsc4028952006-11-22 14:57:56 +00001037static void ipw_bg_led_activity_off(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -05001038{
David Howellsc4028952006-11-22 14:57:56 +00001039 struct ipw_priv *priv =
1040 container_of(work, struct ipw_priv, led_act_off.work);
Zhu Yi46441512006-01-24 16:37:59 +08001041 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00001042 ipw_led_activity_off(priv);
Zhu Yi46441512006-01-24 16:37:59 +08001043 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05001044}
1045
Adrian Bunka73e22b2006-01-21 01:39:42 +01001046static void ipw_led_band_on(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -05001047{
1048 unsigned long flags;
1049 u32 led;
1050
1051 /* Only nic type 1 supports mode LEDs */
James Ketrenosc848d0a2005-08-24 21:56:24 -05001052 if (priv->config & CFG_NO_LED ||
1053 priv->nic_type != EEPROM_NIC_TYPE_1 || !priv->assoc_network)
James Ketrenosa613bff2005-08-24 21:43:11 -05001054 return;
1055
1056 spin_lock_irqsave(&priv->lock, flags);
1057
James Ketrenosb095c382005-08-24 22:04:42 -05001058 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -05001059 if (priv->assoc_network->mode == IEEE_A) {
1060 led |= priv->led_ofdm_on;
1061 led &= priv->led_association_off;
1062 IPW_DEBUG_LED("Mode LED On: 802.11a\n");
1063 } else if (priv->assoc_network->mode == IEEE_G) {
1064 led |= priv->led_ofdm_on;
1065 led |= priv->led_association_on;
1066 IPW_DEBUG_LED("Mode LED On: 802.11g\n");
1067 } else {
1068 led &= priv->led_ofdm_off;
1069 led |= priv->led_association_on;
1070 IPW_DEBUG_LED("Mode LED On: 802.11b\n");
1071 }
1072
1073 led = ipw_register_toggle(led);
1074
1075 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -05001076 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -05001077
1078 spin_unlock_irqrestore(&priv->lock, flags);
1079}
1080
Adrian Bunka73e22b2006-01-21 01:39:42 +01001081static void ipw_led_band_off(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -05001082{
1083 unsigned long flags;
1084 u32 led;
1085
1086 /* Only nic type 1 supports mode LEDs */
1087 if (priv->config & CFG_NO_LED || priv->nic_type != EEPROM_NIC_TYPE_1)
1088 return;
1089
1090 spin_lock_irqsave(&priv->lock, flags);
1091
James Ketrenosb095c382005-08-24 22:04:42 -05001092 led = ipw_read_reg32(priv, IPW_EVENT_REG);
James Ketrenosa613bff2005-08-24 21:43:11 -05001093 led &= priv->led_ofdm_off;
1094 led &= priv->led_association_off;
1095
1096 led = ipw_register_toggle(led);
1097
1098 IPW_DEBUG_LED("Reg: 0x%08X\n", led);
James Ketrenosb095c382005-08-24 22:04:42 -05001099 ipw_write_reg32(priv, IPW_EVENT_REG, led);
James Ketrenosa613bff2005-08-24 21:43:11 -05001100
1101 spin_unlock_irqrestore(&priv->lock, flags);
1102}
1103
Adrian Bunka73e22b2006-01-21 01:39:42 +01001104static void ipw_led_radio_on(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -05001105{
1106 ipw_led_link_on(priv);
1107}
1108
Adrian Bunka73e22b2006-01-21 01:39:42 +01001109static void ipw_led_radio_off(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -05001110{
1111 ipw_led_activity_off(priv);
1112 ipw_led_link_off(priv);
1113}
1114
Adrian Bunka73e22b2006-01-21 01:39:42 +01001115static void ipw_led_link_up(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -05001116{
1117 /* Set the Link Led on for all nic types */
1118 ipw_led_link_on(priv);
1119}
1120
Adrian Bunka73e22b2006-01-21 01:39:42 +01001121static void ipw_led_link_down(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -05001122{
1123 ipw_led_activity_off(priv);
1124 ipw_led_link_off(priv);
1125
1126 if (priv->status & STATUS_RF_KILL_MASK)
1127 ipw_led_radio_off(priv);
1128}
1129
Adrian Bunka73e22b2006-01-21 01:39:42 +01001130static void ipw_led_init(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -05001131{
1132 priv->nic_type = priv->eeprom[EEPROM_NIC_TYPE];
1133
1134 /* Set the default PINs for the link and activity leds */
James Ketrenosb095c382005-08-24 22:04:42 -05001135 priv->led_activity_on = IPW_ACTIVITY_LED;
1136 priv->led_activity_off = ~(IPW_ACTIVITY_LED);
James Ketrenosa613bff2005-08-24 21:43:11 -05001137
James Ketrenosb095c382005-08-24 22:04:42 -05001138 priv->led_association_on = IPW_ASSOCIATED_LED;
1139 priv->led_association_off = ~(IPW_ASSOCIATED_LED);
James Ketrenosa613bff2005-08-24 21:43:11 -05001140
1141 /* Set the default PINs for the OFDM leds */
James Ketrenosb095c382005-08-24 22:04:42 -05001142 priv->led_ofdm_on = IPW_OFDM_LED;
1143 priv->led_ofdm_off = ~(IPW_OFDM_LED);
James Ketrenosa613bff2005-08-24 21:43:11 -05001144
1145 switch (priv->nic_type) {
1146 case EEPROM_NIC_TYPE_1:
1147 /* In this NIC type, the LEDs are reversed.... */
James Ketrenosb095c382005-08-24 22:04:42 -05001148 priv->led_activity_on = IPW_ASSOCIATED_LED;
1149 priv->led_activity_off = ~(IPW_ASSOCIATED_LED);
1150 priv->led_association_on = IPW_ACTIVITY_LED;
1151 priv->led_association_off = ~(IPW_ACTIVITY_LED);
James Ketrenosa613bff2005-08-24 21:43:11 -05001152
1153 if (!(priv->config & CFG_NO_LED))
1154 ipw_led_band_on(priv);
1155
1156 /* And we don't blink link LEDs for this nic, so
1157 * just return here */
1158 return;
1159
1160 case EEPROM_NIC_TYPE_3:
1161 case EEPROM_NIC_TYPE_2:
1162 case EEPROM_NIC_TYPE_4:
1163 case EEPROM_NIC_TYPE_0:
1164 break;
1165
1166 default:
1167 IPW_DEBUG_INFO("Unknown NIC type from EEPROM: %d\n",
1168 priv->nic_type);
1169 priv->nic_type = EEPROM_NIC_TYPE_0;
1170 break;
1171 }
1172
1173 if (!(priv->config & CFG_NO_LED)) {
1174 if (priv->status & STATUS_ASSOCIATED)
1175 ipw_led_link_on(priv);
1176 else
1177 ipw_led_link_off(priv);
1178 }
1179}
1180
Adrian Bunka73e22b2006-01-21 01:39:42 +01001181static void ipw_led_shutdown(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -05001182{
James Ketrenosa613bff2005-08-24 21:43:11 -05001183 ipw_led_activity_off(priv);
1184 ipw_led_link_off(priv);
1185 ipw_led_band_off(priv);
James Ketrenosafbf30a2005-08-25 00:05:33 -05001186 cancel_delayed_work(&priv->led_link_on);
1187 cancel_delayed_work(&priv->led_link_off);
1188 cancel_delayed_work(&priv->led_act_off);
James Ketrenosa613bff2005-08-24 21:43:11 -05001189}
1190
James Ketrenos43f66a62005-03-25 12:31:53 -06001191/*
1192 * The following adds a new attribute to the sysfs representation
1193 * of this device driver (i.e. a new file in /sys/bus/pci/drivers/ipw/)
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001194 * used for controlling the debug level.
Jeff Garzikbf794512005-07-31 13:07:26 -04001195 *
James Ketrenos43f66a62005-03-25 12:31:53 -06001196 * See the level definitions in ipw for details.
1197 */
Greg Kroah-Hartman0457e1a2017-06-09 11:03:10 +02001198static ssize_t debug_level_show(struct device_driver *d, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001199{
1200 return sprintf(buf, "0x%08X\n", ipw_debug_level);
1201}
James Ketrenosa613bff2005-08-24 21:43:11 -05001202
Greg Kroah-Hartman0457e1a2017-06-09 11:03:10 +02001203static ssize_t debug_level_store(struct device_driver *d, const char *buf,
James Ketrenosa613bff2005-08-24 21:43:11 -05001204 size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001205{
1206 char *p = (char *)buf;
1207 u32 val;
1208
1209 if (p[1] == 'x' || p[1] == 'X' || p[0] == 'x' || p[0] == 'X') {
1210 p++;
1211 if (p[0] == 'x' || p[0] == 'X')
1212 p++;
1213 val = simple_strtoul(p, &p, 16);
1214 } else
1215 val = simple_strtoul(p, &p, 10);
Jeff Garzikbf794512005-07-31 13:07:26 -04001216 if (p == buf)
1217 printk(KERN_INFO DRV_NAME
James Ketrenos43f66a62005-03-25 12:31:53 -06001218 ": %s is not in hex or decimal form.\n", buf);
1219 else
1220 ipw_debug_level = val;
1221
1222 return strnlen(buf, count);
1223}
Greg Kroah-Hartman0457e1a2017-06-09 11:03:10 +02001224static DRIVER_ATTR_RW(debug_level);
James Ketrenos43f66a62005-03-25 12:31:53 -06001225
James Ketrenosb39860c2005-08-12 09:36:32 -05001226static inline u32 ipw_get_event_log_len(struct ipw_priv *priv)
1227{
Zhu Yic8fe6672006-01-24 16:36:36 +08001228 /* length = 1st dword in log */
James Ketrenosb39860c2005-08-12 09:36:32 -05001229 return ipw_read_reg32(priv, ipw_read32(priv, IPW_EVENT_LOG));
1230}
1231
1232static void ipw_capture_event_log(struct ipw_priv *priv,
1233 u32 log_len, struct ipw_event *log)
1234{
1235 u32 base;
1236
1237 if (log_len) {
1238 base = ipw_read32(priv, IPW_EVENT_LOG);
1239 ipw_read_indirect(priv, base + sizeof(base) + sizeof(u32),
1240 (u8 *) log, sizeof(*log) * log_len);
1241 }
1242}
1243
1244static struct ipw_fw_error *ipw_alloc_error_log(struct ipw_priv *priv)
1245{
1246 struct ipw_fw_error *error;
1247 u32 log_len = ipw_get_event_log_len(priv);
1248 u32 base = ipw_read32(priv, IPW_ERROR_LOG);
1249 u32 elem_len = ipw_read_reg32(priv, base);
1250
1251 error = kmalloc(sizeof(*error) +
1252 sizeof(*error->elem) * elem_len +
1253 sizeof(*error->log) * log_len, GFP_ATOMIC);
1254 if (!error) {
1255 IPW_ERROR("Memory allocation for firmware error log "
1256 "failed.\n");
1257 return NULL;
1258 }
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001259 error->jiffies = jiffies;
James Ketrenosb39860c2005-08-12 09:36:32 -05001260 error->status = priv->status;
1261 error->config = priv->config;
1262 error->elem_len = elem_len;
1263 error->log_len = log_len;
1264 error->elem = (struct ipw_error_elem *)error->payload;
Zhu Yi3b26b112005-11-17 13:58:30 +08001265 error->log = (struct ipw_event *)(error->elem + elem_len);
James Ketrenosb39860c2005-08-12 09:36:32 -05001266
1267 ipw_capture_event_log(priv, log_len, error->log);
1268
1269 if (elem_len)
1270 ipw_read_indirect(priv, base + sizeof(base), (u8 *) error->elem,
1271 sizeof(*error->elem) * elem_len);
1272
1273 return error;
1274}
1275
James Ketrenosb39860c2005-08-12 09:36:32 -05001276static ssize_t show_event_log(struct device *d,
1277 struct device_attribute *attr, char *buf)
1278{
1279 struct ipw_priv *priv = dev_get_drvdata(d);
1280 u32 log_len = ipw_get_event_log_len(priv);
Reinette Chatre412e9e72007-12-18 22:01:02 -08001281 u32 log_size;
1282 struct ipw_event *log;
James Ketrenosb39860c2005-08-12 09:36:32 -05001283 u32 len = 0, i;
1284
Reinette Chatre412e9e72007-12-18 22:01:02 -08001285 /* not using min() because of its strict type checking */
1286 log_size = PAGE_SIZE / sizeof(*log) > log_len ?
1287 sizeof(*log) * log_len : PAGE_SIZE;
1288 log = kzalloc(log_size, GFP_KERNEL);
1289 if (!log) {
1290 IPW_ERROR("Unable to allocate memory for log\n");
1291 return 0;
1292 }
1293 log_len = log_size / sizeof(*log);
James Ketrenosb39860c2005-08-12 09:36:32 -05001294 ipw_capture_event_log(priv, log_len, log);
1295
1296 len += snprintf(buf + len, PAGE_SIZE - len, "%08X", log_len);
1297 for (i = 0; i < log_len; i++)
1298 len += snprintf(buf + len, PAGE_SIZE - len,
1299 "\n%08X%08X%08X",
1300 log[i].time, log[i].event, log[i].data);
1301 len += snprintf(buf + len, PAGE_SIZE - len, "\n");
Reinette Chatre412e9e72007-12-18 22:01:02 -08001302 kfree(log);
James Ketrenosb39860c2005-08-12 09:36:32 -05001303 return len;
1304}
1305
1306static DEVICE_ATTR(event_log, S_IRUGO, show_event_log, NULL);
1307
1308static ssize_t show_error(struct device *d,
1309 struct device_attribute *attr, char *buf)
1310{
1311 struct ipw_priv *priv = dev_get_drvdata(d);
1312 u32 len = 0, i;
1313 if (!priv->error)
1314 return 0;
1315 len += snprintf(buf + len, PAGE_SIZE - len,
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001316 "%08lX%08X%08X%08X",
1317 priv->error->jiffies,
James Ketrenosb39860c2005-08-12 09:36:32 -05001318 priv->error->status,
1319 priv->error->config, priv->error->elem_len);
1320 for (i = 0; i < priv->error->elem_len; i++)
1321 len += snprintf(buf + len, PAGE_SIZE - len,
1322 "\n%08X%08X%08X%08X%08X%08X%08X",
1323 priv->error->elem[i].time,
1324 priv->error->elem[i].desc,
1325 priv->error->elem[i].blink1,
1326 priv->error->elem[i].blink2,
1327 priv->error->elem[i].link1,
1328 priv->error->elem[i].link2,
1329 priv->error->elem[i].data);
1330
1331 len += snprintf(buf + len, PAGE_SIZE - len,
1332 "\n%08X", priv->error->log_len);
1333 for (i = 0; i < priv->error->log_len; i++)
1334 len += snprintf(buf + len, PAGE_SIZE - len,
1335 "\n%08X%08X%08X",
1336 priv->error->log[i].time,
1337 priv->error->log[i].event,
1338 priv->error->log[i].data);
1339 len += snprintf(buf + len, PAGE_SIZE - len, "\n");
1340 return len;
1341}
1342
1343static ssize_t clear_error(struct device *d,
1344 struct device_attribute *attr,
1345 const char *buf, size_t count)
1346{
1347 struct ipw_priv *priv = dev_get_drvdata(d);
Jesper Juhl8f760782006-06-27 02:55:06 -07001348
1349 kfree(priv->error);
1350 priv->error = NULL;
James Ketrenosb39860c2005-08-12 09:36:32 -05001351 return count;
1352}
1353
1354static DEVICE_ATTR(error, S_IRUGO | S_IWUSR, show_error, clear_error);
1355
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001356static ssize_t show_cmd_log(struct device *d,
1357 struct device_attribute *attr, char *buf)
1358{
1359 struct ipw_priv *priv = dev_get_drvdata(d);
1360 u32 len = 0, i;
1361 if (!priv->cmdlog)
1362 return 0;
1363 for (i = (priv->cmdlog_pos + 1) % priv->cmdlog_len;
Dan Carpenter9fdc7232014-10-09 12:59:39 +03001364 (i != priv->cmdlog_pos) && (len < PAGE_SIZE);
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001365 i = (i + 1) % priv->cmdlog_len) {
1366 len +=
1367 snprintf(buf + len, PAGE_SIZE - len,
1368 "\n%08lX%08X%08X%08X\n", priv->cmdlog[i].jiffies,
1369 priv->cmdlog[i].retcode, priv->cmdlog[i].cmd.cmd,
1370 priv->cmdlog[i].cmd.len);
1371 len +=
1372 snprintk_buf(buf + len, PAGE_SIZE - len,
1373 (u8 *) priv->cmdlog[i].cmd.param,
1374 priv->cmdlog[i].cmd.len);
1375 len += snprintf(buf + len, PAGE_SIZE - len, "\n");
1376 }
1377 len += snprintf(buf + len, PAGE_SIZE - len, "\n");
1378 return len;
1379}
1380
1381static DEVICE_ATTR(cmd_log, S_IRUGO, show_cmd_log, NULL);
1382
Zhu Yid685b8c2006-04-13 17:20:27 +08001383#ifdef CONFIG_IPW2200_PROMISCUOUS
1384static void ipw_prom_free(struct ipw_priv *priv);
1385static int ipw_prom_alloc(struct ipw_priv *priv);
1386static ssize_t store_rtap_iface(struct device *d,
1387 struct device_attribute *attr,
1388 const char *buf, size_t count)
1389{
1390 struct ipw_priv *priv = dev_get_drvdata(d);
1391 int rc = 0;
1392
1393 if (count < 1)
1394 return -EINVAL;
1395
1396 switch (buf[0]) {
1397 case '0':
1398 if (!rtap_iface)
1399 return count;
1400
1401 if (netif_running(priv->prom_net_dev)) {
1402 IPW_WARNING("Interface is up. Cannot unregister.\n");
1403 return count;
1404 }
1405
1406 ipw_prom_free(priv);
1407 rtap_iface = 0;
1408 break;
1409
1410 case '1':
1411 if (rtap_iface)
1412 return count;
1413
1414 rc = ipw_prom_alloc(priv);
1415 if (!rc)
1416 rtap_iface = 1;
1417 break;
1418
1419 default:
1420 return -EINVAL;
1421 }
1422
1423 if (rc) {
1424 IPW_ERROR("Failed to register promiscuous network "
1425 "device (error %d).\n", rc);
1426 }
1427
1428 return count;
1429}
1430
1431static ssize_t show_rtap_iface(struct device *d,
1432 struct device_attribute *attr,
1433 char *buf)
1434{
1435 struct ipw_priv *priv = dev_get_drvdata(d);
1436 if (rtap_iface)
1437 return sprintf(buf, "%s", priv->prom_net_dev->name);
1438 else {
1439 buf[0] = '-';
1440 buf[1] = '1';
1441 buf[2] = '\0';
1442 return 3;
1443 }
1444}
1445
1446static DEVICE_ATTR(rtap_iface, S_IWUSR | S_IRUSR, show_rtap_iface,
1447 store_rtap_iface);
1448
1449static ssize_t store_rtap_filter(struct device *d,
1450 struct device_attribute *attr,
1451 const char *buf, size_t count)
1452{
1453 struct ipw_priv *priv = dev_get_drvdata(d);
1454
1455 if (!priv->prom_priv) {
1456 IPW_ERROR("Attempting to set filter without "
1457 "rtap_iface enabled.\n");
1458 return -EPERM;
1459 }
1460
1461 priv->prom_priv->filter = simple_strtol(buf, NULL, 0);
1462
1463 IPW_DEBUG_INFO("Setting rtap filter to " BIT_FMT16 "\n",
1464 BIT_ARG16(priv->prom_priv->filter));
1465
1466 return count;
1467}
1468
1469static ssize_t show_rtap_filter(struct device *d,
1470 struct device_attribute *attr,
1471 char *buf)
1472{
1473 struct ipw_priv *priv = dev_get_drvdata(d);
1474 return sprintf(buf, "0x%04X",
1475 priv->prom_priv ? priv->prom_priv->filter : 0);
1476}
1477
1478static DEVICE_ATTR(rtap_filter, S_IWUSR | S_IRUSR, show_rtap_filter,
1479 store_rtap_filter);
1480#endif
1481
James Ketrenosa613bff2005-08-24 21:43:11 -05001482static ssize_t show_scan_age(struct device *d, struct device_attribute *attr,
1483 char *buf)
1484{
1485 struct ipw_priv *priv = dev_get_drvdata(d);
1486 return sprintf(buf, "%d\n", priv->ieee->scan_age);
1487}
1488
1489static ssize_t store_scan_age(struct device *d, struct device_attribute *attr,
1490 const char *buf, size_t count)
1491{
1492 struct ipw_priv *priv = dev_get_drvdata(d);
1493 struct net_device *dev = priv->net_dev;
1494 char buffer[] = "00000000";
1495 unsigned long len =
1496 (sizeof(buffer) - 1) > count ? count : sizeof(buffer) - 1;
1497 unsigned long val;
1498 char *p = buffer;
1499
1500 IPW_DEBUG_INFO("enter\n");
1501
1502 strncpy(buffer, buf, len);
1503 buffer[len] = 0;
1504
1505 if (p[1] == 'x' || p[1] == 'X' || p[0] == 'x' || p[0] == 'X') {
1506 p++;
1507 if (p[0] == 'x' || p[0] == 'X')
1508 p++;
1509 val = simple_strtoul(p, &p, 16);
1510 } else
1511 val = simple_strtoul(p, &p, 10);
1512 if (p == buffer) {
1513 IPW_DEBUG_INFO("%s: user supplied invalid value.\n", dev->name);
1514 } else {
1515 priv->ieee->scan_age = val;
1516 IPW_DEBUG_INFO("set scan_age = %u\n", priv->ieee->scan_age);
1517 }
1518
1519 IPW_DEBUG_INFO("exit\n");
1520 return len;
1521}
1522
1523static DEVICE_ATTR(scan_age, S_IWUSR | S_IRUGO, show_scan_age, store_scan_age);
1524
1525static ssize_t show_led(struct device *d, struct device_attribute *attr,
1526 char *buf)
1527{
1528 struct ipw_priv *priv = dev_get_drvdata(d);
1529 return sprintf(buf, "%d\n", (priv->config & CFG_NO_LED) ? 0 : 1);
1530}
1531
1532static ssize_t store_led(struct device *d, struct device_attribute *attr,
1533 const char *buf, size_t count)
1534{
1535 struct ipw_priv *priv = dev_get_drvdata(d);
1536
1537 IPW_DEBUG_INFO("enter\n");
1538
1539 if (count == 0)
1540 return 0;
1541
1542 if (*buf == 0) {
1543 IPW_DEBUG_LED("Disabling LED control.\n");
1544 priv->config |= CFG_NO_LED;
1545 ipw_led_shutdown(priv);
1546 } else {
1547 IPW_DEBUG_LED("Enabling LED control.\n");
1548 priv->config &= ~CFG_NO_LED;
1549 ipw_led_init(priv);
1550 }
1551
1552 IPW_DEBUG_INFO("exit\n");
1553 return count;
1554}
1555
1556static DEVICE_ATTR(led, S_IWUSR | S_IRUGO, show_led, store_led);
1557
Andrew Mortonad3fee52005-06-20 14:30:36 -07001558static ssize_t show_status(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001559 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001560{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001561 struct ipw_priv *p = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001562 return sprintf(buf, "0x%08x\n", (int)p->status);
1563}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001564
James Ketrenos43f66a62005-03-25 12:31:53 -06001565static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
1566
Andrew Mortonad3fee52005-06-20 14:30:36 -07001567static ssize_t show_cfg(struct device *d, struct device_attribute *attr,
1568 char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001569{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001570 struct ipw_priv *p = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001571 return sprintf(buf, "0x%08x\n", (int)p->config);
1572}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001573
James Ketrenos43f66a62005-03-25 12:31:53 -06001574static DEVICE_ATTR(cfg, S_IRUGO, show_cfg, NULL);
1575
Andrew Mortonad3fee52005-06-20 14:30:36 -07001576static ssize_t show_nic_type(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001577 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001578{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001579 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenosa613bff2005-08-24 21:43:11 -05001580 return sprintf(buf, "TYPE: %d\n", priv->nic_type);
James Ketrenos43f66a62005-03-25 12:31:53 -06001581}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001582
James Ketrenos43f66a62005-03-25 12:31:53 -06001583static DEVICE_ATTR(nic_type, S_IRUGO, show_nic_type, NULL);
1584
Andrew Mortonad3fee52005-06-20 14:30:36 -07001585static ssize_t show_ucode_version(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001586 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001587{
1588 u32 len = sizeof(u32), tmp = 0;
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001589 struct ipw_priv *p = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001590
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001591 if (ipw_get_ordinal(p, IPW_ORD_STAT_UCODE_VERSION, &tmp, &len))
James Ketrenos43f66a62005-03-25 12:31:53 -06001592 return 0;
1593
1594 return sprintf(buf, "0x%08x\n", tmp);
1595}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001596
1597static DEVICE_ATTR(ucode_version, S_IWUSR | S_IRUGO, show_ucode_version, NULL);
James Ketrenos43f66a62005-03-25 12:31:53 -06001598
Andrew Mortonad3fee52005-06-20 14:30:36 -07001599static ssize_t show_rtc(struct device *d, struct device_attribute *attr,
1600 char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001601{
1602 u32 len = sizeof(u32), tmp = 0;
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001603 struct ipw_priv *p = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001604
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001605 if (ipw_get_ordinal(p, IPW_ORD_STAT_RTC, &tmp, &len))
James Ketrenos43f66a62005-03-25 12:31:53 -06001606 return 0;
1607
1608 return sprintf(buf, "0x%08x\n", tmp);
1609}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001610
1611static DEVICE_ATTR(rtc, S_IWUSR | S_IRUGO, show_rtc, NULL);
James Ketrenos43f66a62005-03-25 12:31:53 -06001612
1613/*
1614 * Add a device attribute to view/control the delay between eeprom
1615 * operations.
1616 */
Andrew Mortonad3fee52005-06-20 14:30:36 -07001617static ssize_t show_eeprom_delay(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001618 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001619{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001620 struct ipw_priv *p = dev_get_drvdata(d);
1621 int n = p->eeprom_delay;
James Ketrenos43f66a62005-03-25 12:31:53 -06001622 return sprintf(buf, "%i\n", n);
1623}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001624static ssize_t store_eeprom_delay(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001625 struct device_attribute *attr,
1626 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001627{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001628 struct ipw_priv *p = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001629 sscanf(buf, "%i", &p->eeprom_delay);
1630 return strnlen(buf, count);
1631}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001632
1633static DEVICE_ATTR(eeprom_delay, S_IWUSR | S_IRUGO,
1634 show_eeprom_delay, store_eeprom_delay);
James Ketrenos43f66a62005-03-25 12:31:53 -06001635
Andrew Mortonad3fee52005-06-20 14:30:36 -07001636static ssize_t show_command_event_reg(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001637 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001638{
1639 u32 reg = 0;
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001640 struct ipw_priv *p = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001641
James Ketrenosb095c382005-08-24 22:04:42 -05001642 reg = ipw_read_reg32(p, IPW_INTERNAL_CMD_EVENT);
James Ketrenos43f66a62005-03-25 12:31:53 -06001643 return sprintf(buf, "0x%08x\n", reg);
1644}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001645static ssize_t store_command_event_reg(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001646 struct device_attribute *attr,
1647 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001648{
1649 u32 reg;
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001650 struct ipw_priv *p = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001651
1652 sscanf(buf, "%x", &reg);
James Ketrenosb095c382005-08-24 22:04:42 -05001653 ipw_write_reg32(p, IPW_INTERNAL_CMD_EVENT, reg);
James Ketrenos43f66a62005-03-25 12:31:53 -06001654 return strnlen(buf, count);
1655}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001656
1657static DEVICE_ATTR(command_event_reg, S_IWUSR | S_IRUGO,
1658 show_command_event_reg, store_command_event_reg);
James Ketrenos43f66a62005-03-25 12:31:53 -06001659
Andrew Mortonad3fee52005-06-20 14:30:36 -07001660static ssize_t show_mem_gpio_reg(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001661 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001662{
1663 u32 reg = 0;
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001664 struct ipw_priv *p = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001665
1666 reg = ipw_read_reg32(p, 0x301100);
1667 return sprintf(buf, "0x%08x\n", reg);
1668}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001669static ssize_t store_mem_gpio_reg(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001670 struct device_attribute *attr,
1671 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001672{
1673 u32 reg;
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001674 struct ipw_priv *p = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001675
1676 sscanf(buf, "%x", &reg);
1677 ipw_write_reg32(p, 0x301100, reg);
1678 return strnlen(buf, count);
1679}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001680
1681static DEVICE_ATTR(mem_gpio_reg, S_IWUSR | S_IRUGO,
1682 show_mem_gpio_reg, store_mem_gpio_reg);
James Ketrenos43f66a62005-03-25 12:31:53 -06001683
Andrew Mortonad3fee52005-06-20 14:30:36 -07001684static ssize_t show_indirect_dword(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001685 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001686{
1687 u32 reg = 0;
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001688 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenosafbf30a2005-08-25 00:05:33 -05001689
Jeff Garzikbf794512005-07-31 13:07:26 -04001690 if (priv->status & STATUS_INDIRECT_DWORD)
James Ketrenos43f66a62005-03-25 12:31:53 -06001691 reg = ipw_read_reg32(priv, priv->indirect_dword);
Jeff Garzikbf794512005-07-31 13:07:26 -04001692 else
James Ketrenos43f66a62005-03-25 12:31:53 -06001693 reg = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04001694
James Ketrenos43f66a62005-03-25 12:31:53 -06001695 return sprintf(buf, "0x%08x\n", reg);
1696}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001697static ssize_t store_indirect_dword(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001698 struct device_attribute *attr,
1699 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001700{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001701 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001702
1703 sscanf(buf, "%x", &priv->indirect_dword);
1704 priv->status |= STATUS_INDIRECT_DWORD;
1705 return strnlen(buf, count);
1706}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001707
1708static DEVICE_ATTR(indirect_dword, S_IWUSR | S_IRUGO,
1709 show_indirect_dword, store_indirect_dword);
James Ketrenos43f66a62005-03-25 12:31:53 -06001710
Andrew Mortonad3fee52005-06-20 14:30:36 -07001711static ssize_t show_indirect_byte(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001712 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001713{
1714 u8 reg = 0;
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001715 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenosafbf30a2005-08-25 00:05:33 -05001716
Jeff Garzikbf794512005-07-31 13:07:26 -04001717 if (priv->status & STATUS_INDIRECT_BYTE)
James Ketrenos43f66a62005-03-25 12:31:53 -06001718 reg = ipw_read_reg8(priv, priv->indirect_byte);
Jeff Garzikbf794512005-07-31 13:07:26 -04001719 else
James Ketrenos43f66a62005-03-25 12:31:53 -06001720 reg = 0;
1721
1722 return sprintf(buf, "0x%02x\n", reg);
1723}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001724static ssize_t store_indirect_byte(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001725 struct device_attribute *attr,
1726 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001727{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001728 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001729
1730 sscanf(buf, "%x", &priv->indirect_byte);
1731 priv->status |= STATUS_INDIRECT_BYTE;
1732 return strnlen(buf, count);
1733}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001734
1735static DEVICE_ATTR(indirect_byte, S_IWUSR | S_IRUGO,
James Ketrenos43f66a62005-03-25 12:31:53 -06001736 show_indirect_byte, store_indirect_byte);
1737
Andrew Mortonad3fee52005-06-20 14:30:36 -07001738static ssize_t show_direct_dword(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001739 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001740{
1741 u32 reg = 0;
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001742 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001743
Jeff Garzikbf794512005-07-31 13:07:26 -04001744 if (priv->status & STATUS_DIRECT_DWORD)
James Ketrenos43f66a62005-03-25 12:31:53 -06001745 reg = ipw_read32(priv, priv->direct_dword);
Jeff Garzikbf794512005-07-31 13:07:26 -04001746 else
James Ketrenos43f66a62005-03-25 12:31:53 -06001747 reg = 0;
1748
1749 return sprintf(buf, "0x%08x\n", reg);
1750}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001751static ssize_t store_direct_dword(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001752 struct device_attribute *attr,
1753 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001754{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001755 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001756
1757 sscanf(buf, "%x", &priv->direct_dword);
1758 priv->status |= STATUS_DIRECT_DWORD;
1759 return strnlen(buf, count);
1760}
James Ketrenos43f66a62005-03-25 12:31:53 -06001761
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001762static DEVICE_ATTR(direct_dword, S_IWUSR | S_IRUGO,
1763 show_direct_dword, store_direct_dword);
James Ketrenos43f66a62005-03-25 12:31:53 -06001764
Arjan van de Ven858119e2006-01-14 13:20:43 -08001765static int rf_kill_active(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06001766{
Matthew Garrett25f94ae2009-11-11 14:36:31 -05001767 if (0 == (ipw_read32(priv, 0x30) & 0x10000)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001768 priv->status |= STATUS_RF_KILL_HW;
Matthew Garrett25f94ae2009-11-11 14:36:31 -05001769 wiphy_rfkill_set_hw_state(priv->ieee->wdev.wiphy, true);
1770 } else {
James Ketrenos43f66a62005-03-25 12:31:53 -06001771 priv->status &= ~STATUS_RF_KILL_HW;
Matthew Garrett25f94ae2009-11-11 14:36:31 -05001772 wiphy_rfkill_set_hw_state(priv->ieee->wdev.wiphy, false);
1773 }
James Ketrenos43f66a62005-03-25 12:31:53 -06001774
1775 return (priv->status & STATUS_RF_KILL_HW) ? 1 : 0;
1776}
1777
Andrew Mortonad3fee52005-06-20 14:30:36 -07001778static ssize_t show_rf_kill(struct device *d, struct device_attribute *attr,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001779 char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001780{
1781 /* 0 - RF kill not enabled
Jeff Garzikbf794512005-07-31 13:07:26 -04001782 1 - SW based RF kill active (sysfs)
James Ketrenos43f66a62005-03-25 12:31:53 -06001783 2 - HW based RF kill active
1784 3 - Both HW and SW baed RF kill active */
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001785 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001786 int val = ((priv->status & STATUS_RF_KILL_SW) ? 0x1 : 0x0) |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001787 (rf_kill_active(priv) ? 0x2 : 0x0);
James Ketrenos43f66a62005-03-25 12:31:53 -06001788 return sprintf(buf, "%i\n", val);
1789}
1790
1791static int ipw_radio_kill_sw(struct ipw_priv *priv, int disable_radio)
1792{
Jeff Garzikbf794512005-07-31 13:07:26 -04001793 if ((disable_radio ? 1 : 0) ==
James Ketrenosea2b26e2005-08-24 21:25:16 -05001794 ((priv->status & STATUS_RF_KILL_SW) ? 1 : 0))
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001795 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06001796
1797 IPW_DEBUG_RF_KILL("Manual SW RF Kill set to: RADIO %s\n",
1798 disable_radio ? "OFF" : "ON");
1799
1800 if (disable_radio) {
1801 priv->status |= STATUS_RF_KILL_SW;
1802
Tejun Heobcb6d912011-01-26 12:12:50 +01001803 cancel_delayed_work(&priv->request_scan);
1804 cancel_delayed_work(&priv->request_direct_scan);
1805 cancel_delayed_work(&priv->request_passive_scan);
1806 cancel_delayed_work(&priv->scan_event);
1807 schedule_work(&priv->down);
James Ketrenos43f66a62005-03-25 12:31:53 -06001808 } else {
1809 priv->status &= ~STATUS_RF_KILL_SW;
1810 if (rf_kill_active(priv)) {
1811 IPW_DEBUG_RF_KILL("Can not turn radio back on - "
1812 "disabled by HW switch\n");
1813 /* Make sure the RF_KILL check timer is running */
1814 cancel_delayed_work(&priv->rf_kill);
Tejun Heobcb6d912011-01-26 12:12:50 +01001815 schedule_delayed_work(&priv->rf_kill,
1816 round_jiffies_relative(2 * HZ));
Jeff Garzikbf794512005-07-31 13:07:26 -04001817 } else
Tejun Heobcb6d912011-01-26 12:12:50 +01001818 schedule_work(&priv->up);
James Ketrenos43f66a62005-03-25 12:31:53 -06001819 }
1820
1821 return 1;
1822}
1823
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001824static ssize_t store_rf_kill(struct device *d, struct device_attribute *attr,
1825 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001826{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001827 struct ipw_priv *priv = dev_get_drvdata(d);
Jeff Garzikbf794512005-07-31 13:07:26 -04001828
James Ketrenos43f66a62005-03-25 12:31:53 -06001829 ipw_radio_kill_sw(priv, buf[0] == '1');
1830
1831 return count;
1832}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001833
1834static DEVICE_ATTR(rf_kill, S_IWUSR | S_IRUGO, show_rf_kill, store_rf_kill);
James Ketrenos43f66a62005-03-25 12:31:53 -06001835
James Ketrenosb095c382005-08-24 22:04:42 -05001836static ssize_t show_speed_scan(struct device *d, struct device_attribute *attr,
1837 char *buf)
1838{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001839 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenosb095c382005-08-24 22:04:42 -05001840 int pos = 0, len = 0;
1841 if (priv->config & CFG_SPEED_SCAN) {
1842 while (priv->speed_scan[pos] != 0)
1843 len += sprintf(&buf[len], "%d ",
1844 priv->speed_scan[pos++]);
1845 return len + sprintf(&buf[len], "\n");
1846 }
1847
1848 return sprintf(buf, "0\n");
1849}
1850
1851static ssize_t store_speed_scan(struct device *d, struct device_attribute *attr,
1852 const char *buf, size_t count)
1853{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001854 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenosb095c382005-08-24 22:04:42 -05001855 int channel, pos = 0;
1856 const char *p = buf;
1857
1858 /* list of space separated channels to scan, optionally ending with 0 */
1859 while ((channel = simple_strtol(p, NULL, 0))) {
1860 if (pos == MAX_SPEED_SCAN - 1) {
1861 priv->speed_scan[pos] = 0;
1862 break;
1863 }
1864
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001865 if (libipw_is_valid_channel(priv->ieee, channel))
James Ketrenosb095c382005-08-24 22:04:42 -05001866 priv->speed_scan[pos++] = channel;
1867 else
1868 IPW_WARNING("Skipping invalid channel request: %d\n",
1869 channel);
1870 p = strchr(p, ' ');
1871 if (!p)
1872 break;
1873 while (*p == ' ' || *p == '\t')
1874 p++;
1875 }
1876
1877 if (pos == 0)
1878 priv->config &= ~CFG_SPEED_SCAN;
1879 else {
1880 priv->speed_scan_pos = 0;
1881 priv->config |= CFG_SPEED_SCAN;
1882 }
1883
1884 return count;
1885}
1886
1887static DEVICE_ATTR(speed_scan, S_IWUSR | S_IRUGO, show_speed_scan,
1888 store_speed_scan);
1889
1890static ssize_t show_net_stats(struct device *d, struct device_attribute *attr,
1891 char *buf)
1892{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001893 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenosb095c382005-08-24 22:04:42 -05001894 return sprintf(buf, "%c\n", (priv->config & CFG_NET_STATS) ? '1' : '0');
1895}
1896
1897static ssize_t store_net_stats(struct device *d, struct device_attribute *attr,
1898 const char *buf, size_t count)
1899{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001900 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenosb095c382005-08-24 22:04:42 -05001901 if (buf[0] == '1')
1902 priv->config |= CFG_NET_STATS;
1903 else
1904 priv->config &= ~CFG_NET_STATS;
1905
1906 return count;
1907}
1908
James Ketrenosafbf30a2005-08-25 00:05:33 -05001909static DEVICE_ATTR(net_stats, S_IWUSR | S_IRUGO,
1910 show_net_stats, store_net_stats);
James Ketrenosb095c382005-08-24 22:04:42 -05001911
Zhu Yi375dd242007-02-14 16:04:24 +08001912static ssize_t show_channels(struct device *d,
1913 struct device_attribute *attr,
1914 char *buf)
1915{
1916 struct ipw_priv *priv = dev_get_drvdata(d);
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001917 const struct libipw_geo *geo = libipw_get_geo(priv->ieee);
Zhu Yi375dd242007-02-14 16:04:24 +08001918 int len = 0, i;
1919
1920 len = sprintf(&buf[len],
1921 "Displaying %d channels in 2.4Ghz band "
1922 "(802.11bg):\n", geo->bg_channels);
1923
1924 for (i = 0; i < geo->bg_channels; i++) {
1925 len += sprintf(&buf[len], "%d: BSS%s%s, %s, Band %s.\n",
1926 geo->bg[i].channel,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001927 geo->bg[i].flags & LIBIPW_CH_RADAR_DETECT ?
Zhu Yi375dd242007-02-14 16:04:24 +08001928 " (radar spectrum)" : "",
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001929 ((geo->bg[i].flags & LIBIPW_CH_NO_IBSS) ||
1930 (geo->bg[i].flags & LIBIPW_CH_RADAR_DETECT))
Zhu Yi375dd242007-02-14 16:04:24 +08001931 ? "" : ", IBSS",
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001932 geo->bg[i].flags & LIBIPW_CH_PASSIVE_ONLY ?
Zhu Yi375dd242007-02-14 16:04:24 +08001933 "passive only" : "active/passive",
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001934 geo->bg[i].flags & LIBIPW_CH_B_ONLY ?
Zhu Yi375dd242007-02-14 16:04:24 +08001935 "B" : "B/G");
1936 }
1937
1938 len += sprintf(&buf[len],
1939 "Displaying %d channels in 5.2Ghz band "
1940 "(802.11a):\n", geo->a_channels);
1941 for (i = 0; i < geo->a_channels; i++) {
1942 len += sprintf(&buf[len], "%d: BSS%s%s, %s.\n",
1943 geo->a[i].channel,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001944 geo->a[i].flags & LIBIPW_CH_RADAR_DETECT ?
Zhu Yi375dd242007-02-14 16:04:24 +08001945 " (radar spectrum)" : "",
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001946 ((geo->a[i].flags & LIBIPW_CH_NO_IBSS) ||
1947 (geo->a[i].flags & LIBIPW_CH_RADAR_DETECT))
Zhu Yi375dd242007-02-14 16:04:24 +08001948 ? "" : ", IBSS",
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001949 geo->a[i].flags & LIBIPW_CH_PASSIVE_ONLY ?
Zhu Yi375dd242007-02-14 16:04:24 +08001950 "passive only" : "active/passive");
1951 }
1952
1953 return len;
1954}
1955
1956static DEVICE_ATTR(channels, S_IRUSR, show_channels, NULL);
1957
James Ketrenosea2b26e2005-08-24 21:25:16 -05001958static void notify_wx_assoc_event(struct ipw_priv *priv)
1959{
1960 union iwreq_data wrqu;
1961 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
1962 if (priv->status & STATUS_ASSOCIATED)
1963 memcpy(wrqu.ap_addr.sa_data, priv->bssid, ETH_ALEN);
1964 else
Joe Perches93803b32015-03-02 19:54:49 -08001965 eth_zero_addr(wrqu.ap_addr.sa_data);
James Ketrenosea2b26e2005-08-24 21:25:16 -05001966 wireless_send_event(priv->net_dev, SIOCGIWAP, &wrqu, NULL);
1967}
1968
James Ketrenos43f66a62005-03-25 12:31:53 -06001969static void ipw_irq_tasklet(struct ipw_priv *priv)
1970{
1971 u32 inta, inta_mask, handled = 0;
1972 unsigned long flags;
1973 int rc = 0;
1974
Zhu Yi89c318e2006-06-08 22:19:49 -07001975 spin_lock_irqsave(&priv->irq_lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06001976
James Ketrenosb095c382005-08-24 22:04:42 -05001977 inta = ipw_read32(priv, IPW_INTA_RW);
1978 inta_mask = ipw_read32(priv, IPW_INTA_MASK_R);
Indan Zupancic3c4a8cc2011-01-08 12:17:27 +01001979
1980 if (inta == 0xFFFFFFFF) {
1981 /* Hardware disappeared */
1982 IPW_WARNING("TASKLET INTA == 0xFFFFFFFF\n");
1983 /* Only handle the cached INTA values */
1984 inta = 0;
1985 }
James Ketrenosb095c382005-08-24 22:04:42 -05001986 inta &= (IPW_INTA_MASK_ALL & inta_mask);
James Ketrenos43f66a62005-03-25 12:31:53 -06001987
1988 /* Add any cached INTA values that need to be handled */
1989 inta |= priv->isr_inta;
1990
Zhu Yi89c318e2006-06-08 22:19:49 -07001991 spin_unlock_irqrestore(&priv->irq_lock, flags);
1992
1993 spin_lock_irqsave(&priv->lock, flags);
1994
James Ketrenos43f66a62005-03-25 12:31:53 -06001995 /* handle all the justifications for the interrupt */
James Ketrenosb095c382005-08-24 22:04:42 -05001996 if (inta & IPW_INTA_BIT_RX_TRANSFER) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001997 ipw_rx(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05001998 handled |= IPW_INTA_BIT_RX_TRANSFER;
James Ketrenos43f66a62005-03-25 12:31:53 -06001999 }
2000
James Ketrenosb095c382005-08-24 22:04:42 -05002001 if (inta & IPW_INTA_BIT_TX_CMD_QUEUE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002002 IPW_DEBUG_HC("Command completed.\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002003 rc = ipw_queue_tx_reclaim(priv, &priv->txq_cmd, -1);
James Ketrenos43f66a62005-03-25 12:31:53 -06002004 priv->status &= ~STATUS_HCMD_ACTIVE;
2005 wake_up_interruptible(&priv->wait_command_queue);
James Ketrenosb095c382005-08-24 22:04:42 -05002006 handled |= IPW_INTA_BIT_TX_CMD_QUEUE;
James Ketrenos43f66a62005-03-25 12:31:53 -06002007 }
2008
James Ketrenosb095c382005-08-24 22:04:42 -05002009 if (inta & IPW_INTA_BIT_TX_QUEUE_1) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002010 IPW_DEBUG_TX("TX_QUEUE_1\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002011 rc = ipw_queue_tx_reclaim(priv, &priv->txq[0], 0);
James Ketrenosb095c382005-08-24 22:04:42 -05002012 handled |= IPW_INTA_BIT_TX_QUEUE_1;
James Ketrenos43f66a62005-03-25 12:31:53 -06002013 }
2014
James Ketrenosb095c382005-08-24 22:04:42 -05002015 if (inta & IPW_INTA_BIT_TX_QUEUE_2) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002016 IPW_DEBUG_TX("TX_QUEUE_2\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002017 rc = ipw_queue_tx_reclaim(priv, &priv->txq[1], 1);
James Ketrenosb095c382005-08-24 22:04:42 -05002018 handled |= IPW_INTA_BIT_TX_QUEUE_2;
James Ketrenos43f66a62005-03-25 12:31:53 -06002019 }
2020
James Ketrenosb095c382005-08-24 22:04:42 -05002021 if (inta & IPW_INTA_BIT_TX_QUEUE_3) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002022 IPW_DEBUG_TX("TX_QUEUE_3\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002023 rc = ipw_queue_tx_reclaim(priv, &priv->txq[2], 2);
James Ketrenosb095c382005-08-24 22:04:42 -05002024 handled |= IPW_INTA_BIT_TX_QUEUE_3;
James Ketrenos43f66a62005-03-25 12:31:53 -06002025 }
2026
James Ketrenosb095c382005-08-24 22:04:42 -05002027 if (inta & IPW_INTA_BIT_TX_QUEUE_4) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002028 IPW_DEBUG_TX("TX_QUEUE_4\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002029 rc = ipw_queue_tx_reclaim(priv, &priv->txq[3], 3);
James Ketrenosb095c382005-08-24 22:04:42 -05002030 handled |= IPW_INTA_BIT_TX_QUEUE_4;
James Ketrenos43f66a62005-03-25 12:31:53 -06002031 }
2032
James Ketrenosb095c382005-08-24 22:04:42 -05002033 if (inta & IPW_INTA_BIT_STATUS_CHANGE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002034 IPW_WARNING("STATUS_CHANGE\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002035 handled |= IPW_INTA_BIT_STATUS_CHANGE;
James Ketrenos43f66a62005-03-25 12:31:53 -06002036 }
2037
James Ketrenosb095c382005-08-24 22:04:42 -05002038 if (inta & IPW_INTA_BIT_BEACON_PERIOD_EXPIRED) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002039 IPW_WARNING("TX_PERIOD_EXPIRED\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002040 handled |= IPW_INTA_BIT_BEACON_PERIOD_EXPIRED;
James Ketrenos43f66a62005-03-25 12:31:53 -06002041 }
2042
James Ketrenosb095c382005-08-24 22:04:42 -05002043 if (inta & IPW_INTA_BIT_SLAVE_MODE_HOST_CMD_DONE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002044 IPW_WARNING("HOST_CMD_DONE\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002045 handled |= IPW_INTA_BIT_SLAVE_MODE_HOST_CMD_DONE;
James Ketrenos43f66a62005-03-25 12:31:53 -06002046 }
2047
James Ketrenosb095c382005-08-24 22:04:42 -05002048 if (inta & IPW_INTA_BIT_FW_INITIALIZATION_DONE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002049 IPW_WARNING("FW_INITIALIZATION_DONE\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002050 handled |= IPW_INTA_BIT_FW_INITIALIZATION_DONE;
James Ketrenos43f66a62005-03-25 12:31:53 -06002051 }
2052
James Ketrenosb095c382005-08-24 22:04:42 -05002053 if (inta & IPW_INTA_BIT_FW_CARD_DISABLE_PHY_OFF_DONE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002054 IPW_WARNING("PHY_OFF_DONE\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002055 handled |= IPW_INTA_BIT_FW_CARD_DISABLE_PHY_OFF_DONE;
James Ketrenos43f66a62005-03-25 12:31:53 -06002056 }
2057
James Ketrenosb095c382005-08-24 22:04:42 -05002058 if (inta & IPW_INTA_BIT_RF_KILL_DONE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002059 IPW_DEBUG_RF_KILL("RF_KILL_DONE\n");
2060 priv->status |= STATUS_RF_KILL_HW;
Matthew Garrett25f94ae2009-11-11 14:36:31 -05002061 wiphy_rfkill_set_hw_state(priv->ieee->wdev.wiphy, true);
James Ketrenos43f66a62005-03-25 12:31:53 -06002062 wake_up_interruptible(&priv->wait_command_queue);
James Ketrenosea2b26e2005-08-24 21:25:16 -05002063 priv->status &= ~(STATUS_ASSOCIATED | STATUS_ASSOCIATING);
James Ketrenos43f66a62005-03-25 12:31:53 -06002064 cancel_delayed_work(&priv->request_scan);
Dan Williamsea177302008-06-02 17:51:23 -04002065 cancel_delayed_work(&priv->request_direct_scan);
2066 cancel_delayed_work(&priv->request_passive_scan);
Dan Williams0b531672007-10-09 13:55:24 -04002067 cancel_delayed_work(&priv->scan_event);
James Ketrenosa613bff2005-08-24 21:43:11 -05002068 schedule_work(&priv->link_down);
Tejun Heobcb6d912011-01-26 12:12:50 +01002069 schedule_delayed_work(&priv->rf_kill, 2 * HZ);
James Ketrenosb095c382005-08-24 22:04:42 -05002070 handled |= IPW_INTA_BIT_RF_KILL_DONE;
James Ketrenos43f66a62005-03-25 12:31:53 -06002071 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002072
James Ketrenosb095c382005-08-24 22:04:42 -05002073 if (inta & IPW_INTA_BIT_FATAL_ERROR) {
Zhu Yi1d1b09e2006-03-02 06:40:59 +08002074 IPW_WARNING("Firmware error detected. Restarting.\n");
James Ketrenosb39860c2005-08-12 09:36:32 -05002075 if (priv->error) {
Zhu Yi1d1b09e2006-03-02 06:40:59 +08002076 IPW_DEBUG_FW("Sysfs 'error' log already exists.\n");
James Ketrenosb39860c2005-08-12 09:36:32 -05002077 if (ipw_debug_level & IPW_DL_FW_ERRORS) {
2078 struct ipw_fw_error *error =
2079 ipw_alloc_error_log(priv);
2080 ipw_dump_error_log(priv, error);
Jesper Juhl8f760782006-06-27 02:55:06 -07002081 kfree(error);
James Ketrenosb39860c2005-08-12 09:36:32 -05002082 }
James Ketrenosb39860c2005-08-12 09:36:32 -05002083 } else {
2084 priv->error = ipw_alloc_error_log(priv);
2085 if (priv->error)
Zhu Yi1d1b09e2006-03-02 06:40:59 +08002086 IPW_DEBUG_FW("Sysfs 'error' log captured.\n");
James Ketrenosb39860c2005-08-12 09:36:32 -05002087 else
Zhu Yi1d1b09e2006-03-02 06:40:59 +08002088 IPW_DEBUG_FW("Error allocating sysfs 'error' "
2089 "log.\n");
James Ketrenosb39860c2005-08-12 09:36:32 -05002090 if (ipw_debug_level & IPW_DL_FW_ERRORS)
2091 ipw_dump_error_log(priv, priv->error);
James Ketrenosb39860c2005-08-12 09:36:32 -05002092 }
2093
James Ketrenosb095c382005-08-24 22:04:42 -05002094 /* XXX: If hardware encryption is for WPA/WPA2,
2095 * we have to notify the supplicant. */
2096 if (priv->ieee->sec.encrypt) {
2097 priv->status &= ~STATUS_ASSOCIATED;
2098 notify_wx_assoc_event(priv);
2099 }
2100
2101 /* Keep the restart process from trying to send host
2102 * commands by clearing the INIT status bit */
2103 priv->status &= ~STATUS_INIT;
James Ketrenosafbf30a2005-08-25 00:05:33 -05002104
2105 /* Cancel currently queued command. */
2106 priv->status &= ~STATUS_HCMD_ACTIVE;
2107 wake_up_interruptible(&priv->wait_command_queue);
2108
Tejun Heobcb6d912011-01-26 12:12:50 +01002109 schedule_work(&priv->adapter_restart);
James Ketrenosb095c382005-08-24 22:04:42 -05002110 handled |= IPW_INTA_BIT_FATAL_ERROR;
James Ketrenos43f66a62005-03-25 12:31:53 -06002111 }
2112
James Ketrenosb095c382005-08-24 22:04:42 -05002113 if (inta & IPW_INTA_BIT_PARITY_ERROR) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002114 IPW_ERROR("Parity error\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002115 handled |= IPW_INTA_BIT_PARITY_ERROR;
James Ketrenos43f66a62005-03-25 12:31:53 -06002116 }
2117
2118 if (handled != inta) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002119 IPW_ERROR("Unhandled INTA bits 0x%08x\n", inta & ~handled);
James Ketrenos43f66a62005-03-25 12:31:53 -06002120 }
2121
Zhu Yi89c318e2006-06-08 22:19:49 -07002122 spin_unlock_irqrestore(&priv->lock, flags);
2123
James Ketrenos43f66a62005-03-25 12:31:53 -06002124 /* enable all interrupts */
2125 ipw_enable_interrupts(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06002126}
Jeff Garzikbf794512005-07-31 13:07:26 -04002127
James Ketrenos43f66a62005-03-25 12:31:53 -06002128#define IPW_CMD(x) case IPW_CMD_ ## x : return #x
2129static char *get_cmd_string(u8 cmd)
2130{
2131 switch (cmd) {
2132 IPW_CMD(HOST_COMPLETE);
Jeff Garzikbf794512005-07-31 13:07:26 -04002133 IPW_CMD(POWER_DOWN);
2134 IPW_CMD(SYSTEM_CONFIG);
2135 IPW_CMD(MULTICAST_ADDRESS);
2136 IPW_CMD(SSID);
2137 IPW_CMD(ADAPTER_ADDRESS);
2138 IPW_CMD(PORT_TYPE);
2139 IPW_CMD(RTS_THRESHOLD);
2140 IPW_CMD(FRAG_THRESHOLD);
2141 IPW_CMD(POWER_MODE);
2142 IPW_CMD(WEP_KEY);
2143 IPW_CMD(TGI_TX_KEY);
2144 IPW_CMD(SCAN_REQUEST);
2145 IPW_CMD(SCAN_REQUEST_EXT);
2146 IPW_CMD(ASSOCIATE);
2147 IPW_CMD(SUPPORTED_RATES);
2148 IPW_CMD(SCAN_ABORT);
2149 IPW_CMD(TX_FLUSH);
2150 IPW_CMD(QOS_PARAMETERS);
2151 IPW_CMD(DINO_CONFIG);
2152 IPW_CMD(RSN_CAPABILITIES);
2153 IPW_CMD(RX_KEY);
2154 IPW_CMD(CARD_DISABLE);
2155 IPW_CMD(SEED_NUMBER);
2156 IPW_CMD(TX_POWER);
2157 IPW_CMD(COUNTRY_INFO);
2158 IPW_CMD(AIRONET_INFO);
2159 IPW_CMD(AP_TX_POWER);
2160 IPW_CMD(CCKM_INFO);
2161 IPW_CMD(CCX_VER_INFO);
2162 IPW_CMD(SET_CALIBRATION);
2163 IPW_CMD(SENSITIVITY_CALIB);
2164 IPW_CMD(RETRY_LIMIT);
2165 IPW_CMD(IPW_PRE_POWER_DOWN);
2166 IPW_CMD(VAP_BEACON_TEMPLATE);
2167 IPW_CMD(VAP_DTIM_PERIOD);
2168 IPW_CMD(EXT_SUPPORTED_RATES);
2169 IPW_CMD(VAP_LOCAL_TX_PWR_CONSTRAINT);
2170 IPW_CMD(VAP_QUIET_INTERVALS);
2171 IPW_CMD(VAP_CHANNEL_SWITCH);
2172 IPW_CMD(VAP_MANDATORY_CHANNELS);
2173 IPW_CMD(VAP_CELL_PWR_LIMIT);
2174 IPW_CMD(VAP_CF_PARAM_SET);
2175 IPW_CMD(VAP_SET_BEACONING_STATE);
2176 IPW_CMD(MEASUREMENT);
2177 IPW_CMD(POWER_CAPABILITY);
2178 IPW_CMD(SUPPORTED_CHANNELS);
2179 IPW_CMD(TPC_REPORT);
2180 IPW_CMD(WME_INFO);
2181 IPW_CMD(PRODUCTION_COMMAND);
2182 default:
James Ketrenos43f66a62005-03-25 12:31:53 -06002183 return "UNKNOWN";
2184 }
2185}
James Ketrenos43f66a62005-03-25 12:31:53 -06002186
2187#define HOST_COMPLETE_TIMEOUT HZ
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002188
2189static int __ipw_send_cmd(struct ipw_priv *priv, struct host_cmd *cmd)
James Ketrenos43f66a62005-03-25 12:31:53 -06002190{
2191 int rc = 0;
James Ketrenosa613bff2005-08-24 21:43:11 -05002192 unsigned long flags;
Stanislav Yakovlevdd447312012-04-19 15:55:09 -04002193 unsigned long now, end;
James Ketrenos43f66a62005-03-25 12:31:53 -06002194
James Ketrenosa613bff2005-08-24 21:43:11 -05002195 spin_lock_irqsave(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06002196 if (priv->status & STATUS_HCMD_ACTIVE) {
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002197 IPW_ERROR("Failed to send %s: Already sending a command.\n",
2198 get_cmd_string(cmd->cmd));
James Ketrenosa613bff2005-08-24 21:43:11 -05002199 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002200 return -EAGAIN;
James Ketrenos43f66a62005-03-25 12:31:53 -06002201 }
2202
2203 priv->status |= STATUS_HCMD_ACTIVE;
Jeff Garzikbf794512005-07-31 13:07:26 -04002204
James Ketrenosf6c5cb72005-08-25 00:39:09 -05002205 if (priv->cmdlog) {
2206 priv->cmdlog[priv->cmdlog_pos].jiffies = jiffies;
2207 priv->cmdlog[priv->cmdlog_pos].cmd.cmd = cmd->cmd;
2208 priv->cmdlog[priv->cmdlog_pos].cmd.len = cmd->len;
2209 memcpy(priv->cmdlog[priv->cmdlog_pos].cmd.param, cmd->param,
2210 cmd->len);
2211 priv->cmdlog[priv->cmdlog_pos].retcode = -1;
2212 }
2213
James Ketrenosb095c382005-08-24 22:04:42 -05002214 IPW_DEBUG_HC("%s command (#%d) %d bytes: 0x%08X\n",
2215 get_cmd_string(cmd->cmd), cmd->cmd, cmd->len,
2216 priv->status);
Zhu Yif516dbc2006-01-24 16:36:44 +08002217
2218#ifndef DEBUG_CMD_WEP_KEY
2219 if (cmd->cmd == IPW_CMD_WEP_KEY)
2220 IPW_DEBUG_HC("WEP_KEY command masked out for secure.\n");
2221 else
2222#endif
2223 printk_buf(IPW_DL_HOST_COMMAND, (u8 *) cmd->param, cmd->len);
2224
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002225 rc = ipw_queue_tx_hcmd(priv, cmd->cmd, cmd->param, cmd->len, 0);
James Ketrenosa613bff2005-08-24 21:43:11 -05002226 if (rc) {
2227 priv->status &= ~STATUS_HCMD_ACTIVE;
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002228 IPW_ERROR("Failed to send %s: Reason %d\n",
2229 get_cmd_string(cmd->cmd), rc);
James Ketrenosa613bff2005-08-24 21:43:11 -05002230 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenosf6c5cb72005-08-25 00:39:09 -05002231 goto exit;
James Ketrenosa613bff2005-08-24 21:43:11 -05002232 }
2233 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06002234
Stanislav Yakovlevdd447312012-04-19 15:55:09 -04002235 now = jiffies;
2236 end = now + HOST_COMPLETE_TIMEOUT;
2237again:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002238 rc = wait_event_interruptible_timeout(priv->wait_command_queue,
2239 !(priv->
2240 status & STATUS_HCMD_ACTIVE),
Stanislav Yakovlevdd447312012-04-19 15:55:09 -04002241 end - now);
2242 if (rc < 0) {
2243 now = jiffies;
2244 if (time_before(now, end))
2245 goto again;
2246 rc = 0;
2247 }
2248
James Ketrenos43f66a62005-03-25 12:31:53 -06002249 if (rc == 0) {
James Ketrenosa613bff2005-08-24 21:43:11 -05002250 spin_lock_irqsave(&priv->lock, flags);
2251 if (priv->status & STATUS_HCMD_ACTIVE) {
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002252 IPW_ERROR("Failed to send %s: Command timed out.\n",
2253 get_cmd_string(cmd->cmd));
James Ketrenosa613bff2005-08-24 21:43:11 -05002254 priv->status &= ~STATUS_HCMD_ACTIVE;
2255 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenosf6c5cb72005-08-25 00:39:09 -05002256 rc = -EIO;
2257 goto exit;
James Ketrenosa613bff2005-08-24 21:43:11 -05002258 }
2259 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos3b9990c2005-08-19 13:18:55 -05002260 } else
2261 rc = 0;
James Ketrenosa613bff2005-08-24 21:43:11 -05002262
James Ketrenosb095c382005-08-24 22:04:42 -05002263 if (priv->status & STATUS_RF_KILL_HW) {
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002264 IPW_ERROR("Failed to send %s: Aborted due to RF kill switch.\n",
2265 get_cmd_string(cmd->cmd));
James Ketrenosf6c5cb72005-08-25 00:39:09 -05002266 rc = -EIO;
2267 goto exit;
James Ketrenos43f66a62005-03-25 12:31:53 -06002268 }
2269
Zhu Yi2638bc32006-01-24 16:37:52 +08002270 exit:
James Ketrenosf6c5cb72005-08-25 00:39:09 -05002271 if (priv->cmdlog) {
2272 priv->cmdlog[priv->cmdlog_pos++].retcode = rc;
2273 priv->cmdlog_pos %= priv->cmdlog_len;
2274 }
2275 return rc;
James Ketrenos43f66a62005-03-25 12:31:53 -06002276}
2277
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002278static int ipw_send_cmd_simple(struct ipw_priv *priv, u8 command)
James Ketrenos43f66a62005-03-25 12:31:53 -06002279{
2280 struct host_cmd cmd = {
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002281 .cmd = command,
James Ketrenos43f66a62005-03-25 12:31:53 -06002282 };
2283
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002284 return __ipw_send_cmd(priv, &cmd);
2285}
2286
2287static int ipw_send_cmd_pdu(struct ipw_priv *priv, u8 command, u8 len,
2288 void *data)
2289{
2290 struct host_cmd cmd = {
2291 .cmd = command,
2292 .len = len,
2293 .param = data,
2294 };
2295
2296 return __ipw_send_cmd(priv, &cmd);
2297}
2298
2299static int ipw_send_host_complete(struct ipw_priv *priv)
2300{
James Ketrenos43f66a62005-03-25 12:31:53 -06002301 if (!priv) {
2302 IPW_ERROR("Invalid args\n");
2303 return -1;
2304 }
2305
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002306 return ipw_send_cmd_simple(priv, IPW_CMD_HOST_COMPLETE);
James Ketrenos43f66a62005-03-25 12:31:53 -06002307}
2308
Zhu Yid685b8c2006-04-13 17:20:27 +08002309static int ipw_send_system_config(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002310{
Zhu Yid685b8c2006-04-13 17:20:27 +08002311 return ipw_send_cmd_pdu(priv, IPW_CMD_SYSTEM_CONFIG,
2312 sizeof(priv->sys_config),
2313 &priv->sys_config);
James Ketrenos43f66a62005-03-25 12:31:53 -06002314}
2315
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002316static int ipw_send_ssid(struct ipw_priv *priv, u8 * ssid, int len)
James Ketrenos43f66a62005-03-25 12:31:53 -06002317{
James Ketrenos43f66a62005-03-25 12:31:53 -06002318 if (!priv || !ssid) {
2319 IPW_ERROR("Invalid args\n");
2320 return -1;
2321 }
2322
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002323 return ipw_send_cmd_pdu(priv, IPW_CMD_SSID, min(len, IW_ESSID_MAX_SIZE),
Zhu Yi2638bc32006-01-24 16:37:52 +08002324 ssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06002325}
2326
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002327static int ipw_send_adapter_address(struct ipw_priv *priv, u8 * mac)
James Ketrenos43f66a62005-03-25 12:31:53 -06002328{
James Ketrenos43f66a62005-03-25 12:31:53 -06002329 if (!priv || !mac) {
2330 IPW_ERROR("Invalid args\n");
2331 return -1;
2332 }
2333
Johannes Berge1749612008-10-27 15:59:26 -07002334 IPW_DEBUG_INFO("%s: Setting MAC to %pM\n",
2335 priv->net_dev->name, mac);
James Ketrenos43f66a62005-03-25 12:31:53 -06002336
Zhu Yi2638bc32006-01-24 16:37:52 +08002337 return ipw_send_cmd_pdu(priv, IPW_CMD_ADAPTER_ADDRESS, ETH_ALEN, mac);
James Ketrenos43f66a62005-03-25 12:31:53 -06002338}
2339
2340static void ipw_adapter_restart(void *adapter)
2341{
2342 struct ipw_priv *priv = adapter;
2343
2344 if (priv->status & STATUS_RF_KILL_MASK)
2345 return;
2346
2347 ipw_down(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05002348
2349 if (priv->assoc_network &&
2350 (priv->assoc_network->capability & WLAN_CAPABILITY_IBSS))
2351 ipw_remove_current_network(priv);
2352
James Ketrenos43f66a62005-03-25 12:31:53 -06002353 if (ipw_up(priv)) {
2354 IPW_ERROR("Failed to up device\n");
2355 return;
2356 }
2357}
2358
David Howellsc4028952006-11-22 14:57:56 +00002359static void ipw_bg_adapter_restart(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -05002360{
David Howellsc4028952006-11-22 14:57:56 +00002361 struct ipw_priv *priv =
2362 container_of(work, struct ipw_priv, adapter_restart);
Zhu Yi46441512006-01-24 16:37:59 +08002363 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00002364 ipw_adapter_restart(priv);
Zhu Yi46441512006-01-24 16:37:59 +08002365 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05002366}
2367
Zhu Yie65054b2010-03-30 09:36:16 +08002368static void ipw_abort_scan(struct ipw_priv *priv);
2369
2370#define IPW_SCAN_CHECK_WATCHDOG (5 * HZ)
James Ketrenos43f66a62005-03-25 12:31:53 -06002371
2372static void ipw_scan_check(void *data)
2373{
2374 struct ipw_priv *priv = data;
Zhu Yie65054b2010-03-30 09:36:16 +08002375
2376 if (priv->status & STATUS_SCAN_ABORTING) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002377 IPW_DEBUG_SCAN("Scan completion watchdog resetting "
Zhu Yic7b6a672006-01-24 16:37:05 +08002378 "adapter after (%dms).\n",
2379 jiffies_to_msecs(IPW_SCAN_CHECK_WATCHDOG));
Tejun Heobcb6d912011-01-26 12:12:50 +01002380 schedule_work(&priv->adapter_restart);
Zhu Yie65054b2010-03-30 09:36:16 +08002381 } else if (priv->status & STATUS_SCANNING) {
2382 IPW_DEBUG_SCAN("Scan completion watchdog aborting scan "
2383 "after (%dms).\n",
2384 jiffies_to_msecs(IPW_SCAN_CHECK_WATCHDOG));
2385 ipw_abort_scan(priv);
Tejun Heobcb6d912011-01-26 12:12:50 +01002386 schedule_delayed_work(&priv->scan_check, HZ);
James Ketrenos43f66a62005-03-25 12:31:53 -06002387 }
2388}
2389
David Howellsc4028952006-11-22 14:57:56 +00002390static void ipw_bg_scan_check(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -05002391{
David Howellsc4028952006-11-22 14:57:56 +00002392 struct ipw_priv *priv =
2393 container_of(work, struct ipw_priv, scan_check.work);
Zhu Yi46441512006-01-24 16:37:59 +08002394 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00002395 ipw_scan_check(priv);
Zhu Yi46441512006-01-24 16:37:59 +08002396 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05002397}
2398
James Ketrenos43f66a62005-03-25 12:31:53 -06002399static int ipw_send_scan_request_ext(struct ipw_priv *priv,
2400 struct ipw_scan_request_ext *request)
2401{
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002402 return ipw_send_cmd_pdu(priv, IPW_CMD_SCAN_REQUEST_EXT,
Zhu Yi2638bc32006-01-24 16:37:52 +08002403 sizeof(*request), request);
James Ketrenos43f66a62005-03-25 12:31:53 -06002404}
2405
2406static int ipw_send_scan_abort(struct ipw_priv *priv)
2407{
James Ketrenos43f66a62005-03-25 12:31:53 -06002408 if (!priv) {
2409 IPW_ERROR("Invalid args\n");
2410 return -1;
2411 }
2412
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002413 return ipw_send_cmd_simple(priv, IPW_CMD_SCAN_ABORT);
James Ketrenos43f66a62005-03-25 12:31:53 -06002414}
2415
2416static int ipw_set_sensitivity(struct ipw_priv *priv, u16 sens)
2417{
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002418 struct ipw_sensitivity_calib calib = {
Zhu Yi851ca262006-08-21 11:37:58 +08002419 .beacon_rssi_raw = cpu_to_le16(sens),
James Ketrenos43f66a62005-03-25 12:31:53 -06002420 };
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002421
2422 return ipw_send_cmd_pdu(priv, IPW_CMD_SENSITIVITY_CALIB, sizeof(calib),
Zhu Yi2638bc32006-01-24 16:37:52 +08002423 &calib);
James Ketrenos43f66a62005-03-25 12:31:53 -06002424}
2425
2426static int ipw_send_associate(struct ipw_priv *priv,
2427 struct ipw_associate *associate)
2428{
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002429 if (!priv || !associate) {
2430 IPW_ERROR("Invalid args\n");
2431 return -1;
2432 }
2433
Al Viro5b5e8072007-12-27 01:54:06 -05002434 return ipw_send_cmd_pdu(priv, IPW_CMD_ASSOCIATE, sizeof(*associate),
2435 associate);
James Ketrenos43f66a62005-03-25 12:31:53 -06002436}
2437
2438static int ipw_send_supported_rates(struct ipw_priv *priv,
2439 struct ipw_supported_rates *rates)
2440{
James Ketrenos43f66a62005-03-25 12:31:53 -06002441 if (!priv || !rates) {
2442 IPW_ERROR("Invalid args\n");
2443 return -1;
2444 }
2445
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002446 return ipw_send_cmd_pdu(priv, IPW_CMD_SUPPORTED_RATES, sizeof(*rates),
Zhu Yi2638bc32006-01-24 16:37:52 +08002447 rates);
James Ketrenos43f66a62005-03-25 12:31:53 -06002448}
2449
2450static int ipw_set_random_seed(struct ipw_priv *priv)
2451{
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002452 u32 val;
James Ketrenos43f66a62005-03-25 12:31:53 -06002453
2454 if (!priv) {
2455 IPW_ERROR("Invalid args\n");
2456 return -1;
2457 }
2458
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002459 get_random_bytes(&val, sizeof(val));
James Ketrenos43f66a62005-03-25 12:31:53 -06002460
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002461 return ipw_send_cmd_pdu(priv, IPW_CMD_SEED_NUMBER, sizeof(val), &val);
James Ketrenos43f66a62005-03-25 12:31:53 -06002462}
2463
James Ketrenos43f66a62005-03-25 12:31:53 -06002464static int ipw_send_card_disable(struct ipw_priv *priv, u32 phy_off)
2465{
Al Viroe62e1ee2007-12-27 01:36:46 -05002466 __le32 v = cpu_to_le32(phy_off);
James Ketrenos43f66a62005-03-25 12:31:53 -06002467 if (!priv) {
2468 IPW_ERROR("Invalid args\n");
2469 return -1;
2470 }
2471
Al Viroe62e1ee2007-12-27 01:36:46 -05002472 return ipw_send_cmd_pdu(priv, IPW_CMD_CARD_DISABLE, sizeof(v), &v);
James Ketrenos43f66a62005-03-25 12:31:53 -06002473}
James Ketrenos43f66a62005-03-25 12:31:53 -06002474
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002475static int ipw_send_tx_power(struct ipw_priv *priv, struct ipw_tx_power *power)
James Ketrenos43f66a62005-03-25 12:31:53 -06002476{
James Ketrenos43f66a62005-03-25 12:31:53 -06002477 if (!priv || !power) {
2478 IPW_ERROR("Invalid args\n");
2479 return -1;
2480 }
2481
Zhu Yi2638bc32006-01-24 16:37:52 +08002482 return ipw_send_cmd_pdu(priv, IPW_CMD_TX_POWER, sizeof(*power), power);
James Ketrenos43f66a62005-03-25 12:31:53 -06002483}
James Ketrenos43f66a62005-03-25 12:31:53 -06002484
Zhu Yi6de9f7f2005-08-11 14:39:33 +08002485static int ipw_set_tx_power(struct ipw_priv *priv)
2486{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04002487 const struct libipw_geo *geo = libipw_get_geo(priv->ieee);
Zhu Yi6de9f7f2005-08-11 14:39:33 +08002488 struct ipw_tx_power tx_power;
2489 s8 max_power;
2490 int i;
2491
2492 memset(&tx_power, 0, sizeof(tx_power));
2493
2494 /* configure device for 'G' band */
2495 tx_power.ieee_mode = IPW_G_MODE;
2496 tx_power.num_channels = geo->bg_channels;
2497 for (i = 0; i < geo->bg_channels; i++) {
2498 max_power = geo->bg[i].max_power;
2499 tx_power.channels_tx_power[i].channel_number =
2500 geo->bg[i].channel;
2501 tx_power.channels_tx_power[i].tx_power = max_power ?
2502 min(max_power, priv->tx_power) : priv->tx_power;
2503 }
2504 if (ipw_send_tx_power(priv, &tx_power))
2505 return -EIO;
2506
2507 /* configure device to also handle 'B' band */
2508 tx_power.ieee_mode = IPW_B_MODE;
2509 if (ipw_send_tx_power(priv, &tx_power))
2510 return -EIO;
2511
2512 /* configure device to also handle 'A' band */
2513 if (priv->ieee->abg_true) {
2514 tx_power.ieee_mode = IPW_A_MODE;
2515 tx_power.num_channels = geo->a_channels;
2516 for (i = 0; i < tx_power.num_channels; i++) {
2517 max_power = geo->a[i].max_power;
2518 tx_power.channels_tx_power[i].channel_number =
2519 geo->a[i].channel;
2520 tx_power.channels_tx_power[i].tx_power = max_power ?
2521 min(max_power, priv->tx_power) : priv->tx_power;
2522 }
2523 if (ipw_send_tx_power(priv, &tx_power))
2524 return -EIO;
2525 }
James Ketrenos43f66a62005-03-25 12:31:53 -06002526 return 0;
2527}
2528
2529static int ipw_send_rts_threshold(struct ipw_priv *priv, u16 rts)
2530{
2531 struct ipw_rts_threshold rts_threshold = {
Zhu Yi851ca262006-08-21 11:37:58 +08002532 .rts_threshold = cpu_to_le16(rts),
James Ketrenos43f66a62005-03-25 12:31:53 -06002533 };
James Ketrenos43f66a62005-03-25 12:31:53 -06002534
2535 if (!priv) {
2536 IPW_ERROR("Invalid args\n");
2537 return -1;
2538 }
2539
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002540 return ipw_send_cmd_pdu(priv, IPW_CMD_RTS_THRESHOLD,
2541 sizeof(rts_threshold), &rts_threshold);
James Ketrenos43f66a62005-03-25 12:31:53 -06002542}
2543
2544static int ipw_send_frag_threshold(struct ipw_priv *priv, u16 frag)
2545{
2546 struct ipw_frag_threshold frag_threshold = {
Zhu Yi851ca262006-08-21 11:37:58 +08002547 .frag_threshold = cpu_to_le16(frag),
James Ketrenos43f66a62005-03-25 12:31:53 -06002548 };
James Ketrenos43f66a62005-03-25 12:31:53 -06002549
2550 if (!priv) {
2551 IPW_ERROR("Invalid args\n");
2552 return -1;
2553 }
2554
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002555 return ipw_send_cmd_pdu(priv, IPW_CMD_FRAG_THRESHOLD,
2556 sizeof(frag_threshold), &frag_threshold);
James Ketrenos43f66a62005-03-25 12:31:53 -06002557}
2558
2559static int ipw_send_power_mode(struct ipw_priv *priv, u32 mode)
2560{
Al Viroe62e1ee2007-12-27 01:36:46 -05002561 __le32 param;
James Ketrenos43f66a62005-03-25 12:31:53 -06002562
2563 if (!priv) {
2564 IPW_ERROR("Invalid args\n");
2565 return -1;
2566 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002567
James Ketrenos43f66a62005-03-25 12:31:53 -06002568 /* If on battery, set to 3, if AC set to CAM, else user
2569 * level */
2570 switch (mode) {
2571 case IPW_POWER_BATTERY:
Al Viroe62e1ee2007-12-27 01:36:46 -05002572 param = cpu_to_le32(IPW_POWER_INDEX_3);
James Ketrenos43f66a62005-03-25 12:31:53 -06002573 break;
2574 case IPW_POWER_AC:
Al Viroe62e1ee2007-12-27 01:36:46 -05002575 param = cpu_to_le32(IPW_POWER_MODE_CAM);
James Ketrenos43f66a62005-03-25 12:31:53 -06002576 break;
2577 default:
Al Viroe62e1ee2007-12-27 01:36:46 -05002578 param = cpu_to_le32(mode);
James Ketrenos43f66a62005-03-25 12:31:53 -06002579 break;
2580 }
2581
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002582 return ipw_send_cmd_pdu(priv, IPW_CMD_POWER_MODE, sizeof(param),
Zhu Yi2638bc32006-01-24 16:37:52 +08002583 &param);
James Ketrenos43f66a62005-03-25 12:31:53 -06002584}
2585
James Ketrenosafbf30a2005-08-25 00:05:33 -05002586static int ipw_send_retry_limit(struct ipw_priv *priv, u8 slimit, u8 llimit)
2587{
2588 struct ipw_retry_limit retry_limit = {
2589 .short_retry_limit = slimit,
2590 .long_retry_limit = llimit
2591 };
James Ketrenosafbf30a2005-08-25 00:05:33 -05002592
2593 if (!priv) {
2594 IPW_ERROR("Invalid args\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06002595 return -1;
2596 }
2597
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002598 return ipw_send_cmd_pdu(priv, IPW_CMD_RETRY_LIMIT, sizeof(retry_limit),
Zhu Yi2638bc32006-01-24 16:37:52 +08002599 &retry_limit);
James Ketrenos43f66a62005-03-25 12:31:53 -06002600}
2601
2602/*
2603 * The IPW device contains a Microwire compatible EEPROM that stores
2604 * various data like the MAC address. Usually the firmware has exclusive
2605 * access to the eeprom, but during device initialization (before the
2606 * device driver has sent the HostComplete command to the firmware) the
2607 * device driver has read access to the EEPROM by way of indirect addressing
2608 * through a couple of memory mapped registers.
2609 *
2610 * The following is a simplified implementation for pulling data out of the
2611 * the eeprom, along with some helper functions to find information in
2612 * the per device private data's copy of the eeprom.
2613 *
2614 * NOTE: To better understand how these functions work (i.e what is a chip
2615 * select and why do have to keep driving the eeprom clock?), read
2616 * just about any data sheet for a Microwire compatible EEPROM.
2617 */
2618
2619/* write a 32 bit value into the indirect accessor register */
2620static inline void eeprom_write_reg(struct ipw_priv *p, u32 data)
2621{
2622 ipw_write_reg32(p, FW_MEM_REG_EEPROM_ACCESS, data);
Jeff Garzikbf794512005-07-31 13:07:26 -04002623
James Ketrenos43f66a62005-03-25 12:31:53 -06002624 /* the eeprom requires some time to complete the operation */
2625 udelay(p->eeprom_delay);
James Ketrenos43f66a62005-03-25 12:31:53 -06002626}
2627
2628/* perform a chip select operation */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002629static void eeprom_cs(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002630{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002631 eeprom_write_reg(priv, 0);
2632 eeprom_write_reg(priv, EEPROM_BIT_CS);
2633 eeprom_write_reg(priv, EEPROM_BIT_CS | EEPROM_BIT_SK);
2634 eeprom_write_reg(priv, EEPROM_BIT_CS);
James Ketrenos43f66a62005-03-25 12:31:53 -06002635}
2636
2637/* perform a chip select operation */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002638static void eeprom_disable_cs(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002639{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002640 eeprom_write_reg(priv, EEPROM_BIT_CS);
2641 eeprom_write_reg(priv, 0);
2642 eeprom_write_reg(priv, EEPROM_BIT_SK);
James Ketrenos43f66a62005-03-25 12:31:53 -06002643}
2644
2645/* push a single bit down to the eeprom */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002646static inline void eeprom_write_bit(struct ipw_priv *p, u8 bit)
James Ketrenos43f66a62005-03-25 12:31:53 -06002647{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002648 int d = (bit ? EEPROM_BIT_DI : 0);
2649 eeprom_write_reg(p, EEPROM_BIT_CS | d);
2650 eeprom_write_reg(p, EEPROM_BIT_CS | d | EEPROM_BIT_SK);
James Ketrenos43f66a62005-03-25 12:31:53 -06002651}
2652
2653/* push an opcode followed by an address down to the eeprom */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002654static void eeprom_op(struct ipw_priv *priv, u8 op, u8 addr)
James Ketrenos43f66a62005-03-25 12:31:53 -06002655{
2656 int i;
2657
2658 eeprom_cs(priv);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002659 eeprom_write_bit(priv, 1);
2660 eeprom_write_bit(priv, op & 2);
2661 eeprom_write_bit(priv, op & 1);
2662 for (i = 7; i >= 0; i--) {
2663 eeprom_write_bit(priv, addr & (1 << i));
James Ketrenos43f66a62005-03-25 12:31:53 -06002664 }
2665}
2666
2667/* pull 16 bits off the eeprom, one bit at a time */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002668static u16 eeprom_read_u16(struct ipw_priv *priv, u8 addr)
James Ketrenos43f66a62005-03-25 12:31:53 -06002669{
2670 int i;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002671 u16 r = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04002672
James Ketrenos43f66a62005-03-25 12:31:53 -06002673 /* Send READ Opcode */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002674 eeprom_op(priv, EEPROM_CMD_READ, addr);
James Ketrenos43f66a62005-03-25 12:31:53 -06002675
2676 /* Send dummy bit */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002677 eeprom_write_reg(priv, EEPROM_BIT_CS);
James Ketrenos43f66a62005-03-25 12:31:53 -06002678
2679 /* Read the byte off the eeprom one bit at a time */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002680 for (i = 0; i < 16; i++) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002681 u32 data = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002682 eeprom_write_reg(priv, EEPROM_BIT_CS | EEPROM_BIT_SK);
2683 eeprom_write_reg(priv, EEPROM_BIT_CS);
2684 data = ipw_read_reg32(priv, FW_MEM_REG_EEPROM_ACCESS);
2685 r = (r << 1) | ((data & EEPROM_BIT_DO) ? 1 : 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002686 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002687
James Ketrenos43f66a62005-03-25 12:31:53 -06002688 /* Send another dummy bit */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002689 eeprom_write_reg(priv, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002690 eeprom_disable_cs(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -04002691
James Ketrenos43f66a62005-03-25 12:31:53 -06002692 return r;
2693}
2694
2695/* helper function for pulling the mac address out of the private */
2696/* data's copy of the eeprom data */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002697static void eeprom_parse_mac(struct ipw_priv *priv, u8 * mac)
James Ketrenos43f66a62005-03-25 12:31:53 -06002698{
Joe Perchesd458cdf2013-10-01 19:04:40 -07002699 memcpy(mac, &priv->eeprom[EEPROM_MAC_ADDRESS], ETH_ALEN);
James Ketrenos43f66a62005-03-25 12:31:53 -06002700}
2701
Stanislav Yakovlevfdbfff72012-05-17 15:56:35 -04002702static void ipw_read_eeprom(struct ipw_priv *priv)
2703{
2704 int i;
2705 __le16 *eeprom = (__le16 *) priv->eeprom;
2706
2707 IPW_DEBUG_TRACE(">>\n");
2708
2709 /* read entire contents of eeprom into private buffer */
2710 for (i = 0; i < 128; i++)
2711 eeprom[i] = cpu_to_le16(eeprom_read_u16(priv, (u8) i));
2712
2713 IPW_DEBUG_TRACE("<<\n");
2714}
2715
James Ketrenos43f66a62005-03-25 12:31:53 -06002716/*
2717 * Either the device driver (i.e. the host) or the firmware can
2718 * load eeprom data into the designated region in SRAM. If neither
2719 * happens then the FW will shutdown with a fatal error.
2720 *
2721 * In order to signal the FW to load the EEPROM, the EEPROM_LOAD_DISABLE
2722 * bit needs region of shared SRAM needs to be non-zero.
2723 */
2724static void ipw_eeprom_init_sram(struct ipw_priv *priv)
2725{
2726 int i;
Jeff Garzikbf794512005-07-31 13:07:26 -04002727
James Ketrenos43f66a62005-03-25 12:31:53 -06002728 IPW_DEBUG_TRACE(">>\n");
2729
Jeff Garzikbf794512005-07-31 13:07:26 -04002730 /*
2731 If the data looks correct, then copy it to our private
James Ketrenos43f66a62005-03-25 12:31:53 -06002732 copy. Otherwise let the firmware know to perform the operation
Zhu Yic7b6a672006-01-24 16:37:05 +08002733 on its own.
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002734 */
Alexey Dobriyan386093e2006-02-01 03:04:57 -08002735 if (priv->eeprom[EEPROM_VERSION] != 0) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002736 IPW_DEBUG_INFO("Writing EEPROM data into SRAM\n");
2737
2738 /* write the eeprom data to sram */
James Ketrenosb095c382005-08-24 22:04:42 -05002739 for (i = 0; i < IPW_EEPROM_IMAGE_SIZE; i++)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002740 ipw_write8(priv, IPW_EEPROM_DATA + i, priv->eeprom[i]);
James Ketrenos43f66a62005-03-25 12:31:53 -06002741
2742 /* Do not load eeprom data on fatal error or suspend */
2743 ipw_write32(priv, IPW_EEPROM_LOAD_DISABLE, 0);
2744 } else {
2745 IPW_DEBUG_INFO("Enabling FW initializationg of SRAM\n");
2746
2747 /* Load eeprom data on fatal error or suspend */
2748 ipw_write32(priv, IPW_EEPROM_LOAD_DISABLE, 1);
2749 }
2750
2751 IPW_DEBUG_TRACE("<<\n");
2752}
2753
Arjan van de Ven858119e2006-01-14 13:20:43 -08002754static void ipw_zero_memory(struct ipw_priv *priv, u32 start, u32 count)
James Ketrenos43f66a62005-03-25 12:31:53 -06002755{
2756 count >>= 2;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002757 if (!count)
2758 return;
James Ketrenosb095c382005-08-24 22:04:42 -05002759 _ipw_write32(priv, IPW_AUTOINC_ADDR, start);
Jeff Garzikbf794512005-07-31 13:07:26 -04002760 while (count--)
James Ketrenosb095c382005-08-24 22:04:42 -05002761 _ipw_write32(priv, IPW_AUTOINC_DATA, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002762}
2763
2764static inline void ipw_fw_dma_reset_command_blocks(struct ipw_priv *priv)
2765{
James Ketrenosb095c382005-08-24 22:04:42 -05002766 ipw_zero_memory(priv, IPW_SHARED_SRAM_DMA_CONTROL,
Jeff Garzikbf794512005-07-31 13:07:26 -04002767 CB_NUMBER_OF_ELEMENTS_SMALL *
James Ketrenos43f66a62005-03-25 12:31:53 -06002768 sizeof(struct command_block));
2769}
2770
2771static int ipw_fw_dma_enable(struct ipw_priv *priv)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002772{ /* start dma engine but no transfers yet */
James Ketrenos43f66a62005-03-25 12:31:53 -06002773
Frans Pop9fd1ea42010-03-24 19:46:31 +01002774 IPW_DEBUG_FW(">> :\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04002775
James Ketrenos43f66a62005-03-25 12:31:53 -06002776 /* Start the dma */
2777 ipw_fw_dma_reset_command_blocks(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -04002778
James Ketrenos43f66a62005-03-25 12:31:53 -06002779 /* Write CB base address */
James Ketrenosb095c382005-08-24 22:04:42 -05002780 ipw_write_reg32(priv, IPW_DMA_I_CB_BASE, IPW_SHARED_SRAM_DMA_CONTROL);
James Ketrenos43f66a62005-03-25 12:31:53 -06002781
Frans Pop9fd1ea42010-03-24 19:46:31 +01002782 IPW_DEBUG_FW("<< :\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06002783 return 0;
2784}
2785
2786static void ipw_fw_dma_abort(struct ipw_priv *priv)
2787{
2788 u32 control = 0;
2789
2790 IPW_DEBUG_FW(">> :\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04002791
Pavel Machek67fd6b42006-07-11 15:34:05 +02002792 /* set the Stop and Abort bit */
James Ketrenos43f66a62005-03-25 12:31:53 -06002793 control = DMA_CONTROL_SMALL_CB_CONST_VALUE | DMA_CB_STOP_AND_ABORT;
James Ketrenosb095c382005-08-24 22:04:42 -05002794 ipw_write_reg32(priv, IPW_DMA_I_DMA_CONTROL, control);
James Ketrenos43f66a62005-03-25 12:31:53 -06002795 priv->sram_desc.last_cb_index = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04002796
Frans Pop9fd1ea42010-03-24 19:46:31 +01002797 IPW_DEBUG_FW("<<\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06002798}
2799
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002800static int ipw_fw_dma_write_command_block(struct ipw_priv *priv, int index,
2801 struct command_block *cb)
James Ketrenos43f66a62005-03-25 12:31:53 -06002802{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002803 u32 address =
James Ketrenosb095c382005-08-24 22:04:42 -05002804 IPW_SHARED_SRAM_DMA_CONTROL +
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002805 (sizeof(struct command_block) * index);
James Ketrenos43f66a62005-03-25 12:31:53 -06002806 IPW_DEBUG_FW(">> :\n");
2807
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002808 ipw_write_indirect(priv, address, (u8 *) cb,
2809 (int)sizeof(struct command_block));
James Ketrenos43f66a62005-03-25 12:31:53 -06002810
2811 IPW_DEBUG_FW("<< :\n");
2812 return 0;
2813
2814}
2815
2816static int ipw_fw_dma_kick(struct ipw_priv *priv)
2817{
2818 u32 control = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002819 u32 index = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06002820
2821 IPW_DEBUG_FW(">> :\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04002822
James Ketrenos43f66a62005-03-25 12:31:53 -06002823 for (index = 0; index < priv->sram_desc.last_cb_index; index++)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002824 ipw_fw_dma_write_command_block(priv, index,
2825 &priv->sram_desc.cb_list[index]);
James Ketrenos43f66a62005-03-25 12:31:53 -06002826
2827 /* Enable the DMA in the CSR register */
James Ketrenosb095c382005-08-24 22:04:42 -05002828 ipw_clear_bit(priv, IPW_RESET_REG,
2829 IPW_RESET_REG_MASTER_DISABLED |
2830 IPW_RESET_REG_STOP_MASTER);
Jeff Garzikbf794512005-07-31 13:07:26 -04002831
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002832 /* Set the Start bit. */
James Ketrenos43f66a62005-03-25 12:31:53 -06002833 control = DMA_CONTROL_SMALL_CB_CONST_VALUE | DMA_CB_START;
James Ketrenosb095c382005-08-24 22:04:42 -05002834 ipw_write_reg32(priv, IPW_DMA_I_DMA_CONTROL, control);
James Ketrenos43f66a62005-03-25 12:31:53 -06002835
2836 IPW_DEBUG_FW("<< :\n");
2837 return 0;
2838}
2839
2840static void ipw_fw_dma_dump_command_block(struct ipw_priv *priv)
2841{
2842 u32 address;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002843 u32 register_value = 0;
2844 u32 cb_fields_address = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06002845
2846 IPW_DEBUG_FW(">> :\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002847 address = ipw_read_reg32(priv, IPW_DMA_I_CURRENT_CB);
Frans Pop9fd1ea42010-03-24 19:46:31 +01002848 IPW_DEBUG_FW_INFO("Current CB is 0x%x\n", address);
James Ketrenos43f66a62005-03-25 12:31:53 -06002849
2850 /* Read the DMA Controlor register */
James Ketrenosb095c382005-08-24 22:04:42 -05002851 register_value = ipw_read_reg32(priv, IPW_DMA_I_DMA_CONTROL);
Frans Pop9fd1ea42010-03-24 19:46:31 +01002852 IPW_DEBUG_FW_INFO("IPW_DMA_I_DMA_CONTROL is 0x%x\n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002853
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002854 /* Print the CB values */
James Ketrenos43f66a62005-03-25 12:31:53 -06002855 cb_fields_address = address;
2856 register_value = ipw_read_reg32(priv, cb_fields_address);
Frans Pop9fd1ea42010-03-24 19:46:31 +01002857 IPW_DEBUG_FW_INFO("Current CB Control Field is 0x%x\n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002858
2859 cb_fields_address += sizeof(u32);
2860 register_value = ipw_read_reg32(priv, cb_fields_address);
Frans Pop9fd1ea42010-03-24 19:46:31 +01002861 IPW_DEBUG_FW_INFO("Current CB Source Field is 0x%x\n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002862
2863 cb_fields_address += sizeof(u32);
2864 register_value = ipw_read_reg32(priv, cb_fields_address);
Frans Pop9fd1ea42010-03-24 19:46:31 +01002865 IPW_DEBUG_FW_INFO("Current CB Destination Field is 0x%x\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06002866 register_value);
2867
2868 cb_fields_address += sizeof(u32);
2869 register_value = ipw_read_reg32(priv, cb_fields_address);
Frans Pop9fd1ea42010-03-24 19:46:31 +01002870 IPW_DEBUG_FW_INFO("Current CB Status Field is 0x%x\n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002871
2872 IPW_DEBUG_FW(">> :\n");
2873}
2874
2875static int ipw_fw_dma_command_block_index(struct ipw_priv *priv)
2876{
2877 u32 current_cb_address = 0;
2878 u32 current_cb_index = 0;
2879
2880 IPW_DEBUG_FW("<< :\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002881 current_cb_address = ipw_read_reg32(priv, IPW_DMA_I_CURRENT_CB);
Jeff Garzikbf794512005-07-31 13:07:26 -04002882
James Ketrenosb095c382005-08-24 22:04:42 -05002883 current_cb_index = (current_cb_address - IPW_SHARED_SRAM_DMA_CONTROL) /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002884 sizeof(struct command_block);
Jeff Garzikbf794512005-07-31 13:07:26 -04002885
Frans Pop9fd1ea42010-03-24 19:46:31 +01002886 IPW_DEBUG_FW_INFO("Current CB index 0x%x address = 0x%X\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002887 current_cb_index, current_cb_address);
James Ketrenos43f66a62005-03-25 12:31:53 -06002888
2889 IPW_DEBUG_FW(">> :\n");
2890 return current_cb_index;
2891
2892}
2893
2894static int ipw_fw_dma_add_command_block(struct ipw_priv *priv,
2895 u32 src_address,
2896 u32 dest_address,
2897 u32 length,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002898 int interrupt_enabled, int is_last)
James Ketrenos43f66a62005-03-25 12:31:53 -06002899{
2900
Jeff Garzikbf794512005-07-31 13:07:26 -04002901 u32 control = CB_VALID | CB_SRC_LE | CB_DEST_LE | CB_SRC_AUTOINC |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002902 CB_SRC_IO_GATED | CB_DEST_AUTOINC | CB_SRC_SIZE_LONG |
2903 CB_DEST_SIZE_LONG;
James Ketrenos43f66a62005-03-25 12:31:53 -06002904 struct command_block *cb;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002905 u32 last_cb_element = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06002906
2907 IPW_DEBUG_FW_INFO("src_address=0x%x dest_address=0x%x length=0x%x\n",
2908 src_address, dest_address, length);
2909
2910 if (priv->sram_desc.last_cb_index >= CB_NUMBER_OF_ELEMENTS_SMALL)
2911 return -1;
2912
2913 last_cb_element = priv->sram_desc.last_cb_index;
2914 cb = &priv->sram_desc.cb_list[last_cb_element];
2915 priv->sram_desc.last_cb_index++;
2916
2917 /* Calculate the new CB control word */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002918 if (interrupt_enabled)
James Ketrenos43f66a62005-03-25 12:31:53 -06002919 control |= CB_INT_ENABLED;
2920
2921 if (is_last)
2922 control |= CB_LAST_VALID;
Jeff Garzikbf794512005-07-31 13:07:26 -04002923
James Ketrenos43f66a62005-03-25 12:31:53 -06002924 control |= length;
2925
2926 /* Calculate the CB Element's checksum value */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002927 cb->status = control ^ src_address ^ dest_address;
James Ketrenos43f66a62005-03-25 12:31:53 -06002928
2929 /* Copy the Source and Destination addresses */
2930 cb->dest_addr = dest_address;
2931 cb->source_addr = src_address;
2932
2933 /* Copy the Control Word last */
2934 cb->control = control;
2935
2936 return 0;
2937}
2938
Zhu Yi11ebd1b2009-08-28 11:42:31 +08002939static int ipw_fw_dma_add_buffer(struct ipw_priv *priv, dma_addr_t *src_address,
2940 int nr, u32 dest_address, u32 len)
James Ketrenos43f66a62005-03-25 12:31:53 -06002941{
Zhu Yi11ebd1b2009-08-28 11:42:31 +08002942 int ret, i;
2943 u32 size;
2944
Frans Pop9fd1ea42010-03-24 19:46:31 +01002945 IPW_DEBUG_FW(">>\n");
Zhu Yi11ebd1b2009-08-28 11:42:31 +08002946 IPW_DEBUG_FW_INFO("nr=%d dest_address=0x%x len=0x%x\n",
2947 nr, dest_address, len);
2948
2949 for (i = 0; i < nr; i++) {
2950 size = min_t(u32, len - i * CB_MAX_LENGTH, CB_MAX_LENGTH);
2951 ret = ipw_fw_dma_add_command_block(priv, src_address[i],
2952 dest_address +
2953 i * CB_MAX_LENGTH, size,
2954 0, 0);
2955 if (ret) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002956 IPW_DEBUG_FW_INFO(": Failed\n");
2957 return -1;
Jeff Garzikbf794512005-07-31 13:07:26 -04002958 } else
James Ketrenos43f66a62005-03-25 12:31:53 -06002959 IPW_DEBUG_FW_INFO(": Added new cb\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06002960 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002961
Frans Pop9fd1ea42010-03-24 19:46:31 +01002962 IPW_DEBUG_FW("<<\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06002963 return 0;
2964}
2965
2966static int ipw_fw_dma_wait(struct ipw_priv *priv)
2967{
Zhu Yi397ae122006-01-24 16:37:22 +08002968 u32 current_index = 0, previous_index;
James Ketrenos43f66a62005-03-25 12:31:53 -06002969 u32 watchdog = 0;
2970
Frans Pop9fd1ea42010-03-24 19:46:31 +01002971 IPW_DEBUG_FW(">> :\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06002972
2973 current_index = ipw_fw_dma_command_block_index(priv);
Zhu Yi397ae122006-01-24 16:37:22 +08002974 IPW_DEBUG_FW_INFO("sram_desc.last_cb_index:0x%08X\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002975 (int)priv->sram_desc.last_cb_index);
James Ketrenos43f66a62005-03-25 12:31:53 -06002976
2977 while (current_index < priv->sram_desc.last_cb_index) {
2978 udelay(50);
Zhu Yi397ae122006-01-24 16:37:22 +08002979 previous_index = current_index;
James Ketrenos43f66a62005-03-25 12:31:53 -06002980 current_index = ipw_fw_dma_command_block_index(priv);
2981
Zhu Yi397ae122006-01-24 16:37:22 +08002982 if (previous_index < current_index) {
2983 watchdog = 0;
2984 continue;
2985 }
2986 if (++watchdog > 400) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002987 IPW_DEBUG_FW_INFO("Timeout\n");
2988 ipw_fw_dma_dump_command_block(priv);
2989 ipw_fw_dma_abort(priv);
2990 return -1;
2991 }
2992 }
2993
2994 ipw_fw_dma_abort(priv);
2995
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002996 /*Disable the DMA in the CSR register */
James Ketrenosb095c382005-08-24 22:04:42 -05002997 ipw_set_bit(priv, IPW_RESET_REG,
2998 IPW_RESET_REG_MASTER_DISABLED | IPW_RESET_REG_STOP_MASTER);
James Ketrenos43f66a62005-03-25 12:31:53 -06002999
Frans Pop9fd1ea42010-03-24 19:46:31 +01003000 IPW_DEBUG_FW("<< dmaWaitSync\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06003001 return 0;
3002}
3003
Jeff Garzikbf794512005-07-31 13:07:26 -04003004static void ipw_remove_current_network(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06003005{
3006 struct list_head *element, *safe;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04003007 struct libipw_network *network = NULL;
James Ketrenosa613bff2005-08-24 21:43:11 -05003008 unsigned long flags;
3009
3010 spin_lock_irqsave(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06003011 list_for_each_safe(element, safe, &priv->ieee->network_list) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04003012 network = list_entry(element, struct libipw_network, list);
dingtianhong36325f32013-12-26 19:41:23 +08003013 if (ether_addr_equal(network->bssid, priv->bssid)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003014 list_del(element);
Jeff Garzikbf794512005-07-31 13:07:26 -04003015 list_add_tail(&network->list,
James Ketrenos43f66a62005-03-25 12:31:53 -06003016 &priv->ieee->network_free_list);
3017 }
3018 }
James Ketrenosa613bff2005-08-24 21:43:11 -05003019 spin_unlock_irqrestore(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06003020}
3021
3022/**
Jeff Garzikbf794512005-07-31 13:07:26 -04003023 * Check that card is still alive.
James Ketrenos43f66a62005-03-25 12:31:53 -06003024 * Reads debug register from domain0.
3025 * If card is present, pre-defined value should
3026 * be found there.
Jeff Garzikbf794512005-07-31 13:07:26 -04003027 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003028 * @param priv
3029 * @return 1 if card is present, 0 otherwise
3030 */
3031static inline int ipw_alive(struct ipw_priv *priv)
3032{
3033 return ipw_read32(priv, 0x90) == 0xd55555d5;
3034}
3035
Zhu Yic7b6a672006-01-24 16:37:05 +08003036/* timeout in msec, attempted in 10-msec quanta */
Arjan van de Ven858119e2006-01-14 13:20:43 -08003037static int ipw_poll_bit(struct ipw_priv *priv, u32 addr, u32 mask,
James Ketrenos43f66a62005-03-25 12:31:53 -06003038 int timeout)
3039{
3040 int i = 0;
3041
3042 do {
Jeff Garzikbf794512005-07-31 13:07:26 -04003043 if ((ipw_read32(priv, addr) & mask) == mask)
James Ketrenos43f66a62005-03-25 12:31:53 -06003044 return i;
3045 mdelay(10);
3046 i += 10;
3047 } while (i < timeout);
Jeff Garzikbf794512005-07-31 13:07:26 -04003048
James Ketrenos43f66a62005-03-25 12:31:53 -06003049 return -ETIME;
3050}
3051
Jeff Garzikbf794512005-07-31 13:07:26 -04003052/* These functions load the firmware and micro code for the operation of
James Ketrenos43f66a62005-03-25 12:31:53 -06003053 * the ipw hardware. It assumes the buffer has all the bits for the
3054 * image and the caller is handling the memory allocation and clean up.
3055 */
3056
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003057static int ipw_stop_master(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06003058{
3059 int rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04003060
Frans Pop9fd1ea42010-03-24 19:46:31 +01003061 IPW_DEBUG_TRACE(">>\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06003062 /* stop master. typical delay - 0 */
James Ketrenosb095c382005-08-24 22:04:42 -05003063 ipw_set_bit(priv, IPW_RESET_REG, IPW_RESET_REG_STOP_MASTER);
James Ketrenos43f66a62005-03-25 12:31:53 -06003064
Zhu Yic7b6a672006-01-24 16:37:05 +08003065 /* timeout is in msec, polled in 10-msec quanta */
James Ketrenosb095c382005-08-24 22:04:42 -05003066 rc = ipw_poll_bit(priv, IPW_RESET_REG,
3067 IPW_RESET_REG_MASTER_DISABLED, 100);
James Ketrenos43f66a62005-03-25 12:31:53 -06003068 if (rc < 0) {
Zhu Yic7b6a672006-01-24 16:37:05 +08003069 IPW_ERROR("wait for stop master failed after 100ms\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06003070 return -1;
3071 }
3072
3073 IPW_DEBUG_INFO("stop master %dms\n", rc);
3074
3075 return rc;
3076}
3077
3078static void ipw_arc_release(struct ipw_priv *priv)
3079{
Frans Pop9fd1ea42010-03-24 19:46:31 +01003080 IPW_DEBUG_TRACE(">>\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06003081 mdelay(5);
3082
James Ketrenosb095c382005-08-24 22:04:42 -05003083 ipw_clear_bit(priv, IPW_RESET_REG, CBD_RESET_REG_PRINCETON_RESET);
James Ketrenos43f66a62005-03-25 12:31:53 -06003084
3085 /* no one knows timing, for safety add some delay */
3086 mdelay(5);
3087}
3088
James Ketrenos43f66a62005-03-25 12:31:53 -06003089struct fw_chunk {
Al Viroe62e1ee2007-12-27 01:36:46 -05003090 __le32 address;
3091 __le32 length;
James Ketrenos43f66a62005-03-25 12:31:53 -06003092};
3093
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003094static int ipw_load_ucode(struct ipw_priv *priv, u8 * data, size_t len)
James Ketrenos43f66a62005-03-25 12:31:53 -06003095{
3096 int rc = 0, i, addr;
3097 u8 cr = 0;
Al Viroe62e1ee2007-12-27 01:36:46 -05003098 __le16 *image;
James Ketrenos43f66a62005-03-25 12:31:53 -06003099
Al Viroe62e1ee2007-12-27 01:36:46 -05003100 image = (__le16 *) data;
Jeff Garzikbf794512005-07-31 13:07:26 -04003101
Frans Pop9fd1ea42010-03-24 19:46:31 +01003102 IPW_DEBUG_TRACE(">>\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06003103
3104 rc = ipw_stop_master(priv);
3105
3106 if (rc < 0)
3107 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04003108
James Ketrenosb095c382005-08-24 22:04:42 -05003109 for (addr = IPW_SHARED_LOWER_BOUND;
3110 addr < IPW_REGISTER_DOMAIN1_END; addr += 4) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003111 ipw_write32(priv, addr, 0);
3112 }
3113
3114 /* no ucode (yet) */
3115 memset(&priv->dino_alive, 0, sizeof(priv->dino_alive));
3116 /* destroy DMA queues */
3117 /* reset sequence */
3118
James Ketrenosb095c382005-08-24 22:04:42 -05003119 ipw_write_reg32(priv, IPW_MEM_HALT_AND_RESET, IPW_BIT_HALT_RESET_ON);
James Ketrenos43f66a62005-03-25 12:31:53 -06003120 ipw_arc_release(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05003121 ipw_write_reg32(priv, IPW_MEM_HALT_AND_RESET, IPW_BIT_HALT_RESET_OFF);
James Ketrenos43f66a62005-03-25 12:31:53 -06003122 mdelay(1);
3123
3124 /* reset PHY */
James Ketrenosb095c382005-08-24 22:04:42 -05003125 ipw_write_reg32(priv, IPW_INTERNAL_CMD_EVENT, IPW_BASEBAND_POWER_DOWN);
James Ketrenos43f66a62005-03-25 12:31:53 -06003126 mdelay(1);
Jeff Garzikbf794512005-07-31 13:07:26 -04003127
James Ketrenosb095c382005-08-24 22:04:42 -05003128 ipw_write_reg32(priv, IPW_INTERNAL_CMD_EVENT, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06003129 mdelay(1);
Jeff Garzikbf794512005-07-31 13:07:26 -04003130
James Ketrenos43f66a62005-03-25 12:31:53 -06003131 /* enable ucode store */
Zhu Yic8fe6672006-01-24 16:36:36 +08003132 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, 0x0);
3133 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, DINO_ENABLE_CS);
James Ketrenos43f66a62005-03-25 12:31:53 -06003134 mdelay(1);
3135
3136 /* write ucode */
3137 /**
3138 * @bug
3139 * Do NOT set indirect address register once and then
3140 * store data to indirect data register in the loop.
3141 * It seems very reasonable, but in this case DINO do not
3142 * accept ucode. It is essential to set address each time.
3143 */
3144 /* load new ipw uCode */
3145 for (i = 0; i < len / 2; i++)
James Ketrenosb095c382005-08-24 22:04:42 -05003146 ipw_write_reg16(priv, IPW_BASEBAND_CONTROL_STORE,
Al Viroe62e1ee2007-12-27 01:36:46 -05003147 le16_to_cpu(image[i]));
James Ketrenos43f66a62005-03-25 12:31:53 -06003148
James Ketrenos43f66a62005-03-25 12:31:53 -06003149 /* enable DINO */
James Ketrenosb095c382005-08-24 22:04:42 -05003150 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, 0);
3151 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, DINO_ENABLE_SYSTEM);
James Ketrenos43f66a62005-03-25 12:31:53 -06003152
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003153 /* this is where the igx / win driver deveates from the VAP driver. */
James Ketrenos43f66a62005-03-25 12:31:53 -06003154
3155 /* wait for alive response */
3156 for (i = 0; i < 100; i++) {
3157 /* poll for incoming data */
James Ketrenosb095c382005-08-24 22:04:42 -05003158 cr = ipw_read_reg8(priv, IPW_BASEBAND_CONTROL_STATUS);
James Ketrenos43f66a62005-03-25 12:31:53 -06003159 if (cr & DINO_RXFIFO_DATA)
3160 break;
3161 mdelay(1);
3162 }
3163
3164 if (cr & DINO_RXFIFO_DATA) {
3165 /* alive_command_responce size is NOT multiple of 4 */
Al Viroe62e1ee2007-12-27 01:36:46 -05003166 __le32 response_buffer[(sizeof(priv->dino_alive) + 3) / 4];
Jeff Garzikbf794512005-07-31 13:07:26 -04003167
3168 for (i = 0; i < ARRAY_SIZE(response_buffer); i++)
James Ketrenos43f66a62005-03-25 12:31:53 -06003169 response_buffer[i] =
Al Viroe62e1ee2007-12-27 01:36:46 -05003170 cpu_to_le32(ipw_read_reg32(priv,
James Ketrenosb095c382005-08-24 22:04:42 -05003171 IPW_BASEBAND_RX_FIFO_READ));
James Ketrenos43f66a62005-03-25 12:31:53 -06003172 memcpy(&priv->dino_alive, response_buffer,
3173 sizeof(priv->dino_alive));
3174 if (priv->dino_alive.alive_command == 1
3175 && priv->dino_alive.ucode_valid == 1) {
3176 rc = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003177 IPW_DEBUG_INFO
3178 ("Microcode OK, rev. %d (0x%x) dev. %d (0x%x) "
3179 "of %02d/%02d/%02d %02d:%02d\n",
3180 priv->dino_alive.software_revision,
3181 priv->dino_alive.software_revision,
3182 priv->dino_alive.device_identifier,
3183 priv->dino_alive.device_identifier,
3184 priv->dino_alive.time_stamp[0],
3185 priv->dino_alive.time_stamp[1],
3186 priv->dino_alive.time_stamp[2],
3187 priv->dino_alive.time_stamp[3],
3188 priv->dino_alive.time_stamp[4]);
James Ketrenos43f66a62005-03-25 12:31:53 -06003189 } else {
3190 IPW_DEBUG_INFO("Microcode is not alive\n");
3191 rc = -EINVAL;
3192 }
3193 } else {
3194 IPW_DEBUG_INFO("No alive response from DINO\n");
3195 rc = -ETIME;
3196 }
3197
3198 /* disable DINO, otherwise for some reason
3199 firmware have problem getting alive resp. */
James Ketrenosb095c382005-08-24 22:04:42 -05003200 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06003201
James Ketrenos43f66a62005-03-25 12:31:53 -06003202 return rc;
3203}
3204
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003205static int ipw_load_firmware(struct ipw_priv *priv, u8 * data, size_t len)
James Ketrenos43f66a62005-03-25 12:31:53 -06003206{
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003207 int ret = -1;
James Ketrenos43f66a62005-03-25 12:31:53 -06003208 int offset = 0;
3209 struct fw_chunk *chunk;
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003210 int total_nr = 0;
3211 int i;
3212 struct pci_pool *pool;
Zhu Yi41093162010-03-09 16:05:31 +08003213 void **virts;
3214 dma_addr_t *phys;
James Ketrenos43f66a62005-03-25 12:31:53 -06003215
Frans Pop9fd1ea42010-03-24 19:46:31 +01003216 IPW_DEBUG_TRACE("<< :\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06003217
Zhu Yi41093162010-03-09 16:05:31 +08003218 virts = kmalloc(sizeof(void *) * CB_NUMBER_OF_ELEMENTS_SMALL,
3219 GFP_KERNEL);
3220 if (!virts)
3221 return -ENOMEM;
3222
3223 phys = kmalloc(sizeof(dma_addr_t) * CB_NUMBER_OF_ELEMENTS_SMALL,
3224 GFP_KERNEL);
3225 if (!phys) {
3226 kfree(virts);
3227 return -ENOMEM;
3228 }
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003229 pool = pci_pool_create("ipw2200", priv->pci_dev, CB_MAX_LENGTH, 0, 0);
3230 if (!pool) {
3231 IPW_ERROR("pci_pool_create failed\n");
Zhu Yi41093162010-03-09 16:05:31 +08003232 kfree(phys);
3233 kfree(virts);
James Ketrenos43f66a62005-03-25 12:31:53 -06003234 return -ENOMEM;
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003235 }
James Ketrenos43f66a62005-03-25 12:31:53 -06003236
3237 /* Start the Dma */
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003238 ret = ipw_fw_dma_enable(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06003239
Alexander Beregalov0ee904c2009-04-11 14:50:23 +00003240 /* the DMA is already ready this would be a bug. */
3241 BUG_ON(priv->sram_desc.last_cb_index > 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06003242
3243 do {
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003244 u32 chunk_len;
3245 u8 *start;
3246 int size;
3247 int nr = 0;
3248
James Ketrenos43f66a62005-03-25 12:31:53 -06003249 chunk = (struct fw_chunk *)(data + offset);
3250 offset += sizeof(struct fw_chunk);
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003251 chunk_len = le32_to_cpu(chunk->length);
3252 start = data + offset;
3253
3254 nr = (chunk_len + CB_MAX_LENGTH - 1) / CB_MAX_LENGTH;
3255 for (i = 0; i < nr; i++) {
3256 virts[total_nr] = pci_pool_alloc(pool, GFP_KERNEL,
3257 &phys[total_nr]);
3258 if (!virts[total_nr]) {
3259 ret = -ENOMEM;
3260 goto out;
3261 }
3262 size = min_t(u32, chunk_len - i * CB_MAX_LENGTH,
3263 CB_MAX_LENGTH);
3264 memcpy(virts[total_nr], start, size);
3265 start += size;
3266 total_nr++;
3267 /* We don't support fw chunk larger than 64*8K */
3268 BUG_ON(total_nr > CB_NUMBER_OF_ELEMENTS_SMALL);
3269 }
3270
James Ketrenos43f66a62005-03-25 12:31:53 -06003271 /* build DMA packet and queue up for sending */
Jeff Garzikbf794512005-07-31 13:07:26 -04003272 /* dma to chunk->address, the chunk->length bytes from data +
James Ketrenos43f66a62005-03-25 12:31:53 -06003273 * offeset*/
3274 /* Dma loading */
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003275 ret = ipw_fw_dma_add_buffer(priv, &phys[total_nr - nr],
3276 nr, le32_to_cpu(chunk->address),
3277 chunk_len);
3278 if (ret) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003279 IPW_DEBUG_INFO("dmaAddBuffer Failed\n");
3280 goto out;
3281 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003282
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003283 offset += chunk_len;
James Ketrenos43f66a62005-03-25 12:31:53 -06003284 } while (offset < len);
3285
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003286 /* Run the DMA and wait for the answer */
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003287 ret = ipw_fw_dma_kick(priv);
3288 if (ret) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003289 IPW_ERROR("dmaKick Failed\n");
3290 goto out;
3291 }
3292
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003293 ret = ipw_fw_dma_wait(priv);
3294 if (ret) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003295 IPW_ERROR("dmaWaitSync Failed\n");
3296 goto out;
3297 }
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003298 out:
3299 for (i = 0; i < total_nr; i++)
3300 pci_pool_free(pool, virts[i], phys[i]);
3301
3302 pci_pool_destroy(pool);
Zhu Yi41093162010-03-09 16:05:31 +08003303 kfree(phys);
3304 kfree(virts);
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003305
3306 return ret;
James Ketrenos43f66a62005-03-25 12:31:53 -06003307}
3308
3309/* stop nic */
3310static int ipw_stop_nic(struct ipw_priv *priv)
3311{
3312 int rc = 0;
3313
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003314 /* stop */
James Ketrenosb095c382005-08-24 22:04:42 -05003315 ipw_write32(priv, IPW_RESET_REG, IPW_RESET_REG_STOP_MASTER);
Jeff Garzikbf794512005-07-31 13:07:26 -04003316
James Ketrenosb095c382005-08-24 22:04:42 -05003317 rc = ipw_poll_bit(priv, IPW_RESET_REG,
3318 IPW_RESET_REG_MASTER_DISABLED, 500);
James Ketrenos43f66a62005-03-25 12:31:53 -06003319 if (rc < 0) {
Zhu Yic7b6a672006-01-24 16:37:05 +08003320 IPW_ERROR("wait for reg master disabled failed after 500ms\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06003321 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04003322 }
James Ketrenos43f66a62005-03-25 12:31:53 -06003323
James Ketrenosb095c382005-08-24 22:04:42 -05003324 ipw_set_bit(priv, IPW_RESET_REG, CBD_RESET_REG_PRINCETON_RESET);
Jeff Garzikbf794512005-07-31 13:07:26 -04003325
James Ketrenos43f66a62005-03-25 12:31:53 -06003326 return rc;
3327}
3328
3329static void ipw_start_nic(struct ipw_priv *priv)
3330{
3331 IPW_DEBUG_TRACE(">>\n");
3332
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003333 /* prvHwStartNic release ARC */
James Ketrenosb095c382005-08-24 22:04:42 -05003334 ipw_clear_bit(priv, IPW_RESET_REG,
3335 IPW_RESET_REG_MASTER_DISABLED |
3336 IPW_RESET_REG_STOP_MASTER |
James Ketrenos43f66a62005-03-25 12:31:53 -06003337 CBD_RESET_REG_PRINCETON_RESET);
Jeff Garzikbf794512005-07-31 13:07:26 -04003338
James Ketrenos43f66a62005-03-25 12:31:53 -06003339 /* enable power management */
James Ketrenosb095c382005-08-24 22:04:42 -05003340 ipw_set_bit(priv, IPW_GP_CNTRL_RW,
3341 IPW_GP_CNTRL_BIT_HOST_ALLOWS_STANDBY);
James Ketrenos43f66a62005-03-25 12:31:53 -06003342
3343 IPW_DEBUG_TRACE("<<\n");
3344}
Jeff Garzikbf794512005-07-31 13:07:26 -04003345
James Ketrenos43f66a62005-03-25 12:31:53 -06003346static int ipw_init_nic(struct ipw_priv *priv)
3347{
3348 int rc;
3349
3350 IPW_DEBUG_TRACE(">>\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04003351 /* reset */
James Ketrenos43f66a62005-03-25 12:31:53 -06003352 /*prvHwInitNic */
3353 /* set "initialization complete" bit to move adapter to D0 state */
James Ketrenosb095c382005-08-24 22:04:42 -05003354 ipw_set_bit(priv, IPW_GP_CNTRL_RW, IPW_GP_CNTRL_BIT_INIT_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003355
3356 /* low-level PLL activation */
James Ketrenosb095c382005-08-24 22:04:42 -05003357 ipw_write32(priv, IPW_READ_INT_REGISTER,
3358 IPW_BIT_INT_HOST_SRAM_READ_INT_REGISTER);
James Ketrenos43f66a62005-03-25 12:31:53 -06003359
3360 /* wait for clock stabilization */
James Ketrenosb095c382005-08-24 22:04:42 -05003361 rc = ipw_poll_bit(priv, IPW_GP_CNTRL_RW,
3362 IPW_GP_CNTRL_BIT_CLOCK_READY, 250);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003363 if (rc < 0)
James Ketrenos43f66a62005-03-25 12:31:53 -06003364 IPW_DEBUG_INFO("FAILED wait for clock stablization\n");
3365
3366 /* assert SW reset */
James Ketrenosb095c382005-08-24 22:04:42 -05003367 ipw_set_bit(priv, IPW_RESET_REG, IPW_RESET_REG_SW_RESET);
James Ketrenos43f66a62005-03-25 12:31:53 -06003368
3369 udelay(10);
3370
3371 /* set "initialization complete" bit to move adapter to D0 state */
James Ketrenosb095c382005-08-24 22:04:42 -05003372 ipw_set_bit(priv, IPW_GP_CNTRL_RW, IPW_GP_CNTRL_BIT_INIT_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003373
3374 IPW_DEBUG_TRACE(">>\n");
3375 return 0;
3376}
3377
Jeff Garzikbf794512005-07-31 13:07:26 -04003378/* Call this function from process context, it will sleep in request_firmware.
James Ketrenos43f66a62005-03-25 12:31:53 -06003379 * Probe is an ok place to call this from.
3380 */
3381static int ipw_reset_nic(struct ipw_priv *priv)
3382{
3383 int rc = 0;
James Ketrenosa613bff2005-08-24 21:43:11 -05003384 unsigned long flags;
James Ketrenos43f66a62005-03-25 12:31:53 -06003385
3386 IPW_DEBUG_TRACE(">>\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04003387
James Ketrenos43f66a62005-03-25 12:31:53 -06003388 rc = ipw_init_nic(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -04003389
James Ketrenosa613bff2005-08-24 21:43:11 -05003390 spin_lock_irqsave(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06003391 /* Clear the 'host command active' bit... */
3392 priv->status &= ~STATUS_HCMD_ACTIVE;
3393 wake_up_interruptible(&priv->wait_command_queue);
James Ketrenosafbf30a2005-08-25 00:05:33 -05003394 priv->status &= ~(STATUS_SCANNING | STATUS_SCAN_ABORTING);
3395 wake_up_interruptible(&priv->wait_state);
James Ketrenosa613bff2005-08-24 21:43:11 -05003396 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06003397
3398 IPW_DEBUG_TRACE("<<\n");
3399 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04003400}
James Ketrenos43f66a62005-03-25 12:31:53 -06003401
James Ketrenos9006ea72006-03-08 03:22:28 +08003402
3403struct ipw_fw {
Zhu Yi0070f8c2006-04-13 17:20:12 +08003404 __le32 ver;
3405 __le32 boot_size;
3406 __le32 ucode_size;
3407 __le32 fw_size;
James Ketrenos9006ea72006-03-08 03:22:28 +08003408 u8 data[0];
3409};
3410
Jeff Garzikbf794512005-07-31 13:07:26 -04003411static int ipw_get_fw(struct ipw_priv *priv,
James Ketrenos9006ea72006-03-08 03:22:28 +08003412 const struct firmware **raw, const char *name)
James Ketrenos43f66a62005-03-25 12:31:53 -06003413{
James Ketrenos9006ea72006-03-08 03:22:28 +08003414 struct ipw_fw *fw;
James Ketrenos43f66a62005-03-25 12:31:53 -06003415 int rc;
3416
3417 /* ask firmware_class module to get the boot firmware off disk */
James Ketrenos9006ea72006-03-08 03:22:28 +08003418 rc = request_firmware(raw, name, &priv->pci_dev->dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06003419 if (rc < 0) {
James Ketrenos9006ea72006-03-08 03:22:28 +08003420 IPW_ERROR("%s request_firmware failed: Reason %d\n", name, rc);
James Ketrenos43f66a62005-03-25 12:31:53 -06003421 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04003422 }
James Ketrenos43f66a62005-03-25 12:31:53 -06003423
James Ketrenos9006ea72006-03-08 03:22:28 +08003424 if ((*raw)->size < sizeof(*fw)) {
3425 IPW_ERROR("%s is too small (%zd)\n", name, (*raw)->size);
James Ketrenos43f66a62005-03-25 12:31:53 -06003426 return -EINVAL;
3427 }
3428
James Ketrenos9006ea72006-03-08 03:22:28 +08003429 fw = (void *)(*raw)->data;
3430
Zhu Yi0070f8c2006-04-13 17:20:12 +08003431 if ((*raw)->size < sizeof(*fw) + le32_to_cpu(fw->boot_size) +
3432 le32_to_cpu(fw->ucode_size) + le32_to_cpu(fw->fw_size)) {
James Ketrenos9006ea72006-03-08 03:22:28 +08003433 IPW_ERROR("%s is too small or corrupt (%zd)\n",
3434 name, (*raw)->size);
3435 return -EINVAL;
3436 }
3437
3438 IPW_DEBUG_INFO("Read firmware '%s' image v%d.%d (%zd bytes)\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06003439 name,
James Ketrenos9006ea72006-03-08 03:22:28 +08003440 le32_to_cpu(fw->ver) >> 16,
3441 le32_to_cpu(fw->ver) & 0xff,
3442 (*raw)->size - sizeof(*fw));
James Ketrenos43f66a62005-03-25 12:31:53 -06003443 return 0;
3444}
3445
James Ketrenosb095c382005-08-24 22:04:42 -05003446#define IPW_RX_BUF_SIZE (3000)
James Ketrenos43f66a62005-03-25 12:31:53 -06003447
Arjan van de Ven858119e2006-01-14 13:20:43 -08003448static void ipw_rx_queue_reset(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06003449 struct ipw_rx_queue *rxq)
3450{
3451 unsigned long flags;
3452 int i;
3453
3454 spin_lock_irqsave(&rxq->lock, flags);
3455
3456 INIT_LIST_HEAD(&rxq->rx_free);
3457 INIT_LIST_HEAD(&rxq->rx_used);
3458
3459 /* Fill the rx_used queue with _all_ of the Rx buffers */
3460 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++) {
3461 /* In the reset function, these buffers may have been allocated
3462 * to an SKB, so we need to unmap and free potential storage */
3463 if (rxq->pool[i].skb != NULL) {
3464 pci_unmap_single(priv->pci_dev, rxq->pool[i].dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05003465 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003466 dev_kfree_skb(rxq->pool[i].skb);
James Ketrenosa613bff2005-08-24 21:43:11 -05003467 rxq->pool[i].skb = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -06003468 }
3469 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
3470 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003471
James Ketrenos43f66a62005-03-25 12:31:53 -06003472 /* Set us so that we have processed and used all buffers, but have
3473 * not restocked the Rx queue with fresh buffers */
3474 rxq->read = rxq->write = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06003475 rxq->free_count = 0;
3476 spin_unlock_irqrestore(&rxq->lock, flags);
3477}
3478
3479#ifdef CONFIG_PM
3480static int fw_loaded = 0;
James Ketrenos9006ea72006-03-08 03:22:28 +08003481static const struct firmware *raw = NULL;
James Ketrenosafbf30a2005-08-25 00:05:33 -05003482
3483static void free_firmware(void)
3484{
3485 if (fw_loaded) {
James Ketrenos9006ea72006-03-08 03:22:28 +08003486 release_firmware(raw);
3487 raw = NULL;
James Ketrenosafbf30a2005-08-25 00:05:33 -05003488 fw_loaded = 0;
3489 }
3490}
3491#else
3492#define free_firmware() do {} while (0)
James Ketrenos43f66a62005-03-25 12:31:53 -06003493#endif
3494
3495static int ipw_load(struct ipw_priv *priv)
3496{
3497#ifndef CONFIG_PM
James Ketrenos9006ea72006-03-08 03:22:28 +08003498 const struct firmware *raw = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -06003499#endif
James Ketrenos9006ea72006-03-08 03:22:28 +08003500 struct ipw_fw *fw;
3501 u8 *boot_img, *ucode_img, *fw_img;
3502 u8 *name = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -06003503 int rc = 0, retries = 3;
3504
Zhu Yi397ae122006-01-24 16:37:22 +08003505 switch (priv->ieee->iw_mode) {
3506 case IW_MODE_ADHOC:
James Ketrenos9006ea72006-03-08 03:22:28 +08003507 name = "ipw2200-ibss.fw";
Zhu Yi397ae122006-01-24 16:37:22 +08003508 break;
James Ketrenosb095c382005-08-24 22:04:42 -05003509#ifdef CONFIG_IPW2200_MONITOR
Zhu Yi397ae122006-01-24 16:37:22 +08003510 case IW_MODE_MONITOR:
James Ketrenos9006ea72006-03-08 03:22:28 +08003511 name = "ipw2200-sniffer.fw";
Zhu Yi397ae122006-01-24 16:37:22 +08003512 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06003513#endif
Zhu Yi397ae122006-01-24 16:37:22 +08003514 case IW_MODE_INFRA:
James Ketrenos9006ea72006-03-08 03:22:28 +08003515 name = "ipw2200-bss.fw";
Zhu Yi397ae122006-01-24 16:37:22 +08003516 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06003517 }
Zhu Yi397ae122006-01-24 16:37:22 +08003518
James Ketrenos9006ea72006-03-08 03:22:28 +08003519 if (!name) {
3520 rc = -EINVAL;
3521 goto error;
3522 }
3523
3524#ifdef CONFIG_PM
3525 if (!fw_loaded) {
3526#endif
3527 rc = ipw_get_fw(priv, &raw, name);
3528 if (rc < 0)
3529 goto error;
3530#ifdef CONFIG_PM
3531 }
3532#endif
3533
3534 fw = (void *)raw->data;
3535 boot_img = &fw->data[0];
Zhu Yi0070f8c2006-04-13 17:20:12 +08003536 ucode_img = &fw->data[le32_to_cpu(fw->boot_size)];
3537 fw_img = &fw->data[le32_to_cpu(fw->boot_size) +
3538 le32_to_cpu(fw->ucode_size)];
James Ketrenos9006ea72006-03-08 03:22:28 +08003539
James Ketrenos43f66a62005-03-25 12:31:53 -06003540 if (!priv->rxq)
3541 priv->rxq = ipw_rx_queue_alloc(priv);
3542 else
3543 ipw_rx_queue_reset(priv, priv->rxq);
3544 if (!priv->rxq) {
3545 IPW_ERROR("Unable to initialize Rx queue\n");
Wei Yongjun5d9e3bc2013-06-21 10:42:19 +08003546 rc = -ENOMEM;
James Ketrenos43f66a62005-03-25 12:31:53 -06003547 goto error;
3548 }
3549
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003550 retry:
James Ketrenos43f66a62005-03-25 12:31:53 -06003551 /* Ensure interrupts are disabled */
James Ketrenosb095c382005-08-24 22:04:42 -05003552 ipw_write32(priv, IPW_INTA_MASK_R, ~IPW_INTA_MASK_ALL);
James Ketrenos43f66a62005-03-25 12:31:53 -06003553 priv->status &= ~STATUS_INT_ENABLED;
3554
3555 /* ack pending interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -05003556 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_MASK_ALL);
Jeff Garzikbf794512005-07-31 13:07:26 -04003557
James Ketrenos43f66a62005-03-25 12:31:53 -06003558 ipw_stop_nic(priv);
3559
3560 rc = ipw_reset_nic(priv);
Zhu Yi397ae122006-01-24 16:37:22 +08003561 if (rc < 0) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003562 IPW_ERROR("Unable to reset NIC\n");
3563 goto error;
3564 }
3565
James Ketrenosb095c382005-08-24 22:04:42 -05003566 ipw_zero_memory(priv, IPW_NIC_SRAM_LOWER_BOUND,
3567 IPW_NIC_SRAM_UPPER_BOUND - IPW_NIC_SRAM_LOWER_BOUND);
James Ketrenos43f66a62005-03-25 12:31:53 -06003568
3569 /* DMA the initial boot firmware into the device */
Zhu Yi0070f8c2006-04-13 17:20:12 +08003570 rc = ipw_load_firmware(priv, boot_img, le32_to_cpu(fw->boot_size));
James Ketrenos43f66a62005-03-25 12:31:53 -06003571 if (rc < 0) {
Peter Jonesa4f6bbb2005-08-26 00:33:34 -05003572 IPW_ERROR("Unable to load boot firmware: %d\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -06003573 goto error;
3574 }
3575
3576 /* kick start the device */
3577 ipw_start_nic(priv);
3578
Zhu Yic7b6a672006-01-24 16:37:05 +08003579 /* wait for the device to finish its initial startup sequence */
James Ketrenosb095c382005-08-24 22:04:42 -05003580 rc = ipw_poll_bit(priv, IPW_INTA_RW,
3581 IPW_INTA_BIT_FW_INITIALIZATION_DONE, 500);
James Ketrenos43f66a62005-03-25 12:31:53 -06003582 if (rc < 0) {
3583 IPW_ERROR("device failed to boot initial fw image\n");
3584 goto error;
3585 }
3586 IPW_DEBUG_INFO("initial device response after %dms\n", rc);
3587
Jeff Garzikbf794512005-07-31 13:07:26 -04003588 /* ack fw init done interrupt */
James Ketrenosb095c382005-08-24 22:04:42 -05003589 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_BIT_FW_INITIALIZATION_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003590
3591 /* DMA the ucode into the device */
Zhu Yi0070f8c2006-04-13 17:20:12 +08003592 rc = ipw_load_ucode(priv, ucode_img, le32_to_cpu(fw->ucode_size));
James Ketrenos43f66a62005-03-25 12:31:53 -06003593 if (rc < 0) {
Peter Jonesa4f6bbb2005-08-26 00:33:34 -05003594 IPW_ERROR("Unable to load ucode: %d\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -06003595 goto error;
3596 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003597
James Ketrenos43f66a62005-03-25 12:31:53 -06003598 /* stop nic */
3599 ipw_stop_nic(priv);
3600
3601 /* DMA bss firmware into the device */
Zhu Yi0070f8c2006-04-13 17:20:12 +08003602 rc = ipw_load_firmware(priv, fw_img, le32_to_cpu(fw->fw_size));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003603 if (rc < 0) {
Peter Jonesa4f6bbb2005-08-26 00:33:34 -05003604 IPW_ERROR("Unable to load firmware: %d\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -06003605 goto error;
3606 }
Zhu Yi397ae122006-01-24 16:37:22 +08003607#ifdef CONFIG_PM
3608 fw_loaded = 1;
3609#endif
3610
James Ketrenos43f66a62005-03-25 12:31:53 -06003611 ipw_write32(priv, IPW_EEPROM_LOAD_DISABLE, 0);
3612
3613 rc = ipw_queue_reset(priv);
Zhu Yi397ae122006-01-24 16:37:22 +08003614 if (rc < 0) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003615 IPW_ERROR("Unable to initialize queues\n");
3616 goto error;
3617 }
3618
3619 /* Ensure interrupts are disabled */
James Ketrenosb095c382005-08-24 22:04:42 -05003620 ipw_write32(priv, IPW_INTA_MASK_R, ~IPW_INTA_MASK_ALL);
James Ketrenosc848d0a2005-08-24 21:56:24 -05003621 /* ack pending interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -05003622 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_MASK_ALL);
Jeff Garzikbf794512005-07-31 13:07:26 -04003623
James Ketrenos43f66a62005-03-25 12:31:53 -06003624 /* kick start the device */
3625 ipw_start_nic(priv);
3626
James Ketrenosb095c382005-08-24 22:04:42 -05003627 if (ipw_read32(priv, IPW_INTA_RW) & IPW_INTA_BIT_PARITY_ERROR) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003628 if (retries > 0) {
3629 IPW_WARNING("Parity error. Retrying init.\n");
3630 retries--;
3631 goto retry;
3632 }
3633
3634 IPW_ERROR("TODO: Handle parity error -- schedule restart?\n");
3635 rc = -EIO;
3636 goto error;
3637 }
3638
3639 /* wait for the device */
James Ketrenosb095c382005-08-24 22:04:42 -05003640 rc = ipw_poll_bit(priv, IPW_INTA_RW,
3641 IPW_INTA_BIT_FW_INITIALIZATION_DONE, 500);
James Ketrenos43f66a62005-03-25 12:31:53 -06003642 if (rc < 0) {
Zhu Yic7b6a672006-01-24 16:37:05 +08003643 IPW_ERROR("device failed to start within 500ms\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06003644 goto error;
3645 }
3646 IPW_DEBUG_INFO("device response after %dms\n", rc);
3647
3648 /* ack fw init done interrupt */
James Ketrenosb095c382005-08-24 22:04:42 -05003649 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_BIT_FW_INITIALIZATION_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003650
Stanislav Yakovlevfdbfff72012-05-17 15:56:35 -04003651 /* read eeprom data */
James Ketrenos43f66a62005-03-25 12:31:53 -06003652 priv->eeprom_delay = 1;
Stanislav Yakovlevfdbfff72012-05-17 15:56:35 -04003653 ipw_read_eeprom(priv);
3654 /* initialize the eeprom region of sram */
Jeff Garzikbf794512005-07-31 13:07:26 -04003655 ipw_eeprom_init_sram(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06003656
3657 /* enable interrupts */
3658 ipw_enable_interrupts(priv);
3659
3660 /* Ensure our queue has valid packets */
3661 ipw_rx_queue_replenish(priv);
3662
James Ketrenosb095c382005-08-24 22:04:42 -05003663 ipw_write32(priv, IPW_RX_READ_INDEX, priv->rxq->read);
James Ketrenos43f66a62005-03-25 12:31:53 -06003664
3665 /* ack pending interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -05003666 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_MASK_ALL);
James Ketrenos43f66a62005-03-25 12:31:53 -06003667
3668#ifndef CONFIG_PM
James Ketrenos9006ea72006-03-08 03:22:28 +08003669 release_firmware(raw);
James Ketrenos43f66a62005-03-25 12:31:53 -06003670#endif
3671 return 0;
3672
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003673 error:
James Ketrenos43f66a62005-03-25 12:31:53 -06003674 if (priv->rxq) {
3675 ipw_rx_queue_free(priv, priv->rxq);
3676 priv->rxq = NULL;
3677 }
3678 ipw_tx_queue_free(priv);
Jesper Juhld144f532012-04-09 22:51:01 +02003679 release_firmware(raw);
James Ketrenos43f66a62005-03-25 12:31:53 -06003680#ifdef CONFIG_PM
3681 fw_loaded = 0;
James Ketrenos9006ea72006-03-08 03:22:28 +08003682 raw = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -06003683#endif
3684
3685 return rc;
3686}
3687
Jeff Garzikbf794512005-07-31 13:07:26 -04003688/**
James Ketrenos43f66a62005-03-25 12:31:53 -06003689 * DMA services
3690 *
3691 * Theory of operation
3692 *
3693 * A queue is a circular buffers with 'Read' and 'Write' pointers.
3694 * 2 empty entries always kept in the buffer to protect from overflow.
3695 *
3696 * For Tx queue, there are low mark and high mark limits. If, after queuing
Jeff Garzikbf794512005-07-31 13:07:26 -04003697 * the packet for Tx, free space become < low mark, Tx queue stopped. When
3698 * reclaiming packets (on 'tx done IRQ), if free space become > high mark,
James Ketrenos43f66a62005-03-25 12:31:53 -06003699 * Tx queue resumed.
3700 *
3701 * The IPW operates with six queues, one receive queue in the device's
3702 * sram, one transmit queue for sending commands to the device firmware,
Jeff Garzikbf794512005-07-31 13:07:26 -04003703 * and four transmit queues for data.
James Ketrenos43f66a62005-03-25 12:31:53 -06003704 *
Jeff Garzikbf794512005-07-31 13:07:26 -04003705 * The four transmit queues allow for performing quality of service (qos)
James Ketrenos43f66a62005-03-25 12:31:53 -06003706 * transmissions as per the 802.11 protocol. Currently Linux does not
Jeff Garzikbf794512005-07-31 13:07:26 -04003707 * provide a mechanism to the user for utilizing prioritized queues, so
James Ketrenos43f66a62005-03-25 12:31:53 -06003708 * we only utilize the first data transmit queue (queue1).
3709 */
3710
3711/**
3712 * Driver allocates buffers of this size for Rx
3713 */
3714
Dan Williams943dbef2008-02-14 17:49:41 -05003715/**
3716 * ipw_rx_queue_space - Return number of free slots available in queue.
3717 */
3718static int ipw_rx_queue_space(const struct ipw_rx_queue *q)
3719{
3720 int s = q->read - q->write;
3721 if (s <= 0)
3722 s += RX_QUEUE_SIZE;
3723 /* keep some buffer to not confuse full and empty queue */
3724 s -= 2;
3725 if (s < 0)
3726 s = 0;
3727 return s;
3728}
3729
3730static inline int ipw_tx_queue_space(const struct clx2_queue *q)
James Ketrenos43f66a62005-03-25 12:31:53 -06003731{
3732 int s = q->last_used - q->first_empty;
3733 if (s <= 0)
3734 s += q->n_bd;
3735 s -= 2; /* keep some reserve to not confuse empty and full situations */
3736 if (s < 0)
3737 s = 0;
3738 return s;
3739}
3740
3741static inline int ipw_queue_inc_wrap(int index, int n_bd)
3742{
3743 return (++index == n_bd) ? 0 : index;
3744}
3745
3746/**
3747 * Initialize common DMA queue structure
Jeff Garzikbf794512005-07-31 13:07:26 -04003748 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003749 * @param q queue to init
3750 * @param count Number of BD's to allocate. Should be power of 2
3751 * @param read_register Address for 'read' register
3752 * (not offset within BAR, full address)
3753 * @param write_register Address for 'write' register
3754 * (not offset within BAR, full address)
3755 * @param base_register Address for 'base' register
3756 * (not offset within BAR, full address)
3757 * @param size Address for 'size' register
3758 * (not offset within BAR, full address)
3759 */
Jeff Garzikbf794512005-07-31 13:07:26 -04003760static void ipw_queue_init(struct ipw_priv *priv, struct clx2_queue *q,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003761 int count, u32 read, u32 write, u32 base, u32 size)
James Ketrenos43f66a62005-03-25 12:31:53 -06003762{
3763 q->n_bd = count;
3764
3765 q->low_mark = q->n_bd / 4;
3766 if (q->low_mark < 4)
3767 q->low_mark = 4;
3768
3769 q->high_mark = q->n_bd / 8;
3770 if (q->high_mark < 2)
3771 q->high_mark = 2;
3772
3773 q->first_empty = q->last_used = 0;
3774 q->reg_r = read;
3775 q->reg_w = write;
3776
3777 ipw_write32(priv, base, q->dma_addr);
3778 ipw_write32(priv, size, count);
3779 ipw_write32(priv, read, 0);
3780 ipw_write32(priv, write, 0);
3781
3782 _ipw_read32(priv, 0x90);
3783}
3784
Jeff Garzikbf794512005-07-31 13:07:26 -04003785static int ipw_queue_tx_init(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06003786 struct clx2_tx_queue *q,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003787 int count, u32 read, u32 write, u32 base, u32 size)
James Ketrenos43f66a62005-03-25 12:31:53 -06003788{
3789 struct pci_dev *dev = priv->pci_dev;
3790
3791 q->txb = kmalloc(sizeof(q->txb[0]) * count, GFP_KERNEL);
3792 if (!q->txb) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003793 IPW_ERROR("vmalloc for auxiliary BD structures failed\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06003794 return -ENOMEM;
3795 }
3796
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003797 q->bd =
3798 pci_alloc_consistent(dev, sizeof(q->bd[0]) * count, &q->q.dma_addr);
James Ketrenos43f66a62005-03-25 12:31:53 -06003799 if (!q->bd) {
Jiri Bencaaa4d302005-06-07 14:58:41 +02003800 IPW_ERROR("pci_alloc_consistent(%zd) failed\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003801 sizeof(q->bd[0]) * count);
James Ketrenos43f66a62005-03-25 12:31:53 -06003802 kfree(q->txb);
3803 q->txb = NULL;
3804 return -ENOMEM;
3805 }
3806
3807 ipw_queue_init(priv, &q->q, count, read, write, base, size);
3808 return 0;
3809}
3810
3811/**
3812 * Free one TFD, those at index [txq->q.last_used].
3813 * Do NOT advance any indexes
Jeff Garzikbf794512005-07-31 13:07:26 -04003814 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003815 * @param dev
3816 * @param txq
3817 */
3818static void ipw_queue_tx_free_tfd(struct ipw_priv *priv,
3819 struct clx2_tx_queue *txq)
3820{
3821 struct tfd_frame *bd = &txq->bd[txq->q.last_used];
3822 struct pci_dev *dev = priv->pci_dev;
3823 int i;
Jeff Garzikbf794512005-07-31 13:07:26 -04003824
James Ketrenos43f66a62005-03-25 12:31:53 -06003825 /* classify bd */
3826 if (bd->control_flags.message_type == TX_HOST_COMMAND_TYPE)
3827 /* nothing to cleanup after for host commands */
3828 return;
3829
3830 /* sanity check */
James Ketrenosa613bff2005-08-24 21:43:11 -05003831 if (le32_to_cpu(bd->u.data.num_chunks) > NUM_TFD_CHUNKS) {
3832 IPW_ERROR("Too many chunks: %i\n",
3833 le32_to_cpu(bd->u.data.num_chunks));
James Ketrenos43f66a62005-03-25 12:31:53 -06003834 /** @todo issue fatal error, it is quite serious situation */
3835 return;
3836 }
3837
3838 /* unmap chunks if any */
James Ketrenosa613bff2005-08-24 21:43:11 -05003839 for (i = 0; i < le32_to_cpu(bd->u.data.num_chunks); i++) {
3840 pci_unmap_single(dev, le32_to_cpu(bd->u.data.chunk_ptr[i]),
3841 le16_to_cpu(bd->u.data.chunk_len[i]),
3842 PCI_DMA_TODEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003843 if (txq->txb[txq->q.last_used]) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04003844 libipw_txb_free(txq->txb[txq->q.last_used]);
James Ketrenos43f66a62005-03-25 12:31:53 -06003845 txq->txb[txq->q.last_used] = NULL;
3846 }
3847 }
3848}
3849
3850/**
3851 * Deallocate DMA queue.
Jeff Garzikbf794512005-07-31 13:07:26 -04003852 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003853 * Empty queue by removing and destroying all BD's.
3854 * Free all buffers.
Jeff Garzikbf794512005-07-31 13:07:26 -04003855 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003856 * @param dev
3857 * @param q
3858 */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003859static void ipw_queue_tx_free(struct ipw_priv *priv, struct clx2_tx_queue *txq)
James Ketrenos43f66a62005-03-25 12:31:53 -06003860{
3861 struct clx2_queue *q = &txq->q;
3862 struct pci_dev *dev = priv->pci_dev;
3863
Jeff Garzikbf794512005-07-31 13:07:26 -04003864 if (q->n_bd == 0)
3865 return;
James Ketrenos43f66a62005-03-25 12:31:53 -06003866
3867 /* first, empty all BD's */
3868 for (; q->first_empty != q->last_used;
3869 q->last_used = ipw_queue_inc_wrap(q->last_used, q->n_bd)) {
3870 ipw_queue_tx_free_tfd(priv, txq);
3871 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003872
James Ketrenos43f66a62005-03-25 12:31:53 -06003873 /* free buffers belonging to queue itself */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003874 pci_free_consistent(dev, sizeof(txq->bd[0]) * q->n_bd, txq->bd,
James Ketrenos43f66a62005-03-25 12:31:53 -06003875 q->dma_addr);
3876 kfree(txq->txb);
3877
3878 /* 0 fill whole structure */
3879 memset(txq, 0, sizeof(*txq));
3880}
3881
James Ketrenos43f66a62005-03-25 12:31:53 -06003882/**
3883 * Destroy all DMA queues and structures
Jeff Garzikbf794512005-07-31 13:07:26 -04003884 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003885 * @param priv
3886 */
3887static void ipw_tx_queue_free(struct ipw_priv *priv)
3888{
3889 /* Tx CMD queue */
3890 ipw_queue_tx_free(priv, &priv->txq_cmd);
3891
3892 /* Tx queues */
3893 ipw_queue_tx_free(priv, &priv->txq[0]);
3894 ipw_queue_tx_free(priv, &priv->txq[1]);
3895 ipw_queue_tx_free(priv, &priv->txq[2]);
3896 ipw_queue_tx_free(priv, &priv->txq[3]);
3897}
3898
Arjan van de Ven858119e2006-01-14 13:20:43 -08003899static void ipw_create_bssid(struct ipw_priv *priv, u8 * bssid)
James Ketrenos43f66a62005-03-25 12:31:53 -06003900{
3901 /* First 3 bytes are manufacturer */
3902 bssid[0] = priv->mac_addr[0];
3903 bssid[1] = priv->mac_addr[1];
3904 bssid[2] = priv->mac_addr[2];
3905
3906 /* Last bytes are random */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003907 get_random_bytes(&bssid[3], ETH_ALEN - 3);
James Ketrenos43f66a62005-03-25 12:31:53 -06003908
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003909 bssid[0] &= 0xfe; /* clear multicast bit */
3910 bssid[0] |= 0x02; /* set local assignment bit (IEEE802) */
James Ketrenos43f66a62005-03-25 12:31:53 -06003911}
3912
Arjan van de Ven858119e2006-01-14 13:20:43 -08003913static u8 ipw_add_station(struct ipw_priv *priv, u8 * bssid)
James Ketrenos43f66a62005-03-25 12:31:53 -06003914{
3915 struct ipw_station_entry entry;
3916 int i;
3917
3918 for (i = 0; i < priv->num_stations; i++) {
dingtianhong36325f32013-12-26 19:41:23 +08003919 if (ether_addr_equal(priv->stations[i], bssid)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003920 /* Another node is active in network */
3921 priv->missed_adhoc_beacons = 0;
3922 if (!(priv->config & CFG_STATIC_CHANNEL))
3923 /* when other nodes drop out, we drop out */
3924 priv->config &= ~CFG_ADHOC_PERSIST;
3925
3926 return i;
3927 }
3928 }
3929
3930 if (i == MAX_STATIONS)
3931 return IPW_INVALID_STATION;
3932
Johannes Berge1749612008-10-27 15:59:26 -07003933 IPW_DEBUG_SCAN("Adding AdHoc station: %pM\n", bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06003934
3935 entry.reserved = 0;
3936 entry.support_mode = 0;
3937 memcpy(entry.mac_addr, bssid, ETH_ALEN);
3938 memcpy(priv->stations[i], bssid, ETH_ALEN);
3939 ipw_write_direct(priv, IPW_STATION_TABLE_LOWER + i * sizeof(entry),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003940 &entry, sizeof(entry));
James Ketrenos43f66a62005-03-25 12:31:53 -06003941 priv->num_stations++;
3942
3943 return i;
3944}
3945
Arjan van de Ven858119e2006-01-14 13:20:43 -08003946static u8 ipw_find_station(struct ipw_priv *priv, u8 * bssid)
James Ketrenos43f66a62005-03-25 12:31:53 -06003947{
3948 int i;
3949
Jeff Garzikbf794512005-07-31 13:07:26 -04003950 for (i = 0; i < priv->num_stations; i++)
dingtianhong36325f32013-12-26 19:41:23 +08003951 if (ether_addr_equal(priv->stations[i], bssid))
James Ketrenos43f66a62005-03-25 12:31:53 -06003952 return i;
3953
3954 return IPW_INVALID_STATION;
3955}
3956
3957static void ipw_send_disassociate(struct ipw_priv *priv, int quiet)
3958{
3959 int err;
3960
Hong Liu7b996592005-08-25 17:36:13 +08003961 if (priv->status & STATUS_ASSOCIATING) {
3962 IPW_DEBUG_ASSOC("Disassociating while associating.\n");
Tejun Heobcb6d912011-01-26 12:12:50 +01003963 schedule_work(&priv->disassociate);
Hong Liu7b996592005-08-25 17:36:13 +08003964 return;
3965 }
3966
3967 if (!(priv->status & STATUS_ASSOCIATED)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003968 IPW_DEBUG_ASSOC("Disassociating while not associated.\n");
3969 return;
3970 }
3971
Masahiro Yamada66f00442017-02-27 14:29:42 -08003972 IPW_DEBUG_ASSOC("Disassociation attempt from %pM "
James Ketrenos43f66a62005-03-25 12:31:53 -06003973 "on channel %d.\n",
Johannes Berge1749612008-10-27 15:59:26 -07003974 priv->assoc_request.bssid,
James Ketrenos43f66a62005-03-25 12:31:53 -06003975 priv->assoc_request.channel);
3976
3977 priv->status &= ~(STATUS_ASSOCIATING | STATUS_ASSOCIATED);
3978 priv->status |= STATUS_DISASSOCIATING;
3979
3980 if (quiet)
3981 priv->assoc_request.assoc_type = HC_DISASSOC_QUIET;
3982 else
3983 priv->assoc_request.assoc_type = HC_DISASSOCIATE;
Hong Liue6324722005-09-14 21:04:15 -05003984
James Ketrenos43f66a62005-03-25 12:31:53 -06003985 err = ipw_send_associate(priv, &priv->assoc_request);
3986 if (err) {
3987 IPW_DEBUG_HC("Attempt to send [dis]associate command "
3988 "failed.\n");
3989 return;
3990 }
3991
3992}
3993
James Ketrenosc848d0a2005-08-24 21:56:24 -05003994static int ipw_disassociate(void *data)
James Ketrenos43f66a62005-03-25 12:31:53 -06003995{
James Ketrenosc848d0a2005-08-24 21:56:24 -05003996 struct ipw_priv *priv = data;
3997 if (!(priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)))
3998 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06003999 ipw_send_disassociate(data, 0);
Zhu Yib8ddafd2008-11-27 13:42:20 +08004000 netif_carrier_off(priv->net_dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05004001 return 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06004002}
4003
David Howellsc4028952006-11-22 14:57:56 +00004004static void ipw_bg_disassociate(struct work_struct *work)
James Ketrenos43f66a62005-03-25 12:31:53 -06004005{
David Howellsc4028952006-11-22 14:57:56 +00004006 struct ipw_priv *priv =
4007 container_of(work, struct ipw_priv, disassociate);
Zhu Yi46441512006-01-24 16:37:59 +08004008 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00004009 ipw_disassociate(priv);
Zhu Yi46441512006-01-24 16:37:59 +08004010 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06004011}
4012
David Howellsc4028952006-11-22 14:57:56 +00004013static void ipw_system_config(struct work_struct *work)
Zhu Yid8bad6d2005-07-13 12:25:38 -05004014{
David Howellsc4028952006-11-22 14:57:56 +00004015 struct ipw_priv *priv =
4016 container_of(work, struct ipw_priv, system_config);
Zhu Yid685b8c2006-04-13 17:20:27 +08004017
4018#ifdef CONFIG_IPW2200_PROMISCUOUS
4019 if (priv->prom_net_dev && netif_running(priv->prom_net_dev)) {
4020 priv->sys_config.accept_all_data_frames = 1;
4021 priv->sys_config.accept_non_directed_frames = 1;
4022 priv->sys_config.accept_all_mgmt_bcpr = 1;
4023 priv->sys_config.accept_all_mgmt_frames = 1;
4024 }
4025#endif
4026
4027 ipw_send_system_config(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06004028}
4029
4030struct ipw_status_code {
4031 u16 status;
4032 const char *reason;
4033};
4034
4035static const struct ipw_status_code ipw_status_codes[] = {
4036 {0x00, "Successful"},
4037 {0x01, "Unspecified failure"},
4038 {0x0A, "Cannot support all requested capabilities in the "
4039 "Capability information field"},
4040 {0x0B, "Reassociation denied due to inability to confirm that "
4041 "association exists"},
4042 {0x0C, "Association denied due to reason outside the scope of this "
4043 "standard"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004044 {0x0D,
4045 "Responding station does not support the specified authentication "
James Ketrenos43f66a62005-03-25 12:31:53 -06004046 "algorithm"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004047 {0x0E,
4048 "Received an Authentication frame with authentication sequence "
James Ketrenos43f66a62005-03-25 12:31:53 -06004049 "transaction sequence number out of expected sequence"},
4050 {0x0F, "Authentication rejected because of challenge failure"},
4051 {0x10, "Authentication rejected due to timeout waiting for next "
4052 "frame in sequence"},
4053 {0x11, "Association denied because AP is unable to handle additional "
4054 "associated stations"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004055 {0x12,
4056 "Association denied due to requesting station not supporting all "
James Ketrenos43f66a62005-03-25 12:31:53 -06004057 "of the datarates in the BSSBasicServiceSet Parameter"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004058 {0x13,
4059 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06004060 "short preamble operation"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004061 {0x14,
4062 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06004063 "PBCC encoding"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004064 {0x15,
4065 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06004066 "channel agility"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004067 {0x19,
4068 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06004069 "short slot operation"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004070 {0x1A,
4071 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06004072 "DSSS-OFDM operation"},
4073 {0x28, "Invalid Information Element"},
4074 {0x29, "Group Cipher is not valid"},
4075 {0x2A, "Pairwise Cipher is not valid"},
4076 {0x2B, "AKMP is not valid"},
4077 {0x2C, "Unsupported RSN IE version"},
4078 {0x2D, "Invalid RSN IE Capabilities"},
4079 {0x2E, "Cipher suite is rejected per security policy"},
4080};
4081
Jeff Garzikbf794512005-07-31 13:07:26 -04004082static const char *ipw_get_status_code(u16 status)
James Ketrenos43f66a62005-03-25 12:31:53 -06004083{
4084 int i;
Jeff Garzikbf794512005-07-31 13:07:26 -04004085 for (i = 0; i < ARRAY_SIZE(ipw_status_codes); i++)
James Ketrenosea2b26e2005-08-24 21:25:16 -05004086 if (ipw_status_codes[i].status == (status & 0xff))
James Ketrenos43f66a62005-03-25 12:31:53 -06004087 return ipw_status_codes[i].reason;
4088 return "Unknown status value.";
4089}
James Ketrenos43f66a62005-03-25 12:31:53 -06004090
Arnd Bergmann6f07e0f2016-06-16 15:52:10 +02004091static inline void average_init(struct average *avg)
James Ketrenos43f66a62005-03-25 12:31:53 -06004092{
4093 memset(avg, 0, sizeof(*avg));
4094}
4095
Zhu Yi00d21de2006-04-13 17:19:02 +08004096#define DEPTH_RSSI 8
4097#define DEPTH_NOISE 16
4098static s16 exponential_average(s16 prev_avg, s16 val, u8 depth)
4099{
4100 return ((depth-1)*prev_avg + val)/depth;
4101}
4102
Arjan van de Ven858119e2006-01-14 13:20:43 -08004103static void average_add(struct average *avg, s16 val)
James Ketrenos43f66a62005-03-25 12:31:53 -06004104{
4105 avg->sum -= avg->entries[avg->pos];
4106 avg->sum += val;
4107 avg->entries[avg->pos++] = val;
4108 if (unlikely(avg->pos == AVG_ENTRIES)) {
4109 avg->init = 1;
4110 avg->pos = 0;
4111 }
4112}
4113
Arjan van de Ven858119e2006-01-14 13:20:43 -08004114static s16 average_value(struct average *avg)
James Ketrenos43f66a62005-03-25 12:31:53 -06004115{
4116 if (!unlikely(avg->init)) {
4117 if (avg->pos)
4118 return avg->sum / avg->pos;
4119 return 0;
4120 }
4121
4122 return avg->sum / AVG_ENTRIES;
4123}
4124
4125static void ipw_reset_stats(struct ipw_priv *priv)
4126{
4127 u32 len = sizeof(u32);
4128
4129 priv->quality = 0;
4130
4131 average_init(&priv->average_missed_beacons);
Zhu Yi00d21de2006-04-13 17:19:02 +08004132 priv->exp_avg_rssi = -60;
4133 priv->exp_avg_noise = -85 + 0x100;
James Ketrenos43f66a62005-03-25 12:31:53 -06004134
4135 priv->last_rate = 0;
4136 priv->last_missed_beacons = 0;
4137 priv->last_rx_packets = 0;
4138 priv->last_tx_packets = 0;
4139 priv->last_tx_failures = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004140
James Ketrenos43f66a62005-03-25 12:31:53 -06004141 /* Firmware managed, reset only when NIC is restarted, so we have to
4142 * normalize on the current value */
Jeff Garzikbf794512005-07-31 13:07:26 -04004143 ipw_get_ordinal(priv, IPW_ORD_STAT_RX_ERR_CRC,
James Ketrenos43f66a62005-03-25 12:31:53 -06004144 &priv->last_rx_err, &len);
Jeff Garzikbf794512005-07-31 13:07:26 -04004145 ipw_get_ordinal(priv, IPW_ORD_STAT_TX_FAILURE,
James Ketrenos43f66a62005-03-25 12:31:53 -06004146 &priv->last_tx_failures, &len);
4147
4148 /* Driver managed, reset with each association */
4149 priv->missed_adhoc_beacons = 0;
4150 priv->missed_beacons = 0;
4151 priv->tx_packets = 0;
4152 priv->rx_packets = 0;
4153
4154}
4155
Arjan van de Ven858119e2006-01-14 13:20:43 -08004156static u32 ipw_get_max_rate(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06004157{
4158 u32 i = 0x80000000;
4159 u32 mask = priv->rates_mask;
4160 /* If currently associated in B mode, restrict the maximum
4161 * rate match to B rates */
4162 if (priv->assoc_request.ieee_mode == IPW_B_MODE)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004163 mask &= LIBIPW_CCK_RATES_MASK;
James Ketrenos43f66a62005-03-25 12:31:53 -06004164
4165 /* TODO: Verify that the rate is supported by the current rates
4166 * list. */
4167
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004168 while (i && !(mask & i))
4169 i >>= 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06004170 switch (i) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004171 case LIBIPW_CCK_RATE_1MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004172 return 1000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004173 case LIBIPW_CCK_RATE_2MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004174 return 2000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004175 case LIBIPW_CCK_RATE_5MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004176 return 5500000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004177 case LIBIPW_OFDM_RATE_6MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004178 return 6000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004179 case LIBIPW_OFDM_RATE_9MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004180 return 9000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004181 case LIBIPW_CCK_RATE_11MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004182 return 11000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004183 case LIBIPW_OFDM_RATE_12MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004184 return 12000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004185 case LIBIPW_OFDM_RATE_18MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004186 return 18000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004187 case LIBIPW_OFDM_RATE_24MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004188 return 24000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004189 case LIBIPW_OFDM_RATE_36MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004190 return 36000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004191 case LIBIPW_OFDM_RATE_48MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004192 return 48000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004193 case LIBIPW_OFDM_RATE_54MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004194 return 54000000;
James Ketrenos43f66a62005-03-25 12:31:53 -06004195 }
4196
Jeff Garzikbf794512005-07-31 13:07:26 -04004197 if (priv->ieee->mode == IEEE_B)
James Ketrenos43f66a62005-03-25 12:31:53 -06004198 return 11000000;
4199 else
4200 return 54000000;
4201}
4202
4203static u32 ipw_get_current_rate(struct ipw_priv *priv)
4204{
4205 u32 rate, len = sizeof(rate);
4206 int err;
4207
Jeff Garzikbf794512005-07-31 13:07:26 -04004208 if (!(priv->status & STATUS_ASSOCIATED))
James Ketrenos43f66a62005-03-25 12:31:53 -06004209 return 0;
4210
4211 if (priv->tx_packets > IPW_REAL_RATE_RX_PACKET_THRESHOLD) {
Jeff Garzikbf794512005-07-31 13:07:26 -04004212 err = ipw_get_ordinal(priv, IPW_ORD_STAT_TX_CURR_RATE, &rate,
James Ketrenos43f66a62005-03-25 12:31:53 -06004213 &len);
4214 if (err) {
4215 IPW_DEBUG_INFO("failed querying ordinals.\n");
4216 return 0;
4217 }
Jeff Garzikbf794512005-07-31 13:07:26 -04004218 } else
James Ketrenos43f66a62005-03-25 12:31:53 -06004219 return ipw_get_max_rate(priv);
4220
4221 switch (rate) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05004222 case IPW_TX_RATE_1MB:
4223 return 1000000;
4224 case IPW_TX_RATE_2MB:
4225 return 2000000;
4226 case IPW_TX_RATE_5MB:
4227 return 5500000;
4228 case IPW_TX_RATE_6MB:
4229 return 6000000;
4230 case IPW_TX_RATE_9MB:
4231 return 9000000;
4232 case IPW_TX_RATE_11MB:
4233 return 11000000;
4234 case IPW_TX_RATE_12MB:
4235 return 12000000;
4236 case IPW_TX_RATE_18MB:
4237 return 18000000;
4238 case IPW_TX_RATE_24MB:
4239 return 24000000;
4240 case IPW_TX_RATE_36MB:
4241 return 36000000;
4242 case IPW_TX_RATE_48MB:
4243 return 48000000;
4244 case IPW_TX_RATE_54MB:
4245 return 54000000;
James Ketrenos43f66a62005-03-25 12:31:53 -06004246 }
4247
4248 return 0;
4249}
4250
James Ketrenos43f66a62005-03-25 12:31:53 -06004251#define IPW_STATS_INTERVAL (2 * HZ)
4252static void ipw_gather_stats(struct ipw_priv *priv)
4253{
4254 u32 rx_err, rx_err_delta, rx_packets_delta;
4255 u32 tx_failures, tx_failures_delta, tx_packets_delta;
4256 u32 missed_beacons_percent, missed_beacons_delta;
4257 u32 quality = 0;
4258 u32 len = sizeof(u32);
4259 s16 rssi;
Jeff Garzikbf794512005-07-31 13:07:26 -04004260 u32 beacon_quality, signal_quality, tx_quality, rx_quality,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004261 rate_quality;
James Ketrenosea2b26e2005-08-24 21:25:16 -05004262 u32 max_rate;
James Ketrenos43f66a62005-03-25 12:31:53 -06004263
4264 if (!(priv->status & STATUS_ASSOCIATED)) {
4265 priv->quality = 0;
4266 return;
4267 }
4268
4269 /* Update the statistics */
Jeff Garzikbf794512005-07-31 13:07:26 -04004270 ipw_get_ordinal(priv, IPW_ORD_STAT_MISSED_BEACONS,
James Ketrenos43f66a62005-03-25 12:31:53 -06004271 &priv->missed_beacons, &len);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004272 missed_beacons_delta = priv->missed_beacons - priv->last_missed_beacons;
James Ketrenos43f66a62005-03-25 12:31:53 -06004273 priv->last_missed_beacons = priv->missed_beacons;
4274 if (priv->assoc_request.beacon_interval) {
4275 missed_beacons_percent = missed_beacons_delta *
Al Viro5b5e8072007-12-27 01:54:06 -05004276 (HZ * le16_to_cpu(priv->assoc_request.beacon_interval)) /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004277 (IPW_STATS_INTERVAL * 10);
James Ketrenos43f66a62005-03-25 12:31:53 -06004278 } else {
4279 missed_beacons_percent = 0;
4280 }
4281 average_add(&priv->average_missed_beacons, missed_beacons_percent);
4282
4283 ipw_get_ordinal(priv, IPW_ORD_STAT_RX_ERR_CRC, &rx_err, &len);
4284 rx_err_delta = rx_err - priv->last_rx_err;
4285 priv->last_rx_err = rx_err;
4286
4287 ipw_get_ordinal(priv, IPW_ORD_STAT_TX_FAILURE, &tx_failures, &len);
4288 tx_failures_delta = tx_failures - priv->last_tx_failures;
4289 priv->last_tx_failures = tx_failures;
4290
4291 rx_packets_delta = priv->rx_packets - priv->last_rx_packets;
4292 priv->last_rx_packets = priv->rx_packets;
4293
4294 tx_packets_delta = priv->tx_packets - priv->last_tx_packets;
4295 priv->last_tx_packets = priv->tx_packets;
4296
4297 /* Calculate quality based on the following:
Jeff Garzikbf794512005-07-31 13:07:26 -04004298 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004299 * Missed beacon: 100% = 0, 0% = 70% missed
4300 * Rate: 60% = 1Mbs, 100% = Max
4301 * Rx and Tx errors represent a straight % of total Rx/Tx
4302 * RSSI: 100% = > -50, 0% = < -80
4303 * Rx errors: 100% = 0, 0% = 50% missed
Jeff Garzikbf794512005-07-31 13:07:26 -04004304 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004305 * The lowest computed quality is used.
4306 *
4307 */
4308#define BEACON_THRESHOLD 5
4309 beacon_quality = 100 - missed_beacons_percent;
4310 if (beacon_quality < BEACON_THRESHOLD)
4311 beacon_quality = 0;
4312 else
Jeff Garzikbf794512005-07-31 13:07:26 -04004313 beacon_quality = (beacon_quality - BEACON_THRESHOLD) * 100 /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004314 (100 - BEACON_THRESHOLD);
Jeff Garzikbf794512005-07-31 13:07:26 -04004315 IPW_DEBUG_STATS("Missed beacon: %3d%% (%d%%)\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06004316 beacon_quality, missed_beacons_percent);
Jeff Garzikbf794512005-07-31 13:07:26 -04004317
James Ketrenos43f66a62005-03-25 12:31:53 -06004318 priv->last_rate = ipw_get_current_rate(priv);
James Ketrenosea2b26e2005-08-24 21:25:16 -05004319 max_rate = ipw_get_max_rate(priv);
4320 rate_quality = priv->last_rate * 40 / max_rate + 60;
James Ketrenos43f66a62005-03-25 12:31:53 -06004321 IPW_DEBUG_STATS("Rate quality : %3d%% (%dMbs)\n",
4322 rate_quality, priv->last_rate / 1000000);
Jeff Garzikbf794512005-07-31 13:07:26 -04004323
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004324 if (rx_packets_delta > 100 && rx_packets_delta + rx_err_delta)
Jeff Garzikbf794512005-07-31 13:07:26 -04004325 rx_quality = 100 - (rx_err_delta * 100) /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004326 (rx_packets_delta + rx_err_delta);
James Ketrenos43f66a62005-03-25 12:31:53 -06004327 else
4328 rx_quality = 100;
4329 IPW_DEBUG_STATS("Rx quality : %3d%% (%u errors, %u packets)\n",
4330 rx_quality, rx_err_delta, rx_packets_delta);
Jeff Garzikbf794512005-07-31 13:07:26 -04004331
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004332 if (tx_packets_delta > 100 && tx_packets_delta + tx_failures_delta)
Jeff Garzikbf794512005-07-31 13:07:26 -04004333 tx_quality = 100 - (tx_failures_delta * 100) /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004334 (tx_packets_delta + tx_failures_delta);
James Ketrenos43f66a62005-03-25 12:31:53 -06004335 else
4336 tx_quality = 100;
4337 IPW_DEBUG_STATS("Tx quality : %3d%% (%u errors, %u packets)\n",
4338 tx_quality, tx_failures_delta, tx_packets_delta);
Jeff Garzikbf794512005-07-31 13:07:26 -04004339
Zhu Yi00d21de2006-04-13 17:19:02 +08004340 rssi = priv->exp_avg_rssi;
James Ketrenosc848d0a2005-08-24 21:56:24 -05004341 signal_quality =
4342 (100 *
4343 (priv->ieee->perfect_rssi - priv->ieee->worst_rssi) *
4344 (priv->ieee->perfect_rssi - priv->ieee->worst_rssi) -
4345 (priv->ieee->perfect_rssi - rssi) *
4346 (15 * (priv->ieee->perfect_rssi - priv->ieee->worst_rssi) +
4347 62 * (priv->ieee->perfect_rssi - rssi))) /
4348 ((priv->ieee->perfect_rssi - priv->ieee->worst_rssi) *
4349 (priv->ieee->perfect_rssi - priv->ieee->worst_rssi));
4350 if (signal_quality > 100)
James Ketrenos43f66a62005-03-25 12:31:53 -06004351 signal_quality = 100;
James Ketrenosc848d0a2005-08-24 21:56:24 -05004352 else if (signal_quality < 1)
James Ketrenos43f66a62005-03-25 12:31:53 -06004353 signal_quality = 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05004354
Zhu Yi61fb9ed2006-04-13 17:19:55 +08004355 IPW_DEBUG_STATS("Signal level : %3d%% (%d dBm)\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06004356 signal_quality, rssi);
Jeff Garzikbf794512005-07-31 13:07:26 -04004357
Reinette Chatre21f8a732009-08-18 10:25:05 -07004358 quality = min(rx_quality, signal_quality);
4359 quality = min(tx_quality, quality);
4360 quality = min(rate_quality, quality);
4361 quality = min(beacon_quality, quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004362 if (quality == beacon_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004363 IPW_DEBUG_STATS("Quality (%d%%): Clamped to missed beacons.\n",
4364 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004365 if (quality == rate_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004366 IPW_DEBUG_STATS("Quality (%d%%): Clamped to rate quality.\n",
4367 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004368 if (quality == tx_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004369 IPW_DEBUG_STATS("Quality (%d%%): Clamped to Tx quality.\n",
4370 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004371 if (quality == rx_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004372 IPW_DEBUG_STATS("Quality (%d%%): Clamped to Rx quality.\n",
4373 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004374 if (quality == signal_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004375 IPW_DEBUG_STATS("Quality (%d%%): Clamped to signal quality.\n",
4376 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004377
4378 priv->quality = quality;
Jeff Garzikbf794512005-07-31 13:07:26 -04004379
Tejun Heobcb6d912011-01-26 12:12:50 +01004380 schedule_delayed_work(&priv->gather_stats, IPW_STATS_INTERVAL);
James Ketrenos43f66a62005-03-25 12:31:53 -06004381}
4382
David Howellsc4028952006-11-22 14:57:56 +00004383static void ipw_bg_gather_stats(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -05004384{
David Howellsc4028952006-11-22 14:57:56 +00004385 struct ipw_priv *priv =
4386 container_of(work, struct ipw_priv, gather_stats.work);
Zhu Yi46441512006-01-24 16:37:59 +08004387 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00004388 ipw_gather_stats(priv);
Zhu Yi46441512006-01-24 16:37:59 +08004389 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05004390}
4391
Ben Cahille7582562005-10-06 15:34:41 -05004392/* Missed beacon behavior:
4393 * 1st missed -> roaming_threshold, just wait, don't do any scan/roam.
4394 * roaming_threshold -> disassociate_threshold, scan and roam for better signal.
4395 * Above disassociate threshold, give up and stop scanning.
4396 * Roaming is disabled if disassociate_threshold <= roaming_threshold */
Arjan van de Ven858119e2006-01-14 13:20:43 -08004397static void ipw_handle_missed_beacon(struct ipw_priv *priv,
James Ketrenosea2b26e2005-08-24 21:25:16 -05004398 int missed_count)
4399{
4400 priv->notif_missed_beacons = missed_count;
4401
James Ketrenosafbf30a2005-08-25 00:05:33 -05004402 if (missed_count > priv->disassociate_threshold &&
James Ketrenosea2b26e2005-08-24 21:25:16 -05004403 priv->status & STATUS_ASSOCIATED) {
4404 /* If associated and we've hit the missed
4405 * beacon threshold, disassociate, turn
4406 * off roaming, and abort any active scans */
4407 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF |
James Ketrenosafbf30a2005-08-25 00:05:33 -05004408 IPW_DL_STATE | IPW_DL_ASSOC,
James Ketrenosea2b26e2005-08-24 21:25:16 -05004409 "Missed beacon: %d - disassociate\n", missed_count);
4410 priv->status &= ~STATUS_ROAMING;
James Ketrenosa613bff2005-08-24 21:43:11 -05004411 if (priv->status & STATUS_SCANNING) {
4412 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF |
4413 IPW_DL_STATE,
4414 "Aborting scan with missed beacon.\n");
Tejun Heobcb6d912011-01-26 12:12:50 +01004415 schedule_work(&priv->abort_scan);
James Ketrenosa613bff2005-08-24 21:43:11 -05004416 }
4417
Tejun Heobcb6d912011-01-26 12:12:50 +01004418 schedule_work(&priv->disassociate);
James Ketrenosea2b26e2005-08-24 21:25:16 -05004419 return;
4420 }
4421
4422 if (priv->status & STATUS_ROAMING) {
4423 /* If we are currently roaming, then just
4424 * print a debug statement... */
4425 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
4426 "Missed beacon: %d - roam in progress\n",
4427 missed_count);
4428 return;
4429 }
4430
Zhu Yi4bfdb912006-01-24 16:37:16 +08004431 if (roaming &&
4432 (missed_count > priv->roaming_threshold &&
4433 missed_count <= priv->disassociate_threshold)) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05004434 /* If we are not already roaming, set the ROAM
Ben Cahille7582562005-10-06 15:34:41 -05004435 * bit in the status and kick off a scan.
4436 * This can happen several times before we reach
4437 * disassociate_threshold. */
James Ketrenosea2b26e2005-08-24 21:25:16 -05004438 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
4439 "Missed beacon: %d - initiate "
4440 "roaming\n", missed_count);
4441 if (!(priv->status & STATUS_ROAMING)) {
4442 priv->status |= STATUS_ROAMING;
4443 if (!(priv->status & STATUS_SCANNING))
Tejun Heobcb6d912011-01-26 12:12:50 +01004444 schedule_delayed_work(&priv->request_scan, 0);
James Ketrenosea2b26e2005-08-24 21:25:16 -05004445 }
4446 return;
4447 }
4448
Helmut Schaa14a4dfe2008-12-10 13:17:26 +01004449 if (priv->status & STATUS_SCANNING &&
4450 missed_count > IPW_MB_SCAN_CANCEL_THRESHOLD) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05004451 /* Stop scan to keep fw from getting
4452 * stuck (only if we aren't roaming --
4453 * otherwise we'll never scan more than 2 or 3
4454 * channels..) */
James Ketrenosb095c382005-08-24 22:04:42 -05004455 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF | IPW_DL_STATE,
4456 "Aborting scan with missed beacon.\n");
Tejun Heobcb6d912011-01-26 12:12:50 +01004457 schedule_work(&priv->abort_scan);
James Ketrenosea2b26e2005-08-24 21:25:16 -05004458 }
4459
4460 IPW_DEBUG_NOTIF("Missed beacon: %d\n", missed_count);
James Ketrenosea2b26e2005-08-24 21:25:16 -05004461}
4462
Dan Williams0b531672007-10-09 13:55:24 -04004463static void ipw_scan_event(struct work_struct *work)
4464{
4465 union iwreq_data wrqu;
4466
4467 struct ipw_priv *priv =
4468 container_of(work, struct ipw_priv, scan_event.work);
4469
4470 wrqu.data.length = 0;
4471 wrqu.data.flags = 0;
4472 wireless_send_event(priv->net_dev, SIOCGIWSCAN, &wrqu, NULL);
4473}
4474
4475static void handle_scan_event(struct ipw_priv *priv)
4476{
4477 /* Only userspace-requested scan completion events go out immediately */
4478 if (!priv->user_requested_scan) {
Tejun Heo7c99e0b2012-12-21 17:56:54 -08004479 schedule_delayed_work(&priv->scan_event,
4480 round_jiffies_relative(msecs_to_jiffies(4000)));
Dan Williams0b531672007-10-09 13:55:24 -04004481 } else {
Dan Williams0b531672007-10-09 13:55:24 -04004482 priv->user_requested_scan = 0;
Tejun Heo7c99e0b2012-12-21 17:56:54 -08004483 mod_delayed_work(system_wq, &priv->scan_event, 0);
Dan Williams0b531672007-10-09 13:55:24 -04004484 }
4485}
4486
James Ketrenos43f66a62005-03-25 12:31:53 -06004487/**
4488 * Handle host notification packet.
4489 * Called from interrupt routine
4490 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08004491static void ipw_rx_notification(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06004492 struct ipw_rx_notification *notif)
4493{
Al Viroe62e1ee2007-12-27 01:36:46 -05004494 u16 size = le16_to_cpu(notif->size);
James Ketrenosa613bff2005-08-24 21:43:11 -05004495
Al Viroe62e1ee2007-12-27 01:36:46 -05004496 IPW_DEBUG_NOTIF("type = %i (%d bytes)\n", notif->subtype, size);
Jeff Garzikbf794512005-07-31 13:07:26 -04004497
James Ketrenos43f66a62005-03-25 12:31:53 -06004498 switch (notif->subtype) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004499 case HOST_NOTIFICATION_STATUS_ASSOCIATED:{
4500 struct notif_association *assoc = &notif->u.assoc;
Jeff Garzikbf794512005-07-31 13:07:26 -04004501
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004502 switch (assoc->state) {
4503 case CMAS_ASSOCIATED:{
4504 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4505 IPW_DL_ASSOC,
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07004506 "associated: '%*pE' %pM\n",
4507 priv->essid_len, priv->essid,
Johannes Berge1749612008-10-27 15:59:26 -07004508 priv->bssid);
Jeff Garzikbf794512005-07-31 13:07:26 -04004509
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004510 switch (priv->ieee->iw_mode) {
4511 case IW_MODE_INFRA:
4512 memcpy(priv->ieee->bssid,
4513 priv->bssid, ETH_ALEN);
4514 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06004515
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004516 case IW_MODE_ADHOC:
4517 memcpy(priv->ieee->bssid,
4518 priv->bssid, ETH_ALEN);
Jeff Garzikbf794512005-07-31 13:07:26 -04004519
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004520 /* clear out the station table */
4521 priv->num_stations = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06004522
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004523 IPW_DEBUG_ASSOC
4524 ("queueing adhoc check\n");
Tejun Heobcb6d912011-01-26 12:12:50 +01004525 schedule_delayed_work(
4526 &priv->adhoc_check,
4527 le16_to_cpu(priv->
4528 assoc_request.
4529 beacon_interval));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004530 break;
4531 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004532
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004533 priv->status &= ~STATUS_ASSOCIATING;
4534 priv->status |= STATUS_ASSOCIATED;
Tejun Heobcb6d912011-01-26 12:12:50 +01004535 schedule_work(&priv->system_config);
James Ketrenos43f66a62005-03-25 12:31:53 -06004536
Zhu Yie43e3c12006-04-13 17:20:45 +08004537#ifdef CONFIG_IPW2200_QOS
James Ketrenosafbf30a2005-08-25 00:05:33 -05004538#define IPW_GET_PACKET_STYPE(x) WLAN_FC_GET_STYPE( \
John W. Linville72118012008-09-30 21:43:03 -04004539 le16_to_cpu(((struct ieee80211_hdr *)(x))->frame_control))
James Ketrenosafbf30a2005-08-25 00:05:33 -05004540 if ((priv->status & STATUS_AUTH) &&
4541 (IPW_GET_PACKET_STYPE(&notif->u.raw)
4542 == IEEE80211_STYPE_ASSOC_RESP)) {
James Ketrenosb095c382005-08-24 22:04:42 -05004543 if ((sizeof
4544 (struct
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004545 libipw_assoc_response)
Al Viroe62e1ee2007-12-27 01:36:46 -05004546 <= size)
4547 && (size <= 2314)) {
James Ketrenosb095c382005-08-24 22:04:42 -05004548 struct
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004549 libipw_rx_stats
James Ketrenosb095c382005-08-24 22:04:42 -05004550 stats = {
Al Viroe62e1ee2007-12-27 01:36:46 -05004551 .len = size - 1,
James Ketrenosb095c382005-08-24 22:04:42 -05004552 };
4553
4554 IPW_DEBUG_QOS
4555 ("QoS Associate "
Al Viroe62e1ee2007-12-27 01:36:46 -05004556 "size %d\n", size);
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004557 libipw_rx_mgt(priv->
James Ketrenosb095c382005-08-24 22:04:42 -05004558 ieee,
4559 (struct
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004560 libipw_hdr_4addr
James Ketrenosb095c382005-08-24 22:04:42 -05004561 *)
4562 &notif->u.raw, &stats);
4563 }
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004564 }
James Ketrenosb095c382005-08-24 22:04:42 -05004565#endif
James Ketrenos43f66a62005-03-25 12:31:53 -06004566
James Ketrenosa613bff2005-08-24 21:43:11 -05004567 schedule_work(&priv->link_up);
James Ketrenos43f66a62005-03-25 12:31:53 -06004568
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004569 break;
4570 }
4571
4572 case CMAS_AUTHENTICATED:{
4573 if (priv->
4574 status & (STATUS_ASSOCIATED |
4575 STATUS_AUTH)) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004576 struct notif_authenticate *auth
4577 = &notif->u.auth;
4578 IPW_DEBUG(IPW_DL_NOTIF |
4579 IPW_DL_STATE |
4580 IPW_DL_ASSOC,
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07004581 "deauthenticated: '%*pE' %pM: (0x%04X) - %s\n",
4582 priv->essid_len,
4583 priv->essid,
Johannes Berge1749612008-10-27 15:59:26 -07004584 priv->bssid,
Al Viro83f7d572008-03-16 22:26:44 +00004585 le16_to_cpu(auth->status),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004586 ipw_get_status_code
Al Viro83f7d572008-03-16 22:26:44 +00004587 (le16_to_cpu
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004588 (auth->status)));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004589
4590 priv->status &=
4591 ~(STATUS_ASSOCIATING |
4592 STATUS_AUTH |
4593 STATUS_ASSOCIATED);
4594
James Ketrenosa613bff2005-08-24 21:43:11 -05004595 schedule_work(&priv->link_down);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004596 break;
4597 }
4598
4599 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4600 IPW_DL_ASSOC,
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07004601 "authenticated: '%*pE' %pM\n",
4602 priv->essid_len, priv->essid,
Johannes Berge1749612008-10-27 15:59:26 -07004603 priv->bssid);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004604 break;
4605 }
4606
4607 case CMAS_INIT:{
James Ketrenosea2b26e2005-08-24 21:25:16 -05004608 if (priv->status & STATUS_AUTH) {
4609 struct
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004610 libipw_assoc_response
James Ketrenosea2b26e2005-08-24 21:25:16 -05004611 *resp;
4612 resp =
4613 (struct
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004614 libipw_assoc_response
James Ketrenosea2b26e2005-08-24 21:25:16 -05004615 *)&notif->u.raw;
4616 IPW_DEBUG(IPW_DL_NOTIF |
4617 IPW_DL_STATE |
4618 IPW_DL_ASSOC,
4619 "association failed (0x%04X): %s\n",
Al Viro83f7d572008-03-16 22:26:44 +00004620 le16_to_cpu(resp->status),
James Ketrenosea2b26e2005-08-24 21:25:16 -05004621 ipw_get_status_code
Al Viro83f7d572008-03-16 22:26:44 +00004622 (le16_to_cpu
James Ketrenosea2b26e2005-08-24 21:25:16 -05004623 (resp->status)));
4624 }
4625
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004626 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4627 IPW_DL_ASSOC,
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07004628 "disassociated: '%*pE' %pM\n",
4629 priv->essid_len, priv->essid,
Johannes Berge1749612008-10-27 15:59:26 -07004630 priv->bssid);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004631
4632 priv->status &=
4633 ~(STATUS_DISASSOCIATING |
4634 STATUS_ASSOCIATING |
4635 STATUS_ASSOCIATED | STATUS_AUTH);
James Ketrenosb095c382005-08-24 22:04:42 -05004636 if (priv->assoc_network
4637 && (priv->assoc_network->
4638 capability &
4639 WLAN_CAPABILITY_IBSS))
4640 ipw_remove_current_network
4641 (priv);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004642
James Ketrenosa613bff2005-08-24 21:43:11 -05004643 schedule_work(&priv->link_down);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004644
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004645 break;
4646 }
4647
James Ketrenosb095c382005-08-24 22:04:42 -05004648 case CMAS_RX_ASSOC_RESP:
4649 break;
4650
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004651 default:
4652 IPW_ERROR("assoc: unknown (%d)\n",
4653 assoc->state);
4654 break;
4655 }
4656
James Ketrenos43f66a62005-03-25 12:31:53 -06004657 break;
4658 }
Jeff Garzikbf794512005-07-31 13:07:26 -04004659
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004660 case HOST_NOTIFICATION_STATUS_AUTHENTICATE:{
4661 struct notif_authenticate *auth = &notif->u.auth;
4662 switch (auth->state) {
4663 case CMAS_AUTHENTICATED:
4664 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07004665 "authenticated: '%*pE' %pM\n",
4666 priv->essid_len, priv->essid,
Johannes Berge1749612008-10-27 15:59:26 -07004667 priv->bssid);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004668 priv->status |= STATUS_AUTH;
4669 break;
4670
4671 case CMAS_INIT:
4672 if (priv->status & STATUS_AUTH) {
4673 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4674 IPW_DL_ASSOC,
4675 "authentication failed (0x%04X): %s\n",
Al Viro83f7d572008-03-16 22:26:44 +00004676 le16_to_cpu(auth->status),
4677 ipw_get_status_code(le16_to_cpu
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004678 (auth->
4679 status)));
4680 }
4681 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4682 IPW_DL_ASSOC,
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07004683 "deauthenticated: '%*pE' %pM\n",
4684 priv->essid_len, priv->essid,
Johannes Berge1749612008-10-27 15:59:26 -07004685 priv->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06004686
4687 priv->status &= ~(STATUS_ASSOCIATING |
4688 STATUS_AUTH |
4689 STATUS_ASSOCIATED);
4690
James Ketrenosa613bff2005-08-24 21:43:11 -05004691 schedule_work(&priv->link_down);
James Ketrenos43f66a62005-03-25 12:31:53 -06004692 break;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004693
4694 case CMAS_TX_AUTH_SEQ_1:
4695 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4696 IPW_DL_ASSOC, "AUTH_SEQ_1\n");
4697 break;
4698 case CMAS_RX_AUTH_SEQ_2:
4699 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4700 IPW_DL_ASSOC, "AUTH_SEQ_2\n");
4701 break;
4702 case CMAS_AUTH_SEQ_1_PASS:
4703 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4704 IPW_DL_ASSOC, "AUTH_SEQ_1_PASS\n");
4705 break;
4706 case CMAS_AUTH_SEQ_1_FAIL:
4707 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4708 IPW_DL_ASSOC, "AUTH_SEQ_1_FAIL\n");
4709 break;
4710 case CMAS_TX_AUTH_SEQ_3:
4711 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4712 IPW_DL_ASSOC, "AUTH_SEQ_3\n");
4713 break;
4714 case CMAS_RX_AUTH_SEQ_4:
4715 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4716 IPW_DL_ASSOC, "RX_AUTH_SEQ_4\n");
4717 break;
4718 case CMAS_AUTH_SEQ_2_PASS:
4719 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4720 IPW_DL_ASSOC, "AUTH_SEQ_2_PASS\n");
4721 break;
4722 case CMAS_AUTH_SEQ_2_FAIL:
4723 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4724 IPW_DL_ASSOC, "AUT_SEQ_2_FAIL\n");
4725 break;
4726 case CMAS_TX_ASSOC:
4727 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4728 IPW_DL_ASSOC, "TX_ASSOC\n");
4729 break;
4730 case CMAS_RX_ASSOC_RESP:
4731 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4732 IPW_DL_ASSOC, "RX_ASSOC_RESP\n");
James Ketrenosb095c382005-08-24 22:04:42 -05004733
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004734 break;
4735 case CMAS_ASSOCIATED:
4736 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4737 IPW_DL_ASSOC, "ASSOCIATED\n");
4738 break;
4739 default:
4740 IPW_DEBUG_NOTIF("auth: failure - %d\n",
4741 auth->state);
4742 break;
4743 }
4744 break;
4745 }
4746
4747 case HOST_NOTIFICATION_STATUS_SCAN_CHANNEL_RESULT:{
4748 struct notif_channel_result *x =
4749 &notif->u.channel_result;
4750
Al Viroe62e1ee2007-12-27 01:36:46 -05004751 if (size == sizeof(*x)) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004752 IPW_DEBUG_SCAN("Scan result for channel %d\n",
4753 x->channel_num);
4754 } else {
4755 IPW_DEBUG_SCAN("Scan result of wrong size %d "
4756 "(should be %zd)\n",
Al Viroe62e1ee2007-12-27 01:36:46 -05004757 size, sizeof(*x));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004758 }
4759 break;
4760 }
4761
4762 case HOST_NOTIFICATION_STATUS_SCAN_COMPLETED:{
4763 struct notif_scan_complete *x = &notif->u.scan_complete;
Al Viroe62e1ee2007-12-27 01:36:46 -05004764 if (size == sizeof(*x)) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004765 IPW_DEBUG_SCAN
4766 ("Scan completed: type %d, %d channels, "
4767 "%d status\n", x->scan_type,
4768 x->num_channels, x->status);
4769 } else {
4770 IPW_ERROR("Scan completed of wrong size %d "
4771 "(should be %zd)\n",
Al Viroe62e1ee2007-12-27 01:36:46 -05004772 size, sizeof(*x));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004773 }
4774
4775 priv->status &=
4776 ~(STATUS_SCANNING | STATUS_SCAN_ABORTING);
4777
James Ketrenosa0e04ab2005-08-25 00:49:43 -05004778 wake_up_interruptible(&priv->wait_state);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004779 cancel_delayed_work(&priv->scan_check);
4780
James Ketrenosb095c382005-08-24 22:04:42 -05004781 if (priv->status & STATUS_EXIT_PENDING)
4782 break;
4783
4784 priv->ieee->scans++;
4785
4786#ifdef CONFIG_IPW2200_MONITOR
4787 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05004788 priv->status |= STATUS_SCAN_FORCED;
Tejun Heobcb6d912011-01-26 12:12:50 +01004789 schedule_delayed_work(&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 */
Tejun Heobcb6d912011-01-26 12:12:50 +01004796 if (priv->status & STATUS_DIRECT_SCAN_PENDING)
4797 schedule_delayed_work(&priv->request_direct_scan, 0);
Dan Williamsea177302008-06-02 17:51:23 -04004798
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004799 if (!(priv->status & (STATUS_ASSOCIATED |
4800 STATUS_ASSOCIATING |
4801 STATUS_ROAMING |
4802 STATUS_DISASSOCIATING)))
Tejun Heobcb6d912011-01-26 12:12:50 +01004803 schedule_work(&priv->associate);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004804 else if (priv->status & STATUS_ROAMING) {
Ben Cahille7582562005-10-06 15:34:41 -05004805 if (x->status == SCAN_COMPLETED_STATUS_COMPLETE)
4806 /* If a scan completed and we are in roam mode, then
4807 * the scan that completed was the one requested as a
4808 * result of entering roam... so, schedule the
4809 * roam work */
Tejun Heobcb6d912011-01-26 12:12:50 +01004810 schedule_work(&priv->roam);
Ben Cahille7582562005-10-06 15:34:41 -05004811 else
4812 /* Don't schedule if we aborted the scan */
4813 priv->status &= ~STATUS_ROAMING;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004814 } else if (priv->status & STATUS_SCAN_PENDING)
Tejun Heobcb6d912011-01-26 12:12:50 +01004815 schedule_delayed_work(&priv->request_scan, 0);
James Ketrenosa613bff2005-08-24 21:43:11 -05004816 else if (priv->config & CFG_BACKGROUND_SCAN
4817 && priv->status & STATUS_ASSOCIATED)
Tejun Heobcb6d912011-01-26 12:12:50 +01004818 schedule_delayed_work(&priv->request_scan,
4819 round_jiffies_relative(HZ));
Zhu Yi07f02e42006-04-13 17:19:25 +08004820
4821 /* Send an empty event to user space.
4822 * We don't send the received data on the event because
4823 * it would require us to do complex transcoding, and
4824 * we want to minimise the work done in the irq handler
4825 * Use a request to extract the data.
4826 * Also, we generate this even for any scan, regardless
4827 * on how the scan was initiated. User space can just
4828 * sync on periodic scan to get fresh data...
4829 * Jean II */
Dan Williams0b531672007-10-09 13:55:24 -04004830 if (x->status == SCAN_COMPLETED_STATUS_COMPLETE)
4831 handle_scan_event(priv);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004832 break;
4833 }
4834
4835 case HOST_NOTIFICATION_STATUS_FRAG_LENGTH:{
4836 struct notif_frag_length *x = &notif->u.frag_len;
4837
Al Viroe62e1ee2007-12-27 01:36:46 -05004838 if (size == sizeof(*x))
James Ketrenosa613bff2005-08-24 21:43:11 -05004839 IPW_ERROR("Frag length: %d\n",
4840 le16_to_cpu(x->frag_length));
4841 else
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004842 IPW_ERROR("Frag length of wrong size %d "
4843 "(should be %zd)\n",
Al Viroe62e1ee2007-12-27 01:36:46 -05004844 size, sizeof(*x));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004845 break;
4846 }
4847
4848 case HOST_NOTIFICATION_STATUS_LINK_DETERIORATION:{
4849 struct notif_link_deterioration *x =
4850 &notif->u.link_deterioration;
James Ketrenosafbf30a2005-08-25 00:05:33 -05004851
Al Viroe62e1ee2007-12-27 01:36:46 -05004852 if (size == sizeof(*x)) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004853 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
Cahill, Ben M12977152006-03-08 02:58:02 +08004854 "link deterioration: type %d, cnt %d\n",
4855 x->silence_notification_type,
4856 x->silence_count);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004857 memcpy(&priv->last_link_deterioration, x,
4858 sizeof(*x));
4859 } else {
4860 IPW_ERROR("Link Deterioration of wrong size %d "
4861 "(should be %zd)\n",
Al Viroe62e1ee2007-12-27 01:36:46 -05004862 size, sizeof(*x));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004863 }
4864 break;
4865 }
4866
4867 case HOST_NOTIFICATION_DINO_CONFIG_RESPONSE:{
4868 IPW_ERROR("Dino config\n");
4869 if (priv->hcmd
James Ketrenosa613bff2005-08-24 21:43:11 -05004870 && priv->hcmd->cmd != HOST_CMD_DINO_CONFIG)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004871 IPW_ERROR("Unexpected DINO_CONFIG_RESPONSE\n");
James Ketrenosa613bff2005-08-24 21:43:11 -05004872
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004873 break;
4874 }
4875
4876 case HOST_NOTIFICATION_STATUS_BEACON_STATE:{
4877 struct notif_beacon_state *x = &notif->u.beacon_state;
Al Viroe62e1ee2007-12-27 01:36:46 -05004878 if (size != sizeof(*x)) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004879 IPW_ERROR
4880 ("Beacon state of wrong size %d (should "
Al Viroe62e1ee2007-12-27 01:36:46 -05004881 "be %zd)\n", size, sizeof(*x));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004882 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04004883 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004884
James Ketrenosa613bff2005-08-24 21:43:11 -05004885 if (le32_to_cpu(x->state) ==
4886 HOST_NOTIFICATION_STATUS_BEACON_MISSING)
4887 ipw_handle_missed_beacon(priv,
4888 le32_to_cpu(x->
4889 number));
Jeff Garzikbf794512005-07-31 13:07:26 -04004890
James Ketrenos43f66a62005-03-25 12:31:53 -06004891 break;
4892 }
Jeff Garzikbf794512005-07-31 13:07:26 -04004893
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004894 case HOST_NOTIFICATION_STATUS_TGI_TX_KEY:{
4895 struct notif_tgi_tx_key *x = &notif->u.tgi_tx_key;
Al Viroe62e1ee2007-12-27 01:36:46 -05004896 if (size == sizeof(*x)) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004897 IPW_ERROR("TGi Tx Key: state 0x%02x sec type "
4898 "0x%02x station %d\n",
4899 x->key_state, x->security_type,
4900 x->station_index);
4901 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06004902 }
4903
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004904 IPW_ERROR
4905 ("TGi Tx Key of wrong size %d (should be %zd)\n",
Al Viroe62e1ee2007-12-27 01:36:46 -05004906 size, sizeof(*x));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004907 break;
4908 }
4909
4910 case HOST_NOTIFICATION_CALIB_KEEP_RESULTS:{
4911 struct notif_calibration *x = &notif->u.calibration;
4912
Al Viroe62e1ee2007-12-27 01:36:46 -05004913 if (size == sizeof(*x)) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004914 memcpy(&priv->calib, x, sizeof(*x));
4915 IPW_DEBUG_INFO("TODO: Calibration\n");
4916 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06004917 }
4918
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004919 IPW_ERROR
4920 ("Calibration of wrong size %d (should be %zd)\n",
Al Viroe62e1ee2007-12-27 01:36:46 -05004921 size, sizeof(*x));
James Ketrenos43f66a62005-03-25 12:31:53 -06004922 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04004923 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004924
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004925 case HOST_NOTIFICATION_NOISE_STATS:{
Al Viroe62e1ee2007-12-27 01:36:46 -05004926 if (size == sizeof(u32)) {
Zhu Yi00d21de2006-04-13 17:19:02 +08004927 priv->exp_avg_noise =
4928 exponential_average(priv->exp_avg_noise,
4929 (u8) (le32_to_cpu(notif->u.noise.value) & 0xff),
4930 DEPTH_NOISE);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004931 break;
4932 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004933
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004934 IPW_ERROR
4935 ("Noise stat is wrong size %d (should be %zd)\n",
Al Viroe62e1ee2007-12-27 01:36:46 -05004936 size, sizeof(u32));
James Ketrenos43f66a62005-03-25 12:31:53 -06004937 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04004938 }
4939
James Ketrenos43f66a62005-03-25 12:31:53 -06004940 default:
Zhu Yi1dd31b62006-02-20 18:28:09 -08004941 IPW_DEBUG_NOTIF("Unknown notification: "
4942 "subtype=%d,flags=0x%2x,size=%d\n",
Al Viroe62e1ee2007-12-27 01:36:46 -05004943 notif->subtype, notif->flags, size);
James Ketrenos43f66a62005-03-25 12:31:53 -06004944 }
4945}
4946
4947/**
4948 * Destroys all DMA structures and initialise them again
Jeff Garzikbf794512005-07-31 13:07:26 -04004949 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004950 * @param priv
4951 * @return error code
4952 */
4953static int ipw_queue_reset(struct ipw_priv *priv)
4954{
4955 int rc = 0;
4956 /** @todo customize queue sizes */
4957 int nTx = 64, nTxCmd = 8;
4958 ipw_tx_queue_free(priv);
4959 /* Tx CMD queue */
4960 rc = ipw_queue_tx_init(priv, &priv->txq_cmd, nTxCmd,
James Ketrenosb095c382005-08-24 22:04:42 -05004961 IPW_TX_CMD_QUEUE_READ_INDEX,
4962 IPW_TX_CMD_QUEUE_WRITE_INDEX,
4963 IPW_TX_CMD_QUEUE_BD_BASE,
4964 IPW_TX_CMD_QUEUE_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004965 if (rc) {
4966 IPW_ERROR("Tx Cmd queue init failed\n");
4967 goto error;
4968 }
4969 /* Tx queue(s) */
4970 rc = ipw_queue_tx_init(priv, &priv->txq[0], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004971 IPW_TX_QUEUE_0_READ_INDEX,
4972 IPW_TX_QUEUE_0_WRITE_INDEX,
4973 IPW_TX_QUEUE_0_BD_BASE, IPW_TX_QUEUE_0_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004974 if (rc) {
4975 IPW_ERROR("Tx 0 queue init failed\n");
4976 goto error;
4977 }
4978 rc = ipw_queue_tx_init(priv, &priv->txq[1], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004979 IPW_TX_QUEUE_1_READ_INDEX,
4980 IPW_TX_QUEUE_1_WRITE_INDEX,
4981 IPW_TX_QUEUE_1_BD_BASE, IPW_TX_QUEUE_1_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004982 if (rc) {
4983 IPW_ERROR("Tx 1 queue init failed\n");
4984 goto error;
4985 }
4986 rc = ipw_queue_tx_init(priv, &priv->txq[2], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004987 IPW_TX_QUEUE_2_READ_INDEX,
4988 IPW_TX_QUEUE_2_WRITE_INDEX,
4989 IPW_TX_QUEUE_2_BD_BASE, IPW_TX_QUEUE_2_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004990 if (rc) {
4991 IPW_ERROR("Tx 2 queue init failed\n");
4992 goto error;
4993 }
4994 rc = ipw_queue_tx_init(priv, &priv->txq[3], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004995 IPW_TX_QUEUE_3_READ_INDEX,
4996 IPW_TX_QUEUE_3_WRITE_INDEX,
4997 IPW_TX_QUEUE_3_BD_BASE, IPW_TX_QUEUE_3_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004998 if (rc) {
4999 IPW_ERROR("Tx 3 queue init failed\n");
5000 goto error;
5001 }
5002 /* statistics */
5003 priv->rx_bufs_min = 0;
5004 priv->rx_pend_max = 0;
5005 return rc;
5006
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005007 error:
James Ketrenos43f66a62005-03-25 12:31:53 -06005008 ipw_tx_queue_free(priv);
5009 return rc;
5010}
5011
5012/**
5013 * Reclaim Tx queue entries no more used by NIC.
Jeff Garzikbf794512005-07-31 13:07:26 -04005014 *
Stefano Brivio8ff9d212008-01-12 23:12:26 +01005015 * When FW advances 'R' index, all entries between old and
James Ketrenos43f66a62005-03-25 12:31:53 -06005016 * new 'R' index need to be reclaimed. As result, some free space
5017 * forms. If there is enough free space (> low mark), wake Tx queue.
Jeff Garzikbf794512005-07-31 13:07:26 -04005018 *
James Ketrenos43f66a62005-03-25 12:31:53 -06005019 * @note Need to protect against garbage in 'R' index
5020 * @param priv
5021 * @param txq
5022 * @param qindex
5023 * @return Number of used entries remains in the queue
5024 */
Jeff Garzikbf794512005-07-31 13:07:26 -04005025static int ipw_queue_tx_reclaim(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06005026 struct clx2_tx_queue *txq, int qindex)
5027{
5028 u32 hw_tail;
5029 int used;
5030 struct clx2_queue *q = &txq->q;
5031
5032 hw_tail = ipw_read32(priv, q->reg_r);
5033 if (hw_tail >= q->n_bd) {
5034 IPW_ERROR
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005035 ("Read index for DMA queue (%d) is out of range [0-%d)\n",
5036 hw_tail, q->n_bd);
James Ketrenos43f66a62005-03-25 12:31:53 -06005037 goto done;
5038 }
5039 for (; q->last_used != hw_tail;
5040 q->last_used = ipw_queue_inc_wrap(q->last_used, q->n_bd)) {
5041 ipw_queue_tx_free_tfd(priv, txq);
5042 priv->tx_packets++;
5043 }
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005044 done:
Dan Williams943dbef2008-02-14 17:49:41 -05005045 if ((ipw_tx_queue_space(q) > q->low_mark) &&
David S. Miller521c4d92008-07-22 18:32:47 -07005046 (qindex >= 0))
James Ketrenos9ddf84f2005-08-16 17:07:11 -05005047 netif_wake_queue(priv->net_dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06005048 used = q->first_empty - q->last_used;
5049 if (used < 0)
5050 used += q->n_bd;
5051
5052 return used;
5053}
5054
5055static int ipw_queue_tx_hcmd(struct ipw_priv *priv, int hcmd, void *buf,
5056 int len, int sync)
5057{
5058 struct clx2_tx_queue *txq = &priv->txq_cmd;
5059 struct clx2_queue *q = &txq->q;
5060 struct tfd_frame *tfd;
5061
Dan Williams943dbef2008-02-14 17:49:41 -05005062 if (ipw_tx_queue_space(q) < (sync ? 1 : 2)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005063 IPW_ERROR("No space for Tx\n");
5064 return -EBUSY;
5065 }
5066
5067 tfd = &txq->bd[q->first_empty];
5068 txq->txb[q->first_empty] = NULL;
5069
5070 memset(tfd, 0, sizeof(*tfd));
5071 tfd->control_flags.message_type = TX_HOST_COMMAND_TYPE;
5072 tfd->control_flags.control_bits = TFD_NEED_IRQ_MASK;
5073 priv->hcmd_seq++;
5074 tfd->u.cmd.index = hcmd;
5075 tfd->u.cmd.length = len;
5076 memcpy(tfd->u.cmd.payload, buf, len);
5077 q->first_empty = ipw_queue_inc_wrap(q->first_empty, q->n_bd);
5078 ipw_write32(priv, q->reg_w, q->first_empty);
5079 _ipw_read32(priv, 0x90);
5080
5081 return 0;
5082}
5083
Jeff Garzikbf794512005-07-31 13:07:26 -04005084/*
James Ketrenos43f66a62005-03-25 12:31:53 -06005085 * Rx theory of operation
5086 *
5087 * The host allocates 32 DMA target addresses and passes the host address
James Ketrenosb095c382005-08-24 22:04:42 -05005088 * to the firmware at register IPW_RFDS_TABLE_LOWER + N * RFD_SIZE where N is
James Ketrenos43f66a62005-03-25 12:31:53 -06005089 * 0 to 31
5090 *
5091 * Rx Queue Indexes
5092 * The host/firmware share two index registers for managing the Rx buffers.
5093 *
Jeff Garzikbf794512005-07-31 13:07:26 -04005094 * The READ index maps to the first position that the firmware may be writing
5095 * to -- the driver can read up to (but not including) this position and get
5096 * good data.
James Ketrenos43f66a62005-03-25 12:31:53 -06005097 * The READ index is managed by the firmware once the card is enabled.
5098 *
5099 * The WRITE index maps to the last position the driver has read from -- the
5100 * position preceding WRITE is the last slot the firmware can place a packet.
5101 *
5102 * The queue is empty (no good data) if WRITE = READ - 1, and is full if
Jeff Garzikbf794512005-07-31 13:07:26 -04005103 * WRITE = READ.
James Ketrenos43f66a62005-03-25 12:31:53 -06005104 *
Jeff Garzikbf794512005-07-31 13:07:26 -04005105 * During initialization the host sets up the READ queue position to the first
James Ketrenos43f66a62005-03-25 12:31:53 -06005106 * INDEX position, and WRITE to the last (READ - 1 wrapped)
5107 *
5108 * When the firmware places a packet in a buffer it will advance the READ index
5109 * and fire the RX interrupt. The driver can then query the READ index and
5110 * process as many packets as possible, moving the WRITE index forward as it
5111 * resets the Rx queue buffers with new memory.
Jeff Garzikbf794512005-07-31 13:07:26 -04005112 *
James Ketrenos43f66a62005-03-25 12:31:53 -06005113 * The management in the driver is as follows:
Jeff Garzikbf794512005-07-31 13:07:26 -04005114 * + A list of pre-allocated SKBs is stored in ipw->rxq->rx_free. When
James Ketrenos43f66a62005-03-25 12:31:53 -06005115 * ipw->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled
Jeff Garzikbf794512005-07-31 13:07:26 -04005116 * to replensish the ipw->rxq->rx_free.
James Ketrenos43f66a62005-03-25 12:31:53 -06005117 * + In ipw_rx_queue_replenish (scheduled) if 'processed' != 'read' then the
5118 * ipw->rxq is replenished and the READ INDEX is updated (updating the
5119 * 'processed' and 'read' driver indexes as well)
5120 * + A received packet is processed and handed to the kernel network stack,
5121 * detached from the ipw->rxq. The driver 'processed' index is updated.
5122 * + The Host/Firmware ipw->rxq is replenished at tasklet time from the rx_free
Jeff Garzikbf794512005-07-31 13:07:26 -04005123 * list. If there are no allocated buffers in ipw->rxq->rx_free, the READ
5124 * INDEX is not incremented and ipw->status(RX_STALLED) is set. If there
James Ketrenos43f66a62005-03-25 12:31:53 -06005125 * were enough free buffers and RX_STALLED is set it is cleared.
5126 *
5127 *
5128 * Driver sequence:
5129 *
Jeff Garzikbf794512005-07-31 13:07:26 -04005130 * ipw_rx_queue_alloc() Allocates rx_free
James Ketrenos43f66a62005-03-25 12:31:53 -06005131 * ipw_rx_queue_replenish() Replenishes rx_free list from rx_used, and calls
5132 * ipw_rx_queue_restock
5133 * ipw_rx_queue_restock() Moves available buffers from rx_free into Rx
5134 * queue, updates firmware pointers, and updates
5135 * the WRITE index. If insufficient rx_free buffers
5136 * are available, schedules ipw_rx_queue_replenish
5137 *
5138 * -- enable interrupts --
5139 * ISR - ipw_rx() Detach ipw_rx_mem_buffers from pool up to the
Jeff Garzikbf794512005-07-31 13:07:26 -04005140 * READ INDEX, detaching the SKB from the pool.
James Ketrenos43f66a62005-03-25 12:31:53 -06005141 * Moves the packet buffer from queue to rx_used.
5142 * Calls ipw_rx_queue_restock to refill any empty
5143 * slots.
5144 * ...
5145 *
5146 */
5147
Jeff Garzikbf794512005-07-31 13:07:26 -04005148/*
James Ketrenos43f66a62005-03-25 12:31:53 -06005149 * If there are slots in the RX queue that need to be restocked,
5150 * and we have free pre-allocated buffers, fill the ranks as much
5151 * as we can pulling from rx_free.
5152 *
5153 * This moves the 'write' index forward to catch up with 'processed', and
5154 * also updates the memory address in the firmware to reference the new
5155 * target buffer.
5156 */
5157static void ipw_rx_queue_restock(struct ipw_priv *priv)
5158{
5159 struct ipw_rx_queue *rxq = priv->rxq;
5160 struct list_head *element;
5161 struct ipw_rx_mem_buffer *rxb;
5162 unsigned long flags;
5163 int write;
5164
5165 spin_lock_irqsave(&rxq->lock, flags);
5166 write = rxq->write;
Dan Williams943dbef2008-02-14 17:49:41 -05005167 while ((ipw_rx_queue_space(rxq) > 0) && (rxq->free_count)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005168 element = rxq->rx_free.next;
5169 rxb = list_entry(element, struct ipw_rx_mem_buffer, list);
5170 list_del(element);
5171
James Ketrenosb095c382005-08-24 22:04:42 -05005172 ipw_write32(priv, IPW_RFDS_TABLE_LOWER + rxq->write * RFD_SIZE,
James Ketrenos43f66a62005-03-25 12:31:53 -06005173 rxb->dma_addr);
5174 rxq->queue[rxq->write] = rxb;
5175 rxq->write = (rxq->write + 1) % RX_QUEUE_SIZE;
5176 rxq->free_count--;
5177 }
5178 spin_unlock_irqrestore(&rxq->lock, flags);
5179
Jeff Garzikbf794512005-07-31 13:07:26 -04005180 /* If the pre-allocated buffer pool is dropping low, schedule to
James Ketrenos43f66a62005-03-25 12:31:53 -06005181 * refill it */
5182 if (rxq->free_count <= RX_LOW_WATERMARK)
Tejun Heobcb6d912011-01-26 12:12:50 +01005183 schedule_work(&priv->rx_replenish);
James Ketrenos43f66a62005-03-25 12:31:53 -06005184
5185 /* If we've added more space for the firmware to place data, tell it */
Jeff Garzikbf794512005-07-31 13:07:26 -04005186 if (write != rxq->write)
James Ketrenosb095c382005-08-24 22:04:42 -05005187 ipw_write32(priv, IPW_RX_WRITE_INDEX, rxq->write);
James Ketrenos43f66a62005-03-25 12:31:53 -06005188}
5189
5190/*
5191 * Move all used packet from rx_used to rx_free, allocating a new SKB for each.
Jeff Garzikbf794512005-07-31 13:07:26 -04005192 * Also restock the Rx queue via ipw_rx_queue_restock.
5193 *
Masahiro Yamada183b8022017-02-27 14:29:20 -08005194 * This is called as a scheduled work item (except for during initialization)
James Ketrenos43f66a62005-03-25 12:31:53 -06005195 */
5196static void ipw_rx_queue_replenish(void *data)
5197{
5198 struct ipw_priv *priv = data;
5199 struct ipw_rx_queue *rxq = priv->rxq;
5200 struct list_head *element;
5201 struct ipw_rx_mem_buffer *rxb;
5202 unsigned long flags;
5203
5204 spin_lock_irqsave(&rxq->lock, flags);
5205 while (!list_empty(&rxq->rx_used)) {
5206 element = rxq->rx_used.next;
5207 rxb = list_entry(element, struct ipw_rx_mem_buffer, list);
James Ketrenosb095c382005-08-24 22:04:42 -05005208 rxb->skb = alloc_skb(IPW_RX_BUF_SIZE, GFP_ATOMIC);
James Ketrenos43f66a62005-03-25 12:31:53 -06005209 if (!rxb->skb) {
5210 printk(KERN_CRIT "%s: Can not allocate SKB buffers.\n",
5211 priv->net_dev->name);
5212 /* We don't reschedule replenish work here -- we will
5213 * call the restock method and if it still needs
5214 * more buffers it will schedule replenish */
5215 break;
5216 }
5217 list_del(element);
Jeff Garzikbf794512005-07-31 13:07:26 -04005218
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005219 rxb->dma_addr =
5220 pci_map_single(priv->pci_dev, rxb->skb->data,
James Ketrenosb095c382005-08-24 22:04:42 -05005221 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
Jeff Garzikbf794512005-07-31 13:07:26 -04005222
James Ketrenos43f66a62005-03-25 12:31:53 -06005223 list_add_tail(&rxb->list, &rxq->rx_free);
5224 rxq->free_count++;
5225 }
5226 spin_unlock_irqrestore(&rxq->lock, flags);
5227
5228 ipw_rx_queue_restock(priv);
5229}
5230
David Howellsc4028952006-11-22 14:57:56 +00005231static void ipw_bg_rx_queue_replenish(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -05005232{
David Howellsc4028952006-11-22 14:57:56 +00005233 struct ipw_priv *priv =
5234 container_of(work, struct ipw_priv, rx_replenish);
Zhu Yi46441512006-01-24 16:37:59 +08005235 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00005236 ipw_rx_queue_replenish(priv);
Zhu Yi46441512006-01-24 16:37:59 +08005237 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005238}
5239
James Ketrenos43f66a62005-03-25 12:31:53 -06005240/* Assumes that the skb field of the buffers in 'pool' is kept accurate.
Zhu Yic7b6a672006-01-24 16:37:05 +08005241 * If an SKB has been detached, the POOL needs to have its SKB set to NULL
Jeff Garzikbf794512005-07-31 13:07:26 -04005242 * This free routine walks the list of POOL entries and if SKB is set to
James Ketrenos43f66a62005-03-25 12:31:53 -06005243 * non NULL it is unmapped and freed
5244 */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005245static void ipw_rx_queue_free(struct ipw_priv *priv, struct ipw_rx_queue *rxq)
James Ketrenos43f66a62005-03-25 12:31:53 -06005246{
5247 int i;
5248
5249 if (!rxq)
5250 return;
Jeff Garzikbf794512005-07-31 13:07:26 -04005251
James Ketrenos43f66a62005-03-25 12:31:53 -06005252 for (i = 0; i < RX_QUEUE_SIZE + RX_FREE_BUFFERS; i++) {
5253 if (rxq->pool[i].skb != NULL) {
5254 pci_unmap_single(priv->pci_dev, rxq->pool[i].dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05005255 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06005256 dev_kfree_skb(rxq->pool[i].skb);
5257 }
5258 }
5259
5260 kfree(rxq);
5261}
5262
5263static struct ipw_rx_queue *ipw_rx_queue_alloc(struct ipw_priv *priv)
5264{
5265 struct ipw_rx_queue *rxq;
5266 int i;
5267
Takisc75f4742005-12-01 01:41:45 -08005268 rxq = kzalloc(sizeof(*rxq), GFP_KERNEL);
Panagiotis Issarisad18b0e2005-09-05 04:14:10 +02005269 if (unlikely(!rxq)) {
5270 IPW_ERROR("memory allocation failed\n");
5271 return NULL;
5272 }
James Ketrenos43f66a62005-03-25 12:31:53 -06005273 spin_lock_init(&rxq->lock);
5274 INIT_LIST_HEAD(&rxq->rx_free);
5275 INIT_LIST_HEAD(&rxq->rx_used);
5276
5277 /* Fill the rx_used queue with _all_ of the Rx buffers */
Jeff Garzikbf794512005-07-31 13:07:26 -04005278 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++)
James Ketrenos43f66a62005-03-25 12:31:53 -06005279 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
5280
5281 /* Set us so that we have processed and used all buffers, but have
5282 * not restocked the Rx queue with fresh buffers */
5283 rxq->read = rxq->write = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005284 rxq->free_count = 0;
5285
5286 return rxq;
5287}
5288
5289static int ipw_is_rate_in_mask(struct ipw_priv *priv, int ieee_mode, u8 rate)
5290{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005291 rate &= ~LIBIPW_BASIC_RATE_MASK;
James Ketrenos43f66a62005-03-25 12:31:53 -06005292 if (ieee_mode == IEEE_A) {
5293 switch (rate) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005294 case LIBIPW_OFDM_RATE_6MB:
5295 return priv->rates_mask & LIBIPW_OFDM_RATE_6MB_MASK ?
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005296 1 : 0;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005297 case LIBIPW_OFDM_RATE_9MB:
5298 return priv->rates_mask & LIBIPW_OFDM_RATE_9MB_MASK ?
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005299 1 : 0;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005300 case LIBIPW_OFDM_RATE_12MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005301 return priv->
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005302 rates_mask & LIBIPW_OFDM_RATE_12MB_MASK ? 1 : 0;
5303 case LIBIPW_OFDM_RATE_18MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005304 return priv->
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005305 rates_mask & LIBIPW_OFDM_RATE_18MB_MASK ? 1 : 0;
5306 case LIBIPW_OFDM_RATE_24MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005307 return priv->
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005308 rates_mask & LIBIPW_OFDM_RATE_24MB_MASK ? 1 : 0;
5309 case LIBIPW_OFDM_RATE_36MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005310 return priv->
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005311 rates_mask & LIBIPW_OFDM_RATE_36MB_MASK ? 1 : 0;
5312 case LIBIPW_OFDM_RATE_48MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005313 return priv->
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005314 rates_mask & LIBIPW_OFDM_RATE_48MB_MASK ? 1 : 0;
5315 case LIBIPW_OFDM_RATE_54MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005316 return priv->
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005317 rates_mask & LIBIPW_OFDM_RATE_54MB_MASK ? 1 : 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005318 default:
5319 return 0;
5320 }
5321 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005322
James Ketrenos43f66a62005-03-25 12:31:53 -06005323 /* B and G mixed */
5324 switch (rate) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005325 case LIBIPW_CCK_RATE_1MB:
5326 return priv->rates_mask & LIBIPW_CCK_RATE_1MB_MASK ? 1 : 0;
5327 case LIBIPW_CCK_RATE_2MB:
5328 return priv->rates_mask & LIBIPW_CCK_RATE_2MB_MASK ? 1 : 0;
5329 case LIBIPW_CCK_RATE_5MB:
5330 return priv->rates_mask & LIBIPW_CCK_RATE_5MB_MASK ? 1 : 0;
5331 case LIBIPW_CCK_RATE_11MB:
5332 return priv->rates_mask & LIBIPW_CCK_RATE_11MB_MASK ? 1 : 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005333 }
5334
5335 /* If we are limited to B modulations, bail at this point */
5336 if (ieee_mode == IEEE_B)
5337 return 0;
5338
5339 /* G */
5340 switch (rate) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005341 case LIBIPW_OFDM_RATE_6MB:
5342 return priv->rates_mask & LIBIPW_OFDM_RATE_6MB_MASK ? 1 : 0;
5343 case LIBIPW_OFDM_RATE_9MB:
5344 return priv->rates_mask & LIBIPW_OFDM_RATE_9MB_MASK ? 1 : 0;
5345 case LIBIPW_OFDM_RATE_12MB:
5346 return priv->rates_mask & LIBIPW_OFDM_RATE_12MB_MASK ? 1 : 0;
5347 case LIBIPW_OFDM_RATE_18MB:
5348 return priv->rates_mask & LIBIPW_OFDM_RATE_18MB_MASK ? 1 : 0;
5349 case LIBIPW_OFDM_RATE_24MB:
5350 return priv->rates_mask & LIBIPW_OFDM_RATE_24MB_MASK ? 1 : 0;
5351 case LIBIPW_OFDM_RATE_36MB:
5352 return priv->rates_mask & LIBIPW_OFDM_RATE_36MB_MASK ? 1 : 0;
5353 case LIBIPW_OFDM_RATE_48MB:
5354 return priv->rates_mask & LIBIPW_OFDM_RATE_48MB_MASK ? 1 : 0;
5355 case LIBIPW_OFDM_RATE_54MB:
5356 return priv->rates_mask & LIBIPW_OFDM_RATE_54MB_MASK ? 1 : 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005357 }
5358
5359 return 0;
5360}
5361
Jeff Garzikbf794512005-07-31 13:07:26 -04005362static int ipw_compatible_rates(struct ipw_priv *priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005363 const struct libipw_network *network,
James Ketrenos43f66a62005-03-25 12:31:53 -06005364 struct ipw_supported_rates *rates)
5365{
5366 int num_rates, i;
5367
5368 memset(rates, 0, sizeof(*rates));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005369 num_rates = min(network->rates_len, (u8) IPW_MAX_RATES);
James Ketrenos43f66a62005-03-25 12:31:53 -06005370 rates->num_rates = 0;
5371 for (i = 0; i < num_rates; i++) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005372 if (!ipw_is_rate_in_mask(priv, network->mode,
5373 network->rates[i])) {
5374
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005375 if (network->rates[i] & LIBIPW_BASIC_RATE_MASK) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005376 IPW_DEBUG_SCAN("Adding masked mandatory "
5377 "rate %02X\n",
5378 network->rates[i]);
5379 rates->supported_rates[rates->num_rates++] =
5380 network->rates[i];
5381 continue;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005382 }
5383
James Ketrenos43f66a62005-03-25 12:31:53 -06005384 IPW_DEBUG_SCAN("Rate %02X masked : 0x%08X\n",
5385 network->rates[i], priv->rates_mask);
5386 continue;
5387 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005388
James Ketrenos43f66a62005-03-25 12:31:53 -06005389 rates->supported_rates[rates->num_rates++] = network->rates[i];
5390 }
5391
James Ketrenosa613bff2005-08-24 21:43:11 -05005392 num_rates = min(network->rates_ex_len,
5393 (u8) (IPW_MAX_RATES - num_rates));
James Ketrenos43f66a62005-03-25 12:31:53 -06005394 for (i = 0; i < num_rates; i++) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005395 if (!ipw_is_rate_in_mask(priv, network->mode,
5396 network->rates_ex[i])) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005397 if (network->rates_ex[i] & LIBIPW_BASIC_RATE_MASK) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005398 IPW_DEBUG_SCAN("Adding masked mandatory "
5399 "rate %02X\n",
5400 network->rates_ex[i]);
5401 rates->supported_rates[rates->num_rates++] =
5402 network->rates[i];
5403 continue;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005404 }
5405
James Ketrenos43f66a62005-03-25 12:31:53 -06005406 IPW_DEBUG_SCAN("Rate %02X masked : 0x%08X\n",
5407 network->rates_ex[i], priv->rates_mask);
5408 continue;
5409 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005410
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005411 rates->supported_rates[rates->num_rates++] =
5412 network->rates_ex[i];
James Ketrenos43f66a62005-03-25 12:31:53 -06005413 }
5414
James Ketrenosea2b26e2005-08-24 21:25:16 -05005415 return 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06005416}
5417
Arjan van de Ven858119e2006-01-14 13:20:43 -08005418static void ipw_copy_rates(struct ipw_supported_rates *dest,
James Ketrenos43f66a62005-03-25 12:31:53 -06005419 const struct ipw_supported_rates *src)
5420{
5421 u8 i;
5422 for (i = 0; i < src->num_rates; i++)
5423 dest->supported_rates[i] = src->supported_rates[i];
5424 dest->num_rates = src->num_rates;
5425}
5426
5427/* TODO: Look at sniffed packets in the air to determine if the basic rate
5428 * mask should ever be used -- right now all callers to add the scan rates are
5429 * set with the modulation = CCK, so BASIC_RATE_MASK is never set... */
5430static void ipw_add_cck_scan_rates(struct ipw_supported_rates *rates,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005431 u8 modulation, u32 rate_mask)
James Ketrenos43f66a62005-03-25 12:31:53 -06005432{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005433 u8 basic_mask = (LIBIPW_OFDM_MODULATION == modulation) ?
5434 LIBIPW_BASIC_RATE_MASK : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005435
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005436 if (rate_mask & LIBIPW_CCK_RATE_1MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005437 rates->supported_rates[rates->num_rates++] =
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005438 LIBIPW_BASIC_RATE_MASK | LIBIPW_CCK_RATE_1MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005439
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005440 if (rate_mask & LIBIPW_CCK_RATE_2MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005441 rates->supported_rates[rates->num_rates++] =
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005442 LIBIPW_BASIC_RATE_MASK | LIBIPW_CCK_RATE_2MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005443
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005444 if (rate_mask & LIBIPW_CCK_RATE_5MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005445 rates->supported_rates[rates->num_rates++] = basic_mask |
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005446 LIBIPW_CCK_RATE_5MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005447
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005448 if (rate_mask & LIBIPW_CCK_RATE_11MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005449 rates->supported_rates[rates->num_rates++] = basic_mask |
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005450 LIBIPW_CCK_RATE_11MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005451}
5452
5453static void ipw_add_ofdm_scan_rates(struct ipw_supported_rates *rates,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005454 u8 modulation, u32 rate_mask)
James Ketrenos43f66a62005-03-25 12:31:53 -06005455{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005456 u8 basic_mask = (LIBIPW_OFDM_MODULATION == modulation) ?
5457 LIBIPW_BASIC_RATE_MASK : 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005458
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005459 if (rate_mask & LIBIPW_OFDM_RATE_6MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005460 rates->supported_rates[rates->num_rates++] = basic_mask |
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005461 LIBIPW_OFDM_RATE_6MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005462
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005463 if (rate_mask & LIBIPW_OFDM_RATE_9MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005464 rates->supported_rates[rates->num_rates++] =
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005465 LIBIPW_OFDM_RATE_9MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005466
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005467 if (rate_mask & LIBIPW_OFDM_RATE_12MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005468 rates->supported_rates[rates->num_rates++] = basic_mask |
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005469 LIBIPW_OFDM_RATE_12MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005470
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005471 if (rate_mask & LIBIPW_OFDM_RATE_18MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005472 rates->supported_rates[rates->num_rates++] =
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005473 LIBIPW_OFDM_RATE_18MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005474
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005475 if (rate_mask & LIBIPW_OFDM_RATE_24MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005476 rates->supported_rates[rates->num_rates++] = basic_mask |
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005477 LIBIPW_OFDM_RATE_24MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005478
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005479 if (rate_mask & LIBIPW_OFDM_RATE_36MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005480 rates->supported_rates[rates->num_rates++] =
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005481 LIBIPW_OFDM_RATE_36MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005482
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005483 if (rate_mask & LIBIPW_OFDM_RATE_48MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005484 rates->supported_rates[rates->num_rates++] =
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005485 LIBIPW_OFDM_RATE_48MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005486
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005487 if (rate_mask & LIBIPW_OFDM_RATE_54MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005488 rates->supported_rates[rates->num_rates++] =
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005489 LIBIPW_OFDM_RATE_54MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005490}
5491
5492struct ipw_network_match {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005493 struct libipw_network *network;
James Ketrenos43f66a62005-03-25 12:31:53 -06005494 struct ipw_supported_rates rates;
5495};
5496
James Ketrenosc848d0a2005-08-24 21:56:24 -05005497static int ipw_find_adhoc_network(struct ipw_priv *priv,
5498 struct ipw_network_match *match,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005499 struct libipw_network *network,
James Ketrenosc848d0a2005-08-24 21:56:24 -05005500 int roaming)
5501{
5502 struct ipw_supported_rates rates;
5503
5504 /* Verify that this network's capability is compatible with the
5505 * current mode (AdHoc or Infrastructure) */
5506 if ((priv->ieee->iw_mode == IW_MODE_ADHOC &&
5507 !(network->capability & WLAN_CAPABILITY_IBSS))) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005508 IPW_DEBUG_MERGE("Network '%*pE (%pM)' excluded due to capability mismatch.\n",
5509 network->ssid_len, network->ssid,
Johannes Berge1749612008-10-27 15:59:26 -07005510 network->bssid);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005511 return 0;
5512 }
5513
James Ketrenosc848d0a2005-08-24 21:56:24 -05005514 if (unlikely(roaming)) {
5515 /* If we are roaming, then ensure check if this is a valid
5516 * network to try and roam to */
5517 if ((network->ssid_len != match->network->ssid_len) ||
5518 memcmp(network->ssid, match->network->ssid,
5519 network->ssid_len)) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005520 IPW_DEBUG_MERGE("Network '%*pE (%pM)' excluded because of non-network ESSID.\n",
5521 network->ssid_len, network->ssid,
Johannes Berge1749612008-10-27 15:59:26 -07005522 network->bssid);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005523 return 0;
5524 }
5525 } else {
5526 /* If an ESSID has been configured then compare the broadcast
5527 * ESSID to ours */
5528 if ((priv->config & CFG_STATIC_ESSID) &&
5529 ((network->ssid_len != priv->essid_len) ||
5530 memcmp(network->ssid, priv->essid,
5531 min(network->ssid_len, priv->essid_len)))) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005532 IPW_DEBUG_MERGE("Network '%*pE (%pM)' excluded because of ESSID mismatch: '%*pE'.\n",
5533 network->ssid_len, network->ssid,
5534 network->bssid, priv->essid_len,
5535 priv->essid);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005536 return 0;
5537 }
5538 }
5539
5540 /* If the old network rate is better than this one, don't bother
5541 * testing everything else. */
5542
5543 if (network->time_stamp[0] < match->network->time_stamp[0]) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005544 IPW_DEBUG_MERGE("Network '%*pE excluded because newer than current network.\n",
5545 match->network->ssid_len, match->network->ssid);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005546 return 0;
5547 } else if (network->time_stamp[1] < match->network->time_stamp[1]) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005548 IPW_DEBUG_MERGE("Network '%*pE excluded because newer than current network.\n",
5549 match->network->ssid_len, match->network->ssid);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005550 return 0;
5551 }
5552
5553 /* Now go through and see if the requested network is valid... */
5554 if (priv->ieee->scan_age != 0 &&
5555 time_after(jiffies, network->last_scanned + priv->ieee->scan_age)) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005556 IPW_DEBUG_MERGE("Network '%*pE (%pM)' excluded because of age: %ums.\n",
5557 network->ssid_len, network->ssid,
Johannes Berge1749612008-10-27 15:59:26 -07005558 network->bssid,
Zhu Yi2638bc32006-01-24 16:37:52 +08005559 jiffies_to_msecs(jiffies -
5560 network->last_scanned));
James Ketrenosc848d0a2005-08-24 21:56:24 -05005561 return 0;
5562 }
5563
5564 if ((priv->config & CFG_STATIC_CHANNEL) &&
5565 (network->channel != priv->channel)) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005566 IPW_DEBUG_MERGE("Network '%*pE (%pM)' excluded because of channel mismatch: %d != %d.\n",
5567 network->ssid_len, network->ssid,
Johannes Berge1749612008-10-27 15:59:26 -07005568 network->bssid,
James Ketrenosc848d0a2005-08-24 21:56:24 -05005569 network->channel, priv->channel);
5570 return 0;
5571 }
5572
Lucas De Marchi25985ed2011-03-30 22:57:33 -03005573 /* Verify privacy compatibility */
James Ketrenosc848d0a2005-08-24 21:56:24 -05005574 if (((priv->capability & CAP_PRIVACY_ON) ? 1 : 0) !=
5575 ((network->capability & WLAN_CAPABILITY_PRIVACY) ? 1 : 0)) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005576 IPW_DEBUG_MERGE("Network '%*pE (%pM)' excluded because of privacy mismatch: %s != %s.\n",
5577 network->ssid_len, network->ssid,
Johannes Berge1749612008-10-27 15:59:26 -07005578 network->bssid,
James Ketrenosafbf30a2005-08-25 00:05:33 -05005579 priv->
5580 capability & CAP_PRIVACY_ON ? "on" : "off",
5581 network->
5582 capability & WLAN_CAPABILITY_PRIVACY ? "on" :
5583 "off");
James Ketrenosc848d0a2005-08-24 21:56:24 -05005584 return 0;
5585 }
5586
dingtianhong36325f32013-12-26 19:41:23 +08005587 if (ether_addr_equal(network->bssid, priv->bssid)) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005588 IPW_DEBUG_MERGE("Network '%*pE (%pM)' excluded because of the same BSSID match: %pM.\n",
5589 network->ssid_len, network->ssid,
5590 network->bssid, priv->bssid);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005591 return 0;
5592 }
5593
5594 /* Filter out any incompatible freq / mode combinations */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005595 if (!libipw_is_valid_mode(priv->ieee, network->mode)) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005596 IPW_DEBUG_MERGE("Network '%*pE (%pM)' excluded because of invalid frequency/mode combination.\n",
5597 network->ssid_len, network->ssid,
Johannes Berge1749612008-10-27 15:59:26 -07005598 network->bssid);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005599 return 0;
5600 }
5601
5602 /* Ensure that the rates supported by the driver are compatible with
5603 * this AP, including verification of basic rates (mandatory) */
5604 if (!ipw_compatible_rates(priv, network, &rates)) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005605 IPW_DEBUG_MERGE("Network '%*pE (%pM)' excluded because configured rate mask excludes AP mandatory rate.\n",
5606 network->ssid_len, network->ssid,
Johannes Berge1749612008-10-27 15:59:26 -07005607 network->bssid);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005608 return 0;
5609 }
5610
5611 if (rates.num_rates == 0) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005612 IPW_DEBUG_MERGE("Network '%*pE (%pM)' excluded because of no compatible rates.\n",
5613 network->ssid_len, network->ssid,
Johannes Berge1749612008-10-27 15:59:26 -07005614 network->bssid);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005615 return 0;
5616 }
5617
5618 /* TODO: Perform any further minimal comparititive tests. We do not
5619 * want to put too much policy logic here; intelligent scan selection
5620 * should occur within a generic IEEE 802.11 user space tool. */
5621
5622 /* Set up 'new' AP to this network */
5623 ipw_copy_rates(&match->rates, &rates);
5624 match->network = network;
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005625 IPW_DEBUG_MERGE("Network '%*pE (%pM)' is a viable match.\n",
5626 network->ssid_len, network->ssid, network->bssid);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005627
5628 return 1;
5629}
5630
David Howellsc4028952006-11-22 14:57:56 +00005631static void ipw_merge_adhoc_network(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -05005632{
David Howellsc4028952006-11-22 14:57:56 +00005633 struct ipw_priv *priv =
5634 container_of(work, struct ipw_priv, merge_networks);
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005635 struct libipw_network *network = NULL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05005636 struct ipw_network_match match = {
5637 .network = priv->assoc_network
5638 };
5639
James Ketrenosafbf30a2005-08-25 00:05:33 -05005640 if ((priv->status & STATUS_ASSOCIATED) &&
5641 (priv->ieee->iw_mode == IW_MODE_ADHOC)) {
James Ketrenosc848d0a2005-08-24 21:56:24 -05005642 /* First pass through ROAM process -- look for a better
5643 * network */
5644 unsigned long flags;
5645
5646 spin_lock_irqsave(&priv->ieee->lock, flags);
5647 list_for_each_entry(network, &priv->ieee->network_list, list) {
5648 if (network != priv->assoc_network)
5649 ipw_find_adhoc_network(priv, &match, network,
5650 1);
5651 }
5652 spin_unlock_irqrestore(&priv->ieee->lock, flags);
5653
5654 if (match.network == priv->assoc_network) {
5655 IPW_DEBUG_MERGE("No better ADHOC in this network to "
5656 "merge to.\n");
5657 return;
5658 }
5659
Zhu Yi46441512006-01-24 16:37:59 +08005660 mutex_lock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005661 if ((priv->ieee->iw_mode == IW_MODE_ADHOC)) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005662 IPW_DEBUG_MERGE("remove network %*pE\n",
5663 priv->essid_len, priv->essid);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005664 ipw_remove_current_network(priv);
5665 }
5666
5667 ipw_disassociate(priv);
5668 priv->assoc_network = match.network;
Zhu Yi46441512006-01-24 16:37:59 +08005669 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005670 return;
5671 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05005672}
5673
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005674static int ipw_best_network(struct ipw_priv *priv,
5675 struct ipw_network_match *match,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005676 struct libipw_network *network, int roaming)
James Ketrenos43f66a62005-03-25 12:31:53 -06005677{
5678 struct ipw_supported_rates rates;
5679
5680 /* Verify that this network's capability is compatible with the
5681 * current mode (AdHoc or Infrastructure) */
5682 if ((priv->ieee->iw_mode == IW_MODE_INFRA &&
Jouni Malinen24743852005-08-14 20:59:59 -07005683 !(network->capability & WLAN_CAPABILITY_ESS)) ||
James Ketrenos43f66a62005-03-25 12:31:53 -06005684 (priv->ieee->iw_mode == IW_MODE_ADHOC &&
5685 !(network->capability & WLAN_CAPABILITY_IBSS))) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005686 IPW_DEBUG_ASSOC("Network '%*pE (%pM)' excluded due to capability mismatch.\n",
5687 network->ssid_len, network->ssid,
Johannes Berge1749612008-10-27 15:59:26 -07005688 network->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06005689 return 0;
5690 }
5691
James Ketrenos43f66a62005-03-25 12:31:53 -06005692 if (unlikely(roaming)) {
5693 /* If we are roaming, then ensure check if this is a valid
5694 * network to try and roam to */
5695 if ((network->ssid_len != match->network->ssid_len) ||
Jeff Garzikbf794512005-07-31 13:07:26 -04005696 memcmp(network->ssid, match->network->ssid,
James Ketrenos43f66a62005-03-25 12:31:53 -06005697 network->ssid_len)) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005698 IPW_DEBUG_ASSOC("Network '%*pE (%pM)' excluded because of non-network ESSID.\n",
5699 network->ssid_len, network->ssid,
Johannes Berge1749612008-10-27 15:59:26 -07005700 network->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06005701 return 0;
5702 }
5703 } else {
Jeff Garzikbf794512005-07-31 13:07:26 -04005704 /* If an ESSID has been configured then compare the broadcast
5705 * ESSID to ours */
5706 if ((priv->config & CFG_STATIC_ESSID) &&
James Ketrenos43f66a62005-03-25 12:31:53 -06005707 ((network->ssid_len != priv->essid_len) ||
Jeff Garzikbf794512005-07-31 13:07:26 -04005708 memcmp(network->ssid, priv->essid,
James Ketrenos43f66a62005-03-25 12:31:53 -06005709 min(network->ssid_len, priv->essid_len)))) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005710 IPW_DEBUG_ASSOC("Network '%*pE (%pM)' excluded because of ESSID mismatch: '%*pE'.\n",
5711 network->ssid_len, network->ssid,
5712 network->bssid, priv->essid_len,
5713 priv->essid);
James Ketrenos43f66a62005-03-25 12:31:53 -06005714 return 0;
5715 }
5716 }
5717
5718 /* If the old network rate is better than this one, don't bother
5719 * testing everything else. */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005720 if (match->network && match->network->stats.rssi > network->stats.rssi) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005721 IPW_DEBUG_ASSOC("Network '%*pE (%pM)' excluded because '%*pE (%pM)' has a stronger signal.\n",
5722 network->ssid_len, network->ssid,
5723 network->bssid, match->network->ssid_len,
5724 match->network->ssid, match->network->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06005725 return 0;
5726 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005727
James Ketrenos43f66a62005-03-25 12:31:53 -06005728 /* If this network has already had an association attempt within the
5729 * last 3 seconds, do not try and associate again... */
5730 if (network->last_associate &&
James Ketrenosea2b26e2005-08-24 21:25:16 -05005731 time_after(network->last_associate + (HZ * 3UL), jiffies)) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005732 IPW_DEBUG_ASSOC("Network '%*pE (%pM)' excluded because of storming (%ums since last assoc attempt).\n",
5733 network->ssid_len, network->ssid,
Johannes Berge1749612008-10-27 15:59:26 -07005734 network->bssid,
Zhu Yi2638bc32006-01-24 16:37:52 +08005735 jiffies_to_msecs(jiffies -
5736 network->last_associate));
James Ketrenos43f66a62005-03-25 12:31:53 -06005737 return 0;
5738 }
5739
5740 /* Now go through and see if the requested network is valid... */
Jeff Garzikbf794512005-07-31 13:07:26 -04005741 if (priv->ieee->scan_age != 0 &&
James Ketrenosea2b26e2005-08-24 21:25:16 -05005742 time_after(jiffies, network->last_scanned + priv->ieee->scan_age)) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005743 IPW_DEBUG_ASSOC("Network '%*pE (%pM)' excluded because of age: %ums.\n",
5744 network->ssid_len, network->ssid,
Johannes Berge1749612008-10-27 15:59:26 -07005745 network->bssid,
Zhu Yi2638bc32006-01-24 16:37:52 +08005746 jiffies_to_msecs(jiffies -
5747 network->last_scanned));
James Ketrenos43f66a62005-03-25 12:31:53 -06005748 return 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005749 }
James Ketrenos43f66a62005-03-25 12:31:53 -06005750
Jeff Garzikbf794512005-07-31 13:07:26 -04005751 if ((priv->config & CFG_STATIC_CHANNEL) &&
James Ketrenos43f66a62005-03-25 12:31:53 -06005752 (network->channel != priv->channel)) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005753 IPW_DEBUG_ASSOC("Network '%*pE (%pM)' excluded because of channel mismatch: %d != %d.\n",
5754 network->ssid_len, network->ssid,
Johannes Berge1749612008-10-27 15:59:26 -07005755 network->bssid,
James Ketrenos43f66a62005-03-25 12:31:53 -06005756 network->channel, priv->channel);
5757 return 0;
5758 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005759
Lucas De Marchi25985ed2011-03-30 22:57:33 -03005760 /* Verify privacy compatibility */
Jeff Garzikbf794512005-07-31 13:07:26 -04005761 if (((priv->capability & CAP_PRIVACY_ON) ? 1 : 0) !=
James Ketrenos43f66a62005-03-25 12:31:53 -06005762 ((network->capability & WLAN_CAPABILITY_PRIVACY) ? 1 : 0)) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005763 IPW_DEBUG_ASSOC("Network '%*pE (%pM)' excluded because of privacy mismatch: %s != %s.\n",
5764 network->ssid_len, network->ssid,
Johannes Berge1749612008-10-27 15:59:26 -07005765 network->bssid,
Jeff Garzikbf794512005-07-31 13:07:26 -04005766 priv->capability & CAP_PRIVACY_ON ? "on" :
James Ketrenos43f66a62005-03-25 12:31:53 -06005767 "off",
Jeff Garzikbf794512005-07-31 13:07:26 -04005768 network->capability &
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005769 WLAN_CAPABILITY_PRIVACY ? "on" : "off");
James Ketrenos43f66a62005-03-25 12:31:53 -06005770 return 0;
5771 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005772
5773 if ((priv->config & CFG_STATIC_BSSID) &&
dingtianhong36325f32013-12-26 19:41:23 +08005774 !ether_addr_equal(network->bssid, priv->bssid)) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005775 IPW_DEBUG_ASSOC("Network '%*pE (%pM)' excluded because of BSSID mismatch: %pM.\n",
5776 network->ssid_len, network->ssid,
Johannes Berge1749612008-10-27 15:59:26 -07005777 network->bssid, priv->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06005778 return 0;
5779 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005780
James Ketrenos43f66a62005-03-25 12:31:53 -06005781 /* Filter out any incompatible freq / mode combinations */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005782 if (!libipw_is_valid_mode(priv->ieee, network->mode)) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005783 IPW_DEBUG_ASSOC("Network '%*pE (%pM)' excluded because of invalid frequency/mode combination.\n",
5784 network->ssid_len, network->ssid,
Johannes Berge1749612008-10-27 15:59:26 -07005785 network->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06005786 return 0;
5787 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005788
Liu Hong1fe0adb2005-08-19 09:33:10 -05005789 /* Filter out invalid channel in current GEO */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005790 if (!libipw_is_valid_channel(priv->ieee, network->channel)) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005791 IPW_DEBUG_ASSOC("Network '%*pE (%pM)' excluded because of invalid channel in current GEO\n",
5792 network->ssid_len, network->ssid,
Johannes Berge1749612008-10-27 15:59:26 -07005793 network->bssid);
Liu Hong1fe0adb2005-08-19 09:33:10 -05005794 return 0;
5795 }
5796
James Ketrenosea2b26e2005-08-24 21:25:16 -05005797 /* Ensure that the rates supported by the driver are compatible with
5798 * this AP, including verification of basic rates (mandatory) */
5799 if (!ipw_compatible_rates(priv, network, &rates)) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005800 IPW_DEBUG_ASSOC("Network '%*pE (%pM)' excluded because configured rate mask excludes AP mandatory rate.\n",
5801 network->ssid_len, network->ssid,
Johannes Berge1749612008-10-27 15:59:26 -07005802 network->bssid);
James Ketrenosea2b26e2005-08-24 21:25:16 -05005803 return 0;
5804 }
5805
James Ketrenos43f66a62005-03-25 12:31:53 -06005806 if (rates.num_rates == 0) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005807 IPW_DEBUG_ASSOC("Network '%*pE (%pM)' excluded because of no compatible rates.\n",
5808 network->ssid_len, network->ssid,
Johannes Berge1749612008-10-27 15:59:26 -07005809 network->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06005810 return 0;
5811 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005812
James Ketrenos43f66a62005-03-25 12:31:53 -06005813 /* TODO: Perform any further minimal comparititive tests. We do not
5814 * want to put too much policy logic here; intelligent scan selection
5815 * should occur within a generic IEEE 802.11 user space tool. */
5816
5817 /* Set up 'new' AP to this network */
5818 ipw_copy_rates(&match->rates, &rates);
5819 match->network = network;
5820
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005821 IPW_DEBUG_ASSOC("Network '%*pE (%pM)' is a viable match.\n",
5822 network->ssid_len, network->ssid, network->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06005823
5824 return 1;
5825}
5826
Jeff Garzikbf794512005-07-31 13:07:26 -04005827static void ipw_adhoc_create(struct ipw_priv *priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005828 struct libipw_network *network)
James Ketrenos43f66a62005-03-25 12:31:53 -06005829{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005830 const struct libipw_geo *geo = libipw_get_geo(priv->ieee);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005831 int i;
5832
James Ketrenos43f66a62005-03-25 12:31:53 -06005833 /*
5834 * For the purposes of scanning, we can set our wireless mode
5835 * to trigger scans across combinations of bands, but when it
5836 * comes to creating a new ad-hoc network, we have tell the FW
5837 * exactly which band to use.
5838 *
Jeff Garzikbf794512005-07-31 13:07:26 -04005839 * We also have the possibility of an invalid channel for the
James Ketrenos43f66a62005-03-25 12:31:53 -06005840 * chossen band. Attempting to create a new ad-hoc network
5841 * with an invalid channel for wireless mode will trigger a
5842 * FW fatal error.
James Ketrenosafbf30a2005-08-25 00:05:33 -05005843 *
James Ketrenos43f66a62005-03-25 12:31:53 -06005844 */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005845 switch (libipw_is_valid_channel(priv->ieee, priv->channel)) {
5846 case LIBIPW_52GHZ_BAND:
James Ketrenosafbf30a2005-08-25 00:05:33 -05005847 network->mode = IEEE_A;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005848 i = libipw_channel_to_index(priv->ieee, priv->channel);
Eric Sesterhenn5d9428d2006-04-02 13:52:48 +02005849 BUG_ON(i == -1);
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005850 if (geo->a[i].flags & LIBIPW_CH_PASSIVE_ONLY) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05005851 IPW_WARNING("Overriding invalid channel\n");
5852 priv->channel = geo->a[0].channel;
5853 }
5854 break;
5855
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005856 case LIBIPW_24GHZ_BAND:
James Ketrenosafbf30a2005-08-25 00:05:33 -05005857 if (priv->ieee->mode & IEEE_G)
5858 network->mode = IEEE_G;
5859 else
5860 network->mode = IEEE_B;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005861 i = libipw_channel_to_index(priv->ieee, priv->channel);
Eric Sesterhenn5d9428d2006-04-02 13:52:48 +02005862 BUG_ON(i == -1);
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005863 if (geo->bg[i].flags & LIBIPW_CH_PASSIVE_ONLY) {
Liu Hong1fe0adb2005-08-19 09:33:10 -05005864 IPW_WARNING("Overriding invalid channel\n");
5865 priv->channel = geo->bg[0].channel;
5866 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05005867 break;
5868
5869 default:
James Ketrenos43f66a62005-03-25 12:31:53 -06005870 IPW_WARNING("Overriding invalid channel\n");
5871 if (priv->ieee->mode & IEEE_A) {
5872 network->mode = IEEE_A;
James Ketrenosb095c382005-08-24 22:04:42 -05005873 priv->channel = geo->a[0].channel;
James Ketrenos43f66a62005-03-25 12:31:53 -06005874 } else if (priv->ieee->mode & IEEE_G) {
5875 network->mode = IEEE_G;
James Ketrenosb095c382005-08-24 22:04:42 -05005876 priv->channel = geo->bg[0].channel;
James Ketrenos43f66a62005-03-25 12:31:53 -06005877 } else {
5878 network->mode = IEEE_B;
James Ketrenosb095c382005-08-24 22:04:42 -05005879 priv->channel = geo->bg[0].channel;
James Ketrenos43f66a62005-03-25 12:31:53 -06005880 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05005881 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06005882 }
5883
5884 network->channel = priv->channel;
5885 priv->config |= CFG_ADHOC_PERSIST;
5886 ipw_create_bssid(priv, network->bssid);
5887 network->ssid_len = priv->essid_len;
5888 memcpy(network->ssid, priv->essid, priv->essid_len);
5889 memset(&network->stats, 0, sizeof(network->stats));
5890 network->capability = WLAN_CAPABILITY_IBSS;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005891 if (!(priv->config & CFG_PREAMBLE_LONG))
5892 network->capability |= WLAN_CAPABILITY_SHORT_PREAMBLE;
James Ketrenos43f66a62005-03-25 12:31:53 -06005893 if (priv->capability & CAP_PRIVACY_ON)
5894 network->capability |= WLAN_CAPABILITY_PRIVACY;
5895 network->rates_len = min(priv->rates.num_rates, MAX_RATES_LENGTH);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005896 memcpy(network->rates, priv->rates.supported_rates, network->rates_len);
James Ketrenos43f66a62005-03-25 12:31:53 -06005897 network->rates_ex_len = priv->rates.num_rates - network->rates_len;
Jeff Garzikbf794512005-07-31 13:07:26 -04005898 memcpy(network->rates_ex,
James Ketrenos43f66a62005-03-25 12:31:53 -06005899 &priv->rates.supported_rates[network->rates_len],
5900 network->rates_ex_len);
5901 network->last_scanned = 0;
5902 network->flags = 0;
5903 network->last_associate = 0;
5904 network->time_stamp[0] = 0;
5905 network->time_stamp[1] = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005906 network->beacon_interval = 100; /* Default */
5907 network->listen_interval = 10; /* Default */
5908 network->atim_window = 0; /* Default */
James Ketrenos43f66a62005-03-25 12:31:53 -06005909 network->wpa_ie_len = 0;
5910 network->rsn_ie_len = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005911}
5912
James Ketrenosb095c382005-08-24 22:04:42 -05005913static void ipw_send_tgi_tx_key(struct ipw_priv *priv, int type, int index)
5914{
Zhu Yi0a7bcf22006-01-24 16:37:28 +08005915 struct ipw_tgi_tx_key key;
James Ketrenosb095c382005-08-24 22:04:42 -05005916
5917 if (!(priv->ieee->sec.flags & (1 << index)))
5918 return;
5919
Zhu Yi0a7bcf22006-01-24 16:37:28 +08005920 key.key_id = index;
5921 memcpy(key.key, priv->ieee->sec.keys[index], SCM_TEMPORAL_KEY_LENGTH);
5922 key.security_type = type;
5923 key.station_index = 0; /* always 0 for BSS */
5924 key.flags = 0;
James Ketrenosb095c382005-08-24 22:04:42 -05005925 /* 0 for new key; previous value of counter (after fatal error) */
Zhu Yi851ca262006-08-21 11:37:58 +08005926 key.tx_counter[0] = cpu_to_le32(0);
5927 key.tx_counter[1] = cpu_to_le32(0);
James Ketrenosb095c382005-08-24 22:04:42 -05005928
Zhu Yi0a7bcf22006-01-24 16:37:28 +08005929 ipw_send_cmd_pdu(priv, IPW_CMD_TGI_TX_KEY, sizeof(key), &key);
James Ketrenosb095c382005-08-24 22:04:42 -05005930}
5931
5932static void ipw_send_wep_keys(struct ipw_priv *priv, int type)
James Ketrenos43f66a62005-03-25 12:31:53 -06005933{
Zhu Yi0a7bcf22006-01-24 16:37:28 +08005934 struct ipw_wep_key key;
James Ketrenos43f66a62005-03-25 12:31:53 -06005935 int i;
James Ketrenos43f66a62005-03-25 12:31:53 -06005936
Zhu Yi0a7bcf22006-01-24 16:37:28 +08005937 key.cmd_id = DINO_CMD_WEP_KEY;
5938 key.seq_num = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005939
James Ketrenosb095c382005-08-24 22:04:42 -05005940 /* Note: AES keys cannot be set for multiple times.
5941 * Only set it at the first time. */
Jeff Garzikbf794512005-07-31 13:07:26 -04005942 for (i = 0; i < 4; i++) {
Zhu Yi0a7bcf22006-01-24 16:37:28 +08005943 key.key_index = i | type;
James Ketrenosb095c382005-08-24 22:04:42 -05005944 if (!(priv->ieee->sec.flags & (1 << i))) {
Zhu Yi0a7bcf22006-01-24 16:37:28 +08005945 key.key_size = 0;
James Ketrenosb095c382005-08-24 22:04:42 -05005946 continue;
James Ketrenos43f66a62005-03-25 12:31:53 -06005947 }
5948
Zhu Yi0a7bcf22006-01-24 16:37:28 +08005949 key.key_size = priv->ieee->sec.key_sizes[i];
5950 memcpy(key.key, priv->ieee->sec.keys[i], key.key_size);
James Ketrenosb095c382005-08-24 22:04:42 -05005951
Zhu Yi0a7bcf22006-01-24 16:37:28 +08005952 ipw_send_cmd_pdu(priv, IPW_CMD_WEP_KEY, sizeof(key), &key);
Jeff Garzikbf794512005-07-31 13:07:26 -04005953 }
James Ketrenos43f66a62005-03-25 12:31:53 -06005954}
5955
Zhu Yi1fbfea52005-08-05 17:22:56 +08005956static void ipw_set_hw_decrypt_unicast(struct ipw_priv *priv, int level)
5957{
5958 if (priv->ieee->host_encrypt)
5959 return;
5960
5961 switch (level) {
5962 case SEC_LEVEL_3:
5963 priv->sys_config.disable_unicast_decryption = 0;
5964 priv->ieee->host_decrypt = 0;
5965 break;
5966 case SEC_LEVEL_2:
5967 priv->sys_config.disable_unicast_decryption = 1;
5968 priv->ieee->host_decrypt = 1;
5969 break;
5970 case SEC_LEVEL_1:
5971 priv->sys_config.disable_unicast_decryption = 0;
5972 priv->ieee->host_decrypt = 0;
5973 break;
5974 case SEC_LEVEL_0:
5975 priv->sys_config.disable_unicast_decryption = 1;
5976 break;
5977 default:
5978 break;
5979 }
5980}
5981
5982static void ipw_set_hw_decrypt_multicast(struct ipw_priv *priv, int level)
5983{
5984 if (priv->ieee->host_encrypt)
5985 return;
5986
5987 switch (level) {
5988 case SEC_LEVEL_3:
5989 priv->sys_config.disable_multicast_decryption = 0;
5990 break;
5991 case SEC_LEVEL_2:
5992 priv->sys_config.disable_multicast_decryption = 1;
5993 break;
5994 case SEC_LEVEL_1:
5995 priv->sys_config.disable_multicast_decryption = 0;
5996 break;
5997 case SEC_LEVEL_0:
5998 priv->sys_config.disable_multicast_decryption = 1;
5999 break;
6000 default:
6001 break;
6002 }
6003}
6004
James Ketrenosb095c382005-08-24 22:04:42 -05006005static void ipw_set_hwcrypto_keys(struct ipw_priv *priv)
6006{
6007 switch (priv->ieee->sec.level) {
6008 case SEC_LEVEL_3:
Zhu Yid8bad6d2005-07-13 12:25:38 -05006009 if (priv->ieee->sec.flags & SEC_ACTIVE_KEY)
6010 ipw_send_tgi_tx_key(priv,
6011 DCT_FLAG_EXT_SECURITY_CCM,
6012 priv->ieee->sec.active_key);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006013
Hong Liu567deaf2005-08-31 18:07:22 +08006014 if (!priv->ieee->host_mc_decrypt)
6015 ipw_send_wep_keys(priv, DCW_WEP_KEY_SEC_TYPE_CCM);
James Ketrenosb095c382005-08-24 22:04:42 -05006016 break;
6017 case SEC_LEVEL_2:
Zhu Yid8bad6d2005-07-13 12:25:38 -05006018 if (priv->ieee->sec.flags & SEC_ACTIVE_KEY)
6019 ipw_send_tgi_tx_key(priv,
6020 DCT_FLAG_EXT_SECURITY_TKIP,
6021 priv->ieee->sec.active_key);
James Ketrenosb095c382005-08-24 22:04:42 -05006022 break;
6023 case SEC_LEVEL_1:
6024 ipw_send_wep_keys(priv, DCW_WEP_KEY_SEC_TYPE_WEP);
Hong Liu29cb8432005-09-12 10:43:33 -05006025 ipw_set_hw_decrypt_unicast(priv, priv->ieee->sec.level);
6026 ipw_set_hw_decrypt_multicast(priv, priv->ieee->sec.level);
James Ketrenosb095c382005-08-24 22:04:42 -05006027 break;
6028 case SEC_LEVEL_0:
6029 default:
6030 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06006031 }
6032}
6033
6034static void ipw_adhoc_check(void *data)
6035{
6036 struct ipw_priv *priv = data;
Jeff Garzikbf794512005-07-31 13:07:26 -04006037
James Ketrenosafbf30a2005-08-25 00:05:33 -05006038 if (priv->missed_adhoc_beacons++ > priv->disassociate_threshold &&
James Ketrenos43f66a62005-03-25 12:31:53 -06006039 !(priv->config & CFG_ADHOC_PERSIST)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006040 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF |
6041 IPW_DL_STATE | IPW_DL_ASSOC,
6042 "Missed beacon: %d - disassociate\n",
6043 priv->missed_adhoc_beacons);
James Ketrenos43f66a62005-03-25 12:31:53 -06006044 ipw_remove_current_network(priv);
6045 ipw_disassociate(priv);
6046 return;
6047 }
6048
Tejun Heobcb6d912011-01-26 12:12:50 +01006049 schedule_delayed_work(&priv->adhoc_check,
6050 le16_to_cpu(priv->assoc_request.beacon_interval));
James Ketrenos43f66a62005-03-25 12:31:53 -06006051}
6052
David Howellsc4028952006-11-22 14:57:56 +00006053static void ipw_bg_adhoc_check(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -05006054{
David Howellsc4028952006-11-22 14:57:56 +00006055 struct ipw_priv *priv =
6056 container_of(work, struct ipw_priv, adhoc_check.work);
Zhu Yi46441512006-01-24 16:37:59 +08006057 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00006058 ipw_adhoc_check(priv);
Zhu Yi46441512006-01-24 16:37:59 +08006059 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05006060}
6061
James Ketrenos43f66a62005-03-25 12:31:53 -06006062static void ipw_debug_config(struct ipw_priv *priv)
6063{
6064 IPW_DEBUG_INFO("Scan completed, no valid APs matched "
6065 "[CFG 0x%08X]\n", priv->config);
6066 if (priv->config & CFG_STATIC_CHANNEL)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04006067 IPW_DEBUG_INFO("Channel locked to %d\n", priv->channel);
James Ketrenos43f66a62005-03-25 12:31:53 -06006068 else
6069 IPW_DEBUG_INFO("Channel unlocked.\n");
6070 if (priv->config & CFG_STATIC_ESSID)
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07006071 IPW_DEBUG_INFO("ESSID locked to '%*pE'\n",
6072 priv->essid_len, priv->essid);
James Ketrenos43f66a62005-03-25 12:31:53 -06006073 else
6074 IPW_DEBUG_INFO("ESSID unlocked.\n");
6075 if (priv->config & CFG_STATIC_BSSID)
Johannes Berge1749612008-10-27 15:59:26 -07006076 IPW_DEBUG_INFO("BSSID locked to %pM\n", priv->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06006077 else
6078 IPW_DEBUG_INFO("BSSID unlocked.\n");
6079 if (priv->capability & CAP_PRIVACY_ON)
6080 IPW_DEBUG_INFO("PRIVACY on\n");
6081 else
6082 IPW_DEBUG_INFO("PRIVACY off\n");
6083 IPW_DEBUG_INFO("RATE MASK: 0x%08X\n", priv->rates_mask);
6084}
James Ketrenos43f66a62005-03-25 12:31:53 -06006085
Arjan van de Ven858119e2006-01-14 13:20:43 -08006086static void ipw_set_fixed_rate(struct ipw_priv *priv, int mode)
James Ketrenos43f66a62005-03-25 12:31:53 -06006087{
6088 /* TODO: Verify that this works... */
Reinette Chatre21f8a732009-08-18 10:25:05 -07006089 struct ipw_fixed_rate fr;
James Ketrenos43f66a62005-03-25 12:31:53 -06006090 u32 reg;
6091 u16 mask = 0;
Reinette Chatre21f8a732009-08-18 10:25:05 -07006092 u16 new_tx_rates = priv->rates_mask;
James Ketrenos43f66a62005-03-25 12:31:53 -06006093
Jeff Garzikbf794512005-07-31 13:07:26 -04006094 /* Identify 'current FW band' and match it with the fixed
James Ketrenos43f66a62005-03-25 12:31:53 -06006095 * Tx rates */
Jeff Garzikbf794512005-07-31 13:07:26 -04006096
James Ketrenos43f66a62005-03-25 12:31:53 -06006097 switch (priv->ieee->freq_band) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006098 case LIBIPW_52GHZ_BAND: /* A only */
James Ketrenos43f66a62005-03-25 12:31:53 -06006099 /* IEEE_A */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006100 if (priv->rates_mask & ~LIBIPW_OFDM_RATES_MASK) {
James Ketrenos43f66a62005-03-25 12:31:53 -06006101 /* Invalid fixed rate mask */
James Ketrenosea2b26e2005-08-24 21:25:16 -05006102 IPW_DEBUG_WX
6103 ("invalid fixed rate mask in ipw_set_fixed_rate\n");
Reinette Chatre21f8a732009-08-18 10:25:05 -07006104 new_tx_rates = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06006105 break;
6106 }
Jeff Garzikbf794512005-07-31 13:07:26 -04006107
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006108 new_tx_rates >>= LIBIPW_OFDM_SHIFT_MASK_A;
James Ketrenos43f66a62005-03-25 12:31:53 -06006109 break;
6110
Jeff Garzik0edd5b42005-09-07 00:48:31 -04006111 default: /* 2.4Ghz or Mixed */
James Ketrenos43f66a62005-03-25 12:31:53 -06006112 /* IEEE_B */
James Ketrenosb095c382005-08-24 22:04:42 -05006113 if (mode == IEEE_B) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006114 if (new_tx_rates & ~LIBIPW_CCK_RATES_MASK) {
James Ketrenos43f66a62005-03-25 12:31:53 -06006115 /* Invalid fixed rate mask */
James Ketrenosea2b26e2005-08-24 21:25:16 -05006116 IPW_DEBUG_WX
6117 ("invalid fixed rate mask in ipw_set_fixed_rate\n");
Reinette Chatre21f8a732009-08-18 10:25:05 -07006118 new_tx_rates = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06006119 }
6120 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04006121 }
James Ketrenos43f66a62005-03-25 12:31:53 -06006122
6123 /* IEEE_G */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006124 if (new_tx_rates & ~(LIBIPW_CCK_RATES_MASK |
6125 LIBIPW_OFDM_RATES_MASK)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06006126 /* Invalid fixed rate mask */
James Ketrenosea2b26e2005-08-24 21:25:16 -05006127 IPW_DEBUG_WX
6128 ("invalid fixed rate mask in ipw_set_fixed_rate\n");
Reinette Chatre21f8a732009-08-18 10:25:05 -07006129 new_tx_rates = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06006130 break;
6131 }
6132
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006133 if (LIBIPW_OFDM_RATE_6MB_MASK & new_tx_rates) {
6134 mask |= (LIBIPW_OFDM_RATE_6MB_MASK >> 1);
6135 new_tx_rates &= ~LIBIPW_OFDM_RATE_6MB_MASK;
James Ketrenos43f66a62005-03-25 12:31:53 -06006136 }
Jeff Garzikbf794512005-07-31 13:07:26 -04006137
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006138 if (LIBIPW_OFDM_RATE_9MB_MASK & new_tx_rates) {
6139 mask |= (LIBIPW_OFDM_RATE_9MB_MASK >> 1);
6140 new_tx_rates &= ~LIBIPW_OFDM_RATE_9MB_MASK;
James Ketrenos43f66a62005-03-25 12:31:53 -06006141 }
Jeff Garzikbf794512005-07-31 13:07:26 -04006142
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006143 if (LIBIPW_OFDM_RATE_12MB_MASK & new_tx_rates) {
6144 mask |= (LIBIPW_OFDM_RATE_12MB_MASK >> 1);
6145 new_tx_rates &= ~LIBIPW_OFDM_RATE_12MB_MASK;
James Ketrenos43f66a62005-03-25 12:31:53 -06006146 }
Jeff Garzikbf794512005-07-31 13:07:26 -04006147
Reinette Chatre21f8a732009-08-18 10:25:05 -07006148 new_tx_rates |= mask;
James Ketrenos43f66a62005-03-25 12:31:53 -06006149 break;
6150 }
6151
Reinette Chatre21f8a732009-08-18 10:25:05 -07006152 fr.tx_rates = cpu_to_le16(new_tx_rates);
6153
James Ketrenos43f66a62005-03-25 12:31:53 -06006154 reg = ipw_read32(priv, IPW_MEM_FIXED_OVERRIDE);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04006155 ipw_write_reg32(priv, reg, *(u32 *) & fr);
James Ketrenos43f66a62005-03-25 12:31:53 -06006156}
6157
James Ketrenosea2b26e2005-08-24 21:25:16 -05006158static void ipw_abort_scan(struct ipw_priv *priv)
6159{
6160 int err;
6161
6162 if (priv->status & STATUS_SCAN_ABORTING) {
6163 IPW_DEBUG_HC("Ignoring concurrent scan abort request.\n");
6164 return;
6165 }
6166 priv->status |= STATUS_SCAN_ABORTING;
6167
6168 err = ipw_send_scan_abort(priv);
6169 if (err)
6170 IPW_DEBUG_HC("Request to abort scan failed.\n");
6171}
6172
James Ketrenosafbf30a2005-08-25 00:05:33 -05006173static void ipw_add_scan_channels(struct ipw_priv *priv,
6174 struct ipw_scan_request_ext *scan,
6175 int scan_type)
6176{
6177 int channel_index = 0;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006178 const struct libipw_geo *geo;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006179 int i;
6180
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006181 geo = libipw_get_geo(priv->ieee);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006182
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006183 if (priv->ieee->freq_band & LIBIPW_52GHZ_BAND) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006184 int start = channel_index;
6185 for (i = 0; i < geo->a_channels; i++) {
6186 if ((priv->status & STATUS_ASSOCIATED) &&
6187 geo->a[i].channel == priv->channel)
6188 continue;
6189 channel_index++;
6190 scan->channels_list[channel_index] = geo->a[i].channel;
Liu Hong1fe0adb2005-08-19 09:33:10 -05006191 ipw_set_scan_type(scan, channel_index,
6192 geo->a[i].
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006193 flags & LIBIPW_CH_PASSIVE_ONLY ?
Liu Hong1fe0adb2005-08-19 09:33:10 -05006194 IPW_SCAN_PASSIVE_FULL_DWELL_SCAN :
6195 scan_type);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006196 }
6197
6198 if (start != channel_index) {
6199 scan->channels_list[start] = (u8) (IPW_A_MODE << 6) |
6200 (channel_index - start);
6201 channel_index++;
6202 }
6203 }
6204
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006205 if (priv->ieee->freq_band & LIBIPW_24GHZ_BAND) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006206 int start = channel_index;
6207 if (priv->config & CFG_SPEED_SCAN) {
Liu Hong1fe0adb2005-08-19 09:33:10 -05006208 int index;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006209 u8 channels[LIBIPW_24GHZ_CHANNELS] = {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006210 /* nop out the list */
6211 [0] = 0
6212 };
6213
6214 u8 channel;
Zhu Yi7dd24592009-07-27 10:10:20 +08006215 while (channel_index < IPW_SCAN_CHANNELS - 1) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006216 channel =
6217 priv->speed_scan[priv->speed_scan_pos];
6218 if (channel == 0) {
6219 priv->speed_scan_pos = 0;
6220 channel = priv->speed_scan[0];
6221 }
6222 if ((priv->status & STATUS_ASSOCIATED) &&
6223 channel == priv->channel) {
6224 priv->speed_scan_pos++;
6225 continue;
6226 }
6227
6228 /* If this channel has already been
6229 * added in scan, break from loop
6230 * and this will be the first channel
6231 * in the next scan.
6232 */
6233 if (channels[channel - 1] != 0)
6234 break;
6235
6236 channels[channel - 1] = 1;
6237 priv->speed_scan_pos++;
6238 channel_index++;
6239 scan->channels_list[channel_index] = channel;
Liu Hong1fe0adb2005-08-19 09:33:10 -05006240 index =
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006241 libipw_channel_to_index(priv->ieee, channel);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006242 ipw_set_scan_type(scan, channel_index,
Liu Hong1fe0adb2005-08-19 09:33:10 -05006243 geo->bg[index].
6244 flags &
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006245 LIBIPW_CH_PASSIVE_ONLY ?
Liu Hong1fe0adb2005-08-19 09:33:10 -05006246 IPW_SCAN_PASSIVE_FULL_DWELL_SCAN
6247 : scan_type);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006248 }
6249 } else {
6250 for (i = 0; i < geo->bg_channels; i++) {
6251 if ((priv->status & STATUS_ASSOCIATED) &&
6252 geo->bg[i].channel == priv->channel)
6253 continue;
6254 channel_index++;
6255 scan->channels_list[channel_index] =
6256 geo->bg[i].channel;
6257 ipw_set_scan_type(scan, channel_index,
Liu Hong1fe0adb2005-08-19 09:33:10 -05006258 geo->bg[i].
6259 flags &
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006260 LIBIPW_CH_PASSIVE_ONLY ?
Liu Hong1fe0adb2005-08-19 09:33:10 -05006261 IPW_SCAN_PASSIVE_FULL_DWELL_SCAN
6262 : scan_type);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006263 }
6264 }
6265
6266 if (start != channel_index) {
6267 scan->channels_list[start] = (u8) (IPW_B_MODE << 6) |
6268 (channel_index - start);
6269 }
6270 }
6271}
6272
Helmut Schaa14a4dfe2008-12-10 13:17:26 +01006273static int ipw_passive_dwell_time(struct ipw_priv *priv)
6274{
6275 /* staying on passive channels longer than the DTIM interval during a
6276 * scan, while associated, causes the firmware to cancel the scan
6277 * without notification. Hence, don't stay on passive channels longer
6278 * than the beacon interval.
6279 */
6280 if (priv->status & STATUS_ASSOCIATED
6281 && priv->assoc_network->beacon_interval > 10)
6282 return priv->assoc_network->beacon_interval - 10;
6283 else
6284 return 120;
6285}
6286
Dan Williamsea177302008-06-02 17:51:23 -04006287static int ipw_request_scan_helper(struct ipw_priv *priv, int type, int direct)
James Ketrenosea2b26e2005-08-24 21:25:16 -05006288{
6289 struct ipw_scan_request_ext scan;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006290 int err = 0, scan_type;
6291
6292 if (!(priv->status & STATUS_INIT) ||
6293 (priv->status & STATUS_EXIT_PENDING))
6294 return 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006295
Zhu Yi46441512006-01-24 16:37:59 +08006296 mutex_lock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05006297
Dan Williamsea177302008-06-02 17:51:23 -04006298 if (direct && (priv->direct_scan_ssid_len == 0)) {
6299 IPW_DEBUG_HC("Direct scan requested but no SSID to scan for\n");
6300 priv->status &= ~STATUS_DIRECT_SCAN_PENDING;
6301 goto done;
6302 }
6303
James Ketrenosea2b26e2005-08-24 21:25:16 -05006304 if (priv->status & STATUS_SCANNING) {
Dan Williamsea177302008-06-02 17:51:23 -04006305 IPW_DEBUG_HC("Concurrent scan requested. Queuing.\n");
6306 priv->status |= direct ? STATUS_DIRECT_SCAN_PENDING :
6307 STATUS_SCAN_PENDING;
James Ketrenosb095c382005-08-24 22:04:42 -05006308 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006309 }
6310
James Ketrenosafbf30a2005-08-25 00:05:33 -05006311 if (!(priv->status & STATUS_SCAN_FORCED) &&
6312 priv->status & STATUS_SCAN_ABORTING) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006313 IPW_DEBUG_HC("Scan request while abort pending. Queuing.\n");
Dan Williamsea177302008-06-02 17:51:23 -04006314 priv->status |= direct ? STATUS_DIRECT_SCAN_PENDING :
6315 STATUS_SCAN_PENDING;
James Ketrenosb095c382005-08-24 22:04:42 -05006316 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006317 }
6318
6319 if (priv->status & STATUS_RF_KILL_MASK) {
Dan Williamsea177302008-06-02 17:51:23 -04006320 IPW_DEBUG_HC("Queuing scan due to RF Kill activation\n");
6321 priv->status |= direct ? STATUS_DIRECT_SCAN_PENDING :
6322 STATUS_SCAN_PENDING;
James Ketrenosb095c382005-08-24 22:04:42 -05006323 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006324 }
6325
6326 memset(&scan, 0, sizeof(scan));
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006327 scan.full_scan_index = cpu_to_le32(libipw_get_scans(priv->ieee));
James Ketrenosea2b26e2005-08-24 21:25:16 -05006328
Zhu Yi094c4d22006-08-21 11:39:03 +08006329 if (type == IW_SCAN_TYPE_PASSIVE) {
Helmut Schaa14a4dfe2008-12-10 13:17:26 +01006330 IPW_DEBUG_WX("use passive scanning\n");
6331 scan_type = IPW_SCAN_PASSIVE_FULL_DWELL_SCAN;
Zhu Yi094c4d22006-08-21 11:39:03 +08006332 scan.dwell_time[IPW_SCAN_PASSIVE_FULL_DWELL_SCAN] =
Helmut Schaa14a4dfe2008-12-10 13:17:26 +01006333 cpu_to_le16(ipw_passive_dwell_time(priv));
Zhu Yi094c4d22006-08-21 11:39:03 +08006334 ipw_add_scan_channels(priv, &scan, scan_type);
6335 goto send_request;
6336 }
6337
6338 /* Use active scan by default. */
Helmut Schaa14a4dfe2008-12-10 13:17:26 +01006339 if (priv->config & CFG_SPEED_SCAN)
James Ketrenosb095c382005-08-24 22:04:42 -05006340 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_SCAN] =
Zhu Yi094c4d22006-08-21 11:39:03 +08006341 cpu_to_le16(30);
James Ketrenosb095c382005-08-24 22:04:42 -05006342 else
6343 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_SCAN] =
Zhu Yi094c4d22006-08-21 11:39:03 +08006344 cpu_to_le16(20);
James Ketrenosb095c382005-08-24 22:04:42 -05006345
James Ketrenosa613bff2005-08-24 21:43:11 -05006346 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_AND_DIRECT_SCAN] =
Zhu Yi094c4d22006-08-21 11:39:03 +08006347 cpu_to_le16(20);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006348
Helmut Schaa14a4dfe2008-12-10 13:17:26 +01006349 scan.dwell_time[IPW_SCAN_PASSIVE_FULL_DWELL_SCAN] =
6350 cpu_to_le16(ipw_passive_dwell_time(priv));
Dan Williamsea177302008-06-02 17:51:23 -04006351 scan.dwell_time[IPW_SCAN_ACTIVE_DIRECT_SCAN] = cpu_to_le16(20);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006352
James Ketrenosb095c382005-08-24 22:04:42 -05006353#ifdef CONFIG_IPW2200_MONITOR
James Ketrenosea2b26e2005-08-24 21:25:16 -05006354 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006355 u8 channel;
James Ketrenosb095c382005-08-24 22:04:42 -05006356 u8 band = 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006357
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006358 switch (libipw_is_valid_channel(priv->ieee, priv->channel)) {
6359 case LIBIPW_52GHZ_BAND:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006360 band = (u8) (IPW_A_MODE << 6) | 1;
James Ketrenosb095c382005-08-24 22:04:42 -05006361 channel = priv->channel;
6362 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006363
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006364 case LIBIPW_24GHZ_BAND:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006365 band = (u8) (IPW_B_MODE << 6) | 1;
James Ketrenosb095c382005-08-24 22:04:42 -05006366 channel = priv->channel;
6367 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006368
James Ketrenosb095c382005-08-24 22:04:42 -05006369 default:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006370 band = (u8) (IPW_B_MODE << 6) | 1;
6371 channel = 9;
James Ketrenosb095c382005-08-24 22:04:42 -05006372 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006373 }
6374
James Ketrenosb095c382005-08-24 22:04:42 -05006375 scan.channels_list[0] = band;
6376 scan.channels_list[1] = channel;
6377 ipw_set_scan_type(&scan, 1, IPW_SCAN_PASSIVE_FULL_DWELL_SCAN);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006378
James Ketrenosb095c382005-08-24 22:04:42 -05006379 /* NOTE: The card will sit on this channel for this time
6380 * period. Scan aborts are timing sensitive and frequently
6381 * result in firmware restarts. As such, it is best to
6382 * set a small dwell_time here and just keep re-issuing
6383 * scans. Otherwise fast channel hopping will not actually
6384 * hop channels.
6385 *
6386 * TODO: Move SPEED SCAN support to all modes and bands */
James Ketrenosa613bff2005-08-24 21:43:11 -05006387 scan.dwell_time[IPW_SCAN_PASSIVE_FULL_DWELL_SCAN] =
Zhu Yi094c4d22006-08-21 11:39:03 +08006388 cpu_to_le16(2000);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006389 } else {
James Ketrenosb095c382005-08-24 22:04:42 -05006390#endif /* CONFIG_IPW2200_MONITOR */
Dan Williamsea177302008-06-02 17:51:23 -04006391 /* Honor direct scans first, otherwise if we are roaming make
6392 * this a direct scan for the current network. Finally,
6393 * ensure that every other scan is a fast channel hop scan */
6394 if (direct) {
6395 err = ipw_send_ssid(priv, priv->direct_scan_ssid,
6396 priv->direct_scan_ssid_len);
6397 if (err) {
6398 IPW_DEBUG_HC("Attempt to send SSID command "
6399 "failed\n");
6400 goto done;
6401 }
6402
6403 scan_type = IPW_SCAN_ACTIVE_BROADCAST_AND_DIRECT_SCAN;
6404 } else if ((priv->status & STATUS_ROAMING)
6405 || (!(priv->status & STATUS_ASSOCIATED)
6406 && (priv->config & CFG_STATIC_ESSID)
6407 && (le32_to_cpu(scan.full_scan_index) % 2))) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006408 err = ipw_send_ssid(priv, priv->essid, priv->essid_len);
6409 if (err) {
James Ketrenosb095c382005-08-24 22:04:42 -05006410 IPW_DEBUG_HC("Attempt to send SSID command "
6411 "failed.\n");
6412 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006413 }
6414
6415 scan_type = IPW_SCAN_ACTIVE_BROADCAST_AND_DIRECT_SCAN;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006416 } else
James Ketrenosea2b26e2005-08-24 21:25:16 -05006417 scan_type = IPW_SCAN_ACTIVE_BROADCAST_SCAN;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006418
James Ketrenosafbf30a2005-08-25 00:05:33 -05006419 ipw_add_scan_channels(priv, &scan, scan_type);
James Ketrenosb095c382005-08-24 22:04:42 -05006420#ifdef CONFIG_IPW2200_MONITOR
James Ketrenosea2b26e2005-08-24 21:25:16 -05006421 }
6422#endif
6423
Zhu Yi094c4d22006-08-21 11:39:03 +08006424send_request:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006425 err = ipw_send_scan_request_ext(priv, &scan);
6426 if (err) {
6427 IPW_DEBUG_HC("Sending scan command failed: %08X\n", err);
James Ketrenosb095c382005-08-24 22:04:42 -05006428 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006429 }
6430
6431 priv->status |= STATUS_SCANNING;
Dan Williamsea177302008-06-02 17:51:23 -04006432 if (direct) {
6433 priv->status &= ~STATUS_DIRECT_SCAN_PENDING;
6434 priv->direct_scan_ssid_len = 0;
6435 } else
6436 priv->status &= ~STATUS_SCAN_PENDING;
6437
Tejun Heobcb6d912011-01-26 12:12:50 +01006438 schedule_delayed_work(&priv->scan_check, IPW_SCAN_CHECK_WATCHDOG);
Zhu Yi094c4d22006-08-21 11:39:03 +08006439done:
Zhu Yi46441512006-01-24 16:37:59 +08006440 mutex_unlock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05006441 return err;
James Ketrenosc848d0a2005-08-24 21:56:24 -05006442}
6443
David Howellsc4028952006-11-22 14:57:56 +00006444static void ipw_request_passive_scan(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -05006445{
David Howellsc4028952006-11-22 14:57:56 +00006446 struct ipw_priv *priv =
Dan Williamsea177302008-06-02 17:51:23 -04006447 container_of(work, struct ipw_priv, request_passive_scan.work);
6448 ipw_request_scan_helper(priv, IW_SCAN_TYPE_PASSIVE, 0);
David Howellsc4028952006-11-22 14:57:56 +00006449}
6450
6451static void ipw_request_scan(struct work_struct *work)
6452{
6453 struct ipw_priv *priv =
6454 container_of(work, struct ipw_priv, request_scan.work);
Dan Williamsea177302008-06-02 17:51:23 -04006455 ipw_request_scan_helper(priv, IW_SCAN_TYPE_ACTIVE, 0);
6456}
6457
6458static void ipw_request_direct_scan(struct work_struct *work)
6459{
6460 struct ipw_priv *priv =
6461 container_of(work, struct ipw_priv, request_direct_scan.work);
6462 ipw_request_scan_helper(priv, IW_SCAN_TYPE_ACTIVE, 1);
David Howellsc4028952006-11-22 14:57:56 +00006463}
6464
6465static void ipw_bg_abort_scan(struct work_struct *work)
6466{
6467 struct ipw_priv *priv =
6468 container_of(work, struct ipw_priv, abort_scan);
Zhu Yi46441512006-01-24 16:37:59 +08006469 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00006470 ipw_abort_scan(priv);
Zhu Yi46441512006-01-24 16:37:59 +08006471 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05006472}
6473
James Ketrenosea2b26e2005-08-24 21:25:16 -05006474static int ipw_wpa_enable(struct ipw_priv *priv, int value)
6475{
James Ketrenosb095c382005-08-24 22:04:42 -05006476 /* This is called when wpa_supplicant loads and closes the driver
6477 * interface. */
Hong Liucdd1fa12005-08-31 18:14:27 +08006478 priv->ieee->wpa_enabled = value;
James Ketrenosb095c382005-08-24 22:04:42 -05006479 return 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006480}
6481
James Ketrenosea2b26e2005-08-24 21:25:16 -05006482static int ipw_wpa_set_auth_algs(struct ipw_priv *priv, int value)
6483{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006484 struct libipw_device *ieee = priv->ieee;
6485 struct libipw_security sec = {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006486 .flags = SEC_AUTH_MODE,
6487 };
6488 int ret = 0;
6489
James Ketrenosafbf30a2005-08-25 00:05:33 -05006490 if (value & IW_AUTH_ALG_SHARED_KEY) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006491 sec.auth_mode = WLAN_AUTH_SHARED_KEY;
6492 ieee->open_wep = 0;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006493 } else if (value & IW_AUTH_ALG_OPEN_SYSTEM) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006494 sec.auth_mode = WLAN_AUTH_OPEN;
6495 ieee->open_wep = 1;
Zhu Yi3e234b42006-01-24 16:36:52 +08006496 } else if (value & IW_AUTH_ALG_LEAP) {
6497 sec.auth_mode = WLAN_AUTH_LEAP;
6498 ieee->open_wep = 1;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006499 } else
6500 return -EINVAL;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006501
6502 if (ieee->set_security)
6503 ieee->set_security(ieee->dev, &sec);
6504 else
6505 ret = -EOPNOTSUPP;
6506
6507 return ret;
6508}
6509
Adrian Bunka73e22b2006-01-21 01:39:42 +01006510static void ipw_wpa_assoc_frame(struct ipw_priv *priv, char *wpa_ie,
6511 int wpa_ie_len)
James Ketrenosafbf30a2005-08-25 00:05:33 -05006512{
6513 /* make sure WPA is enabled */
6514 ipw_wpa_enable(priv, 1);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006515}
6516
6517static int ipw_set_rsn_capa(struct ipw_priv *priv,
6518 char *capabilities, int length)
6519{
James Ketrenosafbf30a2005-08-25 00:05:33 -05006520 IPW_DEBUG_HC("HOST_CMD_RSN_CAPABILITIES\n");
6521
Zhu Yi0a7bcf22006-01-24 16:37:28 +08006522 return ipw_send_cmd_pdu(priv, IPW_CMD_RSN_CAPABILITIES, length,
Zhu Yi2638bc32006-01-24 16:37:52 +08006523 capabilities);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006524}
6525
James Ketrenosafbf30a2005-08-25 00:05:33 -05006526/*
6527 * WE-18 support
6528 */
6529
6530/* SIOCSIWGENIE */
6531static int ipw_wx_set_genie(struct net_device *dev,
6532 struct iw_request_info *info,
6533 union iwreq_data *wrqu, char *extra)
6534{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006535 struct ipw_priv *priv = libipw_priv(dev);
6536 struct libipw_device *ieee = priv->ieee;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006537 u8 *buf;
6538 int err = 0;
6539
6540 if (wrqu->data.length > MAX_WPA_IE_LEN ||
6541 (wrqu->data.length && extra == NULL))
6542 return -EINVAL;
6543
James Ketrenosafbf30a2005-08-25 00:05:33 -05006544 if (wrqu->data.length) {
Julia Lawalld3e50332010-05-15 23:21:01 +02006545 buf = kmemdup(extra, wrqu->data.length, GFP_KERNEL);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006546 if (buf == NULL) {
6547 err = -ENOMEM;
6548 goto out;
6549 }
6550
James Ketrenosafbf30a2005-08-25 00:05:33 -05006551 kfree(ieee->wpa_ie);
6552 ieee->wpa_ie = buf;
6553 ieee->wpa_ie_len = wrqu->data.length;
6554 } else {
6555 kfree(ieee->wpa_ie);
6556 ieee->wpa_ie = NULL;
6557 ieee->wpa_ie_len = 0;
6558 }
6559
6560 ipw_wpa_assoc_frame(priv, ieee->wpa_ie, ieee->wpa_ie_len);
6561 out:
James Ketrenosafbf30a2005-08-25 00:05:33 -05006562 return err;
6563}
6564
6565/* SIOCGIWGENIE */
6566static int ipw_wx_get_genie(struct net_device *dev,
6567 struct iw_request_info *info,
6568 union iwreq_data *wrqu, char *extra)
6569{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006570 struct ipw_priv *priv = libipw_priv(dev);
6571 struct libipw_device *ieee = priv->ieee;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006572 int err = 0;
6573
James Ketrenosafbf30a2005-08-25 00:05:33 -05006574 if (ieee->wpa_ie_len == 0 || ieee->wpa_ie == NULL) {
6575 wrqu->data.length = 0;
6576 goto out;
6577 }
6578
6579 if (wrqu->data.length < ieee->wpa_ie_len) {
6580 err = -E2BIG;
6581 goto out;
6582 }
6583
6584 wrqu->data.length = ieee->wpa_ie_len;
6585 memcpy(extra, ieee->wpa_ie, ieee->wpa_ie_len);
6586
6587 out:
James Ketrenosafbf30a2005-08-25 00:05:33 -05006588 return err;
6589}
6590
Zhu Yi1fbfea52005-08-05 17:22:56 +08006591static int wext_cipher2level(int cipher)
6592{
6593 switch (cipher) {
6594 case IW_AUTH_CIPHER_NONE:
6595 return SEC_LEVEL_0;
6596 case IW_AUTH_CIPHER_WEP40:
6597 case IW_AUTH_CIPHER_WEP104:
6598 return SEC_LEVEL_1;
6599 case IW_AUTH_CIPHER_TKIP:
6600 return SEC_LEVEL_2;
6601 case IW_AUTH_CIPHER_CCMP:
6602 return SEC_LEVEL_3;
6603 default:
6604 return -1;
6605 }
6606}
6607
James Ketrenosafbf30a2005-08-25 00:05:33 -05006608/* SIOCSIWAUTH */
6609static int ipw_wx_set_auth(struct net_device *dev,
6610 struct iw_request_info *info,
6611 union iwreq_data *wrqu, char *extra)
6612{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006613 struct ipw_priv *priv = libipw_priv(dev);
6614 struct libipw_device *ieee = priv->ieee;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006615 struct iw_param *param = &wrqu->param;
John W. Linville274bfb82008-10-29 11:35:05 -04006616 struct lib80211_crypt_data *crypt;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006617 unsigned long flags;
6618 int ret = 0;
6619
6620 switch (param->flags & IW_AUTH_INDEX) {
6621 case IW_AUTH_WPA_VERSION:
Zhu Yi1fbfea52005-08-05 17:22:56 +08006622 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006623 case IW_AUTH_CIPHER_PAIRWISE:
Zhu Yi1fbfea52005-08-05 17:22:56 +08006624 ipw_set_hw_decrypt_unicast(priv,
6625 wext_cipher2level(param->value));
6626 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006627 case IW_AUTH_CIPHER_GROUP:
Zhu Yi1fbfea52005-08-05 17:22:56 +08006628 ipw_set_hw_decrypt_multicast(priv,
6629 wext_cipher2level(param->value));
6630 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006631 case IW_AUTH_KEY_MGMT:
6632 /*
6633 * ipw2200 does not use these parameters
6634 */
6635 break;
6636
6637 case IW_AUTH_TKIP_COUNTERMEASURES:
John W. Linville274bfb82008-10-29 11:35:05 -04006638 crypt = priv->ieee->crypt_info.crypt[priv->ieee->crypt_info.tx_keyidx];
James Ketrenos991d1cc2005-10-13 09:26:48 +00006639 if (!crypt || !crypt->ops->set_flags || !crypt->ops->get_flags)
James Ketrenosafbf30a2005-08-25 00:05:33 -05006640 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006641
6642 flags = crypt->ops->get_flags(crypt->priv);
6643
6644 if (param->value)
6645 flags |= IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
6646 else
6647 flags &= ~IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
6648
6649 crypt->ops->set_flags(flags, crypt->priv);
6650
6651 break;
6652
6653 case IW_AUTH_DROP_UNENCRYPTED:{
6654 /* HACK:
6655 *
6656 * wpa_supplicant calls set_wpa_enabled when the driver
6657 * is loaded and unloaded, regardless of if WPA is being
6658 * used. No other calls are made which can be used to
6659 * determine if encryption will be used or not prior to
6660 * association being expected. If encryption is not being
6661 * used, drop_unencrypted is set to false, else true -- we
6662 * can use this to determine if the CAP_PRIVACY_ON bit should
6663 * be set.
6664 */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006665 struct libipw_security sec = {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006666 .flags = SEC_ENABLED,
6667 .enabled = param->value,
6668 };
6669 priv->ieee->drop_unencrypted = param->value;
6670 /* We only change SEC_LEVEL for open mode. Others
6671 * are set by ipw_wpa_set_encryption.
6672 */
6673 if (!param->value) {
6674 sec.flags |= SEC_LEVEL;
6675 sec.level = SEC_LEVEL_0;
6676 } else {
6677 sec.flags |= SEC_LEVEL;
6678 sec.level = SEC_LEVEL_1;
6679 }
6680 if (priv->ieee->set_security)
6681 priv->ieee->set_security(priv->ieee->dev, &sec);
6682 break;
6683 }
6684
6685 case IW_AUTH_80211_AUTH_ALG:
6686 ret = ipw_wpa_set_auth_algs(priv, param->value);
6687 break;
6688
6689 case IW_AUTH_WPA_ENABLED:
6690 ret = ipw_wpa_enable(priv, param->value);
Zhu Yie3c5a642006-04-13 17:21:13 +08006691 ipw_disassociate(priv);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006692 break;
6693
6694 case IW_AUTH_RX_UNENCRYPTED_EAPOL:
6695 ieee->ieee802_1x = param->value;
6696 break;
6697
James Ketrenosafbf30a2005-08-25 00:05:33 -05006698 case IW_AUTH_PRIVACY_INVOKED:
6699 ieee->privacy_invoked = param->value;
6700 break;
6701
6702 default:
6703 return -EOPNOTSUPP;
6704 }
6705 return ret;
6706}
6707
6708/* SIOCGIWAUTH */
6709static int ipw_wx_get_auth(struct net_device *dev,
6710 struct iw_request_info *info,
6711 union iwreq_data *wrqu, char *extra)
6712{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006713 struct ipw_priv *priv = libipw_priv(dev);
6714 struct libipw_device *ieee = priv->ieee;
John W. Linville274bfb82008-10-29 11:35:05 -04006715 struct lib80211_crypt_data *crypt;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006716 struct iw_param *param = &wrqu->param;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006717
6718 switch (param->flags & IW_AUTH_INDEX) {
6719 case IW_AUTH_WPA_VERSION:
6720 case IW_AUTH_CIPHER_PAIRWISE:
6721 case IW_AUTH_CIPHER_GROUP:
6722 case IW_AUTH_KEY_MGMT:
6723 /*
6724 * wpa_supplicant will control these internally
6725 */
Wei Yongjun8df0f1e2012-12-05 03:08:11 -05006726 return -EOPNOTSUPP;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006727
6728 case IW_AUTH_TKIP_COUNTERMEASURES:
John W. Linville274bfb82008-10-29 11:35:05 -04006729 crypt = priv->ieee->crypt_info.crypt[priv->ieee->crypt_info.tx_keyidx];
James Ketrenos991d1cc2005-10-13 09:26:48 +00006730 if (!crypt || !crypt->ops->get_flags)
James Ketrenosafbf30a2005-08-25 00:05:33 -05006731 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006732
6733 param->value = (crypt->ops->get_flags(crypt->priv) &
6734 IEEE80211_CRYPTO_TKIP_COUNTERMEASURES) ? 1 : 0;
6735
6736 break;
6737
6738 case IW_AUTH_DROP_UNENCRYPTED:
6739 param->value = ieee->drop_unencrypted;
6740 break;
6741
6742 case IW_AUTH_80211_AUTH_ALG:
6743 param->value = ieee->sec.auth_mode;
6744 break;
6745
6746 case IW_AUTH_WPA_ENABLED:
6747 param->value = ieee->wpa_enabled;
6748 break;
6749
6750 case IW_AUTH_RX_UNENCRYPTED_EAPOL:
6751 param->value = ieee->ieee802_1x;
6752 break;
6753
6754 case IW_AUTH_ROAMING_CONTROL:
6755 case IW_AUTH_PRIVACY_INVOKED:
6756 param->value = ieee->privacy_invoked;
6757 break;
6758
6759 default:
6760 return -EOPNOTSUPP;
6761 }
6762 return 0;
6763}
6764
6765/* SIOCSIWENCODEEXT */
6766static int ipw_wx_set_encodeext(struct net_device *dev,
6767 struct iw_request_info *info,
6768 union iwreq_data *wrqu, char *extra)
6769{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006770 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006771 struct iw_encode_ext *ext = (struct iw_encode_ext *)extra;
6772
6773 if (hwcrypto) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006774 if (ext->alg == IW_ENCODE_ALG_TKIP) {
Hong Liu567deaf2005-08-31 18:07:22 +08006775 /* IPW HW can't build TKIP MIC,
6776 host decryption still needed */
6777 if (ext->ext_flags & IW_ENCODE_EXT_GROUP_KEY)
6778 priv->ieee->host_mc_decrypt = 1;
6779 else {
6780 priv->ieee->host_encrypt = 0;
6781 priv->ieee->host_encrypt_msdu = 1;
6782 priv->ieee->host_decrypt = 1;
6783 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05006784 } else {
6785 priv->ieee->host_encrypt = 0;
6786 priv->ieee->host_encrypt_msdu = 0;
6787 priv->ieee->host_decrypt = 0;
Hong Liu567deaf2005-08-31 18:07:22 +08006788 priv->ieee->host_mc_decrypt = 0;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006789 }
6790 }
6791
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006792 return libipw_wx_set_encodeext(priv->ieee, info, wrqu, extra);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006793}
6794
6795/* SIOCGIWENCODEEXT */
6796static int ipw_wx_get_encodeext(struct net_device *dev,
6797 struct iw_request_info *info,
6798 union iwreq_data *wrqu, char *extra)
6799{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006800 struct ipw_priv *priv = libipw_priv(dev);
6801 return libipw_wx_get_encodeext(priv->ieee, info, wrqu, extra);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006802}
6803
6804/* SIOCSIWMLME */
6805static int ipw_wx_set_mlme(struct net_device *dev,
6806 struct iw_request_info *info,
6807 union iwreq_data *wrqu, char *extra)
6808{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006809 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006810 struct iw_mlme *mlme = (struct iw_mlme *)extra;
Al Viroe62e1ee2007-12-27 01:36:46 -05006811 __le16 reason;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006812
6813 reason = cpu_to_le16(mlme->reason_code);
6814
6815 switch (mlme->cmd) {
6816 case IW_MLME_DEAUTH:
Pavel Machek67fd6b42006-07-11 15:34:05 +02006817 /* silently ignore */
James Ketrenosafbf30a2005-08-25 00:05:33 -05006818 break;
6819
6820 case IW_MLME_DISASSOC:
6821 ipw_disassociate(priv);
6822 break;
6823
6824 default:
6825 return -EOPNOTSUPP;
6826 }
6827 return 0;
6828}
James Ketrenosea2b26e2005-08-24 21:25:16 -05006829
Zhu Yie43e3c12006-04-13 17:20:45 +08006830#ifdef CONFIG_IPW2200_QOS
James Ketrenosb095c382005-08-24 22:04:42 -05006831
6832/* QoS */
6833/*
6834* get the modulation type of the current network or
6835* the card current mode
6836*/
Adrian Bunk53d0bcf2006-03-04 13:14:31 +01006837static u8 ipw_qos_current_mode(struct ipw_priv * priv)
James Ketrenosb095c382005-08-24 22:04:42 -05006838{
6839 u8 mode = 0;
6840
6841 if (priv->status & STATUS_ASSOCIATED) {
6842 unsigned long flags;
6843
6844 spin_lock_irqsave(&priv->ieee->lock, flags);
6845 mode = priv->assoc_network->mode;
6846 spin_unlock_irqrestore(&priv->ieee->lock, flags);
6847 } else {
6848 mode = priv->ieee->mode;
6849 }
Frans Pop9fd1ea42010-03-24 19:46:31 +01006850 IPW_DEBUG_QOS("QoS network/card mode %d\n", mode);
James Ketrenosb095c382005-08-24 22:04:42 -05006851 return mode;
6852}
6853
6854/*
6855* Handle management frame beacon and probe response
6856*/
James Ketrenos3b9990c2005-08-19 13:18:55 -05006857static int ipw_qos_handle_probe_response(struct ipw_priv *priv,
6858 int active_network,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006859 struct libipw_network *network)
James Ketrenosb095c382005-08-24 22:04:42 -05006860{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006861 u32 size = sizeof(struct libipw_qos_parameters);
James Ketrenosb095c382005-08-24 22:04:42 -05006862
James Ketrenosafbf30a2005-08-25 00:05:33 -05006863 if (network->capability & WLAN_CAPABILITY_IBSS)
James Ketrenosb095c382005-08-24 22:04:42 -05006864 network->qos_data.active = network->qos_data.supported;
6865
6866 if (network->flags & NETWORK_HAS_QOS_MASK) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006867 if (active_network &&
6868 (network->flags & NETWORK_HAS_QOS_PARAMETERS))
James Ketrenosb095c382005-08-24 22:04:42 -05006869 network->qos_data.active = network->qos_data.supported;
6870
6871 if ((network->qos_data.active == 1) && (active_network == 1) &&
6872 (network->flags & NETWORK_HAS_QOS_PARAMETERS) &&
6873 (network->qos_data.old_param_count !=
6874 network->qos_data.param_count)) {
6875 network->qos_data.old_param_count =
6876 network->qos_data.param_count;
6877 schedule_work(&priv->qos_activate);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006878 IPW_DEBUG_QOS("QoS parameters change call "
6879 "qos_activate\n");
James Ketrenosb095c382005-08-24 22:04:42 -05006880 }
6881 } else {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006882 if ((priv->ieee->mode == IEEE_B) || (network->mode == IEEE_B))
6883 memcpy(&network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05006884 &def_parameters_CCK, size);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006885 else
6886 memcpy(&network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05006887 &def_parameters_OFDM, size);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006888
James Ketrenosb095c382005-08-24 22:04:42 -05006889 if ((network->qos_data.active == 1) && (active_network == 1)) {
Frans Pop9fd1ea42010-03-24 19:46:31 +01006890 IPW_DEBUG_QOS("QoS was disabled call qos_activate\n");
James Ketrenosb095c382005-08-24 22:04:42 -05006891 schedule_work(&priv->qos_activate);
6892 }
6893
6894 network->qos_data.active = 0;
6895 network->qos_data.supported = 0;
6896 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05006897 if ((priv->status & STATUS_ASSOCIATED) &&
6898 (priv->ieee->iw_mode == IW_MODE_ADHOC) && (active_network == 0)) {
dingtianhong36325f32013-12-26 19:41:23 +08006899 if (!ether_addr_equal(network->bssid, priv->bssid))
John W. Linvillec5d3dce2008-09-30 17:17:26 -04006900 if (network->capability & WLAN_CAPABILITY_IBSS)
James Ketrenosb095c382005-08-24 22:04:42 -05006901 if ((network->ssid_len ==
James Ketrenosafbf30a2005-08-25 00:05:33 -05006902 priv->assoc_network->ssid_len) &&
6903 !memcmp(network->ssid,
6904 priv->assoc_network->ssid,
6905 network->ssid_len)) {
Tejun Heobcb6d912011-01-26 12:12:50 +01006906 schedule_work(&priv->merge_networks);
James Ketrenosb095c382005-08-24 22:04:42 -05006907 }
James Ketrenosb095c382005-08-24 22:04:42 -05006908 }
6909
6910 return 0;
6911}
6912
6913/*
6914* This function set up the firmware to support QoS. It sends
6915* IPW_CMD_QOS_PARAMETERS and IPW_CMD_WME_INFO
6916*/
6917static int ipw_qos_activate(struct ipw_priv *priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006918 struct libipw_qos_data *qos_network_data)
James Ketrenosb095c382005-08-24 22:04:42 -05006919{
6920 int err;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006921 struct libipw_qos_parameters qos_parameters[QOS_QOS_SETS];
6922 struct libipw_qos_parameters *active_one = NULL;
6923 u32 size = sizeof(struct libipw_qos_parameters);
James Ketrenosb095c382005-08-24 22:04:42 -05006924 u32 burst_duration;
6925 int i;
6926 u8 type;
6927
6928 type = ipw_qos_current_mode(priv);
6929
6930 active_one = &(qos_parameters[QOS_PARAM_SET_DEF_CCK]);
6931 memcpy(active_one, priv->qos_data.def_qos_parm_CCK, size);
6932 active_one = &(qos_parameters[QOS_PARAM_SET_DEF_OFDM]);
6933 memcpy(active_one, priv->qos_data.def_qos_parm_OFDM, size);
6934
6935 if (qos_network_data == NULL) {
6936 if (type == IEEE_B) {
6937 IPW_DEBUG_QOS("QoS activate network mode %d\n", type);
6938 active_one = &def_parameters_CCK;
6939 } else
6940 active_one = &def_parameters_OFDM;
6941
James Ketrenosafbf30a2005-08-25 00:05:33 -05006942 memcpy(&qos_parameters[QOS_PARAM_SET_ACTIVE], active_one, size);
James Ketrenosb095c382005-08-24 22:04:42 -05006943 burst_duration = ipw_qos_get_burst_duration(priv);
6944 for (i = 0; i < QOS_QUEUE_NUM; i++)
James Ketrenosafbf30a2005-08-25 00:05:33 -05006945 qos_parameters[QOS_PARAM_SET_ACTIVE].tx_op_limit[i] =
Al Viro8fffc152007-12-27 01:25:40 -05006946 cpu_to_le16(burst_duration);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006947 } else if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
James Ketrenosb095c382005-08-24 22:04:42 -05006948 if (type == IEEE_B) {
Masanari Iidafd9071e2012-04-13 04:33:20 +00006949 IPW_DEBUG_QOS("QoS activate IBSS network mode %d\n",
James Ketrenosb095c382005-08-24 22:04:42 -05006950 type);
6951 if (priv->qos_data.qos_enable == 0)
6952 active_one = &def_parameters_CCK;
6953 else
6954 active_one = priv->qos_data.def_qos_parm_CCK;
6955 } else {
6956 if (priv->qos_data.qos_enable == 0)
6957 active_one = &def_parameters_OFDM;
6958 else
6959 active_one = priv->qos_data.def_qos_parm_OFDM;
6960 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05006961 memcpy(&qos_parameters[QOS_PARAM_SET_ACTIVE], active_one, size);
James Ketrenosb095c382005-08-24 22:04:42 -05006962 } else {
6963 unsigned long flags;
6964 int active;
6965
6966 spin_lock_irqsave(&priv->ieee->lock, flags);
6967 active_one = &(qos_network_data->parameters);
6968 qos_network_data->old_param_count =
6969 qos_network_data->param_count;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006970 memcpy(&qos_parameters[QOS_PARAM_SET_ACTIVE], active_one, size);
James Ketrenosb095c382005-08-24 22:04:42 -05006971 active = qos_network_data->supported;
6972 spin_unlock_irqrestore(&priv->ieee->lock, flags);
6973
6974 if (active == 0) {
6975 burst_duration = ipw_qos_get_burst_duration(priv);
6976 for (i = 0; i < QOS_QUEUE_NUM; i++)
6977 qos_parameters[QOS_PARAM_SET_ACTIVE].
Al Viro8fffc152007-12-27 01:25:40 -05006978 tx_op_limit[i] = cpu_to_le16(burst_duration);
James Ketrenosb095c382005-08-24 22:04:42 -05006979 }
6980 }
6981
6982 IPW_DEBUG_QOS("QoS sending IPW_CMD_QOS_PARAMETERS\n");
Joe Perches2c208892012-06-04 12:44:17 +00006983 err = ipw_send_qos_params_command(priv, &qos_parameters[0]);
James Ketrenosb095c382005-08-24 22:04:42 -05006984 if (err)
6985 IPW_DEBUG_QOS("QoS IPW_CMD_QOS_PARAMETERS failed\n");
6986
6987 return err;
6988}
6989
6990/*
6991* send IPW_CMD_WME_INFO to the firmware
6992*/
6993static int ipw_qos_set_info_element(struct ipw_priv *priv)
6994{
6995 int ret = 0;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006996 struct libipw_qos_information_element qos_info;
James Ketrenosb095c382005-08-24 22:04:42 -05006997
6998 if (priv == NULL)
6999 return -1;
7000
7001 qos_info.elementID = QOS_ELEMENT_ID;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007002 qos_info.length = sizeof(struct libipw_qos_information_element) - 2;
James Ketrenosb095c382005-08-24 22:04:42 -05007003
7004 qos_info.version = QOS_VERSION_1;
7005 qos_info.ac_info = 0;
7006
7007 memcpy(qos_info.qui, qos_oui, QOS_OUI_LEN);
7008 qos_info.qui_type = QOS_OUI_TYPE;
7009 qos_info.qui_subtype = QOS_OUI_INFO_SUB_TYPE;
7010
7011 ret = ipw_send_qos_info_command(priv, &qos_info);
7012 if (ret != 0) {
7013 IPW_DEBUG_QOS("QoS error calling ipw_send_qos_info_command\n");
7014 }
7015 return ret;
7016}
7017
7018/*
7019* Set the QoS parameter with the association request structure
7020*/
7021static int ipw_qos_association(struct ipw_priv *priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007022 struct libipw_network *network)
James Ketrenosb095c382005-08-24 22:04:42 -05007023{
7024 int err = 0;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007025 struct libipw_qos_data *qos_data = NULL;
7026 struct libipw_qos_data ibss_data = {
James Ketrenosb095c382005-08-24 22:04:42 -05007027 .supported = 1,
7028 .active = 1,
7029 };
7030
7031 switch (priv->ieee->iw_mode) {
7032 case IW_MODE_ADHOC:
Eric Sesterhenn5d9428d2006-04-02 13:52:48 +02007033 BUG_ON(!(network->capability & WLAN_CAPABILITY_IBSS));
James Ketrenosb095c382005-08-24 22:04:42 -05007034
7035 qos_data = &ibss_data;
7036 break;
7037
7038 case IW_MODE_INFRA:
7039 qos_data = &network->qos_data;
7040 break;
7041
7042 default:
7043 BUG();
7044 break;
7045 }
7046
7047 err = ipw_qos_activate(priv, qos_data);
7048 if (err) {
7049 priv->assoc_request.policy_support &= ~HC_QOS_SUPPORT_ASSOC;
7050 return err;
7051 }
7052
7053 if (priv->qos_data.qos_enable && qos_data->supported) {
7054 IPW_DEBUG_QOS("QoS will be enabled for this association\n");
7055 priv->assoc_request.policy_support |= HC_QOS_SUPPORT_ASSOC;
7056 return ipw_qos_set_info_element(priv);
7057 }
7058
7059 return 0;
7060}
7061
7062/*
Matt LaPlante0779bf22006-11-30 05:24:39 +01007063* handling the beaconing responses. if we get different QoS setting
7064* off the network from the associated setting, adjust the QoS
James Ketrenosb095c382005-08-24 22:04:42 -05007065* setting
7066*/
7067static int ipw_qos_association_resp(struct ipw_priv *priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007068 struct libipw_network *network)
James Ketrenosb095c382005-08-24 22:04:42 -05007069{
7070 int ret = 0;
7071 unsigned long flags;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007072 u32 size = sizeof(struct libipw_qos_parameters);
James Ketrenosb095c382005-08-24 22:04:42 -05007073 int set_qos_param = 0;
7074
James Ketrenosafbf30a2005-08-25 00:05:33 -05007075 if ((priv == NULL) || (network == NULL) ||
7076 (priv->assoc_network == NULL))
James Ketrenosb095c382005-08-24 22:04:42 -05007077 return ret;
7078
7079 if (!(priv->status & STATUS_ASSOCIATED))
7080 return ret;
7081
James Ketrenosafbf30a2005-08-25 00:05:33 -05007082 if ((priv->ieee->iw_mode != IW_MODE_INFRA))
James Ketrenosb095c382005-08-24 22:04:42 -05007083 return ret;
James Ketrenosb095c382005-08-24 22:04:42 -05007084
7085 spin_lock_irqsave(&priv->ieee->lock, flags);
7086 if (network->flags & NETWORK_HAS_QOS_PARAMETERS) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007087 memcpy(&priv->assoc_network->qos_data, &network->qos_data,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007088 sizeof(struct libipw_qos_data));
James Ketrenosb095c382005-08-24 22:04:42 -05007089 priv->assoc_network->qos_data.active = 1;
7090 if ((network->qos_data.old_param_count !=
7091 network->qos_data.param_count)) {
7092 set_qos_param = 1;
7093 network->qos_data.old_param_count =
7094 network->qos_data.param_count;
7095 }
7096
7097 } else {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007098 if ((network->mode == IEEE_B) || (priv->ieee->mode == IEEE_B))
7099 memcpy(&priv->assoc_network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05007100 &def_parameters_CCK, size);
James Ketrenosafbf30a2005-08-25 00:05:33 -05007101 else
7102 memcpy(&priv->assoc_network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05007103 &def_parameters_OFDM, size);
James Ketrenosb095c382005-08-24 22:04:42 -05007104 priv->assoc_network->qos_data.active = 0;
7105 priv->assoc_network->qos_data.supported = 0;
7106 set_qos_param = 1;
7107 }
7108
7109 spin_unlock_irqrestore(&priv->ieee->lock, flags);
7110
7111 if (set_qos_param == 1)
7112 schedule_work(&priv->qos_activate);
7113
7114 return ret;
7115}
7116
7117static u32 ipw_qos_get_burst_duration(struct ipw_priv *priv)
7118{
7119 u32 ret = 0;
7120
7121 if ((priv == NULL))
7122 return 0;
7123
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007124 if (!(priv->ieee->modulation & LIBIPW_OFDM_MODULATION))
James Ketrenosb095c382005-08-24 22:04:42 -05007125 ret = priv->qos_data.burst_duration_CCK;
James Ketrenosafbf30a2005-08-25 00:05:33 -05007126 else
James Ketrenosb095c382005-08-24 22:04:42 -05007127 ret = priv->qos_data.burst_duration_OFDM;
James Ketrenosafbf30a2005-08-25 00:05:33 -05007128
James Ketrenosb095c382005-08-24 22:04:42 -05007129 return ret;
7130}
7131
7132/*
7133* Initialize the setting of QoS global
7134*/
7135static void ipw_qos_init(struct ipw_priv *priv, int enable,
7136 int burst_enable, u32 burst_duration_CCK,
7137 u32 burst_duration_OFDM)
7138{
7139 priv->qos_data.qos_enable = enable;
7140
7141 if (priv->qos_data.qos_enable) {
7142 priv->qos_data.def_qos_parm_CCK = &def_qos_parameters_CCK;
7143 priv->qos_data.def_qos_parm_OFDM = &def_qos_parameters_OFDM;
7144 IPW_DEBUG_QOS("QoS is enabled\n");
7145 } else {
7146 priv->qos_data.def_qos_parm_CCK = &def_parameters_CCK;
7147 priv->qos_data.def_qos_parm_OFDM = &def_parameters_OFDM;
7148 IPW_DEBUG_QOS("QoS is not enabled\n");
7149 }
7150
7151 priv->qos_data.burst_enable = burst_enable;
7152
7153 if (burst_enable) {
7154 priv->qos_data.burst_duration_CCK = burst_duration_CCK;
7155 priv->qos_data.burst_duration_OFDM = burst_duration_OFDM;
7156 } else {
7157 priv->qos_data.burst_duration_CCK = 0;
7158 priv->qos_data.burst_duration_OFDM = 0;
7159 }
7160}
7161
7162/*
7163* map the packet priority to the right TX Queue
7164*/
7165static int ipw_get_tx_queue_number(struct ipw_priv *priv, u16 priority)
7166{
7167 if (priority > 7 || !priv->qos_data.qos_enable)
7168 priority = 0;
7169
7170 return from_priority_to_tx_queue[priority] - 1;
7171}
7172
Zhu Yia5cf4fe2006-04-13 17:19:11 +08007173static int ipw_is_qos_active(struct net_device *dev,
7174 struct sk_buff *skb)
James Ketrenosb095c382005-08-24 22:04:42 -05007175{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007176 struct ipw_priv *priv = libipw_priv(dev);
7177 struct libipw_qos_data *qos_data = NULL;
James Ketrenosb095c382005-08-24 22:04:42 -05007178 int active, supported;
Zhu Yia5cf4fe2006-04-13 17:19:11 +08007179 u8 *daddr = skb->data + ETH_ALEN;
7180 int unicast = !is_multicast_ether_addr(daddr);
James Ketrenosb095c382005-08-24 22:04:42 -05007181
7182 if (!(priv->status & STATUS_ASSOCIATED))
7183 return 0;
7184
7185 qos_data = &priv->assoc_network->qos_data;
7186
James Ketrenosb095c382005-08-24 22:04:42 -05007187 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
7188 if (unicast == 0)
7189 qos_data->active = 0;
7190 else
7191 qos_data->active = qos_data->supported;
7192 }
James Ketrenosb095c382005-08-24 22:04:42 -05007193 active = qos_data->active;
7194 supported = qos_data->supported;
James Ketrenosafbf30a2005-08-25 00:05:33 -05007195 IPW_DEBUG_QOS("QoS %d network is QoS active %d supported %d "
7196 "unicast %d\n",
7197 priv->qos_data.qos_enable, active, supported, unicast);
Zhu Yia5cf4fe2006-04-13 17:19:11 +08007198 if (active && priv->qos_data.qos_enable)
7199 return 1;
James Ketrenosb095c382005-08-24 22:04:42 -05007200
Zhu Yia5cf4fe2006-04-13 17:19:11 +08007201 return 0;
7202
7203}
7204/*
7205* add QoS parameter to the TX command
7206*/
7207static int ipw_qos_set_tx_queue_command(struct ipw_priv *priv,
7208 u16 priority,
7209 struct tfd_data *tfd)
7210{
7211 int tx_queue_id = 0;
7212
7213
7214 tx_queue_id = from_priority_to_tx_queue[priority] - 1;
7215 tfd->tx_flags_ext |= DCT_FLAG_EXT_QOS_ENABLED;
7216
7217 if (priv->qos_data.qos_no_ack_mask & (1UL << tx_queue_id)) {
7218 tfd->tx_flags &= ~DCT_FLAG_ACK_REQD;
Zhu Yi851ca262006-08-21 11:37:58 +08007219 tfd->tfd.tfd_26.mchdr.qos_ctrl |= cpu_to_le16(CTRL_QOS_NO_ACK);
James Ketrenosb095c382005-08-24 22:04:42 -05007220 }
Zhu Yia5cf4fe2006-04-13 17:19:11 +08007221 return 0;
James Ketrenosb095c382005-08-24 22:04:42 -05007222}
7223
7224/*
7225* background support to run QoS activate functionality
7226*/
David Howellsc4028952006-11-22 14:57:56 +00007227static void ipw_bg_qos_activate(struct work_struct *work)
James Ketrenosb095c382005-08-24 22:04:42 -05007228{
David Howellsc4028952006-11-22 14:57:56 +00007229 struct ipw_priv *priv =
7230 container_of(work, struct ipw_priv, qos_activate);
James Ketrenosb095c382005-08-24 22:04:42 -05007231
Zhu Yi46441512006-01-24 16:37:59 +08007232 mutex_lock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05007233
7234 if (priv->status & STATUS_ASSOCIATED)
7235 ipw_qos_activate(priv, &(priv->assoc_network->qos_data));
7236
Zhu Yi46441512006-01-24 16:37:59 +08007237 mutex_unlock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05007238}
7239
James Ketrenos3b9990c2005-08-19 13:18:55 -05007240static int ipw_handle_probe_response(struct net_device *dev,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007241 struct libipw_probe_response *resp,
7242 struct libipw_network *network)
James Ketrenosb095c382005-08-24 22:04:42 -05007243{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007244 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos3b9990c2005-08-19 13:18:55 -05007245 int active_network = ((priv->status & STATUS_ASSOCIATED) &&
7246 (network == priv->assoc_network));
James Ketrenosb095c382005-08-24 22:04:42 -05007247
James Ketrenos3b9990c2005-08-19 13:18:55 -05007248 ipw_qos_handle_probe_response(priv, active_network, network);
James Ketrenosb095c382005-08-24 22:04:42 -05007249
James Ketrenos3b9990c2005-08-19 13:18:55 -05007250 return 0;
7251}
James Ketrenosb095c382005-08-24 22:04:42 -05007252
James Ketrenos3b9990c2005-08-19 13:18:55 -05007253static int ipw_handle_beacon(struct net_device *dev,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007254 struct libipw_beacon *resp,
7255 struct libipw_network *network)
James Ketrenos3b9990c2005-08-19 13:18:55 -05007256{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007257 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos3b9990c2005-08-19 13:18:55 -05007258 int active_network = ((priv->status & STATUS_ASSOCIATED) &&
7259 (network == priv->assoc_network));
7260
7261 ipw_qos_handle_probe_response(priv, active_network, network);
7262
7263 return 0;
7264}
7265
7266static int ipw_handle_assoc_response(struct net_device *dev,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007267 struct libipw_assoc_response *resp,
7268 struct libipw_network *network)
James Ketrenos3b9990c2005-08-19 13:18:55 -05007269{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007270 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos3b9990c2005-08-19 13:18:55 -05007271 ipw_qos_association_resp(priv, network);
James Ketrenosb095c382005-08-24 22:04:42 -05007272 return 0;
7273}
7274
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007275static int ipw_send_qos_params_command(struct ipw_priv *priv, struct libipw_qos_parameters
James Ketrenosb095c382005-08-24 22:04:42 -05007276 *qos_param)
7277{
Zhu Yi4e226992006-01-24 16:37:36 +08007278 return ipw_send_cmd_pdu(priv, IPW_CMD_QOS_PARAMETERS,
7279 sizeof(*qos_param) * 3, qos_param);
James Ketrenosb095c382005-08-24 22:04:42 -05007280}
7281
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007282static int ipw_send_qos_info_command(struct ipw_priv *priv, struct libipw_qos_information_element
James Ketrenosb095c382005-08-24 22:04:42 -05007283 *qos_param)
7284{
Zhu Yi4e226992006-01-24 16:37:36 +08007285 return ipw_send_cmd_pdu(priv, IPW_CMD_WME_INFO, sizeof(*qos_param),
7286 qos_param);
James Ketrenosb095c382005-08-24 22:04:42 -05007287}
7288
Zhu Yie43e3c12006-04-13 17:20:45 +08007289#endif /* CONFIG_IPW2200_QOS */
James Ketrenosb095c382005-08-24 22:04:42 -05007290
James Ketrenos43f66a62005-03-25 12:31:53 -06007291static int ipw_associate_network(struct ipw_priv *priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007292 struct libipw_network *network,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007293 struct ipw_supported_rates *rates, int roaming)
James Ketrenos43f66a62005-03-25 12:31:53 -06007294{
7295 int err;
7296
7297 if (priv->config & CFG_FIXED_RATE)
James Ketrenosb095c382005-08-24 22:04:42 -05007298 ipw_set_fixed_rate(priv, network->mode);
James Ketrenos43f66a62005-03-25 12:31:53 -06007299
7300 if (!(priv->config & CFG_STATIC_ESSID)) {
Jeff Garzikbf794512005-07-31 13:07:26 -04007301 priv->essid_len = min(network->ssid_len,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007302 (u8) IW_ESSID_MAX_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06007303 memcpy(priv->essid, network->ssid, priv->essid_len);
7304 }
7305
7306 network->last_associate = jiffies;
7307
7308 memset(&priv->assoc_request, 0, sizeof(priv->assoc_request));
7309 priv->assoc_request.channel = network->channel;
Zhu Yi3e234b42006-01-24 16:36:52 +08007310 priv->assoc_request.auth_key = 0;
7311
James Ketrenos43f66a62005-03-25 12:31:53 -06007312 if ((priv->capability & CAP_PRIVACY_ON) &&
Zhu Yi3e234b42006-01-24 16:36:52 +08007313 (priv->ieee->sec.auth_mode == WLAN_AUTH_SHARED_KEY)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06007314 priv->assoc_request.auth_type = AUTH_SHARED_KEY;
James Ketrenosb095c382005-08-24 22:04:42 -05007315 priv->assoc_request.auth_key = priv->ieee->sec.active_key;
7316
Zhu Yi1ba61e02006-02-15 13:00:55 +08007317 if (priv->ieee->sec.level == SEC_LEVEL_1)
James Ketrenosb095c382005-08-24 22:04:42 -05007318 ipw_send_wep_keys(priv, DCW_WEP_KEY_SEC_TYPE_WEP);
Zhu Yi3e234b42006-01-24 16:36:52 +08007319
7320 } else if ((priv->capability & CAP_PRIVACY_ON) &&
7321 (priv->ieee->sec.auth_mode == WLAN_AUTH_LEAP))
7322 priv->assoc_request.auth_type = AUTH_LEAP;
7323 else
James Ketrenos43f66a62005-03-25 12:31:53 -06007324 priv->assoc_request.auth_type = AUTH_OPEN;
James Ketrenos43f66a62005-03-25 12:31:53 -06007325
James Ketrenosa613bff2005-08-24 21:43:11 -05007326 if (priv->ieee->wpa_ie_len) {
Al Viro5b5e8072007-12-27 01:54:06 -05007327 priv->assoc_request.policy_support = cpu_to_le16(0x02); /* RSN active */
James Ketrenosea2b26e2005-08-24 21:25:16 -05007328 ipw_set_rsn_capa(priv, priv->ieee->wpa_ie,
7329 priv->ieee->wpa_ie_len);
7330 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007331
Jeff Garzikbf794512005-07-31 13:07:26 -04007332 /*
7333 * It is valid for our ieee device to support multiple modes, but
7334 * when it comes to associating to a given network we have to choose
James Ketrenos43f66a62005-03-25 12:31:53 -06007335 * just one mode.
7336 */
7337 if (network->mode & priv->ieee->mode & IEEE_A)
7338 priv->assoc_request.ieee_mode = IPW_A_MODE;
7339 else if (network->mode & priv->ieee->mode & IEEE_G)
7340 priv->assoc_request.ieee_mode = IPW_G_MODE;
7341 else if (network->mode & priv->ieee->mode & IEEE_B)
7342 priv->assoc_request.ieee_mode = IPW_B_MODE;
7343
Al Viro5b5e8072007-12-27 01:54:06 -05007344 priv->assoc_request.capability = cpu_to_le16(network->capability);
James Ketrenosea2b26e2005-08-24 21:25:16 -05007345 if ((network->capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
7346 && !(priv->config & CFG_PREAMBLE_LONG)) {
7347 priv->assoc_request.preamble_length = DCT_FLAG_SHORT_PREAMBLE;
7348 } else {
7349 priv->assoc_request.preamble_length = DCT_FLAG_LONG_PREAMBLE;
7350
7351 /* Clear the short preamble if we won't be supporting it */
7352 priv->assoc_request.capability &=
Al Viro5b5e8072007-12-27 01:54:06 -05007353 ~cpu_to_le16(WLAN_CAPABILITY_SHORT_PREAMBLE);
James Ketrenosea2b26e2005-08-24 21:25:16 -05007354 }
7355
James Ketrenosafbf30a2005-08-25 00:05:33 -05007356 /* Clear capability bits that aren't used in Ad Hoc */
7357 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
7358 priv->assoc_request.capability &=
Al Viro5b5e8072007-12-27 01:54:06 -05007359 ~cpu_to_le16(WLAN_CAPABILITY_SHORT_SLOT_TIME);
James Ketrenosafbf30a2005-08-25 00:05:33 -05007360
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07007361 IPW_DEBUG_ASSOC("%ssociation attempt: '%*pE', channel %d, 802.11%c [%d], %s[:%s], enc=%s%s%s%c%c\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06007362 roaming ? "Rea" : "A",
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07007363 priv->essid_len, priv->essid,
Jeff Garzikbf794512005-07-31 13:07:26 -04007364 network->channel,
7365 ipw_modes[priv->assoc_request.ieee_mode],
7366 rates->num_rates,
James Ketrenosea2b26e2005-08-24 21:25:16 -05007367 (priv->assoc_request.preamble_length ==
7368 DCT_FLAG_LONG_PREAMBLE) ? "long" : "short",
7369 network->capability &
7370 WLAN_CAPABILITY_SHORT_PREAMBLE ? "short" : "long",
James Ketrenos43f66a62005-03-25 12:31:53 -06007371 priv->capability & CAP_PRIVACY_ON ? "on " : "off",
Jeff Garzikbf794512005-07-31 13:07:26 -04007372 priv->capability & CAP_PRIVACY_ON ?
7373 (priv->capability & CAP_SHARED_KEY ? "(shared)" :
James Ketrenos43f66a62005-03-25 12:31:53 -06007374 "(open)") : "",
7375 priv->capability & CAP_PRIVACY_ON ? " key=" : "",
Jeff Garzikbf794512005-07-31 13:07:26 -04007376 priv->capability & CAP_PRIVACY_ON ?
James Ketrenosb095c382005-08-24 22:04:42 -05007377 '1' + priv->ieee->sec.active_key : '.',
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007378 priv->capability & CAP_PRIVACY_ON ? '.' : ' ');
James Ketrenos43f66a62005-03-25 12:31:53 -06007379
Al Viro5b5e8072007-12-27 01:54:06 -05007380 priv->assoc_request.beacon_interval = cpu_to_le16(network->beacon_interval);
James Ketrenos43f66a62005-03-25 12:31:53 -06007381 if ((priv->ieee->iw_mode == IW_MODE_ADHOC) &&
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007382 (network->time_stamp[0] == 0) && (network->time_stamp[1] == 0)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06007383 priv->assoc_request.assoc_type = HC_IBSS_START;
7384 priv->assoc_request.assoc_tsf_msw = 0;
7385 priv->assoc_request.assoc_tsf_lsw = 0;
7386 } else {
7387 if (unlikely(roaming))
7388 priv->assoc_request.assoc_type = HC_REASSOCIATE;
7389 else
7390 priv->assoc_request.assoc_type = HC_ASSOCIATE;
Al Viro5b5e8072007-12-27 01:54:06 -05007391 priv->assoc_request.assoc_tsf_msw = cpu_to_le32(network->time_stamp[1]);
7392 priv->assoc_request.assoc_tsf_lsw = cpu_to_le32(network->time_stamp[0]);
James Ketrenos43f66a62005-03-25 12:31:53 -06007393 }
7394
James Ketrenosafbf30a2005-08-25 00:05:33 -05007395 memcpy(priv->assoc_request.bssid, network->bssid, ETH_ALEN);
James Ketrenos43f66a62005-03-25 12:31:53 -06007396
7397 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
Joe Perches93803b32015-03-02 19:54:49 -08007398 eth_broadcast_addr(priv->assoc_request.dest);
Al Viro5b5e8072007-12-27 01:54:06 -05007399 priv->assoc_request.atim_window = cpu_to_le16(network->atim_window);
James Ketrenos43f66a62005-03-25 12:31:53 -06007400 } else {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007401 memcpy(priv->assoc_request.dest, network->bssid, ETH_ALEN);
James Ketrenos43f66a62005-03-25 12:31:53 -06007402 priv->assoc_request.atim_window = 0;
7403 }
7404
Al Viro5b5e8072007-12-27 01:54:06 -05007405 priv->assoc_request.listen_interval = cpu_to_le16(network->listen_interval);
Jeff Garzikbf794512005-07-31 13:07:26 -04007406
James Ketrenos43f66a62005-03-25 12:31:53 -06007407 err = ipw_send_ssid(priv, priv->essid, priv->essid_len);
7408 if (err) {
7409 IPW_DEBUG_HC("Attempt to send SSID command failed.\n");
7410 return err;
7411 }
7412
7413 rates->ieee_mode = priv->assoc_request.ieee_mode;
7414 rates->purpose = IPW_RATE_CONNECT;
7415 ipw_send_supported_rates(priv, rates);
Jeff Garzikbf794512005-07-31 13:07:26 -04007416
James Ketrenos43f66a62005-03-25 12:31:53 -06007417 if (priv->assoc_request.ieee_mode == IPW_G_MODE)
7418 priv->sys_config.dot11g_auto_detection = 1;
7419 else
7420 priv->sys_config.dot11g_auto_detection = 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05007421
7422 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
7423 priv->sys_config.answer_broadcast_ssid_probe = 1;
7424 else
7425 priv->sys_config.answer_broadcast_ssid_probe = 0;
7426
Zhu Yid685b8c2006-04-13 17:20:27 +08007427 err = ipw_send_system_config(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06007428 if (err) {
7429 IPW_DEBUG_HC("Attempt to send sys config command failed.\n");
7430 return err;
7431 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007432
James Ketrenos43f66a62005-03-25 12:31:53 -06007433 IPW_DEBUG_ASSOC("Association sensitivity: %d\n", network->stats.rssi);
James Ketrenosea2b26e2005-08-24 21:25:16 -05007434 err = ipw_set_sensitivity(priv, network->stats.rssi + IPW_RSSI_TO_DBM);
James Ketrenos43f66a62005-03-25 12:31:53 -06007435 if (err) {
7436 IPW_DEBUG_HC("Attempt to send associate command failed.\n");
7437 return err;
7438 }
7439
7440 /*
7441 * If preemption is enabled, it is possible for the association
7442 * to complete before we return from ipw_send_associate. Therefore
7443 * we have to be sure and update our priviate data first.
7444 */
7445 priv->channel = network->channel;
7446 memcpy(priv->bssid, network->bssid, ETH_ALEN);
Jeff Garzikbf794512005-07-31 13:07:26 -04007447 priv->status |= STATUS_ASSOCIATING;
James Ketrenos43f66a62005-03-25 12:31:53 -06007448 priv->status &= ~STATUS_SECURITY_UPDATED;
7449
7450 priv->assoc_network = network;
7451
Zhu Yie43e3c12006-04-13 17:20:45 +08007452#ifdef CONFIG_IPW2200_QOS
James Ketrenosb095c382005-08-24 22:04:42 -05007453 ipw_qos_association(priv, network);
7454#endif
7455
James Ketrenos43f66a62005-03-25 12:31:53 -06007456 err = ipw_send_associate(priv, &priv->assoc_request);
7457 if (err) {
7458 IPW_DEBUG_HC("Attempt to send associate command failed.\n");
7459 return err;
7460 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007461
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07007462 IPW_DEBUG(IPW_DL_STATE, "associating: '%*pE' %pM\n",
7463 priv->essid_len, priv->essid, priv->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06007464
7465 return 0;
7466}
7467
7468static void ipw_roam(void *data)
7469{
7470 struct ipw_priv *priv = data;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007471 struct libipw_network *network = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -06007472 struct ipw_network_match match = {
7473 .network = priv->assoc_network
7474 };
7475
7476 /* The roaming process is as follows:
Jeff Garzikbf794512005-07-31 13:07:26 -04007477 *
7478 * 1. Missed beacon threshold triggers the roaming process by
James Ketrenos43f66a62005-03-25 12:31:53 -06007479 * setting the status ROAM bit and requesting a scan.
7480 * 2. When the scan completes, it schedules the ROAM work
7481 * 3. The ROAM work looks at all of the known networks for one that
7482 * is a better network than the currently associated. If none
7483 * found, the ROAM process is over (ROAM bit cleared)
7484 * 4. If a better network is found, a disassociation request is
7485 * sent.
7486 * 5. When the disassociation completes, the roam work is again
7487 * scheduled. The second time through, the driver is no longer
7488 * associated, and the newly selected network is sent an
Jeff Garzikbf794512005-07-31 13:07:26 -04007489 * association request.
James Ketrenos43f66a62005-03-25 12:31:53 -06007490 * 6. At this point ,the roaming process is complete and the ROAM
7491 * status bit is cleared.
7492 */
7493
7494 /* If we are no longer associated, and the roaming bit is no longer
7495 * set, then we are not actively roaming, so just return */
7496 if (!(priv->status & (STATUS_ASSOCIATED | STATUS_ROAMING)))
7497 return;
Jeff Garzikbf794512005-07-31 13:07:26 -04007498
James Ketrenos43f66a62005-03-25 12:31:53 -06007499 if (priv->status & STATUS_ASSOCIATED) {
Jeff Garzikbf794512005-07-31 13:07:26 -04007500 /* First pass through ROAM process -- look for a better
James Ketrenos43f66a62005-03-25 12:31:53 -06007501 * network */
James Ketrenosa613bff2005-08-24 21:43:11 -05007502 unsigned long flags;
James Ketrenos43f66a62005-03-25 12:31:53 -06007503 u8 rssi = priv->assoc_network->stats.rssi;
7504 priv->assoc_network->stats.rssi = -128;
James Ketrenosa613bff2005-08-24 21:43:11 -05007505 spin_lock_irqsave(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06007506 list_for_each_entry(network, &priv->ieee->network_list, list) {
7507 if (network != priv->assoc_network)
7508 ipw_best_network(priv, &match, network, 1);
7509 }
James Ketrenosa613bff2005-08-24 21:43:11 -05007510 spin_unlock_irqrestore(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06007511 priv->assoc_network->stats.rssi = rssi;
Jeff Garzikbf794512005-07-31 13:07:26 -04007512
James Ketrenos43f66a62005-03-25 12:31:53 -06007513 if (match.network == priv->assoc_network) {
7514 IPW_DEBUG_ASSOC("No better APs in this network to "
7515 "roam to.\n");
7516 priv->status &= ~STATUS_ROAMING;
7517 ipw_debug_config(priv);
7518 return;
7519 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007520
James Ketrenos43f66a62005-03-25 12:31:53 -06007521 ipw_send_disassociate(priv, 1);
7522 priv->assoc_network = match.network;
7523
7524 return;
Jeff Garzikbf794512005-07-31 13:07:26 -04007525 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007526
7527 /* Second pass through ROAM process -- request association */
7528 ipw_compatible_rates(priv, priv->assoc_network, &match.rates);
7529 ipw_associate_network(priv, priv->assoc_network, &match.rates, 1);
7530 priv->status &= ~STATUS_ROAMING;
7531}
7532
David Howellsc4028952006-11-22 14:57:56 +00007533static void ipw_bg_roam(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -05007534{
David Howellsc4028952006-11-22 14:57:56 +00007535 struct ipw_priv *priv =
7536 container_of(work, struct ipw_priv, roam);
Zhu Yi46441512006-01-24 16:37:59 +08007537 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00007538 ipw_roam(priv);
Zhu Yi46441512006-01-24 16:37:59 +08007539 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05007540}
7541
7542static int ipw_associate(void *data)
James Ketrenos43f66a62005-03-25 12:31:53 -06007543{
7544 struct ipw_priv *priv = data;
7545
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007546 struct libipw_network *network = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -06007547 struct ipw_network_match match = {
7548 .network = NULL
7549 };
7550 struct ipw_supported_rates *rates;
7551 struct list_head *element;
James Ketrenosa613bff2005-08-24 21:43:11 -05007552 unsigned long flags;
James Ketrenos43f66a62005-03-25 12:31:53 -06007553
James Ketrenosb095c382005-08-24 22:04:42 -05007554 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
7555 IPW_DEBUG_ASSOC("Not attempting association (monitor mode)\n");
7556 return 0;
7557 }
7558
James Ketrenosc848d0a2005-08-24 21:56:24 -05007559 if (priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007560 IPW_DEBUG_ASSOC("Not attempting association (already in "
7561 "progress)\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05007562 return 0;
7563 }
7564
Hong Liue6324722005-09-14 21:04:15 -05007565 if (priv->status & STATUS_DISASSOCIATING) {
7566 IPW_DEBUG_ASSOC("Not attempting association (in "
7567 "disassociating)\n ");
Tejun Heobcb6d912011-01-26 12:12:50 +01007568 schedule_work(&priv->associate);
Hong Liue6324722005-09-14 21:04:15 -05007569 return 0;
7570 }
7571
James Ketrenosc848d0a2005-08-24 21:56:24 -05007572 if (!ipw_is_init(priv) || (priv->status & STATUS_SCANNING)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007573 IPW_DEBUG_ASSOC("Not attempting association (scanning or not "
7574 "initialized)\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05007575 return 0;
7576 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007577
7578 if (!(priv->config & CFG_ASSOCIATE) &&
Alexey Fisher3e4127f2008-11-06 09:51:16 +01007579 !(priv->config & (CFG_STATIC_ESSID | CFG_STATIC_BSSID))) {
James Ketrenos43f66a62005-03-25 12:31:53 -06007580 IPW_DEBUG_ASSOC("Not attempting association (associate=0)\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05007581 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06007582 }
7583
James Ketrenosa613bff2005-08-24 21:43:11 -05007584 /* Protect our use of the network_list */
7585 spin_lock_irqsave(&priv->ieee->lock, flags);
Jeff Garzikbf794512005-07-31 13:07:26 -04007586 list_for_each_entry(network, &priv->ieee->network_list, list)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007587 ipw_best_network(priv, &match, network, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06007588
7589 network = match.network;
7590 rates = &match.rates;
7591
7592 if (network == NULL &&
7593 priv->ieee->iw_mode == IW_MODE_ADHOC &&
7594 priv->config & CFG_ADHOC_CREATE &&
7595 priv->config & CFG_STATIC_ESSID &&
Dan Williamsa6d4eae2008-05-29 14:38:28 -04007596 priv->config & CFG_STATIC_CHANNEL) {
7597 /* Use oldest network if the free list is empty */
7598 if (list_empty(&priv->ieee->network_free_list)) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007599 struct libipw_network *oldest = NULL;
7600 struct libipw_network *target;
Dan Williamsa6d4eae2008-05-29 14:38:28 -04007601
7602 list_for_each_entry(target, &priv->ieee->network_list, list) {
7603 if ((oldest == NULL) ||
7604 (target->last_scanned < oldest->last_scanned))
7605 oldest = target;
7606 }
7607
7608 /* If there are no more slots, expire the oldest */
7609 list_del(&oldest->list);
7610 target = oldest;
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07007611 IPW_DEBUG_ASSOC("Expired '%*pE' (%pM) from network list.\n",
7612 target->ssid_len, target->ssid,
Johannes Berge1749612008-10-27 15:59:26 -07007613 target->bssid);
Dan Williamsa6d4eae2008-05-29 14:38:28 -04007614 list_add_tail(&target->list,
7615 &priv->ieee->network_free_list);
7616 }
7617
James Ketrenos43f66a62005-03-25 12:31:53 -06007618 element = priv->ieee->network_free_list.next;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007619 network = list_entry(element, struct libipw_network, list);
James Ketrenos43f66a62005-03-25 12:31:53 -06007620 ipw_adhoc_create(priv, network);
7621 rates = &priv->rates;
7622 list_del(element);
7623 list_add_tail(&network->list, &priv->ieee->network_list);
7624 }
James Ketrenosa613bff2005-08-24 21:43:11 -05007625 spin_unlock_irqrestore(&priv->ieee->lock, flags);
Jeff Garzikbf794512005-07-31 13:07:26 -04007626
James Ketrenos43f66a62005-03-25 12:31:53 -06007627 /* If we reached the end of the list, then we don't have any valid
7628 * matching APs */
7629 if (!network) {
7630 ipw_debug_config(priv);
7631
James Ketrenosb095c382005-08-24 22:04:42 -05007632 if (!(priv->status & STATUS_SCANNING)) {
7633 if (!(priv->config & CFG_SPEED_SCAN))
Tejun Heobcb6d912011-01-26 12:12:50 +01007634 schedule_delayed_work(&priv->request_scan,
7635 SCAN_INTERVAL);
James Ketrenosb095c382005-08-24 22:04:42 -05007636 else
Tejun Heobcb6d912011-01-26 12:12:50 +01007637 schedule_delayed_work(&priv->request_scan, 0);
James Ketrenosb095c382005-08-24 22:04:42 -05007638 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007639
James Ketrenosc848d0a2005-08-24 21:56:24 -05007640 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06007641 }
7642
7643 ipw_associate_network(priv, network, rates, 0);
James Ketrenosc848d0a2005-08-24 21:56:24 -05007644
7645 return 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06007646}
Jeff Garzikbf794512005-07-31 13:07:26 -04007647
David Howellsc4028952006-11-22 14:57:56 +00007648static void ipw_bg_associate(struct work_struct *work)
James Ketrenos43f66a62005-03-25 12:31:53 -06007649{
David Howellsc4028952006-11-22 14:57:56 +00007650 struct ipw_priv *priv =
7651 container_of(work, struct ipw_priv, associate);
Zhu Yi46441512006-01-24 16:37:59 +08007652 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00007653 ipw_associate(priv);
Zhu Yi46441512006-01-24 16:37:59 +08007654 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06007655}
7656
James Ketrenosb095c382005-08-24 22:04:42 -05007657static void ipw_rebuild_decrypted_skb(struct ipw_priv *priv,
7658 struct sk_buff *skb)
7659{
7660 struct ieee80211_hdr *hdr;
7661 u16 fc;
7662
7663 hdr = (struct ieee80211_hdr *)skb->data;
John W. Linville72118012008-09-30 21:43:03 -04007664 fc = le16_to_cpu(hdr->frame_control);
James Ketrenosb095c382005-08-24 22:04:42 -05007665 if (!(fc & IEEE80211_FCTL_PROTECTED))
7666 return;
7667
7668 fc &= ~IEEE80211_FCTL_PROTECTED;
John W. Linville72118012008-09-30 21:43:03 -04007669 hdr->frame_control = cpu_to_le16(fc);
James Ketrenosb095c382005-08-24 22:04:42 -05007670 switch (priv->ieee->sec.level) {
7671 case SEC_LEVEL_3:
7672 /* Remove CCMP HDR */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007673 memmove(skb->data + LIBIPW_3ADDR_LEN,
7674 skb->data + LIBIPW_3ADDR_LEN + 8,
7675 skb->len - LIBIPW_3ADDR_LEN - 8);
Zhu Yif4ff4972005-09-12 10:48:48 -05007676 skb_trim(skb, skb->len - 16); /* CCMP_HDR_LEN + CCMP_MIC_LEN */
James Ketrenosb095c382005-08-24 22:04:42 -05007677 break;
7678 case SEC_LEVEL_2:
7679 break;
7680 case SEC_LEVEL_1:
7681 /* Remove IV */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007682 memmove(skb->data + LIBIPW_3ADDR_LEN,
7683 skb->data + LIBIPW_3ADDR_LEN + 4,
7684 skb->len - LIBIPW_3ADDR_LEN - 4);
Zhu Yif4ff4972005-09-12 10:48:48 -05007685 skb_trim(skb, skb->len - 8); /* IV + ICV */
James Ketrenosb095c382005-08-24 22:04:42 -05007686 break;
7687 case SEC_LEVEL_0:
7688 break;
7689 default:
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02007690 printk(KERN_ERR "Unknown security level %d\n",
James Ketrenosb095c382005-08-24 22:04:42 -05007691 priv->ieee->sec.level);
7692 break;
7693 }
7694}
7695
7696static void ipw_handle_data_packet(struct ipw_priv *priv,
7697 struct ipw_rx_mem_buffer *rxb,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007698 struct libipw_rx_stats *stats)
James Ketrenos43f66a62005-03-25 12:31:53 -06007699{
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007700 struct net_device *dev = priv->net_dev;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007701 struct libipw_hdr_4addr *hdr;
James Ketrenos43f66a62005-03-25 12:31:53 -06007702 struct ipw_rx_packet *pkt = (struct ipw_rx_packet *)rxb->skb->data;
7703
7704 /* We received data from the HW, so stop the watchdog */
Florian Westphal860e9532016-05-03 16:33:13 +02007705 netif_trans_update(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06007706
Jeff Garzikbf794512005-07-31 13:07:26 -04007707 /* We only process data packets if the
James Ketrenos43f66a62005-03-25 12:31:53 -06007708 * interface is open */
James Ketrenosa613bff2005-08-24 21:43:11 -05007709 if (unlikely((le16_to_cpu(pkt->u.frame.length) + IPW_RX_FRAME_SIZE) >
James Ketrenos43f66a62005-03-25 12:31:53 -06007710 skb_tailroom(rxb->skb))) {
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007711 dev->stats.rx_errors++;
James Ketrenos43f66a62005-03-25 12:31:53 -06007712 priv->wstats.discard.misc++;
7713 IPW_DEBUG_DROP("Corruption detected! Oh no!\n");
7714 return;
7715 } else if (unlikely(!netif_running(priv->net_dev))) {
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007716 dev->stats.rx_dropped++;
James Ketrenos43f66a62005-03-25 12:31:53 -06007717 priv->wstats.discard.misc++;
7718 IPW_DEBUG_DROP("Dropping packet while interface is not up.\n");
7719 return;
7720 }
7721
7722 /* Advance skb->data to the start of the actual payload */
Jiri Bencaaa4d302005-06-07 14:58:41 +02007723 skb_reserve(rxb->skb, offsetof(struct ipw_rx_packet, u.frame.data));
James Ketrenos43f66a62005-03-25 12:31:53 -06007724
7725 /* Set the size of the skb to the size of the frame */
James Ketrenosa613bff2005-08-24 21:43:11 -05007726 skb_put(rxb->skb, le16_to_cpu(pkt->u.frame.length));
James Ketrenos43f66a62005-03-25 12:31:53 -06007727
7728 IPW_DEBUG_RX("Rx packet of %d bytes.\n", rxb->skb->len);
7729
James Ketrenosb095c382005-08-24 22:04:42 -05007730 /* HW decrypt will not clear the WEP bit, MIC, PN, etc. */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007731 hdr = (struct libipw_hdr_4addr *)rxb->skb->data;
Hong Liu567deaf2005-08-31 18:07:22 +08007732 if (priv->ieee->iw_mode != IW_MODE_MONITOR &&
Stephen Hemminger3c190652006-01-03 15:27:38 -08007733 (is_multicast_ether_addr(hdr->addr1) ?
Hong Liu567deaf2005-08-31 18:07:22 +08007734 !priv->ieee->host_mc_decrypt : !priv->ieee->host_decrypt))
James Ketrenosb095c382005-08-24 22:04:42 -05007735 ipw_rebuild_decrypted_skb(priv, rxb->skb);
7736
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007737 if (!libipw_rx(priv->ieee, rxb->skb, stats))
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007738 dev->stats.rx_errors++;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007739 else { /* libipw_rx succeeded, so it now owns the SKB */
James Ketrenos43f66a62005-03-25 12:31:53 -06007740 rxb->skb = NULL;
James Ketrenosb095c382005-08-24 22:04:42 -05007741 __ipw_led_activity_on(priv);
James Ketrenosa613bff2005-08-24 21:43:11 -05007742 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007743}
7744
Zhu Yi459d4082006-04-13 17:21:00 +08007745#ifdef CONFIG_IPW2200_RADIOTAP
Mike Kershaw24a47db2005-08-26 00:41:54 -05007746static void ipw_handle_data_packet_monitor(struct ipw_priv *priv,
7747 struct ipw_rx_mem_buffer *rxb,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007748 struct libipw_rx_stats *stats)
Mike Kershaw24a47db2005-08-26 00:41:54 -05007749{
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007750 struct net_device *dev = priv->net_dev;
Mike Kershaw24a47db2005-08-26 00:41:54 -05007751 struct ipw_rx_packet *pkt = (struct ipw_rx_packet *)rxb->skb->data;
7752 struct ipw_rx_frame *frame = &pkt->u.frame;
7753
7754 /* initial pull of some data */
7755 u16 received_channel = frame->received_channel;
7756 u8 antennaAndPhy = frame->antennaAndPhy;
7757 s8 antsignal = frame->rssi_dbm - IPW_RSSI_TO_DBM; /* call it signed anyhow */
7758 u16 pktrate = frame->rate;
7759
7760 /* Magic struct that slots into the radiotap header -- no reason
7761 * to build this manually element by element, we can write it much
7762 * more efficiently than we can parse it. ORDER MATTERS HERE */
Zhu Yid685b8c2006-04-13 17:20:27 +08007763 struct ipw_rt_hdr *ipw_rt;
Mike Kershaw24a47db2005-08-26 00:41:54 -05007764
Dan Carpenter92c1ff12012-01-12 09:34:50 +03007765 unsigned short len = le16_to_cpu(pkt->u.frame.length);
Mike Kershaw24a47db2005-08-26 00:41:54 -05007766
7767 /* We received data from the HW, so stop the watchdog */
Florian Westphal860e9532016-05-03 16:33:13 +02007768 netif_trans_update(dev);
Mike Kershaw24a47db2005-08-26 00:41:54 -05007769
7770 /* We only process data packets if the
7771 * interface is open */
7772 if (unlikely((le16_to_cpu(pkt->u.frame.length) + IPW_RX_FRAME_SIZE) >
7773 skb_tailroom(rxb->skb))) {
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007774 dev->stats.rx_errors++;
Mike Kershaw24a47db2005-08-26 00:41:54 -05007775 priv->wstats.discard.misc++;
7776 IPW_DEBUG_DROP("Corruption detected! Oh no!\n");
7777 return;
7778 } else if (unlikely(!netif_running(priv->net_dev))) {
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007779 dev->stats.rx_dropped++;
Mike Kershaw24a47db2005-08-26 00:41:54 -05007780 priv->wstats.discard.misc++;
7781 IPW_DEBUG_DROP("Dropping packet while interface is not up.\n");
7782 return;
7783 }
7784
7785 /* Libpcap 0.9.3+ can handle variable length radiotap, so we'll use
7786 * that now */
7787 if (len > IPW_RX_BUF_SIZE - sizeof(struct ipw_rt_hdr)) {
7788 /* FIXME: Should alloc bigger skb instead */
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007789 dev->stats.rx_dropped++;
Mike Kershaw24a47db2005-08-26 00:41:54 -05007790 priv->wstats.discard.misc++;
7791 IPW_DEBUG_DROP("Dropping too large packet in monitor\n");
7792 return;
7793 }
7794
7795 /* copy the frame itself */
7796 memmove(rxb->skb->data + sizeof(struct ipw_rt_hdr),
7797 rxb->skb->data + IPW_RX_FRAME_SIZE, len);
7798
Mike Kershaw24a47db2005-08-26 00:41:54 -05007799 ipw_rt = (struct ipw_rt_hdr *)rxb->skb->data;
7800
7801 ipw_rt->rt_hdr.it_version = PKTHDR_RADIOTAP_VERSION;
7802 ipw_rt->rt_hdr.it_pad = 0; /* always good to zero */
Al Viro743b84d2007-12-27 01:43:16 -05007803 ipw_rt->rt_hdr.it_len = cpu_to_le16(sizeof(struct ipw_rt_hdr)); /* total header+data */
Mike Kershaw24a47db2005-08-26 00:41:54 -05007804
7805 /* Big bitfield of all the fields we provide in radiotap */
Al Viro743b84d2007-12-27 01:43:16 -05007806 ipw_rt->rt_hdr.it_present = cpu_to_le32(
7807 (1 << IEEE80211_RADIOTAP_TSFT) |
Zhu Yi4b1f8a92006-12-05 14:42:14 +08007808 (1 << IEEE80211_RADIOTAP_FLAGS) |
Mike Kershaw24a47db2005-08-26 00:41:54 -05007809 (1 << IEEE80211_RADIOTAP_RATE) |
7810 (1 << IEEE80211_RADIOTAP_CHANNEL) |
7811 (1 << IEEE80211_RADIOTAP_DBM_ANTSIGNAL) |
Zhu Yid685b8c2006-04-13 17:20:27 +08007812 (1 << IEEE80211_RADIOTAP_DBM_ANTNOISE) |
Mike Kershaw24a47db2005-08-26 00:41:54 -05007813 (1 << IEEE80211_RADIOTAP_ANTENNA));
7814
7815 /* Zero the flags, we'll add to them as we go */
7816 ipw_rt->rt_flags = 0;
Zhu Yi4b1f8a92006-12-05 14:42:14 +08007817 ipw_rt->rt_tsf = (u64)(frame->parent_tsf[3] << 24 |
7818 frame->parent_tsf[2] << 16 |
7819 frame->parent_tsf[1] << 8 |
7820 frame->parent_tsf[0]);
Mike Kershaw24a47db2005-08-26 00:41:54 -05007821
7822 /* Convert signal to DBM */
7823 ipw_rt->rt_dbmsignal = antsignal;
Reinette Chatre21f8a732009-08-18 10:25:05 -07007824 ipw_rt->rt_dbmnoise = (s8) le16_to_cpu(frame->noise);
Mike Kershaw24a47db2005-08-26 00:41:54 -05007825
7826 /* Convert the channel data and set the flags */
7827 ipw_rt->rt_channel = cpu_to_le16(ieee80211chan2mhz(received_channel));
7828 if (received_channel > 14) { /* 802.11a */
7829 ipw_rt->rt_chbitmask =
7830 cpu_to_le16((IEEE80211_CHAN_OFDM | IEEE80211_CHAN_5GHZ));
7831 } else if (antennaAndPhy & 32) { /* 802.11b */
7832 ipw_rt->rt_chbitmask =
7833 cpu_to_le16((IEEE80211_CHAN_CCK | IEEE80211_CHAN_2GHZ));
7834 } else { /* 802.11g */
7835 ipw_rt->rt_chbitmask =
Al Viro472caf82007-12-27 01:50:54 -05007836 cpu_to_le16(IEEE80211_CHAN_OFDM | IEEE80211_CHAN_2GHZ);
Mike Kershaw24a47db2005-08-26 00:41:54 -05007837 }
7838
7839 /* set the rate in multiples of 500k/s */
7840 switch (pktrate) {
7841 case IPW_TX_RATE_1MB:
7842 ipw_rt->rt_rate = 2;
7843 break;
7844 case IPW_TX_RATE_2MB:
7845 ipw_rt->rt_rate = 4;
7846 break;
7847 case IPW_TX_RATE_5MB:
7848 ipw_rt->rt_rate = 10;
7849 break;
7850 case IPW_TX_RATE_6MB:
7851 ipw_rt->rt_rate = 12;
7852 break;
7853 case IPW_TX_RATE_9MB:
7854 ipw_rt->rt_rate = 18;
7855 break;
7856 case IPW_TX_RATE_11MB:
7857 ipw_rt->rt_rate = 22;
7858 break;
7859 case IPW_TX_RATE_12MB:
7860 ipw_rt->rt_rate = 24;
7861 break;
7862 case IPW_TX_RATE_18MB:
7863 ipw_rt->rt_rate = 36;
7864 break;
7865 case IPW_TX_RATE_24MB:
7866 ipw_rt->rt_rate = 48;
7867 break;
7868 case IPW_TX_RATE_36MB:
7869 ipw_rt->rt_rate = 72;
7870 break;
7871 case IPW_TX_RATE_48MB:
7872 ipw_rt->rt_rate = 96;
7873 break;
7874 case IPW_TX_RATE_54MB:
7875 ipw_rt->rt_rate = 108;
7876 break;
7877 default:
7878 ipw_rt->rt_rate = 0;
7879 break;
7880 }
7881
7882 /* antenna number */
7883 ipw_rt->rt_antenna = (antennaAndPhy & 3); /* Is this right? */
7884
7885 /* set the preamble flag if we have it */
7886 if ((antennaAndPhy & 64))
7887 ipw_rt->rt_flags |= IEEE80211_RADIOTAP_F_SHORTPRE;
7888
7889 /* Set the size of the skb to the size of the frame */
7890 skb_put(rxb->skb, len + sizeof(struct ipw_rt_hdr));
James Ketrenos43f66a62005-03-25 12:31:53 -06007891
7892 IPW_DEBUG_RX("Rx packet of %d bytes.\n", rxb->skb->len);
7893
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007894 if (!libipw_rx(priv->ieee, rxb->skb, stats))
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007895 dev->stats.rx_errors++;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007896 else { /* libipw_rx succeeded, so it now owns the SKB */
James Ketrenos43f66a62005-03-25 12:31:53 -06007897 rxb->skb = NULL;
Mike Kershaw24a47db2005-08-26 00:41:54 -05007898 /* no LED during capture */
7899 }
7900}
7901#endif
7902
Zhu Yid685b8c2006-04-13 17:20:27 +08007903#ifdef CONFIG_IPW2200_PROMISCUOUS
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007904#define libipw_is_probe_response(fc) \
Zhu Yid685b8c2006-04-13 17:20:27 +08007905 ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT && \
7906 (fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_PROBE_RESP )
7907
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007908#define libipw_is_management(fc) \
Zhu Yid685b8c2006-04-13 17:20:27 +08007909 ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT)
7910
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007911#define libipw_is_control(fc) \
Zhu Yid685b8c2006-04-13 17:20:27 +08007912 ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_CTL)
7913
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007914#define libipw_is_data(fc) \
Zhu Yid685b8c2006-04-13 17:20:27 +08007915 ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA)
7916
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007917#define libipw_is_assoc_request(fc) \
Zhu Yid685b8c2006-04-13 17:20:27 +08007918 ((fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_ASSOC_REQ)
7919
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007920#define libipw_is_reassoc_request(fc) \
Zhu Yid685b8c2006-04-13 17:20:27 +08007921 ((fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_REASSOC_REQ)
7922
7923static void ipw_handle_promiscuous_rx(struct ipw_priv *priv,
7924 struct ipw_rx_mem_buffer *rxb,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007925 struct libipw_rx_stats *stats)
Zhu Yid685b8c2006-04-13 17:20:27 +08007926{
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007927 struct net_device *dev = priv->prom_net_dev;
Zhu Yid685b8c2006-04-13 17:20:27 +08007928 struct ipw_rx_packet *pkt = (struct ipw_rx_packet *)rxb->skb->data;
7929 struct ipw_rx_frame *frame = &pkt->u.frame;
7930 struct ipw_rt_hdr *ipw_rt;
7931
7932 /* First cache any information we need before we overwrite
7933 * the information provided in the skb from the hardware */
7934 struct ieee80211_hdr *hdr;
7935 u16 channel = frame->received_channel;
7936 u8 phy_flags = frame->antennaAndPhy;
7937 s8 signal = frame->rssi_dbm - IPW_RSSI_TO_DBM;
Reinette Chatre21f8a732009-08-18 10:25:05 -07007938 s8 noise = (s8) le16_to_cpu(frame->noise);
Zhu Yid685b8c2006-04-13 17:20:27 +08007939 u8 rate = frame->rate;
Dan Carpenter92c1ff12012-01-12 09:34:50 +03007940 unsigned short len = le16_to_cpu(pkt->u.frame.length);
Zhu Yid685b8c2006-04-13 17:20:27 +08007941 struct sk_buff *skb;
7942 int hdr_only = 0;
7943 u16 filter = priv->prom_priv->filter;
7944
7945 /* If the filter is set to not include Rx frames then return */
7946 if (filter & IPW_PROM_NO_RX)
7947 return;
7948
Zhu Yid685b8c2006-04-13 17:20:27 +08007949 /* We received data from the HW, so stop the watchdog */
Florian Westphal860e9532016-05-03 16:33:13 +02007950 netif_trans_update(dev);
Zhu Yid685b8c2006-04-13 17:20:27 +08007951
7952 if (unlikely((len + IPW_RX_FRAME_SIZE) > skb_tailroom(rxb->skb))) {
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007953 dev->stats.rx_errors++;
Zhu Yid685b8c2006-04-13 17:20:27 +08007954 IPW_DEBUG_DROP("Corruption detected! Oh no!\n");
7955 return;
7956 }
7957
7958 /* We only process data packets if the interface is open */
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007959 if (unlikely(!netif_running(dev))) {
7960 dev->stats.rx_dropped++;
Zhu Yid685b8c2006-04-13 17:20:27 +08007961 IPW_DEBUG_DROP("Dropping packet while interface is not up.\n");
7962 return;
7963 }
7964
7965 /* Libpcap 0.9.3+ can handle variable length radiotap, so we'll use
7966 * that now */
7967 if (len > IPW_RX_BUF_SIZE - sizeof(struct ipw_rt_hdr)) {
7968 /* FIXME: Should alloc bigger skb instead */
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007969 dev->stats.rx_dropped++;
Zhu Yid685b8c2006-04-13 17:20:27 +08007970 IPW_DEBUG_DROP("Dropping too large packet in monitor\n");
7971 return;
7972 }
7973
7974 hdr = (void *)rxb->skb->data + IPW_RX_FRAME_SIZE;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007975 if (libipw_is_management(le16_to_cpu(hdr->frame_control))) {
Zhu Yid685b8c2006-04-13 17:20:27 +08007976 if (filter & IPW_PROM_NO_MGMT)
7977 return;
7978 if (filter & IPW_PROM_MGMT_HEADER_ONLY)
7979 hdr_only = 1;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007980 } else if (libipw_is_control(le16_to_cpu(hdr->frame_control))) {
Zhu Yid685b8c2006-04-13 17:20:27 +08007981 if (filter & IPW_PROM_NO_CTL)
7982 return;
7983 if (filter & IPW_PROM_CTL_HEADER_ONLY)
7984 hdr_only = 1;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007985 } else if (libipw_is_data(le16_to_cpu(hdr->frame_control))) {
Zhu Yid685b8c2006-04-13 17:20:27 +08007986 if (filter & IPW_PROM_NO_DATA)
7987 return;
7988 if (filter & IPW_PROM_DATA_HEADER_ONLY)
7989 hdr_only = 1;
7990 }
7991
7992 /* Copy the SKB since this is for the promiscuous side */
7993 skb = skb_copy(rxb->skb, GFP_ATOMIC);
7994 if (skb == NULL) {
7995 IPW_ERROR("skb_clone failed for promiscuous copy.\n");
7996 return;
7997 }
7998
7999 /* copy the frame data to write after where the radiotap header goes */
8000 ipw_rt = (void *)skb->data;
8001
8002 if (hdr_only)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008003 len = libipw_get_hdrlen(le16_to_cpu(hdr->frame_control));
Zhu Yid685b8c2006-04-13 17:20:27 +08008004
8005 memcpy(ipw_rt->payload, hdr, len);
8006
Zhu Yid685b8c2006-04-13 17:20:27 +08008007 ipw_rt->rt_hdr.it_version = PKTHDR_RADIOTAP_VERSION;
8008 ipw_rt->rt_hdr.it_pad = 0; /* always good to zero */
Al Viro743b84d2007-12-27 01:43:16 -05008009 ipw_rt->rt_hdr.it_len = cpu_to_le16(sizeof(*ipw_rt)); /* total header+data */
Zhu Yid685b8c2006-04-13 17:20:27 +08008010
8011 /* Set the size of the skb to the size of the frame */
Al Viro743b84d2007-12-27 01:43:16 -05008012 skb_put(skb, sizeof(*ipw_rt) + len);
Zhu Yid685b8c2006-04-13 17:20:27 +08008013
8014 /* Big bitfield of all the fields we provide in radiotap */
Al Viro743b84d2007-12-27 01:43:16 -05008015 ipw_rt->rt_hdr.it_present = cpu_to_le32(
8016 (1 << IEEE80211_RADIOTAP_TSFT) |
Zhu Yi4b1f8a92006-12-05 14:42:14 +08008017 (1 << IEEE80211_RADIOTAP_FLAGS) |
Zhu Yid685b8c2006-04-13 17:20:27 +08008018 (1 << IEEE80211_RADIOTAP_RATE) |
8019 (1 << IEEE80211_RADIOTAP_CHANNEL) |
8020 (1 << IEEE80211_RADIOTAP_DBM_ANTSIGNAL) |
8021 (1 << IEEE80211_RADIOTAP_DBM_ANTNOISE) |
8022 (1 << IEEE80211_RADIOTAP_ANTENNA));
8023
8024 /* Zero the flags, we'll add to them as we go */
8025 ipw_rt->rt_flags = 0;
Zhu Yi4b1f8a92006-12-05 14:42:14 +08008026 ipw_rt->rt_tsf = (u64)(frame->parent_tsf[3] << 24 |
8027 frame->parent_tsf[2] << 16 |
8028 frame->parent_tsf[1] << 8 |
8029 frame->parent_tsf[0]);
Zhu Yid685b8c2006-04-13 17:20:27 +08008030
8031 /* Convert to DBM */
8032 ipw_rt->rt_dbmsignal = signal;
8033 ipw_rt->rt_dbmnoise = noise;
8034
8035 /* Convert the channel data and set the flags */
8036 ipw_rt->rt_channel = cpu_to_le16(ieee80211chan2mhz(channel));
8037 if (channel > 14) { /* 802.11a */
8038 ipw_rt->rt_chbitmask =
8039 cpu_to_le16((IEEE80211_CHAN_OFDM | IEEE80211_CHAN_5GHZ));
8040 } else if (phy_flags & (1 << 5)) { /* 802.11b */
8041 ipw_rt->rt_chbitmask =
8042 cpu_to_le16((IEEE80211_CHAN_CCK | IEEE80211_CHAN_2GHZ));
8043 } else { /* 802.11g */
8044 ipw_rt->rt_chbitmask =
Al Viro472caf82007-12-27 01:50:54 -05008045 cpu_to_le16(IEEE80211_CHAN_OFDM | IEEE80211_CHAN_2GHZ);
Zhu Yid685b8c2006-04-13 17:20:27 +08008046 }
8047
8048 /* set the rate in multiples of 500k/s */
8049 switch (rate) {
8050 case IPW_TX_RATE_1MB:
8051 ipw_rt->rt_rate = 2;
8052 break;
8053 case IPW_TX_RATE_2MB:
8054 ipw_rt->rt_rate = 4;
8055 break;
8056 case IPW_TX_RATE_5MB:
8057 ipw_rt->rt_rate = 10;
8058 break;
8059 case IPW_TX_RATE_6MB:
8060 ipw_rt->rt_rate = 12;
8061 break;
8062 case IPW_TX_RATE_9MB:
8063 ipw_rt->rt_rate = 18;
8064 break;
8065 case IPW_TX_RATE_11MB:
8066 ipw_rt->rt_rate = 22;
8067 break;
8068 case IPW_TX_RATE_12MB:
8069 ipw_rt->rt_rate = 24;
8070 break;
8071 case IPW_TX_RATE_18MB:
8072 ipw_rt->rt_rate = 36;
8073 break;
8074 case IPW_TX_RATE_24MB:
8075 ipw_rt->rt_rate = 48;
8076 break;
8077 case IPW_TX_RATE_36MB:
8078 ipw_rt->rt_rate = 72;
8079 break;
8080 case IPW_TX_RATE_48MB:
8081 ipw_rt->rt_rate = 96;
8082 break;
8083 case IPW_TX_RATE_54MB:
8084 ipw_rt->rt_rate = 108;
8085 break;
8086 default:
8087 ipw_rt->rt_rate = 0;
8088 break;
8089 }
8090
8091 /* antenna number */
8092 ipw_rt->rt_antenna = (phy_flags & 3);
8093
8094 /* set the preamble flag if we have it */
8095 if (phy_flags & (1 << 6))
8096 ipw_rt->rt_flags |= IEEE80211_RADIOTAP_F_SHORTPRE;
8097
8098 IPW_DEBUG_RX("Rx packet of %d bytes.\n", skb->len);
8099
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008100 if (!libipw_rx(priv->prom_priv->ieee, skb, stats)) {
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00008101 dev->stats.rx_errors++;
Zhu Yid685b8c2006-04-13 17:20:27 +08008102 dev_kfree_skb_any(skb);
8103 }
8104}
8105#endif
8106
Arjan van de Ven858119e2006-01-14 13:20:43 -08008107static int is_network_packet(struct ipw_priv *priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008108 struct libipw_hdr_4addr *header)
James Ketrenosea2b26e2005-08-24 21:25:16 -05008109{
Lucas De Marchi25985ed2011-03-30 22:57:33 -03008110 /* Filter incoming packets to determine if they are targeted toward
James Ketrenosea2b26e2005-08-24 21:25:16 -05008111 * this network, discarding packets coming from ourselves */
8112 switch (priv->ieee->iw_mode) {
James Ketrenosa613bff2005-08-24 21:43:11 -05008113 case IW_MODE_ADHOC: /* Header: Dest. | Source | BSSID */
James Ketrenosc848d0a2005-08-24 21:56:24 -05008114 /* packets from our adapter are dropped (echo) */
dingtianhong36325f32013-12-26 19:41:23 +08008115 if (ether_addr_equal(header->addr2, priv->net_dev->dev_addr))
James Ketrenosc848d0a2005-08-24 21:56:24 -05008116 return 0;
8117
Peter Jones90700fd2005-08-26 16:51:06 -05008118 /* {broad,multi}cast packets to our BSSID go through */
Stephen Hemminger3c190652006-01-03 15:27:38 -08008119 if (is_multicast_ether_addr(header->addr1))
dingtianhong36325f32013-12-26 19:41:23 +08008120 return ether_addr_equal(header->addr3, priv->bssid);
James Ketrenosa613bff2005-08-24 21:43:11 -05008121
8122 /* packets to our adapter go through */
dingtianhong36325f32013-12-26 19:41:23 +08008123 return ether_addr_equal(header->addr1,
8124 priv->net_dev->dev_addr);
James Ketrenosa613bff2005-08-24 21:43:11 -05008125
Peter Jones90700fd2005-08-26 16:51:06 -05008126 case IW_MODE_INFRA: /* Header: Dest. | BSSID | Source */
James Ketrenosc848d0a2005-08-24 21:56:24 -05008127 /* packets from our adapter are dropped (echo) */
dingtianhong36325f32013-12-26 19:41:23 +08008128 if (ether_addr_equal(header->addr3, priv->net_dev->dev_addr))
James Ketrenosc848d0a2005-08-24 21:56:24 -05008129 return 0;
8130
Peter Jones90700fd2005-08-26 16:51:06 -05008131 /* {broad,multi}cast packets to our BSS go through */
Stephen Hemminger3c190652006-01-03 15:27:38 -08008132 if (is_multicast_ether_addr(header->addr1))
dingtianhong36325f32013-12-26 19:41:23 +08008133 return ether_addr_equal(header->addr2, priv->bssid);
James Ketrenosa613bff2005-08-24 21:43:11 -05008134
8135 /* packets to our adapter go through */
dingtianhong36325f32013-12-26 19:41:23 +08008136 return ether_addr_equal(header->addr1,
8137 priv->net_dev->dev_addr);
James Ketrenosea2b26e2005-08-24 21:25:16 -05008138 }
James Ketrenosa613bff2005-08-24 21:43:11 -05008139
James Ketrenosea2b26e2005-08-24 21:25:16 -05008140 return 1;
8141}
8142
James Ketrenosafbf30a2005-08-25 00:05:33 -05008143#define IPW_PACKET_RETRY_TIME HZ
8144
Arjan van de Ven858119e2006-01-14 13:20:43 -08008145static int is_duplicate_packet(struct ipw_priv *priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008146 struct libipw_hdr_4addr *header)
James Ketrenosafbf30a2005-08-25 00:05:33 -05008147{
James Ketrenosafbf30a2005-08-25 00:05:33 -05008148 u16 sc = le16_to_cpu(header->seq_ctl);
8149 u16 seq = WLAN_GET_SEQ_SEQ(sc);
8150 u16 frag = WLAN_GET_SEQ_FRAG(sc);
8151 u16 *last_seq, *last_frag;
8152 unsigned long *last_time;
8153
8154 switch (priv->ieee->iw_mode) {
8155 case IW_MODE_ADHOC:
8156 {
8157 struct list_head *p;
8158 struct ipw_ibss_seq *entry = NULL;
8159 u8 *mac = header->addr2;
8160 int index = mac[5] % IPW_IBSS_MAC_HASH_SIZE;
8161
Dave Jones5cb06562013-07-03 15:05:18 -07008162 list_for_each(p, &priv->ibss_mac_hash[index]) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008163 entry =
8164 list_entry(p, struct ipw_ibss_seq, list);
dingtianhong36325f32013-12-26 19:41:23 +08008165 if (ether_addr_equal(entry->mac, mac))
James Ketrenosafbf30a2005-08-25 00:05:33 -05008166 break;
8167 }
8168 if (p == &priv->ibss_mac_hash[index]) {
8169 entry = kmalloc(sizeof(*entry), GFP_ATOMIC);
8170 if (!entry) {
8171 IPW_ERROR
8172 ("Cannot malloc new mac entry\n");
8173 return 0;
8174 }
8175 memcpy(entry->mac, mac, ETH_ALEN);
8176 entry->seq_num = seq;
8177 entry->frag_num = frag;
8178 entry->packet_time = jiffies;
8179 list_add(&entry->list,
8180 &priv->ibss_mac_hash[index]);
8181 return 0;
8182 }
8183 last_seq = &entry->seq_num;
8184 last_frag = &entry->frag_num;
8185 last_time = &entry->packet_time;
8186 break;
8187 }
8188 case IW_MODE_INFRA:
8189 last_seq = &priv->last_seq_num;
8190 last_frag = &priv->last_frag_num;
8191 last_time = &priv->last_packet_time;
8192 break;
8193 default:
8194 return 0;
8195 }
8196 if ((*last_seq == seq) &&
8197 time_after(*last_time + IPW_PACKET_RETRY_TIME, jiffies)) {
8198 if (*last_frag == frag)
8199 goto drop;
8200 if (*last_frag + 1 != frag)
8201 /* out-of-order fragment */
8202 goto drop;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008203 } else
8204 *last_seq = seq;
8205
Zhu Yif57ce7c2005-07-13 12:22:15 -05008206 *last_frag = frag;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008207 *last_time = jiffies;
8208 return 0;
8209
8210 drop:
Zhu Yi87b016c2005-08-05 17:17:35 +08008211 /* Comment this line now since we observed the card receives
8212 * duplicate packets but the FCTL_RETRY bit is not set in the
8213 * IBSS mode with fragmentation enabled.
John W. Linville72118012008-09-30 21:43:03 -04008214 BUG_ON(!(le16_to_cpu(header->frame_control) & IEEE80211_FCTL_RETRY)); */
James Ketrenosafbf30a2005-08-25 00:05:33 -05008215 return 1;
8216}
8217
James Ketrenosb095c382005-08-24 22:04:42 -05008218static void ipw_handle_mgmt_packet(struct ipw_priv *priv,
8219 struct ipw_rx_mem_buffer *rxb,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008220 struct libipw_rx_stats *stats)
James Ketrenosb095c382005-08-24 22:04:42 -05008221{
8222 struct sk_buff *skb = rxb->skb;
8223 struct ipw_rx_packet *pkt = (struct ipw_rx_packet *)skb->data;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008224 struct libipw_hdr_4addr *header = (struct libipw_hdr_4addr *)
James Ketrenosb095c382005-08-24 22:04:42 -05008225 (skb->data + IPW_RX_FRAME_SIZE);
8226
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008227 libipw_rx_mgt(priv->ieee, header, stats);
James Ketrenosb095c382005-08-24 22:04:42 -05008228
8229 if (priv->ieee->iw_mode == IW_MODE_ADHOC &&
8230 ((WLAN_FC_GET_STYPE(le16_to_cpu(header->frame_ctl)) ==
8231 IEEE80211_STYPE_PROBE_RESP) ||
8232 (WLAN_FC_GET_STYPE(le16_to_cpu(header->frame_ctl)) ==
8233 IEEE80211_STYPE_BEACON))) {
dingtianhong36325f32013-12-26 19:41:23 +08008234 if (ether_addr_equal(header->addr3, priv->bssid))
James Ketrenosb095c382005-08-24 22:04:42 -05008235 ipw_add_station(priv, header->addr2);
8236 }
8237
8238 if (priv->config & CFG_NET_STATS) {
8239 IPW_DEBUG_HC("sending stat packet\n");
8240
8241 /* Set the size of the skb to the size of the full
8242 * ipw header and 802.11 frame */
8243 skb_put(skb, le16_to_cpu(pkt->u.frame.length) +
8244 IPW_RX_FRAME_SIZE);
8245
8246 /* Advance past the ipw packet header to the 802.11 frame */
8247 skb_pull(skb, IPW_RX_FRAME_SIZE);
8248
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008249 /* Push the libipw_rx_stats before the 802.11 frame */
James Ketrenosb095c382005-08-24 22:04:42 -05008250 memcpy(skb_push(skb, sizeof(*stats)), stats, sizeof(*stats));
8251
8252 skb->dev = priv->ieee->dev;
8253
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008254 /* Point raw at the libipw_stats */
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07008255 skb_reset_mac_header(skb);
James Ketrenosb095c382005-08-24 22:04:42 -05008256
8257 skb->pkt_type = PACKET_OTHERHOST;
Harvey Harrisonc1b4aa32009-01-29 13:26:44 -08008258 skb->protocol = cpu_to_be16(ETH_P_80211_STATS);
James Ketrenosb095c382005-08-24 22:04:42 -05008259 memset(skb->cb, 0, sizeof(rxb->skb->cb));
8260 netif_rx(skb);
8261 rxb->skb = NULL;
8262 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008263}
8264
James Ketrenos43f66a62005-03-25 12:31:53 -06008265/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03008266 * Main entry function for receiving a packet with 80211 headers. This
James Ketrenos43f66a62005-03-25 12:31:53 -06008267 * should be called when ever the FW has notified us that there is a new
Lucas De Marchi25985ed2011-03-30 22:57:33 -03008268 * skb in the receive queue.
James Ketrenos43f66a62005-03-25 12:31:53 -06008269 */
8270static void ipw_rx(struct ipw_priv *priv)
8271{
8272 struct ipw_rx_mem_buffer *rxb;
8273 struct ipw_rx_packet *pkt;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008274 struct libipw_hdr_4addr *header;
James Ketrenos43f66a62005-03-25 12:31:53 -06008275 u32 r, w, i;
8276 u8 network_packet;
Dan Williams943dbef2008-02-14 17:49:41 -05008277 u8 fill_rx = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008278
James Ketrenosb095c382005-08-24 22:04:42 -05008279 r = ipw_read32(priv, IPW_RX_READ_INDEX);
8280 w = ipw_read32(priv, IPW_RX_WRITE_INDEX);
Dan Williams943dbef2008-02-14 17:49:41 -05008281 i = priv->rxq->read;
8282
8283 if (ipw_rx_queue_space (priv->rxq) > (RX_QUEUE_SIZE / 2))
8284 fill_rx = 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06008285
8286 while (i != r) {
8287 rxb = priv->rxq->queue[i];
James Ketrenos43f66a62005-03-25 12:31:53 -06008288 if (unlikely(rxb == NULL)) {
8289 printk(KERN_CRIT "Queue not allocated!\n");
8290 break;
8291 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008292 priv->rxq->queue[i] = NULL;
8293
8294 pci_dma_sync_single_for_cpu(priv->pci_dev, rxb->dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05008295 IPW_RX_BUF_SIZE,
James Ketrenos43f66a62005-03-25 12:31:53 -06008296 PCI_DMA_FROMDEVICE);
8297
8298 pkt = (struct ipw_rx_packet *)rxb->skb->data;
8299 IPW_DEBUG_RX("Packet: type=%02X seq=%02X bits=%02X\n",
8300 pkt->header.message_type,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008301 pkt->header.rx_seq_num, pkt->header.control_bits);
James Ketrenos43f66a62005-03-25 12:31:53 -06008302
8303 switch (pkt->header.message_type) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008304 case RX_FRAME_TYPE: /* 802.11 frame */ {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008305 struct libipw_rx_stats stats = {
Zhu Yi851ca262006-08-21 11:37:58 +08008306 .rssi = pkt->u.frame.rssi_dbm -
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008307 IPW_RSSI_TO_DBM,
James Ketrenosc848d0a2005-08-24 21:56:24 -05008308 .signal =
Reinette Chatre21f8a732009-08-18 10:25:05 -07008309 pkt->u.frame.rssi_dbm -
Bill Mossb1916082006-02-15 08:50:18 +08008310 IPW_RSSI_TO_DBM + 0x100,
James Ketrenosc848d0a2005-08-24 21:56:24 -05008311 .noise =
8312 le16_to_cpu(pkt->u.frame.noise),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008313 .rate = pkt->u.frame.rate,
8314 .mac_time = jiffies,
8315 .received_channel =
8316 pkt->u.frame.received_channel,
8317 .freq =
8318 (pkt->u.frame.
8319 control & (1 << 0)) ?
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008320 LIBIPW_24GHZ_BAND :
8321 LIBIPW_52GHZ_BAND,
James Ketrenosa613bff2005-08-24 21:43:11 -05008322 .len = le16_to_cpu(pkt->u.frame.length),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008323 };
James Ketrenos43f66a62005-03-25 12:31:53 -06008324
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008325 if (stats.rssi != 0)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008326 stats.mask |= LIBIPW_STATMASK_RSSI;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008327 if (stats.signal != 0)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008328 stats.mask |= LIBIPW_STATMASK_SIGNAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008329 if (stats.noise != 0)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008330 stats.mask |= LIBIPW_STATMASK_NOISE;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008331 if (stats.rate != 0)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008332 stats.mask |= LIBIPW_STATMASK_RATE;
James Ketrenos43f66a62005-03-25 12:31:53 -06008333
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008334 priv->rx_packets++;
James Ketrenos43f66a62005-03-25 12:31:53 -06008335
Zhu Yid685b8c2006-04-13 17:20:27 +08008336#ifdef CONFIG_IPW2200_PROMISCUOUS
8337 if (priv->prom_net_dev && netif_running(priv->prom_net_dev))
8338 ipw_handle_promiscuous_rx(priv, rxb, &stats);
8339#endif
8340
James Ketrenosb095c382005-08-24 22:04:42 -05008341#ifdef CONFIG_IPW2200_MONITOR
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008342 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
Zhu Yi459d4082006-04-13 17:21:00 +08008343#ifdef CONFIG_IPW2200_RADIOTAP
Zhu Yid685b8c2006-04-13 17:20:27 +08008344
8345 ipw_handle_data_packet_monitor(priv,
8346 rxb,
8347 &stats);
Mike Kershaw24a47db2005-08-26 00:41:54 -05008348#else
Zhu Yid685b8c2006-04-13 17:20:27 +08008349 ipw_handle_data_packet(priv, rxb,
8350 &stats);
Mike Kershaw24a47db2005-08-26 00:41:54 -05008351#endif
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008352 break;
8353 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008354#endif
Jeff Garzikbf794512005-07-31 13:07:26 -04008355
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008356 header =
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008357 (struct libipw_hdr_4addr *)(rxb->skb->
James Ketrenos0dacca12005-09-21 12:23:41 -05008358 data +
8359 IPW_RX_FRAME_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06008360 /* TODO: Check Ad-Hoc dest/source and make sure
8361 * that we are actually parsing these packets
Jeff Garzikbf794512005-07-31 13:07:26 -04008362 * correctly -- we should probably use the
James Ketrenos43f66a62005-03-25 12:31:53 -06008363 * frame control of the packet and disregard
8364 * the current iw_mode */
James Ketrenos43f66a62005-03-25 12:31:53 -06008365
James Ketrenosea2b26e2005-08-24 21:25:16 -05008366 network_packet =
8367 is_network_packet(priv, header);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008368 if (network_packet && priv->assoc_network) {
8369 priv->assoc_network->stats.rssi =
8370 stats.rssi;
Zhu Yi00d21de2006-04-13 17:19:02 +08008371 priv->exp_avg_rssi =
8372 exponential_average(priv->exp_avg_rssi,
8373 stats.rssi, DEPTH_RSSI);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008374 }
8375
8376 IPW_DEBUG_RX("Frame: len=%u\n",
James Ketrenosa613bff2005-08-24 21:43:11 -05008377 le16_to_cpu(pkt->u.frame.length));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008378
James Ketrenosa613bff2005-08-24 21:43:11 -05008379 if (le16_to_cpu(pkt->u.frame.length) <
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008380 libipw_get_hdrlen(le16_to_cpu(
Zhu Yi9d0be032006-02-15 06:18:19 +08008381 header->frame_ctl))) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008382 IPW_DEBUG_DROP
8383 ("Received packet is too small. "
8384 "Dropping.\n");
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00008385 priv->net_dev->stats.rx_errors++;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008386 priv->wstats.discard.misc++;
8387 break;
8388 }
8389
James Ketrenosa613bff2005-08-24 21:43:11 -05008390 switch (WLAN_FC_GET_TYPE
8391 (le16_to_cpu(header->frame_ctl))) {
James Ketrenosb095c382005-08-24 22:04:42 -05008392
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008393 case IEEE80211_FTYPE_MGMT:
James Ketrenosb095c382005-08-24 22:04:42 -05008394 ipw_handle_mgmt_packet(priv, rxb,
8395 &stats);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008396 break;
8397
8398 case IEEE80211_FTYPE_CTL:
8399 break;
8400
8401 case IEEE80211_FTYPE_DATA:
James Ketrenosafbf30a2005-08-25 00:05:33 -05008402 if (unlikely(!network_packet ||
8403 is_duplicate_packet(priv,
8404 header)))
8405 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008406 IPW_DEBUG_DROP("Dropping: "
Johannes Berge1749612008-10-27 15:59:26 -07008407 "%pM, "
8408 "%pM, "
8409 "%pM\n",
8410 header->addr1,
8411 header->addr2,
8412 header->addr3);
James Ketrenosb095c382005-08-24 22:04:42 -05008413 break;
8414 }
8415
8416 ipw_handle_data_packet(priv, rxb,
8417 &stats);
8418
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008419 break;
8420 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008421 break;
8422 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008423
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008424 case RX_HOST_NOTIFICATION_TYPE:{
8425 IPW_DEBUG_RX
8426 ("Notification: subtype=%02X flags=%02X size=%d\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06008427 pkt->u.notification.subtype,
8428 pkt->u.notification.flags,
Zhu Yi720eeb42006-12-05 14:41:40 +08008429 le16_to_cpu(pkt->u.notification.size));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008430 ipw_rx_notification(priv, &pkt->u.notification);
8431 break;
8432 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008433
8434 default:
8435 IPW_DEBUG_RX("Bad Rx packet of type %d\n",
8436 pkt->header.message_type);
8437 break;
8438 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008439
8440 /* For now we just don't re-use anything. We can tweak this
8441 * later to try and re-use notification packets and SKBs that
James Ketrenos43f66a62005-03-25 12:31:53 -06008442 * fail to Rx correctly */
8443 if (rxb->skb != NULL) {
8444 dev_kfree_skb_any(rxb->skb);
8445 rxb->skb = NULL;
8446 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008447
James Ketrenos43f66a62005-03-25 12:31:53 -06008448 pci_unmap_single(priv->pci_dev, rxb->dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05008449 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06008450 list_add_tail(&rxb->list, &priv->rxq->rx_used);
Jeff Garzikbf794512005-07-31 13:07:26 -04008451
James Ketrenos43f66a62005-03-25 12:31:53 -06008452 i = (i + 1) % RX_QUEUE_SIZE;
Dan Williams943dbef2008-02-14 17:49:41 -05008453
8454 /* If there are a lot of unsued frames, restock the Rx queue
8455 * so the ucode won't assert */
8456 if (fill_rx) {
8457 priv->rxq->read = i;
8458 ipw_rx_queue_replenish(priv);
8459 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008460 }
8461
8462 /* Backtrack one entry */
Dan Williams943dbef2008-02-14 17:49:41 -05008463 priv->rxq->read = i;
James Ketrenos43f66a62005-03-25 12:31:53 -06008464 ipw_rx_queue_restock(priv);
8465}
8466
James Ketrenosafbf30a2005-08-25 00:05:33 -05008467#define DEFAULT_RTS_THRESHOLD 2304U
8468#define MIN_RTS_THRESHOLD 1U
8469#define MAX_RTS_THRESHOLD 2304U
8470#define DEFAULT_BEACON_INTERVAL 100U
8471#define DEFAULT_SHORT_RETRY_LIMIT 7U
8472#define DEFAULT_LONG_RETRY_LIMIT 4U
8473
Zhu Yid6d5b5c2006-02-16 16:21:09 +08008474/**
8475 * ipw_sw_reset
8476 * @option: options to control different reset behaviour
8477 * 0 = reset everything except the 'disable' module_param
8478 * 1 = reset everything and print out driver info (for probe only)
8479 * 2 = reset everything
8480 */
8481static int ipw_sw_reset(struct ipw_priv *priv, int option)
James Ketrenos43f66a62005-03-25 12:31:53 -06008482{
James Ketrenosafbf30a2005-08-25 00:05:33 -05008483 int band, modulation;
8484 int old_mode = priv->ieee->iw_mode;
James Ketrenos43f66a62005-03-25 12:31:53 -06008485
James Ketrenosafbf30a2005-08-25 00:05:33 -05008486 /* Initialize module parameter values here */
8487 priv->config = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008488
James Ketrenosafbf30a2005-08-25 00:05:33 -05008489 /* We default to disabling the LED code as right now it causes
8490 * too many systems to lock up... */
Reinette Chatre21f8a732009-08-18 10:25:05 -07008491 if (!led_support)
James Ketrenosafbf30a2005-08-25 00:05:33 -05008492 priv->config |= CFG_NO_LED;
James Ketrenos43f66a62005-03-25 12:31:53 -06008493
James Ketrenosafbf30a2005-08-25 00:05:33 -05008494 if (associate)
8495 priv->config |= CFG_ASSOCIATE;
8496 else
8497 IPW_DEBUG_INFO("Auto associate disabled.\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04008498
James Ketrenosafbf30a2005-08-25 00:05:33 -05008499 if (auto_create)
8500 priv->config |= CFG_ADHOC_CREATE;
8501 else
8502 IPW_DEBUG_INFO("Auto adhoc creation disabled.\n");
8503
Zhu Yi17ed0812006-01-24 16:36:31 +08008504 priv->config &= ~CFG_STATIC_ESSID;
8505 priv->essid_len = 0;
8506 memset(priv->essid, 0, IW_ESSID_MAX_SIZE);
8507
Zhu Yid6d5b5c2006-02-16 16:21:09 +08008508 if (disable && option) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008509 priv->status |= STATUS_RF_KILL_SW;
8510 IPW_DEBUG_INFO("Radio disabled.\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06008511 }
8512
Reinette Chatre21f8a732009-08-18 10:25:05 -07008513 if (default_channel != 0) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008514 priv->config |= CFG_STATIC_CHANNEL;
Reinette Chatre21f8a732009-08-18 10:25:05 -07008515 priv->channel = default_channel;
8516 IPW_DEBUG_INFO("Bind to static channel %d\n", default_channel);
James Ketrenosafbf30a2005-08-25 00:05:33 -05008517 /* TODO: Validate that provided channel is in range */
8518 }
Zhu Yie43e3c12006-04-13 17:20:45 +08008519#ifdef CONFIG_IPW2200_QOS
James Ketrenosafbf30a2005-08-25 00:05:33 -05008520 ipw_qos_init(priv, qos_enable, qos_burst_enable,
8521 burst_duration_CCK, burst_duration_OFDM);
Zhu Yie43e3c12006-04-13 17:20:45 +08008522#endif /* CONFIG_IPW2200_QOS */
James Ketrenosafbf30a2005-08-25 00:05:33 -05008523
Reinette Chatre21f8a732009-08-18 10:25:05 -07008524 switch (network_mode) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008525 case 1:
8526 priv->ieee->iw_mode = IW_MODE_ADHOC;
8527 priv->net_dev->type = ARPHRD_ETHER;
8528
8529 break;
8530#ifdef CONFIG_IPW2200_MONITOR
8531 case 2:
8532 priv->ieee->iw_mode = IW_MODE_MONITOR;
Zhu Yi459d4082006-04-13 17:21:00 +08008533#ifdef CONFIG_IPW2200_RADIOTAP
Mike Kershaw24a47db2005-08-26 00:41:54 -05008534 priv->net_dev->type = ARPHRD_IEEE80211_RADIOTAP;
8535#else
James Ketrenosafbf30a2005-08-25 00:05:33 -05008536 priv->net_dev->type = ARPHRD_IEEE80211;
Mike Kershaw24a47db2005-08-26 00:41:54 -05008537#endif
James Ketrenosafbf30a2005-08-25 00:05:33 -05008538 break;
8539#endif
8540 default:
8541 case 0:
8542 priv->net_dev->type = ARPHRD_ETHER;
8543 priv->ieee->iw_mode = IW_MODE_INFRA;
8544 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06008545 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008546
James Ketrenosafbf30a2005-08-25 00:05:33 -05008547 if (hwcrypto) {
8548 priv->ieee->host_encrypt = 0;
8549 priv->ieee->host_encrypt_msdu = 0;
8550 priv->ieee->host_decrypt = 0;
Hong Liu567deaf2005-08-31 18:07:22 +08008551 priv->ieee->host_mc_decrypt = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008552 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05008553 IPW_DEBUG_INFO("Hardware crypto [%s]\n", hwcrypto ? "on" : "off");
James Ketrenos43f66a62005-03-25 12:31:53 -06008554
Zhu Yie402c932005-08-05 17:20:40 +08008555 /* IPW2200/2915 is abled to do hardware fragmentation. */
8556 priv->ieee->host_open_frag = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008557
James Ketrenosafbf30a2005-08-25 00:05:33 -05008558 if ((priv->pci_dev->device == 0x4223) ||
8559 (priv->pci_dev->device == 0x4224)) {
Zhu Yie8c69e22006-02-17 08:25:12 +08008560 if (option == 1)
James Ketrenosafbf30a2005-08-25 00:05:33 -05008561 printk(KERN_INFO DRV_NAME
8562 ": Detected Intel PRO/Wireless 2915ABG Network "
8563 "Connection\n");
8564 priv->ieee->abg_true = 1;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008565 band = LIBIPW_52GHZ_BAND | LIBIPW_24GHZ_BAND;
8566 modulation = LIBIPW_OFDM_MODULATION |
8567 LIBIPW_CCK_MODULATION;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008568 priv->adapter = IPW_2915ABG;
8569 priv->ieee->mode = IEEE_A | IEEE_G | IEEE_B;
James Ketrenos43f66a62005-03-25 12:31:53 -06008570 } else {
Zhu Yie8c69e22006-02-17 08:25:12 +08008571 if (option == 1)
James Ketrenosafbf30a2005-08-25 00:05:33 -05008572 printk(KERN_INFO DRV_NAME
8573 ": Detected Intel PRO/Wireless 2200BG Network "
8574 "Connection\n");
8575
8576 priv->ieee->abg_true = 0;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008577 band = LIBIPW_24GHZ_BAND;
8578 modulation = LIBIPW_OFDM_MODULATION |
8579 LIBIPW_CCK_MODULATION;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008580 priv->adapter = IPW_2200BG;
8581 priv->ieee->mode = IEEE_G | IEEE_B;
James Ketrenos43f66a62005-03-25 12:31:53 -06008582 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008583
James Ketrenosafbf30a2005-08-25 00:05:33 -05008584 priv->ieee->freq_band = band;
8585 priv->ieee->modulation = modulation;
Jeff Garzikbf794512005-07-31 13:07:26 -04008586
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008587 priv->rates_mask = LIBIPW_DEFAULT_RATES_MASK;
James Ketrenos43f66a62005-03-25 12:31:53 -06008588
James Ketrenosafbf30a2005-08-25 00:05:33 -05008589 priv->disassociate_threshold = IPW_MB_DISASSOCIATE_THRESHOLD_DEFAULT;
8590 priv->roaming_threshold = IPW_MB_ROAMING_THRESHOLD_DEFAULT;
James Ketrenos43f66a62005-03-25 12:31:53 -06008591
James Ketrenosafbf30a2005-08-25 00:05:33 -05008592 priv->rts_threshold = DEFAULT_RTS_THRESHOLD;
8593 priv->short_retry_limit = DEFAULT_SHORT_RETRY_LIMIT;
8594 priv->long_retry_limit = DEFAULT_LONG_RETRY_LIMIT;
Jeff Garzikbf794512005-07-31 13:07:26 -04008595
James Ketrenosafbf30a2005-08-25 00:05:33 -05008596 /* If power management is turned on, default to AC mode */
8597 priv->power_mode = IPW_POWER_AC;
8598 priv->tx_power = IPW_TX_POWER_DEFAULT;
James Ketrenos43f66a62005-03-25 12:31:53 -06008599
Zhu Yi0ece35b2005-08-05 17:26:51 +08008600 return old_mode == priv->ieee->iw_mode;
James Ketrenos43f66a62005-03-25 12:31:53 -06008601}
8602
8603/*
8604 * This file defines the Wireless Extension handlers. It does not
8605 * define any methods of hardware manipulation and relies on the
8606 * functions defined in ipw_main to provide the HW interaction.
Jeff Garzikbf794512005-07-31 13:07:26 -04008607 *
8608 * The exception to this is the use of the ipw_get_ordinal()
Lucas De Marchi25985ed2011-03-30 22:57:33 -03008609 * function used to poll the hardware vs. making unnecessary calls.
James Ketrenos43f66a62005-03-25 12:31:53 -06008610 *
8611 */
8612
James Ketrenos43f66a62005-03-25 12:31:53 -06008613static int ipw_set_channel(struct ipw_priv *priv, u8 channel)
8614{
8615 if (channel == 0) {
8616 IPW_DEBUG_INFO("Setting channel to ANY (0)\n");
8617 priv->config &= ~CFG_STATIC_CHANNEL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008618 IPW_DEBUG_ASSOC("Attempting to associate with new "
8619 "parameters.\n");
8620 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06008621 return 0;
8622 }
8623
8624 priv->config |= CFG_STATIC_CHANNEL;
8625
8626 if (priv->channel == channel) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008627 IPW_DEBUG_INFO("Request to set channel to current value (%d)\n",
8628 channel);
James Ketrenos43f66a62005-03-25 12:31:53 -06008629 return 0;
8630 }
8631
8632 IPW_DEBUG_INFO("Setting channel to %i\n", (int)channel);
8633 priv->channel = channel;
8634
James Ketrenosb095c382005-08-24 22:04:42 -05008635#ifdef CONFIG_IPW2200_MONITOR
8636 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008637 int i;
James Ketrenosb095c382005-08-24 22:04:42 -05008638 if (priv->status & STATUS_SCANNING) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008639 IPW_DEBUG_SCAN("Scan abort triggered due to "
James Ketrenosb095c382005-08-24 22:04:42 -05008640 "channel change.\n");
James Ketrenosafbf30a2005-08-25 00:05:33 -05008641 ipw_abort_scan(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05008642 }
8643
8644 for (i = 1000; i && (priv->status & STATUS_SCANNING); i--)
8645 udelay(10);
8646
8647 if (priv->status & STATUS_SCANNING)
8648 IPW_DEBUG_SCAN("Still scanning...\n");
8649 else
8650 IPW_DEBUG_SCAN("Took %dms to abort current scan\n",
8651 1000 - i);
8652
8653 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008654 }
James Ketrenosb095c382005-08-24 22:04:42 -05008655#endif /* CONFIG_IPW2200_MONITOR */
8656
James Ketrenosc848d0a2005-08-24 21:56:24 -05008657 /* Network configuration changed -- force [re]association */
8658 IPW_DEBUG_ASSOC("[re]association triggered due to channel change.\n");
8659 if (!ipw_disassociate(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -06008660 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06008661
8662 return 0;
8663}
8664
Jeff Garzikbf794512005-07-31 13:07:26 -04008665static int ipw_wx_set_freq(struct net_device *dev,
8666 struct iw_request_info *info,
8667 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06008668{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008669 struct ipw_priv *priv = libipw_priv(dev);
8670 const struct libipw_geo *geo = libipw_get_geo(priv->ieee);
James Ketrenos43f66a62005-03-25 12:31:53 -06008671 struct iw_freq *fwrq = &wrqu->freq;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008672 int ret = 0, i;
Liu Hong1fe0adb2005-08-19 09:33:10 -05008673 u8 channel, flags;
8674 int band;
Jeff Garzikbf794512005-07-31 13:07:26 -04008675
James Ketrenosb095c382005-08-24 22:04:42 -05008676 if (fwrq->m == 0) {
8677 IPW_DEBUG_WX("SET Freq/Channel -> any\n");
Zhu Yi46441512006-01-24 16:37:59 +08008678 mutex_lock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05008679 ret = ipw_set_channel(priv, 0);
Zhu Yi46441512006-01-24 16:37:59 +08008680 mutex_unlock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05008681 return ret;
8682 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008683 /* if setting by freq convert to channel */
8684 if (fwrq->e == 1) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008685 channel = libipw_freq_to_channel(priv->ieee, fwrq->m);
James Ketrenosb095c382005-08-24 22:04:42 -05008686 if (channel == 0)
8687 return -EINVAL;
8688 } else
8689 channel = fwrq->m;
Jeff Garzikbf794512005-07-31 13:07:26 -04008690
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008691 if (!(band = libipw_is_valid_channel(priv->ieee, channel)))
James Ketrenosb095c382005-08-24 22:04:42 -05008692 return -EINVAL;
Jeff Garzikbf794512005-07-31 13:07:26 -04008693
Liu Hong1fe0adb2005-08-19 09:33:10 -05008694 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008695 i = libipw_channel_to_index(priv->ieee, channel);
James Ketrenosafbf30a2005-08-25 00:05:33 -05008696 if (i == -1)
8697 return -EINVAL;
Liu Hong1fe0adb2005-08-19 09:33:10 -05008698
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008699 flags = (band == LIBIPW_24GHZ_BAND) ?
Liu Hong1fe0adb2005-08-19 09:33:10 -05008700 geo->bg[i].flags : geo->a[i].flags;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008701 if (flags & LIBIPW_CH_PASSIVE_ONLY) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008702 IPW_DEBUG_WX("Invalid Ad-Hoc channel for 802.11a\n");
8703 return -EINVAL;
James Ketrenos43f66a62005-03-25 12:31:53 -06008704 }
8705 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008706
Frans Pop9fd1ea42010-03-24 19:46:31 +01008707 IPW_DEBUG_WX("SET Freq/Channel -> %d\n", fwrq->m);
Zhu Yi46441512006-01-24 16:37:59 +08008708 mutex_lock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05008709 ret = ipw_set_channel(priv, channel);
Zhu Yi46441512006-01-24 16:37:59 +08008710 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008711 return ret;
James Ketrenos43f66a62005-03-25 12:31:53 -06008712}
8713
Jeff Garzikbf794512005-07-31 13:07:26 -04008714static int ipw_wx_get_freq(struct net_device *dev,
8715 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008716 union iwreq_data *wrqu, char *extra)
8717{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008718 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06008719
8720 wrqu->freq.e = 0;
8721
8722 /* If we are associated, trying to associate, or have a statically
8723 * configured CHANNEL then return that; otherwise return ANY */
Zhu Yi46441512006-01-24 16:37:59 +08008724 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008725 if (priv->config & CFG_STATIC_CHANNEL ||
Zhu Yic580f672006-08-21 11:37:01 +08008726 priv->status & (STATUS_ASSOCIATING | STATUS_ASSOCIATED)) {
8727 int i;
8728
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008729 i = libipw_channel_to_index(priv->ieee, priv->channel);
Zhu Yic580f672006-08-21 11:37:01 +08008730 BUG_ON(i == -1);
8731 wrqu->freq.e = 1;
8732
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008733 switch (libipw_is_valid_channel(priv->ieee, priv->channel)) {
8734 case LIBIPW_52GHZ_BAND:
Zhu Yic580f672006-08-21 11:37:01 +08008735 wrqu->freq.m = priv->ieee->geo.a[i].freq * 100000;
8736 break;
8737
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008738 case LIBIPW_24GHZ_BAND:
Zhu Yic580f672006-08-21 11:37:01 +08008739 wrqu->freq.m = priv->ieee->geo.bg[i].freq * 100000;
8740 break;
8741
8742 default:
8743 BUG();
8744 }
8745 } else
James Ketrenos43f66a62005-03-25 12:31:53 -06008746 wrqu->freq.m = 0;
8747
Zhu Yi46441512006-01-24 16:37:59 +08008748 mutex_unlock(&priv->mutex);
Frans Pop9fd1ea42010-03-24 19:46:31 +01008749 IPW_DEBUG_WX("GET Freq/Channel -> %d\n", priv->channel);
James Ketrenos43f66a62005-03-25 12:31:53 -06008750 return 0;
8751}
8752
Jeff Garzikbf794512005-07-31 13:07:26 -04008753static int ipw_wx_set_mode(struct net_device *dev,
8754 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008755 union iwreq_data *wrqu, char *extra)
8756{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008757 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06008758 int err = 0;
8759
8760 IPW_DEBUG_WX("Set MODE: %d\n", wrqu->mode);
8761
James Ketrenos43f66a62005-03-25 12:31:53 -06008762 switch (wrqu->mode) {
James Ketrenosb095c382005-08-24 22:04:42 -05008763#ifdef CONFIG_IPW2200_MONITOR
James Ketrenos43f66a62005-03-25 12:31:53 -06008764 case IW_MODE_MONITOR:
8765#endif
8766 case IW_MODE_ADHOC:
8767 case IW_MODE_INFRA:
8768 break;
8769 case IW_MODE_AUTO:
8770 wrqu->mode = IW_MODE_INFRA;
8771 break;
8772 default:
8773 return -EINVAL;
8774 }
James Ketrenosb095c382005-08-24 22:04:42 -05008775 if (wrqu->mode == priv->ieee->iw_mode)
8776 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008777
Zhu Yi46441512006-01-24 16:37:59 +08008778 mutex_lock(&priv->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -05008779
8780 ipw_sw_reset(priv, 0);
8781
James Ketrenosb095c382005-08-24 22:04:42 -05008782#ifdef CONFIG_IPW2200_MONITOR
Jeff Garzikbf794512005-07-31 13:07:26 -04008783 if (priv->ieee->iw_mode == IW_MODE_MONITOR)
James Ketrenos43f66a62005-03-25 12:31:53 -06008784 priv->net_dev->type = ARPHRD_ETHER;
Jeff Garzikbf794512005-07-31 13:07:26 -04008785
8786 if (wrqu->mode == IW_MODE_MONITOR)
Zhu Yi459d4082006-04-13 17:21:00 +08008787#ifdef CONFIG_IPW2200_RADIOTAP
Mike Kershaw24a47db2005-08-26 00:41:54 -05008788 priv->net_dev->type = ARPHRD_IEEE80211_RADIOTAP;
8789#else
James Ketrenos43f66a62005-03-25 12:31:53 -06008790 priv->net_dev->type = ARPHRD_IEEE80211;
Mike Kershaw24a47db2005-08-26 00:41:54 -05008791#endif
James Ketrenosb095c382005-08-24 22:04:42 -05008792#endif /* CONFIG_IPW2200_MONITOR */
Jeff Garzikbf794512005-07-31 13:07:26 -04008793
Jeff Garzikbf794512005-07-31 13:07:26 -04008794 /* Free the existing firmware and reset the fw_loaded
Nick Andrew877d0312009-01-26 11:06:57 +01008795 * flag so ipw_load() will bring in the new firmware */
James Ketrenosafbf30a2005-08-25 00:05:33 -05008796 free_firmware();
James Ketrenos43f66a62005-03-25 12:31:53 -06008797
8798 priv->ieee->iw_mode = wrqu->mode;
Jeff Garzikbf794512005-07-31 13:07:26 -04008799
Tejun Heobcb6d912011-01-26 12:12:50 +01008800 schedule_work(&priv->adapter_restart);
Zhu Yi46441512006-01-24 16:37:59 +08008801 mutex_unlock(&priv->mutex);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008802 return err;
James Ketrenos43f66a62005-03-25 12:31:53 -06008803}
8804
Jeff Garzikbf794512005-07-31 13:07:26 -04008805static int ipw_wx_get_mode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008806 struct iw_request_info *info,
8807 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06008808{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008809 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08008810 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008811 wrqu->mode = priv->ieee->iw_mode;
8812 IPW_DEBUG_WX("Get MODE -> %d\n", wrqu->mode);
Zhu Yi46441512006-01-24 16:37:59 +08008813 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008814 return 0;
8815}
8816
James Ketrenos43f66a62005-03-25 12:31:53 -06008817/* Values are in microsecond */
8818static const s32 timeout_duration[] = {
8819 350000,
8820 250000,
8821 75000,
8822 37000,
8823 25000,
8824};
8825
8826static const s32 period_duration[] = {
8827 400000,
8828 700000,
8829 1000000,
8830 1000000,
8831 1000000
8832};
8833
Jeff Garzikbf794512005-07-31 13:07:26 -04008834static int ipw_wx_get_range(struct net_device *dev,
8835 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008836 union iwreq_data *wrqu, char *extra)
8837{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008838 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06008839 struct iw_range *range = (struct iw_range *)extra;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008840 const struct libipw_geo *geo = libipw_get_geo(priv->ieee);
James Ketrenosb095c382005-08-24 22:04:42 -05008841 int i = 0, j;
James Ketrenos43f66a62005-03-25 12:31:53 -06008842
8843 wrqu->data.length = sizeof(*range);
8844 memset(range, 0, sizeof(*range));
8845
8846 /* 54Mbs == ~27 Mb/s real (802.11g) */
Jeff Garzikbf794512005-07-31 13:07:26 -04008847 range->throughput = 27 * 1000 * 1000;
James Ketrenos43f66a62005-03-25 12:31:53 -06008848
8849 range->max_qual.qual = 100;
8850 /* TODO: Find real max RSSI and stick here */
8851 range->max_qual.level = 0;
Bill Mossb1916082006-02-15 08:50:18 +08008852 range->max_qual.noise = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008853 range->max_qual.updated = 7; /* Updated all three */
James Ketrenos43f66a62005-03-25 12:31:53 -06008854
8855 range->avg_qual.qual = 70;
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02008856 /* TODO: Find real 'good' to 'bad' threshold value for RSSI */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008857 range->avg_qual.level = 0; /* FIXME to real average level */
James Ketrenos43f66a62005-03-25 12:31:53 -06008858 range->avg_qual.noise = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008859 range->avg_qual.updated = 7; /* Updated all three */
Zhu Yi46441512006-01-24 16:37:59 +08008860 mutex_lock(&priv->mutex);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008861 range->num_bitrates = min(priv->rates.num_rates, (u8) IW_MAX_BITRATES);
James Ketrenos43f66a62005-03-25 12:31:53 -06008862
Jeff Garzikbf794512005-07-31 13:07:26 -04008863 for (i = 0; i < range->num_bitrates; i++)
8864 range->bitrate[i] = (priv->rates.supported_rates[i] & 0x7F) *
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008865 500000;
Jeff Garzikbf794512005-07-31 13:07:26 -04008866
James Ketrenos43f66a62005-03-25 12:31:53 -06008867 range->max_rts = DEFAULT_RTS_THRESHOLD;
8868 range->min_frag = MIN_FRAG_THRESHOLD;
8869 range->max_frag = MAX_FRAG_THRESHOLD;
8870
8871 range->encoding_size[0] = 5;
Jeff Garzikbf794512005-07-31 13:07:26 -04008872 range->encoding_size[1] = 13;
James Ketrenos43f66a62005-03-25 12:31:53 -06008873 range->num_encoding_sizes = 2;
8874 range->max_encoding_tokens = WEP_KEYS;
8875
8876 /* Set the Wireless Extension versions */
8877 range->we_version_compiled = WIRELESS_EXT;
Dan Williamsf1b50862006-01-30 13:58:56 -05008878 range->we_version_source = 18;
James Ketrenos43f66a62005-03-25 12:31:53 -06008879
James Ketrenosb095c382005-08-24 22:04:42 -05008880 i = 0;
8881 if (priv->ieee->mode & (IEEE_B | IEEE_G)) {
Zhu Yie815de42006-03-02 05:55:51 +08008882 for (j = 0; j < geo->bg_channels && i < IW_MAX_FREQUENCIES; j++) {
8883 if ((priv->ieee->iw_mode == IW_MODE_ADHOC) &&
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008884 (geo->bg[j].flags & LIBIPW_CH_PASSIVE_ONLY))
Zhu Yie815de42006-03-02 05:55:51 +08008885 continue;
8886
James Ketrenosb095c382005-08-24 22:04:42 -05008887 range->freq[i].i = geo->bg[j].channel;
8888 range->freq[i].m = geo->bg[j].freq * 100000;
8889 range->freq[i].e = 1;
Zhu Yie815de42006-03-02 05:55:51 +08008890 i++;
James Ketrenosb095c382005-08-24 22:04:42 -05008891 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008892 }
James Ketrenosb095c382005-08-24 22:04:42 -05008893
8894 if (priv->ieee->mode & IEEE_A) {
Zhu Yie815de42006-03-02 05:55:51 +08008895 for (j = 0; j < geo->a_channels && i < IW_MAX_FREQUENCIES; j++) {
8896 if ((priv->ieee->iw_mode == IW_MODE_ADHOC) &&
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008897 (geo->a[j].flags & LIBIPW_CH_PASSIVE_ONLY))
Zhu Yie815de42006-03-02 05:55:51 +08008898 continue;
8899
James Ketrenosb095c382005-08-24 22:04:42 -05008900 range->freq[i].i = geo->a[j].channel;
8901 range->freq[i].m = geo->a[j].freq * 100000;
8902 range->freq[i].e = 1;
Zhu Yie815de42006-03-02 05:55:51 +08008903 i++;
James Ketrenosb095c382005-08-24 22:04:42 -05008904 }
8905 }
8906
8907 range->num_channels = i;
8908 range->num_frequency = i;
8909
Zhu Yi46441512006-01-24 16:37:59 +08008910 mutex_unlock(&priv->mutex);
Benoit Boissinot97a78ca2005-09-15 17:30:28 +00008911
8912 /* Event capability (kernel + driver) */
8913 range->event_capa[0] = (IW_EVENT_CAPA_K_0 |
8914 IW_EVENT_CAPA_MASK(SIOCGIWTHRSPY) |
Zhu Yi07f02e42006-04-13 17:19:25 +08008915 IW_EVENT_CAPA_MASK(SIOCGIWAP) |
8916 IW_EVENT_CAPA_MASK(SIOCGIWSCAN));
Benoit Boissinot97a78ca2005-09-15 17:30:28 +00008917 range->event_capa[1] = IW_EVENT_CAPA_K_1;
James Ketrenos43f66a62005-03-25 12:31:53 -06008918
Dan Williamsf1b50862006-01-30 13:58:56 -05008919 range->enc_capa = IW_ENC_CAPA_WPA | IW_ENC_CAPA_WPA2 |
8920 IW_ENC_CAPA_CIPHER_TKIP | IW_ENC_CAPA_CIPHER_CCMP;
8921
Dan Williams374fdfb2007-12-12 10:25:07 -05008922 range->scan_capa = IW_SCAN_CAPA_ESSID | IW_SCAN_CAPA_TYPE;
8923
James Ketrenos43f66a62005-03-25 12:31:53 -06008924 IPW_DEBUG_WX("GET Range\n");
8925 return 0;
8926}
8927
Jeff Garzikbf794512005-07-31 13:07:26 -04008928static int ipw_wx_set_wap(struct net_device *dev,
8929 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008930 union iwreq_data *wrqu, char *extra)
8931{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008932 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06008933
Jeff Garzikbf794512005-07-31 13:07:26 -04008934 if (wrqu->ap_addr.sa_family != ARPHRD_ETHER)
James Ketrenos43f66a62005-03-25 12:31:53 -06008935 return -EINVAL;
Zhu Yi46441512006-01-24 16:37:59 +08008936 mutex_lock(&priv->mutex);
Wei Yongjun7949d202012-08-23 14:54:05 +08008937 if (is_broadcast_ether_addr(wrqu->ap_addr.sa_data) ||
8938 is_zero_ether_addr(wrqu->ap_addr.sa_data)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06008939 /* we disable mandatory BSSID association */
8940 IPW_DEBUG_WX("Setting AP BSSID to ANY\n");
8941 priv->config &= ~CFG_STATIC_BSSID;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008942 IPW_DEBUG_ASSOC("Attempting to associate with new "
8943 "parameters.\n");
8944 ipw_associate(priv);
Zhu Yi46441512006-01-24 16:37:59 +08008945 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008946 return 0;
8947 }
8948
8949 priv->config |= CFG_STATIC_BSSID;
dingtianhong36325f32013-12-26 19:41:23 +08008950 if (ether_addr_equal(priv->bssid, wrqu->ap_addr.sa_data)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06008951 IPW_DEBUG_WX("BSSID set to current BSSID.\n");
Zhu Yi46441512006-01-24 16:37:59 +08008952 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008953 return 0;
8954 }
8955
Johannes Berge1749612008-10-27 15:59:26 -07008956 IPW_DEBUG_WX("Setting mandatory BSSID to %pM\n",
8957 wrqu->ap_addr.sa_data);
James Ketrenos43f66a62005-03-25 12:31:53 -06008958
8959 memcpy(priv->bssid, wrqu->ap_addr.sa_data, ETH_ALEN);
8960
James Ketrenosc848d0a2005-08-24 21:56:24 -05008961 /* Network configuration changed -- force [re]association */
8962 IPW_DEBUG_ASSOC("[re]association triggered due to BSSID change.\n");
8963 if (!ipw_disassociate(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -06008964 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06008965
Zhu Yi46441512006-01-24 16:37:59 +08008966 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008967 return 0;
8968}
8969
Jeff Garzikbf794512005-07-31 13:07:26 -04008970static int ipw_wx_get_wap(struct net_device *dev,
8971 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008972 union iwreq_data *wrqu, char *extra)
8973{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008974 struct ipw_priv *priv = libipw_priv(dev);
Joe Perches0795af52007-10-03 17:59:30 -07008975
James Ketrenos43f66a62005-03-25 12:31:53 -06008976 /* If we are associated, trying to associate, or have a statically
8977 * configured BSSID then return that; otherwise return ANY */
Zhu Yi46441512006-01-24 16:37:59 +08008978 mutex_lock(&priv->mutex);
Jeff Garzikbf794512005-07-31 13:07:26 -04008979 if (priv->config & CFG_STATIC_BSSID ||
James Ketrenos43f66a62005-03-25 12:31:53 -06008980 priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) {
8981 wrqu->ap_addr.sa_family = ARPHRD_ETHER;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008982 memcpy(wrqu->ap_addr.sa_data, priv->bssid, ETH_ALEN);
James Ketrenos43f66a62005-03-25 12:31:53 -06008983 } else
Joe Perches93803b32015-03-02 19:54:49 -08008984 eth_zero_addr(wrqu->ap_addr.sa_data);
James Ketrenos43f66a62005-03-25 12:31:53 -06008985
Johannes Berge1749612008-10-27 15:59:26 -07008986 IPW_DEBUG_WX("Getting WAP BSSID: %pM\n",
8987 wrqu->ap_addr.sa_data);
Zhu Yi46441512006-01-24 16:37:59 +08008988 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008989 return 0;
8990}
8991
Jeff Garzikbf794512005-07-31 13:07:26 -04008992static int ipw_wx_set_essid(struct net_device *dev,
8993 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008994 union iwreq_data *wrqu, char *extra)
8995{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008996 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yiab644b02006-08-21 11:37:13 +08008997 int length;
James Ketrenos43f66a62005-03-25 12:31:53 -06008998
Zhu Yiab644b02006-08-21 11:37:13 +08008999 mutex_lock(&priv->mutex);
9000
9001 if (!wrqu->essid.flags)
9002 {
9003 IPW_DEBUG_WX("Setting ESSID to ANY\n");
9004 ipw_disassociate(priv);
9005 priv->config &= ~CFG_STATIC_ESSID;
9006 ipw_associate(priv);
9007 mutex_unlock(&priv->mutex);
9008 return 0;
9009 }
9010
Zhu Yia9f0d422006-08-21 11:37:26 +08009011 length = min((int)wrqu->essid.length, IW_ESSID_MAX_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06009012
9013 priv->config |= CFG_STATIC_ESSID;
9014
Zhu Yia9f0d422006-08-21 11:37:26 +08009015 if (priv->essid_len == length && !memcmp(priv->essid, extra, length)
9016 && (priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING))) {
James Ketrenos43f66a62005-03-25 12:31:53 -06009017 IPW_DEBUG_WX("ESSID set to current ESSID.\n");
Zhu Yi46441512006-01-24 16:37:59 +08009018 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009019 return 0;
9020 }
9021
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07009022 IPW_DEBUG_WX("Setting ESSID: '%*pE' (%d)\n", length, extra, length);
James Ketrenos43f66a62005-03-25 12:31:53 -06009023
9024 priv->essid_len = length;
Zhu Yia9f0d422006-08-21 11:37:26 +08009025 memcpy(priv->essid, extra, priv->essid_len);
Jeff Garzikbf794512005-07-31 13:07:26 -04009026
James Ketrenosc848d0a2005-08-24 21:56:24 -05009027 /* Network configuration changed -- force [re]association */
9028 IPW_DEBUG_ASSOC("[re]association triggered due to ESSID change.\n");
9029 if (!ipw_disassociate(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -06009030 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06009031
Zhu Yi46441512006-01-24 16:37:59 +08009032 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009033 return 0;
9034}
9035
Jeff Garzikbf794512005-07-31 13:07:26 -04009036static int ipw_wx_get_essid(struct net_device *dev,
9037 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009038 union iwreq_data *wrqu, char *extra)
9039{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009040 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009041
9042 /* If we are associated, trying to associate, or have a statically
9043 * configured ESSID then return that; otherwise return ANY */
Zhu Yi46441512006-01-24 16:37:59 +08009044 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009045 if (priv->config & CFG_STATIC_ESSID ||
Jeff Garzikbf794512005-07-31 13:07:26 -04009046 priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07009047 IPW_DEBUG_WX("Getting essid: '%*pE'\n",
9048 priv->essid_len, priv->essid);
Jeff Garzikbf794512005-07-31 13:07:26 -04009049 memcpy(extra, priv->essid, priv->essid_len);
James Ketrenos43f66a62005-03-25 12:31:53 -06009050 wrqu->essid.length = priv->essid_len;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009051 wrqu->essid.flags = 1; /* active */
James Ketrenos43f66a62005-03-25 12:31:53 -06009052 } else {
9053 IPW_DEBUG_WX("Getting essid: ANY\n");
9054 wrqu->essid.length = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009055 wrqu->essid.flags = 0; /* active */
James Ketrenos43f66a62005-03-25 12:31:53 -06009056 }
Zhu Yi46441512006-01-24 16:37:59 +08009057 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009058 return 0;
9059}
9060
Jeff Garzikbf794512005-07-31 13:07:26 -04009061static int ipw_wx_set_nick(struct net_device *dev,
9062 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009063 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009064{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009065 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009066
9067 IPW_DEBUG_WX("Setting nick to '%s'\n", extra);
9068 if (wrqu->data.length > IW_ESSID_MAX_SIZE)
9069 return -E2BIG;
Zhu Yi46441512006-01-24 16:37:59 +08009070 mutex_lock(&priv->mutex);
Silvan Jegenc8e49552014-02-25 18:12:52 +01009071 wrqu->data.length = min_t(size_t, wrqu->data.length, sizeof(priv->nick));
James Ketrenos43f66a62005-03-25 12:31:53 -06009072 memset(priv->nick, 0, sizeof(priv->nick));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009073 memcpy(priv->nick, extra, wrqu->data.length);
James Ketrenos43f66a62005-03-25 12:31:53 -06009074 IPW_DEBUG_TRACE("<<\n");
Zhu Yi46441512006-01-24 16:37:59 +08009075 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009076 return 0;
9077
9078}
9079
Jeff Garzikbf794512005-07-31 13:07:26 -04009080static int ipw_wx_get_nick(struct net_device *dev,
9081 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009082 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009083{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009084 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009085 IPW_DEBUG_WX("Getting nick\n");
Zhu Yi46441512006-01-24 16:37:59 +08009086 mutex_lock(&priv->mutex);
Jean Tourrilhes919ee6d2006-08-29 18:01:40 -07009087 wrqu->data.length = strlen(priv->nick);
James Ketrenos43f66a62005-03-25 12:31:53 -06009088 memcpy(extra, priv->nick, wrqu->data.length);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009089 wrqu->data.flags = 1; /* active */
Zhu Yi46441512006-01-24 16:37:59 +08009090 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009091 return 0;
9092}
9093
Olivier Hochreutiner651be262006-03-08 03:13:55 +08009094static int ipw_wx_set_sens(struct net_device *dev,
9095 struct iw_request_info *info,
9096 union iwreq_data *wrqu, char *extra)
9097{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009098 struct ipw_priv *priv = libipw_priv(dev);
Olivier Hochreutiner651be262006-03-08 03:13:55 +08009099 int err = 0;
9100
9101 IPW_DEBUG_WX("Setting roaming threshold to %d\n", wrqu->sens.value);
9102 IPW_DEBUG_WX("Setting disassociate threshold to %d\n", 3*wrqu->sens.value);
9103 mutex_lock(&priv->mutex);
9104
9105 if (wrqu->sens.fixed == 0)
9106 {
9107 priv->roaming_threshold = IPW_MB_ROAMING_THRESHOLD_DEFAULT;
9108 priv->disassociate_threshold = IPW_MB_DISASSOCIATE_THRESHOLD_DEFAULT;
9109 goto out;
9110 }
9111 if ((wrqu->sens.value > IPW_MB_ROAMING_THRESHOLD_MAX) ||
9112 (wrqu->sens.value < IPW_MB_ROAMING_THRESHOLD_MIN)) {
9113 err = -EINVAL;
9114 goto out;
9115 }
9116
9117 priv->roaming_threshold = wrqu->sens.value;
9118 priv->disassociate_threshold = 3*wrqu->sens.value;
9119 out:
9120 mutex_unlock(&priv->mutex);
9121 return err;
9122}
9123
9124static int ipw_wx_get_sens(struct net_device *dev,
9125 struct iw_request_info *info,
9126 union iwreq_data *wrqu, char *extra)
9127{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009128 struct ipw_priv *priv = libipw_priv(dev);
Olivier Hochreutiner651be262006-03-08 03:13:55 +08009129 mutex_lock(&priv->mutex);
9130 wrqu->sens.fixed = 1;
9131 wrqu->sens.value = priv->roaming_threshold;
9132 mutex_unlock(&priv->mutex);
9133
Frans Pop9fd1ea42010-03-24 19:46:31 +01009134 IPW_DEBUG_WX("GET roaming threshold -> %s %d\n",
Olivier Hochreutiner651be262006-03-08 03:13:55 +08009135 wrqu->power.disabled ? "OFF" : "ON", wrqu->power.value);
9136
9137 return 0;
9138}
9139
James Ketrenos43f66a62005-03-25 12:31:53 -06009140static int ipw_wx_set_rate(struct net_device *dev,
9141 struct iw_request_info *info,
9142 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009143{
James Ketrenosea2b26e2005-08-24 21:25:16 -05009144 /* TODO: We should use semaphores or locks for access to priv */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009145 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009146 u32 target_rate = wrqu->bitrate.value;
9147 u32 fixed, mask;
9148
9149 /* value = -1, fixed = 0 means auto only, so we should use all rates offered by AP */
9150 /* value = X, fixed = 1 means only rate X */
9151 /* value = X, fixed = 0 means all rates lower equal X */
9152
9153 if (target_rate == -1) {
9154 fixed = 0;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009155 mask = LIBIPW_DEFAULT_RATES_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009156 /* Now we should reassociate */
9157 goto apply;
9158 }
9159
9160 mask = 0;
9161 fixed = wrqu->bitrate.fixed;
9162
9163 if (target_rate == 1000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009164 mask |= LIBIPW_CCK_RATE_1MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009165 if (target_rate == 1000000)
9166 goto apply;
9167
9168 if (target_rate == 2000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009169 mask |= LIBIPW_CCK_RATE_2MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009170 if (target_rate == 2000000)
9171 goto apply;
9172
9173 if (target_rate == 5500000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009174 mask |= LIBIPW_CCK_RATE_5MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009175 if (target_rate == 5500000)
9176 goto apply;
9177
9178 if (target_rate == 6000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009179 mask |= LIBIPW_OFDM_RATE_6MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009180 if (target_rate == 6000000)
9181 goto apply;
9182
9183 if (target_rate == 9000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009184 mask |= LIBIPW_OFDM_RATE_9MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009185 if (target_rate == 9000000)
9186 goto apply;
9187
9188 if (target_rate == 11000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009189 mask |= LIBIPW_CCK_RATE_11MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009190 if (target_rate == 11000000)
9191 goto apply;
9192
9193 if (target_rate == 12000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009194 mask |= LIBIPW_OFDM_RATE_12MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009195 if (target_rate == 12000000)
9196 goto apply;
9197
9198 if (target_rate == 18000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009199 mask |= LIBIPW_OFDM_RATE_18MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009200 if (target_rate == 18000000)
9201 goto apply;
9202
9203 if (target_rate == 24000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009204 mask |= LIBIPW_OFDM_RATE_24MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009205 if (target_rate == 24000000)
9206 goto apply;
9207
9208 if (target_rate == 36000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009209 mask |= LIBIPW_OFDM_RATE_36MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009210 if (target_rate == 36000000)
9211 goto apply;
9212
9213 if (target_rate == 48000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009214 mask |= LIBIPW_OFDM_RATE_48MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009215 if (target_rate == 48000000)
9216 goto apply;
9217
9218 if (target_rate == 54000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009219 mask |= LIBIPW_OFDM_RATE_54MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009220 if (target_rate == 54000000)
9221 goto apply;
9222
9223 IPW_DEBUG_WX("invalid rate specified, returning error\n");
9224 return -EINVAL;
9225
9226 apply:
9227 IPW_DEBUG_WX("Setting rate mask to 0x%08X [%s]\n",
9228 mask, fixed ? "fixed" : "sub-rates");
Zhu Yi46441512006-01-24 16:37:59 +08009229 mutex_lock(&priv->mutex);
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009230 if (mask == LIBIPW_DEFAULT_RATES_MASK) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05009231 priv->config &= ~CFG_FIXED_RATE;
James Ketrenosb095c382005-08-24 22:04:42 -05009232 ipw_set_fixed_rate(priv, priv->ieee->mode);
9233 } else
James Ketrenosea2b26e2005-08-24 21:25:16 -05009234 priv->config |= CFG_FIXED_RATE;
9235
James Ketrenosc848d0a2005-08-24 21:56:24 -05009236 if (priv->rates_mask == mask) {
9237 IPW_DEBUG_WX("Mask set to current mask.\n");
Zhu Yi46441512006-01-24 16:37:59 +08009238 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009239 return 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009240 }
9241
James Ketrenosc848d0a2005-08-24 21:56:24 -05009242 priv->rates_mask = mask;
9243
9244 /* Network configuration changed -- force [re]association */
9245 IPW_DEBUG_ASSOC("[re]association triggered due to rates change.\n");
9246 if (!ipw_disassociate(priv))
9247 ipw_associate(priv);
9248
Zhu Yi46441512006-01-24 16:37:59 +08009249 mutex_unlock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009250 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009251}
9252
Jeff Garzikbf794512005-07-31 13:07:26 -04009253static int ipw_wx_get_rate(struct net_device *dev,
9254 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009255 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009256{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009257 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009258 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009259 wrqu->bitrate.value = priv->last_rate;
Zhu Yi455936c2006-04-13 17:20:05 +08009260 wrqu->bitrate.fixed = (priv->config & CFG_FIXED_RATE) ? 1 : 0;
Zhu Yi46441512006-01-24 16:37:59 +08009261 mutex_unlock(&priv->mutex);
Frans Pop9fd1ea42010-03-24 19:46:31 +01009262 IPW_DEBUG_WX("GET Rate -> %d\n", wrqu->bitrate.value);
James Ketrenos43f66a62005-03-25 12:31:53 -06009263 return 0;
9264}
9265
Jeff Garzikbf794512005-07-31 13:07:26 -04009266static int ipw_wx_set_rts(struct net_device *dev,
9267 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009268 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009269{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009270 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009271 mutex_lock(&priv->mutex);
Zhu Yiea8862d2007-01-11 17:32:54 +08009272 if (wrqu->rts.disabled || !wrqu->rts.fixed)
James Ketrenos43f66a62005-03-25 12:31:53 -06009273 priv->rts_threshold = DEFAULT_RTS_THRESHOLD;
9274 else {
9275 if (wrqu->rts.value < MIN_RTS_THRESHOLD ||
James Ketrenosc848d0a2005-08-24 21:56:24 -05009276 wrqu->rts.value > MAX_RTS_THRESHOLD) {
Zhu Yi46441512006-01-24 16:37:59 +08009277 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009278 return -EINVAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009279 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009280 priv->rts_threshold = wrqu->rts.value;
9281 }
9282
9283 ipw_send_rts_threshold(priv, priv->rts_threshold);
Zhu Yi46441512006-01-24 16:37:59 +08009284 mutex_unlock(&priv->mutex);
Frans Pop9fd1ea42010-03-24 19:46:31 +01009285 IPW_DEBUG_WX("SET RTS Threshold -> %d\n", priv->rts_threshold);
James Ketrenos43f66a62005-03-25 12:31:53 -06009286 return 0;
9287}
9288
Jeff Garzikbf794512005-07-31 13:07:26 -04009289static int ipw_wx_get_rts(struct net_device *dev,
9290 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009291 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009292{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009293 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009294 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009295 wrqu->rts.value = priv->rts_threshold;
9296 wrqu->rts.fixed = 0; /* no auto select */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009297 wrqu->rts.disabled = (wrqu->rts.value == DEFAULT_RTS_THRESHOLD);
Zhu Yi46441512006-01-24 16:37:59 +08009298 mutex_unlock(&priv->mutex);
Frans Pop9fd1ea42010-03-24 19:46:31 +01009299 IPW_DEBUG_WX("GET RTS Threshold -> %d\n", wrqu->rts.value);
James Ketrenos43f66a62005-03-25 12:31:53 -06009300 return 0;
9301}
9302
Jeff Garzikbf794512005-07-31 13:07:26 -04009303static int ipw_wx_set_txpow(struct net_device *dev,
9304 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009305 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009306{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009307 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009308 int err = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009309
Zhu Yi46441512006-01-24 16:37:59 +08009310 mutex_lock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009311 if (ipw_radio_kill_sw(priv, wrqu->power.disabled)) {
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009312 err = -EINPROGRESS;
9313 goto out;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009314 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009315
James Ketrenosb095c382005-08-24 22:04:42 -05009316 if (!wrqu->power.fixed)
9317 wrqu->power.value = IPW_TX_POWER_DEFAULT;
James Ketrenos43f66a62005-03-25 12:31:53 -06009318
James Ketrenosc848d0a2005-08-24 21:56:24 -05009319 if (wrqu->power.flags != IW_TXPOW_DBM) {
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009320 err = -EINVAL;
9321 goto out;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009322 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009323
James Ketrenosb095c382005-08-24 22:04:42 -05009324 if ((wrqu->power.value > IPW_TX_POWER_MAX) ||
James Ketrenosafbf30a2005-08-25 00:05:33 -05009325 (wrqu->power.value < IPW_TX_POWER_MIN)) {
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009326 err = -EINVAL;
9327 goto out;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009328 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009329
9330 priv->tx_power = wrqu->power.value;
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009331 err = ipw_set_tx_power(priv);
9332 out:
Zhu Yi46441512006-01-24 16:37:59 +08009333 mutex_unlock(&priv->mutex);
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009334 return err;
James Ketrenos43f66a62005-03-25 12:31:53 -06009335}
9336
Jeff Garzikbf794512005-07-31 13:07:26 -04009337static int ipw_wx_get_txpow(struct net_device *dev,
9338 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009339 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009340{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009341 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009342 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009343 wrqu->power.value = priv->tx_power;
9344 wrqu->power.fixed = 1;
9345 wrqu->power.flags = IW_TXPOW_DBM;
9346 wrqu->power.disabled = (priv->status & STATUS_RF_KILL_MASK) ? 1 : 0;
Zhu Yi46441512006-01-24 16:37:59 +08009347 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009348
Frans Pop9fd1ea42010-03-24 19:46:31 +01009349 IPW_DEBUG_WX("GET TX Power -> %s %d\n",
Zhu Yi22501c82005-08-11 10:49:17 +08009350 wrqu->power.disabled ? "OFF" : "ON", wrqu->power.value);
James Ketrenos43f66a62005-03-25 12:31:53 -06009351
9352 return 0;
9353}
9354
Jeff Garzikbf794512005-07-31 13:07:26 -04009355static int ipw_wx_set_frag(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009356 struct iw_request_info *info,
9357 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009358{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009359 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009360 mutex_lock(&priv->mutex);
Zhu Yiea8862d2007-01-11 17:32:54 +08009361 if (wrqu->frag.disabled || !wrqu->frag.fixed)
James Ketrenos43f66a62005-03-25 12:31:53 -06009362 priv->ieee->fts = DEFAULT_FTS;
9363 else {
9364 if (wrqu->frag.value < MIN_FRAG_THRESHOLD ||
James Ketrenosb095c382005-08-24 22:04:42 -05009365 wrqu->frag.value > MAX_FRAG_THRESHOLD) {
Zhu Yi46441512006-01-24 16:37:59 +08009366 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009367 return -EINVAL;
James Ketrenosb095c382005-08-24 22:04:42 -05009368 }
Jeff Garzikbf794512005-07-31 13:07:26 -04009369
James Ketrenos43f66a62005-03-25 12:31:53 -06009370 priv->ieee->fts = wrqu->frag.value & ~0x1;
9371 }
9372
9373 ipw_send_frag_threshold(priv, wrqu->frag.value);
Zhu Yi46441512006-01-24 16:37:59 +08009374 mutex_unlock(&priv->mutex);
Frans Pop9fd1ea42010-03-24 19:46:31 +01009375 IPW_DEBUG_WX("SET Frag Threshold -> %d\n", wrqu->frag.value);
James Ketrenos43f66a62005-03-25 12:31:53 -06009376 return 0;
9377}
9378
Jeff Garzikbf794512005-07-31 13:07:26 -04009379static int ipw_wx_get_frag(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009380 struct iw_request_info *info,
9381 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009382{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009383 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009384 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009385 wrqu->frag.value = priv->ieee->fts;
9386 wrqu->frag.fixed = 0; /* no auto select */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009387 wrqu->frag.disabled = (wrqu->frag.value == DEFAULT_FTS);
Zhu Yi46441512006-01-24 16:37:59 +08009388 mutex_unlock(&priv->mutex);
Frans Pop9fd1ea42010-03-24 19:46:31 +01009389 IPW_DEBUG_WX("GET Frag Threshold -> %d\n", wrqu->frag.value);
James Ketrenos43f66a62005-03-25 12:31:53 -06009390
9391 return 0;
9392}
9393
Jeff Garzikbf794512005-07-31 13:07:26 -04009394static int ipw_wx_set_retry(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);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009399
9400 if (wrqu->retry.flags & IW_RETRY_LIFETIME || wrqu->retry.disabled)
9401 return -EINVAL;
9402
9403 if (!(wrqu->retry.flags & IW_RETRY_LIMIT))
9404 return 0;
9405
Zhu Yid5f7ac22006-08-21 11:38:17 +08009406 if (wrqu->retry.value < 0 || wrqu->retry.value >= 255)
James Ketrenosafbf30a2005-08-25 00:05:33 -05009407 return -EINVAL;
9408
Zhu Yi46441512006-01-24 16:37:59 +08009409 mutex_lock(&priv->mutex);
Jean Tourrilhes919ee6d2006-08-29 18:01:40 -07009410 if (wrqu->retry.flags & IW_RETRY_SHORT)
James Ketrenosafbf30a2005-08-25 00:05:33 -05009411 priv->short_retry_limit = (u8) wrqu->retry.value;
Jean Tourrilhes919ee6d2006-08-29 18:01:40 -07009412 else if (wrqu->retry.flags & IW_RETRY_LONG)
James Ketrenosafbf30a2005-08-25 00:05:33 -05009413 priv->long_retry_limit = (u8) wrqu->retry.value;
9414 else {
9415 priv->short_retry_limit = (u8) wrqu->retry.value;
9416 priv->long_retry_limit = (u8) wrqu->retry.value;
9417 }
9418
9419 ipw_send_retry_limit(priv, priv->short_retry_limit,
9420 priv->long_retry_limit);
Zhu Yi46441512006-01-24 16:37:59 +08009421 mutex_unlock(&priv->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009422 IPW_DEBUG_WX("SET retry limit -> short:%d long:%d\n",
9423 priv->short_retry_limit, priv->long_retry_limit);
9424 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009425}
9426
Jeff Garzikbf794512005-07-31 13:07:26 -04009427static int ipw_wx_get_retry(struct net_device *dev,
9428 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009429 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009430{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009431 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009432
Zhu Yi46441512006-01-24 16:37:59 +08009433 mutex_lock(&priv->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009434 wrqu->retry.disabled = 0;
9435
9436 if ((wrqu->retry.flags & IW_RETRY_TYPE) == IW_RETRY_LIFETIME) {
Zhu Yi46441512006-01-24 16:37:59 +08009437 mutex_unlock(&priv->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009438 return -EINVAL;
9439 }
9440
Jean Tourrilhes919ee6d2006-08-29 18:01:40 -07009441 if (wrqu->retry.flags & IW_RETRY_LONG) {
9442 wrqu->retry.flags = IW_RETRY_LIMIT | IW_RETRY_LONG;
James Ketrenosafbf30a2005-08-25 00:05:33 -05009443 wrqu->retry.value = priv->long_retry_limit;
Jean Tourrilhes919ee6d2006-08-29 18:01:40 -07009444 } else if (wrqu->retry.flags & IW_RETRY_SHORT) {
9445 wrqu->retry.flags = IW_RETRY_LIMIT | IW_RETRY_SHORT;
James Ketrenosafbf30a2005-08-25 00:05:33 -05009446 wrqu->retry.value = priv->short_retry_limit;
9447 } else {
9448 wrqu->retry.flags = IW_RETRY_LIMIT;
9449 wrqu->retry.value = priv->short_retry_limit;
9450 }
Zhu Yi46441512006-01-24 16:37:59 +08009451 mutex_unlock(&priv->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009452
Frans Pop9fd1ea42010-03-24 19:46:31 +01009453 IPW_DEBUG_WX("GET retry -> %d\n", wrqu->retry.value);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009454
9455 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009456}
9457
Jeff Garzikbf794512005-07-31 13:07:26 -04009458static int ipw_wx_set_scan(struct net_device *dev,
9459 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009460 union iwreq_data *wrqu, char *extra)
9461{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009462 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi094c4d22006-08-21 11:39:03 +08009463 struct iw_scan_req *req = (struct iw_scan_req *)extra;
Dan Williamsea177302008-06-02 17:51:23 -04009464 struct delayed_work *work = NULL;
Zhu Yi094c4d22006-08-21 11:39:03 +08009465
Dan Williams0b531672007-10-09 13:55:24 -04009466 mutex_lock(&priv->mutex);
Dan Williamsea177302008-06-02 17:51:23 -04009467
Dan Williams0b531672007-10-09 13:55:24 -04009468 priv->user_requested_scan = 1;
Dan Williams0b531672007-10-09 13:55:24 -04009469
Zhu Yi094c4d22006-08-21 11:39:03 +08009470 if (wrqu->data.length == sizeof(struct iw_scan_req)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05009471 if (wrqu->data.flags & IW_SCAN_THIS_ESSID) {
Dan Williamsea177302008-06-02 17:51:23 -04009472 int len = min((int)req->essid_len,
9473 (int)sizeof(priv->direct_scan_ssid));
9474 memcpy(priv->direct_scan_ssid, req->essid, len);
9475 priv->direct_scan_ssid_len = len;
9476 work = &priv->request_direct_scan;
9477 } else if (req->scan_type == IW_SCAN_TYPE_PASSIVE) {
9478 work = &priv->request_passive_scan;
James Ketrenosafbf30a2005-08-25 00:05:33 -05009479 }
Dan Williamsea177302008-06-02 17:51:23 -04009480 } else {
9481 /* Normal active broadcast scan */
9482 work = &priv->request_scan;
James Ketrenosafbf30a2005-08-25 00:05:33 -05009483 }
James Ketrenos8935f392005-10-05 15:59:08 -05009484
Dan Williamsea177302008-06-02 17:51:23 -04009485 mutex_unlock(&priv->mutex);
9486
James Ketrenos43f66a62005-03-25 12:31:53 -06009487 IPW_DEBUG_WX("Start scan\n");
James Ketrenosb095c382005-08-24 22:04:42 -05009488
Tejun Heobcb6d912011-01-26 12:12:50 +01009489 schedule_delayed_work(work, 0);
James Ketrenosb095c382005-08-24 22:04:42 -05009490
James Ketrenos43f66a62005-03-25 12:31:53 -06009491 return 0;
9492}
9493
Jeff Garzikbf794512005-07-31 13:07:26 -04009494static int ipw_wx_get_scan(struct net_device *dev,
9495 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009496 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009497{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009498 struct ipw_priv *priv = libipw_priv(dev);
9499 return libipw_wx_get_scan(priv->ieee, info, wrqu, extra);
James Ketrenos43f66a62005-03-25 12:31:53 -06009500}
9501
Jeff Garzikbf794512005-07-31 13:07:26 -04009502static int ipw_wx_set_encode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009503 struct iw_request_info *info,
9504 union iwreq_data *wrqu, char *key)
James Ketrenos43f66a62005-03-25 12:31:53 -06009505{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009506 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009507 int ret;
Hong Liucaeff812005-08-05 17:25:50 +08009508 u32 cap = priv->capability;
James Ketrenosafbf30a2005-08-25 00:05:33 -05009509
Zhu Yi46441512006-01-24 16:37:59 +08009510 mutex_lock(&priv->mutex);
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009511 ret = libipw_wx_set_encode(priv->ieee, info, wrqu, key);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009512
Hong Liucaeff812005-08-05 17:25:50 +08009513 /* In IBSS mode, we need to notify the firmware to update
9514 * the beacon info after we changed the capability. */
9515 if (cap != priv->capability &&
9516 priv->ieee->iw_mode == IW_MODE_ADHOC &&
9517 priv->status & STATUS_ASSOCIATED)
9518 ipw_disassociate(priv);
9519
Zhu Yi46441512006-01-24 16:37:59 +08009520 mutex_unlock(&priv->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009521 return ret;
James Ketrenos43f66a62005-03-25 12:31:53 -06009522}
9523
Jeff Garzikbf794512005-07-31 13:07:26 -04009524static int ipw_wx_get_encode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009525 struct iw_request_info *info,
9526 union iwreq_data *wrqu, char *key)
James Ketrenos43f66a62005-03-25 12:31:53 -06009527{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009528 struct ipw_priv *priv = libipw_priv(dev);
9529 return libipw_wx_get_encode(priv->ieee, info, wrqu, key);
James Ketrenos43f66a62005-03-25 12:31:53 -06009530}
9531
Jeff Garzikbf794512005-07-31 13:07:26 -04009532static int ipw_wx_set_power(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009533 struct iw_request_info *info,
9534 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009535{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009536 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009537 int err;
Zhu Yi46441512006-01-24 16:37:59 +08009538 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009539 if (wrqu->power.disabled) {
9540 priv->power_mode = IPW_POWER_LEVEL(priv->power_mode);
9541 err = ipw_send_power_mode(priv, IPW_POWER_MODE_CAM);
9542 if (err) {
9543 IPW_DEBUG_WX("failed setting power mode.\n");
Zhu Yi46441512006-01-24 16:37:59 +08009544 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009545 return err;
9546 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009547 IPW_DEBUG_WX("SET Power Management Mode -> off\n");
Zhu Yi46441512006-01-24 16:37:59 +08009548 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009549 return 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04009550 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009551
9552 switch (wrqu->power.flags & IW_POWER_MODE) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009553 case IW_POWER_ON: /* If not specified */
9554 case IW_POWER_MODE: /* If set all mask */
Jean Delvarec03983a2007-10-19 23:22:55 +02009555 case IW_POWER_ALL_R: /* If explicitly state all */
James Ketrenos43f66a62005-03-25 12:31:53 -06009556 break;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009557 default: /* Otherwise we don't support it */
James Ketrenos43f66a62005-03-25 12:31:53 -06009558 IPW_DEBUG_WX("SET PM Mode: %X not supported.\n",
9559 wrqu->power.flags);
Zhu Yi46441512006-01-24 16:37:59 +08009560 mutex_unlock(&priv->mutex);
Jeff Garzikbf794512005-07-31 13:07:26 -04009561 return -EOPNOTSUPP;
James Ketrenos43f66a62005-03-25 12:31:53 -06009562 }
Jeff Garzikbf794512005-07-31 13:07:26 -04009563
James Ketrenos43f66a62005-03-25 12:31:53 -06009564 /* If the user hasn't specified a power management mode yet, default
9565 * to BATTERY */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009566 if (IPW_POWER_LEVEL(priv->power_mode) == IPW_POWER_AC)
James Ketrenos43f66a62005-03-25 12:31:53 -06009567 priv->power_mode = IPW_POWER_ENABLED | IPW_POWER_BATTERY;
Jeff Garzikbf794512005-07-31 13:07:26 -04009568 else
James Ketrenos43f66a62005-03-25 12:31:53 -06009569 priv->power_mode = IPW_POWER_ENABLED | priv->power_mode;
Zhu Yi4e157f02007-07-12 16:09:32 +08009570
James Ketrenos43f66a62005-03-25 12:31:53 -06009571 err = ipw_send_power_mode(priv, IPW_POWER_LEVEL(priv->power_mode));
9572 if (err) {
9573 IPW_DEBUG_WX("failed setting power mode.\n");
Zhu Yi46441512006-01-24 16:37:59 +08009574 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009575 return err;
9576 }
9577
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009578 IPW_DEBUG_WX("SET Power Management Mode -> 0x%02X\n", priv->power_mode);
Zhu Yi46441512006-01-24 16:37:59 +08009579 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009580 return 0;
9581}
9582
Jeff Garzikbf794512005-07-31 13:07:26 -04009583static int ipw_wx_get_power(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009584 struct iw_request_info *info,
9585 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009586{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009587 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009588 mutex_lock(&priv->mutex);
James Ketrenosa613bff2005-08-24 21:43:11 -05009589 if (!(priv->power_mode & IPW_POWER_ENABLED))
James Ketrenos43f66a62005-03-25 12:31:53 -06009590 wrqu->power.disabled = 1;
James Ketrenosa613bff2005-08-24 21:43:11 -05009591 else
James Ketrenos43f66a62005-03-25 12:31:53 -06009592 wrqu->power.disabled = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009593
Zhu Yi46441512006-01-24 16:37:59 +08009594 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009595 IPW_DEBUG_WX("GET Power Management Mode -> %02X\n", priv->power_mode);
Jeff Garzikbf794512005-07-31 13:07:26 -04009596
James Ketrenos43f66a62005-03-25 12:31:53 -06009597 return 0;
9598}
9599
Jeff Garzikbf794512005-07-31 13:07:26 -04009600static int ipw_wx_set_powermode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009601 struct iw_request_info *info,
9602 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009603{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009604 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009605 int mode = *(int *)extra;
9606 int err;
Zhu Yi4e157f02007-07-12 16:09:32 +08009607
Zhu Yi46441512006-01-24 16:37:59 +08009608 mutex_lock(&priv->mutex);
Zhu Yi4e157f02007-07-12 16:09:32 +08009609 if ((mode < 1) || (mode > IPW_POWER_LIMIT))
James Ketrenos43f66a62005-03-25 12:31:53 -06009610 mode = IPW_POWER_AC;
Jeff Garzikbf794512005-07-31 13:07:26 -04009611
Zhu Yi4e157f02007-07-12 16:09:32 +08009612 if (IPW_POWER_LEVEL(priv->power_mode) != mode) {
James Ketrenos43f66a62005-03-25 12:31:53 -06009613 err = ipw_send_power_mode(priv, mode);
James Ketrenos43f66a62005-03-25 12:31:53 -06009614 if (err) {
9615 IPW_DEBUG_WX("failed setting power mode.\n");
Zhu Yi46441512006-01-24 16:37:59 +08009616 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009617 return err;
9618 }
Zhu Yi4e157f02007-07-12 16:09:32 +08009619 priv->power_mode = IPW_POWER_ENABLED | mode;
James Ketrenos43f66a62005-03-25 12:31:53 -06009620 }
Zhu Yi46441512006-01-24 16:37:59 +08009621 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009622 return 0;
9623}
9624
9625#define MAX_WX_STRING 80
Jeff Garzikbf794512005-07-31 13:07:26 -04009626static int ipw_wx_get_powermode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009627 struct iw_request_info *info,
9628 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009629{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009630 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009631 int level = IPW_POWER_LEVEL(priv->power_mode);
9632 char *p = extra;
9633
9634 p += snprintf(p, MAX_WX_STRING, "Power save level: %d ", level);
9635
9636 switch (level) {
9637 case IPW_POWER_AC:
9638 p += snprintf(p, MAX_WX_STRING - (p - extra), "(AC)");
9639 break;
9640 case IPW_POWER_BATTERY:
9641 p += snprintf(p, MAX_WX_STRING - (p - extra), "(BATTERY)");
9642 break;
9643 default:
9644 p += snprintf(p, MAX_WX_STRING - (p - extra),
Jeff Garzikbf794512005-07-31 13:07:26 -04009645 "(Timeout %dms, Period %dms)",
James Ketrenos43f66a62005-03-25 12:31:53 -06009646 timeout_duration[level - 1] / 1000,
9647 period_duration[level - 1] / 1000);
9648 }
9649
9650 if (!(priv->power_mode & IPW_POWER_ENABLED))
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009651 p += snprintf(p, MAX_WX_STRING - (p - extra), " OFF");
James Ketrenos43f66a62005-03-25 12:31:53 -06009652
9653 wrqu->data.length = p - extra + 1;
9654
9655 return 0;
9656}
9657
9658static int ipw_wx_set_wireless_mode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009659 struct iw_request_info *info,
9660 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009661{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009662 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009663 int mode = *(int *)extra;
9664 u8 band = 0, modulation = 0;
9665
9666 if (mode == 0 || mode & ~IEEE_MODE_MASK) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009667 IPW_WARNING("Attempt to set invalid wireless mode: %d\n", mode);
James Ketrenos43f66a62005-03-25 12:31:53 -06009668 return -EINVAL;
9669 }
Zhu Yi46441512006-01-24 16:37:59 +08009670 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009671 if (priv->adapter == IPW_2915ABG) {
James Ketrenosa33a1982005-09-14 14:28:59 -05009672 priv->ieee->abg_true = 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06009673 if (mode & IEEE_A) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009674 band |= LIBIPW_52GHZ_BAND;
9675 modulation |= LIBIPW_OFDM_MODULATION;
James Ketrenos43f66a62005-03-25 12:31:53 -06009676 } else
James Ketrenosa33a1982005-09-14 14:28:59 -05009677 priv->ieee->abg_true = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009678 } else {
9679 if (mode & IEEE_A) {
9680 IPW_WARNING("Attempt to set 2200BG into "
9681 "802.11a mode\n");
Zhu Yi46441512006-01-24 16:37:59 +08009682 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009683 return -EINVAL;
9684 }
9685
James Ketrenosa33a1982005-09-14 14:28:59 -05009686 priv->ieee->abg_true = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009687 }
9688
9689 if (mode & IEEE_B) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009690 band |= LIBIPW_24GHZ_BAND;
9691 modulation |= LIBIPW_CCK_MODULATION;
James Ketrenos43f66a62005-03-25 12:31:53 -06009692 } else
James Ketrenosa33a1982005-09-14 14:28:59 -05009693 priv->ieee->abg_true = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04009694
James Ketrenos43f66a62005-03-25 12:31:53 -06009695 if (mode & IEEE_G) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009696 band |= LIBIPW_24GHZ_BAND;
9697 modulation |= LIBIPW_OFDM_MODULATION;
James Ketrenos43f66a62005-03-25 12:31:53 -06009698 } else
James Ketrenosa33a1982005-09-14 14:28:59 -05009699 priv->ieee->abg_true = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009700
9701 priv->ieee->mode = mode;
9702 priv->ieee->freq_band = band;
9703 priv->ieee->modulation = modulation;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009704 init_supported_rates(priv, &priv->rates);
James Ketrenos43f66a62005-03-25 12:31:53 -06009705
James Ketrenosc848d0a2005-08-24 21:56:24 -05009706 /* Network configuration changed -- force [re]association */
9707 IPW_DEBUG_ASSOC("[re]association triggered due to mode change.\n");
9708 if (!ipw_disassociate(priv)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06009709 ipw_send_supported_rates(priv, &priv->rates);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009710 ipw_associate(priv);
9711 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009712
James Ketrenosa613bff2005-08-24 21:43:11 -05009713 /* Update the band LEDs */
9714 ipw_led_band_on(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06009715
Jeff Garzikbf794512005-07-31 13:07:26 -04009716 IPW_DEBUG_WX("PRIV SET MODE: %c%c%c\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06009717 mode & IEEE_A ? 'a' : '.',
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009718 mode & IEEE_B ? 'b' : '.', mode & IEEE_G ? 'g' : '.');
Zhu Yi46441512006-01-24 16:37:59 +08009719 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009720 return 0;
9721}
9722
9723static int ipw_wx_get_wireless_mode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009724 struct iw_request_info *info,
9725 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009726{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009727 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009728 mutex_lock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009729 switch (priv->ieee->mode) {
9730 case IEEE_A:
James Ketrenos43f66a62005-03-25 12:31:53 -06009731 strncpy(extra, "802.11a (1)", MAX_WX_STRING);
9732 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009733 case IEEE_B:
9734 strncpy(extra, "802.11b (2)", MAX_WX_STRING);
9735 break;
9736 case IEEE_A | IEEE_B:
9737 strncpy(extra, "802.11ab (3)", MAX_WX_STRING);
9738 break;
9739 case IEEE_G:
9740 strncpy(extra, "802.11g (4)", MAX_WX_STRING);
9741 break;
9742 case IEEE_A | IEEE_G:
9743 strncpy(extra, "802.11ag (5)", MAX_WX_STRING);
9744 break;
9745 case IEEE_B | IEEE_G:
9746 strncpy(extra, "802.11bg (6)", MAX_WX_STRING);
9747 break;
9748 case IEEE_A | IEEE_B | IEEE_G:
9749 strncpy(extra, "802.11abg (7)", MAX_WX_STRING);
9750 break;
9751 default:
9752 strncpy(extra, "unknown", MAX_WX_STRING);
James Ketrenos43f66a62005-03-25 12:31:53 -06009753 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04009754 }
Rickard Strandqvist2da2c582014-08-10 01:39:28 +02009755 extra[MAX_WX_STRING - 1] = '\0';
Jeff Garzikbf794512005-07-31 13:07:26 -04009756
James Ketrenos43f66a62005-03-25 12:31:53 -06009757 IPW_DEBUG_WX("PRIV GET MODE: %s\n", extra);
9758
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009759 wrqu->data.length = strlen(extra) + 1;
Zhu Yi46441512006-01-24 16:37:59 +08009760 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009761
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009762 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009763}
9764
James Ketrenosea2b26e2005-08-24 21:25:16 -05009765static int ipw_wx_set_preamble(struct net_device *dev,
9766 struct iw_request_info *info,
9767 union iwreq_data *wrqu, char *extra)
9768{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009769 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009770 int mode = *(int *)extra;
Zhu Yi46441512006-01-24 16:37:59 +08009771 mutex_lock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009772 /* Switching from SHORT -> LONG requires a disassociation */
9773 if (mode == 1) {
9774 if (!(priv->config & CFG_PREAMBLE_LONG)) {
9775 priv->config |= CFG_PREAMBLE_LONG;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009776
9777 /* Network configuration changed -- force [re]association */
9778 IPW_DEBUG_ASSOC
9779 ("[re]association triggered due to preamble change.\n");
9780 if (!ipw_disassociate(priv))
9781 ipw_associate(priv);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009782 }
9783 goto done;
9784 }
9785
9786 if (mode == 0) {
9787 priv->config &= ~CFG_PREAMBLE_LONG;
9788 goto done;
9789 }
Zhu Yi46441512006-01-24 16:37:59 +08009790 mutex_unlock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009791 return -EINVAL;
9792
9793 done:
Zhu Yi46441512006-01-24 16:37:59 +08009794 mutex_unlock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009795 return 0;
9796}
9797
9798static int ipw_wx_get_preamble(struct net_device *dev,
9799 struct iw_request_info *info,
9800 union iwreq_data *wrqu, char *extra)
9801{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009802 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009803 mutex_lock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009804 if (priv->config & CFG_PREAMBLE_LONG)
9805 snprintf(wrqu->name, IFNAMSIZ, "long (1)");
9806 else
9807 snprintf(wrqu->name, IFNAMSIZ, "auto (0)");
Zhu Yi46441512006-01-24 16:37:59 +08009808 mutex_unlock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009809 return 0;
9810}
9811
James Ketrenosb095c382005-08-24 22:04:42 -05009812#ifdef CONFIG_IPW2200_MONITOR
James Ketrenosea2b26e2005-08-24 21:25:16 -05009813static int ipw_wx_set_monitor(struct net_device *dev,
Jeff Garzikbf794512005-07-31 13:07:26 -04009814 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009815 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009816{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009817 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009818 int *parms = (int *)extra;
9819 int enable = (parms[0] > 0);
Zhu Yi46441512006-01-24 16:37:59 +08009820 mutex_lock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009821 IPW_DEBUG_WX("SET MONITOR: %d %d\n", enable, parms[1]);
James Ketrenos43f66a62005-03-25 12:31:53 -06009822 if (enable) {
9823 if (priv->ieee->iw_mode != IW_MODE_MONITOR) {
Zhu Yi459d4082006-04-13 17:21:00 +08009824#ifdef CONFIG_IPW2200_RADIOTAP
Mike Kershaw24a47db2005-08-26 00:41:54 -05009825 priv->net_dev->type = ARPHRD_IEEE80211_RADIOTAP;
9826#else
James Ketrenos43f66a62005-03-25 12:31:53 -06009827 priv->net_dev->type = ARPHRD_IEEE80211;
Mike Kershaw24a47db2005-08-26 00:41:54 -05009828#endif
Tejun Heobcb6d912011-01-26 12:12:50 +01009829 schedule_work(&priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06009830 }
Jeff Garzikbf794512005-07-31 13:07:26 -04009831
James Ketrenos43f66a62005-03-25 12:31:53 -06009832 ipw_set_channel(priv, parms[1]);
9833 } else {
James Ketrenosc848d0a2005-08-24 21:56:24 -05009834 if (priv->ieee->iw_mode != IW_MODE_MONITOR) {
Zhu Yi46441512006-01-24 16:37:59 +08009835 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009836 return 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009837 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009838 priv->net_dev->type = ARPHRD_ETHER;
Tejun Heobcb6d912011-01-26 12:12:50 +01009839 schedule_work(&priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06009840 }
Zhu Yi46441512006-01-24 16:37:59 +08009841 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009842 return 0;
9843}
9844
Pavel Machek67fd6b42006-07-11 15:34:05 +02009845#endif /* CONFIG_IPW2200_MONITOR */
James Ketrenosb095c382005-08-24 22:04:42 -05009846
Jeff Garzikbf794512005-07-31 13:07:26 -04009847static int ipw_wx_reset(struct net_device *dev,
9848 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009849 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009850{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009851 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009852 IPW_DEBUG_WX("RESET\n");
Tejun Heobcb6d912011-01-26 12:12:50 +01009853 schedule_work(&priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06009854 return 0;
9855}
James Ketrenosb095c382005-08-24 22:04:42 -05009856
James Ketrenosb095c382005-08-24 22:04:42 -05009857static int ipw_wx_sw_reset(struct net_device *dev,
9858 struct iw_request_info *info,
9859 union iwreq_data *wrqu, char *extra)
9860{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009861 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenosb095c382005-08-24 22:04:42 -05009862 union iwreq_data wrqu_sec = {
9863 .encoding = {
9864 .flags = IW_ENCODE_DISABLED,
9865 },
9866 };
James Ketrenosafbf30a2005-08-25 00:05:33 -05009867 int ret;
James Ketrenosb095c382005-08-24 22:04:42 -05009868
9869 IPW_DEBUG_WX("SW_RESET\n");
9870
Zhu Yi46441512006-01-24 16:37:59 +08009871 mutex_lock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05009872
Zhu Yid6d5b5c2006-02-16 16:21:09 +08009873 ret = ipw_sw_reset(priv, 2);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009874 if (!ret) {
9875 free_firmware();
9876 ipw_adapter_restart(priv);
9877 }
James Ketrenosb095c382005-08-24 22:04:42 -05009878
9879 /* The SW reset bit might have been toggled on by the 'disable'
9880 * module parameter, so take appropriate action */
9881 ipw_radio_kill_sw(priv, priv->status & STATUS_RF_KILL_SW);
9882
Zhu Yi46441512006-01-24 16:37:59 +08009883 mutex_unlock(&priv->mutex);
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009884 libipw_wx_set_encode(priv->ieee, info, &wrqu_sec, NULL);
Zhu Yi46441512006-01-24 16:37:59 +08009885 mutex_lock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05009886
9887 if (!(priv->status & STATUS_RF_KILL_MASK)) {
9888 /* Configuration likely changed -- force [re]association */
9889 IPW_DEBUG_ASSOC("[re]association triggered due to sw "
9890 "reset.\n");
9891 if (!ipw_disassociate(priv))
9892 ipw_associate(priv);
9893 }
9894
Zhu Yi46441512006-01-24 16:37:59 +08009895 mutex_unlock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05009896
9897 return 0;
9898}
James Ketrenos43f66a62005-03-25 12:31:53 -06009899
9900/* Rebase the WE IOCTLs to zero for the handler array */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009901static iw_handler ipw_wx_handlers[] = {
Joe Perches56b632e2010-03-18 18:29:38 -07009902 IW_HANDLER(SIOCGIWNAME, (iw_handler)cfg80211_wext_giwname),
9903 IW_HANDLER(SIOCSIWFREQ, ipw_wx_set_freq),
9904 IW_HANDLER(SIOCGIWFREQ, ipw_wx_get_freq),
9905 IW_HANDLER(SIOCSIWMODE, ipw_wx_set_mode),
9906 IW_HANDLER(SIOCGIWMODE, ipw_wx_get_mode),
9907 IW_HANDLER(SIOCSIWSENS, ipw_wx_set_sens),
9908 IW_HANDLER(SIOCGIWSENS, ipw_wx_get_sens),
9909 IW_HANDLER(SIOCGIWRANGE, ipw_wx_get_range),
9910 IW_HANDLER(SIOCSIWAP, ipw_wx_set_wap),
9911 IW_HANDLER(SIOCGIWAP, ipw_wx_get_wap),
9912 IW_HANDLER(SIOCSIWSCAN, ipw_wx_set_scan),
9913 IW_HANDLER(SIOCGIWSCAN, ipw_wx_get_scan),
9914 IW_HANDLER(SIOCSIWESSID, ipw_wx_set_essid),
9915 IW_HANDLER(SIOCGIWESSID, ipw_wx_get_essid),
9916 IW_HANDLER(SIOCSIWNICKN, ipw_wx_set_nick),
9917 IW_HANDLER(SIOCGIWNICKN, ipw_wx_get_nick),
9918 IW_HANDLER(SIOCSIWRATE, ipw_wx_set_rate),
9919 IW_HANDLER(SIOCGIWRATE, ipw_wx_get_rate),
9920 IW_HANDLER(SIOCSIWRTS, ipw_wx_set_rts),
9921 IW_HANDLER(SIOCGIWRTS, ipw_wx_get_rts),
9922 IW_HANDLER(SIOCSIWFRAG, ipw_wx_set_frag),
9923 IW_HANDLER(SIOCGIWFRAG, ipw_wx_get_frag),
9924 IW_HANDLER(SIOCSIWTXPOW, ipw_wx_set_txpow),
9925 IW_HANDLER(SIOCGIWTXPOW, ipw_wx_get_txpow),
9926 IW_HANDLER(SIOCSIWRETRY, ipw_wx_set_retry),
9927 IW_HANDLER(SIOCGIWRETRY, ipw_wx_get_retry),
9928 IW_HANDLER(SIOCSIWENCODE, ipw_wx_set_encode),
9929 IW_HANDLER(SIOCGIWENCODE, ipw_wx_get_encode),
9930 IW_HANDLER(SIOCSIWPOWER, ipw_wx_set_power),
9931 IW_HANDLER(SIOCGIWPOWER, ipw_wx_get_power),
9932 IW_HANDLER(SIOCSIWSPY, iw_handler_set_spy),
9933 IW_HANDLER(SIOCGIWSPY, iw_handler_get_spy),
9934 IW_HANDLER(SIOCSIWTHRSPY, iw_handler_set_thrspy),
9935 IW_HANDLER(SIOCGIWTHRSPY, iw_handler_get_thrspy),
9936 IW_HANDLER(SIOCSIWGENIE, ipw_wx_set_genie),
9937 IW_HANDLER(SIOCGIWGENIE, ipw_wx_get_genie),
9938 IW_HANDLER(SIOCSIWMLME, ipw_wx_set_mlme),
9939 IW_HANDLER(SIOCSIWAUTH, ipw_wx_set_auth),
9940 IW_HANDLER(SIOCGIWAUTH, ipw_wx_get_auth),
9941 IW_HANDLER(SIOCSIWENCODEEXT, ipw_wx_set_encodeext),
9942 IW_HANDLER(SIOCGIWENCODEEXT, ipw_wx_get_encodeext),
James Ketrenos43f66a62005-03-25 12:31:53 -06009943};
9944
James Ketrenosb095c382005-08-24 22:04:42 -05009945enum {
9946 IPW_PRIV_SET_POWER = SIOCIWFIRSTPRIV,
9947 IPW_PRIV_GET_POWER,
9948 IPW_PRIV_SET_MODE,
9949 IPW_PRIV_GET_MODE,
9950 IPW_PRIV_SET_PREAMBLE,
9951 IPW_PRIV_GET_PREAMBLE,
9952 IPW_PRIV_RESET,
9953 IPW_PRIV_SW_RESET,
9954#ifdef CONFIG_IPW2200_MONITOR
9955 IPW_PRIV_SET_MONITOR,
9956#endif
9957};
James Ketrenos43f66a62005-03-25 12:31:53 -06009958
Jeff Garzikbf794512005-07-31 13:07:26 -04009959static struct iw_priv_args ipw_priv_args[] = {
James Ketrenos43f66a62005-03-25 12:31:53 -06009960 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009961 .cmd = IPW_PRIV_SET_POWER,
9962 .set_args = IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
9963 .name = "set_power"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009964 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009965 .cmd = IPW_PRIV_GET_POWER,
9966 .get_args = IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | MAX_WX_STRING,
9967 .name = "get_power"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009968 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009969 .cmd = IPW_PRIV_SET_MODE,
9970 .set_args = IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
9971 .name = "set_mode"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009972 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009973 .cmd = IPW_PRIV_GET_MODE,
9974 .get_args = IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | MAX_WX_STRING,
9975 .name = "get_mode"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009976 {
James Ketrenosea2b26e2005-08-24 21:25:16 -05009977 .cmd = IPW_PRIV_SET_PREAMBLE,
9978 .set_args = IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
9979 .name = "set_preamble"},
9980 {
9981 .cmd = IPW_PRIV_GET_PREAMBLE,
9982 .get_args = IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | IFNAMSIZ,
9983 .name = "get_preamble"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009984 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009985 IPW_PRIV_RESET,
9986 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 0, 0, "reset"},
James Ketrenosb095c382005-08-24 22:04:42 -05009987 {
9988 IPW_PRIV_SW_RESET,
9989 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 0, 0, "sw_reset"},
9990#ifdef CONFIG_IPW2200_MONITOR
9991 {
9992 IPW_PRIV_SET_MONITOR,
9993 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 2, 0, "monitor"},
9994#endif /* CONFIG_IPW2200_MONITOR */
James Ketrenos43f66a62005-03-25 12:31:53 -06009995};
9996
9997static iw_handler ipw_priv_handler[] = {
9998 ipw_wx_set_powermode,
9999 ipw_wx_get_powermode,
10000 ipw_wx_set_wireless_mode,
10001 ipw_wx_get_wireless_mode,
James Ketrenosea2b26e2005-08-24 21:25:16 -050010002 ipw_wx_set_preamble,
10003 ipw_wx_get_preamble,
Jeff Garzikbf794512005-07-31 13:07:26 -040010004 ipw_wx_reset,
James Ketrenosb095c382005-08-24 22:04:42 -050010005 ipw_wx_sw_reset,
10006#ifdef CONFIG_IPW2200_MONITOR
10007 ipw_wx_set_monitor,
James Ketrenos43f66a62005-03-25 12:31:53 -060010008#endif
10009};
10010
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010011static struct iw_handler_def ipw_wx_handler_def = {
James Ketrenosea2b26e2005-08-24 21:25:16 -050010012 .standard = ipw_wx_handlers,
10013 .num_standard = ARRAY_SIZE(ipw_wx_handlers),
10014 .num_private = ARRAY_SIZE(ipw_priv_handler),
10015 .num_private_args = ARRAY_SIZE(ipw_priv_args),
10016 .private = ipw_priv_handler,
10017 .private_args = ipw_priv_args,
Benoit Boissinot97a78ca2005-09-15 17:30:28 +000010018 .get_wireless_stats = ipw_get_wireless_stats,
James Ketrenos43f66a62005-03-25 12:31:53 -060010019};
10020
James Ketrenos43f66a62005-03-25 12:31:53 -060010021/*
10022 * Get wireless statistics.
10023 * Called by /proc/net/wireless
10024 * Also called by SIOCGIWSTATS
10025 */
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010026static struct iw_statistics *ipw_get_wireless_stats(struct net_device *dev)
James Ketrenos43f66a62005-03-25 12:31:53 -060010027{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010028 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060010029 struct iw_statistics *wstats;
Jeff Garzikbf794512005-07-31 13:07:26 -040010030
James Ketrenos43f66a62005-03-25 12:31:53 -060010031 wstats = &priv->wstats;
10032
James Ketrenosea2b26e2005-08-24 21:25:16 -050010033 /* if hw is disabled, then ipw_get_ordinal() can't be called.
James Ketrenosafbf30a2005-08-25 00:05:33 -050010034 * netdev->get_wireless_stats seems to be called before fw is
James Ketrenos43f66a62005-03-25 12:31:53 -060010035 * initialized. STATUS_ASSOCIATED will only be set if the hw is up
10036 * and associated; if not associcated, the values are all meaningless
10037 * anyway, so set them all to NULL and INVALID */
10038 if (!(priv->status & STATUS_ASSOCIATED)) {
10039 wstats->miss.beacon = 0;
10040 wstats->discard.retries = 0;
10041 wstats->qual.qual = 0;
10042 wstats->qual.level = 0;
10043 wstats->qual.noise = 0;
10044 wstats->qual.updated = 7;
10045 wstats->qual.updated |= IW_QUAL_NOISE_INVALID |
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010046 IW_QUAL_QUAL_INVALID | IW_QUAL_LEVEL_INVALID;
James Ketrenos43f66a62005-03-25 12:31:53 -060010047 return wstats;
Jeff Garzikbf794512005-07-31 13:07:26 -040010048 }
James Ketrenos43f66a62005-03-25 12:31:53 -060010049
10050 wstats->qual.qual = priv->quality;
Zhu Yi00d21de2006-04-13 17:19:02 +080010051 wstats->qual.level = priv->exp_avg_rssi;
10052 wstats->qual.noise = priv->exp_avg_noise;
James Ketrenos43f66a62005-03-25 12:31:53 -060010053 wstats->qual.updated = IW_QUAL_QUAL_UPDATED | IW_QUAL_LEVEL_UPDATED |
Bill Mossb1916082006-02-15 08:50:18 +080010054 IW_QUAL_NOISE_UPDATED | IW_QUAL_DBM;
James Ketrenos43f66a62005-03-25 12:31:53 -060010055
10056 wstats->miss.beacon = average_value(&priv->average_missed_beacons);
10057 wstats->discard.retries = priv->last_tx_failures;
10058 wstats->discard.code = priv->ieee->ieee_stats.rx_discards_undecryptable;
Jeff Garzikbf794512005-07-31 13:07:26 -040010059
James Ketrenos43f66a62005-03-25 12:31:53 -060010060/* if (ipw_get_ordinal(priv, IPW_ORD_STAT_TX_RETRY, &tx_retry, &len))
10061 goto fail_get_ordinal;
10062 wstats->discard.retries += tx_retry; */
Jeff Garzikbf794512005-07-31 13:07:26 -040010063
James Ketrenos43f66a62005-03-25 12:31:53 -060010064 return wstats;
10065}
10066
James Ketrenos43f66a62005-03-25 12:31:53 -060010067/* net device stuff */
10068
Arjan van de Ven858119e2006-01-14 13:20:43 -080010069static void init_sys_config(struct ipw_sys_config *sys_config)
James Ketrenos43f66a62005-03-25 12:31:53 -060010070{
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010071 memset(sys_config, 0, sizeof(struct ipw_sys_config));
Zhu Yi810dabd2006-01-24 16:36:59 +080010072 sys_config->bt_coexistence = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060010073 sys_config->answer_broadcast_ssid_probe = 0;
10074 sys_config->accept_all_data_frames = 0;
10075 sys_config->accept_non_directed_frames = 1;
10076 sys_config->exclude_unicast_unencrypted = 0;
10077 sys_config->disable_unicast_decryption = 1;
10078 sys_config->exclude_multicast_unencrypted = 0;
10079 sys_config->disable_multicast_decryption = 1;
Zhu Yid2b83e12006-04-13 17:19:36 +080010080 if (antenna < CFG_SYS_ANTENNA_BOTH || antenna > CFG_SYS_ANTENNA_B)
10081 antenna = CFG_SYS_ANTENNA_BOTH;
10082 sys_config->antenna_diversity = antenna;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010083 sys_config->pass_crc_to_host = 0; /* TODO: See if 1 gives us FCS */
James Ketrenos43f66a62005-03-25 12:31:53 -060010084 sys_config->dot11g_auto_detection = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -040010085 sys_config->enable_cts_to_self = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060010086 sys_config->bt_coexist_collision_thr = 0;
Pavel Machek67fd6b42006-07-11 15:34:05 +020010087 sys_config->pass_noise_stats_to_host = 1; /* 1 -- fix for 256 */
Cahill, Ben M12977152006-03-08 02:58:02 +080010088 sys_config->silence_threshold = 0x1e;
James Ketrenos43f66a62005-03-25 12:31:53 -060010089}
10090
10091static int ipw_net_open(struct net_device *dev)
10092{
James Ketrenos43f66a62005-03-25 12:31:53 -060010093 IPW_DEBUG_INFO("dev->open\n");
David S. Miller521c4d92008-07-22 18:32:47 -070010094 netif_start_queue(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060010095 return 0;
10096}
10097
10098static int ipw_net_stop(struct net_device *dev)
10099{
10100 IPW_DEBUG_INFO("dev->close\n");
10101 netif_stop_queue(dev);
10102 return 0;
10103}
10104
10105/*
10106todo:
10107
10108modify to send one tfd per fragment instead of using chunking. otherwise
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010109we need to heavily modify the libipw_skb_to_txb.
James Ketrenos43f66a62005-03-25 12:31:53 -060010110*/
10111
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010112static int ipw_tx_skb(struct ipw_priv *priv, struct libipw_txb *txb,
James Ketrenos227d2dc2005-07-28 16:25:55 -050010113 int pri)
James Ketrenos43f66a62005-03-25 12:31:53 -060010114{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010115 struct libipw_hdr_3addrqos *hdr = (struct libipw_hdr_3addrqos *)
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010116 txb->fragments[0]->data;
James Ketrenos43f66a62005-03-25 12:31:53 -060010117 int i = 0;
10118 struct tfd_frame *tfd;
Zhu Yie43e3c12006-04-13 17:20:45 +080010119#ifdef CONFIG_IPW2200_QOS
James Ketrenosb095c382005-08-24 22:04:42 -050010120 int tx_id = ipw_get_tx_queue_number(priv, pri);
10121 struct clx2_tx_queue *txq = &priv->txq[tx_id];
10122#else
James Ketrenos43f66a62005-03-25 12:31:53 -060010123 struct clx2_tx_queue *txq = &priv->txq[0];
James Ketrenosb095c382005-08-24 22:04:42 -050010124#endif
James Ketrenos43f66a62005-03-25 12:31:53 -060010125 struct clx2_queue *q = &txq->q;
10126 u8 id, hdr_len, unicast;
James Ketrenosc848d0a2005-08-24 21:56:24 -050010127 int fc;
James Ketrenos43f66a62005-03-25 12:31:53 -060010128
Zhu Yib8ddafd2008-11-27 13:42:20 +080010129 if (!(priv->status & STATUS_ASSOCIATED))
10130 goto drop;
10131
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010132 hdr_len = libipw_get_hdrlen(le16_to_cpu(hdr->frame_ctl));
James Ketrenos43f66a62005-03-25 12:31:53 -060010133 switch (priv->ieee->iw_mode) {
10134 case IW_MODE_ADHOC:
Stephen Hemminger3c190652006-01-03 15:27:38 -080010135 unicast = !is_multicast_ether_addr(hdr->addr1);
James Ketrenos43f66a62005-03-25 12:31:53 -060010136 id = ipw_find_station(priv, hdr->addr1);
10137 if (id == IPW_INVALID_STATION) {
10138 id = ipw_add_station(priv, hdr->addr1);
10139 if (id == IPW_INVALID_STATION) {
10140 IPW_WARNING("Attempt to send data to "
Johannes Berge1749612008-10-27 15:59:26 -070010141 "invalid cell: %pM\n",
10142 hdr->addr1);
James Ketrenos43f66a62005-03-25 12:31:53 -060010143 goto drop;
10144 }
10145 }
10146 break;
10147
10148 case IW_MODE_INFRA:
10149 default:
Stephen Hemminger3c190652006-01-03 15:27:38 -080010150 unicast = !is_multicast_ether_addr(hdr->addr3);
James Ketrenos43f66a62005-03-25 12:31:53 -060010151 id = 0;
10152 break;
10153 }
10154
10155 tfd = &txq->bd[q->first_empty];
10156 txq->txb[q->first_empty] = txb;
10157 memset(tfd, 0, sizeof(*tfd));
10158 tfd->u.data.station_number = id;
10159
10160 tfd->control_flags.message_type = TX_FRAME_TYPE;
10161 tfd->control_flags.control_bits = TFD_NEED_IRQ_MASK;
10162
10163 tfd->u.data.cmd_id = DINO_CMD_TX;
James Ketrenosa613bff2005-08-24 21:43:11 -050010164 tfd->u.data.len = cpu_to_le16(txb->payload_size);
Jeff Garzikbf794512005-07-31 13:07:26 -040010165
James Ketrenos43f66a62005-03-25 12:31:53 -060010166 if (priv->assoc_request.ieee_mode == IPW_B_MODE)
James Ketrenosb095c382005-08-24 22:04:42 -050010167 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_MODE_CCK;
James Ketrenos43f66a62005-03-25 12:31:53 -060010168 else
James Ketrenosb095c382005-08-24 22:04:42 -050010169 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_MODE_OFDM;
James Ketrenos43f66a62005-03-25 12:31:53 -060010170
James Ketrenosea2b26e2005-08-24 21:25:16 -050010171 if (priv->assoc_request.preamble_length == DCT_FLAG_SHORT_PREAMBLE)
10172 tfd->u.data.tx_flags |= DCT_FLAG_SHORT_PREAMBLE;
James Ketrenos43f66a62005-03-25 12:31:53 -060010173
James Ketrenosc848d0a2005-08-24 21:56:24 -050010174 fc = le16_to_cpu(hdr->frame_ctl);
10175 hdr->frame_ctl = cpu_to_le16(fc & ~IEEE80211_FCTL_MOREFRAGS);
James Ketrenos43f66a62005-03-25 12:31:53 -060010176
10177 memcpy(&tfd->u.data.tfd.tfd_24.mchdr, hdr, hdr_len);
10178
James Ketrenosb095c382005-08-24 22:04:42 -050010179 if (likely(unicast))
10180 tfd->u.data.tx_flags |= DCT_FLAG_ACK_REQD;
10181
10182 if (txb->encrypted && !priv->ieee->host_encrypt) {
10183 switch (priv->ieee->sec.level) {
10184 case SEC_LEVEL_3:
10185 tfd->u.data.tfd.tfd_24.mchdr.frame_ctl |=
Zhu Yi851ca262006-08-21 11:37:58 +080010186 cpu_to_le16(IEEE80211_FCTL_PROTECTED);
James Ketrenosb095c382005-08-24 22:04:42 -050010187 /* XXX: ACK flag must be set for CCMP even if it
10188 * is a multicast/broadcast packet, because CCMP
10189 * group communication encrypted by GTK is
10190 * actually done by the AP. */
10191 if (!unicast)
10192 tfd->u.data.tx_flags |= DCT_FLAG_ACK_REQD;
10193
10194 tfd->u.data.tx_flags &= ~DCT_FLAG_NO_WEP;
10195 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_SECURITY_CCM;
10196 tfd->u.data.key_index = 0;
10197 tfd->u.data.key_index |= DCT_WEP_INDEX_USE_IMMEDIATE;
10198 break;
10199 case SEC_LEVEL_2:
10200 tfd->u.data.tfd.tfd_24.mchdr.frame_ctl |=
Zhu Yi851ca262006-08-21 11:37:58 +080010201 cpu_to_le16(IEEE80211_FCTL_PROTECTED);
James Ketrenosb095c382005-08-24 22:04:42 -050010202 tfd->u.data.tx_flags &= ~DCT_FLAG_NO_WEP;
10203 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_SECURITY_TKIP;
10204 tfd->u.data.key_index = DCT_WEP_INDEX_USE_IMMEDIATE;
10205 break;
10206 case SEC_LEVEL_1:
10207 tfd->u.data.tfd.tfd_24.mchdr.frame_ctl |=
Zhu Yi851ca262006-08-21 11:37:58 +080010208 cpu_to_le16(IEEE80211_FCTL_PROTECTED);
John W. Linville274bfb82008-10-29 11:35:05 -040010209 tfd->u.data.key_index = priv->ieee->crypt_info.tx_keyidx;
10210 if (priv->ieee->sec.key_sizes[priv->ieee->crypt_info.tx_keyidx] <=
James Ketrenosb095c382005-08-24 22:04:42 -050010211 40)
10212 tfd->u.data.key_index |= DCT_WEP_KEY_64Bit;
10213 else
10214 tfd->u.data.key_index |= DCT_WEP_KEY_128Bit;
10215 break;
10216 case SEC_LEVEL_0:
10217 break;
10218 default:
André Goddard Rosaaf901ca2009-11-14 13:09:05 -020010219 printk(KERN_ERR "Unknown security level %d\n",
James Ketrenosb095c382005-08-24 22:04:42 -050010220 priv->ieee->sec.level);
10221 break;
10222 }
10223 } else
10224 /* No hardware encryption */
10225 tfd->u.data.tx_flags |= DCT_FLAG_NO_WEP;
10226
Zhu Yie43e3c12006-04-13 17:20:45 +080010227#ifdef CONFIG_IPW2200_QOS
Zhu Yia5cf4fe2006-04-13 17:19:11 +080010228 if (fc & IEEE80211_STYPE_QOS_DATA)
10229 ipw_qos_set_tx_queue_command(priv, pri, &(tfd->u.data));
Zhu Yie43e3c12006-04-13 17:20:45 +080010230#endif /* CONFIG_IPW2200_QOS */
James Ketrenosb095c382005-08-24 22:04:42 -050010231
James Ketrenos43f66a62005-03-25 12:31:53 -060010232 /* payload */
James Ketrenosa613bff2005-08-24 21:43:11 -050010233 tfd->u.data.num_chunks = cpu_to_le32(min((u8) (NUM_TFD_CHUNKS - 2),
10234 txb->nr_frags));
10235 IPW_DEBUG_FRAG("%i fragments being sent as %i chunks.\n",
10236 txb->nr_frags, le32_to_cpu(tfd->u.data.num_chunks));
10237 for (i = 0; i < le32_to_cpu(tfd->u.data.num_chunks); i++) {
10238 IPW_DEBUG_FRAG("Adding fragment %i of %i (%d bytes).\n",
10239 i, le32_to_cpu(tfd->u.data.num_chunks),
10240 txb->fragments[i]->len - hdr_len);
Jeff Garzikbf794512005-07-31 13:07:26 -040010241 IPW_DEBUG_TX("Dumping TX packet frag %i of %i (%d bytes):\n",
James Ketrenos43f66a62005-03-25 12:31:53 -060010242 i, tfd->u.data.num_chunks,
10243 txb->fragments[i]->len - hdr_len);
Jeff Garzikbf794512005-07-31 13:07:26 -040010244 printk_buf(IPW_DL_TX, txb->fragments[i]->data + hdr_len,
James Ketrenos43f66a62005-03-25 12:31:53 -060010245 txb->fragments[i]->len - hdr_len);
10246
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010247 tfd->u.data.chunk_ptr[i] =
James Ketrenosa613bff2005-08-24 21:43:11 -050010248 cpu_to_le32(pci_map_single
10249 (priv->pci_dev,
10250 txb->fragments[i]->data + hdr_len,
10251 txb->fragments[i]->len - hdr_len,
10252 PCI_DMA_TODEVICE));
10253 tfd->u.data.chunk_len[i] =
10254 cpu_to_le16(txb->fragments[i]->len - hdr_len);
James Ketrenos43f66a62005-03-25 12:31:53 -060010255 }
10256
10257 if (i != txb->nr_frags) {
10258 struct sk_buff *skb;
10259 u16 remaining_bytes = 0;
10260 int j;
10261
10262 for (j = i; j < txb->nr_frags; j++)
10263 remaining_bytes += txb->fragments[j]->len - hdr_len;
10264
10265 printk(KERN_INFO "Trying to reallocate for %d bytes\n",
10266 remaining_bytes);
10267 skb = alloc_skb(remaining_bytes, GFP_ATOMIC);
10268 if (skb != NULL) {
James Ketrenosa613bff2005-08-24 21:43:11 -050010269 tfd->u.data.chunk_len[i] = cpu_to_le16(remaining_bytes);
James Ketrenos43f66a62005-03-25 12:31:53 -060010270 for (j = i; j < txb->nr_frags; j++) {
10271 int size = txb->fragments[j]->len - hdr_len;
James Ketrenosafbf30a2005-08-25 00:05:33 -050010272
James Ketrenos43f66a62005-03-25 12:31:53 -060010273 printk(KERN_INFO "Adding frag %d %d...\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010274 j, size);
Johannes Berg59ae1d12017-06-16 14:29:20 +020010275 skb_put_data(skb,
10276 txb->fragments[j]->data + hdr_len,
10277 size);
James Ketrenos43f66a62005-03-25 12:31:53 -060010278 }
10279 dev_kfree_skb_any(txb->fragments[i]);
10280 txb->fragments[i] = skb;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010281 tfd->u.data.chunk_ptr[i] =
James Ketrenosa613bff2005-08-24 21:43:11 -050010282 cpu_to_le32(pci_map_single
10283 (priv->pci_dev, skb->data,
Al Viro49587302007-12-27 01:57:47 -050010284 remaining_bytes,
James Ketrenosa613bff2005-08-24 21:43:11 -050010285 PCI_DMA_TODEVICE));
10286
Marcin Slusarz5c058632008-02-13 00:06:12 +010010287 le32_add_cpu(&tfd->u.data.num_chunks, 1);
Jeff Garzikbf794512005-07-31 13:07:26 -040010288 }
James Ketrenos43f66a62005-03-25 12:31:53 -060010289 }
10290
10291 /* kick DMA */
10292 q->first_empty = ipw_queue_inc_wrap(q->first_empty, q->n_bd);
10293 ipw_write32(priv, q->reg_w, q->first_empty);
10294
Dan Williams943dbef2008-02-14 17:49:41 -050010295 if (ipw_tx_queue_space(q) < q->high_mark)
James Ketrenosf6970142006-02-14 09:10:51 +080010296 netif_stop_queue(priv->net_dev);
10297
James Ketrenos227d2dc2005-07-28 16:25:55 -050010298 return NETDEV_TX_OK;
James Ketrenos43f66a62005-03-25 12:31:53 -060010299
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010300 drop:
James Ketrenos43f66a62005-03-25 12:31:53 -060010301 IPW_DEBUG_DROP("Silently dropping Tx packet.\n");
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010302 libipw_txb_free(txb);
James Ketrenos227d2dc2005-07-28 16:25:55 -050010303 return NETDEV_TX_OK;
10304}
10305
10306static int ipw_net_is_queue_full(struct net_device *dev, int pri)
10307{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010308 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yie43e3c12006-04-13 17:20:45 +080010309#ifdef CONFIG_IPW2200_QOS
James Ketrenos227d2dc2005-07-28 16:25:55 -050010310 int tx_id = ipw_get_tx_queue_number(priv, pri);
10311 struct clx2_tx_queue *txq = &priv->txq[tx_id];
10312#else
10313 struct clx2_tx_queue *txq = &priv->txq[0];
Zhu Yie43e3c12006-04-13 17:20:45 +080010314#endif /* CONFIG_IPW2200_QOS */
James Ketrenos227d2dc2005-07-28 16:25:55 -050010315
Dan Williams943dbef2008-02-14 17:49:41 -050010316 if (ipw_tx_queue_space(&txq->q) < txq->q.high_mark)
James Ketrenos227d2dc2005-07-28 16:25:55 -050010317 return 1;
10318
10319 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060010320}
10321
Zhu Yid685b8c2006-04-13 17:20:27 +080010322#ifdef CONFIG_IPW2200_PROMISCUOUS
10323static void ipw_handle_promiscuous_tx(struct ipw_priv *priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010324 struct libipw_txb *txb)
Zhu Yid685b8c2006-04-13 17:20:27 +080010325{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010326 struct libipw_rx_stats dummystats;
Zhu Yid685b8c2006-04-13 17:20:27 +080010327 struct ieee80211_hdr *hdr;
10328 u8 n;
10329 u16 filter = priv->prom_priv->filter;
10330 int hdr_only = 0;
10331
10332 if (filter & IPW_PROM_NO_TX)
10333 return;
10334
10335 memset(&dummystats, 0, sizeof(dummystats));
10336
Lucas De Marchi25985ed2011-03-30 22:57:33 -030010337 /* Filtering of fragment chains is done against the first fragment */
Zhu Yid685b8c2006-04-13 17:20:27 +080010338 hdr = (void *)txb->fragments[0]->data;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010339 if (libipw_is_management(le16_to_cpu(hdr->frame_control))) {
Zhu Yid685b8c2006-04-13 17:20:27 +080010340 if (filter & IPW_PROM_NO_MGMT)
10341 return;
10342 if (filter & IPW_PROM_MGMT_HEADER_ONLY)
10343 hdr_only = 1;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010344 } else if (libipw_is_control(le16_to_cpu(hdr->frame_control))) {
Zhu Yid685b8c2006-04-13 17:20:27 +080010345 if (filter & IPW_PROM_NO_CTL)
10346 return;
10347 if (filter & IPW_PROM_CTL_HEADER_ONLY)
10348 hdr_only = 1;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010349 } else if (libipw_is_data(le16_to_cpu(hdr->frame_control))) {
Zhu Yid685b8c2006-04-13 17:20:27 +080010350 if (filter & IPW_PROM_NO_DATA)
10351 return;
10352 if (filter & IPW_PROM_DATA_HEADER_ONLY)
10353 hdr_only = 1;
10354 }
10355
10356 for(n=0; n<txb->nr_frags; ++n) {
10357 struct sk_buff *src = txb->fragments[n];
10358 struct sk_buff *dst;
10359 struct ieee80211_radiotap_header *rt_hdr;
10360 int len;
10361
10362 if (hdr_only) {
10363 hdr = (void *)src->data;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010364 len = libipw_get_hdrlen(le16_to_cpu(hdr->frame_control));
Zhu Yid685b8c2006-04-13 17:20:27 +080010365 } else
10366 len = src->len;
10367
Stanislav Yakovlevbf113152012-10-15 14:14:32 +000010368 dst = alloc_skb(len + sizeof(*rt_hdr) + sizeof(u16)*2, GFP_ATOMIC);
Johannes Berg007e5dd2008-11-27 23:13:38 +010010369 if (!dst)
10370 continue;
Zhu Yid685b8c2006-04-13 17:20:27 +080010371
Johannes Berg4df864c2017-06-16 14:29:21 +020010372 rt_hdr = skb_put(dst, sizeof(*rt_hdr));
Zhu Yid685b8c2006-04-13 17:20:27 +080010373
10374 rt_hdr->it_version = PKTHDR_RADIOTAP_VERSION;
10375 rt_hdr->it_pad = 0;
10376 rt_hdr->it_present = 0; /* after all, it's just an idea */
Al Viro743b84d2007-12-27 01:43:16 -050010377 rt_hdr->it_present |= cpu_to_le32(1 << IEEE80211_RADIOTAP_CHANNEL);
Zhu Yid685b8c2006-04-13 17:20:27 +080010378
Al Viroe62e1ee2007-12-27 01:36:46 -050010379 *(__le16*)skb_put(dst, sizeof(u16)) = cpu_to_le16(
Zhu Yid685b8c2006-04-13 17:20:27 +080010380 ieee80211chan2mhz(priv->channel));
10381 if (priv->channel > 14) /* 802.11a */
Al Viroe62e1ee2007-12-27 01:36:46 -050010382 *(__le16*)skb_put(dst, sizeof(u16)) =
Zhu Yid685b8c2006-04-13 17:20:27 +080010383 cpu_to_le16(IEEE80211_CHAN_OFDM |
10384 IEEE80211_CHAN_5GHZ);
10385 else if (priv->ieee->mode == IEEE_B) /* 802.11b */
Al Viroe62e1ee2007-12-27 01:36:46 -050010386 *(__le16*)skb_put(dst, sizeof(u16)) =
Zhu Yid685b8c2006-04-13 17:20:27 +080010387 cpu_to_le16(IEEE80211_CHAN_CCK |
10388 IEEE80211_CHAN_2GHZ);
10389 else /* 802.11g */
Al Viroe62e1ee2007-12-27 01:36:46 -050010390 *(__le16*)skb_put(dst, sizeof(u16)) =
Zhu Yid685b8c2006-04-13 17:20:27 +080010391 cpu_to_le16(IEEE80211_CHAN_OFDM |
10392 IEEE80211_CHAN_2GHZ);
10393
Al Viro743b84d2007-12-27 01:43:16 -050010394 rt_hdr->it_len = cpu_to_le16(dst->len);
Zhu Yid685b8c2006-04-13 17:20:27 +080010395
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -030010396 skb_copy_from_linear_data(src, skb_put(dst, len), len);
Zhu Yid685b8c2006-04-13 17:20:27 +080010397
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010398 if (!libipw_rx(priv->prom_priv->ieee, dst, &dummystats))
Zhu Yid685b8c2006-04-13 17:20:27 +080010399 dev_kfree_skb_any(dst);
10400 }
10401}
10402#endif
10403
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +000010404static netdev_tx_t ipw_net_hard_start_xmit(struct libipw_txb *txb,
10405 struct net_device *dev, int pri)
James Ketrenos43f66a62005-03-25 12:31:53 -060010406{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010407 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060010408 unsigned long flags;
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +000010409 netdev_tx_t ret;
James Ketrenos43f66a62005-03-25 12:31:53 -060010410
10411 IPW_DEBUG_TX("dev->xmit(%d bytes)\n", txb->payload_size);
James Ketrenos43f66a62005-03-25 12:31:53 -060010412 spin_lock_irqsave(&priv->lock, flags);
10413
Zhu Yid685b8c2006-04-13 17:20:27 +080010414#ifdef CONFIG_IPW2200_PROMISCUOUS
10415 if (rtap_iface && netif_running(priv->prom_net_dev))
10416 ipw_handle_promiscuous_tx(priv, txb);
10417#endif
10418
James Ketrenos227d2dc2005-07-28 16:25:55 -050010419 ret = ipw_tx_skb(priv, txb, pri);
10420 if (ret == NETDEV_TX_OK)
10421 __ipw_led_activity_on(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060010422 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -060010423
James Ketrenos227d2dc2005-07-28 16:25:55 -050010424 return ret;
James Ketrenos43f66a62005-03-25 12:31:53 -060010425}
10426
James Ketrenos43f66a62005-03-25 12:31:53 -060010427static void ipw_net_set_multicast_list(struct net_device *dev)
10428{
10429
10430}
10431
10432static int ipw_net_set_mac_address(struct net_device *dev, void *p)
10433{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010434 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060010435 struct sockaddr *addr = p;
Joe Perches0795af52007-10-03 17:59:30 -070010436
James Ketrenos43f66a62005-03-25 12:31:53 -060010437 if (!is_valid_ether_addr(addr->sa_data))
10438 return -EADDRNOTAVAIL;
Zhu Yi46441512006-01-24 16:37:59 +080010439 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060010440 priv->config |= CFG_CUSTOM_MAC;
10441 memcpy(priv->mac_addr, addr->sa_data, ETH_ALEN);
Johannes Berge1749612008-10-27 15:59:26 -070010442 printk(KERN_INFO "%s: Setting MAC to %pM\n",
10443 priv->net_dev->name, priv->mac_addr);
Tejun Heobcb6d912011-01-26 12:12:50 +010010444 schedule_work(&priv->adapter_restart);
Zhu Yi46441512006-01-24 16:37:59 +080010445 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060010446 return 0;
10447}
10448
Jeff Garzikbf794512005-07-31 13:07:26 -040010449static void ipw_ethtool_get_drvinfo(struct net_device *dev,
James Ketrenos43f66a62005-03-25 12:31:53 -060010450 struct ethtool_drvinfo *info)
10451{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010452 struct ipw_priv *p = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060010453 char vers[64];
10454 char date[32];
10455 u32 len;
10456
Rick Jones1f80c232011-11-15 10:40:49 -080010457 strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
10458 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
James Ketrenos43f66a62005-03-25 12:31:53 -060010459
10460 len = sizeof(vers);
10461 ipw_get_ordinal(p, IPW_ORD_STAT_FW_VERSION, vers, &len);
10462 len = sizeof(date);
10463 ipw_get_ordinal(p, IPW_ORD_STAT_FW_DATE, date, &len);
10464
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010465 snprintf(info->fw_version, sizeof(info->fw_version), "%s (%s)",
James Ketrenos43f66a62005-03-25 12:31:53 -060010466 vers, date);
Rick Jones1f80c232011-11-15 10:40:49 -080010467 strlcpy(info->bus_info, pci_name(p->pci_dev),
10468 sizeof(info->bus_info));
James Ketrenos43f66a62005-03-25 12:31:53 -060010469}
10470
10471static u32 ipw_ethtool_get_link(struct net_device *dev)
10472{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010473 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060010474 return (priv->status & STATUS_ASSOCIATED) != 0;
10475}
10476
10477static int ipw_ethtool_get_eeprom_len(struct net_device *dev)
10478{
James Ketrenosb095c382005-08-24 22:04:42 -050010479 return IPW_EEPROM_IMAGE_SIZE;
James Ketrenos43f66a62005-03-25 12:31:53 -060010480}
10481
10482static int ipw_ethtool_get_eeprom(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010483 struct ethtool_eeprom *eeprom, u8 * bytes)
James Ketrenos43f66a62005-03-25 12:31:53 -060010484{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010485 struct ipw_priv *p = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060010486
James Ketrenosb095c382005-08-24 22:04:42 -050010487 if (eeprom->offset + eeprom->len > IPW_EEPROM_IMAGE_SIZE)
James Ketrenos43f66a62005-03-25 12:31:53 -060010488 return -EINVAL;
Zhu Yi46441512006-01-24 16:37:59 +080010489 mutex_lock(&p->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010490 memcpy(bytes, &p->eeprom[eeprom->offset], eeprom->len);
Zhu Yi46441512006-01-24 16:37:59 +080010491 mutex_unlock(&p->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060010492 return 0;
10493}
10494
10495static int ipw_ethtool_set_eeprom(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010496 struct ethtool_eeprom *eeprom, u8 * bytes)
James Ketrenos43f66a62005-03-25 12:31:53 -060010497{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010498 struct ipw_priv *p = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060010499 int i;
10500
James Ketrenosb095c382005-08-24 22:04:42 -050010501 if (eeprom->offset + eeprom->len > IPW_EEPROM_IMAGE_SIZE)
James Ketrenos43f66a62005-03-25 12:31:53 -060010502 return -EINVAL;
Zhu Yi46441512006-01-24 16:37:59 +080010503 mutex_lock(&p->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010504 memcpy(&p->eeprom[eeprom->offset], bytes, eeprom->len);
Adrian Bunk71e585f2006-03-11 04:42:58 +010010505 for (i = 0; i < IPW_EEPROM_IMAGE_SIZE; i++)
10506 ipw_write8(p, i + IPW_EEPROM_DATA, p->eeprom[i]);
Zhu Yi46441512006-01-24 16:37:59 +080010507 mutex_unlock(&p->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060010508 return 0;
10509}
10510
Jeff Garzik7282d492006-09-13 14:30:00 -040010511static const struct ethtool_ops ipw_ethtool_ops = {
James Ketrenosea2b26e2005-08-24 21:25:16 -050010512 .get_link = ipw_ethtool_get_link,
10513 .get_drvinfo = ipw_ethtool_get_drvinfo,
10514 .get_eeprom_len = ipw_ethtool_get_eeprom_len,
10515 .get_eeprom = ipw_ethtool_get_eeprom,
10516 .set_eeprom = ipw_ethtool_set_eeprom,
James Ketrenos43f66a62005-03-25 12:31:53 -060010517};
10518
David Howells7d12e782006-10-05 14:55:46 +010010519static irqreturn_t ipw_isr(int irq, void *data)
James Ketrenos43f66a62005-03-25 12:31:53 -060010520{
10521 struct ipw_priv *priv = data;
10522 u32 inta, inta_mask;
Jeff Garzikbf794512005-07-31 13:07:26 -040010523
James Ketrenos43f66a62005-03-25 12:31:53 -060010524 if (!priv)
10525 return IRQ_NONE;
10526
Zhu Yi89c318e2006-06-08 22:19:49 -070010527 spin_lock(&priv->irq_lock);
James Ketrenos43f66a62005-03-25 12:31:53 -060010528
10529 if (!(priv->status & STATUS_INT_ENABLED)) {
Zhu Yid00d0122007-07-12 16:09:40 +080010530 /* IRQ is disabled */
James Ketrenos43f66a62005-03-25 12:31:53 -060010531 goto none;
10532 }
10533
James Ketrenosb095c382005-08-24 22:04:42 -050010534 inta = ipw_read32(priv, IPW_INTA_RW);
10535 inta_mask = ipw_read32(priv, IPW_INTA_MASK_R);
Jeff Garzikbf794512005-07-31 13:07:26 -040010536
James Ketrenos43f66a62005-03-25 12:31:53 -060010537 if (inta == 0xFFFFFFFF) {
10538 /* Hardware disappeared */
10539 IPW_WARNING("IRQ INTA == 0xFFFFFFFF\n");
10540 goto none;
10541 }
10542
James Ketrenosb095c382005-08-24 22:04:42 -050010543 if (!(inta & (IPW_INTA_MASK_ALL & inta_mask))) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010544 /* Shared interrupt */
10545 goto none;
10546 }
10547
10548 /* tell the device to stop sending interrupts */
Zhu Yi89c318e2006-06-08 22:19:49 -070010549 __ipw_disable_interrupts(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -040010550
James Ketrenos43f66a62005-03-25 12:31:53 -060010551 /* ack current interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -050010552 inta &= (IPW_INTA_MASK_ALL & inta_mask);
10553 ipw_write32(priv, IPW_INTA_RW, inta);
Jeff Garzikbf794512005-07-31 13:07:26 -040010554
James Ketrenos43f66a62005-03-25 12:31:53 -060010555 /* Cache INTA value for our tasklet */
10556 priv->isr_inta = inta;
10557
10558 tasklet_schedule(&priv->irq_tasklet);
10559
Zhu Yi89c318e2006-06-08 22:19:49 -070010560 spin_unlock(&priv->irq_lock);
James Ketrenos43f66a62005-03-25 12:31:53 -060010561
10562 return IRQ_HANDLED;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010563 none:
Zhu Yi89c318e2006-06-08 22:19:49 -070010564 spin_unlock(&priv->irq_lock);
James Ketrenos43f66a62005-03-25 12:31:53 -060010565 return IRQ_NONE;
10566}
10567
10568static void ipw_rf_kill(void *adapter)
10569{
10570 struct ipw_priv *priv = adapter;
10571 unsigned long flags;
Jeff Garzikbf794512005-07-31 13:07:26 -040010572
James Ketrenos43f66a62005-03-25 12:31:53 -060010573 spin_lock_irqsave(&priv->lock, flags);
10574
10575 if (rf_kill_active(priv)) {
10576 IPW_DEBUG_RF_KILL("RF Kill active, rescheduling GPIO check\n");
Tejun Heobcb6d912011-01-26 12:12:50 +010010577 schedule_delayed_work(&priv->rf_kill, 2 * HZ);
James Ketrenos43f66a62005-03-25 12:31:53 -060010578 goto exit_unlock;
10579 }
10580
10581 /* RF Kill is now disabled, so bring the device back up */
10582
10583 if (!(priv->status & STATUS_RF_KILL_MASK)) {
10584 IPW_DEBUG_RF_KILL("HW RF Kill no longer active, restarting "
10585 "device\n");
10586
10587 /* we can not do an adapter restart while inside an irq lock */
Tejun Heobcb6d912011-01-26 12:12:50 +010010588 schedule_work(&priv->adapter_restart);
Jeff Garzikbf794512005-07-31 13:07:26 -040010589 } else
James Ketrenos43f66a62005-03-25 12:31:53 -060010590 IPW_DEBUG_RF_KILL("HW RF Kill deactivated. SW RF Kill still "
10591 "enabled\n");
10592
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010593 exit_unlock:
James Ketrenos43f66a62005-03-25 12:31:53 -060010594 spin_unlock_irqrestore(&priv->lock, flags);
10595}
10596
David Howellsc4028952006-11-22 14:57:56 +000010597static void ipw_bg_rf_kill(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -050010598{
David Howellsc4028952006-11-22 14:57:56 +000010599 struct ipw_priv *priv =
10600 container_of(work, struct ipw_priv, rf_kill.work);
Zhu Yi46441512006-01-24 16:37:59 +080010601 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +000010602 ipw_rf_kill(priv);
Zhu Yi46441512006-01-24 16:37:59 +080010603 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010604}
10605
Adrian Bunka73e22b2006-01-21 01:39:42 +010010606static void ipw_link_up(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -050010607{
James Ketrenosafbf30a2005-08-25 00:05:33 -050010608 priv->last_seq_num = -1;
10609 priv->last_frag_num = -1;
10610 priv->last_packet_time = 0;
10611
James Ketrenosa613bff2005-08-24 21:43:11 -050010612 netif_carrier_on(priv->net_dev);
James Ketrenosa613bff2005-08-24 21:43:11 -050010613
James Ketrenosc848d0a2005-08-24 21:56:24 -050010614 cancel_delayed_work(&priv->request_scan);
Dan Williamsea177302008-06-02 17:51:23 -040010615 cancel_delayed_work(&priv->request_direct_scan);
10616 cancel_delayed_work(&priv->request_passive_scan);
Dan Williams0b531672007-10-09 13:55:24 -040010617 cancel_delayed_work(&priv->scan_event);
James Ketrenosa613bff2005-08-24 21:43:11 -050010618 ipw_reset_stats(priv);
10619 /* Ensure the rate is updated immediately */
10620 priv->last_rate = ipw_get_current_rate(priv);
10621 ipw_gather_stats(priv);
10622 ipw_led_link_up(priv);
10623 notify_wx_assoc_event(priv);
10624
10625 if (priv->config & CFG_BACKGROUND_SCAN)
Tejun Heobcb6d912011-01-26 12:12:50 +010010626 schedule_delayed_work(&priv->request_scan, HZ);
James Ketrenosa613bff2005-08-24 21:43:11 -050010627}
10628
David Howellsc4028952006-11-22 14:57:56 +000010629static void ipw_bg_link_up(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -050010630{
David Howellsc4028952006-11-22 14:57:56 +000010631 struct ipw_priv *priv =
10632 container_of(work, struct ipw_priv, link_up);
Zhu Yi46441512006-01-24 16:37:59 +080010633 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +000010634 ipw_link_up(priv);
Zhu Yi46441512006-01-24 16:37:59 +080010635 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010636}
10637
Adrian Bunka73e22b2006-01-21 01:39:42 +010010638static void ipw_link_down(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -050010639{
10640 ipw_led_link_down(priv);
10641 netif_carrier_off(priv->net_dev);
James Ketrenosa613bff2005-08-24 21:43:11 -050010642 notify_wx_assoc_event(priv);
10643
10644 /* Cancel any queued work ... */
10645 cancel_delayed_work(&priv->request_scan);
Dan Williamsea177302008-06-02 17:51:23 -040010646 cancel_delayed_work(&priv->request_direct_scan);
10647 cancel_delayed_work(&priv->request_passive_scan);
James Ketrenosa613bff2005-08-24 21:43:11 -050010648 cancel_delayed_work(&priv->adhoc_check);
10649 cancel_delayed_work(&priv->gather_stats);
10650
10651 ipw_reset_stats(priv);
10652
James Ketrenosafbf30a2005-08-25 00:05:33 -050010653 if (!(priv->status & STATUS_EXIT_PENDING)) {
10654 /* Queue up another scan... */
Tejun Heobcb6d912011-01-26 12:12:50 +010010655 schedule_delayed_work(&priv->request_scan, 0);
Dan Williams0b531672007-10-09 13:55:24 -040010656 } else
10657 cancel_delayed_work(&priv->scan_event);
James Ketrenosa613bff2005-08-24 21:43:11 -050010658}
10659
David Howellsc4028952006-11-22 14:57:56 +000010660static void ipw_bg_link_down(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -050010661{
David Howellsc4028952006-11-22 14:57:56 +000010662 struct ipw_priv *priv =
10663 container_of(work, struct ipw_priv, link_down);
Zhu Yi46441512006-01-24 16:37:59 +080010664 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +000010665 ipw_link_down(priv);
Zhu Yi46441512006-01-24 16:37:59 +080010666 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010667}
10668
Bill Pembertoneb9248e2012-12-03 09:56:32 -050010669static int ipw_setup_deferred_work(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -060010670{
10671 int ret = 0;
10672
James Ketrenos43f66a62005-03-25 12:31:53 -060010673 init_waitqueue_head(&priv->wait_command_queue);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010674 init_waitqueue_head(&priv->wait_state);
James Ketrenos43f66a62005-03-25 12:31:53 -060010675
David Howellsc4028952006-11-22 14:57:56 +000010676 INIT_DELAYED_WORK(&priv->adhoc_check, ipw_bg_adhoc_check);
10677 INIT_WORK(&priv->associate, ipw_bg_associate);
10678 INIT_WORK(&priv->disassociate, ipw_bg_disassociate);
10679 INIT_WORK(&priv->system_config, ipw_system_config);
10680 INIT_WORK(&priv->rx_replenish, ipw_bg_rx_queue_replenish);
10681 INIT_WORK(&priv->adapter_restart, ipw_bg_adapter_restart);
10682 INIT_DELAYED_WORK(&priv->rf_kill, ipw_bg_rf_kill);
10683 INIT_WORK(&priv->up, ipw_bg_up);
10684 INIT_WORK(&priv->down, ipw_bg_down);
10685 INIT_DELAYED_WORK(&priv->request_scan, ipw_request_scan);
Dan Williamsea177302008-06-02 17:51:23 -040010686 INIT_DELAYED_WORK(&priv->request_direct_scan, ipw_request_direct_scan);
10687 INIT_DELAYED_WORK(&priv->request_passive_scan, ipw_request_passive_scan);
Dan Williams0b531672007-10-09 13:55:24 -040010688 INIT_DELAYED_WORK(&priv->scan_event, ipw_scan_event);
David Howellsc4028952006-11-22 14:57:56 +000010689 INIT_DELAYED_WORK(&priv->gather_stats, ipw_bg_gather_stats);
10690 INIT_WORK(&priv->abort_scan, ipw_bg_abort_scan);
10691 INIT_WORK(&priv->roam, ipw_bg_roam);
10692 INIT_DELAYED_WORK(&priv->scan_check, ipw_bg_scan_check);
10693 INIT_WORK(&priv->link_up, ipw_bg_link_up);
10694 INIT_WORK(&priv->link_down, ipw_bg_link_down);
10695 INIT_DELAYED_WORK(&priv->led_link_on, ipw_bg_led_link_on);
10696 INIT_DELAYED_WORK(&priv->led_link_off, ipw_bg_led_link_off);
10697 INIT_DELAYED_WORK(&priv->led_act_off, ipw_bg_led_activity_off);
10698 INIT_WORK(&priv->merge_networks, ipw_merge_adhoc_network);
James Ketrenos43f66a62005-03-25 12:31:53 -060010699
Zhu Yie43e3c12006-04-13 17:20:45 +080010700#ifdef CONFIG_IPW2200_QOS
David Howellsc4028952006-11-22 14:57:56 +000010701 INIT_WORK(&priv->qos_activate, ipw_bg_qos_activate);
Zhu Yie43e3c12006-04-13 17:20:45 +080010702#endif /* CONFIG_IPW2200_QOS */
James Ketrenos43f66a62005-03-25 12:31:53 -060010703
10704 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
10705 ipw_irq_tasklet, (unsigned long)priv);
10706
10707 return ret;
10708}
10709
James Ketrenos43f66a62005-03-25 12:31:53 -060010710static void shim__set_security(struct net_device *dev,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010711 struct libipw_security *sec)
James Ketrenos43f66a62005-03-25 12:31:53 -060010712{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010713 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060010714 int i;
Jeff Garzikbf794512005-07-31 13:07:26 -040010715 for (i = 0; i < 4; i++) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010716 if (sec->flags & (1 << i)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -050010717 priv->ieee->sec.encode_alg[i] = sec->encode_alg[i];
James Ketrenosb095c382005-08-24 22:04:42 -050010718 priv->ieee->sec.key_sizes[i] = sec->key_sizes[i];
James Ketrenos43f66a62005-03-25 12:31:53 -060010719 if (sec->key_sizes[i] == 0)
James Ketrenosb095c382005-08-24 22:04:42 -050010720 priv->ieee->sec.flags &= ~(1 << i);
10721 else {
10722 memcpy(priv->ieee->sec.keys[i], sec->keys[i],
James Ketrenos43f66a62005-03-25 12:31:53 -060010723 sec->key_sizes[i]);
James Ketrenosb095c382005-08-24 22:04:42 -050010724 priv->ieee->sec.flags |= (1 << i);
10725 }
James Ketrenos43f66a62005-03-25 12:31:53 -060010726 priv->status |= STATUS_SECURITY_UPDATED;
James Ketrenosb095c382005-08-24 22:04:42 -050010727 } else if (sec->level != SEC_LEVEL_1)
10728 priv->ieee->sec.flags &= ~(1 << i);
James Ketrenos43f66a62005-03-25 12:31:53 -060010729 }
10730
James Ketrenosb095c382005-08-24 22:04:42 -050010731 if (sec->flags & SEC_ACTIVE_KEY) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010732 if (sec->active_key <= 3) {
James Ketrenosb095c382005-08-24 22:04:42 -050010733 priv->ieee->sec.active_key = sec->active_key;
10734 priv->ieee->sec.flags |= SEC_ACTIVE_KEY;
Jeff Garzikbf794512005-07-31 13:07:26 -040010735 } else
James Ketrenosb095c382005-08-24 22:04:42 -050010736 priv->ieee->sec.flags &= ~SEC_ACTIVE_KEY;
James Ketrenos43f66a62005-03-25 12:31:53 -060010737 priv->status |= STATUS_SECURITY_UPDATED;
James Ketrenosb095c382005-08-24 22:04:42 -050010738 } else
10739 priv->ieee->sec.flags &= ~SEC_ACTIVE_KEY;
James Ketrenos43f66a62005-03-25 12:31:53 -060010740
10741 if ((sec->flags & SEC_AUTH_MODE) &&
James Ketrenosb095c382005-08-24 22:04:42 -050010742 (priv->ieee->sec.auth_mode != sec->auth_mode)) {
10743 priv->ieee->sec.auth_mode = sec->auth_mode;
10744 priv->ieee->sec.flags |= SEC_AUTH_MODE;
James Ketrenos43f66a62005-03-25 12:31:53 -060010745 if (sec->auth_mode == WLAN_AUTH_SHARED_KEY)
10746 priv->capability |= CAP_SHARED_KEY;
10747 else
10748 priv->capability &= ~CAP_SHARED_KEY;
10749 priv->status |= STATUS_SECURITY_UPDATED;
10750 }
Jeff Garzikbf794512005-07-31 13:07:26 -040010751
James Ketrenosb095c382005-08-24 22:04:42 -050010752 if (sec->flags & SEC_ENABLED && priv->ieee->sec.enabled != sec->enabled) {
10753 priv->ieee->sec.flags |= SEC_ENABLED;
10754 priv->ieee->sec.enabled = sec->enabled;
James Ketrenos43f66a62005-03-25 12:31:53 -060010755 priv->status |= STATUS_SECURITY_UPDATED;
Jeff Garzikbf794512005-07-31 13:07:26 -040010756 if (sec->enabled)
James Ketrenos43f66a62005-03-25 12:31:53 -060010757 priv->capability |= CAP_PRIVACY_ON;
10758 else
10759 priv->capability &= ~CAP_PRIVACY_ON;
10760 }
Jeff Garzikbf794512005-07-31 13:07:26 -040010761
James Ketrenosafbf30a2005-08-25 00:05:33 -050010762 if (sec->flags & SEC_ENCRYPT)
10763 priv->ieee->sec.encrypt = sec->encrypt;
James Ketrenos43f66a62005-03-25 12:31:53 -060010764
James Ketrenosb095c382005-08-24 22:04:42 -050010765 if (sec->flags & SEC_LEVEL && priv->ieee->sec.level != sec->level) {
10766 priv->ieee->sec.level = sec->level;
10767 priv->ieee->sec.flags |= SEC_LEVEL;
James Ketrenos43f66a62005-03-25 12:31:53 -060010768 priv->status |= STATUS_SECURITY_UPDATED;
10769 }
10770
Zhu Yi1fbfea52005-08-05 17:22:56 +080010771 if (!priv->ieee->host_encrypt && (sec->flags & SEC_ENCRYPT))
10772 ipw_set_hwcrypto_keys(priv);
10773
Jeff Garzikbf794512005-07-31 13:07:26 -040010774 /* To match current functionality of ipw2100 (which works well w/
10775 * various supplicants, we don't force a disassociate if the
James Ketrenos43f66a62005-03-25 12:31:53 -060010776 * privacy capability changes ... */
10777#if 0
10778 if ((priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) &&
Jeff Garzikbf794512005-07-31 13:07:26 -040010779 (((priv->assoc_request.capability &
Al Viro5b5e8072007-12-27 01:54:06 -050010780 cpu_to_le16(WLAN_CAPABILITY_PRIVACY)) && !sec->enabled) ||
Jeff Garzikbf794512005-07-31 13:07:26 -040010781 (!(priv->assoc_request.capability &
Al Viro5b5e8072007-12-27 01:54:06 -050010782 cpu_to_le16(WLAN_CAPABILITY_PRIVACY)) && sec->enabled))) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010783 IPW_DEBUG_ASSOC("Disassociating due to capability "
10784 "change.\n");
10785 ipw_disassociate(priv);
10786 }
10787#endif
10788}
10789
Jeff Garzikbf794512005-07-31 13:07:26 -040010790static int init_supported_rates(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -060010791 struct ipw_supported_rates *rates)
10792{
10793 /* TODO: Mask out rates based on priv->rates_mask */
10794
10795 memset(rates, 0, sizeof(*rates));
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010796 /* configure supported rates */
James Ketrenos43f66a62005-03-25 12:31:53 -060010797 switch (priv->ieee->freq_band) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010798 case LIBIPW_52GHZ_BAND:
James Ketrenos43f66a62005-03-25 12:31:53 -060010799 rates->ieee_mode = IPW_A_MODE;
10800 rates->purpose = IPW_RATE_CAPABILITIES;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010801 ipw_add_ofdm_scan_rates(rates, LIBIPW_CCK_MODULATION,
10802 LIBIPW_OFDM_DEFAULT_RATES_MASK);
James Ketrenos43f66a62005-03-25 12:31:53 -060010803 break;
10804
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010805 default: /* Mixed or 2.4Ghz */
James Ketrenos43f66a62005-03-25 12:31:53 -060010806 rates->ieee_mode = IPW_G_MODE;
10807 rates->purpose = IPW_RATE_CAPABILITIES;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010808 ipw_add_cck_scan_rates(rates, LIBIPW_CCK_MODULATION,
10809 LIBIPW_CCK_DEFAULT_RATES_MASK);
10810 if (priv->ieee->modulation & LIBIPW_OFDM_MODULATION) {
10811 ipw_add_ofdm_scan_rates(rates, LIBIPW_CCK_MODULATION,
10812 LIBIPW_OFDM_DEFAULT_RATES_MASK);
James Ketrenos43f66a62005-03-25 12:31:53 -060010813 }
10814 break;
10815 }
10816
10817 return 0;
10818}
10819
Jeff Garzikbf794512005-07-31 13:07:26 -040010820static int ipw_config(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -060010821{
James Ketrenos43f66a62005-03-25 12:31:53 -060010822 /* This is only called from ipw_up, which resets/reloads the firmware
10823 so, we don't need to first disable the card before we configure
10824 it */
Zhu Yi6de9f7f2005-08-11 14:39:33 +080010825 if (ipw_set_tx_power(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -060010826 goto error;
10827
10828 /* initialize adapter address */
10829 if (ipw_send_adapter_address(priv, priv->net_dev->dev_addr))
10830 goto error;
10831
10832 /* set basic system config settings */
10833 init_sys_config(&priv->sys_config);
Zhu Yi810dabd2006-01-24 16:36:59 +080010834
10835 /* Support Bluetooth if we have BT h/w on board, and user wants to.
10836 * Does not support BT priority yet (don't abort or defer our Tx) */
10837 if (bt_coexist) {
Zhu Yi2638bc32006-01-24 16:37:52 +080010838 unsigned char bt_caps = priv->eeprom[EEPROM_SKU_CAPABILITY];
Zhu Yi810dabd2006-01-24 16:36:59 +080010839
10840 if (bt_caps & EEPROM_SKU_CAP_BT_CHANNEL_SIG)
10841 priv->sys_config.bt_coexistence
Zhu Yi2638bc32006-01-24 16:37:52 +080010842 |= CFG_BT_COEXISTENCE_SIGNAL_CHNL;
Zhu Yi810dabd2006-01-24 16:36:59 +080010843 if (bt_caps & EEPROM_SKU_CAP_BT_OOB)
10844 priv->sys_config.bt_coexistence
Zhu Yi2638bc32006-01-24 16:37:52 +080010845 |= CFG_BT_COEXISTENCE_OOB;
Zhu Yi810dabd2006-01-24 16:36:59 +080010846 }
10847
Zhu Yid685b8c2006-04-13 17:20:27 +080010848#ifdef CONFIG_IPW2200_PROMISCUOUS
10849 if (priv->prom_net_dev && netif_running(priv->prom_net_dev)) {
10850 priv->sys_config.accept_all_data_frames = 1;
10851 priv->sys_config.accept_non_directed_frames = 1;
10852 priv->sys_config.accept_all_mgmt_bcpr = 1;
10853 priv->sys_config.accept_all_mgmt_frames = 1;
10854 }
10855#endif
10856
James Ketrenosc848d0a2005-08-24 21:56:24 -050010857 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
10858 priv->sys_config.answer_broadcast_ssid_probe = 1;
10859 else
10860 priv->sys_config.answer_broadcast_ssid_probe = 0;
10861
Zhu Yid685b8c2006-04-13 17:20:27 +080010862 if (ipw_send_system_config(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -060010863 goto error;
10864
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010865 init_supported_rates(priv, &priv->rates);
10866 if (ipw_send_supported_rates(priv, &priv->rates))
James Ketrenos43f66a62005-03-25 12:31:53 -060010867 goto error;
10868
10869 /* Set request-to-send threshold */
10870 if (priv->rts_threshold) {
10871 if (ipw_send_rts_threshold(priv, priv->rts_threshold))
10872 goto error;
10873 }
Zhu Yie43e3c12006-04-13 17:20:45 +080010874#ifdef CONFIG_IPW2200_QOS
James Ketrenosb095c382005-08-24 22:04:42 -050010875 IPW_DEBUG_QOS("QoS: call ipw_qos_activate\n");
10876 ipw_qos_activate(priv, NULL);
Zhu Yie43e3c12006-04-13 17:20:45 +080010877#endif /* CONFIG_IPW2200_QOS */
James Ketrenos43f66a62005-03-25 12:31:53 -060010878
10879 if (ipw_set_random_seed(priv))
10880 goto error;
Jeff Garzikbf794512005-07-31 13:07:26 -040010881
James Ketrenos43f66a62005-03-25 12:31:53 -060010882 /* final state transition to the RUN state */
10883 if (ipw_send_host_complete(priv))
10884 goto error;
10885
James Ketrenose6666192005-08-12 09:17:04 -050010886 priv->status |= STATUS_INIT;
10887
10888 ipw_led_init(priv);
10889 ipw_led_radio_on(priv);
10890 priv->notif_missed_beacons = 0;
10891
10892 /* Set hardware WEP key if it is configured. */
10893 if ((priv->capability & CAP_PRIVACY_ON) &&
10894 (priv->ieee->sec.level == SEC_LEVEL_1) &&
10895 !(priv->ieee->host_encrypt || priv->ieee->host_decrypt))
10896 ipw_set_hwcrypto_keys(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060010897
10898 return 0;
Jeff Garzikbf794512005-07-31 13:07:26 -040010899
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010900 error:
James Ketrenos43f66a62005-03-25 12:31:53 -060010901 return -EIO;
10902}
10903
James Ketrenos4f36f802005-08-03 20:36:56 -050010904/*
10905 * NOTE:
10906 *
10907 * These tables have been tested in conjunction with the
10908 * Intel PRO/Wireless 2200BG and 2915ABG Network Connection Adapters.
10909 *
10910 * Altering this values, using it on other hardware, or in geographies
10911 * not intended for resale of the above mentioned Intel adapters has
10912 * not been tested.
10913 *
Henrik Brix Andersen48a84772006-02-14 09:09:52 +080010914 * Remember to update the table in README.ipw2200 when changing this
10915 * table.
10916 *
James Ketrenos4f36f802005-08-03 20:36:56 -050010917 */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010918static const struct libipw_geo ipw_geos[] = {
James Ketrenos4f36f802005-08-03 20:36:56 -050010919 { /* Restricted */
10920 "---",
10921 .bg_channels = 11,
10922 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10923 {2427, 4}, {2432, 5}, {2437, 6},
10924 {2442, 7}, {2447, 8}, {2452, 9},
10925 {2457, 10}, {2462, 11}},
10926 },
10927
10928 { /* Custom US/Canada */
10929 "ZZF",
10930 .bg_channels = 11,
10931 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10932 {2427, 4}, {2432, 5}, {2437, 6},
10933 {2442, 7}, {2447, 8}, {2452, 9},
10934 {2457, 10}, {2462, 11}},
10935 .a_channels = 8,
10936 .a = {{5180, 36},
10937 {5200, 40},
10938 {5220, 44},
10939 {5240, 48},
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010940 {5260, 52, LIBIPW_CH_PASSIVE_ONLY},
10941 {5280, 56, LIBIPW_CH_PASSIVE_ONLY},
10942 {5300, 60, LIBIPW_CH_PASSIVE_ONLY},
10943 {5320, 64, LIBIPW_CH_PASSIVE_ONLY}},
James Ketrenos4f36f802005-08-03 20:36:56 -050010944 },
10945
10946 { /* Rest of World */
10947 "ZZD",
10948 .bg_channels = 13,
10949 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10950 {2427, 4}, {2432, 5}, {2437, 6},
10951 {2442, 7}, {2447, 8}, {2452, 9},
10952 {2457, 10}, {2462, 11}, {2467, 12},
10953 {2472, 13}},
10954 },
10955
10956 { /* Custom USA & Europe & High */
10957 "ZZA",
10958 .bg_channels = 11,
10959 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10960 {2427, 4}, {2432, 5}, {2437, 6},
10961 {2442, 7}, {2447, 8}, {2452, 9},
10962 {2457, 10}, {2462, 11}},
10963 .a_channels = 13,
10964 .a = {{5180, 36},
10965 {5200, 40},
10966 {5220, 44},
10967 {5240, 48},
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010968 {5260, 52, LIBIPW_CH_PASSIVE_ONLY},
10969 {5280, 56, LIBIPW_CH_PASSIVE_ONLY},
10970 {5300, 60, LIBIPW_CH_PASSIVE_ONLY},
10971 {5320, 64, LIBIPW_CH_PASSIVE_ONLY},
James Ketrenos4f36f802005-08-03 20:36:56 -050010972 {5745, 149},
10973 {5765, 153},
10974 {5785, 157},
10975 {5805, 161},
10976 {5825, 165}},
10977 },
10978
10979 { /* Custom NA & Europe */
10980 "ZZB",
10981 .bg_channels = 11,
10982 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10983 {2427, 4}, {2432, 5}, {2437, 6},
10984 {2442, 7}, {2447, 8}, {2452, 9},
10985 {2457, 10}, {2462, 11}},
10986 .a_channels = 13,
10987 .a = {{5180, 36},
10988 {5200, 40},
10989 {5220, 44},
10990 {5240, 48},
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010991 {5260, 52, LIBIPW_CH_PASSIVE_ONLY},
10992 {5280, 56, LIBIPW_CH_PASSIVE_ONLY},
10993 {5300, 60, LIBIPW_CH_PASSIVE_ONLY},
10994 {5320, 64, LIBIPW_CH_PASSIVE_ONLY},
10995 {5745, 149, LIBIPW_CH_PASSIVE_ONLY},
10996 {5765, 153, LIBIPW_CH_PASSIVE_ONLY},
10997 {5785, 157, LIBIPW_CH_PASSIVE_ONLY},
10998 {5805, 161, LIBIPW_CH_PASSIVE_ONLY},
10999 {5825, 165, LIBIPW_CH_PASSIVE_ONLY}},
James Ketrenos4f36f802005-08-03 20:36:56 -050011000 },
11001
11002 { /* Custom Japan */
11003 "ZZC",
11004 .bg_channels = 11,
11005 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11006 {2427, 4}, {2432, 5}, {2437, 6},
11007 {2442, 7}, {2447, 8}, {2452, 9},
11008 {2457, 10}, {2462, 11}},
11009 .a_channels = 4,
11010 .a = {{5170, 34}, {5190, 38},
11011 {5210, 42}, {5230, 46}},
11012 },
11013
11014 { /* Custom */
11015 "ZZM",
11016 .bg_channels = 11,
11017 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11018 {2427, 4}, {2432, 5}, {2437, 6},
11019 {2442, 7}, {2447, 8}, {2452, 9},
11020 {2457, 10}, {2462, 11}},
11021 },
11022
11023 { /* Europe */
11024 "ZZE",
11025 .bg_channels = 13,
11026 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11027 {2427, 4}, {2432, 5}, {2437, 6},
11028 {2442, 7}, {2447, 8}, {2452, 9},
11029 {2457, 10}, {2462, 11}, {2467, 12},
11030 {2472, 13}},
11031 .a_channels = 19,
11032 .a = {{5180, 36},
11033 {5200, 40},
11034 {5220, 44},
11035 {5240, 48},
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011036 {5260, 52, LIBIPW_CH_PASSIVE_ONLY},
11037 {5280, 56, LIBIPW_CH_PASSIVE_ONLY},
11038 {5300, 60, LIBIPW_CH_PASSIVE_ONLY},
11039 {5320, 64, LIBIPW_CH_PASSIVE_ONLY},
11040 {5500, 100, LIBIPW_CH_PASSIVE_ONLY},
11041 {5520, 104, LIBIPW_CH_PASSIVE_ONLY},
11042 {5540, 108, LIBIPW_CH_PASSIVE_ONLY},
11043 {5560, 112, LIBIPW_CH_PASSIVE_ONLY},
11044 {5580, 116, LIBIPW_CH_PASSIVE_ONLY},
11045 {5600, 120, LIBIPW_CH_PASSIVE_ONLY},
11046 {5620, 124, LIBIPW_CH_PASSIVE_ONLY},
11047 {5640, 128, LIBIPW_CH_PASSIVE_ONLY},
11048 {5660, 132, LIBIPW_CH_PASSIVE_ONLY},
11049 {5680, 136, LIBIPW_CH_PASSIVE_ONLY},
11050 {5700, 140, LIBIPW_CH_PASSIVE_ONLY}},
James Ketrenos4f36f802005-08-03 20:36:56 -050011051 },
11052
11053 { /* Custom Japan */
11054 "ZZJ",
11055 .bg_channels = 14,
11056 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11057 {2427, 4}, {2432, 5}, {2437, 6},
11058 {2442, 7}, {2447, 8}, {2452, 9},
11059 {2457, 10}, {2462, 11}, {2467, 12},
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011060 {2472, 13}, {2484, 14, LIBIPW_CH_B_ONLY}},
James Ketrenos4f36f802005-08-03 20:36:56 -050011061 .a_channels = 4,
11062 .a = {{5170, 34}, {5190, 38},
11063 {5210, 42}, {5230, 46}},
11064 },
11065
James Ketrenos03520572005-10-19 16:12:31 -050011066 { /* Rest of World */
11067 "ZZR",
11068 .bg_channels = 14,
11069 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11070 {2427, 4}, {2432, 5}, {2437, 6},
11071 {2442, 7}, {2447, 8}, {2452, 9},
11072 {2457, 10}, {2462, 11}, {2467, 12},
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011073 {2472, 13}, {2484, 14, LIBIPW_CH_B_ONLY |
11074 LIBIPW_CH_PASSIVE_ONLY}},
James Ketrenos03520572005-10-19 16:12:31 -050011075 },
11076
James Ketrenos4f36f802005-08-03 20:36:56 -050011077 { /* High Band */
11078 "ZZH",
11079 .bg_channels = 13,
11080 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11081 {2427, 4}, {2432, 5}, {2437, 6},
11082 {2442, 7}, {2447, 8}, {2452, 9},
11083 {2457, 10}, {2462, 11},
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011084 {2467, 12, LIBIPW_CH_PASSIVE_ONLY},
11085 {2472, 13, LIBIPW_CH_PASSIVE_ONLY}},
James Ketrenos4f36f802005-08-03 20:36:56 -050011086 .a_channels = 4,
11087 .a = {{5745, 149}, {5765, 153},
11088 {5785, 157}, {5805, 161}},
11089 },
11090
11091 { /* Custom Europe */
11092 "ZZG",
11093 .bg_channels = 13,
11094 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11095 {2427, 4}, {2432, 5}, {2437, 6},
11096 {2442, 7}, {2447, 8}, {2452, 9},
11097 {2457, 10}, {2462, 11},
11098 {2467, 12}, {2472, 13}},
11099 .a_channels = 4,
11100 .a = {{5180, 36}, {5200, 40},
11101 {5220, 44}, {5240, 48}},
11102 },
11103
11104 { /* Europe */
11105 "ZZK",
11106 .bg_channels = 13,
11107 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11108 {2427, 4}, {2432, 5}, {2437, 6},
11109 {2442, 7}, {2447, 8}, {2452, 9},
11110 {2457, 10}, {2462, 11},
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011111 {2467, 12, LIBIPW_CH_PASSIVE_ONLY},
11112 {2472, 13, LIBIPW_CH_PASSIVE_ONLY}},
James Ketrenos4f36f802005-08-03 20:36:56 -050011113 .a_channels = 24,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011114 .a = {{5180, 36, LIBIPW_CH_PASSIVE_ONLY},
11115 {5200, 40, LIBIPW_CH_PASSIVE_ONLY},
11116 {5220, 44, LIBIPW_CH_PASSIVE_ONLY},
11117 {5240, 48, LIBIPW_CH_PASSIVE_ONLY},
11118 {5260, 52, LIBIPW_CH_PASSIVE_ONLY},
11119 {5280, 56, LIBIPW_CH_PASSIVE_ONLY},
11120 {5300, 60, LIBIPW_CH_PASSIVE_ONLY},
11121 {5320, 64, LIBIPW_CH_PASSIVE_ONLY},
11122 {5500, 100, LIBIPW_CH_PASSIVE_ONLY},
11123 {5520, 104, LIBIPW_CH_PASSIVE_ONLY},
11124 {5540, 108, LIBIPW_CH_PASSIVE_ONLY},
11125 {5560, 112, LIBIPW_CH_PASSIVE_ONLY},
11126 {5580, 116, LIBIPW_CH_PASSIVE_ONLY},
11127 {5600, 120, LIBIPW_CH_PASSIVE_ONLY},
11128 {5620, 124, LIBIPW_CH_PASSIVE_ONLY},
11129 {5640, 128, LIBIPW_CH_PASSIVE_ONLY},
11130 {5660, 132, LIBIPW_CH_PASSIVE_ONLY},
11131 {5680, 136, LIBIPW_CH_PASSIVE_ONLY},
11132 {5700, 140, LIBIPW_CH_PASSIVE_ONLY},
11133 {5745, 149, LIBIPW_CH_PASSIVE_ONLY},
11134 {5765, 153, LIBIPW_CH_PASSIVE_ONLY},
11135 {5785, 157, LIBIPW_CH_PASSIVE_ONLY},
11136 {5805, 161, LIBIPW_CH_PASSIVE_ONLY},
11137 {5825, 165, LIBIPW_CH_PASSIVE_ONLY}},
James Ketrenos4f36f802005-08-03 20:36:56 -050011138 },
11139
11140 { /* Europe */
11141 "ZZL",
11142 .bg_channels = 11,
11143 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11144 {2427, 4}, {2432, 5}, {2437, 6},
11145 {2442, 7}, {2447, 8}, {2452, 9},
11146 {2457, 10}, {2462, 11}},
11147 .a_channels = 13,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011148 .a = {{5180, 36, LIBIPW_CH_PASSIVE_ONLY},
11149 {5200, 40, LIBIPW_CH_PASSIVE_ONLY},
11150 {5220, 44, LIBIPW_CH_PASSIVE_ONLY},
11151 {5240, 48, LIBIPW_CH_PASSIVE_ONLY},
11152 {5260, 52, LIBIPW_CH_PASSIVE_ONLY},
11153 {5280, 56, LIBIPW_CH_PASSIVE_ONLY},
11154 {5300, 60, LIBIPW_CH_PASSIVE_ONLY},
11155 {5320, 64, LIBIPW_CH_PASSIVE_ONLY},
11156 {5745, 149, LIBIPW_CH_PASSIVE_ONLY},
11157 {5765, 153, LIBIPW_CH_PASSIVE_ONLY},
11158 {5785, 157, LIBIPW_CH_PASSIVE_ONLY},
11159 {5805, 161, LIBIPW_CH_PASSIVE_ONLY},
11160 {5825, 165, LIBIPW_CH_PASSIVE_ONLY}},
James Ketrenos4f36f802005-08-03 20:36:56 -050011161 }
James Ketrenosafbf30a2005-08-25 00:05:33 -050011162};
11163
Stanislav Yakovlev06729382012-11-20 23:54:20 +000011164static void ipw_set_geo(struct ipw_priv *priv)
11165{
11166 int j;
11167
11168 for (j = 0; j < ARRAY_SIZE(ipw_geos); j++) {
11169 if (!memcmp(&priv->eeprom[EEPROM_COUNTRY_CODE],
11170 ipw_geos[j].name, 3))
11171 break;
11172 }
11173
11174 if (j == ARRAY_SIZE(ipw_geos)) {
11175 IPW_WARNING("SKU [%c%c%c] not recognized.\n",
11176 priv->eeprom[EEPROM_COUNTRY_CODE + 0],
11177 priv->eeprom[EEPROM_COUNTRY_CODE + 1],
11178 priv->eeprom[EEPROM_COUNTRY_CODE + 2]);
11179 j = 0;
11180 }
11181
11182 libipw_set_geo(priv->ieee, &ipw_geos[j]);
11183}
11184
James Ketrenos43f66a62005-03-25 12:31:53 -060011185#define MAX_HW_RESTARTS 5
11186static int ipw_up(struct ipw_priv *priv)
11187{
Stanislav Yakovlev06729382012-11-20 23:54:20 +000011188 int rc, i;
James Ketrenos43f66a62005-03-25 12:31:53 -060011189
Dan Williamsc3d72b92009-02-11 13:26:06 -050011190 /* Age scan list entries found before suspend */
11191 if (priv->suspend_time) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011192 libipw_networks_age(priv->ieee, priv->suspend_time);
Dan Williamsc3d72b92009-02-11 13:26:06 -050011193 priv->suspend_time = 0;
11194 }
11195
James Ketrenos43f66a62005-03-25 12:31:53 -060011196 if (priv->status & STATUS_EXIT_PENDING)
11197 return -EIO;
11198
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011199 if (cmdlog && !priv->cmdlog) {
Yan Burmane6e3f122006-12-02 13:38:14 +020011200 priv->cmdlog = kcalloc(cmdlog, sizeof(*priv->cmdlog),
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011201 GFP_KERNEL);
11202 if (priv->cmdlog == NULL) {
11203 IPW_ERROR("Error allocating %d command log entries.\n",
11204 cmdlog);
Zhu Yid0b526b2006-04-13 17:19:50 +080011205 return -ENOMEM;
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011206 } else {
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011207 priv->cmdlog_len = cmdlog;
11208 }
11209 }
11210
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011211 for (i = 0; i < MAX_HW_RESTARTS; i++) {
Jeff Garzikbf794512005-07-31 13:07:26 -040011212 /* Load the microcode, firmware, and eeprom.
James Ketrenos43f66a62005-03-25 12:31:53 -060011213 * Also start the clocks. */
11214 rc = ipw_load(priv);
11215 if (rc) {
Peter Jonesa4f6bbb2005-08-26 00:33:34 -050011216 IPW_ERROR("Unable to load firmware: %d\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -060011217 return rc;
11218 }
11219
11220 ipw_init_ordinals(priv);
11221 if (!(priv->config & CFG_CUSTOM_MAC))
11222 eeprom_parse_mac(priv, priv->mac_addr);
11223 memcpy(priv->net_dev->dev_addr, priv->mac_addr, ETH_ALEN);
11224
Stanislav Yakovlev06729382012-11-20 23:54:20 +000011225 ipw_set_geo(priv);
James Ketrenos4f36f802005-08-03 20:36:56 -050011226
James Ketrenosb095c382005-08-24 22:04:42 -050011227 if (priv->status & STATUS_RF_KILL_SW) {
11228 IPW_WARNING("Radio disabled by module parameter.\n");
11229 return 0;
11230 } else if (rf_kill_active(priv)) {
11231 IPW_WARNING("Radio Frequency Kill Switch is On:\n"
11232 "Kill switch must be turned off for "
11233 "wireless networking to work.\n");
Tejun Heobcb6d912011-01-26 12:12:50 +010011234 schedule_delayed_work(&priv->rf_kill, 2 * HZ);
James Ketrenos43f66a62005-03-25 12:31:53 -060011235 return 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -050011236 }
James Ketrenos43f66a62005-03-25 12:31:53 -060011237
11238 rc = ipw_config(priv);
11239 if (!rc) {
11240 IPW_DEBUG_INFO("Configured device on count %i\n", i);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011241
James Ketrenose6666192005-08-12 09:17:04 -050011242 /* If configure to try and auto-associate, kick
11243 * off a scan. */
Tejun Heobcb6d912011-01-26 12:12:50 +010011244 schedule_delayed_work(&priv->request_scan, 0);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011245
James Ketrenos43f66a62005-03-25 12:31:53 -060011246 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060011247 }
Jeff Garzikbf794512005-07-31 13:07:26 -040011248
James Ketrenosc848d0a2005-08-24 21:56:24 -050011249 IPW_DEBUG_INFO("Device configuration failed: 0x%08X\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -060011250 IPW_DEBUG_INFO("Failed to config device on retry %d of %d\n",
11251 i, MAX_HW_RESTARTS);
11252
11253 /* We had an error bringing up the hardware, so take it
11254 * all the way back down so we can try again */
11255 ipw_down(priv);
11256 }
11257
Jeff Garzikbf794512005-07-31 13:07:26 -040011258 /* tried to restart and config the device for as long as our
James Ketrenos43f66a62005-03-25 12:31:53 -060011259 * patience could withstand */
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011260 IPW_ERROR("Unable to initialize device after %d attempts.\n", i);
James Ketrenosc848d0a2005-08-24 21:56:24 -050011261
James Ketrenos43f66a62005-03-25 12:31:53 -060011262 return -EIO;
11263}
11264
David Howellsc4028952006-11-22 14:57:56 +000011265static void ipw_bg_up(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -050011266{
David Howellsc4028952006-11-22 14:57:56 +000011267 struct ipw_priv *priv =
11268 container_of(work, struct ipw_priv, up);
Zhu Yi46441512006-01-24 16:37:59 +080011269 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +000011270 ipw_up(priv);
Zhu Yi46441512006-01-24 16:37:59 +080011271 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -050011272}
11273
James Ketrenosb095c382005-08-24 22:04:42 -050011274static void ipw_deinit(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -060011275{
James Ketrenosb095c382005-08-24 22:04:42 -050011276 int i;
11277
11278 if (priv->status & STATUS_SCANNING) {
11279 IPW_DEBUG_INFO("Aborting scan during shutdown.\n");
11280 ipw_abort_scan(priv);
11281 }
11282
11283 if (priv->status & STATUS_ASSOCIATED) {
11284 IPW_DEBUG_INFO("Disassociating during shutdown.\n");
11285 ipw_disassociate(priv);
11286 }
11287
11288 ipw_led_shutdown(priv);
11289
11290 /* Wait up to 1s for status to change to not scanning and not
11291 * associated (disassociation can take a while for a ful 802.11
11292 * exchange */
11293 for (i = 1000; i && (priv->status &
11294 (STATUS_DISASSOCIATING |
11295 STATUS_ASSOCIATED | STATUS_SCANNING)); i--)
11296 udelay(10);
11297
11298 if (priv->status & (STATUS_DISASSOCIATING |
11299 STATUS_ASSOCIATED | STATUS_SCANNING))
11300 IPW_DEBUG_INFO("Still associated or scanning...\n");
11301 else
11302 IPW_DEBUG_INFO("Took %dms to de-init\n", 1000 - i);
11303
James Ketrenosc848d0a2005-08-24 21:56:24 -050011304 /* Attempt to disable the card */
James Ketrenos43f66a62005-03-25 12:31:53 -060011305 ipw_send_card_disable(priv, 0);
James Ketrenosb095c382005-08-24 22:04:42 -050011306
11307 priv->status &= ~STATUS_INIT;
11308}
11309
James Ketrenos43f66a62005-03-25 12:31:53 -060011310static void ipw_down(struct ipw_priv *priv)
11311{
James Ketrenosb095c382005-08-24 22:04:42 -050011312 int exit_pending = priv->status & STATUS_EXIT_PENDING;
11313
11314 priv->status |= STATUS_EXIT_PENDING;
11315
11316 if (ipw_is_init(priv))
11317 ipw_deinit(priv);
11318
11319 /* Wipe out the EXIT_PENDING status bit if we are not actually
11320 * exiting the module */
11321 if (!exit_pending)
11322 priv->status &= ~STATUS_EXIT_PENDING;
James Ketrenos43f66a62005-03-25 12:31:53 -060011323
11324 /* tell the device to stop sending interrupts */
11325 ipw_disable_interrupts(priv);
11326
11327 /* Clear all bits but the RF Kill */
James Ketrenosb095c382005-08-24 22:04:42 -050011328 priv->status &= STATUS_RF_KILL_MASK | STATUS_EXIT_PENDING;
James Ketrenos43f66a62005-03-25 12:31:53 -060011329 netif_carrier_off(priv->net_dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060011330
11331 ipw_stop_nic(priv);
James Ketrenosa613bff2005-08-24 21:43:11 -050011332
11333 ipw_led_radio_off(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060011334}
11335
David Howellsc4028952006-11-22 14:57:56 +000011336static void ipw_bg_down(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -050011337{
David Howellsc4028952006-11-22 14:57:56 +000011338 struct ipw_priv *priv =
11339 container_of(work, struct ipw_priv, down);
Zhu Yi46441512006-01-24 16:37:59 +080011340 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +000011341 ipw_down(priv);
Zhu Yi46441512006-01-24 16:37:59 +080011342 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060011343}
11344
Stanislaw Gruszka7cabafc2011-09-14 16:47:50 +020011345static int ipw_wdev_init(struct net_device *dev)
11346{
John W. Linvillea3caa992009-08-25 14:12:25 -040011347 int i, rc = 0;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011348 struct ipw_priv *priv = libipw_priv(dev);
John W. Linvillea3caa992009-08-25 14:12:25 -040011349 const struct libipw_geo *geo = libipw_get_geo(priv->ieee);
11350 struct wireless_dev *wdev = &priv->ieee->wdev;
James Ketrenos43f66a62005-03-25 12:31:53 -060011351
John W. Linvillea3caa992009-08-25 14:12:25 -040011352 memcpy(wdev->wiphy->perm_addr, priv->mac_addr, ETH_ALEN);
11353
11354 /* fill-out priv->ieee->bg_band */
11355 if (geo->bg_channels) {
11356 struct ieee80211_supported_band *bg_band = &priv->ieee->bg_band;
11357
Johannes Berg57fbcce2016-04-12 15:56:15 +020011358 bg_band->band = NL80211_BAND_2GHZ;
John W. Linvillea3caa992009-08-25 14:12:25 -040011359 bg_band->n_channels = geo->bg_channels;
Joe Perchesbaeb2ff2010-08-11 07:02:48 +000011360 bg_band->channels = kcalloc(geo->bg_channels,
11361 sizeof(struct ieee80211_channel),
11362 GFP_KERNEL);
Dan Carpenter2ee4e272010-10-04 14:31:46 +020011363 if (!bg_band->channels) {
11364 rc = -ENOMEM;
11365 goto out;
11366 }
John W. Linvillea3caa992009-08-25 14:12:25 -040011367 /* translate geo->bg to bg_band.channels */
11368 for (i = 0; i < geo->bg_channels; i++) {
Johannes Berg57fbcce2016-04-12 15:56:15 +020011369 bg_band->channels[i].band = NL80211_BAND_2GHZ;
John W. Linvillea3caa992009-08-25 14:12:25 -040011370 bg_band->channels[i].center_freq = geo->bg[i].freq;
11371 bg_band->channels[i].hw_value = geo->bg[i].channel;
11372 bg_band->channels[i].max_power = geo->bg[i].max_power;
11373 if (geo->bg[i].flags & LIBIPW_CH_PASSIVE_ONLY)
11374 bg_band->channels[i].flags |=
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +020011375 IEEE80211_CHAN_NO_IR;
John W. Linvillea3caa992009-08-25 14:12:25 -040011376 if (geo->bg[i].flags & LIBIPW_CH_NO_IBSS)
11377 bg_band->channels[i].flags |=
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +020011378 IEEE80211_CHAN_NO_IR;
John W. Linvillea3caa992009-08-25 14:12:25 -040011379 if (geo->bg[i].flags & LIBIPW_CH_RADAR_DETECT)
11380 bg_band->channels[i].flags |=
11381 IEEE80211_CHAN_RADAR;
11382 /* No equivalent for LIBIPW_CH_80211H_RULES,
11383 LIBIPW_CH_UNIFORM_SPREADING, or
11384 LIBIPW_CH_B_ONLY... */
11385 }
11386 /* point at bitrate info */
11387 bg_band->bitrates = ipw2200_bg_rates;
11388 bg_band->n_bitrates = ipw2200_num_bg_rates;
11389
Johannes Berg57fbcce2016-04-12 15:56:15 +020011390 wdev->wiphy->bands[NL80211_BAND_2GHZ] = bg_band;
John W. Linvillea3caa992009-08-25 14:12:25 -040011391 }
11392
11393 /* fill-out priv->ieee->a_band */
11394 if (geo->a_channels) {
11395 struct ieee80211_supported_band *a_band = &priv->ieee->a_band;
11396
Johannes Berg57fbcce2016-04-12 15:56:15 +020011397 a_band->band = NL80211_BAND_5GHZ;
John W. Linvillea3caa992009-08-25 14:12:25 -040011398 a_band->n_channels = geo->a_channels;
Joe Perchesbaeb2ff2010-08-11 07:02:48 +000011399 a_band->channels = kcalloc(geo->a_channels,
11400 sizeof(struct ieee80211_channel),
11401 GFP_KERNEL);
Dan Carpenter2ee4e272010-10-04 14:31:46 +020011402 if (!a_band->channels) {
11403 rc = -ENOMEM;
11404 goto out;
11405 }
Stanislav Yakovlev75836b82012-03-20 17:52:57 -040011406 /* translate geo->a to a_band.channels */
John W. Linvillea3caa992009-08-25 14:12:25 -040011407 for (i = 0; i < geo->a_channels; i++) {
Johannes Berg57fbcce2016-04-12 15:56:15 +020011408 a_band->channels[i].band = NL80211_BAND_5GHZ;
John W. Linvillea3caa992009-08-25 14:12:25 -040011409 a_band->channels[i].center_freq = geo->a[i].freq;
11410 a_band->channels[i].hw_value = geo->a[i].channel;
11411 a_band->channels[i].max_power = geo->a[i].max_power;
11412 if (geo->a[i].flags & LIBIPW_CH_PASSIVE_ONLY)
11413 a_band->channels[i].flags |=
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +020011414 IEEE80211_CHAN_NO_IR;
John W. Linvillea3caa992009-08-25 14:12:25 -040011415 if (geo->a[i].flags & LIBIPW_CH_NO_IBSS)
11416 a_band->channels[i].flags |=
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +020011417 IEEE80211_CHAN_NO_IR;
John W. Linvillea3caa992009-08-25 14:12:25 -040011418 if (geo->a[i].flags & LIBIPW_CH_RADAR_DETECT)
11419 a_band->channels[i].flags |=
11420 IEEE80211_CHAN_RADAR;
11421 /* No equivalent for LIBIPW_CH_80211H_RULES,
11422 LIBIPW_CH_UNIFORM_SPREADING, or
11423 LIBIPW_CH_B_ONLY... */
11424 }
11425 /* point at bitrate info */
11426 a_band->bitrates = ipw2200_a_rates;
11427 a_band->n_bitrates = ipw2200_num_a_rates;
11428
Johannes Berg57fbcce2016-04-12 15:56:15 +020011429 wdev->wiphy->bands[NL80211_BAND_5GHZ] = a_band;
John W. Linvillea3caa992009-08-25 14:12:25 -040011430 }
11431
Stanislav Yakovleva141e6a2012-04-10 21:44:47 -040011432 wdev->wiphy->cipher_suites = ipw_cipher_suites;
11433 wdev->wiphy->n_cipher_suites = ARRAY_SIZE(ipw_cipher_suites);
11434
John W. Linvillea3caa992009-08-25 14:12:25 -040011435 set_wiphy_dev(wdev->wiphy, &priv->pci_dev->dev);
11436
11437 /* With that information in place, we can now register the wiphy... */
Stanislaw Gruszka7cabafc2011-09-14 16:47:50 +020011438 if (wiphy_register(wdev->wiphy))
John W. Linvillea3caa992009-08-25 14:12:25 -040011439 rc = -EIO;
John W. Linvillea3caa992009-08-25 14:12:25 -040011440out:
John W. Linvillea3caa992009-08-25 14:12:25 -040011441 return rc;
James Ketrenos43f66a62005-03-25 12:31:53 -060011442}
11443
11444/* PCI driver stuff */
Benoit Taine9baa3c32014-08-08 15:56:03 +020011445static const struct pci_device_id card_ids[] = {
James Ketrenos43f66a62005-03-25 12:31:53 -060011446 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2701, 0, 0, 0},
11447 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2702, 0, 0, 0},
11448 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2711, 0, 0, 0},
11449 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2712, 0, 0, 0},
11450 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2721, 0, 0, 0},
11451 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2722, 0, 0, 0},
11452 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2731, 0, 0, 0},
11453 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2732, 0, 0, 0},
11454 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2741, 0, 0, 0},
11455 {PCI_VENDOR_ID_INTEL, 0x1043, 0x103c, 0x2741, 0, 0, 0},
11456 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2742, 0, 0, 0},
11457 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2751, 0, 0, 0},
11458 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2752, 0, 0, 0},
11459 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2753, 0, 0, 0},
11460 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2754, 0, 0, 0},
11461 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2761, 0, 0, 0},
11462 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2762, 0, 0, 0},
Joe Perches8ab0ea72009-06-24 22:13:27 -070011463 {PCI_VDEVICE(INTEL, 0x104f), 0},
11464 {PCI_VDEVICE(INTEL, 0x4220), 0}, /* BG */
11465 {PCI_VDEVICE(INTEL, 0x4221), 0}, /* BG */
11466 {PCI_VDEVICE(INTEL, 0x4223), 0}, /* ABG */
11467 {PCI_VDEVICE(INTEL, 0x4224), 0}, /* ABG */
Jeff Garzikbf794512005-07-31 13:07:26 -040011468
James Ketrenos43f66a62005-03-25 12:31:53 -060011469 /* required last entry */
11470 {0,}
11471};
11472
11473MODULE_DEVICE_TABLE(pci, card_ids);
11474
11475static struct attribute *ipw_sysfs_entries[] = {
11476 &dev_attr_rf_kill.attr,
11477 &dev_attr_direct_dword.attr,
11478 &dev_attr_indirect_byte.attr,
11479 &dev_attr_indirect_dword.attr,
11480 &dev_attr_mem_gpio_reg.attr,
11481 &dev_attr_command_event_reg.attr,
11482 &dev_attr_nic_type.attr,
11483 &dev_attr_status.attr,
11484 &dev_attr_cfg.attr,
James Ketrenosb39860c2005-08-12 09:36:32 -050011485 &dev_attr_error.attr,
11486 &dev_attr_event_log.attr,
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011487 &dev_attr_cmd_log.attr,
James Ketrenos43f66a62005-03-25 12:31:53 -060011488 &dev_attr_eeprom_delay.attr,
11489 &dev_attr_ucode_version.attr,
11490 &dev_attr_rtc.attr,
James Ketrenosa613bff2005-08-24 21:43:11 -050011491 &dev_attr_scan_age.attr,
11492 &dev_attr_led.attr,
James Ketrenosb095c382005-08-24 22:04:42 -050011493 &dev_attr_speed_scan.attr,
11494 &dev_attr_net_stats.attr,
Zhu Yi375dd242007-02-14 16:04:24 +080011495 &dev_attr_channels.attr,
Zhu Yid685b8c2006-04-13 17:20:27 +080011496#ifdef CONFIG_IPW2200_PROMISCUOUS
11497 &dev_attr_rtap_iface.attr,
11498 &dev_attr_rtap_filter.attr,
11499#endif
James Ketrenos43f66a62005-03-25 12:31:53 -060011500 NULL
11501};
11502
11503static struct attribute_group ipw_attribute_group = {
11504 .name = NULL, /* put in device directory */
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011505 .attrs = ipw_sysfs_entries,
James Ketrenos43f66a62005-03-25 12:31:53 -060011506};
11507
Zhu Yid685b8c2006-04-13 17:20:27 +080011508#ifdef CONFIG_IPW2200_PROMISCUOUS
11509static int ipw_prom_open(struct net_device *dev)
11510{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011511 struct ipw_prom_priv *prom_priv = libipw_priv(dev);
Zhu Yid685b8c2006-04-13 17:20:27 +080011512 struct ipw_priv *priv = prom_priv->priv;
11513
11514 IPW_DEBUG_INFO("prom dev->open\n");
11515 netif_carrier_off(dev);
Zhu Yid685b8c2006-04-13 17:20:27 +080011516
11517 if (priv->ieee->iw_mode != IW_MODE_MONITOR) {
11518 priv->sys_config.accept_all_data_frames = 1;
11519 priv->sys_config.accept_non_directed_frames = 1;
11520 priv->sys_config.accept_all_mgmt_bcpr = 1;
11521 priv->sys_config.accept_all_mgmt_frames = 1;
11522
11523 ipw_send_system_config(priv);
11524 }
11525
11526 return 0;
11527}
11528
11529static int ipw_prom_stop(struct net_device *dev)
11530{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011531 struct ipw_prom_priv *prom_priv = libipw_priv(dev);
Zhu Yid685b8c2006-04-13 17:20:27 +080011532 struct ipw_priv *priv = prom_priv->priv;
11533
11534 IPW_DEBUG_INFO("prom dev->stop\n");
11535
11536 if (priv->ieee->iw_mode != IW_MODE_MONITOR) {
11537 priv->sys_config.accept_all_data_frames = 0;
11538 priv->sys_config.accept_non_directed_frames = 0;
11539 priv->sys_config.accept_all_mgmt_bcpr = 0;
11540 priv->sys_config.accept_all_mgmt_frames = 0;
11541
11542 ipw_send_system_config(priv);
11543 }
11544
11545 return 0;
11546}
11547
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +000011548static netdev_tx_t ipw_prom_hard_start_xmit(struct sk_buff *skb,
11549 struct net_device *dev)
Zhu Yid685b8c2006-04-13 17:20:27 +080011550{
11551 IPW_DEBUG_INFO("prom dev->xmit\n");
Patrick McHardy4153e772009-06-12 04:08:02 +000011552 dev_kfree_skb(skb);
11553 return NETDEV_TX_OK;
Zhu Yid685b8c2006-04-13 17:20:27 +080011554}
11555
Stephen Hemminger44e9ad02009-03-20 19:36:41 +000011556static const struct net_device_ops ipw_prom_netdev_ops = {
11557 .ndo_open = ipw_prom_open,
11558 .ndo_stop = ipw_prom_stop,
11559 .ndo_start_xmit = ipw_prom_hard_start_xmit,
Stephen Hemminger44e9ad02009-03-20 19:36:41 +000011560 .ndo_set_mac_address = eth_mac_addr,
11561 .ndo_validate_addr = eth_validate_addr,
11562};
11563
Zhu Yid685b8c2006-04-13 17:20:27 +080011564static int ipw_prom_alloc(struct ipw_priv *priv)
11565{
11566 int rc = 0;
11567
11568 if (priv->prom_net_dev)
11569 return -EPERM;
11570
Pavel Roskin27ae60f2010-03-12 00:01:22 -050011571 priv->prom_net_dev = alloc_libipw(sizeof(struct ipw_prom_priv), 1);
Zhu Yid685b8c2006-04-13 17:20:27 +080011572 if (priv->prom_net_dev == NULL)
11573 return -ENOMEM;
11574
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011575 priv->prom_priv = libipw_priv(priv->prom_net_dev);
Zhu Yid685b8c2006-04-13 17:20:27 +080011576 priv->prom_priv->ieee = netdev_priv(priv->prom_net_dev);
11577 priv->prom_priv->priv = priv;
11578
11579 strcpy(priv->prom_net_dev->name, "rtap%d");
Daniel Drake3f2eeac2008-04-02 20:33:54 +010011580 memcpy(priv->prom_net_dev->dev_addr, priv->mac_addr, ETH_ALEN);
Zhu Yid685b8c2006-04-13 17:20:27 +080011581
11582 priv->prom_net_dev->type = ARPHRD_IEEE80211_RADIOTAP;
Stephen Hemminger44e9ad02009-03-20 19:36:41 +000011583 priv->prom_net_dev->netdev_ops = &ipw_prom_netdev_ops;
Zhu Yid685b8c2006-04-13 17:20:27 +080011584
Jarod Wilson9c22b4a2016-10-20 13:55:18 -040011585 priv->prom_net_dev->min_mtu = 68;
11586 priv->prom_net_dev->max_mtu = LIBIPW_DATA_LEN;
11587
Zhu Yid685b8c2006-04-13 17:20:27 +080011588 priv->prom_priv->ieee->iw_mode = IW_MODE_MONITOR;
Masakazu Mokuno229ce3a2008-05-14 14:16:50 +090011589 SET_NETDEV_DEV(priv->prom_net_dev, &priv->pci_dev->dev);
Zhu Yid685b8c2006-04-13 17:20:27 +080011590
11591 rc = register_netdev(priv->prom_net_dev);
11592 if (rc) {
Pavel Roskin27ae60f2010-03-12 00:01:22 -050011593 free_libipw(priv->prom_net_dev, 1);
Zhu Yid685b8c2006-04-13 17:20:27 +080011594 priv->prom_net_dev = NULL;
11595 return rc;
11596 }
11597
11598 return 0;
11599}
11600
11601static void ipw_prom_free(struct ipw_priv *priv)
11602{
11603 if (!priv->prom_net_dev)
11604 return;
11605
11606 unregister_netdev(priv->prom_net_dev);
Pavel Roskin27ae60f2010-03-12 00:01:22 -050011607 free_libipw(priv->prom_net_dev, 1);
Zhu Yid685b8c2006-04-13 17:20:27 +080011608
11609 priv->prom_net_dev = NULL;
11610}
11611
11612#endif
11613
Stephen Hemminger44e9ad02009-03-20 19:36:41 +000011614static const struct net_device_ops ipw_netdev_ops = {
Stephen Hemminger44e9ad02009-03-20 19:36:41 +000011615 .ndo_open = ipw_net_open,
11616 .ndo_stop = ipw_net_stop,
Jiri Pirkoafc4b132011-08-16 06:29:01 +000011617 .ndo_set_rx_mode = ipw_net_set_multicast_list,
Stephen Hemminger44e9ad02009-03-20 19:36:41 +000011618 .ndo_set_mac_address = ipw_net_set_mac_address,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011619 .ndo_start_xmit = libipw_xmit,
Stephen Hemminger44e9ad02009-03-20 19:36:41 +000011620 .ndo_validate_addr = eth_validate_addr,
11621};
Zhu Yid685b8c2006-04-13 17:20:27 +080011622
Bill Pembertoneb9248e2012-12-03 09:56:32 -050011623static int ipw_pci_probe(struct pci_dev *pdev,
Adrian Bunk2ef19e62007-12-11 23:20:22 +010011624 const struct pci_device_id *ent)
James Ketrenos43f66a62005-03-25 12:31:53 -060011625{
11626 int err = 0;
11627 struct net_device *net_dev;
11628 void __iomem *base;
11629 u32 length, val;
11630 struct ipw_priv *priv;
James Ketrenosafbf30a2005-08-25 00:05:33 -050011631 int i;
James Ketrenos43f66a62005-03-25 12:31:53 -060011632
Pavel Roskin27ae60f2010-03-12 00:01:22 -050011633 net_dev = alloc_libipw(sizeof(struct ipw_priv), 0);
James Ketrenos43f66a62005-03-25 12:31:53 -060011634 if (net_dev == NULL) {
11635 err = -ENOMEM;
11636 goto out;
11637 }
11638
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011639 priv = libipw_priv(net_dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060011640 priv->ieee = netdev_priv(net_dev);
James Ketrenosa613bff2005-08-24 21:43:11 -050011641
James Ketrenos43f66a62005-03-25 12:31:53 -060011642 priv->net_dev = net_dev;
11643 priv->pci_dev = pdev;
James Ketrenos43f66a62005-03-25 12:31:53 -060011644 ipw_debug_level = debug;
Zhu Yi89c318e2006-06-08 22:19:49 -070011645 spin_lock_init(&priv->irq_lock);
James Ketrenos43f66a62005-03-25 12:31:53 -060011646 spin_lock_init(&priv->lock);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011647 for (i = 0; i < IPW_IBSS_MAC_HASH_SIZE; i++)
11648 INIT_LIST_HEAD(&priv->ibss_mac_hash[i]);
James Ketrenos43f66a62005-03-25 12:31:53 -060011649
Zhu Yi46441512006-01-24 16:37:59 +080011650 mutex_init(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060011651 if (pci_enable_device(pdev)) {
11652 err = -ENODEV;
Pavel Roskin27ae60f2010-03-12 00:01:22 -050011653 goto out_free_libipw;
James Ketrenos43f66a62005-03-25 12:31:53 -060011654 }
11655
11656 pci_set_master(pdev);
11657
Yang Hongyang284901a2009-04-06 19:01:15 -070011658 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Jeff Garzikbf794512005-07-31 13:07:26 -040011659 if (!err)
Yang Hongyang284901a2009-04-06 19:01:15 -070011660 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
James Ketrenos43f66a62005-03-25 12:31:53 -060011661 if (err) {
11662 printk(KERN_WARNING DRV_NAME ": No suitable DMA available.\n");
11663 goto out_pci_disable_device;
11664 }
11665
11666 pci_set_drvdata(pdev, priv);
11667
11668 err = pci_request_regions(pdev, DRV_NAME);
Jeff Garzikbf794512005-07-31 13:07:26 -040011669 if (err)
James Ketrenos43f66a62005-03-25 12:31:53 -060011670 goto out_pci_disable_device;
11671
Jeff Garzikbf794512005-07-31 13:07:26 -040011672 /* We disable the RETRY_TIMEOUT register (0x41) to keep
James Ketrenos43f66a62005-03-25 12:31:53 -060011673 * PCI Tx retries from interfering with C3 CPU state */
Jeff Garzikbf794512005-07-31 13:07:26 -040011674 pci_read_config_dword(pdev, 0x40, &val);
11675 if ((val & 0x0000ff00) != 0)
James Ketrenos43f66a62005-03-25 12:31:53 -060011676 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
Jeff Garzikbf794512005-07-31 13:07:26 -040011677
James Ketrenos43f66a62005-03-25 12:31:53 -060011678 length = pci_resource_len(pdev, 0);
11679 priv->hw_len = length;
Jeff Garzikbf794512005-07-31 13:07:26 -040011680
Arjan van de Ven275f1652008-10-20 21:42:39 -070011681 base = pci_ioremap_bar(pdev, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -060011682 if (!base) {
11683 err = -ENODEV;
11684 goto out_pci_release_regions;
11685 }
11686
11687 priv->hw_base = base;
11688 IPW_DEBUG_INFO("pci_resource_len = 0x%08x\n", length);
11689 IPW_DEBUG_INFO("pci_resource_base = %p\n", base);
11690
11691 err = ipw_setup_deferred_work(priv);
11692 if (err) {
11693 IPW_ERROR("Unable to setup deferred work\n");
11694 goto out_iounmap;
11695 }
11696
James Ketrenosb095c382005-08-24 22:04:42 -050011697 ipw_sw_reset(priv, 1);
James Ketrenos43f66a62005-03-25 12:31:53 -060011698
Thomas Gleixner1fb9df52006-07-01 19:29:39 -070011699 err = request_irq(pdev->irq, ipw_isr, IRQF_SHARED, DRV_NAME, priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060011700 if (err) {
11701 IPW_ERROR("Error allocating IRQ %d\n", pdev->irq);
Tejun Heobcb6d912011-01-26 12:12:50 +010011702 goto out_iounmap;
James Ketrenos43f66a62005-03-25 12:31:53 -060011703 }
11704
James Ketrenos43f66a62005-03-25 12:31:53 -060011705 SET_NETDEV_DEV(net_dev, &pdev->dev);
11706
Zhu Yi46441512006-01-24 16:37:59 +080011707 mutex_lock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -050011708
James Ketrenos43f66a62005-03-25 12:31:53 -060011709 priv->ieee->hard_start_xmit = ipw_net_hard_start_xmit;
11710 priv->ieee->set_security = shim__set_security;
James Ketrenos227d2dc2005-07-28 16:25:55 -050011711 priv->ieee->is_queue_full = ipw_net_is_queue_full;
James Ketrenos43f66a62005-03-25 12:31:53 -060011712
Zhu Yie43e3c12006-04-13 17:20:45 +080011713#ifdef CONFIG_IPW2200_QOS
Zhu Yia5cf4fe2006-04-13 17:19:11 +080011714 priv->ieee->is_qos_active = ipw_is_qos_active;
James Ketrenos3b9990c2005-08-19 13:18:55 -050011715 priv->ieee->handle_probe_response = ipw_handle_beacon;
11716 priv->ieee->handle_beacon = ipw_handle_probe_response;
11717 priv->ieee->handle_assoc_response = ipw_handle_assoc_response;
Zhu Yie43e3c12006-04-13 17:20:45 +080011718#endif /* CONFIG_IPW2200_QOS */
James Ketrenosb095c382005-08-24 22:04:42 -050011719
James Ketrenosc848d0a2005-08-24 21:56:24 -050011720 priv->ieee->perfect_rssi = -20;
11721 priv->ieee->worst_rssi = -85;
James Ketrenos43f66a62005-03-25 12:31:53 -060011722
Stephen Hemminger44e9ad02009-03-20 19:36:41 +000011723 net_dev->netdev_ops = &ipw_netdev_ops;
Benoit Boissinot97a78ca2005-09-15 17:30:28 +000011724 priv->wireless_data.spy_data = &priv->ieee->spy_data;
Benoit Boissinot97a78ca2005-09-15 17:30:28 +000011725 net_dev->wireless_data = &priv->wireless_data;
James Ketrenos43f66a62005-03-25 12:31:53 -060011726 net_dev->wireless_handlers = &ipw_wx_handler_def;
11727 net_dev->ethtool_ops = &ipw_ethtool_ops;
James Ketrenos43f66a62005-03-25 12:31:53 -060011728
Jarod Wilson9c22b4a2016-10-20 13:55:18 -040011729 net_dev->min_mtu = 68;
11730 net_dev->max_mtu = LIBIPW_DATA_LEN;
11731
James Ketrenos43f66a62005-03-25 12:31:53 -060011732 err = sysfs_create_group(&pdev->dev.kobj, &ipw_attribute_group);
11733 if (err) {
11734 IPW_ERROR("failed to create sysfs device attributes\n");
Zhu Yi46441512006-01-24 16:37:59 +080011735 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060011736 goto out_release_irq;
11737 }
11738
Stanislav Yakovlev7ed85b62012-04-16 06:38:30 -040011739 if (ipw_up(priv)) {
11740 mutex_unlock(&priv->mutex);
11741 err = -EIO;
11742 goto out_remove_sysfs;
11743 }
11744
Zhu Yi46441512006-01-24 16:37:59 +080011745 mutex_unlock(&priv->mutex);
Henrik Brix Andersen48a84772006-02-14 09:09:52 +080011746
Stanislaw Gruszka7cabafc2011-09-14 16:47:50 +020011747 err = ipw_wdev_init(net_dev);
11748 if (err) {
11749 IPW_ERROR("failed to register wireless device\n");
Ben Hutchingsb4050792012-01-22 03:09:35 +000011750 goto out_remove_sysfs;
11751 }
11752
11753 err = register_netdev(net_dev);
11754 if (err) {
11755 IPW_ERROR("failed to register network device\n");
11756 goto out_unregister_wiphy;
Stanislaw Gruszka7cabafc2011-09-14 16:47:50 +020011757 }
11758
Zhu Yid685b8c2006-04-13 17:20:27 +080011759#ifdef CONFIG_IPW2200_PROMISCUOUS
11760 if (rtap_iface) {
11761 err = ipw_prom_alloc(priv);
11762 if (err) {
11763 IPW_ERROR("Failed to register promiscuous network "
11764 "device (error %d).\n", err);
Ben Hutchingsb4050792012-01-22 03:09:35 +000011765 unregister_netdev(priv->net_dev);
11766 goto out_unregister_wiphy;
Zhu Yid685b8c2006-04-13 17:20:27 +080011767 }
11768 }
11769#endif
11770
Henrik Brix Andersen48a84772006-02-14 09:09:52 +080011771 printk(KERN_INFO DRV_NAME ": Detected geography %s (%d 802.11bg "
11772 "channels, %d 802.11a channels)\n",
11773 priv->ieee->geo.name, priv->ieee->geo.bg_channels,
11774 priv->ieee->geo.a_channels);
11775
James Ketrenos43f66a62005-03-25 12:31:53 -060011776 return 0;
11777
Ben Hutchingsb4050792012-01-22 03:09:35 +000011778 out_unregister_wiphy:
11779 wiphy_unregister(priv->ieee->wdev.wiphy);
11780 kfree(priv->ieee->a_band.channels);
11781 kfree(priv->ieee->bg_band.channels);
James Ketrenosa613bff2005-08-24 21:43:11 -050011782 out_remove_sysfs:
James Ketrenos43f66a62005-03-25 12:31:53 -060011783 sysfs_remove_group(&pdev->dev.kobj, &ipw_attribute_group);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011784 out_release_irq:
James Ketrenos43f66a62005-03-25 12:31:53 -060011785 free_irq(pdev->irq, priv);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011786 out_iounmap:
James Ketrenos43f66a62005-03-25 12:31:53 -060011787 iounmap(priv->hw_base);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011788 out_pci_release_regions:
James Ketrenos43f66a62005-03-25 12:31:53 -060011789 pci_release_regions(pdev);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011790 out_pci_disable_device:
James Ketrenos43f66a62005-03-25 12:31:53 -060011791 pci_disable_device(pdev);
Pavel Roskin27ae60f2010-03-12 00:01:22 -050011792 out_free_libipw:
11793 free_libipw(priv->net_dev, 0);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011794 out:
James Ketrenos43f66a62005-03-25 12:31:53 -060011795 return err;
11796}
11797
Bill Pembertoneb9248e2012-12-03 09:56:32 -050011798static void ipw_pci_remove(struct pci_dev *pdev)
James Ketrenos43f66a62005-03-25 12:31:53 -060011799{
11800 struct ipw_priv *priv = pci_get_drvdata(pdev);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011801 struct list_head *p, *q;
11802 int i;
James Ketrenosb095c382005-08-24 22:04:42 -050011803
James Ketrenos43f66a62005-03-25 12:31:53 -060011804 if (!priv)
11805 return;
11806
Zhu Yi46441512006-01-24 16:37:59 +080011807 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060011808
James Ketrenosafbf30a2005-08-25 00:05:33 -050011809 priv->status |= STATUS_EXIT_PENDING;
James Ketrenos43f66a62005-03-25 12:31:53 -060011810 ipw_down(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060011811 sysfs_remove_group(&pdev->dev.kobj, &ipw_attribute_group);
11812
Zhu Yi46441512006-01-24 16:37:59 +080011813 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060011814
11815 unregister_netdev(priv->net_dev);
11816
11817 if (priv->rxq) {
11818 ipw_rx_queue_free(priv, priv->rxq);
11819 priv->rxq = NULL;
11820 }
11821 ipw_tx_queue_free(priv);
11822
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011823 if (priv->cmdlog) {
11824 kfree(priv->cmdlog);
11825 priv->cmdlog = NULL;
11826 }
Tejun Heobcb6d912011-01-26 12:12:50 +010011827
11828 /* make sure all works are inactive */
11829 cancel_delayed_work_sync(&priv->adhoc_check);
11830 cancel_work_sync(&priv->associate);
11831 cancel_work_sync(&priv->disassociate);
11832 cancel_work_sync(&priv->system_config);
11833 cancel_work_sync(&priv->rx_replenish);
11834 cancel_work_sync(&priv->adapter_restart);
11835 cancel_delayed_work_sync(&priv->rf_kill);
11836 cancel_work_sync(&priv->up);
11837 cancel_work_sync(&priv->down);
11838 cancel_delayed_work_sync(&priv->request_scan);
11839 cancel_delayed_work_sync(&priv->request_direct_scan);
11840 cancel_delayed_work_sync(&priv->request_passive_scan);
11841 cancel_delayed_work_sync(&priv->scan_event);
11842 cancel_delayed_work_sync(&priv->gather_stats);
11843 cancel_work_sync(&priv->abort_scan);
11844 cancel_work_sync(&priv->roam);
11845 cancel_delayed_work_sync(&priv->scan_check);
11846 cancel_work_sync(&priv->link_up);
11847 cancel_work_sync(&priv->link_down);
11848 cancel_delayed_work_sync(&priv->led_link_on);
11849 cancel_delayed_work_sync(&priv->led_link_off);
11850 cancel_delayed_work_sync(&priv->led_act_off);
11851 cancel_work_sync(&priv->merge_networks);
James Ketrenos43f66a62005-03-25 12:31:53 -060011852
James Ketrenosafbf30a2005-08-25 00:05:33 -050011853 /* Free MAC hash list for ADHOC */
11854 for (i = 0; i < IPW_IBSS_MAC_HASH_SIZE; i++) {
11855 list_for_each_safe(p, q, &priv->ibss_mac_hash[i]) {
James Ketrenosafbf30a2005-08-25 00:05:33 -050011856 list_del(p);
Zhu Yi489f4452006-01-24 16:37:41 +080011857 kfree(list_entry(p, struct ipw_ibss_seq, list));
James Ketrenosafbf30a2005-08-25 00:05:33 -050011858 }
11859 }
11860
Jesper Juhl8f760782006-06-27 02:55:06 -070011861 kfree(priv->error);
11862 priv->error = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -060011863
Zhu Yid685b8c2006-04-13 17:20:27 +080011864#ifdef CONFIG_IPW2200_PROMISCUOUS
11865 ipw_prom_free(priv);
11866#endif
11867
James Ketrenos43f66a62005-03-25 12:31:53 -060011868 free_irq(pdev->irq, priv);
11869 iounmap(priv->hw_base);
11870 pci_release_regions(pdev);
11871 pci_disable_device(pdev);
Pavel Roskin27ae60f2010-03-12 00:01:22 -050011872 /* wiphy_unregister needs to be here, before free_libipw */
John W. Linvillea3caa992009-08-25 14:12:25 -040011873 wiphy_unregister(priv->ieee->wdev.wiphy);
11874 kfree(priv->ieee->a_band.channels);
11875 kfree(priv->ieee->bg_band.channels);
Pavel Roskin27ae60f2010-03-12 00:01:22 -050011876 free_libipw(priv->net_dev, 0);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011877 free_firmware();
James Ketrenos43f66a62005-03-25 12:31:53 -060011878}
11879
James Ketrenos43f66a62005-03-25 12:31:53 -060011880#ifdef CONFIG_PM
Pavel Machek583a4e82005-09-03 15:56:58 -070011881static int ipw_pci_suspend(struct pci_dev *pdev, pm_message_t state)
James Ketrenos43f66a62005-03-25 12:31:53 -060011882{
11883 struct ipw_priv *priv = pci_get_drvdata(pdev);
11884 struct net_device *dev = priv->net_dev;
11885
11886 printk(KERN_INFO "%s: Going into suspend...\n", dev->name);
11887
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011888 /* Take down the device; powers it off, etc. */
James Ketrenos43f66a62005-03-25 12:31:53 -060011889 ipw_down(priv);
11890
11891 /* Remove the PRESENT state of the device */
11892 netif_device_detach(dev);
11893
James Ketrenos43f66a62005-03-25 12:31:53 -060011894 pci_save_state(pdev);
James Ketrenos43f66a62005-03-25 12:31:53 -060011895 pci_disable_device(pdev);
Pavel Machek583a4e82005-09-03 15:56:58 -070011896 pci_set_power_state(pdev, pci_choose_state(pdev, state));
Jeff Garzikbf794512005-07-31 13:07:26 -040011897
Dan Williamsc3d72b92009-02-11 13:26:06 -050011898 priv->suspend_at = get_seconds();
11899
James Ketrenos43f66a62005-03-25 12:31:53 -060011900 return 0;
11901}
11902
11903static int ipw_pci_resume(struct pci_dev *pdev)
11904{
11905 struct ipw_priv *priv = pci_get_drvdata(pdev);
11906 struct net_device *dev = priv->net_dev;
John W. Linville02e0e5e2006-11-07 20:53:48 -050011907 int err;
James Ketrenos43f66a62005-03-25 12:31:53 -060011908 u32 val;
Jeff Garzikbf794512005-07-31 13:07:26 -040011909
James Ketrenos43f66a62005-03-25 12:31:53 -060011910 printk(KERN_INFO "%s: Coming out of suspend...\n", dev->name);
11911
James Ketrenosea2b26e2005-08-24 21:25:16 -050011912 pci_set_power_state(pdev, PCI_D0);
John W. Linville02e0e5e2006-11-07 20:53:48 -050011913 err = pci_enable_device(pdev);
11914 if (err) {
11915 printk(KERN_ERR "%s: pci_enable_device failed on resume\n",
11916 dev->name);
11917 return err;
11918 }
James Ketrenos43f66a62005-03-25 12:31:53 -060011919 pci_restore_state(pdev);
James Ketrenosea2b26e2005-08-24 21:25:16 -050011920
James Ketrenos43f66a62005-03-25 12:31:53 -060011921 /*
11922 * Suspend/Resume resets the PCI configuration space, so we have to
11923 * re-disable the RETRY_TIMEOUT register (0x41) to keep PCI Tx retries
11924 * from interfering with C3 CPU state. pci_restore_state won't help
11925 * here since it only restores the first 64 bytes pci config header.
11926 */
Jeff Garzikbf794512005-07-31 13:07:26 -040011927 pci_read_config_dword(pdev, 0x40, &val);
11928 if ((val & 0x0000ff00) != 0)
James Ketrenos43f66a62005-03-25 12:31:53 -060011929 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
11930
11931 /* Set the device back into the PRESENT state; this will also wake
11932 * the queue of needed */
11933 netif_device_attach(dev);
11934
Dan Williamsc3d72b92009-02-11 13:26:06 -050011935 priv->suspend_time = get_seconds() - priv->suspend_at;
11936
James Ketrenos43f66a62005-03-25 12:31:53 -060011937 /* Bring the device back up */
Tejun Heobcb6d912011-01-26 12:12:50 +010011938 schedule_work(&priv->up);
Jeff Garzikbf794512005-07-31 13:07:26 -040011939
James Ketrenos43f66a62005-03-25 12:31:53 -060011940 return 0;
11941}
11942#endif
11943
Zhu Yic8c22c92006-08-21 11:38:39 +080011944static void ipw_pci_shutdown(struct pci_dev *pdev)
11945{
11946 struct ipw_priv *priv = pci_get_drvdata(pdev);
11947
11948 /* Take down the device; powers it off, etc. */
11949 ipw_down(priv);
11950
11951 pci_disable_device(pdev);
11952}
11953
James Ketrenos43f66a62005-03-25 12:31:53 -060011954/* driver initialization stuff */
11955static struct pci_driver ipw_driver = {
11956 .name = DRV_NAME,
11957 .id_table = card_ids,
11958 .probe = ipw_pci_probe,
Bill Pembertoneb9248e2012-12-03 09:56:32 -050011959 .remove = ipw_pci_remove,
James Ketrenos43f66a62005-03-25 12:31:53 -060011960#ifdef CONFIG_PM
11961 .suspend = ipw_pci_suspend,
11962 .resume = ipw_pci_resume,
11963#endif
Zhu Yic8c22c92006-08-21 11:38:39 +080011964 .shutdown = ipw_pci_shutdown,
James Ketrenos43f66a62005-03-25 12:31:53 -060011965};
11966
11967static int __init ipw_init(void)
11968{
11969 int ret;
11970
11971 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
11972 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
11973
Jeff Garzik29917622006-08-19 17:48:59 -040011974 ret = pci_register_driver(&ipw_driver);
James Ketrenos43f66a62005-03-25 12:31:53 -060011975 if (ret) {
11976 IPW_ERROR("Unable to initialize PCI module\n");
11977 return ret;
11978 }
11979
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011980 ret = driver_create_file(&ipw_driver.driver, &driver_attr_debug_level);
James Ketrenos43f66a62005-03-25 12:31:53 -060011981 if (ret) {
11982 IPW_ERROR("Unable to create driver sysfs file\n");
11983 pci_unregister_driver(&ipw_driver);
11984 return ret;
11985 }
11986
11987 return ret;
11988}
11989
11990static void __exit ipw_exit(void)
11991{
11992 driver_remove_file(&ipw_driver.driver, &driver_attr_debug_level);
11993 pci_unregister_driver(&ipw_driver);
11994}
11995
11996module_param(disable, int, 0444);
11997MODULE_PARM_DESC(disable, "manually disable the radio (default 0 [radio on])");
11998
11999module_param(associate, int, 0444);
Tim Gardner5c7f9b72008-10-14 10:38:03 -060012000MODULE_PARM_DESC(associate, "auto associate when scanning (default off)");
James Ketrenos43f66a62005-03-25 12:31:53 -060012001
12002module_param(auto_create, int, 0444);
12003MODULE_PARM_DESC(auto_create, "auto create adhoc network (default on)");
12004
Reinette Chatre21f8a732009-08-18 10:25:05 -070012005module_param_named(led, led_support, int, 0444);
ubuntu@tjworld.netc086aba2009-03-23 20:29:28 +000012006MODULE_PARM_DESC(led, "enable led control on some systems (default 1 on)");
James Ketrenosa613bff2005-08-24 21:43:11 -050012007
James Ketrenos43f66a62005-03-25 12:31:53 -060012008module_param(debug, int, 0444);
12009MODULE_PARM_DESC(debug, "debug output mask");
12010
Reinette Chatre21f8a732009-08-18 10:25:05 -070012011module_param_named(channel, default_channel, int, 0444);
Jeff Garzikbf794512005-07-31 13:07:26 -040012012MODULE_PARM_DESC(channel, "channel to limit associate to (default 0 [ANY])");
James Ketrenos43f66a62005-03-25 12:31:53 -060012013
Zhu Yid685b8c2006-04-13 17:20:27 +080012014#ifdef CONFIG_IPW2200_PROMISCUOUS
12015module_param(rtap_iface, int, 0444);
12016MODULE_PARM_DESC(rtap_iface, "create the rtap interface (1 - create, default 0)");
12017#endif
12018
Zhu Yie43e3c12006-04-13 17:20:45 +080012019#ifdef CONFIG_IPW2200_QOS
James Ketrenosb095c382005-08-24 22:04:42 -050012020module_param(qos_enable, int, 0444);
12021MODULE_PARM_DESC(qos_enable, "enable all QoS functionalitis");
James Ketrenos43f66a62005-03-25 12:31:53 -060012022
James Ketrenosb095c382005-08-24 22:04:42 -050012023module_param(qos_burst_enable, int, 0444);
12024MODULE_PARM_DESC(qos_burst_enable, "enable QoS burst mode");
12025
12026module_param(qos_no_ack_mask, int, 0444);
12027MODULE_PARM_DESC(qos_no_ack_mask, "mask Tx_Queue to no ack");
12028
12029module_param(burst_duration_CCK, int, 0444);
12030MODULE_PARM_DESC(burst_duration_CCK, "set CCK burst value");
12031
12032module_param(burst_duration_OFDM, int, 0444);
12033MODULE_PARM_DESC(burst_duration_OFDM, "set OFDM burst value");
Zhu Yie43e3c12006-04-13 17:20:45 +080012034#endif /* CONFIG_IPW2200_QOS */
James Ketrenosb095c382005-08-24 22:04:42 -050012035
12036#ifdef CONFIG_IPW2200_MONITOR
Reinette Chatre21f8a732009-08-18 10:25:05 -070012037module_param_named(mode, network_mode, int, 0444);
James Ketrenos43f66a62005-03-25 12:31:53 -060012038MODULE_PARM_DESC(mode, "network mode (0=BSS,1=IBSS,2=Monitor)");
12039#else
Reinette Chatre21f8a732009-08-18 10:25:05 -070012040module_param_named(mode, network_mode, int, 0444);
James Ketrenos43f66a62005-03-25 12:31:53 -060012041MODULE_PARM_DESC(mode, "network mode (0=BSS,1=IBSS)");
12042#endif
12043
Zhu Yi810dabd2006-01-24 16:36:59 +080012044module_param(bt_coexist, int, 0444);
12045MODULE_PARM_DESC(bt_coexist, "enable bluetooth coexistence (default off)");
12046
James Ketrenosb095c382005-08-24 22:04:42 -050012047module_param(hwcrypto, int, 0444);
Zhu Yibde37d02006-01-24 16:38:08 +080012048MODULE_PARM_DESC(hwcrypto, "enable hardware crypto (default off)");
James Ketrenosb095c382005-08-24 22:04:42 -050012049
James Ketrenosf6c5cb72005-08-25 00:39:09 -050012050module_param(cmdlog, int, 0444);
12051MODULE_PARM_DESC(cmdlog,
12052 "allocate a ring buffer for logging firmware commands");
12053
Zhu Yi4bfdb912006-01-24 16:37:16 +080012054module_param(roaming, int, 0444);
12055MODULE_PARM_DESC(roaming, "enable roaming support (default on)");
12056
Zhu Yid2b83e12006-04-13 17:19:36 +080012057module_param(antenna, int, 0444);
12058MODULE_PARM_DESC(antenna, "select antenna 1=Main, 3=Aux, default 0 [both], 2=slow_diversity (choose the one with lower background noise)");
12059
James Ketrenos43f66a62005-03-25 12:31:53 -060012060module_exit(ipw_exit);
12061module_init(ipw_init);