blob: bbc579b647b61b6aa15b8ed3b7f4455cb8dd404c [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 */
1198static ssize_t show_debug_level(struct device_driver *d, char *buf)
1199{
1200 return sprintf(buf, "0x%08X\n", ipw_debug_level);
1201}
James Ketrenosa613bff2005-08-24 21:43:11 -05001202
1203static ssize_t store_debug_level(struct device_driver *d, const char *buf,
1204 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}
1224
Jeff Garzikbf794512005-07-31 13:07:26 -04001225static DRIVER_ATTR(debug_level, S_IWUSR | S_IRUGO,
James Ketrenos43f66a62005-03-25 12:31:53 -06001226 show_debug_level, store_debug_level);
1227
James Ketrenosb39860c2005-08-12 09:36:32 -05001228static inline u32 ipw_get_event_log_len(struct ipw_priv *priv)
1229{
Zhu Yic8fe6672006-01-24 16:36:36 +08001230 /* length = 1st dword in log */
James Ketrenosb39860c2005-08-12 09:36:32 -05001231 return ipw_read_reg32(priv, ipw_read32(priv, IPW_EVENT_LOG));
1232}
1233
1234static void ipw_capture_event_log(struct ipw_priv *priv,
1235 u32 log_len, struct ipw_event *log)
1236{
1237 u32 base;
1238
1239 if (log_len) {
1240 base = ipw_read32(priv, IPW_EVENT_LOG);
1241 ipw_read_indirect(priv, base + sizeof(base) + sizeof(u32),
1242 (u8 *) log, sizeof(*log) * log_len);
1243 }
1244}
1245
1246static struct ipw_fw_error *ipw_alloc_error_log(struct ipw_priv *priv)
1247{
1248 struct ipw_fw_error *error;
1249 u32 log_len = ipw_get_event_log_len(priv);
1250 u32 base = ipw_read32(priv, IPW_ERROR_LOG);
1251 u32 elem_len = ipw_read_reg32(priv, base);
1252
1253 error = kmalloc(sizeof(*error) +
1254 sizeof(*error->elem) * elem_len +
1255 sizeof(*error->log) * log_len, GFP_ATOMIC);
1256 if (!error) {
1257 IPW_ERROR("Memory allocation for firmware error log "
1258 "failed.\n");
1259 return NULL;
1260 }
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001261 error->jiffies = jiffies;
James Ketrenosb39860c2005-08-12 09:36:32 -05001262 error->status = priv->status;
1263 error->config = priv->config;
1264 error->elem_len = elem_len;
1265 error->log_len = log_len;
1266 error->elem = (struct ipw_error_elem *)error->payload;
Zhu Yi3b26b112005-11-17 13:58:30 +08001267 error->log = (struct ipw_event *)(error->elem + elem_len);
James Ketrenosb39860c2005-08-12 09:36:32 -05001268
1269 ipw_capture_event_log(priv, log_len, error->log);
1270
1271 if (elem_len)
1272 ipw_read_indirect(priv, base + sizeof(base), (u8 *) error->elem,
1273 sizeof(*error->elem) * elem_len);
1274
1275 return error;
1276}
1277
James Ketrenosb39860c2005-08-12 09:36:32 -05001278static ssize_t show_event_log(struct device *d,
1279 struct device_attribute *attr, char *buf)
1280{
1281 struct ipw_priv *priv = dev_get_drvdata(d);
1282 u32 log_len = ipw_get_event_log_len(priv);
Reinette Chatre412e9e72007-12-18 22:01:02 -08001283 u32 log_size;
1284 struct ipw_event *log;
James Ketrenosb39860c2005-08-12 09:36:32 -05001285 u32 len = 0, i;
1286
Reinette Chatre412e9e72007-12-18 22:01:02 -08001287 /* not using min() because of its strict type checking */
1288 log_size = PAGE_SIZE / sizeof(*log) > log_len ?
1289 sizeof(*log) * log_len : PAGE_SIZE;
1290 log = kzalloc(log_size, GFP_KERNEL);
1291 if (!log) {
1292 IPW_ERROR("Unable to allocate memory for log\n");
1293 return 0;
1294 }
1295 log_len = log_size / sizeof(*log);
James Ketrenosb39860c2005-08-12 09:36:32 -05001296 ipw_capture_event_log(priv, log_len, log);
1297
1298 len += snprintf(buf + len, PAGE_SIZE - len, "%08X", log_len);
1299 for (i = 0; i < log_len; i++)
1300 len += snprintf(buf + len, PAGE_SIZE - len,
1301 "\n%08X%08X%08X",
1302 log[i].time, log[i].event, log[i].data);
1303 len += snprintf(buf + len, PAGE_SIZE - len, "\n");
Reinette Chatre412e9e72007-12-18 22:01:02 -08001304 kfree(log);
James Ketrenosb39860c2005-08-12 09:36:32 -05001305 return len;
1306}
1307
1308static DEVICE_ATTR(event_log, S_IRUGO, show_event_log, NULL);
1309
1310static ssize_t show_error(struct device *d,
1311 struct device_attribute *attr, char *buf)
1312{
1313 struct ipw_priv *priv = dev_get_drvdata(d);
1314 u32 len = 0, i;
1315 if (!priv->error)
1316 return 0;
1317 len += snprintf(buf + len, PAGE_SIZE - len,
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001318 "%08lX%08X%08X%08X",
1319 priv->error->jiffies,
James Ketrenosb39860c2005-08-12 09:36:32 -05001320 priv->error->status,
1321 priv->error->config, priv->error->elem_len);
1322 for (i = 0; i < priv->error->elem_len; i++)
1323 len += snprintf(buf + len, PAGE_SIZE - len,
1324 "\n%08X%08X%08X%08X%08X%08X%08X",
1325 priv->error->elem[i].time,
1326 priv->error->elem[i].desc,
1327 priv->error->elem[i].blink1,
1328 priv->error->elem[i].blink2,
1329 priv->error->elem[i].link1,
1330 priv->error->elem[i].link2,
1331 priv->error->elem[i].data);
1332
1333 len += snprintf(buf + len, PAGE_SIZE - len,
1334 "\n%08X", priv->error->log_len);
1335 for (i = 0; i < priv->error->log_len; i++)
1336 len += snprintf(buf + len, PAGE_SIZE - len,
1337 "\n%08X%08X%08X",
1338 priv->error->log[i].time,
1339 priv->error->log[i].event,
1340 priv->error->log[i].data);
1341 len += snprintf(buf + len, PAGE_SIZE - len, "\n");
1342 return len;
1343}
1344
1345static ssize_t clear_error(struct device *d,
1346 struct device_attribute *attr,
1347 const char *buf, size_t count)
1348{
1349 struct ipw_priv *priv = dev_get_drvdata(d);
Jesper Juhl8f760782006-06-27 02:55:06 -07001350
1351 kfree(priv->error);
1352 priv->error = NULL;
James Ketrenosb39860c2005-08-12 09:36:32 -05001353 return count;
1354}
1355
1356static DEVICE_ATTR(error, S_IRUGO | S_IWUSR, show_error, clear_error);
1357
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001358static ssize_t show_cmd_log(struct device *d,
1359 struct device_attribute *attr, char *buf)
1360{
1361 struct ipw_priv *priv = dev_get_drvdata(d);
1362 u32 len = 0, i;
1363 if (!priv->cmdlog)
1364 return 0;
1365 for (i = (priv->cmdlog_pos + 1) % priv->cmdlog_len;
Dan Carpenter9fdc7232014-10-09 12:59:39 +03001366 (i != priv->cmdlog_pos) && (len < PAGE_SIZE);
James Ketrenosf6c5cb72005-08-25 00:39:09 -05001367 i = (i + 1) % priv->cmdlog_len) {
1368 len +=
1369 snprintf(buf + len, PAGE_SIZE - len,
1370 "\n%08lX%08X%08X%08X\n", priv->cmdlog[i].jiffies,
1371 priv->cmdlog[i].retcode, priv->cmdlog[i].cmd.cmd,
1372 priv->cmdlog[i].cmd.len);
1373 len +=
1374 snprintk_buf(buf + len, PAGE_SIZE - len,
1375 (u8 *) priv->cmdlog[i].cmd.param,
1376 priv->cmdlog[i].cmd.len);
1377 len += snprintf(buf + len, PAGE_SIZE - len, "\n");
1378 }
1379 len += snprintf(buf + len, PAGE_SIZE - len, "\n");
1380 return len;
1381}
1382
1383static DEVICE_ATTR(cmd_log, S_IRUGO, show_cmd_log, NULL);
1384
Zhu Yid685b8c2006-04-13 17:20:27 +08001385#ifdef CONFIG_IPW2200_PROMISCUOUS
1386static void ipw_prom_free(struct ipw_priv *priv);
1387static int ipw_prom_alloc(struct ipw_priv *priv);
1388static ssize_t store_rtap_iface(struct device *d,
1389 struct device_attribute *attr,
1390 const char *buf, size_t count)
1391{
1392 struct ipw_priv *priv = dev_get_drvdata(d);
1393 int rc = 0;
1394
1395 if (count < 1)
1396 return -EINVAL;
1397
1398 switch (buf[0]) {
1399 case '0':
1400 if (!rtap_iface)
1401 return count;
1402
1403 if (netif_running(priv->prom_net_dev)) {
1404 IPW_WARNING("Interface is up. Cannot unregister.\n");
1405 return count;
1406 }
1407
1408 ipw_prom_free(priv);
1409 rtap_iface = 0;
1410 break;
1411
1412 case '1':
1413 if (rtap_iface)
1414 return count;
1415
1416 rc = ipw_prom_alloc(priv);
1417 if (!rc)
1418 rtap_iface = 1;
1419 break;
1420
1421 default:
1422 return -EINVAL;
1423 }
1424
1425 if (rc) {
1426 IPW_ERROR("Failed to register promiscuous network "
1427 "device (error %d).\n", rc);
1428 }
1429
1430 return count;
1431}
1432
1433static ssize_t show_rtap_iface(struct device *d,
1434 struct device_attribute *attr,
1435 char *buf)
1436{
1437 struct ipw_priv *priv = dev_get_drvdata(d);
1438 if (rtap_iface)
1439 return sprintf(buf, "%s", priv->prom_net_dev->name);
1440 else {
1441 buf[0] = '-';
1442 buf[1] = '1';
1443 buf[2] = '\0';
1444 return 3;
1445 }
1446}
1447
1448static DEVICE_ATTR(rtap_iface, S_IWUSR | S_IRUSR, show_rtap_iface,
1449 store_rtap_iface);
1450
1451static ssize_t store_rtap_filter(struct device *d,
1452 struct device_attribute *attr,
1453 const char *buf, size_t count)
1454{
1455 struct ipw_priv *priv = dev_get_drvdata(d);
1456
1457 if (!priv->prom_priv) {
1458 IPW_ERROR("Attempting to set filter without "
1459 "rtap_iface enabled.\n");
1460 return -EPERM;
1461 }
1462
1463 priv->prom_priv->filter = simple_strtol(buf, NULL, 0);
1464
1465 IPW_DEBUG_INFO("Setting rtap filter to " BIT_FMT16 "\n",
1466 BIT_ARG16(priv->prom_priv->filter));
1467
1468 return count;
1469}
1470
1471static ssize_t show_rtap_filter(struct device *d,
1472 struct device_attribute *attr,
1473 char *buf)
1474{
1475 struct ipw_priv *priv = dev_get_drvdata(d);
1476 return sprintf(buf, "0x%04X",
1477 priv->prom_priv ? priv->prom_priv->filter : 0);
1478}
1479
1480static DEVICE_ATTR(rtap_filter, S_IWUSR | S_IRUSR, show_rtap_filter,
1481 store_rtap_filter);
1482#endif
1483
James Ketrenosa613bff2005-08-24 21:43:11 -05001484static ssize_t show_scan_age(struct device *d, struct device_attribute *attr,
1485 char *buf)
1486{
1487 struct ipw_priv *priv = dev_get_drvdata(d);
1488 return sprintf(buf, "%d\n", priv->ieee->scan_age);
1489}
1490
1491static ssize_t store_scan_age(struct device *d, struct device_attribute *attr,
1492 const char *buf, size_t count)
1493{
1494 struct ipw_priv *priv = dev_get_drvdata(d);
1495 struct net_device *dev = priv->net_dev;
1496 char buffer[] = "00000000";
1497 unsigned long len =
1498 (sizeof(buffer) - 1) > count ? count : sizeof(buffer) - 1;
1499 unsigned long val;
1500 char *p = buffer;
1501
1502 IPW_DEBUG_INFO("enter\n");
1503
1504 strncpy(buffer, buf, len);
1505 buffer[len] = 0;
1506
1507 if (p[1] == 'x' || p[1] == 'X' || p[0] == 'x' || p[0] == 'X') {
1508 p++;
1509 if (p[0] == 'x' || p[0] == 'X')
1510 p++;
1511 val = simple_strtoul(p, &p, 16);
1512 } else
1513 val = simple_strtoul(p, &p, 10);
1514 if (p == buffer) {
1515 IPW_DEBUG_INFO("%s: user supplied invalid value.\n", dev->name);
1516 } else {
1517 priv->ieee->scan_age = val;
1518 IPW_DEBUG_INFO("set scan_age = %u\n", priv->ieee->scan_age);
1519 }
1520
1521 IPW_DEBUG_INFO("exit\n");
1522 return len;
1523}
1524
1525static DEVICE_ATTR(scan_age, S_IWUSR | S_IRUGO, show_scan_age, store_scan_age);
1526
1527static ssize_t show_led(struct device *d, struct device_attribute *attr,
1528 char *buf)
1529{
1530 struct ipw_priv *priv = dev_get_drvdata(d);
1531 return sprintf(buf, "%d\n", (priv->config & CFG_NO_LED) ? 0 : 1);
1532}
1533
1534static ssize_t store_led(struct device *d, struct device_attribute *attr,
1535 const char *buf, size_t count)
1536{
1537 struct ipw_priv *priv = dev_get_drvdata(d);
1538
1539 IPW_DEBUG_INFO("enter\n");
1540
1541 if (count == 0)
1542 return 0;
1543
1544 if (*buf == 0) {
1545 IPW_DEBUG_LED("Disabling LED control.\n");
1546 priv->config |= CFG_NO_LED;
1547 ipw_led_shutdown(priv);
1548 } else {
1549 IPW_DEBUG_LED("Enabling LED control.\n");
1550 priv->config &= ~CFG_NO_LED;
1551 ipw_led_init(priv);
1552 }
1553
1554 IPW_DEBUG_INFO("exit\n");
1555 return count;
1556}
1557
1558static DEVICE_ATTR(led, S_IWUSR | S_IRUGO, show_led, store_led);
1559
Andrew Mortonad3fee52005-06-20 14:30:36 -07001560static ssize_t show_status(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001561 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001562{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001563 struct ipw_priv *p = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001564 return sprintf(buf, "0x%08x\n", (int)p->status);
1565}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001566
James Ketrenos43f66a62005-03-25 12:31:53 -06001567static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
1568
Andrew Mortonad3fee52005-06-20 14:30:36 -07001569static ssize_t show_cfg(struct device *d, struct device_attribute *attr,
1570 char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001571{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001572 struct ipw_priv *p = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001573 return sprintf(buf, "0x%08x\n", (int)p->config);
1574}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001575
James Ketrenos43f66a62005-03-25 12:31:53 -06001576static DEVICE_ATTR(cfg, S_IRUGO, show_cfg, NULL);
1577
Andrew Mortonad3fee52005-06-20 14:30:36 -07001578static ssize_t show_nic_type(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001579 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001580{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001581 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenosa613bff2005-08-24 21:43:11 -05001582 return sprintf(buf, "TYPE: %d\n", priv->nic_type);
James Ketrenos43f66a62005-03-25 12:31:53 -06001583}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001584
James Ketrenos43f66a62005-03-25 12:31:53 -06001585static DEVICE_ATTR(nic_type, S_IRUGO, show_nic_type, NULL);
1586
Andrew Mortonad3fee52005-06-20 14:30:36 -07001587static ssize_t show_ucode_version(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001588 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001589{
1590 u32 len = sizeof(u32), tmp = 0;
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001591 struct ipw_priv *p = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001592
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001593 if (ipw_get_ordinal(p, IPW_ORD_STAT_UCODE_VERSION, &tmp, &len))
James Ketrenos43f66a62005-03-25 12:31:53 -06001594 return 0;
1595
1596 return sprintf(buf, "0x%08x\n", tmp);
1597}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001598
1599static DEVICE_ATTR(ucode_version, S_IWUSR | S_IRUGO, show_ucode_version, NULL);
James Ketrenos43f66a62005-03-25 12:31:53 -06001600
Andrew Mortonad3fee52005-06-20 14:30:36 -07001601static ssize_t show_rtc(struct device *d, struct device_attribute *attr,
1602 char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001603{
1604 u32 len = sizeof(u32), tmp = 0;
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001605 struct ipw_priv *p = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001606
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001607 if (ipw_get_ordinal(p, IPW_ORD_STAT_RTC, &tmp, &len))
James Ketrenos43f66a62005-03-25 12:31:53 -06001608 return 0;
1609
1610 return sprintf(buf, "0x%08x\n", tmp);
1611}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001612
1613static DEVICE_ATTR(rtc, S_IWUSR | S_IRUGO, show_rtc, NULL);
James Ketrenos43f66a62005-03-25 12:31:53 -06001614
1615/*
1616 * Add a device attribute to view/control the delay between eeprom
1617 * operations.
1618 */
Andrew Mortonad3fee52005-06-20 14:30:36 -07001619static ssize_t show_eeprom_delay(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001620 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001621{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001622 struct ipw_priv *p = dev_get_drvdata(d);
1623 int n = p->eeprom_delay;
James Ketrenos43f66a62005-03-25 12:31:53 -06001624 return sprintf(buf, "%i\n", n);
1625}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001626static ssize_t store_eeprom_delay(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001627 struct device_attribute *attr,
1628 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001629{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001630 struct ipw_priv *p = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001631 sscanf(buf, "%i", &p->eeprom_delay);
1632 return strnlen(buf, count);
1633}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001634
1635static DEVICE_ATTR(eeprom_delay, S_IWUSR | S_IRUGO,
1636 show_eeprom_delay, store_eeprom_delay);
James Ketrenos43f66a62005-03-25 12:31:53 -06001637
Andrew Mortonad3fee52005-06-20 14:30:36 -07001638static ssize_t show_command_event_reg(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001639 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001640{
1641 u32 reg = 0;
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001642 struct ipw_priv *p = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001643
James Ketrenosb095c382005-08-24 22:04:42 -05001644 reg = ipw_read_reg32(p, IPW_INTERNAL_CMD_EVENT);
James Ketrenos43f66a62005-03-25 12:31:53 -06001645 return sprintf(buf, "0x%08x\n", reg);
1646}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001647static ssize_t store_command_event_reg(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001648 struct device_attribute *attr,
1649 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001650{
1651 u32 reg;
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001652 struct ipw_priv *p = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001653
1654 sscanf(buf, "%x", &reg);
James Ketrenosb095c382005-08-24 22:04:42 -05001655 ipw_write_reg32(p, IPW_INTERNAL_CMD_EVENT, reg);
James Ketrenos43f66a62005-03-25 12:31:53 -06001656 return strnlen(buf, count);
1657}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001658
1659static DEVICE_ATTR(command_event_reg, S_IWUSR | S_IRUGO,
1660 show_command_event_reg, store_command_event_reg);
James Ketrenos43f66a62005-03-25 12:31:53 -06001661
Andrew Mortonad3fee52005-06-20 14:30:36 -07001662static ssize_t show_mem_gpio_reg(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001663 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001664{
1665 u32 reg = 0;
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001666 struct ipw_priv *p = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001667
1668 reg = ipw_read_reg32(p, 0x301100);
1669 return sprintf(buf, "0x%08x\n", reg);
1670}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001671static ssize_t store_mem_gpio_reg(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001672 struct device_attribute *attr,
1673 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001674{
1675 u32 reg;
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001676 struct ipw_priv *p = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001677
1678 sscanf(buf, "%x", &reg);
1679 ipw_write_reg32(p, 0x301100, reg);
1680 return strnlen(buf, count);
1681}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001682
1683static DEVICE_ATTR(mem_gpio_reg, S_IWUSR | S_IRUGO,
1684 show_mem_gpio_reg, store_mem_gpio_reg);
James Ketrenos43f66a62005-03-25 12:31:53 -06001685
Andrew Mortonad3fee52005-06-20 14:30:36 -07001686static ssize_t show_indirect_dword(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001687 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001688{
1689 u32 reg = 0;
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001690 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenosafbf30a2005-08-25 00:05:33 -05001691
Jeff Garzikbf794512005-07-31 13:07:26 -04001692 if (priv->status & STATUS_INDIRECT_DWORD)
James Ketrenos43f66a62005-03-25 12:31:53 -06001693 reg = ipw_read_reg32(priv, priv->indirect_dword);
Jeff Garzikbf794512005-07-31 13:07:26 -04001694 else
James Ketrenos43f66a62005-03-25 12:31:53 -06001695 reg = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04001696
James Ketrenos43f66a62005-03-25 12:31:53 -06001697 return sprintf(buf, "0x%08x\n", reg);
1698}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001699static ssize_t store_indirect_dword(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001700 struct device_attribute *attr,
1701 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001702{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001703 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001704
1705 sscanf(buf, "%x", &priv->indirect_dword);
1706 priv->status |= STATUS_INDIRECT_DWORD;
1707 return strnlen(buf, count);
1708}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001709
1710static DEVICE_ATTR(indirect_dword, S_IWUSR | S_IRUGO,
1711 show_indirect_dword, store_indirect_dword);
James Ketrenos43f66a62005-03-25 12:31:53 -06001712
Andrew Mortonad3fee52005-06-20 14:30:36 -07001713static ssize_t show_indirect_byte(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001714 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001715{
1716 u8 reg = 0;
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001717 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenosafbf30a2005-08-25 00:05:33 -05001718
Jeff Garzikbf794512005-07-31 13:07:26 -04001719 if (priv->status & STATUS_INDIRECT_BYTE)
James Ketrenos43f66a62005-03-25 12:31:53 -06001720 reg = ipw_read_reg8(priv, priv->indirect_byte);
Jeff Garzikbf794512005-07-31 13:07:26 -04001721 else
James Ketrenos43f66a62005-03-25 12:31:53 -06001722 reg = 0;
1723
1724 return sprintf(buf, "0x%02x\n", reg);
1725}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001726static ssize_t store_indirect_byte(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001727 struct device_attribute *attr,
1728 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001729{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001730 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001731
1732 sscanf(buf, "%x", &priv->indirect_byte);
1733 priv->status |= STATUS_INDIRECT_BYTE;
1734 return strnlen(buf, count);
1735}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001736
1737static DEVICE_ATTR(indirect_byte, S_IWUSR | S_IRUGO,
James Ketrenos43f66a62005-03-25 12:31:53 -06001738 show_indirect_byte, store_indirect_byte);
1739
Andrew Mortonad3fee52005-06-20 14:30:36 -07001740static ssize_t show_direct_dword(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001741 struct device_attribute *attr, char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001742{
1743 u32 reg = 0;
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001744 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001745
Jeff Garzikbf794512005-07-31 13:07:26 -04001746 if (priv->status & STATUS_DIRECT_DWORD)
James Ketrenos43f66a62005-03-25 12:31:53 -06001747 reg = ipw_read32(priv, priv->direct_dword);
Jeff Garzikbf794512005-07-31 13:07:26 -04001748 else
James Ketrenos43f66a62005-03-25 12:31:53 -06001749 reg = 0;
1750
1751 return sprintf(buf, "0x%08x\n", reg);
1752}
Andrew Mortonad3fee52005-06-20 14:30:36 -07001753static ssize_t store_direct_dword(struct device *d,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001754 struct device_attribute *attr,
1755 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001756{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001757 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001758
1759 sscanf(buf, "%x", &priv->direct_dword);
1760 priv->status |= STATUS_DIRECT_DWORD;
1761 return strnlen(buf, count);
1762}
James Ketrenos43f66a62005-03-25 12:31:53 -06001763
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001764static DEVICE_ATTR(direct_dword, S_IWUSR | S_IRUGO,
1765 show_direct_dword, store_direct_dword);
James Ketrenos43f66a62005-03-25 12:31:53 -06001766
Arjan van de Ven858119e2006-01-14 13:20:43 -08001767static int rf_kill_active(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06001768{
Matthew Garrett25f94ae2009-11-11 14:36:31 -05001769 if (0 == (ipw_read32(priv, 0x30) & 0x10000)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001770 priv->status |= STATUS_RF_KILL_HW;
Matthew Garrett25f94ae2009-11-11 14:36:31 -05001771 wiphy_rfkill_set_hw_state(priv->ieee->wdev.wiphy, true);
1772 } else {
James Ketrenos43f66a62005-03-25 12:31:53 -06001773 priv->status &= ~STATUS_RF_KILL_HW;
Matthew Garrett25f94ae2009-11-11 14:36:31 -05001774 wiphy_rfkill_set_hw_state(priv->ieee->wdev.wiphy, false);
1775 }
James Ketrenos43f66a62005-03-25 12:31:53 -06001776
1777 return (priv->status & STATUS_RF_KILL_HW) ? 1 : 0;
1778}
1779
Andrew Mortonad3fee52005-06-20 14:30:36 -07001780static ssize_t show_rf_kill(struct device *d, struct device_attribute *attr,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001781 char *buf)
James Ketrenos43f66a62005-03-25 12:31:53 -06001782{
1783 /* 0 - RF kill not enabled
Jeff Garzikbf794512005-07-31 13:07:26 -04001784 1 - SW based RF kill active (sysfs)
James Ketrenos43f66a62005-03-25 12:31:53 -06001785 2 - HW based RF kill active
1786 3 - Both HW and SW baed RF kill active */
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001787 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenos43f66a62005-03-25 12:31:53 -06001788 int val = ((priv->status & STATUS_RF_KILL_SW) ? 0x1 : 0x0) |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001789 (rf_kill_active(priv) ? 0x2 : 0x0);
James Ketrenos43f66a62005-03-25 12:31:53 -06001790 return sprintf(buf, "%i\n", val);
1791}
1792
1793static int ipw_radio_kill_sw(struct ipw_priv *priv, int disable_radio)
1794{
Jeff Garzikbf794512005-07-31 13:07:26 -04001795 if ((disable_radio ? 1 : 0) ==
James Ketrenosea2b26e2005-08-24 21:25:16 -05001796 ((priv->status & STATUS_RF_KILL_SW) ? 1 : 0))
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001797 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06001798
1799 IPW_DEBUG_RF_KILL("Manual SW RF Kill set to: RADIO %s\n",
1800 disable_radio ? "OFF" : "ON");
1801
1802 if (disable_radio) {
1803 priv->status |= STATUS_RF_KILL_SW;
1804
Tejun Heobcb6d912011-01-26 12:12:50 +01001805 cancel_delayed_work(&priv->request_scan);
1806 cancel_delayed_work(&priv->request_direct_scan);
1807 cancel_delayed_work(&priv->request_passive_scan);
1808 cancel_delayed_work(&priv->scan_event);
1809 schedule_work(&priv->down);
James Ketrenos43f66a62005-03-25 12:31:53 -06001810 } else {
1811 priv->status &= ~STATUS_RF_KILL_SW;
1812 if (rf_kill_active(priv)) {
1813 IPW_DEBUG_RF_KILL("Can not turn radio back on - "
1814 "disabled by HW switch\n");
1815 /* Make sure the RF_KILL check timer is running */
1816 cancel_delayed_work(&priv->rf_kill);
Tejun Heobcb6d912011-01-26 12:12:50 +01001817 schedule_delayed_work(&priv->rf_kill,
1818 round_jiffies_relative(2 * HZ));
Jeff Garzikbf794512005-07-31 13:07:26 -04001819 } else
Tejun Heobcb6d912011-01-26 12:12:50 +01001820 schedule_work(&priv->up);
James Ketrenos43f66a62005-03-25 12:31:53 -06001821 }
1822
1823 return 1;
1824}
1825
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001826static ssize_t store_rf_kill(struct device *d, struct device_attribute *attr,
1827 const char *buf, size_t count)
James Ketrenos43f66a62005-03-25 12:31:53 -06001828{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001829 struct ipw_priv *priv = dev_get_drvdata(d);
Jeff Garzikbf794512005-07-31 13:07:26 -04001830
James Ketrenos43f66a62005-03-25 12:31:53 -06001831 ipw_radio_kill_sw(priv, buf[0] == '1');
1832
1833 return count;
1834}
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001835
1836static DEVICE_ATTR(rf_kill, S_IWUSR | S_IRUGO, show_rf_kill, store_rf_kill);
James Ketrenos43f66a62005-03-25 12:31:53 -06001837
James Ketrenosb095c382005-08-24 22:04:42 -05001838static ssize_t show_speed_scan(struct device *d, struct device_attribute *attr,
1839 char *buf)
1840{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001841 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenosb095c382005-08-24 22:04:42 -05001842 int pos = 0, len = 0;
1843 if (priv->config & CFG_SPEED_SCAN) {
1844 while (priv->speed_scan[pos] != 0)
1845 len += sprintf(&buf[len], "%d ",
1846 priv->speed_scan[pos++]);
1847 return len + sprintf(&buf[len], "\n");
1848 }
1849
1850 return sprintf(buf, "0\n");
1851}
1852
1853static ssize_t store_speed_scan(struct device *d, struct device_attribute *attr,
1854 const char *buf, size_t count)
1855{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001856 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenosb095c382005-08-24 22:04:42 -05001857 int channel, pos = 0;
1858 const char *p = buf;
1859
1860 /* list of space separated channels to scan, optionally ending with 0 */
1861 while ((channel = simple_strtol(p, NULL, 0))) {
1862 if (pos == MAX_SPEED_SCAN - 1) {
1863 priv->speed_scan[pos] = 0;
1864 break;
1865 }
1866
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001867 if (libipw_is_valid_channel(priv->ieee, channel))
James Ketrenosb095c382005-08-24 22:04:42 -05001868 priv->speed_scan[pos++] = channel;
1869 else
1870 IPW_WARNING("Skipping invalid channel request: %d\n",
1871 channel);
1872 p = strchr(p, ' ');
1873 if (!p)
1874 break;
1875 while (*p == ' ' || *p == '\t')
1876 p++;
1877 }
1878
1879 if (pos == 0)
1880 priv->config &= ~CFG_SPEED_SCAN;
1881 else {
1882 priv->speed_scan_pos = 0;
1883 priv->config |= CFG_SPEED_SCAN;
1884 }
1885
1886 return count;
1887}
1888
1889static DEVICE_ATTR(speed_scan, S_IWUSR | S_IRUGO, show_speed_scan,
1890 store_speed_scan);
1891
1892static ssize_t show_net_stats(struct device *d, struct device_attribute *attr,
1893 char *buf)
1894{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001895 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenosb095c382005-08-24 22:04:42 -05001896 return sprintf(buf, "%c\n", (priv->config & CFG_NET_STATS) ? '1' : '0');
1897}
1898
1899static ssize_t store_net_stats(struct device *d, struct device_attribute *attr,
1900 const char *buf, size_t count)
1901{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07001902 struct ipw_priv *priv = dev_get_drvdata(d);
James Ketrenosb095c382005-08-24 22:04:42 -05001903 if (buf[0] == '1')
1904 priv->config |= CFG_NET_STATS;
1905 else
1906 priv->config &= ~CFG_NET_STATS;
1907
1908 return count;
1909}
1910
James Ketrenosafbf30a2005-08-25 00:05:33 -05001911static DEVICE_ATTR(net_stats, S_IWUSR | S_IRUGO,
1912 show_net_stats, store_net_stats);
James Ketrenosb095c382005-08-24 22:04:42 -05001913
Zhu Yi375dd242007-02-14 16:04:24 +08001914static ssize_t show_channels(struct device *d,
1915 struct device_attribute *attr,
1916 char *buf)
1917{
1918 struct ipw_priv *priv = dev_get_drvdata(d);
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001919 const struct libipw_geo *geo = libipw_get_geo(priv->ieee);
Zhu Yi375dd242007-02-14 16:04:24 +08001920 int len = 0, i;
1921
1922 len = sprintf(&buf[len],
1923 "Displaying %d channels in 2.4Ghz band "
1924 "(802.11bg):\n", geo->bg_channels);
1925
1926 for (i = 0; i < geo->bg_channels; i++) {
1927 len += sprintf(&buf[len], "%d: BSS%s%s, %s, Band %s.\n",
1928 geo->bg[i].channel,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001929 geo->bg[i].flags & LIBIPW_CH_RADAR_DETECT ?
Zhu Yi375dd242007-02-14 16:04:24 +08001930 " (radar spectrum)" : "",
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001931 ((geo->bg[i].flags & LIBIPW_CH_NO_IBSS) ||
1932 (geo->bg[i].flags & LIBIPW_CH_RADAR_DETECT))
Zhu Yi375dd242007-02-14 16:04:24 +08001933 ? "" : ", IBSS",
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001934 geo->bg[i].flags & LIBIPW_CH_PASSIVE_ONLY ?
Zhu Yi375dd242007-02-14 16:04:24 +08001935 "passive only" : "active/passive",
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001936 geo->bg[i].flags & LIBIPW_CH_B_ONLY ?
Zhu Yi375dd242007-02-14 16:04:24 +08001937 "B" : "B/G");
1938 }
1939
1940 len += sprintf(&buf[len],
1941 "Displaying %d channels in 5.2Ghz band "
1942 "(802.11a):\n", geo->a_channels);
1943 for (i = 0; i < geo->a_channels; i++) {
1944 len += sprintf(&buf[len], "%d: BSS%s%s, %s.\n",
1945 geo->a[i].channel,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001946 geo->a[i].flags & LIBIPW_CH_RADAR_DETECT ?
Zhu Yi375dd242007-02-14 16:04:24 +08001947 " (radar spectrum)" : "",
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001948 ((geo->a[i].flags & LIBIPW_CH_NO_IBSS) ||
1949 (geo->a[i].flags & LIBIPW_CH_RADAR_DETECT))
Zhu Yi375dd242007-02-14 16:04:24 +08001950 ? "" : ", IBSS",
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001951 geo->a[i].flags & LIBIPW_CH_PASSIVE_ONLY ?
Zhu Yi375dd242007-02-14 16:04:24 +08001952 "passive only" : "active/passive");
1953 }
1954
1955 return len;
1956}
1957
1958static DEVICE_ATTR(channels, S_IRUSR, show_channels, NULL);
1959
James Ketrenosea2b26e2005-08-24 21:25:16 -05001960static void notify_wx_assoc_event(struct ipw_priv *priv)
1961{
1962 union iwreq_data wrqu;
1963 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
1964 if (priv->status & STATUS_ASSOCIATED)
1965 memcpy(wrqu.ap_addr.sa_data, priv->bssid, ETH_ALEN);
1966 else
Joe Perches93803b32015-03-02 19:54:49 -08001967 eth_zero_addr(wrqu.ap_addr.sa_data);
James Ketrenosea2b26e2005-08-24 21:25:16 -05001968 wireless_send_event(priv->net_dev, SIOCGIWAP, &wrqu, NULL);
1969}
1970
James Ketrenos43f66a62005-03-25 12:31:53 -06001971static void ipw_irq_tasklet(struct ipw_priv *priv)
1972{
1973 u32 inta, inta_mask, handled = 0;
1974 unsigned long flags;
1975 int rc = 0;
1976
Zhu Yi89c318e2006-06-08 22:19:49 -07001977 spin_lock_irqsave(&priv->irq_lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06001978
James Ketrenosb095c382005-08-24 22:04:42 -05001979 inta = ipw_read32(priv, IPW_INTA_RW);
1980 inta_mask = ipw_read32(priv, IPW_INTA_MASK_R);
Indan Zupancic3c4a8cc2011-01-08 12:17:27 +01001981
1982 if (inta == 0xFFFFFFFF) {
1983 /* Hardware disappeared */
1984 IPW_WARNING("TASKLET INTA == 0xFFFFFFFF\n");
1985 /* Only handle the cached INTA values */
1986 inta = 0;
1987 }
James Ketrenosb095c382005-08-24 22:04:42 -05001988 inta &= (IPW_INTA_MASK_ALL & inta_mask);
James Ketrenos43f66a62005-03-25 12:31:53 -06001989
1990 /* Add any cached INTA values that need to be handled */
1991 inta |= priv->isr_inta;
1992
Zhu Yi89c318e2006-06-08 22:19:49 -07001993 spin_unlock_irqrestore(&priv->irq_lock, flags);
1994
1995 spin_lock_irqsave(&priv->lock, flags);
1996
James Ketrenos43f66a62005-03-25 12:31:53 -06001997 /* handle all the justifications for the interrupt */
James Ketrenosb095c382005-08-24 22:04:42 -05001998 if (inta & IPW_INTA_BIT_RX_TRANSFER) {
James Ketrenos43f66a62005-03-25 12:31:53 -06001999 ipw_rx(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05002000 handled |= IPW_INTA_BIT_RX_TRANSFER;
James Ketrenos43f66a62005-03-25 12:31:53 -06002001 }
2002
James Ketrenosb095c382005-08-24 22:04:42 -05002003 if (inta & IPW_INTA_BIT_TX_CMD_QUEUE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002004 IPW_DEBUG_HC("Command completed.\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002005 rc = ipw_queue_tx_reclaim(priv, &priv->txq_cmd, -1);
James Ketrenos43f66a62005-03-25 12:31:53 -06002006 priv->status &= ~STATUS_HCMD_ACTIVE;
2007 wake_up_interruptible(&priv->wait_command_queue);
James Ketrenosb095c382005-08-24 22:04:42 -05002008 handled |= IPW_INTA_BIT_TX_CMD_QUEUE;
James Ketrenos43f66a62005-03-25 12:31:53 -06002009 }
2010
James Ketrenosb095c382005-08-24 22:04:42 -05002011 if (inta & IPW_INTA_BIT_TX_QUEUE_1) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002012 IPW_DEBUG_TX("TX_QUEUE_1\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002013 rc = ipw_queue_tx_reclaim(priv, &priv->txq[0], 0);
James Ketrenosb095c382005-08-24 22:04:42 -05002014 handled |= IPW_INTA_BIT_TX_QUEUE_1;
James Ketrenos43f66a62005-03-25 12:31:53 -06002015 }
2016
James Ketrenosb095c382005-08-24 22:04:42 -05002017 if (inta & IPW_INTA_BIT_TX_QUEUE_2) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002018 IPW_DEBUG_TX("TX_QUEUE_2\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002019 rc = ipw_queue_tx_reclaim(priv, &priv->txq[1], 1);
James Ketrenosb095c382005-08-24 22:04:42 -05002020 handled |= IPW_INTA_BIT_TX_QUEUE_2;
James Ketrenos43f66a62005-03-25 12:31:53 -06002021 }
2022
James Ketrenosb095c382005-08-24 22:04:42 -05002023 if (inta & IPW_INTA_BIT_TX_QUEUE_3) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002024 IPW_DEBUG_TX("TX_QUEUE_3\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002025 rc = ipw_queue_tx_reclaim(priv, &priv->txq[2], 2);
James Ketrenosb095c382005-08-24 22:04:42 -05002026 handled |= IPW_INTA_BIT_TX_QUEUE_3;
James Ketrenos43f66a62005-03-25 12:31:53 -06002027 }
2028
James Ketrenosb095c382005-08-24 22:04:42 -05002029 if (inta & IPW_INTA_BIT_TX_QUEUE_4) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002030 IPW_DEBUG_TX("TX_QUEUE_4\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002031 rc = ipw_queue_tx_reclaim(priv, &priv->txq[3], 3);
James Ketrenosb095c382005-08-24 22:04:42 -05002032 handled |= IPW_INTA_BIT_TX_QUEUE_4;
James Ketrenos43f66a62005-03-25 12:31:53 -06002033 }
2034
James Ketrenosb095c382005-08-24 22:04:42 -05002035 if (inta & IPW_INTA_BIT_STATUS_CHANGE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002036 IPW_WARNING("STATUS_CHANGE\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002037 handled |= IPW_INTA_BIT_STATUS_CHANGE;
James Ketrenos43f66a62005-03-25 12:31:53 -06002038 }
2039
James Ketrenosb095c382005-08-24 22:04:42 -05002040 if (inta & IPW_INTA_BIT_BEACON_PERIOD_EXPIRED) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002041 IPW_WARNING("TX_PERIOD_EXPIRED\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002042 handled |= IPW_INTA_BIT_BEACON_PERIOD_EXPIRED;
James Ketrenos43f66a62005-03-25 12:31:53 -06002043 }
2044
James Ketrenosb095c382005-08-24 22:04:42 -05002045 if (inta & IPW_INTA_BIT_SLAVE_MODE_HOST_CMD_DONE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002046 IPW_WARNING("HOST_CMD_DONE\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002047 handled |= IPW_INTA_BIT_SLAVE_MODE_HOST_CMD_DONE;
James Ketrenos43f66a62005-03-25 12:31:53 -06002048 }
2049
James Ketrenosb095c382005-08-24 22:04:42 -05002050 if (inta & IPW_INTA_BIT_FW_INITIALIZATION_DONE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002051 IPW_WARNING("FW_INITIALIZATION_DONE\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002052 handled |= IPW_INTA_BIT_FW_INITIALIZATION_DONE;
James Ketrenos43f66a62005-03-25 12:31:53 -06002053 }
2054
James Ketrenosb095c382005-08-24 22:04:42 -05002055 if (inta & IPW_INTA_BIT_FW_CARD_DISABLE_PHY_OFF_DONE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002056 IPW_WARNING("PHY_OFF_DONE\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002057 handled |= IPW_INTA_BIT_FW_CARD_DISABLE_PHY_OFF_DONE;
James Ketrenos43f66a62005-03-25 12:31:53 -06002058 }
2059
James Ketrenosb095c382005-08-24 22:04:42 -05002060 if (inta & IPW_INTA_BIT_RF_KILL_DONE) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002061 IPW_DEBUG_RF_KILL("RF_KILL_DONE\n");
2062 priv->status |= STATUS_RF_KILL_HW;
Matthew Garrett25f94ae2009-11-11 14:36:31 -05002063 wiphy_rfkill_set_hw_state(priv->ieee->wdev.wiphy, true);
James Ketrenos43f66a62005-03-25 12:31:53 -06002064 wake_up_interruptible(&priv->wait_command_queue);
James Ketrenosea2b26e2005-08-24 21:25:16 -05002065 priv->status &= ~(STATUS_ASSOCIATED | STATUS_ASSOCIATING);
James Ketrenos43f66a62005-03-25 12:31:53 -06002066 cancel_delayed_work(&priv->request_scan);
Dan Williamsea177302008-06-02 17:51:23 -04002067 cancel_delayed_work(&priv->request_direct_scan);
2068 cancel_delayed_work(&priv->request_passive_scan);
Dan Williams0b531672007-10-09 13:55:24 -04002069 cancel_delayed_work(&priv->scan_event);
James Ketrenosa613bff2005-08-24 21:43:11 -05002070 schedule_work(&priv->link_down);
Tejun Heobcb6d912011-01-26 12:12:50 +01002071 schedule_delayed_work(&priv->rf_kill, 2 * HZ);
James Ketrenosb095c382005-08-24 22:04:42 -05002072 handled |= IPW_INTA_BIT_RF_KILL_DONE;
James Ketrenos43f66a62005-03-25 12:31:53 -06002073 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002074
James Ketrenosb095c382005-08-24 22:04:42 -05002075 if (inta & IPW_INTA_BIT_FATAL_ERROR) {
Zhu Yi1d1b09e2006-03-02 06:40:59 +08002076 IPW_WARNING("Firmware error detected. Restarting.\n");
James Ketrenosb39860c2005-08-12 09:36:32 -05002077 if (priv->error) {
Zhu Yi1d1b09e2006-03-02 06:40:59 +08002078 IPW_DEBUG_FW("Sysfs 'error' log already exists.\n");
James Ketrenosb39860c2005-08-12 09:36:32 -05002079 if (ipw_debug_level & IPW_DL_FW_ERRORS) {
2080 struct ipw_fw_error *error =
2081 ipw_alloc_error_log(priv);
2082 ipw_dump_error_log(priv, error);
Jesper Juhl8f760782006-06-27 02:55:06 -07002083 kfree(error);
James Ketrenosb39860c2005-08-12 09:36:32 -05002084 }
James Ketrenosb39860c2005-08-12 09:36:32 -05002085 } else {
2086 priv->error = ipw_alloc_error_log(priv);
2087 if (priv->error)
Zhu Yi1d1b09e2006-03-02 06:40:59 +08002088 IPW_DEBUG_FW("Sysfs 'error' log captured.\n");
James Ketrenosb39860c2005-08-12 09:36:32 -05002089 else
Zhu Yi1d1b09e2006-03-02 06:40:59 +08002090 IPW_DEBUG_FW("Error allocating sysfs 'error' "
2091 "log.\n");
James Ketrenosb39860c2005-08-12 09:36:32 -05002092 if (ipw_debug_level & IPW_DL_FW_ERRORS)
2093 ipw_dump_error_log(priv, priv->error);
James Ketrenosb39860c2005-08-12 09:36:32 -05002094 }
2095
James Ketrenosb095c382005-08-24 22:04:42 -05002096 /* XXX: If hardware encryption is for WPA/WPA2,
2097 * we have to notify the supplicant. */
2098 if (priv->ieee->sec.encrypt) {
2099 priv->status &= ~STATUS_ASSOCIATED;
2100 notify_wx_assoc_event(priv);
2101 }
2102
2103 /* Keep the restart process from trying to send host
2104 * commands by clearing the INIT status bit */
2105 priv->status &= ~STATUS_INIT;
James Ketrenosafbf30a2005-08-25 00:05:33 -05002106
2107 /* Cancel currently queued command. */
2108 priv->status &= ~STATUS_HCMD_ACTIVE;
2109 wake_up_interruptible(&priv->wait_command_queue);
2110
Tejun Heobcb6d912011-01-26 12:12:50 +01002111 schedule_work(&priv->adapter_restart);
James Ketrenosb095c382005-08-24 22:04:42 -05002112 handled |= IPW_INTA_BIT_FATAL_ERROR;
James Ketrenos43f66a62005-03-25 12:31:53 -06002113 }
2114
James Ketrenosb095c382005-08-24 22:04:42 -05002115 if (inta & IPW_INTA_BIT_PARITY_ERROR) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002116 IPW_ERROR("Parity error\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002117 handled |= IPW_INTA_BIT_PARITY_ERROR;
James Ketrenos43f66a62005-03-25 12:31:53 -06002118 }
2119
2120 if (handled != inta) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002121 IPW_ERROR("Unhandled INTA bits 0x%08x\n", inta & ~handled);
James Ketrenos43f66a62005-03-25 12:31:53 -06002122 }
2123
Zhu Yi89c318e2006-06-08 22:19:49 -07002124 spin_unlock_irqrestore(&priv->lock, flags);
2125
James Ketrenos43f66a62005-03-25 12:31:53 -06002126 /* enable all interrupts */
2127 ipw_enable_interrupts(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06002128}
Jeff Garzikbf794512005-07-31 13:07:26 -04002129
James Ketrenos43f66a62005-03-25 12:31:53 -06002130#define IPW_CMD(x) case IPW_CMD_ ## x : return #x
2131static char *get_cmd_string(u8 cmd)
2132{
2133 switch (cmd) {
2134 IPW_CMD(HOST_COMPLETE);
Jeff Garzikbf794512005-07-31 13:07:26 -04002135 IPW_CMD(POWER_DOWN);
2136 IPW_CMD(SYSTEM_CONFIG);
2137 IPW_CMD(MULTICAST_ADDRESS);
2138 IPW_CMD(SSID);
2139 IPW_CMD(ADAPTER_ADDRESS);
2140 IPW_CMD(PORT_TYPE);
2141 IPW_CMD(RTS_THRESHOLD);
2142 IPW_CMD(FRAG_THRESHOLD);
2143 IPW_CMD(POWER_MODE);
2144 IPW_CMD(WEP_KEY);
2145 IPW_CMD(TGI_TX_KEY);
2146 IPW_CMD(SCAN_REQUEST);
2147 IPW_CMD(SCAN_REQUEST_EXT);
2148 IPW_CMD(ASSOCIATE);
2149 IPW_CMD(SUPPORTED_RATES);
2150 IPW_CMD(SCAN_ABORT);
2151 IPW_CMD(TX_FLUSH);
2152 IPW_CMD(QOS_PARAMETERS);
2153 IPW_CMD(DINO_CONFIG);
2154 IPW_CMD(RSN_CAPABILITIES);
2155 IPW_CMD(RX_KEY);
2156 IPW_CMD(CARD_DISABLE);
2157 IPW_CMD(SEED_NUMBER);
2158 IPW_CMD(TX_POWER);
2159 IPW_CMD(COUNTRY_INFO);
2160 IPW_CMD(AIRONET_INFO);
2161 IPW_CMD(AP_TX_POWER);
2162 IPW_CMD(CCKM_INFO);
2163 IPW_CMD(CCX_VER_INFO);
2164 IPW_CMD(SET_CALIBRATION);
2165 IPW_CMD(SENSITIVITY_CALIB);
2166 IPW_CMD(RETRY_LIMIT);
2167 IPW_CMD(IPW_PRE_POWER_DOWN);
2168 IPW_CMD(VAP_BEACON_TEMPLATE);
2169 IPW_CMD(VAP_DTIM_PERIOD);
2170 IPW_CMD(EXT_SUPPORTED_RATES);
2171 IPW_CMD(VAP_LOCAL_TX_PWR_CONSTRAINT);
2172 IPW_CMD(VAP_QUIET_INTERVALS);
2173 IPW_CMD(VAP_CHANNEL_SWITCH);
2174 IPW_CMD(VAP_MANDATORY_CHANNELS);
2175 IPW_CMD(VAP_CELL_PWR_LIMIT);
2176 IPW_CMD(VAP_CF_PARAM_SET);
2177 IPW_CMD(VAP_SET_BEACONING_STATE);
2178 IPW_CMD(MEASUREMENT);
2179 IPW_CMD(POWER_CAPABILITY);
2180 IPW_CMD(SUPPORTED_CHANNELS);
2181 IPW_CMD(TPC_REPORT);
2182 IPW_CMD(WME_INFO);
2183 IPW_CMD(PRODUCTION_COMMAND);
2184 default:
James Ketrenos43f66a62005-03-25 12:31:53 -06002185 return "UNKNOWN";
2186 }
2187}
James Ketrenos43f66a62005-03-25 12:31:53 -06002188
2189#define HOST_COMPLETE_TIMEOUT HZ
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002190
2191static int __ipw_send_cmd(struct ipw_priv *priv, struct host_cmd *cmd)
James Ketrenos43f66a62005-03-25 12:31:53 -06002192{
2193 int rc = 0;
James Ketrenosa613bff2005-08-24 21:43:11 -05002194 unsigned long flags;
Stanislav Yakovlevdd447312012-04-19 15:55:09 -04002195 unsigned long now, end;
James Ketrenos43f66a62005-03-25 12:31:53 -06002196
James Ketrenosa613bff2005-08-24 21:43:11 -05002197 spin_lock_irqsave(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06002198 if (priv->status & STATUS_HCMD_ACTIVE) {
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002199 IPW_ERROR("Failed to send %s: Already sending a command.\n",
2200 get_cmd_string(cmd->cmd));
James Ketrenosa613bff2005-08-24 21:43:11 -05002201 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002202 return -EAGAIN;
James Ketrenos43f66a62005-03-25 12:31:53 -06002203 }
2204
2205 priv->status |= STATUS_HCMD_ACTIVE;
Jeff Garzikbf794512005-07-31 13:07:26 -04002206
James Ketrenosf6c5cb72005-08-25 00:39:09 -05002207 if (priv->cmdlog) {
2208 priv->cmdlog[priv->cmdlog_pos].jiffies = jiffies;
2209 priv->cmdlog[priv->cmdlog_pos].cmd.cmd = cmd->cmd;
2210 priv->cmdlog[priv->cmdlog_pos].cmd.len = cmd->len;
2211 memcpy(priv->cmdlog[priv->cmdlog_pos].cmd.param, cmd->param,
2212 cmd->len);
2213 priv->cmdlog[priv->cmdlog_pos].retcode = -1;
2214 }
2215
James Ketrenosb095c382005-08-24 22:04:42 -05002216 IPW_DEBUG_HC("%s command (#%d) %d bytes: 0x%08X\n",
2217 get_cmd_string(cmd->cmd), cmd->cmd, cmd->len,
2218 priv->status);
Zhu Yif516dbc2006-01-24 16:36:44 +08002219
2220#ifndef DEBUG_CMD_WEP_KEY
2221 if (cmd->cmd == IPW_CMD_WEP_KEY)
2222 IPW_DEBUG_HC("WEP_KEY command masked out for secure.\n");
2223 else
2224#endif
2225 printk_buf(IPW_DL_HOST_COMMAND, (u8 *) cmd->param, cmd->len);
2226
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002227 rc = ipw_queue_tx_hcmd(priv, cmd->cmd, cmd->param, cmd->len, 0);
James Ketrenosa613bff2005-08-24 21:43:11 -05002228 if (rc) {
2229 priv->status &= ~STATUS_HCMD_ACTIVE;
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002230 IPW_ERROR("Failed to send %s: Reason %d\n",
2231 get_cmd_string(cmd->cmd), rc);
James Ketrenosa613bff2005-08-24 21:43:11 -05002232 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenosf6c5cb72005-08-25 00:39:09 -05002233 goto exit;
James Ketrenosa613bff2005-08-24 21:43:11 -05002234 }
2235 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06002236
Stanislav Yakovlevdd447312012-04-19 15:55:09 -04002237 now = jiffies;
2238 end = now + HOST_COMPLETE_TIMEOUT;
2239again:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002240 rc = wait_event_interruptible_timeout(priv->wait_command_queue,
2241 !(priv->
2242 status & STATUS_HCMD_ACTIVE),
Stanislav Yakovlevdd447312012-04-19 15:55:09 -04002243 end - now);
2244 if (rc < 0) {
2245 now = jiffies;
2246 if (time_before(now, end))
2247 goto again;
2248 rc = 0;
2249 }
2250
James Ketrenos43f66a62005-03-25 12:31:53 -06002251 if (rc == 0) {
James Ketrenosa613bff2005-08-24 21:43:11 -05002252 spin_lock_irqsave(&priv->lock, flags);
2253 if (priv->status & STATUS_HCMD_ACTIVE) {
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002254 IPW_ERROR("Failed to send %s: Command timed out.\n",
2255 get_cmd_string(cmd->cmd));
James Ketrenosa613bff2005-08-24 21:43:11 -05002256 priv->status &= ~STATUS_HCMD_ACTIVE;
2257 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenosf6c5cb72005-08-25 00:39:09 -05002258 rc = -EIO;
2259 goto exit;
James Ketrenosa613bff2005-08-24 21:43:11 -05002260 }
2261 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos3b9990c2005-08-19 13:18:55 -05002262 } else
2263 rc = 0;
James Ketrenosa613bff2005-08-24 21:43:11 -05002264
James Ketrenosb095c382005-08-24 22:04:42 -05002265 if (priv->status & STATUS_RF_KILL_HW) {
James Ketrenos9ddf84f2005-08-16 17:07:11 -05002266 IPW_ERROR("Failed to send %s: Aborted due to RF kill switch.\n",
2267 get_cmd_string(cmd->cmd));
James Ketrenosf6c5cb72005-08-25 00:39:09 -05002268 rc = -EIO;
2269 goto exit;
James Ketrenos43f66a62005-03-25 12:31:53 -06002270 }
2271
Zhu Yi2638bc32006-01-24 16:37:52 +08002272 exit:
James Ketrenosf6c5cb72005-08-25 00:39:09 -05002273 if (priv->cmdlog) {
2274 priv->cmdlog[priv->cmdlog_pos++].retcode = rc;
2275 priv->cmdlog_pos %= priv->cmdlog_len;
2276 }
2277 return rc;
James Ketrenos43f66a62005-03-25 12:31:53 -06002278}
2279
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002280static int ipw_send_cmd_simple(struct ipw_priv *priv, u8 command)
James Ketrenos43f66a62005-03-25 12:31:53 -06002281{
2282 struct host_cmd cmd = {
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002283 .cmd = command,
James Ketrenos43f66a62005-03-25 12:31:53 -06002284 };
2285
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002286 return __ipw_send_cmd(priv, &cmd);
2287}
2288
2289static int ipw_send_cmd_pdu(struct ipw_priv *priv, u8 command, u8 len,
2290 void *data)
2291{
2292 struct host_cmd cmd = {
2293 .cmd = command,
2294 .len = len,
2295 .param = data,
2296 };
2297
2298 return __ipw_send_cmd(priv, &cmd);
2299}
2300
2301static int ipw_send_host_complete(struct ipw_priv *priv)
2302{
James Ketrenos43f66a62005-03-25 12:31:53 -06002303 if (!priv) {
2304 IPW_ERROR("Invalid args\n");
2305 return -1;
2306 }
2307
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002308 return ipw_send_cmd_simple(priv, IPW_CMD_HOST_COMPLETE);
James Ketrenos43f66a62005-03-25 12:31:53 -06002309}
2310
Zhu Yid685b8c2006-04-13 17:20:27 +08002311static int ipw_send_system_config(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002312{
Zhu Yid685b8c2006-04-13 17:20:27 +08002313 return ipw_send_cmd_pdu(priv, IPW_CMD_SYSTEM_CONFIG,
2314 sizeof(priv->sys_config),
2315 &priv->sys_config);
James Ketrenos43f66a62005-03-25 12:31:53 -06002316}
2317
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002318static int ipw_send_ssid(struct ipw_priv *priv, u8 * ssid, int len)
James Ketrenos43f66a62005-03-25 12:31:53 -06002319{
James Ketrenos43f66a62005-03-25 12:31:53 -06002320 if (!priv || !ssid) {
2321 IPW_ERROR("Invalid args\n");
2322 return -1;
2323 }
2324
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002325 return ipw_send_cmd_pdu(priv, IPW_CMD_SSID, min(len, IW_ESSID_MAX_SIZE),
Zhu Yi2638bc32006-01-24 16:37:52 +08002326 ssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06002327}
2328
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002329static int ipw_send_adapter_address(struct ipw_priv *priv, u8 * mac)
James Ketrenos43f66a62005-03-25 12:31:53 -06002330{
James Ketrenos43f66a62005-03-25 12:31:53 -06002331 if (!priv || !mac) {
2332 IPW_ERROR("Invalid args\n");
2333 return -1;
2334 }
2335
Johannes Berge1749612008-10-27 15:59:26 -07002336 IPW_DEBUG_INFO("%s: Setting MAC to %pM\n",
2337 priv->net_dev->name, mac);
James Ketrenos43f66a62005-03-25 12:31:53 -06002338
Zhu Yi2638bc32006-01-24 16:37:52 +08002339 return ipw_send_cmd_pdu(priv, IPW_CMD_ADAPTER_ADDRESS, ETH_ALEN, mac);
James Ketrenos43f66a62005-03-25 12:31:53 -06002340}
2341
2342static void ipw_adapter_restart(void *adapter)
2343{
2344 struct ipw_priv *priv = adapter;
2345
2346 if (priv->status & STATUS_RF_KILL_MASK)
2347 return;
2348
2349 ipw_down(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05002350
2351 if (priv->assoc_network &&
2352 (priv->assoc_network->capability & WLAN_CAPABILITY_IBSS))
2353 ipw_remove_current_network(priv);
2354
James Ketrenos43f66a62005-03-25 12:31:53 -06002355 if (ipw_up(priv)) {
2356 IPW_ERROR("Failed to up device\n");
2357 return;
2358 }
2359}
2360
David Howellsc4028952006-11-22 14:57:56 +00002361static void ipw_bg_adapter_restart(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -05002362{
David Howellsc4028952006-11-22 14:57:56 +00002363 struct ipw_priv *priv =
2364 container_of(work, struct ipw_priv, adapter_restart);
Zhu Yi46441512006-01-24 16:37:59 +08002365 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00002366 ipw_adapter_restart(priv);
Zhu Yi46441512006-01-24 16:37:59 +08002367 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05002368}
2369
Zhu Yie65054b2010-03-30 09:36:16 +08002370static void ipw_abort_scan(struct ipw_priv *priv);
2371
2372#define IPW_SCAN_CHECK_WATCHDOG (5 * HZ)
James Ketrenos43f66a62005-03-25 12:31:53 -06002373
2374static void ipw_scan_check(void *data)
2375{
2376 struct ipw_priv *priv = data;
Zhu Yie65054b2010-03-30 09:36:16 +08002377
2378 if (priv->status & STATUS_SCAN_ABORTING) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002379 IPW_DEBUG_SCAN("Scan completion watchdog resetting "
Zhu Yic7b6a672006-01-24 16:37:05 +08002380 "adapter after (%dms).\n",
2381 jiffies_to_msecs(IPW_SCAN_CHECK_WATCHDOG));
Tejun Heobcb6d912011-01-26 12:12:50 +01002382 schedule_work(&priv->adapter_restart);
Zhu Yie65054b2010-03-30 09:36:16 +08002383 } else if (priv->status & STATUS_SCANNING) {
2384 IPW_DEBUG_SCAN("Scan completion watchdog aborting scan "
2385 "after (%dms).\n",
2386 jiffies_to_msecs(IPW_SCAN_CHECK_WATCHDOG));
2387 ipw_abort_scan(priv);
Tejun Heobcb6d912011-01-26 12:12:50 +01002388 schedule_delayed_work(&priv->scan_check, HZ);
James Ketrenos43f66a62005-03-25 12:31:53 -06002389 }
2390}
2391
David Howellsc4028952006-11-22 14:57:56 +00002392static void ipw_bg_scan_check(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -05002393{
David Howellsc4028952006-11-22 14:57:56 +00002394 struct ipw_priv *priv =
2395 container_of(work, struct ipw_priv, scan_check.work);
Zhu Yi46441512006-01-24 16:37:59 +08002396 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00002397 ipw_scan_check(priv);
Zhu Yi46441512006-01-24 16:37:59 +08002398 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05002399}
2400
James Ketrenos43f66a62005-03-25 12:31:53 -06002401static int ipw_send_scan_request_ext(struct ipw_priv *priv,
2402 struct ipw_scan_request_ext *request)
2403{
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002404 return ipw_send_cmd_pdu(priv, IPW_CMD_SCAN_REQUEST_EXT,
Zhu Yi2638bc32006-01-24 16:37:52 +08002405 sizeof(*request), request);
James Ketrenos43f66a62005-03-25 12:31:53 -06002406}
2407
2408static int ipw_send_scan_abort(struct ipw_priv *priv)
2409{
James Ketrenos43f66a62005-03-25 12:31:53 -06002410 if (!priv) {
2411 IPW_ERROR("Invalid args\n");
2412 return -1;
2413 }
2414
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002415 return ipw_send_cmd_simple(priv, IPW_CMD_SCAN_ABORT);
James Ketrenos43f66a62005-03-25 12:31:53 -06002416}
2417
2418static int ipw_set_sensitivity(struct ipw_priv *priv, u16 sens)
2419{
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002420 struct ipw_sensitivity_calib calib = {
Zhu Yi851ca262006-08-21 11:37:58 +08002421 .beacon_rssi_raw = cpu_to_le16(sens),
James Ketrenos43f66a62005-03-25 12:31:53 -06002422 };
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002423
2424 return ipw_send_cmd_pdu(priv, IPW_CMD_SENSITIVITY_CALIB, sizeof(calib),
Zhu Yi2638bc32006-01-24 16:37:52 +08002425 &calib);
James Ketrenos43f66a62005-03-25 12:31:53 -06002426}
2427
2428static int ipw_send_associate(struct ipw_priv *priv,
2429 struct ipw_associate *associate)
2430{
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002431 if (!priv || !associate) {
2432 IPW_ERROR("Invalid args\n");
2433 return -1;
2434 }
2435
Al Viro5b5e8072007-12-27 01:54:06 -05002436 return ipw_send_cmd_pdu(priv, IPW_CMD_ASSOCIATE, sizeof(*associate),
2437 associate);
James Ketrenos43f66a62005-03-25 12:31:53 -06002438}
2439
2440static int ipw_send_supported_rates(struct ipw_priv *priv,
2441 struct ipw_supported_rates *rates)
2442{
James Ketrenos43f66a62005-03-25 12:31:53 -06002443 if (!priv || !rates) {
2444 IPW_ERROR("Invalid args\n");
2445 return -1;
2446 }
2447
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002448 return ipw_send_cmd_pdu(priv, IPW_CMD_SUPPORTED_RATES, sizeof(*rates),
Zhu Yi2638bc32006-01-24 16:37:52 +08002449 rates);
James Ketrenos43f66a62005-03-25 12:31:53 -06002450}
2451
2452static int ipw_set_random_seed(struct ipw_priv *priv)
2453{
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002454 u32 val;
James Ketrenos43f66a62005-03-25 12:31:53 -06002455
2456 if (!priv) {
2457 IPW_ERROR("Invalid args\n");
2458 return -1;
2459 }
2460
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002461 get_random_bytes(&val, sizeof(val));
James Ketrenos43f66a62005-03-25 12:31:53 -06002462
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002463 return ipw_send_cmd_pdu(priv, IPW_CMD_SEED_NUMBER, sizeof(val), &val);
James Ketrenos43f66a62005-03-25 12:31:53 -06002464}
2465
James Ketrenos43f66a62005-03-25 12:31:53 -06002466static int ipw_send_card_disable(struct ipw_priv *priv, u32 phy_off)
2467{
Al Viroe62e1ee2007-12-27 01:36:46 -05002468 __le32 v = cpu_to_le32(phy_off);
James Ketrenos43f66a62005-03-25 12:31:53 -06002469 if (!priv) {
2470 IPW_ERROR("Invalid args\n");
2471 return -1;
2472 }
2473
Al Viroe62e1ee2007-12-27 01:36:46 -05002474 return ipw_send_cmd_pdu(priv, IPW_CMD_CARD_DISABLE, sizeof(v), &v);
James Ketrenos43f66a62005-03-25 12:31:53 -06002475}
James Ketrenos43f66a62005-03-25 12:31:53 -06002476
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002477static int ipw_send_tx_power(struct ipw_priv *priv, struct ipw_tx_power *power)
James Ketrenos43f66a62005-03-25 12:31:53 -06002478{
James Ketrenos43f66a62005-03-25 12:31:53 -06002479 if (!priv || !power) {
2480 IPW_ERROR("Invalid args\n");
2481 return -1;
2482 }
2483
Zhu Yi2638bc32006-01-24 16:37:52 +08002484 return ipw_send_cmd_pdu(priv, IPW_CMD_TX_POWER, sizeof(*power), power);
James Ketrenos43f66a62005-03-25 12:31:53 -06002485}
James Ketrenos43f66a62005-03-25 12:31:53 -06002486
Zhu Yi6de9f7f2005-08-11 14:39:33 +08002487static int ipw_set_tx_power(struct ipw_priv *priv)
2488{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04002489 const struct libipw_geo *geo = libipw_get_geo(priv->ieee);
Zhu Yi6de9f7f2005-08-11 14:39:33 +08002490 struct ipw_tx_power tx_power;
2491 s8 max_power;
2492 int i;
2493
2494 memset(&tx_power, 0, sizeof(tx_power));
2495
2496 /* configure device for 'G' band */
2497 tx_power.ieee_mode = IPW_G_MODE;
2498 tx_power.num_channels = geo->bg_channels;
2499 for (i = 0; i < geo->bg_channels; i++) {
2500 max_power = geo->bg[i].max_power;
2501 tx_power.channels_tx_power[i].channel_number =
2502 geo->bg[i].channel;
2503 tx_power.channels_tx_power[i].tx_power = max_power ?
2504 min(max_power, priv->tx_power) : priv->tx_power;
2505 }
2506 if (ipw_send_tx_power(priv, &tx_power))
2507 return -EIO;
2508
2509 /* configure device to also handle 'B' band */
2510 tx_power.ieee_mode = IPW_B_MODE;
2511 if (ipw_send_tx_power(priv, &tx_power))
2512 return -EIO;
2513
2514 /* configure device to also handle 'A' band */
2515 if (priv->ieee->abg_true) {
2516 tx_power.ieee_mode = IPW_A_MODE;
2517 tx_power.num_channels = geo->a_channels;
2518 for (i = 0; i < tx_power.num_channels; i++) {
2519 max_power = geo->a[i].max_power;
2520 tx_power.channels_tx_power[i].channel_number =
2521 geo->a[i].channel;
2522 tx_power.channels_tx_power[i].tx_power = max_power ?
2523 min(max_power, priv->tx_power) : priv->tx_power;
2524 }
2525 if (ipw_send_tx_power(priv, &tx_power))
2526 return -EIO;
2527 }
James Ketrenos43f66a62005-03-25 12:31:53 -06002528 return 0;
2529}
2530
2531static int ipw_send_rts_threshold(struct ipw_priv *priv, u16 rts)
2532{
2533 struct ipw_rts_threshold rts_threshold = {
Zhu Yi851ca262006-08-21 11:37:58 +08002534 .rts_threshold = cpu_to_le16(rts),
James Ketrenos43f66a62005-03-25 12:31:53 -06002535 };
James Ketrenos43f66a62005-03-25 12:31:53 -06002536
2537 if (!priv) {
2538 IPW_ERROR("Invalid args\n");
2539 return -1;
2540 }
2541
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002542 return ipw_send_cmd_pdu(priv, IPW_CMD_RTS_THRESHOLD,
2543 sizeof(rts_threshold), &rts_threshold);
James Ketrenos43f66a62005-03-25 12:31:53 -06002544}
2545
2546static int ipw_send_frag_threshold(struct ipw_priv *priv, u16 frag)
2547{
2548 struct ipw_frag_threshold frag_threshold = {
Zhu Yi851ca262006-08-21 11:37:58 +08002549 .frag_threshold = cpu_to_le16(frag),
James Ketrenos43f66a62005-03-25 12:31:53 -06002550 };
James Ketrenos43f66a62005-03-25 12:31:53 -06002551
2552 if (!priv) {
2553 IPW_ERROR("Invalid args\n");
2554 return -1;
2555 }
2556
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002557 return ipw_send_cmd_pdu(priv, IPW_CMD_FRAG_THRESHOLD,
2558 sizeof(frag_threshold), &frag_threshold);
James Ketrenos43f66a62005-03-25 12:31:53 -06002559}
2560
2561static int ipw_send_power_mode(struct ipw_priv *priv, u32 mode)
2562{
Al Viroe62e1ee2007-12-27 01:36:46 -05002563 __le32 param;
James Ketrenos43f66a62005-03-25 12:31:53 -06002564
2565 if (!priv) {
2566 IPW_ERROR("Invalid args\n");
2567 return -1;
2568 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002569
James Ketrenos43f66a62005-03-25 12:31:53 -06002570 /* If on battery, set to 3, if AC set to CAM, else user
2571 * level */
2572 switch (mode) {
2573 case IPW_POWER_BATTERY:
Al Viroe62e1ee2007-12-27 01:36:46 -05002574 param = cpu_to_le32(IPW_POWER_INDEX_3);
James Ketrenos43f66a62005-03-25 12:31:53 -06002575 break;
2576 case IPW_POWER_AC:
Al Viroe62e1ee2007-12-27 01:36:46 -05002577 param = cpu_to_le32(IPW_POWER_MODE_CAM);
James Ketrenos43f66a62005-03-25 12:31:53 -06002578 break;
2579 default:
Al Viroe62e1ee2007-12-27 01:36:46 -05002580 param = cpu_to_le32(mode);
James Ketrenos43f66a62005-03-25 12:31:53 -06002581 break;
2582 }
2583
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002584 return ipw_send_cmd_pdu(priv, IPW_CMD_POWER_MODE, sizeof(param),
Zhu Yi2638bc32006-01-24 16:37:52 +08002585 &param);
James Ketrenos43f66a62005-03-25 12:31:53 -06002586}
2587
James Ketrenosafbf30a2005-08-25 00:05:33 -05002588static int ipw_send_retry_limit(struct ipw_priv *priv, u8 slimit, u8 llimit)
2589{
2590 struct ipw_retry_limit retry_limit = {
2591 .short_retry_limit = slimit,
2592 .long_retry_limit = llimit
2593 };
James Ketrenosafbf30a2005-08-25 00:05:33 -05002594
2595 if (!priv) {
2596 IPW_ERROR("Invalid args\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06002597 return -1;
2598 }
2599
Zhu Yi0a7bcf22006-01-24 16:37:28 +08002600 return ipw_send_cmd_pdu(priv, IPW_CMD_RETRY_LIMIT, sizeof(retry_limit),
Zhu Yi2638bc32006-01-24 16:37:52 +08002601 &retry_limit);
James Ketrenos43f66a62005-03-25 12:31:53 -06002602}
2603
2604/*
2605 * The IPW device contains a Microwire compatible EEPROM that stores
2606 * various data like the MAC address. Usually the firmware has exclusive
2607 * access to the eeprom, but during device initialization (before the
2608 * device driver has sent the HostComplete command to the firmware) the
2609 * device driver has read access to the EEPROM by way of indirect addressing
2610 * through a couple of memory mapped registers.
2611 *
2612 * The following is a simplified implementation for pulling data out of the
2613 * the eeprom, along with some helper functions to find information in
2614 * the per device private data's copy of the eeprom.
2615 *
2616 * NOTE: To better understand how these functions work (i.e what is a chip
2617 * select and why do have to keep driving the eeprom clock?), read
2618 * just about any data sheet for a Microwire compatible EEPROM.
2619 */
2620
2621/* write a 32 bit value into the indirect accessor register */
2622static inline void eeprom_write_reg(struct ipw_priv *p, u32 data)
2623{
2624 ipw_write_reg32(p, FW_MEM_REG_EEPROM_ACCESS, data);
Jeff Garzikbf794512005-07-31 13:07:26 -04002625
James Ketrenos43f66a62005-03-25 12:31:53 -06002626 /* the eeprom requires some time to complete the operation */
2627 udelay(p->eeprom_delay);
James Ketrenos43f66a62005-03-25 12:31:53 -06002628}
2629
2630/* perform a chip select operation */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002631static void eeprom_cs(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002632{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002633 eeprom_write_reg(priv, 0);
2634 eeprom_write_reg(priv, EEPROM_BIT_CS);
2635 eeprom_write_reg(priv, EEPROM_BIT_CS | EEPROM_BIT_SK);
2636 eeprom_write_reg(priv, EEPROM_BIT_CS);
James Ketrenos43f66a62005-03-25 12:31:53 -06002637}
2638
2639/* perform a chip select operation */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002640static void eeprom_disable_cs(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06002641{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002642 eeprom_write_reg(priv, EEPROM_BIT_CS);
2643 eeprom_write_reg(priv, 0);
2644 eeprom_write_reg(priv, EEPROM_BIT_SK);
James Ketrenos43f66a62005-03-25 12:31:53 -06002645}
2646
2647/* push a single bit down to the eeprom */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002648static inline void eeprom_write_bit(struct ipw_priv *p, u8 bit)
James Ketrenos43f66a62005-03-25 12:31:53 -06002649{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002650 int d = (bit ? EEPROM_BIT_DI : 0);
2651 eeprom_write_reg(p, EEPROM_BIT_CS | d);
2652 eeprom_write_reg(p, EEPROM_BIT_CS | d | EEPROM_BIT_SK);
James Ketrenos43f66a62005-03-25 12:31:53 -06002653}
2654
2655/* push an opcode followed by an address down to the eeprom */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002656static void eeprom_op(struct ipw_priv *priv, u8 op, u8 addr)
James Ketrenos43f66a62005-03-25 12:31:53 -06002657{
2658 int i;
2659
2660 eeprom_cs(priv);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002661 eeprom_write_bit(priv, 1);
2662 eeprom_write_bit(priv, op & 2);
2663 eeprom_write_bit(priv, op & 1);
2664 for (i = 7; i >= 0; i--) {
2665 eeprom_write_bit(priv, addr & (1 << i));
James Ketrenos43f66a62005-03-25 12:31:53 -06002666 }
2667}
2668
2669/* pull 16 bits off the eeprom, one bit at a time */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002670static u16 eeprom_read_u16(struct ipw_priv *priv, u8 addr)
James Ketrenos43f66a62005-03-25 12:31:53 -06002671{
2672 int i;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002673 u16 r = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04002674
James Ketrenos43f66a62005-03-25 12:31:53 -06002675 /* Send READ Opcode */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002676 eeprom_op(priv, EEPROM_CMD_READ, addr);
James Ketrenos43f66a62005-03-25 12:31:53 -06002677
2678 /* Send dummy bit */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002679 eeprom_write_reg(priv, EEPROM_BIT_CS);
James Ketrenos43f66a62005-03-25 12:31:53 -06002680
2681 /* Read the byte off the eeprom one bit at a time */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002682 for (i = 0; i < 16; i++) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002683 u32 data = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002684 eeprom_write_reg(priv, EEPROM_BIT_CS | EEPROM_BIT_SK);
2685 eeprom_write_reg(priv, EEPROM_BIT_CS);
2686 data = ipw_read_reg32(priv, FW_MEM_REG_EEPROM_ACCESS);
2687 r = (r << 1) | ((data & EEPROM_BIT_DO) ? 1 : 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002688 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002689
James Ketrenos43f66a62005-03-25 12:31:53 -06002690 /* Send another dummy bit */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002691 eeprom_write_reg(priv, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002692 eeprom_disable_cs(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -04002693
James Ketrenos43f66a62005-03-25 12:31:53 -06002694 return r;
2695}
2696
2697/* helper function for pulling the mac address out of the private */
2698/* data's copy of the eeprom data */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002699static void eeprom_parse_mac(struct ipw_priv *priv, u8 * mac)
James Ketrenos43f66a62005-03-25 12:31:53 -06002700{
Joe Perchesd458cdf2013-10-01 19:04:40 -07002701 memcpy(mac, &priv->eeprom[EEPROM_MAC_ADDRESS], ETH_ALEN);
James Ketrenos43f66a62005-03-25 12:31:53 -06002702}
2703
Stanislav Yakovlevfdbfff72012-05-17 15:56:35 -04002704static void ipw_read_eeprom(struct ipw_priv *priv)
2705{
2706 int i;
2707 __le16 *eeprom = (__le16 *) priv->eeprom;
2708
2709 IPW_DEBUG_TRACE(">>\n");
2710
2711 /* read entire contents of eeprom into private buffer */
2712 for (i = 0; i < 128; i++)
2713 eeprom[i] = cpu_to_le16(eeprom_read_u16(priv, (u8) i));
2714
2715 IPW_DEBUG_TRACE("<<\n");
2716}
2717
James Ketrenos43f66a62005-03-25 12:31:53 -06002718/*
2719 * Either the device driver (i.e. the host) or the firmware can
2720 * load eeprom data into the designated region in SRAM. If neither
2721 * happens then the FW will shutdown with a fatal error.
2722 *
2723 * In order to signal the FW to load the EEPROM, the EEPROM_LOAD_DISABLE
2724 * bit needs region of shared SRAM needs to be non-zero.
2725 */
2726static void ipw_eeprom_init_sram(struct ipw_priv *priv)
2727{
2728 int i;
Jeff Garzikbf794512005-07-31 13:07:26 -04002729
James Ketrenos43f66a62005-03-25 12:31:53 -06002730 IPW_DEBUG_TRACE(">>\n");
2731
Jeff Garzikbf794512005-07-31 13:07:26 -04002732 /*
2733 If the data looks correct, then copy it to our private
James Ketrenos43f66a62005-03-25 12:31:53 -06002734 copy. Otherwise let the firmware know to perform the operation
Zhu Yic7b6a672006-01-24 16:37:05 +08002735 on its own.
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002736 */
Alexey Dobriyan386093e2006-02-01 03:04:57 -08002737 if (priv->eeprom[EEPROM_VERSION] != 0) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002738 IPW_DEBUG_INFO("Writing EEPROM data into SRAM\n");
2739
2740 /* write the eeprom data to sram */
James Ketrenosb095c382005-08-24 22:04:42 -05002741 for (i = 0; i < IPW_EEPROM_IMAGE_SIZE; i++)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002742 ipw_write8(priv, IPW_EEPROM_DATA + i, priv->eeprom[i]);
James Ketrenos43f66a62005-03-25 12:31:53 -06002743
2744 /* Do not load eeprom data on fatal error or suspend */
2745 ipw_write32(priv, IPW_EEPROM_LOAD_DISABLE, 0);
2746 } else {
2747 IPW_DEBUG_INFO("Enabling FW initializationg of SRAM\n");
2748
2749 /* Load eeprom data on fatal error or suspend */
2750 ipw_write32(priv, IPW_EEPROM_LOAD_DISABLE, 1);
2751 }
2752
2753 IPW_DEBUG_TRACE("<<\n");
2754}
2755
Arjan van de Ven858119e2006-01-14 13:20:43 -08002756static void ipw_zero_memory(struct ipw_priv *priv, u32 start, u32 count)
James Ketrenos43f66a62005-03-25 12:31:53 -06002757{
2758 count >>= 2;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002759 if (!count)
2760 return;
James Ketrenosb095c382005-08-24 22:04:42 -05002761 _ipw_write32(priv, IPW_AUTOINC_ADDR, start);
Jeff Garzikbf794512005-07-31 13:07:26 -04002762 while (count--)
James Ketrenosb095c382005-08-24 22:04:42 -05002763 _ipw_write32(priv, IPW_AUTOINC_DATA, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06002764}
2765
2766static inline void ipw_fw_dma_reset_command_blocks(struct ipw_priv *priv)
2767{
James Ketrenosb095c382005-08-24 22:04:42 -05002768 ipw_zero_memory(priv, IPW_SHARED_SRAM_DMA_CONTROL,
Jeff Garzikbf794512005-07-31 13:07:26 -04002769 CB_NUMBER_OF_ELEMENTS_SMALL *
James Ketrenos43f66a62005-03-25 12:31:53 -06002770 sizeof(struct command_block));
2771}
2772
2773static int ipw_fw_dma_enable(struct ipw_priv *priv)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002774{ /* start dma engine but no transfers yet */
James Ketrenos43f66a62005-03-25 12:31:53 -06002775
Frans Pop9fd1ea42010-03-24 19:46:31 +01002776 IPW_DEBUG_FW(">> :\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04002777
James Ketrenos43f66a62005-03-25 12:31:53 -06002778 /* Start the dma */
2779 ipw_fw_dma_reset_command_blocks(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -04002780
James Ketrenos43f66a62005-03-25 12:31:53 -06002781 /* Write CB base address */
James Ketrenosb095c382005-08-24 22:04:42 -05002782 ipw_write_reg32(priv, IPW_DMA_I_CB_BASE, IPW_SHARED_SRAM_DMA_CONTROL);
James Ketrenos43f66a62005-03-25 12:31:53 -06002783
Frans Pop9fd1ea42010-03-24 19:46:31 +01002784 IPW_DEBUG_FW("<< :\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06002785 return 0;
2786}
2787
2788static void ipw_fw_dma_abort(struct ipw_priv *priv)
2789{
2790 u32 control = 0;
2791
2792 IPW_DEBUG_FW(">> :\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04002793
Pavel Machek67fd6b42006-07-11 15:34:05 +02002794 /* set the Stop and Abort bit */
James Ketrenos43f66a62005-03-25 12:31:53 -06002795 control = DMA_CONTROL_SMALL_CB_CONST_VALUE | DMA_CB_STOP_AND_ABORT;
James Ketrenosb095c382005-08-24 22:04:42 -05002796 ipw_write_reg32(priv, IPW_DMA_I_DMA_CONTROL, control);
James Ketrenos43f66a62005-03-25 12:31:53 -06002797 priv->sram_desc.last_cb_index = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04002798
Frans Pop9fd1ea42010-03-24 19:46:31 +01002799 IPW_DEBUG_FW("<<\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06002800}
2801
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002802static int ipw_fw_dma_write_command_block(struct ipw_priv *priv, int index,
2803 struct command_block *cb)
James Ketrenos43f66a62005-03-25 12:31:53 -06002804{
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002805 u32 address =
James Ketrenosb095c382005-08-24 22:04:42 -05002806 IPW_SHARED_SRAM_DMA_CONTROL +
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002807 (sizeof(struct command_block) * index);
James Ketrenos43f66a62005-03-25 12:31:53 -06002808 IPW_DEBUG_FW(">> :\n");
2809
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002810 ipw_write_indirect(priv, address, (u8 *) cb,
2811 (int)sizeof(struct command_block));
James Ketrenos43f66a62005-03-25 12:31:53 -06002812
2813 IPW_DEBUG_FW("<< :\n");
2814 return 0;
2815
2816}
2817
2818static int ipw_fw_dma_kick(struct ipw_priv *priv)
2819{
2820 u32 control = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002821 u32 index = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06002822
2823 IPW_DEBUG_FW(">> :\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04002824
James Ketrenos43f66a62005-03-25 12:31:53 -06002825 for (index = 0; index < priv->sram_desc.last_cb_index; index++)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002826 ipw_fw_dma_write_command_block(priv, index,
2827 &priv->sram_desc.cb_list[index]);
James Ketrenos43f66a62005-03-25 12:31:53 -06002828
2829 /* Enable the DMA in the CSR register */
James Ketrenosb095c382005-08-24 22:04:42 -05002830 ipw_clear_bit(priv, IPW_RESET_REG,
2831 IPW_RESET_REG_MASTER_DISABLED |
2832 IPW_RESET_REG_STOP_MASTER);
Jeff Garzikbf794512005-07-31 13:07:26 -04002833
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002834 /* Set the Start bit. */
James Ketrenos43f66a62005-03-25 12:31:53 -06002835 control = DMA_CONTROL_SMALL_CB_CONST_VALUE | DMA_CB_START;
James Ketrenosb095c382005-08-24 22:04:42 -05002836 ipw_write_reg32(priv, IPW_DMA_I_DMA_CONTROL, control);
James Ketrenos43f66a62005-03-25 12:31:53 -06002837
2838 IPW_DEBUG_FW("<< :\n");
2839 return 0;
2840}
2841
2842static void ipw_fw_dma_dump_command_block(struct ipw_priv *priv)
2843{
2844 u32 address;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002845 u32 register_value = 0;
2846 u32 cb_fields_address = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06002847
2848 IPW_DEBUG_FW(">> :\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002849 address = ipw_read_reg32(priv, IPW_DMA_I_CURRENT_CB);
Frans Pop9fd1ea42010-03-24 19:46:31 +01002850 IPW_DEBUG_FW_INFO("Current CB is 0x%x\n", address);
James Ketrenos43f66a62005-03-25 12:31:53 -06002851
2852 /* Read the DMA Controlor register */
James Ketrenosb095c382005-08-24 22:04:42 -05002853 register_value = ipw_read_reg32(priv, IPW_DMA_I_DMA_CONTROL);
Frans Pop9fd1ea42010-03-24 19:46:31 +01002854 IPW_DEBUG_FW_INFO("IPW_DMA_I_DMA_CONTROL is 0x%x\n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002855
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002856 /* Print the CB values */
James Ketrenos43f66a62005-03-25 12:31:53 -06002857 cb_fields_address = address;
2858 register_value = ipw_read_reg32(priv, cb_fields_address);
Frans Pop9fd1ea42010-03-24 19:46:31 +01002859 IPW_DEBUG_FW_INFO("Current CB Control Field is 0x%x\n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002860
2861 cb_fields_address += sizeof(u32);
2862 register_value = ipw_read_reg32(priv, cb_fields_address);
Frans Pop9fd1ea42010-03-24 19:46:31 +01002863 IPW_DEBUG_FW_INFO("Current CB Source Field is 0x%x\n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002864
2865 cb_fields_address += sizeof(u32);
2866 register_value = ipw_read_reg32(priv, cb_fields_address);
Frans Pop9fd1ea42010-03-24 19:46:31 +01002867 IPW_DEBUG_FW_INFO("Current CB Destination Field is 0x%x\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06002868 register_value);
2869
2870 cb_fields_address += sizeof(u32);
2871 register_value = ipw_read_reg32(priv, cb_fields_address);
Frans Pop9fd1ea42010-03-24 19:46:31 +01002872 IPW_DEBUG_FW_INFO("Current CB Status Field is 0x%x\n", register_value);
James Ketrenos43f66a62005-03-25 12:31:53 -06002873
2874 IPW_DEBUG_FW(">> :\n");
2875}
2876
2877static int ipw_fw_dma_command_block_index(struct ipw_priv *priv)
2878{
2879 u32 current_cb_address = 0;
2880 u32 current_cb_index = 0;
2881
2882 IPW_DEBUG_FW("<< :\n");
James Ketrenosb095c382005-08-24 22:04:42 -05002883 current_cb_address = ipw_read_reg32(priv, IPW_DMA_I_CURRENT_CB);
Jeff Garzikbf794512005-07-31 13:07:26 -04002884
James Ketrenosb095c382005-08-24 22:04:42 -05002885 current_cb_index = (current_cb_address - IPW_SHARED_SRAM_DMA_CONTROL) /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002886 sizeof(struct command_block);
Jeff Garzikbf794512005-07-31 13:07:26 -04002887
Frans Pop9fd1ea42010-03-24 19:46:31 +01002888 IPW_DEBUG_FW_INFO("Current CB index 0x%x address = 0x%X\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002889 current_cb_index, current_cb_address);
James Ketrenos43f66a62005-03-25 12:31:53 -06002890
2891 IPW_DEBUG_FW(">> :\n");
2892 return current_cb_index;
2893
2894}
2895
2896static int ipw_fw_dma_add_command_block(struct ipw_priv *priv,
2897 u32 src_address,
2898 u32 dest_address,
2899 u32 length,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002900 int interrupt_enabled, int is_last)
James Ketrenos43f66a62005-03-25 12:31:53 -06002901{
2902
Jeff Garzikbf794512005-07-31 13:07:26 -04002903 u32 control = CB_VALID | CB_SRC_LE | CB_DEST_LE | CB_SRC_AUTOINC |
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002904 CB_SRC_IO_GATED | CB_DEST_AUTOINC | CB_SRC_SIZE_LONG |
2905 CB_DEST_SIZE_LONG;
James Ketrenos43f66a62005-03-25 12:31:53 -06002906 struct command_block *cb;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002907 u32 last_cb_element = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06002908
2909 IPW_DEBUG_FW_INFO("src_address=0x%x dest_address=0x%x length=0x%x\n",
2910 src_address, dest_address, length);
2911
2912 if (priv->sram_desc.last_cb_index >= CB_NUMBER_OF_ELEMENTS_SMALL)
2913 return -1;
2914
2915 last_cb_element = priv->sram_desc.last_cb_index;
2916 cb = &priv->sram_desc.cb_list[last_cb_element];
2917 priv->sram_desc.last_cb_index++;
2918
2919 /* Calculate the new CB control word */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002920 if (interrupt_enabled)
James Ketrenos43f66a62005-03-25 12:31:53 -06002921 control |= CB_INT_ENABLED;
2922
2923 if (is_last)
2924 control |= CB_LAST_VALID;
Jeff Garzikbf794512005-07-31 13:07:26 -04002925
James Ketrenos43f66a62005-03-25 12:31:53 -06002926 control |= length;
2927
2928 /* Calculate the CB Element's checksum value */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002929 cb->status = control ^ src_address ^ dest_address;
James Ketrenos43f66a62005-03-25 12:31:53 -06002930
2931 /* Copy the Source and Destination addresses */
2932 cb->dest_addr = dest_address;
2933 cb->source_addr = src_address;
2934
2935 /* Copy the Control Word last */
2936 cb->control = control;
2937
2938 return 0;
2939}
2940
Zhu Yi11ebd1b2009-08-28 11:42:31 +08002941static int ipw_fw_dma_add_buffer(struct ipw_priv *priv, dma_addr_t *src_address,
2942 int nr, u32 dest_address, u32 len)
James Ketrenos43f66a62005-03-25 12:31:53 -06002943{
Zhu Yi11ebd1b2009-08-28 11:42:31 +08002944 int ret, i;
2945 u32 size;
2946
Frans Pop9fd1ea42010-03-24 19:46:31 +01002947 IPW_DEBUG_FW(">>\n");
Zhu Yi11ebd1b2009-08-28 11:42:31 +08002948 IPW_DEBUG_FW_INFO("nr=%d dest_address=0x%x len=0x%x\n",
2949 nr, dest_address, len);
2950
2951 for (i = 0; i < nr; i++) {
2952 size = min_t(u32, len - i * CB_MAX_LENGTH, CB_MAX_LENGTH);
2953 ret = ipw_fw_dma_add_command_block(priv, src_address[i],
2954 dest_address +
2955 i * CB_MAX_LENGTH, size,
2956 0, 0);
2957 if (ret) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002958 IPW_DEBUG_FW_INFO(": Failed\n");
2959 return -1;
Jeff Garzikbf794512005-07-31 13:07:26 -04002960 } else
James Ketrenos43f66a62005-03-25 12:31:53 -06002961 IPW_DEBUG_FW_INFO(": Added new cb\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06002962 }
Jeff Garzikbf794512005-07-31 13:07:26 -04002963
Frans Pop9fd1ea42010-03-24 19:46:31 +01002964 IPW_DEBUG_FW("<<\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06002965 return 0;
2966}
2967
2968static int ipw_fw_dma_wait(struct ipw_priv *priv)
2969{
Zhu Yi397ae122006-01-24 16:37:22 +08002970 u32 current_index = 0, previous_index;
James Ketrenos43f66a62005-03-25 12:31:53 -06002971 u32 watchdog = 0;
2972
Frans Pop9fd1ea42010-03-24 19:46:31 +01002973 IPW_DEBUG_FW(">> :\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06002974
2975 current_index = ipw_fw_dma_command_block_index(priv);
Zhu Yi397ae122006-01-24 16:37:22 +08002976 IPW_DEBUG_FW_INFO("sram_desc.last_cb_index:0x%08X\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002977 (int)priv->sram_desc.last_cb_index);
James Ketrenos43f66a62005-03-25 12:31:53 -06002978
2979 while (current_index < priv->sram_desc.last_cb_index) {
2980 udelay(50);
Zhu Yi397ae122006-01-24 16:37:22 +08002981 previous_index = current_index;
James Ketrenos43f66a62005-03-25 12:31:53 -06002982 current_index = ipw_fw_dma_command_block_index(priv);
2983
Zhu Yi397ae122006-01-24 16:37:22 +08002984 if (previous_index < current_index) {
2985 watchdog = 0;
2986 continue;
2987 }
2988 if (++watchdog > 400) {
James Ketrenos43f66a62005-03-25 12:31:53 -06002989 IPW_DEBUG_FW_INFO("Timeout\n");
2990 ipw_fw_dma_dump_command_block(priv);
2991 ipw_fw_dma_abort(priv);
2992 return -1;
2993 }
2994 }
2995
2996 ipw_fw_dma_abort(priv);
2997
Jeff Garzik0edd5b42005-09-07 00:48:31 -04002998 /*Disable the DMA in the CSR register */
James Ketrenosb095c382005-08-24 22:04:42 -05002999 ipw_set_bit(priv, IPW_RESET_REG,
3000 IPW_RESET_REG_MASTER_DISABLED | IPW_RESET_REG_STOP_MASTER);
James Ketrenos43f66a62005-03-25 12:31:53 -06003001
Frans Pop9fd1ea42010-03-24 19:46:31 +01003002 IPW_DEBUG_FW("<< dmaWaitSync\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06003003 return 0;
3004}
3005
Jeff Garzikbf794512005-07-31 13:07:26 -04003006static void ipw_remove_current_network(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06003007{
3008 struct list_head *element, *safe;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04003009 struct libipw_network *network = NULL;
James Ketrenosa613bff2005-08-24 21:43:11 -05003010 unsigned long flags;
3011
3012 spin_lock_irqsave(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06003013 list_for_each_safe(element, safe, &priv->ieee->network_list) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04003014 network = list_entry(element, struct libipw_network, list);
dingtianhong36325f32013-12-26 19:41:23 +08003015 if (ether_addr_equal(network->bssid, priv->bssid)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003016 list_del(element);
Jeff Garzikbf794512005-07-31 13:07:26 -04003017 list_add_tail(&network->list,
James Ketrenos43f66a62005-03-25 12:31:53 -06003018 &priv->ieee->network_free_list);
3019 }
3020 }
James Ketrenosa613bff2005-08-24 21:43:11 -05003021 spin_unlock_irqrestore(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06003022}
3023
3024/**
Jeff Garzikbf794512005-07-31 13:07:26 -04003025 * Check that card is still alive.
James Ketrenos43f66a62005-03-25 12:31:53 -06003026 * Reads debug register from domain0.
3027 * If card is present, pre-defined value should
3028 * be found there.
Jeff Garzikbf794512005-07-31 13:07:26 -04003029 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003030 * @param priv
3031 * @return 1 if card is present, 0 otherwise
3032 */
3033static inline int ipw_alive(struct ipw_priv *priv)
3034{
3035 return ipw_read32(priv, 0x90) == 0xd55555d5;
3036}
3037
Zhu Yic7b6a672006-01-24 16:37:05 +08003038/* timeout in msec, attempted in 10-msec quanta */
Arjan van de Ven858119e2006-01-14 13:20:43 -08003039static int ipw_poll_bit(struct ipw_priv *priv, u32 addr, u32 mask,
James Ketrenos43f66a62005-03-25 12:31:53 -06003040 int timeout)
3041{
3042 int i = 0;
3043
3044 do {
Jeff Garzikbf794512005-07-31 13:07:26 -04003045 if ((ipw_read32(priv, addr) & mask) == mask)
James Ketrenos43f66a62005-03-25 12:31:53 -06003046 return i;
3047 mdelay(10);
3048 i += 10;
3049 } while (i < timeout);
Jeff Garzikbf794512005-07-31 13:07:26 -04003050
James Ketrenos43f66a62005-03-25 12:31:53 -06003051 return -ETIME;
3052}
3053
Jeff Garzikbf794512005-07-31 13:07:26 -04003054/* These functions load the firmware and micro code for the operation of
James Ketrenos43f66a62005-03-25 12:31:53 -06003055 * the ipw hardware. It assumes the buffer has all the bits for the
3056 * image and the caller is handling the memory allocation and clean up.
3057 */
3058
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003059static int ipw_stop_master(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06003060{
3061 int rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04003062
Frans Pop9fd1ea42010-03-24 19:46:31 +01003063 IPW_DEBUG_TRACE(">>\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06003064 /* stop master. typical delay - 0 */
James Ketrenosb095c382005-08-24 22:04:42 -05003065 ipw_set_bit(priv, IPW_RESET_REG, IPW_RESET_REG_STOP_MASTER);
James Ketrenos43f66a62005-03-25 12:31:53 -06003066
Zhu Yic7b6a672006-01-24 16:37:05 +08003067 /* timeout is in msec, polled in 10-msec quanta */
James Ketrenosb095c382005-08-24 22:04:42 -05003068 rc = ipw_poll_bit(priv, IPW_RESET_REG,
3069 IPW_RESET_REG_MASTER_DISABLED, 100);
James Ketrenos43f66a62005-03-25 12:31:53 -06003070 if (rc < 0) {
Zhu Yic7b6a672006-01-24 16:37:05 +08003071 IPW_ERROR("wait for stop master failed after 100ms\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06003072 return -1;
3073 }
3074
3075 IPW_DEBUG_INFO("stop master %dms\n", rc);
3076
3077 return rc;
3078}
3079
3080static void ipw_arc_release(struct ipw_priv *priv)
3081{
Frans Pop9fd1ea42010-03-24 19:46:31 +01003082 IPW_DEBUG_TRACE(">>\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06003083 mdelay(5);
3084
James Ketrenosb095c382005-08-24 22:04:42 -05003085 ipw_clear_bit(priv, IPW_RESET_REG, CBD_RESET_REG_PRINCETON_RESET);
James Ketrenos43f66a62005-03-25 12:31:53 -06003086
3087 /* no one knows timing, for safety add some delay */
3088 mdelay(5);
3089}
3090
James Ketrenos43f66a62005-03-25 12:31:53 -06003091struct fw_chunk {
Al Viroe62e1ee2007-12-27 01:36:46 -05003092 __le32 address;
3093 __le32 length;
James Ketrenos43f66a62005-03-25 12:31:53 -06003094};
3095
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003096static int ipw_load_ucode(struct ipw_priv *priv, u8 * data, size_t len)
James Ketrenos43f66a62005-03-25 12:31:53 -06003097{
3098 int rc = 0, i, addr;
3099 u8 cr = 0;
Al Viroe62e1ee2007-12-27 01:36:46 -05003100 __le16 *image;
James Ketrenos43f66a62005-03-25 12:31:53 -06003101
Al Viroe62e1ee2007-12-27 01:36:46 -05003102 image = (__le16 *) data;
Jeff Garzikbf794512005-07-31 13:07:26 -04003103
Frans Pop9fd1ea42010-03-24 19:46:31 +01003104 IPW_DEBUG_TRACE(">>\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06003105
3106 rc = ipw_stop_master(priv);
3107
3108 if (rc < 0)
3109 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04003110
James Ketrenosb095c382005-08-24 22:04:42 -05003111 for (addr = IPW_SHARED_LOWER_BOUND;
3112 addr < IPW_REGISTER_DOMAIN1_END; addr += 4) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003113 ipw_write32(priv, addr, 0);
3114 }
3115
3116 /* no ucode (yet) */
3117 memset(&priv->dino_alive, 0, sizeof(priv->dino_alive));
3118 /* destroy DMA queues */
3119 /* reset sequence */
3120
James Ketrenosb095c382005-08-24 22:04:42 -05003121 ipw_write_reg32(priv, IPW_MEM_HALT_AND_RESET, IPW_BIT_HALT_RESET_ON);
James Ketrenos43f66a62005-03-25 12:31:53 -06003122 ipw_arc_release(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05003123 ipw_write_reg32(priv, IPW_MEM_HALT_AND_RESET, IPW_BIT_HALT_RESET_OFF);
James Ketrenos43f66a62005-03-25 12:31:53 -06003124 mdelay(1);
3125
3126 /* reset PHY */
James Ketrenosb095c382005-08-24 22:04:42 -05003127 ipw_write_reg32(priv, IPW_INTERNAL_CMD_EVENT, IPW_BASEBAND_POWER_DOWN);
James Ketrenos43f66a62005-03-25 12:31:53 -06003128 mdelay(1);
Jeff Garzikbf794512005-07-31 13:07:26 -04003129
James Ketrenosb095c382005-08-24 22:04:42 -05003130 ipw_write_reg32(priv, IPW_INTERNAL_CMD_EVENT, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06003131 mdelay(1);
Jeff Garzikbf794512005-07-31 13:07:26 -04003132
James Ketrenos43f66a62005-03-25 12:31:53 -06003133 /* enable ucode store */
Zhu Yic8fe6672006-01-24 16:36:36 +08003134 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, 0x0);
3135 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, DINO_ENABLE_CS);
James Ketrenos43f66a62005-03-25 12:31:53 -06003136 mdelay(1);
3137
3138 /* write ucode */
3139 /**
3140 * @bug
3141 * Do NOT set indirect address register once and then
3142 * store data to indirect data register in the loop.
3143 * It seems very reasonable, but in this case DINO do not
3144 * accept ucode. It is essential to set address each time.
3145 */
3146 /* load new ipw uCode */
3147 for (i = 0; i < len / 2; i++)
James Ketrenosb095c382005-08-24 22:04:42 -05003148 ipw_write_reg16(priv, IPW_BASEBAND_CONTROL_STORE,
Al Viroe62e1ee2007-12-27 01:36:46 -05003149 le16_to_cpu(image[i]));
James Ketrenos43f66a62005-03-25 12:31:53 -06003150
James Ketrenos43f66a62005-03-25 12:31:53 -06003151 /* enable DINO */
James Ketrenosb095c382005-08-24 22:04:42 -05003152 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, 0);
3153 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, DINO_ENABLE_SYSTEM);
James Ketrenos43f66a62005-03-25 12:31:53 -06003154
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003155 /* this is where the igx / win driver deveates from the VAP driver. */
James Ketrenos43f66a62005-03-25 12:31:53 -06003156
3157 /* wait for alive response */
3158 for (i = 0; i < 100; i++) {
3159 /* poll for incoming data */
James Ketrenosb095c382005-08-24 22:04:42 -05003160 cr = ipw_read_reg8(priv, IPW_BASEBAND_CONTROL_STATUS);
James Ketrenos43f66a62005-03-25 12:31:53 -06003161 if (cr & DINO_RXFIFO_DATA)
3162 break;
3163 mdelay(1);
3164 }
3165
3166 if (cr & DINO_RXFIFO_DATA) {
3167 /* alive_command_responce size is NOT multiple of 4 */
Al Viroe62e1ee2007-12-27 01:36:46 -05003168 __le32 response_buffer[(sizeof(priv->dino_alive) + 3) / 4];
Jeff Garzikbf794512005-07-31 13:07:26 -04003169
3170 for (i = 0; i < ARRAY_SIZE(response_buffer); i++)
James Ketrenos43f66a62005-03-25 12:31:53 -06003171 response_buffer[i] =
Al Viroe62e1ee2007-12-27 01:36:46 -05003172 cpu_to_le32(ipw_read_reg32(priv,
James Ketrenosb095c382005-08-24 22:04:42 -05003173 IPW_BASEBAND_RX_FIFO_READ));
James Ketrenos43f66a62005-03-25 12:31:53 -06003174 memcpy(&priv->dino_alive, response_buffer,
3175 sizeof(priv->dino_alive));
3176 if (priv->dino_alive.alive_command == 1
3177 && priv->dino_alive.ucode_valid == 1) {
3178 rc = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003179 IPW_DEBUG_INFO
3180 ("Microcode OK, rev. %d (0x%x) dev. %d (0x%x) "
3181 "of %02d/%02d/%02d %02d:%02d\n",
3182 priv->dino_alive.software_revision,
3183 priv->dino_alive.software_revision,
3184 priv->dino_alive.device_identifier,
3185 priv->dino_alive.device_identifier,
3186 priv->dino_alive.time_stamp[0],
3187 priv->dino_alive.time_stamp[1],
3188 priv->dino_alive.time_stamp[2],
3189 priv->dino_alive.time_stamp[3],
3190 priv->dino_alive.time_stamp[4]);
James Ketrenos43f66a62005-03-25 12:31:53 -06003191 } else {
3192 IPW_DEBUG_INFO("Microcode is not alive\n");
3193 rc = -EINVAL;
3194 }
3195 } else {
3196 IPW_DEBUG_INFO("No alive response from DINO\n");
3197 rc = -ETIME;
3198 }
3199
3200 /* disable DINO, otherwise for some reason
3201 firmware have problem getting alive resp. */
James Ketrenosb095c382005-08-24 22:04:42 -05003202 ipw_write_reg8(priv, IPW_BASEBAND_CONTROL_STATUS, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06003203
James Ketrenos43f66a62005-03-25 12:31:53 -06003204 return rc;
3205}
3206
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003207static int ipw_load_firmware(struct ipw_priv *priv, u8 * data, size_t len)
James Ketrenos43f66a62005-03-25 12:31:53 -06003208{
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003209 int ret = -1;
James Ketrenos43f66a62005-03-25 12:31:53 -06003210 int offset = 0;
3211 struct fw_chunk *chunk;
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003212 int total_nr = 0;
3213 int i;
3214 struct pci_pool *pool;
Zhu Yi41093162010-03-09 16:05:31 +08003215 void **virts;
3216 dma_addr_t *phys;
James Ketrenos43f66a62005-03-25 12:31:53 -06003217
Frans Pop9fd1ea42010-03-24 19:46:31 +01003218 IPW_DEBUG_TRACE("<< :\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06003219
Zhu Yi41093162010-03-09 16:05:31 +08003220 virts = kmalloc(sizeof(void *) * CB_NUMBER_OF_ELEMENTS_SMALL,
3221 GFP_KERNEL);
3222 if (!virts)
3223 return -ENOMEM;
3224
3225 phys = kmalloc(sizeof(dma_addr_t) * CB_NUMBER_OF_ELEMENTS_SMALL,
3226 GFP_KERNEL);
3227 if (!phys) {
3228 kfree(virts);
3229 return -ENOMEM;
3230 }
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003231 pool = pci_pool_create("ipw2200", priv->pci_dev, CB_MAX_LENGTH, 0, 0);
3232 if (!pool) {
3233 IPW_ERROR("pci_pool_create failed\n");
Zhu Yi41093162010-03-09 16:05:31 +08003234 kfree(phys);
3235 kfree(virts);
James Ketrenos43f66a62005-03-25 12:31:53 -06003236 return -ENOMEM;
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003237 }
James Ketrenos43f66a62005-03-25 12:31:53 -06003238
3239 /* Start the Dma */
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003240 ret = ipw_fw_dma_enable(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06003241
Alexander Beregalov0ee904c2009-04-11 14:50:23 +00003242 /* the DMA is already ready this would be a bug. */
3243 BUG_ON(priv->sram_desc.last_cb_index > 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06003244
3245 do {
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003246 u32 chunk_len;
3247 u8 *start;
3248 int size;
3249 int nr = 0;
3250
James Ketrenos43f66a62005-03-25 12:31:53 -06003251 chunk = (struct fw_chunk *)(data + offset);
3252 offset += sizeof(struct fw_chunk);
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003253 chunk_len = le32_to_cpu(chunk->length);
3254 start = data + offset;
3255
3256 nr = (chunk_len + CB_MAX_LENGTH - 1) / CB_MAX_LENGTH;
3257 for (i = 0; i < nr; i++) {
3258 virts[total_nr] = pci_pool_alloc(pool, GFP_KERNEL,
3259 &phys[total_nr]);
3260 if (!virts[total_nr]) {
3261 ret = -ENOMEM;
3262 goto out;
3263 }
3264 size = min_t(u32, chunk_len - i * CB_MAX_LENGTH,
3265 CB_MAX_LENGTH);
3266 memcpy(virts[total_nr], start, size);
3267 start += size;
3268 total_nr++;
3269 /* We don't support fw chunk larger than 64*8K */
3270 BUG_ON(total_nr > CB_NUMBER_OF_ELEMENTS_SMALL);
3271 }
3272
James Ketrenos43f66a62005-03-25 12:31:53 -06003273 /* build DMA packet and queue up for sending */
Jeff Garzikbf794512005-07-31 13:07:26 -04003274 /* dma to chunk->address, the chunk->length bytes from data +
James Ketrenos43f66a62005-03-25 12:31:53 -06003275 * offeset*/
3276 /* Dma loading */
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003277 ret = ipw_fw_dma_add_buffer(priv, &phys[total_nr - nr],
3278 nr, le32_to_cpu(chunk->address),
3279 chunk_len);
3280 if (ret) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003281 IPW_DEBUG_INFO("dmaAddBuffer Failed\n");
3282 goto out;
3283 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003284
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003285 offset += chunk_len;
James Ketrenos43f66a62005-03-25 12:31:53 -06003286 } while (offset < len);
3287
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003288 /* Run the DMA and wait for the answer */
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003289 ret = ipw_fw_dma_kick(priv);
3290 if (ret) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003291 IPW_ERROR("dmaKick Failed\n");
3292 goto out;
3293 }
3294
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003295 ret = ipw_fw_dma_wait(priv);
3296 if (ret) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003297 IPW_ERROR("dmaWaitSync Failed\n");
3298 goto out;
3299 }
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003300 out:
3301 for (i = 0; i < total_nr; i++)
3302 pci_pool_free(pool, virts[i], phys[i]);
3303
3304 pci_pool_destroy(pool);
Zhu Yi41093162010-03-09 16:05:31 +08003305 kfree(phys);
3306 kfree(virts);
Zhu Yi11ebd1b2009-08-28 11:42:31 +08003307
3308 return ret;
James Ketrenos43f66a62005-03-25 12:31:53 -06003309}
3310
3311/* stop nic */
3312static int ipw_stop_nic(struct ipw_priv *priv)
3313{
3314 int rc = 0;
3315
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003316 /* stop */
James Ketrenosb095c382005-08-24 22:04:42 -05003317 ipw_write32(priv, IPW_RESET_REG, IPW_RESET_REG_STOP_MASTER);
Jeff Garzikbf794512005-07-31 13:07:26 -04003318
James Ketrenosb095c382005-08-24 22:04:42 -05003319 rc = ipw_poll_bit(priv, IPW_RESET_REG,
3320 IPW_RESET_REG_MASTER_DISABLED, 500);
James Ketrenos43f66a62005-03-25 12:31:53 -06003321 if (rc < 0) {
Zhu Yic7b6a672006-01-24 16:37:05 +08003322 IPW_ERROR("wait for reg master disabled failed after 500ms\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06003323 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04003324 }
James Ketrenos43f66a62005-03-25 12:31:53 -06003325
James Ketrenosb095c382005-08-24 22:04:42 -05003326 ipw_set_bit(priv, IPW_RESET_REG, CBD_RESET_REG_PRINCETON_RESET);
Jeff Garzikbf794512005-07-31 13:07:26 -04003327
James Ketrenos43f66a62005-03-25 12:31:53 -06003328 return rc;
3329}
3330
3331static void ipw_start_nic(struct ipw_priv *priv)
3332{
3333 IPW_DEBUG_TRACE(">>\n");
3334
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003335 /* prvHwStartNic release ARC */
James Ketrenosb095c382005-08-24 22:04:42 -05003336 ipw_clear_bit(priv, IPW_RESET_REG,
3337 IPW_RESET_REG_MASTER_DISABLED |
3338 IPW_RESET_REG_STOP_MASTER |
James Ketrenos43f66a62005-03-25 12:31:53 -06003339 CBD_RESET_REG_PRINCETON_RESET);
Jeff Garzikbf794512005-07-31 13:07:26 -04003340
James Ketrenos43f66a62005-03-25 12:31:53 -06003341 /* enable power management */
James Ketrenosb095c382005-08-24 22:04:42 -05003342 ipw_set_bit(priv, IPW_GP_CNTRL_RW,
3343 IPW_GP_CNTRL_BIT_HOST_ALLOWS_STANDBY);
James Ketrenos43f66a62005-03-25 12:31:53 -06003344
3345 IPW_DEBUG_TRACE("<<\n");
3346}
Jeff Garzikbf794512005-07-31 13:07:26 -04003347
James Ketrenos43f66a62005-03-25 12:31:53 -06003348static int ipw_init_nic(struct ipw_priv *priv)
3349{
3350 int rc;
3351
3352 IPW_DEBUG_TRACE(">>\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04003353 /* reset */
James Ketrenos43f66a62005-03-25 12:31:53 -06003354 /*prvHwInitNic */
3355 /* set "initialization complete" bit to move adapter to D0 state */
James Ketrenosb095c382005-08-24 22:04:42 -05003356 ipw_set_bit(priv, IPW_GP_CNTRL_RW, IPW_GP_CNTRL_BIT_INIT_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003357
3358 /* low-level PLL activation */
James Ketrenosb095c382005-08-24 22:04:42 -05003359 ipw_write32(priv, IPW_READ_INT_REGISTER,
3360 IPW_BIT_INT_HOST_SRAM_READ_INT_REGISTER);
James Ketrenos43f66a62005-03-25 12:31:53 -06003361
3362 /* wait for clock stabilization */
James Ketrenosb095c382005-08-24 22:04:42 -05003363 rc = ipw_poll_bit(priv, IPW_GP_CNTRL_RW,
3364 IPW_GP_CNTRL_BIT_CLOCK_READY, 250);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003365 if (rc < 0)
James Ketrenos43f66a62005-03-25 12:31:53 -06003366 IPW_DEBUG_INFO("FAILED wait for clock stablization\n");
3367
3368 /* assert SW reset */
James Ketrenosb095c382005-08-24 22:04:42 -05003369 ipw_set_bit(priv, IPW_RESET_REG, IPW_RESET_REG_SW_RESET);
James Ketrenos43f66a62005-03-25 12:31:53 -06003370
3371 udelay(10);
3372
3373 /* set "initialization complete" bit to move adapter to D0 state */
James Ketrenosb095c382005-08-24 22:04:42 -05003374 ipw_set_bit(priv, IPW_GP_CNTRL_RW, IPW_GP_CNTRL_BIT_INIT_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003375
3376 IPW_DEBUG_TRACE(">>\n");
3377 return 0;
3378}
3379
Jeff Garzikbf794512005-07-31 13:07:26 -04003380/* Call this function from process context, it will sleep in request_firmware.
James Ketrenos43f66a62005-03-25 12:31:53 -06003381 * Probe is an ok place to call this from.
3382 */
3383static int ipw_reset_nic(struct ipw_priv *priv)
3384{
3385 int rc = 0;
James Ketrenosa613bff2005-08-24 21:43:11 -05003386 unsigned long flags;
James Ketrenos43f66a62005-03-25 12:31:53 -06003387
3388 IPW_DEBUG_TRACE(">>\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04003389
James Ketrenos43f66a62005-03-25 12:31:53 -06003390 rc = ipw_init_nic(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -04003391
James Ketrenosa613bff2005-08-24 21:43:11 -05003392 spin_lock_irqsave(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06003393 /* Clear the 'host command active' bit... */
3394 priv->status &= ~STATUS_HCMD_ACTIVE;
3395 wake_up_interruptible(&priv->wait_command_queue);
James Ketrenosafbf30a2005-08-25 00:05:33 -05003396 priv->status &= ~(STATUS_SCANNING | STATUS_SCAN_ABORTING);
3397 wake_up_interruptible(&priv->wait_state);
James Ketrenosa613bff2005-08-24 21:43:11 -05003398 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06003399
3400 IPW_DEBUG_TRACE("<<\n");
3401 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04003402}
James Ketrenos43f66a62005-03-25 12:31:53 -06003403
James Ketrenos9006ea72006-03-08 03:22:28 +08003404
3405struct ipw_fw {
Zhu Yi0070f8c2006-04-13 17:20:12 +08003406 __le32 ver;
3407 __le32 boot_size;
3408 __le32 ucode_size;
3409 __le32 fw_size;
James Ketrenos9006ea72006-03-08 03:22:28 +08003410 u8 data[0];
3411};
3412
Jeff Garzikbf794512005-07-31 13:07:26 -04003413static int ipw_get_fw(struct ipw_priv *priv,
James Ketrenos9006ea72006-03-08 03:22:28 +08003414 const struct firmware **raw, const char *name)
James Ketrenos43f66a62005-03-25 12:31:53 -06003415{
James Ketrenos9006ea72006-03-08 03:22:28 +08003416 struct ipw_fw *fw;
James Ketrenos43f66a62005-03-25 12:31:53 -06003417 int rc;
3418
3419 /* ask firmware_class module to get the boot firmware off disk */
James Ketrenos9006ea72006-03-08 03:22:28 +08003420 rc = request_firmware(raw, name, &priv->pci_dev->dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06003421 if (rc < 0) {
James Ketrenos9006ea72006-03-08 03:22:28 +08003422 IPW_ERROR("%s request_firmware failed: Reason %d\n", name, rc);
James Ketrenos43f66a62005-03-25 12:31:53 -06003423 return rc;
Jeff Garzikbf794512005-07-31 13:07:26 -04003424 }
James Ketrenos43f66a62005-03-25 12:31:53 -06003425
James Ketrenos9006ea72006-03-08 03:22:28 +08003426 if ((*raw)->size < sizeof(*fw)) {
3427 IPW_ERROR("%s is too small (%zd)\n", name, (*raw)->size);
James Ketrenos43f66a62005-03-25 12:31:53 -06003428 return -EINVAL;
3429 }
3430
James Ketrenos9006ea72006-03-08 03:22:28 +08003431 fw = (void *)(*raw)->data;
3432
Zhu Yi0070f8c2006-04-13 17:20:12 +08003433 if ((*raw)->size < sizeof(*fw) + le32_to_cpu(fw->boot_size) +
3434 le32_to_cpu(fw->ucode_size) + le32_to_cpu(fw->fw_size)) {
James Ketrenos9006ea72006-03-08 03:22:28 +08003435 IPW_ERROR("%s is too small or corrupt (%zd)\n",
3436 name, (*raw)->size);
3437 return -EINVAL;
3438 }
3439
3440 IPW_DEBUG_INFO("Read firmware '%s' image v%d.%d (%zd bytes)\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06003441 name,
James Ketrenos9006ea72006-03-08 03:22:28 +08003442 le32_to_cpu(fw->ver) >> 16,
3443 le32_to_cpu(fw->ver) & 0xff,
3444 (*raw)->size - sizeof(*fw));
James Ketrenos43f66a62005-03-25 12:31:53 -06003445 return 0;
3446}
3447
James Ketrenosb095c382005-08-24 22:04:42 -05003448#define IPW_RX_BUF_SIZE (3000)
James Ketrenos43f66a62005-03-25 12:31:53 -06003449
Arjan van de Ven858119e2006-01-14 13:20:43 -08003450static void ipw_rx_queue_reset(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06003451 struct ipw_rx_queue *rxq)
3452{
3453 unsigned long flags;
3454 int i;
3455
3456 spin_lock_irqsave(&rxq->lock, flags);
3457
3458 INIT_LIST_HEAD(&rxq->rx_free);
3459 INIT_LIST_HEAD(&rxq->rx_used);
3460
3461 /* Fill the rx_used queue with _all_ of the Rx buffers */
3462 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++) {
3463 /* In the reset function, these buffers may have been allocated
3464 * to an SKB, so we need to unmap and free potential storage */
3465 if (rxq->pool[i].skb != NULL) {
3466 pci_unmap_single(priv->pci_dev, rxq->pool[i].dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05003467 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003468 dev_kfree_skb(rxq->pool[i].skb);
James Ketrenosa613bff2005-08-24 21:43:11 -05003469 rxq->pool[i].skb = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -06003470 }
3471 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
3472 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003473
James Ketrenos43f66a62005-03-25 12:31:53 -06003474 /* Set us so that we have processed and used all buffers, but have
3475 * not restocked the Rx queue with fresh buffers */
3476 rxq->read = rxq->write = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06003477 rxq->free_count = 0;
3478 spin_unlock_irqrestore(&rxq->lock, flags);
3479}
3480
3481#ifdef CONFIG_PM
3482static int fw_loaded = 0;
James Ketrenos9006ea72006-03-08 03:22:28 +08003483static const struct firmware *raw = NULL;
James Ketrenosafbf30a2005-08-25 00:05:33 -05003484
3485static void free_firmware(void)
3486{
3487 if (fw_loaded) {
James Ketrenos9006ea72006-03-08 03:22:28 +08003488 release_firmware(raw);
3489 raw = NULL;
James Ketrenosafbf30a2005-08-25 00:05:33 -05003490 fw_loaded = 0;
3491 }
3492}
3493#else
3494#define free_firmware() do {} while (0)
James Ketrenos43f66a62005-03-25 12:31:53 -06003495#endif
3496
3497static int ipw_load(struct ipw_priv *priv)
3498{
3499#ifndef CONFIG_PM
James Ketrenos9006ea72006-03-08 03:22:28 +08003500 const struct firmware *raw = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -06003501#endif
James Ketrenos9006ea72006-03-08 03:22:28 +08003502 struct ipw_fw *fw;
3503 u8 *boot_img, *ucode_img, *fw_img;
3504 u8 *name = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -06003505 int rc = 0, retries = 3;
3506
Zhu Yi397ae122006-01-24 16:37:22 +08003507 switch (priv->ieee->iw_mode) {
3508 case IW_MODE_ADHOC:
James Ketrenos9006ea72006-03-08 03:22:28 +08003509 name = "ipw2200-ibss.fw";
Zhu Yi397ae122006-01-24 16:37:22 +08003510 break;
James Ketrenosb095c382005-08-24 22:04:42 -05003511#ifdef CONFIG_IPW2200_MONITOR
Zhu Yi397ae122006-01-24 16:37:22 +08003512 case IW_MODE_MONITOR:
James Ketrenos9006ea72006-03-08 03:22:28 +08003513 name = "ipw2200-sniffer.fw";
Zhu Yi397ae122006-01-24 16:37:22 +08003514 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06003515#endif
Zhu Yi397ae122006-01-24 16:37:22 +08003516 case IW_MODE_INFRA:
James Ketrenos9006ea72006-03-08 03:22:28 +08003517 name = "ipw2200-bss.fw";
Zhu Yi397ae122006-01-24 16:37:22 +08003518 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06003519 }
Zhu Yi397ae122006-01-24 16:37:22 +08003520
James Ketrenos9006ea72006-03-08 03:22:28 +08003521 if (!name) {
3522 rc = -EINVAL;
3523 goto error;
3524 }
3525
3526#ifdef CONFIG_PM
3527 if (!fw_loaded) {
3528#endif
3529 rc = ipw_get_fw(priv, &raw, name);
3530 if (rc < 0)
3531 goto error;
3532#ifdef CONFIG_PM
3533 }
3534#endif
3535
3536 fw = (void *)raw->data;
3537 boot_img = &fw->data[0];
Zhu Yi0070f8c2006-04-13 17:20:12 +08003538 ucode_img = &fw->data[le32_to_cpu(fw->boot_size)];
3539 fw_img = &fw->data[le32_to_cpu(fw->boot_size) +
3540 le32_to_cpu(fw->ucode_size)];
James Ketrenos9006ea72006-03-08 03:22:28 +08003541
James Ketrenos43f66a62005-03-25 12:31:53 -06003542 if (!priv->rxq)
3543 priv->rxq = ipw_rx_queue_alloc(priv);
3544 else
3545 ipw_rx_queue_reset(priv, priv->rxq);
3546 if (!priv->rxq) {
3547 IPW_ERROR("Unable to initialize Rx queue\n");
Wei Yongjun5d9e3bc2013-06-21 10:42:19 +08003548 rc = -ENOMEM;
James Ketrenos43f66a62005-03-25 12:31:53 -06003549 goto error;
3550 }
3551
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003552 retry:
James Ketrenos43f66a62005-03-25 12:31:53 -06003553 /* Ensure interrupts are disabled */
James Ketrenosb095c382005-08-24 22:04:42 -05003554 ipw_write32(priv, IPW_INTA_MASK_R, ~IPW_INTA_MASK_ALL);
James Ketrenos43f66a62005-03-25 12:31:53 -06003555 priv->status &= ~STATUS_INT_ENABLED;
3556
3557 /* ack pending interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -05003558 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_MASK_ALL);
Jeff Garzikbf794512005-07-31 13:07:26 -04003559
James Ketrenos43f66a62005-03-25 12:31:53 -06003560 ipw_stop_nic(priv);
3561
3562 rc = ipw_reset_nic(priv);
Zhu Yi397ae122006-01-24 16:37:22 +08003563 if (rc < 0) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003564 IPW_ERROR("Unable to reset NIC\n");
3565 goto error;
3566 }
3567
James Ketrenosb095c382005-08-24 22:04:42 -05003568 ipw_zero_memory(priv, IPW_NIC_SRAM_LOWER_BOUND,
3569 IPW_NIC_SRAM_UPPER_BOUND - IPW_NIC_SRAM_LOWER_BOUND);
James Ketrenos43f66a62005-03-25 12:31:53 -06003570
3571 /* DMA the initial boot firmware into the device */
Zhu Yi0070f8c2006-04-13 17:20:12 +08003572 rc = ipw_load_firmware(priv, boot_img, le32_to_cpu(fw->boot_size));
James Ketrenos43f66a62005-03-25 12:31:53 -06003573 if (rc < 0) {
Peter Jonesa4f6bbb2005-08-26 00:33:34 -05003574 IPW_ERROR("Unable to load boot firmware: %d\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -06003575 goto error;
3576 }
3577
3578 /* kick start the device */
3579 ipw_start_nic(priv);
3580
Zhu Yic7b6a672006-01-24 16:37:05 +08003581 /* wait for the device to finish its initial startup sequence */
James Ketrenosb095c382005-08-24 22:04:42 -05003582 rc = ipw_poll_bit(priv, IPW_INTA_RW,
3583 IPW_INTA_BIT_FW_INITIALIZATION_DONE, 500);
James Ketrenos43f66a62005-03-25 12:31:53 -06003584 if (rc < 0) {
3585 IPW_ERROR("device failed to boot initial fw image\n");
3586 goto error;
3587 }
3588 IPW_DEBUG_INFO("initial device response after %dms\n", rc);
3589
Jeff Garzikbf794512005-07-31 13:07:26 -04003590 /* ack fw init done interrupt */
James Ketrenosb095c382005-08-24 22:04:42 -05003591 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_BIT_FW_INITIALIZATION_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003592
3593 /* DMA the ucode into the device */
Zhu Yi0070f8c2006-04-13 17:20:12 +08003594 rc = ipw_load_ucode(priv, ucode_img, le32_to_cpu(fw->ucode_size));
James Ketrenos43f66a62005-03-25 12:31:53 -06003595 if (rc < 0) {
Peter Jonesa4f6bbb2005-08-26 00:33:34 -05003596 IPW_ERROR("Unable to load ucode: %d\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -06003597 goto error;
3598 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003599
James Ketrenos43f66a62005-03-25 12:31:53 -06003600 /* stop nic */
3601 ipw_stop_nic(priv);
3602
3603 /* DMA bss firmware into the device */
Zhu Yi0070f8c2006-04-13 17:20:12 +08003604 rc = ipw_load_firmware(priv, fw_img, le32_to_cpu(fw->fw_size));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003605 if (rc < 0) {
Peter Jonesa4f6bbb2005-08-26 00:33:34 -05003606 IPW_ERROR("Unable to load firmware: %d\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -06003607 goto error;
3608 }
Zhu Yi397ae122006-01-24 16:37:22 +08003609#ifdef CONFIG_PM
3610 fw_loaded = 1;
3611#endif
3612
James Ketrenos43f66a62005-03-25 12:31:53 -06003613 ipw_write32(priv, IPW_EEPROM_LOAD_DISABLE, 0);
3614
3615 rc = ipw_queue_reset(priv);
Zhu Yi397ae122006-01-24 16:37:22 +08003616 if (rc < 0) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003617 IPW_ERROR("Unable to initialize queues\n");
3618 goto error;
3619 }
3620
3621 /* Ensure interrupts are disabled */
James Ketrenosb095c382005-08-24 22:04:42 -05003622 ipw_write32(priv, IPW_INTA_MASK_R, ~IPW_INTA_MASK_ALL);
James Ketrenosc848d0a2005-08-24 21:56:24 -05003623 /* ack pending interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -05003624 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_MASK_ALL);
Jeff Garzikbf794512005-07-31 13:07:26 -04003625
James Ketrenos43f66a62005-03-25 12:31:53 -06003626 /* kick start the device */
3627 ipw_start_nic(priv);
3628
James Ketrenosb095c382005-08-24 22:04:42 -05003629 if (ipw_read32(priv, IPW_INTA_RW) & IPW_INTA_BIT_PARITY_ERROR) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003630 if (retries > 0) {
3631 IPW_WARNING("Parity error. Retrying init.\n");
3632 retries--;
3633 goto retry;
3634 }
3635
3636 IPW_ERROR("TODO: Handle parity error -- schedule restart?\n");
3637 rc = -EIO;
3638 goto error;
3639 }
3640
3641 /* wait for the device */
James Ketrenosb095c382005-08-24 22:04:42 -05003642 rc = ipw_poll_bit(priv, IPW_INTA_RW,
3643 IPW_INTA_BIT_FW_INITIALIZATION_DONE, 500);
James Ketrenos43f66a62005-03-25 12:31:53 -06003644 if (rc < 0) {
Zhu Yic7b6a672006-01-24 16:37:05 +08003645 IPW_ERROR("device failed to start within 500ms\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06003646 goto error;
3647 }
3648 IPW_DEBUG_INFO("device response after %dms\n", rc);
3649
3650 /* ack fw init done interrupt */
James Ketrenosb095c382005-08-24 22:04:42 -05003651 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_BIT_FW_INITIALIZATION_DONE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003652
Stanislav Yakovlevfdbfff72012-05-17 15:56:35 -04003653 /* read eeprom data */
James Ketrenos43f66a62005-03-25 12:31:53 -06003654 priv->eeprom_delay = 1;
Stanislav Yakovlevfdbfff72012-05-17 15:56:35 -04003655 ipw_read_eeprom(priv);
3656 /* initialize the eeprom region of sram */
Jeff Garzikbf794512005-07-31 13:07:26 -04003657 ipw_eeprom_init_sram(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06003658
3659 /* enable interrupts */
3660 ipw_enable_interrupts(priv);
3661
3662 /* Ensure our queue has valid packets */
3663 ipw_rx_queue_replenish(priv);
3664
James Ketrenosb095c382005-08-24 22:04:42 -05003665 ipw_write32(priv, IPW_RX_READ_INDEX, priv->rxq->read);
James Ketrenos43f66a62005-03-25 12:31:53 -06003666
3667 /* ack pending interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -05003668 ipw_write32(priv, IPW_INTA_RW, IPW_INTA_MASK_ALL);
James Ketrenos43f66a62005-03-25 12:31:53 -06003669
3670#ifndef CONFIG_PM
James Ketrenos9006ea72006-03-08 03:22:28 +08003671 release_firmware(raw);
James Ketrenos43f66a62005-03-25 12:31:53 -06003672#endif
3673 return 0;
3674
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003675 error:
James Ketrenos43f66a62005-03-25 12:31:53 -06003676 if (priv->rxq) {
3677 ipw_rx_queue_free(priv, priv->rxq);
3678 priv->rxq = NULL;
3679 }
3680 ipw_tx_queue_free(priv);
Jesper Juhld144f532012-04-09 22:51:01 +02003681 release_firmware(raw);
James Ketrenos43f66a62005-03-25 12:31:53 -06003682#ifdef CONFIG_PM
3683 fw_loaded = 0;
James Ketrenos9006ea72006-03-08 03:22:28 +08003684 raw = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -06003685#endif
3686
3687 return rc;
3688}
3689
Jeff Garzikbf794512005-07-31 13:07:26 -04003690/**
James Ketrenos43f66a62005-03-25 12:31:53 -06003691 * DMA services
3692 *
3693 * Theory of operation
3694 *
3695 * A queue is a circular buffers with 'Read' and 'Write' pointers.
3696 * 2 empty entries always kept in the buffer to protect from overflow.
3697 *
3698 * For Tx queue, there are low mark and high mark limits. If, after queuing
Jeff Garzikbf794512005-07-31 13:07:26 -04003699 * the packet for Tx, free space become < low mark, Tx queue stopped. When
3700 * reclaiming packets (on 'tx done IRQ), if free space become > high mark,
James Ketrenos43f66a62005-03-25 12:31:53 -06003701 * Tx queue resumed.
3702 *
3703 * The IPW operates with six queues, one receive queue in the device's
3704 * sram, one transmit queue for sending commands to the device firmware,
Jeff Garzikbf794512005-07-31 13:07:26 -04003705 * and four transmit queues for data.
James Ketrenos43f66a62005-03-25 12:31:53 -06003706 *
Jeff Garzikbf794512005-07-31 13:07:26 -04003707 * The four transmit queues allow for performing quality of service (qos)
James Ketrenos43f66a62005-03-25 12:31:53 -06003708 * transmissions as per the 802.11 protocol. Currently Linux does not
Jeff Garzikbf794512005-07-31 13:07:26 -04003709 * provide a mechanism to the user for utilizing prioritized queues, so
James Ketrenos43f66a62005-03-25 12:31:53 -06003710 * we only utilize the first data transmit queue (queue1).
3711 */
3712
3713/**
3714 * Driver allocates buffers of this size for Rx
3715 */
3716
Dan Williams943dbef2008-02-14 17:49:41 -05003717/**
3718 * ipw_rx_queue_space - Return number of free slots available in queue.
3719 */
3720static int ipw_rx_queue_space(const struct ipw_rx_queue *q)
3721{
3722 int s = q->read - q->write;
3723 if (s <= 0)
3724 s += RX_QUEUE_SIZE;
3725 /* keep some buffer to not confuse full and empty queue */
3726 s -= 2;
3727 if (s < 0)
3728 s = 0;
3729 return s;
3730}
3731
3732static inline int ipw_tx_queue_space(const struct clx2_queue *q)
James Ketrenos43f66a62005-03-25 12:31:53 -06003733{
3734 int s = q->last_used - q->first_empty;
3735 if (s <= 0)
3736 s += q->n_bd;
3737 s -= 2; /* keep some reserve to not confuse empty and full situations */
3738 if (s < 0)
3739 s = 0;
3740 return s;
3741}
3742
3743static inline int ipw_queue_inc_wrap(int index, int n_bd)
3744{
3745 return (++index == n_bd) ? 0 : index;
3746}
3747
3748/**
3749 * Initialize common DMA queue structure
Jeff Garzikbf794512005-07-31 13:07:26 -04003750 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003751 * @param q queue to init
3752 * @param count Number of BD's to allocate. Should be power of 2
3753 * @param read_register Address for 'read' register
3754 * (not offset within BAR, full address)
3755 * @param write_register Address for 'write' register
3756 * (not offset within BAR, full address)
3757 * @param base_register Address for 'base' register
3758 * (not offset within BAR, full address)
3759 * @param size Address for 'size' register
3760 * (not offset within BAR, full address)
3761 */
Jeff Garzikbf794512005-07-31 13:07:26 -04003762static void ipw_queue_init(struct ipw_priv *priv, struct clx2_queue *q,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003763 int count, u32 read, u32 write, u32 base, u32 size)
James Ketrenos43f66a62005-03-25 12:31:53 -06003764{
3765 q->n_bd = count;
3766
3767 q->low_mark = q->n_bd / 4;
3768 if (q->low_mark < 4)
3769 q->low_mark = 4;
3770
3771 q->high_mark = q->n_bd / 8;
3772 if (q->high_mark < 2)
3773 q->high_mark = 2;
3774
3775 q->first_empty = q->last_used = 0;
3776 q->reg_r = read;
3777 q->reg_w = write;
3778
3779 ipw_write32(priv, base, q->dma_addr);
3780 ipw_write32(priv, size, count);
3781 ipw_write32(priv, read, 0);
3782 ipw_write32(priv, write, 0);
3783
3784 _ipw_read32(priv, 0x90);
3785}
3786
Jeff Garzikbf794512005-07-31 13:07:26 -04003787static int ipw_queue_tx_init(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06003788 struct clx2_tx_queue *q,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003789 int count, u32 read, u32 write, u32 base, u32 size)
James Ketrenos43f66a62005-03-25 12:31:53 -06003790{
3791 struct pci_dev *dev = priv->pci_dev;
3792
3793 q->txb = kmalloc(sizeof(q->txb[0]) * count, GFP_KERNEL);
3794 if (!q->txb) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003795 IPW_ERROR("vmalloc for auxiliary BD structures failed\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06003796 return -ENOMEM;
3797 }
3798
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003799 q->bd =
3800 pci_alloc_consistent(dev, sizeof(q->bd[0]) * count, &q->q.dma_addr);
James Ketrenos43f66a62005-03-25 12:31:53 -06003801 if (!q->bd) {
Jiri Bencaaa4d302005-06-07 14:58:41 +02003802 IPW_ERROR("pci_alloc_consistent(%zd) failed\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003803 sizeof(q->bd[0]) * count);
James Ketrenos43f66a62005-03-25 12:31:53 -06003804 kfree(q->txb);
3805 q->txb = NULL;
3806 return -ENOMEM;
3807 }
3808
3809 ipw_queue_init(priv, &q->q, count, read, write, base, size);
3810 return 0;
3811}
3812
3813/**
3814 * Free one TFD, those at index [txq->q.last_used].
3815 * Do NOT advance any indexes
Jeff Garzikbf794512005-07-31 13:07:26 -04003816 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003817 * @param dev
3818 * @param txq
3819 */
3820static void ipw_queue_tx_free_tfd(struct ipw_priv *priv,
3821 struct clx2_tx_queue *txq)
3822{
3823 struct tfd_frame *bd = &txq->bd[txq->q.last_used];
3824 struct pci_dev *dev = priv->pci_dev;
3825 int i;
Jeff Garzikbf794512005-07-31 13:07:26 -04003826
James Ketrenos43f66a62005-03-25 12:31:53 -06003827 /* classify bd */
3828 if (bd->control_flags.message_type == TX_HOST_COMMAND_TYPE)
3829 /* nothing to cleanup after for host commands */
3830 return;
3831
3832 /* sanity check */
James Ketrenosa613bff2005-08-24 21:43:11 -05003833 if (le32_to_cpu(bd->u.data.num_chunks) > NUM_TFD_CHUNKS) {
3834 IPW_ERROR("Too many chunks: %i\n",
3835 le32_to_cpu(bd->u.data.num_chunks));
James Ketrenos43f66a62005-03-25 12:31:53 -06003836 /** @todo issue fatal error, it is quite serious situation */
3837 return;
3838 }
3839
3840 /* unmap chunks if any */
James Ketrenosa613bff2005-08-24 21:43:11 -05003841 for (i = 0; i < le32_to_cpu(bd->u.data.num_chunks); i++) {
3842 pci_unmap_single(dev, le32_to_cpu(bd->u.data.chunk_ptr[i]),
3843 le16_to_cpu(bd->u.data.chunk_len[i]),
3844 PCI_DMA_TODEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06003845 if (txq->txb[txq->q.last_used]) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04003846 libipw_txb_free(txq->txb[txq->q.last_used]);
James Ketrenos43f66a62005-03-25 12:31:53 -06003847 txq->txb[txq->q.last_used] = NULL;
3848 }
3849 }
3850}
3851
3852/**
3853 * Deallocate DMA queue.
Jeff Garzikbf794512005-07-31 13:07:26 -04003854 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003855 * Empty queue by removing and destroying all BD's.
3856 * Free all buffers.
Jeff Garzikbf794512005-07-31 13:07:26 -04003857 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003858 * @param dev
3859 * @param q
3860 */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003861static void ipw_queue_tx_free(struct ipw_priv *priv, struct clx2_tx_queue *txq)
James Ketrenos43f66a62005-03-25 12:31:53 -06003862{
3863 struct clx2_queue *q = &txq->q;
3864 struct pci_dev *dev = priv->pci_dev;
3865
Jeff Garzikbf794512005-07-31 13:07:26 -04003866 if (q->n_bd == 0)
3867 return;
James Ketrenos43f66a62005-03-25 12:31:53 -06003868
3869 /* first, empty all BD's */
3870 for (; q->first_empty != q->last_used;
3871 q->last_used = ipw_queue_inc_wrap(q->last_used, q->n_bd)) {
3872 ipw_queue_tx_free_tfd(priv, txq);
3873 }
Jeff Garzikbf794512005-07-31 13:07:26 -04003874
James Ketrenos43f66a62005-03-25 12:31:53 -06003875 /* free buffers belonging to queue itself */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003876 pci_free_consistent(dev, sizeof(txq->bd[0]) * q->n_bd, txq->bd,
James Ketrenos43f66a62005-03-25 12:31:53 -06003877 q->dma_addr);
3878 kfree(txq->txb);
3879
3880 /* 0 fill whole structure */
3881 memset(txq, 0, sizeof(*txq));
3882}
3883
James Ketrenos43f66a62005-03-25 12:31:53 -06003884/**
3885 * Destroy all DMA queues and structures
Jeff Garzikbf794512005-07-31 13:07:26 -04003886 *
James Ketrenos43f66a62005-03-25 12:31:53 -06003887 * @param priv
3888 */
3889static void ipw_tx_queue_free(struct ipw_priv *priv)
3890{
3891 /* Tx CMD queue */
3892 ipw_queue_tx_free(priv, &priv->txq_cmd);
3893
3894 /* Tx queues */
3895 ipw_queue_tx_free(priv, &priv->txq[0]);
3896 ipw_queue_tx_free(priv, &priv->txq[1]);
3897 ipw_queue_tx_free(priv, &priv->txq[2]);
3898 ipw_queue_tx_free(priv, &priv->txq[3]);
3899}
3900
Arjan van de Ven858119e2006-01-14 13:20:43 -08003901static void ipw_create_bssid(struct ipw_priv *priv, u8 * bssid)
James Ketrenos43f66a62005-03-25 12:31:53 -06003902{
3903 /* First 3 bytes are manufacturer */
3904 bssid[0] = priv->mac_addr[0];
3905 bssid[1] = priv->mac_addr[1];
3906 bssid[2] = priv->mac_addr[2];
3907
3908 /* Last bytes are random */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003909 get_random_bytes(&bssid[3], ETH_ALEN - 3);
James Ketrenos43f66a62005-03-25 12:31:53 -06003910
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003911 bssid[0] &= 0xfe; /* clear multicast bit */
3912 bssid[0] |= 0x02; /* set local assignment bit (IEEE802) */
James Ketrenos43f66a62005-03-25 12:31:53 -06003913}
3914
Arjan van de Ven858119e2006-01-14 13:20:43 -08003915static u8 ipw_add_station(struct ipw_priv *priv, u8 * bssid)
James Ketrenos43f66a62005-03-25 12:31:53 -06003916{
3917 struct ipw_station_entry entry;
3918 int i;
3919
3920 for (i = 0; i < priv->num_stations; i++) {
dingtianhong36325f32013-12-26 19:41:23 +08003921 if (ether_addr_equal(priv->stations[i], bssid)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003922 /* Another node is active in network */
3923 priv->missed_adhoc_beacons = 0;
3924 if (!(priv->config & CFG_STATIC_CHANNEL))
3925 /* when other nodes drop out, we drop out */
3926 priv->config &= ~CFG_ADHOC_PERSIST;
3927
3928 return i;
3929 }
3930 }
3931
3932 if (i == MAX_STATIONS)
3933 return IPW_INVALID_STATION;
3934
Johannes Berge1749612008-10-27 15:59:26 -07003935 IPW_DEBUG_SCAN("Adding AdHoc station: %pM\n", bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06003936
3937 entry.reserved = 0;
3938 entry.support_mode = 0;
3939 memcpy(entry.mac_addr, bssid, ETH_ALEN);
3940 memcpy(priv->stations[i], bssid, ETH_ALEN);
3941 ipw_write_direct(priv, IPW_STATION_TABLE_LOWER + i * sizeof(entry),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04003942 &entry, sizeof(entry));
James Ketrenos43f66a62005-03-25 12:31:53 -06003943 priv->num_stations++;
3944
3945 return i;
3946}
3947
Arjan van de Ven858119e2006-01-14 13:20:43 -08003948static u8 ipw_find_station(struct ipw_priv *priv, u8 * bssid)
James Ketrenos43f66a62005-03-25 12:31:53 -06003949{
3950 int i;
3951
Jeff Garzikbf794512005-07-31 13:07:26 -04003952 for (i = 0; i < priv->num_stations; i++)
dingtianhong36325f32013-12-26 19:41:23 +08003953 if (ether_addr_equal(priv->stations[i], bssid))
James Ketrenos43f66a62005-03-25 12:31:53 -06003954 return i;
3955
3956 return IPW_INVALID_STATION;
3957}
3958
3959static void ipw_send_disassociate(struct ipw_priv *priv, int quiet)
3960{
3961 int err;
3962
Hong Liu7b996592005-08-25 17:36:13 +08003963 if (priv->status & STATUS_ASSOCIATING) {
3964 IPW_DEBUG_ASSOC("Disassociating while associating.\n");
Tejun Heobcb6d912011-01-26 12:12:50 +01003965 schedule_work(&priv->disassociate);
Hong Liu7b996592005-08-25 17:36:13 +08003966 return;
3967 }
3968
3969 if (!(priv->status & STATUS_ASSOCIATED)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06003970 IPW_DEBUG_ASSOC("Disassociating while not associated.\n");
3971 return;
3972 }
3973
Masahiro Yamada66f00442017-02-27 14:29:42 -08003974 IPW_DEBUG_ASSOC("Disassociation attempt from %pM "
James Ketrenos43f66a62005-03-25 12:31:53 -06003975 "on channel %d.\n",
Johannes Berge1749612008-10-27 15:59:26 -07003976 priv->assoc_request.bssid,
James Ketrenos43f66a62005-03-25 12:31:53 -06003977 priv->assoc_request.channel);
3978
3979 priv->status &= ~(STATUS_ASSOCIATING | STATUS_ASSOCIATED);
3980 priv->status |= STATUS_DISASSOCIATING;
3981
3982 if (quiet)
3983 priv->assoc_request.assoc_type = HC_DISASSOC_QUIET;
3984 else
3985 priv->assoc_request.assoc_type = HC_DISASSOCIATE;
Hong Liue6324722005-09-14 21:04:15 -05003986
James Ketrenos43f66a62005-03-25 12:31:53 -06003987 err = ipw_send_associate(priv, &priv->assoc_request);
3988 if (err) {
3989 IPW_DEBUG_HC("Attempt to send [dis]associate command "
3990 "failed.\n");
3991 return;
3992 }
3993
3994}
3995
James Ketrenosc848d0a2005-08-24 21:56:24 -05003996static int ipw_disassociate(void *data)
James Ketrenos43f66a62005-03-25 12:31:53 -06003997{
James Ketrenosc848d0a2005-08-24 21:56:24 -05003998 struct ipw_priv *priv = data;
3999 if (!(priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)))
4000 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06004001 ipw_send_disassociate(data, 0);
Zhu Yib8ddafd2008-11-27 13:42:20 +08004002 netif_carrier_off(priv->net_dev);
James Ketrenosc848d0a2005-08-24 21:56:24 -05004003 return 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06004004}
4005
David Howellsc4028952006-11-22 14:57:56 +00004006static void ipw_bg_disassociate(struct work_struct *work)
James Ketrenos43f66a62005-03-25 12:31:53 -06004007{
David Howellsc4028952006-11-22 14:57:56 +00004008 struct ipw_priv *priv =
4009 container_of(work, struct ipw_priv, disassociate);
Zhu Yi46441512006-01-24 16:37:59 +08004010 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00004011 ipw_disassociate(priv);
Zhu Yi46441512006-01-24 16:37:59 +08004012 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06004013}
4014
David Howellsc4028952006-11-22 14:57:56 +00004015static void ipw_system_config(struct work_struct *work)
Zhu Yid8bad6d2005-07-13 12:25:38 -05004016{
David Howellsc4028952006-11-22 14:57:56 +00004017 struct ipw_priv *priv =
4018 container_of(work, struct ipw_priv, system_config);
Zhu Yid685b8c2006-04-13 17:20:27 +08004019
4020#ifdef CONFIG_IPW2200_PROMISCUOUS
4021 if (priv->prom_net_dev && netif_running(priv->prom_net_dev)) {
4022 priv->sys_config.accept_all_data_frames = 1;
4023 priv->sys_config.accept_non_directed_frames = 1;
4024 priv->sys_config.accept_all_mgmt_bcpr = 1;
4025 priv->sys_config.accept_all_mgmt_frames = 1;
4026 }
4027#endif
4028
4029 ipw_send_system_config(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06004030}
4031
4032struct ipw_status_code {
4033 u16 status;
4034 const char *reason;
4035};
4036
4037static const struct ipw_status_code ipw_status_codes[] = {
4038 {0x00, "Successful"},
4039 {0x01, "Unspecified failure"},
4040 {0x0A, "Cannot support all requested capabilities in the "
4041 "Capability information field"},
4042 {0x0B, "Reassociation denied due to inability to confirm that "
4043 "association exists"},
4044 {0x0C, "Association denied due to reason outside the scope of this "
4045 "standard"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004046 {0x0D,
4047 "Responding station does not support the specified authentication "
James Ketrenos43f66a62005-03-25 12:31:53 -06004048 "algorithm"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004049 {0x0E,
4050 "Received an Authentication frame with authentication sequence "
James Ketrenos43f66a62005-03-25 12:31:53 -06004051 "transaction sequence number out of expected sequence"},
4052 {0x0F, "Authentication rejected because of challenge failure"},
4053 {0x10, "Authentication rejected due to timeout waiting for next "
4054 "frame in sequence"},
4055 {0x11, "Association denied because AP is unable to handle additional "
4056 "associated stations"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004057 {0x12,
4058 "Association denied due to requesting station not supporting all "
James Ketrenos43f66a62005-03-25 12:31:53 -06004059 "of the datarates in the BSSBasicServiceSet Parameter"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004060 {0x13,
4061 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06004062 "short preamble operation"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004063 {0x14,
4064 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06004065 "PBCC encoding"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004066 {0x15,
4067 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06004068 "channel agility"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004069 {0x19,
4070 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06004071 "short slot operation"},
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004072 {0x1A,
4073 "Association denied due to requesting station not supporting "
James Ketrenos43f66a62005-03-25 12:31:53 -06004074 "DSSS-OFDM operation"},
4075 {0x28, "Invalid Information Element"},
4076 {0x29, "Group Cipher is not valid"},
4077 {0x2A, "Pairwise Cipher is not valid"},
4078 {0x2B, "AKMP is not valid"},
4079 {0x2C, "Unsupported RSN IE version"},
4080 {0x2D, "Invalid RSN IE Capabilities"},
4081 {0x2E, "Cipher suite is rejected per security policy"},
4082};
4083
Jeff Garzikbf794512005-07-31 13:07:26 -04004084static const char *ipw_get_status_code(u16 status)
James Ketrenos43f66a62005-03-25 12:31:53 -06004085{
4086 int i;
Jeff Garzikbf794512005-07-31 13:07:26 -04004087 for (i = 0; i < ARRAY_SIZE(ipw_status_codes); i++)
James Ketrenosea2b26e2005-08-24 21:25:16 -05004088 if (ipw_status_codes[i].status == (status & 0xff))
James Ketrenos43f66a62005-03-25 12:31:53 -06004089 return ipw_status_codes[i].reason;
4090 return "Unknown status value.";
4091}
James Ketrenos43f66a62005-03-25 12:31:53 -06004092
Arnd Bergmann6f07e0f2016-06-16 15:52:10 +02004093static inline void average_init(struct average *avg)
James Ketrenos43f66a62005-03-25 12:31:53 -06004094{
4095 memset(avg, 0, sizeof(*avg));
4096}
4097
Zhu Yi00d21de2006-04-13 17:19:02 +08004098#define DEPTH_RSSI 8
4099#define DEPTH_NOISE 16
4100static s16 exponential_average(s16 prev_avg, s16 val, u8 depth)
4101{
4102 return ((depth-1)*prev_avg + val)/depth;
4103}
4104
Arjan van de Ven858119e2006-01-14 13:20:43 -08004105static void average_add(struct average *avg, s16 val)
James Ketrenos43f66a62005-03-25 12:31:53 -06004106{
4107 avg->sum -= avg->entries[avg->pos];
4108 avg->sum += val;
4109 avg->entries[avg->pos++] = val;
4110 if (unlikely(avg->pos == AVG_ENTRIES)) {
4111 avg->init = 1;
4112 avg->pos = 0;
4113 }
4114}
4115
Arjan van de Ven858119e2006-01-14 13:20:43 -08004116static s16 average_value(struct average *avg)
James Ketrenos43f66a62005-03-25 12:31:53 -06004117{
4118 if (!unlikely(avg->init)) {
4119 if (avg->pos)
4120 return avg->sum / avg->pos;
4121 return 0;
4122 }
4123
4124 return avg->sum / AVG_ENTRIES;
4125}
4126
4127static void ipw_reset_stats(struct ipw_priv *priv)
4128{
4129 u32 len = sizeof(u32);
4130
4131 priv->quality = 0;
4132
4133 average_init(&priv->average_missed_beacons);
Zhu Yi00d21de2006-04-13 17:19:02 +08004134 priv->exp_avg_rssi = -60;
4135 priv->exp_avg_noise = -85 + 0x100;
James Ketrenos43f66a62005-03-25 12:31:53 -06004136
4137 priv->last_rate = 0;
4138 priv->last_missed_beacons = 0;
4139 priv->last_rx_packets = 0;
4140 priv->last_tx_packets = 0;
4141 priv->last_tx_failures = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04004142
James Ketrenos43f66a62005-03-25 12:31:53 -06004143 /* Firmware managed, reset only when NIC is restarted, so we have to
4144 * normalize on the current value */
Jeff Garzikbf794512005-07-31 13:07:26 -04004145 ipw_get_ordinal(priv, IPW_ORD_STAT_RX_ERR_CRC,
James Ketrenos43f66a62005-03-25 12:31:53 -06004146 &priv->last_rx_err, &len);
Jeff Garzikbf794512005-07-31 13:07:26 -04004147 ipw_get_ordinal(priv, IPW_ORD_STAT_TX_FAILURE,
James Ketrenos43f66a62005-03-25 12:31:53 -06004148 &priv->last_tx_failures, &len);
4149
4150 /* Driver managed, reset with each association */
4151 priv->missed_adhoc_beacons = 0;
4152 priv->missed_beacons = 0;
4153 priv->tx_packets = 0;
4154 priv->rx_packets = 0;
4155
4156}
4157
Arjan van de Ven858119e2006-01-14 13:20:43 -08004158static u32 ipw_get_max_rate(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -06004159{
4160 u32 i = 0x80000000;
4161 u32 mask = priv->rates_mask;
4162 /* If currently associated in B mode, restrict the maximum
4163 * rate match to B rates */
4164 if (priv->assoc_request.ieee_mode == IPW_B_MODE)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004165 mask &= LIBIPW_CCK_RATES_MASK;
James Ketrenos43f66a62005-03-25 12:31:53 -06004166
4167 /* TODO: Verify that the rate is supported by the current rates
4168 * list. */
4169
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004170 while (i && !(mask & i))
4171 i >>= 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06004172 switch (i) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004173 case LIBIPW_CCK_RATE_1MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004174 return 1000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004175 case LIBIPW_CCK_RATE_2MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004176 return 2000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004177 case LIBIPW_CCK_RATE_5MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004178 return 5500000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004179 case LIBIPW_OFDM_RATE_6MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004180 return 6000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004181 case LIBIPW_OFDM_RATE_9MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004182 return 9000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004183 case LIBIPW_CCK_RATE_11MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004184 return 11000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004185 case LIBIPW_OFDM_RATE_12MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004186 return 12000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004187 case LIBIPW_OFDM_RATE_18MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004188 return 18000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004189 case LIBIPW_OFDM_RATE_24MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004190 return 24000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004191 case LIBIPW_OFDM_RATE_36MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004192 return 36000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004193 case LIBIPW_OFDM_RATE_48MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004194 return 48000000;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004195 case LIBIPW_OFDM_RATE_54MB_MASK:
James Ketrenosea2b26e2005-08-24 21:25:16 -05004196 return 54000000;
James Ketrenos43f66a62005-03-25 12:31:53 -06004197 }
4198
Jeff Garzikbf794512005-07-31 13:07:26 -04004199 if (priv->ieee->mode == IEEE_B)
James Ketrenos43f66a62005-03-25 12:31:53 -06004200 return 11000000;
4201 else
4202 return 54000000;
4203}
4204
4205static u32 ipw_get_current_rate(struct ipw_priv *priv)
4206{
4207 u32 rate, len = sizeof(rate);
4208 int err;
4209
Jeff Garzikbf794512005-07-31 13:07:26 -04004210 if (!(priv->status & STATUS_ASSOCIATED))
James Ketrenos43f66a62005-03-25 12:31:53 -06004211 return 0;
4212
4213 if (priv->tx_packets > IPW_REAL_RATE_RX_PACKET_THRESHOLD) {
Jeff Garzikbf794512005-07-31 13:07:26 -04004214 err = ipw_get_ordinal(priv, IPW_ORD_STAT_TX_CURR_RATE, &rate,
James Ketrenos43f66a62005-03-25 12:31:53 -06004215 &len);
4216 if (err) {
4217 IPW_DEBUG_INFO("failed querying ordinals.\n");
4218 return 0;
4219 }
Jeff Garzikbf794512005-07-31 13:07:26 -04004220 } else
James Ketrenos43f66a62005-03-25 12:31:53 -06004221 return ipw_get_max_rate(priv);
4222
4223 switch (rate) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05004224 case IPW_TX_RATE_1MB:
4225 return 1000000;
4226 case IPW_TX_RATE_2MB:
4227 return 2000000;
4228 case IPW_TX_RATE_5MB:
4229 return 5500000;
4230 case IPW_TX_RATE_6MB:
4231 return 6000000;
4232 case IPW_TX_RATE_9MB:
4233 return 9000000;
4234 case IPW_TX_RATE_11MB:
4235 return 11000000;
4236 case IPW_TX_RATE_12MB:
4237 return 12000000;
4238 case IPW_TX_RATE_18MB:
4239 return 18000000;
4240 case IPW_TX_RATE_24MB:
4241 return 24000000;
4242 case IPW_TX_RATE_36MB:
4243 return 36000000;
4244 case IPW_TX_RATE_48MB:
4245 return 48000000;
4246 case IPW_TX_RATE_54MB:
4247 return 54000000;
James Ketrenos43f66a62005-03-25 12:31:53 -06004248 }
4249
4250 return 0;
4251}
4252
James Ketrenos43f66a62005-03-25 12:31:53 -06004253#define IPW_STATS_INTERVAL (2 * HZ)
4254static void ipw_gather_stats(struct ipw_priv *priv)
4255{
4256 u32 rx_err, rx_err_delta, rx_packets_delta;
4257 u32 tx_failures, tx_failures_delta, tx_packets_delta;
4258 u32 missed_beacons_percent, missed_beacons_delta;
4259 u32 quality = 0;
4260 u32 len = sizeof(u32);
4261 s16 rssi;
Jeff Garzikbf794512005-07-31 13:07:26 -04004262 u32 beacon_quality, signal_quality, tx_quality, rx_quality,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004263 rate_quality;
James Ketrenosea2b26e2005-08-24 21:25:16 -05004264 u32 max_rate;
James Ketrenos43f66a62005-03-25 12:31:53 -06004265
4266 if (!(priv->status & STATUS_ASSOCIATED)) {
4267 priv->quality = 0;
4268 return;
4269 }
4270
4271 /* Update the statistics */
Jeff Garzikbf794512005-07-31 13:07:26 -04004272 ipw_get_ordinal(priv, IPW_ORD_STAT_MISSED_BEACONS,
James Ketrenos43f66a62005-03-25 12:31:53 -06004273 &priv->missed_beacons, &len);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004274 missed_beacons_delta = priv->missed_beacons - priv->last_missed_beacons;
James Ketrenos43f66a62005-03-25 12:31:53 -06004275 priv->last_missed_beacons = priv->missed_beacons;
4276 if (priv->assoc_request.beacon_interval) {
4277 missed_beacons_percent = missed_beacons_delta *
Al Viro5b5e8072007-12-27 01:54:06 -05004278 (HZ * le16_to_cpu(priv->assoc_request.beacon_interval)) /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004279 (IPW_STATS_INTERVAL * 10);
James Ketrenos43f66a62005-03-25 12:31:53 -06004280 } else {
4281 missed_beacons_percent = 0;
4282 }
4283 average_add(&priv->average_missed_beacons, missed_beacons_percent);
4284
4285 ipw_get_ordinal(priv, IPW_ORD_STAT_RX_ERR_CRC, &rx_err, &len);
4286 rx_err_delta = rx_err - priv->last_rx_err;
4287 priv->last_rx_err = rx_err;
4288
4289 ipw_get_ordinal(priv, IPW_ORD_STAT_TX_FAILURE, &tx_failures, &len);
4290 tx_failures_delta = tx_failures - priv->last_tx_failures;
4291 priv->last_tx_failures = tx_failures;
4292
4293 rx_packets_delta = priv->rx_packets - priv->last_rx_packets;
4294 priv->last_rx_packets = priv->rx_packets;
4295
4296 tx_packets_delta = priv->tx_packets - priv->last_tx_packets;
4297 priv->last_tx_packets = priv->tx_packets;
4298
4299 /* Calculate quality based on the following:
Jeff Garzikbf794512005-07-31 13:07:26 -04004300 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004301 * Missed beacon: 100% = 0, 0% = 70% missed
4302 * Rate: 60% = 1Mbs, 100% = Max
4303 * Rx and Tx errors represent a straight % of total Rx/Tx
4304 * RSSI: 100% = > -50, 0% = < -80
4305 * Rx errors: 100% = 0, 0% = 50% missed
Jeff Garzikbf794512005-07-31 13:07:26 -04004306 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004307 * The lowest computed quality is used.
4308 *
4309 */
4310#define BEACON_THRESHOLD 5
4311 beacon_quality = 100 - missed_beacons_percent;
4312 if (beacon_quality < BEACON_THRESHOLD)
4313 beacon_quality = 0;
4314 else
Jeff Garzikbf794512005-07-31 13:07:26 -04004315 beacon_quality = (beacon_quality - BEACON_THRESHOLD) * 100 /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004316 (100 - BEACON_THRESHOLD);
Jeff Garzikbf794512005-07-31 13:07:26 -04004317 IPW_DEBUG_STATS("Missed beacon: %3d%% (%d%%)\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06004318 beacon_quality, missed_beacons_percent);
Jeff Garzikbf794512005-07-31 13:07:26 -04004319
James Ketrenos43f66a62005-03-25 12:31:53 -06004320 priv->last_rate = ipw_get_current_rate(priv);
James Ketrenosea2b26e2005-08-24 21:25:16 -05004321 max_rate = ipw_get_max_rate(priv);
4322 rate_quality = priv->last_rate * 40 / max_rate + 60;
James Ketrenos43f66a62005-03-25 12:31:53 -06004323 IPW_DEBUG_STATS("Rate quality : %3d%% (%dMbs)\n",
4324 rate_quality, priv->last_rate / 1000000);
Jeff Garzikbf794512005-07-31 13:07:26 -04004325
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004326 if (rx_packets_delta > 100 && rx_packets_delta + rx_err_delta)
Jeff Garzikbf794512005-07-31 13:07:26 -04004327 rx_quality = 100 - (rx_err_delta * 100) /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004328 (rx_packets_delta + rx_err_delta);
James Ketrenos43f66a62005-03-25 12:31:53 -06004329 else
4330 rx_quality = 100;
4331 IPW_DEBUG_STATS("Rx quality : %3d%% (%u errors, %u packets)\n",
4332 rx_quality, rx_err_delta, rx_packets_delta);
Jeff Garzikbf794512005-07-31 13:07:26 -04004333
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004334 if (tx_packets_delta > 100 && tx_packets_delta + tx_failures_delta)
Jeff Garzikbf794512005-07-31 13:07:26 -04004335 tx_quality = 100 - (tx_failures_delta * 100) /
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004336 (tx_packets_delta + tx_failures_delta);
James Ketrenos43f66a62005-03-25 12:31:53 -06004337 else
4338 tx_quality = 100;
4339 IPW_DEBUG_STATS("Tx quality : %3d%% (%u errors, %u packets)\n",
4340 tx_quality, tx_failures_delta, tx_packets_delta);
Jeff Garzikbf794512005-07-31 13:07:26 -04004341
Zhu Yi00d21de2006-04-13 17:19:02 +08004342 rssi = priv->exp_avg_rssi;
James Ketrenosc848d0a2005-08-24 21:56:24 -05004343 signal_quality =
4344 (100 *
4345 (priv->ieee->perfect_rssi - priv->ieee->worst_rssi) *
4346 (priv->ieee->perfect_rssi - priv->ieee->worst_rssi) -
4347 (priv->ieee->perfect_rssi - rssi) *
4348 (15 * (priv->ieee->perfect_rssi - priv->ieee->worst_rssi) +
4349 62 * (priv->ieee->perfect_rssi - rssi))) /
4350 ((priv->ieee->perfect_rssi - priv->ieee->worst_rssi) *
4351 (priv->ieee->perfect_rssi - priv->ieee->worst_rssi));
4352 if (signal_quality > 100)
James Ketrenos43f66a62005-03-25 12:31:53 -06004353 signal_quality = 100;
James Ketrenosc848d0a2005-08-24 21:56:24 -05004354 else if (signal_quality < 1)
James Ketrenos43f66a62005-03-25 12:31:53 -06004355 signal_quality = 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05004356
Zhu Yi61fb9ed2006-04-13 17:19:55 +08004357 IPW_DEBUG_STATS("Signal level : %3d%% (%d dBm)\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06004358 signal_quality, rssi);
Jeff Garzikbf794512005-07-31 13:07:26 -04004359
Reinette Chatre21f8a732009-08-18 10:25:05 -07004360 quality = min(rx_quality, signal_quality);
4361 quality = min(tx_quality, quality);
4362 quality = min(rate_quality, quality);
4363 quality = min(beacon_quality, quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004364 if (quality == beacon_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004365 IPW_DEBUG_STATS("Quality (%d%%): Clamped to missed beacons.\n",
4366 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004367 if (quality == rate_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004368 IPW_DEBUG_STATS("Quality (%d%%): Clamped to rate quality.\n",
4369 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004370 if (quality == tx_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004371 IPW_DEBUG_STATS("Quality (%d%%): Clamped to Tx quality.\n",
4372 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004373 if (quality == rx_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004374 IPW_DEBUG_STATS("Quality (%d%%): Clamped to Rx quality.\n",
4375 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004376 if (quality == signal_quality)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004377 IPW_DEBUG_STATS("Quality (%d%%): Clamped to signal quality.\n",
4378 quality);
James Ketrenos43f66a62005-03-25 12:31:53 -06004379
4380 priv->quality = quality;
Jeff Garzikbf794512005-07-31 13:07:26 -04004381
Tejun Heobcb6d912011-01-26 12:12:50 +01004382 schedule_delayed_work(&priv->gather_stats, IPW_STATS_INTERVAL);
James Ketrenos43f66a62005-03-25 12:31:53 -06004383}
4384
David Howellsc4028952006-11-22 14:57:56 +00004385static void ipw_bg_gather_stats(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -05004386{
David Howellsc4028952006-11-22 14:57:56 +00004387 struct ipw_priv *priv =
4388 container_of(work, struct ipw_priv, gather_stats.work);
Zhu Yi46441512006-01-24 16:37:59 +08004389 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00004390 ipw_gather_stats(priv);
Zhu Yi46441512006-01-24 16:37:59 +08004391 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05004392}
4393
Ben Cahille7582562005-10-06 15:34:41 -05004394/* Missed beacon behavior:
4395 * 1st missed -> roaming_threshold, just wait, don't do any scan/roam.
4396 * roaming_threshold -> disassociate_threshold, scan and roam for better signal.
4397 * Above disassociate threshold, give up and stop scanning.
4398 * Roaming is disabled if disassociate_threshold <= roaming_threshold */
Arjan van de Ven858119e2006-01-14 13:20:43 -08004399static void ipw_handle_missed_beacon(struct ipw_priv *priv,
James Ketrenosea2b26e2005-08-24 21:25:16 -05004400 int missed_count)
4401{
4402 priv->notif_missed_beacons = missed_count;
4403
James Ketrenosafbf30a2005-08-25 00:05:33 -05004404 if (missed_count > priv->disassociate_threshold &&
James Ketrenosea2b26e2005-08-24 21:25:16 -05004405 priv->status & STATUS_ASSOCIATED) {
4406 /* If associated and we've hit the missed
4407 * beacon threshold, disassociate, turn
4408 * off roaming, and abort any active scans */
4409 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF |
James Ketrenosafbf30a2005-08-25 00:05:33 -05004410 IPW_DL_STATE | IPW_DL_ASSOC,
James Ketrenosea2b26e2005-08-24 21:25:16 -05004411 "Missed beacon: %d - disassociate\n", missed_count);
4412 priv->status &= ~STATUS_ROAMING;
James Ketrenosa613bff2005-08-24 21:43:11 -05004413 if (priv->status & STATUS_SCANNING) {
4414 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF |
4415 IPW_DL_STATE,
4416 "Aborting scan with missed beacon.\n");
Tejun Heobcb6d912011-01-26 12:12:50 +01004417 schedule_work(&priv->abort_scan);
James Ketrenosa613bff2005-08-24 21:43:11 -05004418 }
4419
Tejun Heobcb6d912011-01-26 12:12:50 +01004420 schedule_work(&priv->disassociate);
James Ketrenosea2b26e2005-08-24 21:25:16 -05004421 return;
4422 }
4423
4424 if (priv->status & STATUS_ROAMING) {
4425 /* If we are currently roaming, then just
4426 * print a debug statement... */
4427 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
4428 "Missed beacon: %d - roam in progress\n",
4429 missed_count);
4430 return;
4431 }
4432
Zhu Yi4bfdb912006-01-24 16:37:16 +08004433 if (roaming &&
4434 (missed_count > priv->roaming_threshold &&
4435 missed_count <= priv->disassociate_threshold)) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05004436 /* If we are not already roaming, set the ROAM
Ben Cahille7582562005-10-06 15:34:41 -05004437 * bit in the status and kick off a scan.
4438 * This can happen several times before we reach
4439 * disassociate_threshold. */
James Ketrenosea2b26e2005-08-24 21:25:16 -05004440 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
4441 "Missed beacon: %d - initiate "
4442 "roaming\n", missed_count);
4443 if (!(priv->status & STATUS_ROAMING)) {
4444 priv->status |= STATUS_ROAMING;
4445 if (!(priv->status & STATUS_SCANNING))
Tejun Heobcb6d912011-01-26 12:12:50 +01004446 schedule_delayed_work(&priv->request_scan, 0);
James Ketrenosea2b26e2005-08-24 21:25:16 -05004447 }
4448 return;
4449 }
4450
Helmut Schaa14a4dfe2008-12-10 13:17:26 +01004451 if (priv->status & STATUS_SCANNING &&
4452 missed_count > IPW_MB_SCAN_CANCEL_THRESHOLD) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05004453 /* Stop scan to keep fw from getting
4454 * stuck (only if we aren't roaming --
4455 * otherwise we'll never scan more than 2 or 3
4456 * channels..) */
James Ketrenosb095c382005-08-24 22:04:42 -05004457 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF | IPW_DL_STATE,
4458 "Aborting scan with missed beacon.\n");
Tejun Heobcb6d912011-01-26 12:12:50 +01004459 schedule_work(&priv->abort_scan);
James Ketrenosea2b26e2005-08-24 21:25:16 -05004460 }
4461
4462 IPW_DEBUG_NOTIF("Missed beacon: %d\n", missed_count);
James Ketrenosea2b26e2005-08-24 21:25:16 -05004463}
4464
Dan Williams0b531672007-10-09 13:55:24 -04004465static void ipw_scan_event(struct work_struct *work)
4466{
4467 union iwreq_data wrqu;
4468
4469 struct ipw_priv *priv =
4470 container_of(work, struct ipw_priv, scan_event.work);
4471
4472 wrqu.data.length = 0;
4473 wrqu.data.flags = 0;
4474 wireless_send_event(priv->net_dev, SIOCGIWSCAN, &wrqu, NULL);
4475}
4476
4477static void handle_scan_event(struct ipw_priv *priv)
4478{
4479 /* Only userspace-requested scan completion events go out immediately */
4480 if (!priv->user_requested_scan) {
Tejun Heo7c99e0b2012-12-21 17:56:54 -08004481 schedule_delayed_work(&priv->scan_event,
4482 round_jiffies_relative(msecs_to_jiffies(4000)));
Dan Williams0b531672007-10-09 13:55:24 -04004483 } else {
Dan Williams0b531672007-10-09 13:55:24 -04004484 priv->user_requested_scan = 0;
Tejun Heo7c99e0b2012-12-21 17:56:54 -08004485 mod_delayed_work(system_wq, &priv->scan_event, 0);
Dan Williams0b531672007-10-09 13:55:24 -04004486 }
4487}
4488
James Ketrenos43f66a62005-03-25 12:31:53 -06004489/**
4490 * Handle host notification packet.
4491 * Called from interrupt routine
4492 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08004493static void ipw_rx_notification(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06004494 struct ipw_rx_notification *notif)
4495{
Al Viroe62e1ee2007-12-27 01:36:46 -05004496 u16 size = le16_to_cpu(notif->size);
James Ketrenosa613bff2005-08-24 21:43:11 -05004497
Al Viroe62e1ee2007-12-27 01:36:46 -05004498 IPW_DEBUG_NOTIF("type = %i (%d bytes)\n", notif->subtype, size);
Jeff Garzikbf794512005-07-31 13:07:26 -04004499
James Ketrenos43f66a62005-03-25 12:31:53 -06004500 switch (notif->subtype) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004501 case HOST_NOTIFICATION_STATUS_ASSOCIATED:{
4502 struct notif_association *assoc = &notif->u.assoc;
Jeff Garzikbf794512005-07-31 13:07:26 -04004503
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004504 switch (assoc->state) {
4505 case CMAS_ASSOCIATED:{
4506 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4507 IPW_DL_ASSOC,
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07004508 "associated: '%*pE' %pM\n",
4509 priv->essid_len, priv->essid,
Johannes Berge1749612008-10-27 15:59:26 -07004510 priv->bssid);
Jeff Garzikbf794512005-07-31 13:07:26 -04004511
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004512 switch (priv->ieee->iw_mode) {
4513 case IW_MODE_INFRA:
4514 memcpy(priv->ieee->bssid,
4515 priv->bssid, ETH_ALEN);
4516 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06004517
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004518 case IW_MODE_ADHOC:
4519 memcpy(priv->ieee->bssid,
4520 priv->bssid, ETH_ALEN);
Jeff Garzikbf794512005-07-31 13:07:26 -04004521
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004522 /* clear out the station table */
4523 priv->num_stations = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06004524
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004525 IPW_DEBUG_ASSOC
4526 ("queueing adhoc check\n");
Tejun Heobcb6d912011-01-26 12:12:50 +01004527 schedule_delayed_work(
4528 &priv->adhoc_check,
4529 le16_to_cpu(priv->
4530 assoc_request.
4531 beacon_interval));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004532 break;
4533 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004534
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004535 priv->status &= ~STATUS_ASSOCIATING;
4536 priv->status |= STATUS_ASSOCIATED;
Tejun Heobcb6d912011-01-26 12:12:50 +01004537 schedule_work(&priv->system_config);
James Ketrenos43f66a62005-03-25 12:31:53 -06004538
Zhu Yie43e3c12006-04-13 17:20:45 +08004539#ifdef CONFIG_IPW2200_QOS
James Ketrenosafbf30a2005-08-25 00:05:33 -05004540#define IPW_GET_PACKET_STYPE(x) WLAN_FC_GET_STYPE( \
John W. Linville72118012008-09-30 21:43:03 -04004541 le16_to_cpu(((struct ieee80211_hdr *)(x))->frame_control))
James Ketrenosafbf30a2005-08-25 00:05:33 -05004542 if ((priv->status & STATUS_AUTH) &&
4543 (IPW_GET_PACKET_STYPE(&notif->u.raw)
4544 == IEEE80211_STYPE_ASSOC_RESP)) {
James Ketrenosb095c382005-08-24 22:04:42 -05004545 if ((sizeof
4546 (struct
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004547 libipw_assoc_response)
Al Viroe62e1ee2007-12-27 01:36:46 -05004548 <= size)
4549 && (size <= 2314)) {
James Ketrenosb095c382005-08-24 22:04:42 -05004550 struct
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004551 libipw_rx_stats
James Ketrenosb095c382005-08-24 22:04:42 -05004552 stats = {
Al Viroe62e1ee2007-12-27 01:36:46 -05004553 .len = size - 1,
James Ketrenosb095c382005-08-24 22:04:42 -05004554 };
4555
4556 IPW_DEBUG_QOS
4557 ("QoS Associate "
Al Viroe62e1ee2007-12-27 01:36:46 -05004558 "size %d\n", size);
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004559 libipw_rx_mgt(priv->
James Ketrenosb095c382005-08-24 22:04:42 -05004560 ieee,
4561 (struct
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004562 libipw_hdr_4addr
James Ketrenosb095c382005-08-24 22:04:42 -05004563 *)
4564 &notif->u.raw, &stats);
4565 }
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004566 }
James Ketrenosb095c382005-08-24 22:04:42 -05004567#endif
James Ketrenos43f66a62005-03-25 12:31:53 -06004568
James Ketrenosa613bff2005-08-24 21:43:11 -05004569 schedule_work(&priv->link_up);
James Ketrenos43f66a62005-03-25 12:31:53 -06004570
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004571 break;
4572 }
4573
4574 case CMAS_AUTHENTICATED:{
4575 if (priv->
4576 status & (STATUS_ASSOCIATED |
4577 STATUS_AUTH)) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004578 struct notif_authenticate *auth
4579 = &notif->u.auth;
4580 IPW_DEBUG(IPW_DL_NOTIF |
4581 IPW_DL_STATE |
4582 IPW_DL_ASSOC,
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07004583 "deauthenticated: '%*pE' %pM: (0x%04X) - %s\n",
4584 priv->essid_len,
4585 priv->essid,
Johannes Berge1749612008-10-27 15:59:26 -07004586 priv->bssid,
Al Viro83f7d572008-03-16 22:26:44 +00004587 le16_to_cpu(auth->status),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004588 ipw_get_status_code
Al Viro83f7d572008-03-16 22:26:44 +00004589 (le16_to_cpu
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004590 (auth->status)));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004591
4592 priv->status &=
4593 ~(STATUS_ASSOCIATING |
4594 STATUS_AUTH |
4595 STATUS_ASSOCIATED);
4596
James Ketrenosa613bff2005-08-24 21:43:11 -05004597 schedule_work(&priv->link_down);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004598 break;
4599 }
4600
4601 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4602 IPW_DL_ASSOC,
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07004603 "authenticated: '%*pE' %pM\n",
4604 priv->essid_len, priv->essid,
Johannes Berge1749612008-10-27 15:59:26 -07004605 priv->bssid);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004606 break;
4607 }
4608
4609 case CMAS_INIT:{
James Ketrenosea2b26e2005-08-24 21:25:16 -05004610 if (priv->status & STATUS_AUTH) {
4611 struct
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004612 libipw_assoc_response
James Ketrenosea2b26e2005-08-24 21:25:16 -05004613 *resp;
4614 resp =
4615 (struct
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004616 libipw_assoc_response
James Ketrenosea2b26e2005-08-24 21:25:16 -05004617 *)&notif->u.raw;
4618 IPW_DEBUG(IPW_DL_NOTIF |
4619 IPW_DL_STATE |
4620 IPW_DL_ASSOC,
4621 "association failed (0x%04X): %s\n",
Al Viro83f7d572008-03-16 22:26:44 +00004622 le16_to_cpu(resp->status),
James Ketrenosea2b26e2005-08-24 21:25:16 -05004623 ipw_get_status_code
Al Viro83f7d572008-03-16 22:26:44 +00004624 (le16_to_cpu
James Ketrenosea2b26e2005-08-24 21:25:16 -05004625 (resp->status)));
4626 }
4627
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004628 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4629 IPW_DL_ASSOC,
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07004630 "disassociated: '%*pE' %pM\n",
4631 priv->essid_len, priv->essid,
Johannes Berge1749612008-10-27 15:59:26 -07004632 priv->bssid);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004633
4634 priv->status &=
4635 ~(STATUS_DISASSOCIATING |
4636 STATUS_ASSOCIATING |
4637 STATUS_ASSOCIATED | STATUS_AUTH);
James Ketrenosb095c382005-08-24 22:04:42 -05004638 if (priv->assoc_network
4639 && (priv->assoc_network->
4640 capability &
4641 WLAN_CAPABILITY_IBSS))
4642 ipw_remove_current_network
4643 (priv);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004644
James Ketrenosa613bff2005-08-24 21:43:11 -05004645 schedule_work(&priv->link_down);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004646
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004647 break;
4648 }
4649
James Ketrenosb095c382005-08-24 22:04:42 -05004650 case CMAS_RX_ASSOC_RESP:
4651 break;
4652
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004653 default:
4654 IPW_ERROR("assoc: unknown (%d)\n",
4655 assoc->state);
4656 break;
4657 }
4658
James Ketrenos43f66a62005-03-25 12:31:53 -06004659 break;
4660 }
Jeff Garzikbf794512005-07-31 13:07:26 -04004661
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004662 case HOST_NOTIFICATION_STATUS_AUTHENTICATE:{
4663 struct notif_authenticate *auth = &notif->u.auth;
4664 switch (auth->state) {
4665 case CMAS_AUTHENTICATED:
4666 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07004667 "authenticated: '%*pE' %pM\n",
4668 priv->essid_len, priv->essid,
Johannes Berge1749612008-10-27 15:59:26 -07004669 priv->bssid);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004670 priv->status |= STATUS_AUTH;
4671 break;
4672
4673 case CMAS_INIT:
4674 if (priv->status & STATUS_AUTH) {
4675 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4676 IPW_DL_ASSOC,
4677 "authentication failed (0x%04X): %s\n",
Al Viro83f7d572008-03-16 22:26:44 +00004678 le16_to_cpu(auth->status),
4679 ipw_get_status_code(le16_to_cpu
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004680 (auth->
4681 status)));
4682 }
4683 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4684 IPW_DL_ASSOC,
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07004685 "deauthenticated: '%*pE' %pM\n",
4686 priv->essid_len, priv->essid,
Johannes Berge1749612008-10-27 15:59:26 -07004687 priv->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06004688
4689 priv->status &= ~(STATUS_ASSOCIATING |
4690 STATUS_AUTH |
4691 STATUS_ASSOCIATED);
4692
James Ketrenosa613bff2005-08-24 21:43:11 -05004693 schedule_work(&priv->link_down);
James Ketrenos43f66a62005-03-25 12:31:53 -06004694 break;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004695
4696 case CMAS_TX_AUTH_SEQ_1:
4697 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4698 IPW_DL_ASSOC, "AUTH_SEQ_1\n");
4699 break;
4700 case CMAS_RX_AUTH_SEQ_2:
4701 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4702 IPW_DL_ASSOC, "AUTH_SEQ_2\n");
4703 break;
4704 case CMAS_AUTH_SEQ_1_PASS:
4705 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4706 IPW_DL_ASSOC, "AUTH_SEQ_1_PASS\n");
4707 break;
4708 case CMAS_AUTH_SEQ_1_FAIL:
4709 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4710 IPW_DL_ASSOC, "AUTH_SEQ_1_FAIL\n");
4711 break;
4712 case CMAS_TX_AUTH_SEQ_3:
4713 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4714 IPW_DL_ASSOC, "AUTH_SEQ_3\n");
4715 break;
4716 case CMAS_RX_AUTH_SEQ_4:
4717 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4718 IPW_DL_ASSOC, "RX_AUTH_SEQ_4\n");
4719 break;
4720 case CMAS_AUTH_SEQ_2_PASS:
4721 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4722 IPW_DL_ASSOC, "AUTH_SEQ_2_PASS\n");
4723 break;
4724 case CMAS_AUTH_SEQ_2_FAIL:
4725 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4726 IPW_DL_ASSOC, "AUT_SEQ_2_FAIL\n");
4727 break;
4728 case CMAS_TX_ASSOC:
4729 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4730 IPW_DL_ASSOC, "TX_ASSOC\n");
4731 break;
4732 case CMAS_RX_ASSOC_RESP:
4733 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4734 IPW_DL_ASSOC, "RX_ASSOC_RESP\n");
James Ketrenosb095c382005-08-24 22:04:42 -05004735
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004736 break;
4737 case CMAS_ASSOCIATED:
4738 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE |
4739 IPW_DL_ASSOC, "ASSOCIATED\n");
4740 break;
4741 default:
4742 IPW_DEBUG_NOTIF("auth: failure - %d\n",
4743 auth->state);
4744 break;
4745 }
4746 break;
4747 }
4748
4749 case HOST_NOTIFICATION_STATUS_SCAN_CHANNEL_RESULT:{
4750 struct notif_channel_result *x =
4751 &notif->u.channel_result;
4752
Al Viroe62e1ee2007-12-27 01:36:46 -05004753 if (size == sizeof(*x)) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004754 IPW_DEBUG_SCAN("Scan result for channel %d\n",
4755 x->channel_num);
4756 } else {
4757 IPW_DEBUG_SCAN("Scan result of wrong size %d "
4758 "(should be %zd)\n",
Al Viroe62e1ee2007-12-27 01:36:46 -05004759 size, sizeof(*x));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004760 }
4761 break;
4762 }
4763
4764 case HOST_NOTIFICATION_STATUS_SCAN_COMPLETED:{
4765 struct notif_scan_complete *x = &notif->u.scan_complete;
Al Viroe62e1ee2007-12-27 01:36:46 -05004766 if (size == sizeof(*x)) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004767 IPW_DEBUG_SCAN
4768 ("Scan completed: type %d, %d channels, "
4769 "%d status\n", x->scan_type,
4770 x->num_channels, x->status);
4771 } else {
4772 IPW_ERROR("Scan completed of wrong size %d "
4773 "(should be %zd)\n",
Al Viroe62e1ee2007-12-27 01:36:46 -05004774 size, sizeof(*x));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004775 }
4776
4777 priv->status &=
4778 ~(STATUS_SCANNING | STATUS_SCAN_ABORTING);
4779
James Ketrenosa0e04ab2005-08-25 00:49:43 -05004780 wake_up_interruptible(&priv->wait_state);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004781 cancel_delayed_work(&priv->scan_check);
4782
James Ketrenosb095c382005-08-24 22:04:42 -05004783 if (priv->status & STATUS_EXIT_PENDING)
4784 break;
4785
4786 priv->ieee->scans++;
4787
4788#ifdef CONFIG_IPW2200_MONITOR
4789 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05004790 priv->status |= STATUS_SCAN_FORCED;
Tejun Heobcb6d912011-01-26 12:12:50 +01004791 schedule_delayed_work(&priv->request_scan, 0);
James Ketrenosb095c382005-08-24 22:04:42 -05004792 break;
4793 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05004794 priv->status &= ~STATUS_SCAN_FORCED;
James Ketrenosb095c382005-08-24 22:04:42 -05004795#endif /* CONFIG_IPW2200_MONITOR */
4796
Dan Williamsea177302008-06-02 17:51:23 -04004797 /* Do queued direct scans first */
Tejun Heobcb6d912011-01-26 12:12:50 +01004798 if (priv->status & STATUS_DIRECT_SCAN_PENDING)
4799 schedule_delayed_work(&priv->request_direct_scan, 0);
Dan Williamsea177302008-06-02 17:51:23 -04004800
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004801 if (!(priv->status & (STATUS_ASSOCIATED |
4802 STATUS_ASSOCIATING |
4803 STATUS_ROAMING |
4804 STATUS_DISASSOCIATING)))
Tejun Heobcb6d912011-01-26 12:12:50 +01004805 schedule_work(&priv->associate);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004806 else if (priv->status & STATUS_ROAMING) {
Ben Cahille7582562005-10-06 15:34:41 -05004807 if (x->status == SCAN_COMPLETED_STATUS_COMPLETE)
4808 /* If a scan completed and we are in roam mode, then
4809 * the scan that completed was the one requested as a
4810 * result of entering roam... so, schedule the
4811 * roam work */
Tejun Heobcb6d912011-01-26 12:12:50 +01004812 schedule_work(&priv->roam);
Ben Cahille7582562005-10-06 15:34:41 -05004813 else
4814 /* Don't schedule if we aborted the scan */
4815 priv->status &= ~STATUS_ROAMING;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004816 } else if (priv->status & STATUS_SCAN_PENDING)
Tejun Heobcb6d912011-01-26 12:12:50 +01004817 schedule_delayed_work(&priv->request_scan, 0);
James Ketrenosa613bff2005-08-24 21:43:11 -05004818 else if (priv->config & CFG_BACKGROUND_SCAN
4819 && priv->status & STATUS_ASSOCIATED)
Tejun Heobcb6d912011-01-26 12:12:50 +01004820 schedule_delayed_work(&priv->request_scan,
4821 round_jiffies_relative(HZ));
Zhu Yi07f02e42006-04-13 17:19:25 +08004822
4823 /* Send an empty event to user space.
4824 * We don't send the received data on the event because
4825 * it would require us to do complex transcoding, and
4826 * we want to minimise the work done in the irq handler
4827 * Use a request to extract the data.
4828 * Also, we generate this even for any scan, regardless
4829 * on how the scan was initiated. User space can just
4830 * sync on periodic scan to get fresh data...
4831 * Jean II */
Dan Williams0b531672007-10-09 13:55:24 -04004832 if (x->status == SCAN_COMPLETED_STATUS_COMPLETE)
4833 handle_scan_event(priv);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004834 break;
4835 }
4836
4837 case HOST_NOTIFICATION_STATUS_FRAG_LENGTH:{
4838 struct notif_frag_length *x = &notif->u.frag_len;
4839
Al Viroe62e1ee2007-12-27 01:36:46 -05004840 if (size == sizeof(*x))
James Ketrenosa613bff2005-08-24 21:43:11 -05004841 IPW_ERROR("Frag length: %d\n",
4842 le16_to_cpu(x->frag_length));
4843 else
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004844 IPW_ERROR("Frag length of wrong size %d "
4845 "(should be %zd)\n",
Al Viroe62e1ee2007-12-27 01:36:46 -05004846 size, sizeof(*x));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004847 break;
4848 }
4849
4850 case HOST_NOTIFICATION_STATUS_LINK_DETERIORATION:{
4851 struct notif_link_deterioration *x =
4852 &notif->u.link_deterioration;
James Ketrenosafbf30a2005-08-25 00:05:33 -05004853
Al Viroe62e1ee2007-12-27 01:36:46 -05004854 if (size == sizeof(*x)) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004855 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE,
Cahill, Ben M12977152006-03-08 02:58:02 +08004856 "link deterioration: type %d, cnt %d\n",
4857 x->silence_notification_type,
4858 x->silence_count);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004859 memcpy(&priv->last_link_deterioration, x,
4860 sizeof(*x));
4861 } else {
4862 IPW_ERROR("Link Deterioration of wrong size %d "
4863 "(should be %zd)\n",
Al Viroe62e1ee2007-12-27 01:36:46 -05004864 size, sizeof(*x));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004865 }
4866 break;
4867 }
4868
4869 case HOST_NOTIFICATION_DINO_CONFIG_RESPONSE:{
4870 IPW_ERROR("Dino config\n");
4871 if (priv->hcmd
James Ketrenosa613bff2005-08-24 21:43:11 -05004872 && priv->hcmd->cmd != HOST_CMD_DINO_CONFIG)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004873 IPW_ERROR("Unexpected DINO_CONFIG_RESPONSE\n");
James Ketrenosa613bff2005-08-24 21:43:11 -05004874
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004875 break;
4876 }
4877
4878 case HOST_NOTIFICATION_STATUS_BEACON_STATE:{
4879 struct notif_beacon_state *x = &notif->u.beacon_state;
Al Viroe62e1ee2007-12-27 01:36:46 -05004880 if (size != sizeof(*x)) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004881 IPW_ERROR
4882 ("Beacon state of wrong size %d (should "
Al Viroe62e1ee2007-12-27 01:36:46 -05004883 "be %zd)\n", size, sizeof(*x));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004884 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04004885 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004886
James Ketrenosa613bff2005-08-24 21:43:11 -05004887 if (le32_to_cpu(x->state) ==
4888 HOST_NOTIFICATION_STATUS_BEACON_MISSING)
4889 ipw_handle_missed_beacon(priv,
4890 le32_to_cpu(x->
4891 number));
Jeff Garzikbf794512005-07-31 13:07:26 -04004892
James Ketrenos43f66a62005-03-25 12:31:53 -06004893 break;
4894 }
Jeff Garzikbf794512005-07-31 13:07:26 -04004895
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004896 case HOST_NOTIFICATION_STATUS_TGI_TX_KEY:{
4897 struct notif_tgi_tx_key *x = &notif->u.tgi_tx_key;
Al Viroe62e1ee2007-12-27 01:36:46 -05004898 if (size == sizeof(*x)) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004899 IPW_ERROR("TGi Tx Key: state 0x%02x sec type "
4900 "0x%02x station %d\n",
4901 x->key_state, x->security_type,
4902 x->station_index);
4903 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06004904 }
4905
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004906 IPW_ERROR
4907 ("TGi Tx Key of wrong size %d (should be %zd)\n",
Al Viroe62e1ee2007-12-27 01:36:46 -05004908 size, sizeof(*x));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004909 break;
4910 }
4911
4912 case HOST_NOTIFICATION_CALIB_KEEP_RESULTS:{
4913 struct notif_calibration *x = &notif->u.calibration;
4914
Al Viroe62e1ee2007-12-27 01:36:46 -05004915 if (size == sizeof(*x)) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004916 memcpy(&priv->calib, x, sizeof(*x));
4917 IPW_DEBUG_INFO("TODO: Calibration\n");
4918 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06004919 }
4920
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004921 IPW_ERROR
4922 ("Calibration of wrong size %d (should be %zd)\n",
Al Viroe62e1ee2007-12-27 01:36:46 -05004923 size, sizeof(*x));
James Ketrenos43f66a62005-03-25 12:31:53 -06004924 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04004925 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004926
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004927 case HOST_NOTIFICATION_NOISE_STATS:{
Al Viroe62e1ee2007-12-27 01:36:46 -05004928 if (size == sizeof(u32)) {
Zhu Yi00d21de2006-04-13 17:19:02 +08004929 priv->exp_avg_noise =
4930 exponential_average(priv->exp_avg_noise,
4931 (u8) (le32_to_cpu(notif->u.noise.value) & 0xff),
4932 DEPTH_NOISE);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004933 break;
4934 }
James Ketrenos43f66a62005-03-25 12:31:53 -06004935
Jeff Garzik0edd5b42005-09-07 00:48:31 -04004936 IPW_ERROR
4937 ("Noise stat is wrong size %d (should be %zd)\n",
Al Viroe62e1ee2007-12-27 01:36:46 -05004938 size, sizeof(u32));
James Ketrenos43f66a62005-03-25 12:31:53 -06004939 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04004940 }
4941
James Ketrenos43f66a62005-03-25 12:31:53 -06004942 default:
Zhu Yi1dd31b62006-02-20 18:28:09 -08004943 IPW_DEBUG_NOTIF("Unknown notification: "
4944 "subtype=%d,flags=0x%2x,size=%d\n",
Al Viroe62e1ee2007-12-27 01:36:46 -05004945 notif->subtype, notif->flags, size);
James Ketrenos43f66a62005-03-25 12:31:53 -06004946 }
4947}
4948
4949/**
4950 * Destroys all DMA structures and initialise them again
Jeff Garzikbf794512005-07-31 13:07:26 -04004951 *
James Ketrenos43f66a62005-03-25 12:31:53 -06004952 * @param priv
4953 * @return error code
4954 */
4955static int ipw_queue_reset(struct ipw_priv *priv)
4956{
4957 int rc = 0;
4958 /** @todo customize queue sizes */
4959 int nTx = 64, nTxCmd = 8;
4960 ipw_tx_queue_free(priv);
4961 /* Tx CMD queue */
4962 rc = ipw_queue_tx_init(priv, &priv->txq_cmd, nTxCmd,
James Ketrenosb095c382005-08-24 22:04:42 -05004963 IPW_TX_CMD_QUEUE_READ_INDEX,
4964 IPW_TX_CMD_QUEUE_WRITE_INDEX,
4965 IPW_TX_CMD_QUEUE_BD_BASE,
4966 IPW_TX_CMD_QUEUE_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004967 if (rc) {
4968 IPW_ERROR("Tx Cmd queue init failed\n");
4969 goto error;
4970 }
4971 /* Tx queue(s) */
4972 rc = ipw_queue_tx_init(priv, &priv->txq[0], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004973 IPW_TX_QUEUE_0_READ_INDEX,
4974 IPW_TX_QUEUE_0_WRITE_INDEX,
4975 IPW_TX_QUEUE_0_BD_BASE, IPW_TX_QUEUE_0_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004976 if (rc) {
4977 IPW_ERROR("Tx 0 queue init failed\n");
4978 goto error;
4979 }
4980 rc = ipw_queue_tx_init(priv, &priv->txq[1], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004981 IPW_TX_QUEUE_1_READ_INDEX,
4982 IPW_TX_QUEUE_1_WRITE_INDEX,
4983 IPW_TX_QUEUE_1_BD_BASE, IPW_TX_QUEUE_1_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004984 if (rc) {
4985 IPW_ERROR("Tx 1 queue init failed\n");
4986 goto error;
4987 }
4988 rc = ipw_queue_tx_init(priv, &priv->txq[2], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004989 IPW_TX_QUEUE_2_READ_INDEX,
4990 IPW_TX_QUEUE_2_WRITE_INDEX,
4991 IPW_TX_QUEUE_2_BD_BASE, IPW_TX_QUEUE_2_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06004992 if (rc) {
4993 IPW_ERROR("Tx 2 queue init failed\n");
4994 goto error;
4995 }
4996 rc = ipw_queue_tx_init(priv, &priv->txq[3], nTx,
James Ketrenosb095c382005-08-24 22:04:42 -05004997 IPW_TX_QUEUE_3_READ_INDEX,
4998 IPW_TX_QUEUE_3_WRITE_INDEX,
4999 IPW_TX_QUEUE_3_BD_BASE, IPW_TX_QUEUE_3_BD_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06005000 if (rc) {
5001 IPW_ERROR("Tx 3 queue init failed\n");
5002 goto error;
5003 }
5004 /* statistics */
5005 priv->rx_bufs_min = 0;
5006 priv->rx_pend_max = 0;
5007 return rc;
5008
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005009 error:
James Ketrenos43f66a62005-03-25 12:31:53 -06005010 ipw_tx_queue_free(priv);
5011 return rc;
5012}
5013
5014/**
5015 * Reclaim Tx queue entries no more used by NIC.
Jeff Garzikbf794512005-07-31 13:07:26 -04005016 *
Stefano Brivio8ff9d212008-01-12 23:12:26 +01005017 * When FW advances 'R' index, all entries between old and
James Ketrenos43f66a62005-03-25 12:31:53 -06005018 * new 'R' index need to be reclaimed. As result, some free space
5019 * forms. If there is enough free space (> low mark), wake Tx queue.
Jeff Garzikbf794512005-07-31 13:07:26 -04005020 *
James Ketrenos43f66a62005-03-25 12:31:53 -06005021 * @note Need to protect against garbage in 'R' index
5022 * @param priv
5023 * @param txq
5024 * @param qindex
5025 * @return Number of used entries remains in the queue
5026 */
Jeff Garzikbf794512005-07-31 13:07:26 -04005027static int ipw_queue_tx_reclaim(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -06005028 struct clx2_tx_queue *txq, int qindex)
5029{
5030 u32 hw_tail;
5031 int used;
5032 struct clx2_queue *q = &txq->q;
5033
5034 hw_tail = ipw_read32(priv, q->reg_r);
5035 if (hw_tail >= q->n_bd) {
5036 IPW_ERROR
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005037 ("Read index for DMA queue (%d) is out of range [0-%d)\n",
5038 hw_tail, q->n_bd);
James Ketrenos43f66a62005-03-25 12:31:53 -06005039 goto done;
5040 }
5041 for (; q->last_used != hw_tail;
5042 q->last_used = ipw_queue_inc_wrap(q->last_used, q->n_bd)) {
5043 ipw_queue_tx_free_tfd(priv, txq);
5044 priv->tx_packets++;
5045 }
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005046 done:
Dan Williams943dbef2008-02-14 17:49:41 -05005047 if ((ipw_tx_queue_space(q) > q->low_mark) &&
David S. Miller521c4d92008-07-22 18:32:47 -07005048 (qindex >= 0))
James Ketrenos9ddf84f2005-08-16 17:07:11 -05005049 netif_wake_queue(priv->net_dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06005050 used = q->first_empty - q->last_used;
5051 if (used < 0)
5052 used += q->n_bd;
5053
5054 return used;
5055}
5056
5057static int ipw_queue_tx_hcmd(struct ipw_priv *priv, int hcmd, void *buf,
5058 int len, int sync)
5059{
5060 struct clx2_tx_queue *txq = &priv->txq_cmd;
5061 struct clx2_queue *q = &txq->q;
5062 struct tfd_frame *tfd;
5063
Dan Williams943dbef2008-02-14 17:49:41 -05005064 if (ipw_tx_queue_space(q) < (sync ? 1 : 2)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005065 IPW_ERROR("No space for Tx\n");
5066 return -EBUSY;
5067 }
5068
5069 tfd = &txq->bd[q->first_empty];
5070 txq->txb[q->first_empty] = NULL;
5071
5072 memset(tfd, 0, sizeof(*tfd));
5073 tfd->control_flags.message_type = TX_HOST_COMMAND_TYPE;
5074 tfd->control_flags.control_bits = TFD_NEED_IRQ_MASK;
5075 priv->hcmd_seq++;
5076 tfd->u.cmd.index = hcmd;
5077 tfd->u.cmd.length = len;
5078 memcpy(tfd->u.cmd.payload, buf, len);
5079 q->first_empty = ipw_queue_inc_wrap(q->first_empty, q->n_bd);
5080 ipw_write32(priv, q->reg_w, q->first_empty);
5081 _ipw_read32(priv, 0x90);
5082
5083 return 0;
5084}
5085
Jeff Garzikbf794512005-07-31 13:07:26 -04005086/*
James Ketrenos43f66a62005-03-25 12:31:53 -06005087 * Rx theory of operation
5088 *
5089 * The host allocates 32 DMA target addresses and passes the host address
James Ketrenosb095c382005-08-24 22:04:42 -05005090 * to the firmware at register IPW_RFDS_TABLE_LOWER + N * RFD_SIZE where N is
James Ketrenos43f66a62005-03-25 12:31:53 -06005091 * 0 to 31
5092 *
5093 * Rx Queue Indexes
5094 * The host/firmware share two index registers for managing the Rx buffers.
5095 *
Jeff Garzikbf794512005-07-31 13:07:26 -04005096 * The READ index maps to the first position that the firmware may be writing
5097 * to -- the driver can read up to (but not including) this position and get
5098 * good data.
James Ketrenos43f66a62005-03-25 12:31:53 -06005099 * The READ index is managed by the firmware once the card is enabled.
5100 *
5101 * The WRITE index maps to the last position the driver has read from -- the
5102 * position preceding WRITE is the last slot the firmware can place a packet.
5103 *
5104 * The queue is empty (no good data) if WRITE = READ - 1, and is full if
Jeff Garzikbf794512005-07-31 13:07:26 -04005105 * WRITE = READ.
James Ketrenos43f66a62005-03-25 12:31:53 -06005106 *
Jeff Garzikbf794512005-07-31 13:07:26 -04005107 * During initialization the host sets up the READ queue position to the first
James Ketrenos43f66a62005-03-25 12:31:53 -06005108 * INDEX position, and WRITE to the last (READ - 1 wrapped)
5109 *
5110 * When the firmware places a packet in a buffer it will advance the READ index
5111 * and fire the RX interrupt. The driver can then query the READ index and
5112 * process as many packets as possible, moving the WRITE index forward as it
5113 * resets the Rx queue buffers with new memory.
Jeff Garzikbf794512005-07-31 13:07:26 -04005114 *
James Ketrenos43f66a62005-03-25 12:31:53 -06005115 * The management in the driver is as follows:
Jeff Garzikbf794512005-07-31 13:07:26 -04005116 * + A list of pre-allocated SKBs is stored in ipw->rxq->rx_free. When
James Ketrenos43f66a62005-03-25 12:31:53 -06005117 * ipw->rxq->free_count drops to or below RX_LOW_WATERMARK, work is scheduled
Jeff Garzikbf794512005-07-31 13:07:26 -04005118 * to replensish the ipw->rxq->rx_free.
James Ketrenos43f66a62005-03-25 12:31:53 -06005119 * + In ipw_rx_queue_replenish (scheduled) if 'processed' != 'read' then the
5120 * ipw->rxq is replenished and the READ INDEX is updated (updating the
5121 * 'processed' and 'read' driver indexes as well)
5122 * + A received packet is processed and handed to the kernel network stack,
5123 * detached from the ipw->rxq. The driver 'processed' index is updated.
5124 * + The Host/Firmware ipw->rxq is replenished at tasklet time from the rx_free
Jeff Garzikbf794512005-07-31 13:07:26 -04005125 * list. If there are no allocated buffers in ipw->rxq->rx_free, the READ
5126 * INDEX is not incremented and ipw->status(RX_STALLED) is set. If there
James Ketrenos43f66a62005-03-25 12:31:53 -06005127 * were enough free buffers and RX_STALLED is set it is cleared.
5128 *
5129 *
5130 * Driver sequence:
5131 *
Jeff Garzikbf794512005-07-31 13:07:26 -04005132 * ipw_rx_queue_alloc() Allocates rx_free
James Ketrenos43f66a62005-03-25 12:31:53 -06005133 * ipw_rx_queue_replenish() Replenishes rx_free list from rx_used, and calls
5134 * ipw_rx_queue_restock
5135 * ipw_rx_queue_restock() Moves available buffers from rx_free into Rx
5136 * queue, updates firmware pointers, and updates
5137 * the WRITE index. If insufficient rx_free buffers
5138 * are available, schedules ipw_rx_queue_replenish
5139 *
5140 * -- enable interrupts --
5141 * ISR - ipw_rx() Detach ipw_rx_mem_buffers from pool up to the
Jeff Garzikbf794512005-07-31 13:07:26 -04005142 * READ INDEX, detaching the SKB from the pool.
James Ketrenos43f66a62005-03-25 12:31:53 -06005143 * Moves the packet buffer from queue to rx_used.
5144 * Calls ipw_rx_queue_restock to refill any empty
5145 * slots.
5146 * ...
5147 *
5148 */
5149
Jeff Garzikbf794512005-07-31 13:07:26 -04005150/*
James Ketrenos43f66a62005-03-25 12:31:53 -06005151 * If there are slots in the RX queue that need to be restocked,
5152 * and we have free pre-allocated buffers, fill the ranks as much
5153 * as we can pulling from rx_free.
5154 *
5155 * This moves the 'write' index forward to catch up with 'processed', and
5156 * also updates the memory address in the firmware to reference the new
5157 * target buffer.
5158 */
5159static void ipw_rx_queue_restock(struct ipw_priv *priv)
5160{
5161 struct ipw_rx_queue *rxq = priv->rxq;
5162 struct list_head *element;
5163 struct ipw_rx_mem_buffer *rxb;
5164 unsigned long flags;
5165 int write;
5166
5167 spin_lock_irqsave(&rxq->lock, flags);
5168 write = rxq->write;
Dan Williams943dbef2008-02-14 17:49:41 -05005169 while ((ipw_rx_queue_space(rxq) > 0) && (rxq->free_count)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06005170 element = rxq->rx_free.next;
5171 rxb = list_entry(element, struct ipw_rx_mem_buffer, list);
5172 list_del(element);
5173
James Ketrenosb095c382005-08-24 22:04:42 -05005174 ipw_write32(priv, IPW_RFDS_TABLE_LOWER + rxq->write * RFD_SIZE,
James Ketrenos43f66a62005-03-25 12:31:53 -06005175 rxb->dma_addr);
5176 rxq->queue[rxq->write] = rxb;
5177 rxq->write = (rxq->write + 1) % RX_QUEUE_SIZE;
5178 rxq->free_count--;
5179 }
5180 spin_unlock_irqrestore(&rxq->lock, flags);
5181
Jeff Garzikbf794512005-07-31 13:07:26 -04005182 /* If the pre-allocated buffer pool is dropping low, schedule to
James Ketrenos43f66a62005-03-25 12:31:53 -06005183 * refill it */
5184 if (rxq->free_count <= RX_LOW_WATERMARK)
Tejun Heobcb6d912011-01-26 12:12:50 +01005185 schedule_work(&priv->rx_replenish);
James Ketrenos43f66a62005-03-25 12:31:53 -06005186
5187 /* If we've added more space for the firmware to place data, tell it */
Jeff Garzikbf794512005-07-31 13:07:26 -04005188 if (write != rxq->write)
James Ketrenosb095c382005-08-24 22:04:42 -05005189 ipw_write32(priv, IPW_RX_WRITE_INDEX, rxq->write);
James Ketrenos43f66a62005-03-25 12:31:53 -06005190}
5191
5192/*
5193 * Move all used packet from rx_used to rx_free, allocating a new SKB for each.
Jeff Garzikbf794512005-07-31 13:07:26 -04005194 * Also restock the Rx queue via ipw_rx_queue_restock.
5195 *
Masahiro Yamada183b8022017-02-27 14:29:20 -08005196 * This is called as a scheduled work item (except for during initialization)
James Ketrenos43f66a62005-03-25 12:31:53 -06005197 */
5198static void ipw_rx_queue_replenish(void *data)
5199{
5200 struct ipw_priv *priv = data;
5201 struct ipw_rx_queue *rxq = priv->rxq;
5202 struct list_head *element;
5203 struct ipw_rx_mem_buffer *rxb;
5204 unsigned long flags;
5205
5206 spin_lock_irqsave(&rxq->lock, flags);
5207 while (!list_empty(&rxq->rx_used)) {
5208 element = rxq->rx_used.next;
5209 rxb = list_entry(element, struct ipw_rx_mem_buffer, list);
James Ketrenosb095c382005-08-24 22:04:42 -05005210 rxb->skb = alloc_skb(IPW_RX_BUF_SIZE, GFP_ATOMIC);
James Ketrenos43f66a62005-03-25 12:31:53 -06005211 if (!rxb->skb) {
5212 printk(KERN_CRIT "%s: Can not allocate SKB buffers.\n",
5213 priv->net_dev->name);
5214 /* We don't reschedule replenish work here -- we will
5215 * call the restock method and if it still needs
5216 * more buffers it will schedule replenish */
5217 break;
5218 }
5219 list_del(element);
Jeff Garzikbf794512005-07-31 13:07:26 -04005220
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005221 rxb->dma_addr =
5222 pci_map_single(priv->pci_dev, rxb->skb->data,
James Ketrenosb095c382005-08-24 22:04:42 -05005223 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
Jeff Garzikbf794512005-07-31 13:07:26 -04005224
James Ketrenos43f66a62005-03-25 12:31:53 -06005225 list_add_tail(&rxb->list, &rxq->rx_free);
5226 rxq->free_count++;
5227 }
5228 spin_unlock_irqrestore(&rxq->lock, flags);
5229
5230 ipw_rx_queue_restock(priv);
5231}
5232
David Howellsc4028952006-11-22 14:57:56 +00005233static void ipw_bg_rx_queue_replenish(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -05005234{
David Howellsc4028952006-11-22 14:57:56 +00005235 struct ipw_priv *priv =
5236 container_of(work, struct ipw_priv, rx_replenish);
Zhu Yi46441512006-01-24 16:37:59 +08005237 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00005238 ipw_rx_queue_replenish(priv);
Zhu Yi46441512006-01-24 16:37:59 +08005239 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005240}
5241
James Ketrenos43f66a62005-03-25 12:31:53 -06005242/* Assumes that the skb field of the buffers in 'pool' is kept accurate.
Zhu Yic7b6a672006-01-24 16:37:05 +08005243 * If an SKB has been detached, the POOL needs to have its SKB set to NULL
Jeff Garzikbf794512005-07-31 13:07:26 -04005244 * This free routine walks the list of POOL entries and if SKB is set to
James Ketrenos43f66a62005-03-25 12:31:53 -06005245 * non NULL it is unmapped and freed
5246 */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005247static void ipw_rx_queue_free(struct ipw_priv *priv, struct ipw_rx_queue *rxq)
James Ketrenos43f66a62005-03-25 12:31:53 -06005248{
5249 int i;
5250
5251 if (!rxq)
5252 return;
Jeff Garzikbf794512005-07-31 13:07:26 -04005253
James Ketrenos43f66a62005-03-25 12:31:53 -06005254 for (i = 0; i < RX_QUEUE_SIZE + RX_FREE_BUFFERS; i++) {
5255 if (rxq->pool[i].skb != NULL) {
5256 pci_unmap_single(priv->pci_dev, rxq->pool[i].dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05005257 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06005258 dev_kfree_skb(rxq->pool[i].skb);
5259 }
5260 }
5261
5262 kfree(rxq);
5263}
5264
5265static struct ipw_rx_queue *ipw_rx_queue_alloc(struct ipw_priv *priv)
5266{
5267 struct ipw_rx_queue *rxq;
5268 int i;
5269
Takisc75f4742005-12-01 01:41:45 -08005270 rxq = kzalloc(sizeof(*rxq), GFP_KERNEL);
Panagiotis Issarisad18b0e2005-09-05 04:14:10 +02005271 if (unlikely(!rxq)) {
5272 IPW_ERROR("memory allocation failed\n");
5273 return NULL;
5274 }
James Ketrenos43f66a62005-03-25 12:31:53 -06005275 spin_lock_init(&rxq->lock);
5276 INIT_LIST_HEAD(&rxq->rx_free);
5277 INIT_LIST_HEAD(&rxq->rx_used);
5278
5279 /* Fill the rx_used queue with _all_ of the Rx buffers */
Jeff Garzikbf794512005-07-31 13:07:26 -04005280 for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++)
James Ketrenos43f66a62005-03-25 12:31:53 -06005281 list_add_tail(&rxq->pool[i].list, &rxq->rx_used);
5282
5283 /* Set us so that we have processed and used all buffers, but have
5284 * not restocked the Rx queue with fresh buffers */
5285 rxq->read = rxq->write = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005286 rxq->free_count = 0;
5287
5288 return rxq;
5289}
5290
5291static int ipw_is_rate_in_mask(struct ipw_priv *priv, int ieee_mode, u8 rate)
5292{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005293 rate &= ~LIBIPW_BASIC_RATE_MASK;
James Ketrenos43f66a62005-03-25 12:31:53 -06005294 if (ieee_mode == IEEE_A) {
5295 switch (rate) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005296 case LIBIPW_OFDM_RATE_6MB:
5297 return priv->rates_mask & LIBIPW_OFDM_RATE_6MB_MASK ?
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005298 1 : 0;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005299 case LIBIPW_OFDM_RATE_9MB:
5300 return priv->rates_mask & LIBIPW_OFDM_RATE_9MB_MASK ?
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005301 1 : 0;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005302 case LIBIPW_OFDM_RATE_12MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005303 return priv->
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005304 rates_mask & LIBIPW_OFDM_RATE_12MB_MASK ? 1 : 0;
5305 case LIBIPW_OFDM_RATE_18MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005306 return priv->
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005307 rates_mask & LIBIPW_OFDM_RATE_18MB_MASK ? 1 : 0;
5308 case LIBIPW_OFDM_RATE_24MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005309 return priv->
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005310 rates_mask & LIBIPW_OFDM_RATE_24MB_MASK ? 1 : 0;
5311 case LIBIPW_OFDM_RATE_36MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005312 return priv->
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005313 rates_mask & LIBIPW_OFDM_RATE_36MB_MASK ? 1 : 0;
5314 case LIBIPW_OFDM_RATE_48MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005315 return priv->
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005316 rates_mask & LIBIPW_OFDM_RATE_48MB_MASK ? 1 : 0;
5317 case LIBIPW_OFDM_RATE_54MB:
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005318 return priv->
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005319 rates_mask & LIBIPW_OFDM_RATE_54MB_MASK ? 1 : 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005320 default:
5321 return 0;
5322 }
5323 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005324
James Ketrenos43f66a62005-03-25 12:31:53 -06005325 /* B and G mixed */
5326 switch (rate) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005327 case LIBIPW_CCK_RATE_1MB:
5328 return priv->rates_mask & LIBIPW_CCK_RATE_1MB_MASK ? 1 : 0;
5329 case LIBIPW_CCK_RATE_2MB:
5330 return priv->rates_mask & LIBIPW_CCK_RATE_2MB_MASK ? 1 : 0;
5331 case LIBIPW_CCK_RATE_5MB:
5332 return priv->rates_mask & LIBIPW_CCK_RATE_5MB_MASK ? 1 : 0;
5333 case LIBIPW_CCK_RATE_11MB:
5334 return priv->rates_mask & LIBIPW_CCK_RATE_11MB_MASK ? 1 : 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005335 }
5336
5337 /* If we are limited to B modulations, bail at this point */
5338 if (ieee_mode == IEEE_B)
5339 return 0;
5340
5341 /* G */
5342 switch (rate) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005343 case LIBIPW_OFDM_RATE_6MB:
5344 return priv->rates_mask & LIBIPW_OFDM_RATE_6MB_MASK ? 1 : 0;
5345 case LIBIPW_OFDM_RATE_9MB:
5346 return priv->rates_mask & LIBIPW_OFDM_RATE_9MB_MASK ? 1 : 0;
5347 case LIBIPW_OFDM_RATE_12MB:
5348 return priv->rates_mask & LIBIPW_OFDM_RATE_12MB_MASK ? 1 : 0;
5349 case LIBIPW_OFDM_RATE_18MB:
5350 return priv->rates_mask & LIBIPW_OFDM_RATE_18MB_MASK ? 1 : 0;
5351 case LIBIPW_OFDM_RATE_24MB:
5352 return priv->rates_mask & LIBIPW_OFDM_RATE_24MB_MASK ? 1 : 0;
5353 case LIBIPW_OFDM_RATE_36MB:
5354 return priv->rates_mask & LIBIPW_OFDM_RATE_36MB_MASK ? 1 : 0;
5355 case LIBIPW_OFDM_RATE_48MB:
5356 return priv->rates_mask & LIBIPW_OFDM_RATE_48MB_MASK ? 1 : 0;
5357 case LIBIPW_OFDM_RATE_54MB:
5358 return priv->rates_mask & LIBIPW_OFDM_RATE_54MB_MASK ? 1 : 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005359 }
5360
5361 return 0;
5362}
5363
Jeff Garzikbf794512005-07-31 13:07:26 -04005364static int ipw_compatible_rates(struct ipw_priv *priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005365 const struct libipw_network *network,
James Ketrenos43f66a62005-03-25 12:31:53 -06005366 struct ipw_supported_rates *rates)
5367{
5368 int num_rates, i;
5369
5370 memset(rates, 0, sizeof(*rates));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005371 num_rates = min(network->rates_len, (u8) IPW_MAX_RATES);
James Ketrenos43f66a62005-03-25 12:31:53 -06005372 rates->num_rates = 0;
5373 for (i = 0; i < num_rates; i++) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005374 if (!ipw_is_rate_in_mask(priv, network->mode,
5375 network->rates[i])) {
5376
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005377 if (network->rates[i] & LIBIPW_BASIC_RATE_MASK) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005378 IPW_DEBUG_SCAN("Adding masked mandatory "
5379 "rate %02X\n",
5380 network->rates[i]);
5381 rates->supported_rates[rates->num_rates++] =
5382 network->rates[i];
5383 continue;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005384 }
5385
James Ketrenos43f66a62005-03-25 12:31:53 -06005386 IPW_DEBUG_SCAN("Rate %02X masked : 0x%08X\n",
5387 network->rates[i], priv->rates_mask);
5388 continue;
5389 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005390
James Ketrenos43f66a62005-03-25 12:31:53 -06005391 rates->supported_rates[rates->num_rates++] = network->rates[i];
5392 }
5393
James Ketrenosa613bff2005-08-24 21:43:11 -05005394 num_rates = min(network->rates_ex_len,
5395 (u8) (IPW_MAX_RATES - num_rates));
James Ketrenos43f66a62005-03-25 12:31:53 -06005396 for (i = 0; i < num_rates; i++) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005397 if (!ipw_is_rate_in_mask(priv, network->mode,
5398 network->rates_ex[i])) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005399 if (network->rates_ex[i] & LIBIPW_BASIC_RATE_MASK) {
James Ketrenosa613bff2005-08-24 21:43:11 -05005400 IPW_DEBUG_SCAN("Adding masked mandatory "
5401 "rate %02X\n",
5402 network->rates_ex[i]);
5403 rates->supported_rates[rates->num_rates++] =
5404 network->rates[i];
5405 continue;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005406 }
5407
James Ketrenos43f66a62005-03-25 12:31:53 -06005408 IPW_DEBUG_SCAN("Rate %02X masked : 0x%08X\n",
5409 network->rates_ex[i], priv->rates_mask);
5410 continue;
5411 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005412
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005413 rates->supported_rates[rates->num_rates++] =
5414 network->rates_ex[i];
James Ketrenos43f66a62005-03-25 12:31:53 -06005415 }
5416
James Ketrenosea2b26e2005-08-24 21:25:16 -05005417 return 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06005418}
5419
Arjan van de Ven858119e2006-01-14 13:20:43 -08005420static void ipw_copy_rates(struct ipw_supported_rates *dest,
James Ketrenos43f66a62005-03-25 12:31:53 -06005421 const struct ipw_supported_rates *src)
5422{
5423 u8 i;
5424 for (i = 0; i < src->num_rates; i++)
5425 dest->supported_rates[i] = src->supported_rates[i];
5426 dest->num_rates = src->num_rates;
5427}
5428
5429/* TODO: Look at sniffed packets in the air to determine if the basic rate
5430 * mask should ever be used -- right now all callers to add the scan rates are
5431 * set with the modulation = CCK, so BASIC_RATE_MASK is never set... */
5432static void ipw_add_cck_scan_rates(struct ipw_supported_rates *rates,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005433 u8 modulation, u32 rate_mask)
James Ketrenos43f66a62005-03-25 12:31:53 -06005434{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005435 u8 basic_mask = (LIBIPW_OFDM_MODULATION == modulation) ?
5436 LIBIPW_BASIC_RATE_MASK : 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005437
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005438 if (rate_mask & LIBIPW_CCK_RATE_1MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005439 rates->supported_rates[rates->num_rates++] =
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005440 LIBIPW_BASIC_RATE_MASK | LIBIPW_CCK_RATE_1MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005441
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005442 if (rate_mask & LIBIPW_CCK_RATE_2MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005443 rates->supported_rates[rates->num_rates++] =
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005444 LIBIPW_BASIC_RATE_MASK | LIBIPW_CCK_RATE_2MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005445
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005446 if (rate_mask & LIBIPW_CCK_RATE_5MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005447 rates->supported_rates[rates->num_rates++] = basic_mask |
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005448 LIBIPW_CCK_RATE_5MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005449
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005450 if (rate_mask & LIBIPW_CCK_RATE_11MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005451 rates->supported_rates[rates->num_rates++] = basic_mask |
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005452 LIBIPW_CCK_RATE_11MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005453}
5454
5455static void ipw_add_ofdm_scan_rates(struct ipw_supported_rates *rates,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005456 u8 modulation, u32 rate_mask)
James Ketrenos43f66a62005-03-25 12:31:53 -06005457{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005458 u8 basic_mask = (LIBIPW_OFDM_MODULATION == modulation) ?
5459 LIBIPW_BASIC_RATE_MASK : 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005460
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005461 if (rate_mask & LIBIPW_OFDM_RATE_6MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005462 rates->supported_rates[rates->num_rates++] = basic_mask |
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005463 LIBIPW_OFDM_RATE_6MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005464
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005465 if (rate_mask & LIBIPW_OFDM_RATE_9MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005466 rates->supported_rates[rates->num_rates++] =
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005467 LIBIPW_OFDM_RATE_9MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005468
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005469 if (rate_mask & LIBIPW_OFDM_RATE_12MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005470 rates->supported_rates[rates->num_rates++] = basic_mask |
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005471 LIBIPW_OFDM_RATE_12MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005472
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005473 if (rate_mask & LIBIPW_OFDM_RATE_18MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005474 rates->supported_rates[rates->num_rates++] =
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005475 LIBIPW_OFDM_RATE_18MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005476
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005477 if (rate_mask & LIBIPW_OFDM_RATE_24MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005478 rates->supported_rates[rates->num_rates++] = basic_mask |
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005479 LIBIPW_OFDM_RATE_24MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005480
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005481 if (rate_mask & LIBIPW_OFDM_RATE_36MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005482 rates->supported_rates[rates->num_rates++] =
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005483 LIBIPW_OFDM_RATE_36MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005484
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005485 if (rate_mask & LIBIPW_OFDM_RATE_48MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005486 rates->supported_rates[rates->num_rates++] =
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005487 LIBIPW_OFDM_RATE_48MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005488
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005489 if (rate_mask & LIBIPW_OFDM_RATE_54MB_MASK)
Jeff Garzikbf794512005-07-31 13:07:26 -04005490 rates->supported_rates[rates->num_rates++] =
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005491 LIBIPW_OFDM_RATE_54MB;
James Ketrenos43f66a62005-03-25 12:31:53 -06005492}
5493
5494struct ipw_network_match {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005495 struct libipw_network *network;
James Ketrenos43f66a62005-03-25 12:31:53 -06005496 struct ipw_supported_rates rates;
5497};
5498
James Ketrenosc848d0a2005-08-24 21:56:24 -05005499static int ipw_find_adhoc_network(struct ipw_priv *priv,
5500 struct ipw_network_match *match,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005501 struct libipw_network *network,
James Ketrenosc848d0a2005-08-24 21:56:24 -05005502 int roaming)
5503{
5504 struct ipw_supported_rates rates;
5505
5506 /* Verify that this network's capability is compatible with the
5507 * current mode (AdHoc or Infrastructure) */
5508 if ((priv->ieee->iw_mode == IW_MODE_ADHOC &&
5509 !(network->capability & WLAN_CAPABILITY_IBSS))) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005510 IPW_DEBUG_MERGE("Network '%*pE (%pM)' excluded due to capability mismatch.\n",
5511 network->ssid_len, network->ssid,
Johannes Berge1749612008-10-27 15:59:26 -07005512 network->bssid);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005513 return 0;
5514 }
5515
James Ketrenosc848d0a2005-08-24 21:56:24 -05005516 if (unlikely(roaming)) {
5517 /* If we are roaming, then ensure check if this is a valid
5518 * network to try and roam to */
5519 if ((network->ssid_len != match->network->ssid_len) ||
5520 memcmp(network->ssid, match->network->ssid,
5521 network->ssid_len)) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005522 IPW_DEBUG_MERGE("Network '%*pE (%pM)' excluded because of non-network ESSID.\n",
5523 network->ssid_len, network->ssid,
Johannes Berge1749612008-10-27 15:59:26 -07005524 network->bssid);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005525 return 0;
5526 }
5527 } else {
5528 /* If an ESSID has been configured then compare the broadcast
5529 * ESSID to ours */
5530 if ((priv->config & CFG_STATIC_ESSID) &&
5531 ((network->ssid_len != priv->essid_len) ||
5532 memcmp(network->ssid, priv->essid,
5533 min(network->ssid_len, priv->essid_len)))) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005534 IPW_DEBUG_MERGE("Network '%*pE (%pM)' excluded because of ESSID mismatch: '%*pE'.\n",
5535 network->ssid_len, network->ssid,
5536 network->bssid, priv->essid_len,
5537 priv->essid);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005538 return 0;
5539 }
5540 }
5541
5542 /* If the old network rate is better than this one, don't bother
5543 * testing everything else. */
5544
5545 if (network->time_stamp[0] < match->network->time_stamp[0]) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005546 IPW_DEBUG_MERGE("Network '%*pE excluded because newer than current network.\n",
5547 match->network->ssid_len, match->network->ssid);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005548 return 0;
5549 } else if (network->time_stamp[1] < match->network->time_stamp[1]) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005550 IPW_DEBUG_MERGE("Network '%*pE excluded because newer than current network.\n",
5551 match->network->ssid_len, match->network->ssid);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005552 return 0;
5553 }
5554
5555 /* Now go through and see if the requested network is valid... */
5556 if (priv->ieee->scan_age != 0 &&
5557 time_after(jiffies, network->last_scanned + priv->ieee->scan_age)) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005558 IPW_DEBUG_MERGE("Network '%*pE (%pM)' excluded because of age: %ums.\n",
5559 network->ssid_len, network->ssid,
Johannes Berge1749612008-10-27 15:59:26 -07005560 network->bssid,
Zhu Yi2638bc32006-01-24 16:37:52 +08005561 jiffies_to_msecs(jiffies -
5562 network->last_scanned));
James Ketrenosc848d0a2005-08-24 21:56:24 -05005563 return 0;
5564 }
5565
5566 if ((priv->config & CFG_STATIC_CHANNEL) &&
5567 (network->channel != priv->channel)) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005568 IPW_DEBUG_MERGE("Network '%*pE (%pM)' excluded because of channel mismatch: %d != %d.\n",
5569 network->ssid_len, network->ssid,
Johannes Berge1749612008-10-27 15:59:26 -07005570 network->bssid,
James Ketrenosc848d0a2005-08-24 21:56:24 -05005571 network->channel, priv->channel);
5572 return 0;
5573 }
5574
Lucas De Marchi25985ed2011-03-30 22:57:33 -03005575 /* Verify privacy compatibility */
James Ketrenosc848d0a2005-08-24 21:56:24 -05005576 if (((priv->capability & CAP_PRIVACY_ON) ? 1 : 0) !=
5577 ((network->capability & WLAN_CAPABILITY_PRIVACY) ? 1 : 0)) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005578 IPW_DEBUG_MERGE("Network '%*pE (%pM)' excluded because of privacy mismatch: %s != %s.\n",
5579 network->ssid_len, network->ssid,
Johannes Berge1749612008-10-27 15:59:26 -07005580 network->bssid,
James Ketrenosafbf30a2005-08-25 00:05:33 -05005581 priv->
5582 capability & CAP_PRIVACY_ON ? "on" : "off",
5583 network->
5584 capability & WLAN_CAPABILITY_PRIVACY ? "on" :
5585 "off");
James Ketrenosc848d0a2005-08-24 21:56:24 -05005586 return 0;
5587 }
5588
dingtianhong36325f32013-12-26 19:41:23 +08005589 if (ether_addr_equal(network->bssid, priv->bssid)) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005590 IPW_DEBUG_MERGE("Network '%*pE (%pM)' excluded because of the same BSSID match: %pM.\n",
5591 network->ssid_len, network->ssid,
5592 network->bssid, priv->bssid);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005593 return 0;
5594 }
5595
5596 /* Filter out any incompatible freq / mode combinations */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005597 if (!libipw_is_valid_mode(priv->ieee, network->mode)) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005598 IPW_DEBUG_MERGE("Network '%*pE (%pM)' excluded because of invalid frequency/mode combination.\n",
5599 network->ssid_len, network->ssid,
Johannes Berge1749612008-10-27 15:59:26 -07005600 network->bssid);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005601 return 0;
5602 }
5603
5604 /* Ensure that the rates supported by the driver are compatible with
5605 * this AP, including verification of basic rates (mandatory) */
5606 if (!ipw_compatible_rates(priv, network, &rates)) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005607 IPW_DEBUG_MERGE("Network '%*pE (%pM)' excluded because configured rate mask excludes AP mandatory rate.\n",
5608 network->ssid_len, network->ssid,
Johannes Berge1749612008-10-27 15:59:26 -07005609 network->bssid);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005610 return 0;
5611 }
5612
5613 if (rates.num_rates == 0) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005614 IPW_DEBUG_MERGE("Network '%*pE (%pM)' excluded because of no compatible rates.\n",
5615 network->ssid_len, network->ssid,
Johannes Berge1749612008-10-27 15:59:26 -07005616 network->bssid);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005617 return 0;
5618 }
5619
5620 /* TODO: Perform any further minimal comparititive tests. We do not
5621 * want to put too much policy logic here; intelligent scan selection
5622 * should occur within a generic IEEE 802.11 user space tool. */
5623
5624 /* Set up 'new' AP to this network */
5625 ipw_copy_rates(&match->rates, &rates);
5626 match->network = network;
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005627 IPW_DEBUG_MERGE("Network '%*pE (%pM)' is a viable match.\n",
5628 network->ssid_len, network->ssid, network->bssid);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005629
5630 return 1;
5631}
5632
David Howellsc4028952006-11-22 14:57:56 +00005633static void ipw_merge_adhoc_network(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -05005634{
David Howellsc4028952006-11-22 14:57:56 +00005635 struct ipw_priv *priv =
5636 container_of(work, struct ipw_priv, merge_networks);
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005637 struct libipw_network *network = NULL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05005638 struct ipw_network_match match = {
5639 .network = priv->assoc_network
5640 };
5641
James Ketrenosafbf30a2005-08-25 00:05:33 -05005642 if ((priv->status & STATUS_ASSOCIATED) &&
5643 (priv->ieee->iw_mode == IW_MODE_ADHOC)) {
James Ketrenosc848d0a2005-08-24 21:56:24 -05005644 /* First pass through ROAM process -- look for a better
5645 * network */
5646 unsigned long flags;
5647
5648 spin_lock_irqsave(&priv->ieee->lock, flags);
5649 list_for_each_entry(network, &priv->ieee->network_list, list) {
5650 if (network != priv->assoc_network)
5651 ipw_find_adhoc_network(priv, &match, network,
5652 1);
5653 }
5654 spin_unlock_irqrestore(&priv->ieee->lock, flags);
5655
5656 if (match.network == priv->assoc_network) {
5657 IPW_DEBUG_MERGE("No better ADHOC in this network to "
5658 "merge to.\n");
5659 return;
5660 }
5661
Zhu Yi46441512006-01-24 16:37:59 +08005662 mutex_lock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005663 if ((priv->ieee->iw_mode == IW_MODE_ADHOC)) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005664 IPW_DEBUG_MERGE("remove network %*pE\n",
5665 priv->essid_len, priv->essid);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005666 ipw_remove_current_network(priv);
5667 }
5668
5669 ipw_disassociate(priv);
5670 priv->assoc_network = match.network;
Zhu Yi46441512006-01-24 16:37:59 +08005671 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05005672 return;
5673 }
James Ketrenosc848d0a2005-08-24 21:56:24 -05005674}
5675
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005676static int ipw_best_network(struct ipw_priv *priv,
5677 struct ipw_network_match *match,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005678 struct libipw_network *network, int roaming)
James Ketrenos43f66a62005-03-25 12:31:53 -06005679{
5680 struct ipw_supported_rates rates;
5681
5682 /* Verify that this network's capability is compatible with the
5683 * current mode (AdHoc or Infrastructure) */
5684 if ((priv->ieee->iw_mode == IW_MODE_INFRA &&
Jouni Malinen24743852005-08-14 20:59:59 -07005685 !(network->capability & WLAN_CAPABILITY_ESS)) ||
James Ketrenos43f66a62005-03-25 12:31:53 -06005686 (priv->ieee->iw_mode == IW_MODE_ADHOC &&
5687 !(network->capability & WLAN_CAPABILITY_IBSS))) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005688 IPW_DEBUG_ASSOC("Network '%*pE (%pM)' excluded due to capability mismatch.\n",
5689 network->ssid_len, network->ssid,
Johannes Berge1749612008-10-27 15:59:26 -07005690 network->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06005691 return 0;
5692 }
5693
James Ketrenos43f66a62005-03-25 12:31:53 -06005694 if (unlikely(roaming)) {
5695 /* If we are roaming, then ensure check if this is a valid
5696 * network to try and roam to */
5697 if ((network->ssid_len != match->network->ssid_len) ||
Jeff Garzikbf794512005-07-31 13:07:26 -04005698 memcmp(network->ssid, match->network->ssid,
James Ketrenos43f66a62005-03-25 12:31:53 -06005699 network->ssid_len)) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005700 IPW_DEBUG_ASSOC("Network '%*pE (%pM)' excluded because of non-network ESSID.\n",
5701 network->ssid_len, network->ssid,
Johannes Berge1749612008-10-27 15:59:26 -07005702 network->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06005703 return 0;
5704 }
5705 } else {
Jeff Garzikbf794512005-07-31 13:07:26 -04005706 /* If an ESSID has been configured then compare the broadcast
5707 * ESSID to ours */
5708 if ((priv->config & CFG_STATIC_ESSID) &&
James Ketrenos43f66a62005-03-25 12:31:53 -06005709 ((network->ssid_len != priv->essid_len) ||
Jeff Garzikbf794512005-07-31 13:07:26 -04005710 memcmp(network->ssid, priv->essid,
James Ketrenos43f66a62005-03-25 12:31:53 -06005711 min(network->ssid_len, priv->essid_len)))) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005712 IPW_DEBUG_ASSOC("Network '%*pE (%pM)' excluded because of ESSID mismatch: '%*pE'.\n",
5713 network->ssid_len, network->ssid,
5714 network->bssid, priv->essid_len,
5715 priv->essid);
James Ketrenos43f66a62005-03-25 12:31:53 -06005716 return 0;
5717 }
5718 }
5719
5720 /* If the old network rate is better than this one, don't bother
5721 * testing everything else. */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005722 if (match->network && match->network->stats.rssi > network->stats.rssi) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005723 IPW_DEBUG_ASSOC("Network '%*pE (%pM)' excluded because '%*pE (%pM)' has a stronger signal.\n",
5724 network->ssid_len, network->ssid,
5725 network->bssid, match->network->ssid_len,
5726 match->network->ssid, match->network->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06005727 return 0;
5728 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005729
James Ketrenos43f66a62005-03-25 12:31:53 -06005730 /* If this network has already had an association attempt within the
5731 * last 3 seconds, do not try and associate again... */
5732 if (network->last_associate &&
James Ketrenosea2b26e2005-08-24 21:25:16 -05005733 time_after(network->last_associate + (HZ * 3UL), jiffies)) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005734 IPW_DEBUG_ASSOC("Network '%*pE (%pM)' excluded because of storming (%ums since last assoc attempt).\n",
5735 network->ssid_len, network->ssid,
Johannes Berge1749612008-10-27 15:59:26 -07005736 network->bssid,
Zhu Yi2638bc32006-01-24 16:37:52 +08005737 jiffies_to_msecs(jiffies -
5738 network->last_associate));
James Ketrenos43f66a62005-03-25 12:31:53 -06005739 return 0;
5740 }
5741
5742 /* Now go through and see if the requested network is valid... */
Jeff Garzikbf794512005-07-31 13:07:26 -04005743 if (priv->ieee->scan_age != 0 &&
James Ketrenosea2b26e2005-08-24 21:25:16 -05005744 time_after(jiffies, network->last_scanned + priv->ieee->scan_age)) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005745 IPW_DEBUG_ASSOC("Network '%*pE (%pM)' excluded because of age: %ums.\n",
5746 network->ssid_len, network->ssid,
Johannes Berge1749612008-10-27 15:59:26 -07005747 network->bssid,
Zhu Yi2638bc32006-01-24 16:37:52 +08005748 jiffies_to_msecs(jiffies -
5749 network->last_scanned));
James Ketrenos43f66a62005-03-25 12:31:53 -06005750 return 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04005751 }
James Ketrenos43f66a62005-03-25 12:31:53 -06005752
Jeff Garzikbf794512005-07-31 13:07:26 -04005753 if ((priv->config & CFG_STATIC_CHANNEL) &&
James Ketrenos43f66a62005-03-25 12:31:53 -06005754 (network->channel != priv->channel)) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005755 IPW_DEBUG_ASSOC("Network '%*pE (%pM)' excluded because of channel mismatch: %d != %d.\n",
5756 network->ssid_len, network->ssid,
Johannes Berge1749612008-10-27 15:59:26 -07005757 network->bssid,
James Ketrenos43f66a62005-03-25 12:31:53 -06005758 network->channel, priv->channel);
5759 return 0;
5760 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005761
Lucas De Marchi25985ed2011-03-30 22:57:33 -03005762 /* Verify privacy compatibility */
Jeff Garzikbf794512005-07-31 13:07:26 -04005763 if (((priv->capability & CAP_PRIVACY_ON) ? 1 : 0) !=
James Ketrenos43f66a62005-03-25 12:31:53 -06005764 ((network->capability & WLAN_CAPABILITY_PRIVACY) ? 1 : 0)) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005765 IPW_DEBUG_ASSOC("Network '%*pE (%pM)' excluded because of privacy mismatch: %s != %s.\n",
5766 network->ssid_len, network->ssid,
Johannes Berge1749612008-10-27 15:59:26 -07005767 network->bssid,
Jeff Garzikbf794512005-07-31 13:07:26 -04005768 priv->capability & CAP_PRIVACY_ON ? "on" :
James Ketrenos43f66a62005-03-25 12:31:53 -06005769 "off",
Jeff Garzikbf794512005-07-31 13:07:26 -04005770 network->capability &
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005771 WLAN_CAPABILITY_PRIVACY ? "on" : "off");
James Ketrenos43f66a62005-03-25 12:31:53 -06005772 return 0;
5773 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005774
5775 if ((priv->config & CFG_STATIC_BSSID) &&
dingtianhong36325f32013-12-26 19:41:23 +08005776 !ether_addr_equal(network->bssid, priv->bssid)) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005777 IPW_DEBUG_ASSOC("Network '%*pE (%pM)' excluded because of BSSID mismatch: %pM.\n",
5778 network->ssid_len, network->ssid,
Johannes Berge1749612008-10-27 15:59:26 -07005779 network->bssid, priv->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06005780 return 0;
5781 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005782
James Ketrenos43f66a62005-03-25 12:31:53 -06005783 /* Filter out any incompatible freq / mode combinations */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005784 if (!libipw_is_valid_mode(priv->ieee, network->mode)) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005785 IPW_DEBUG_ASSOC("Network '%*pE (%pM)' excluded because of invalid frequency/mode combination.\n",
5786 network->ssid_len, network->ssid,
Johannes Berge1749612008-10-27 15:59:26 -07005787 network->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06005788 return 0;
5789 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005790
Liu Hong1fe0adb2005-08-19 09:33:10 -05005791 /* Filter out invalid channel in current GEO */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005792 if (!libipw_is_valid_channel(priv->ieee, network->channel)) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005793 IPW_DEBUG_ASSOC("Network '%*pE (%pM)' excluded because of invalid channel in current GEO\n",
5794 network->ssid_len, network->ssid,
Johannes Berge1749612008-10-27 15:59:26 -07005795 network->bssid);
Liu Hong1fe0adb2005-08-19 09:33:10 -05005796 return 0;
5797 }
5798
James Ketrenosea2b26e2005-08-24 21:25:16 -05005799 /* Ensure that the rates supported by the driver are compatible with
5800 * this AP, including verification of basic rates (mandatory) */
5801 if (!ipw_compatible_rates(priv, network, &rates)) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005802 IPW_DEBUG_ASSOC("Network '%*pE (%pM)' excluded because configured rate mask excludes AP mandatory rate.\n",
5803 network->ssid_len, network->ssid,
Johannes Berge1749612008-10-27 15:59:26 -07005804 network->bssid);
James Ketrenosea2b26e2005-08-24 21:25:16 -05005805 return 0;
5806 }
5807
James Ketrenos43f66a62005-03-25 12:31:53 -06005808 if (rates.num_rates == 0) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005809 IPW_DEBUG_ASSOC("Network '%*pE (%pM)' excluded because of no compatible rates.\n",
5810 network->ssid_len, network->ssid,
Johannes Berge1749612008-10-27 15:59:26 -07005811 network->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06005812 return 0;
5813 }
Jeff Garzikbf794512005-07-31 13:07:26 -04005814
James Ketrenos43f66a62005-03-25 12:31:53 -06005815 /* TODO: Perform any further minimal comparititive tests. We do not
5816 * want to put too much policy logic here; intelligent scan selection
5817 * should occur within a generic IEEE 802.11 user space tool. */
5818
5819 /* Set up 'new' AP to this network */
5820 ipw_copy_rates(&match->rates, &rates);
5821 match->network = network;
5822
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07005823 IPW_DEBUG_ASSOC("Network '%*pE (%pM)' is a viable match.\n",
5824 network->ssid_len, network->ssid, network->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06005825
5826 return 1;
5827}
5828
Jeff Garzikbf794512005-07-31 13:07:26 -04005829static void ipw_adhoc_create(struct ipw_priv *priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005830 struct libipw_network *network)
James Ketrenos43f66a62005-03-25 12:31:53 -06005831{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005832 const struct libipw_geo *geo = libipw_get_geo(priv->ieee);
James Ketrenosafbf30a2005-08-25 00:05:33 -05005833 int i;
5834
James Ketrenos43f66a62005-03-25 12:31:53 -06005835 /*
5836 * For the purposes of scanning, we can set our wireless mode
5837 * to trigger scans across combinations of bands, but when it
5838 * comes to creating a new ad-hoc network, we have tell the FW
5839 * exactly which band to use.
5840 *
Jeff Garzikbf794512005-07-31 13:07:26 -04005841 * We also have the possibility of an invalid channel for the
James Ketrenos43f66a62005-03-25 12:31:53 -06005842 * chossen band. Attempting to create a new ad-hoc network
5843 * with an invalid channel for wireless mode will trigger a
5844 * FW fatal error.
James Ketrenosafbf30a2005-08-25 00:05:33 -05005845 *
James Ketrenos43f66a62005-03-25 12:31:53 -06005846 */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005847 switch (libipw_is_valid_channel(priv->ieee, priv->channel)) {
5848 case LIBIPW_52GHZ_BAND:
James Ketrenosafbf30a2005-08-25 00:05:33 -05005849 network->mode = IEEE_A;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005850 i = libipw_channel_to_index(priv->ieee, priv->channel);
Eric Sesterhenn5d9428d2006-04-02 13:52:48 +02005851 BUG_ON(i == -1);
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005852 if (geo->a[i].flags & LIBIPW_CH_PASSIVE_ONLY) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05005853 IPW_WARNING("Overriding invalid channel\n");
5854 priv->channel = geo->a[0].channel;
5855 }
5856 break;
5857
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005858 case LIBIPW_24GHZ_BAND:
James Ketrenosafbf30a2005-08-25 00:05:33 -05005859 if (priv->ieee->mode & IEEE_G)
5860 network->mode = IEEE_G;
5861 else
5862 network->mode = IEEE_B;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005863 i = libipw_channel_to_index(priv->ieee, priv->channel);
Eric Sesterhenn5d9428d2006-04-02 13:52:48 +02005864 BUG_ON(i == -1);
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005865 if (geo->bg[i].flags & LIBIPW_CH_PASSIVE_ONLY) {
Liu Hong1fe0adb2005-08-19 09:33:10 -05005866 IPW_WARNING("Overriding invalid channel\n");
5867 priv->channel = geo->bg[0].channel;
5868 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05005869 break;
5870
5871 default:
James Ketrenos43f66a62005-03-25 12:31:53 -06005872 IPW_WARNING("Overriding invalid channel\n");
5873 if (priv->ieee->mode & IEEE_A) {
5874 network->mode = IEEE_A;
James Ketrenosb095c382005-08-24 22:04:42 -05005875 priv->channel = geo->a[0].channel;
James Ketrenos43f66a62005-03-25 12:31:53 -06005876 } else if (priv->ieee->mode & IEEE_G) {
5877 network->mode = IEEE_G;
James Ketrenosb095c382005-08-24 22:04:42 -05005878 priv->channel = geo->bg[0].channel;
James Ketrenos43f66a62005-03-25 12:31:53 -06005879 } else {
5880 network->mode = IEEE_B;
James Ketrenosb095c382005-08-24 22:04:42 -05005881 priv->channel = geo->bg[0].channel;
James Ketrenos43f66a62005-03-25 12:31:53 -06005882 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05005883 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06005884 }
5885
5886 network->channel = priv->channel;
5887 priv->config |= CFG_ADHOC_PERSIST;
5888 ipw_create_bssid(priv, network->bssid);
5889 network->ssid_len = priv->essid_len;
5890 memcpy(network->ssid, priv->essid, priv->essid_len);
5891 memset(&network->stats, 0, sizeof(network->stats));
5892 network->capability = WLAN_CAPABILITY_IBSS;
James Ketrenosea2b26e2005-08-24 21:25:16 -05005893 if (!(priv->config & CFG_PREAMBLE_LONG))
5894 network->capability |= WLAN_CAPABILITY_SHORT_PREAMBLE;
James Ketrenos43f66a62005-03-25 12:31:53 -06005895 if (priv->capability & CAP_PRIVACY_ON)
5896 network->capability |= WLAN_CAPABILITY_PRIVACY;
5897 network->rates_len = min(priv->rates.num_rates, MAX_RATES_LENGTH);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005898 memcpy(network->rates, priv->rates.supported_rates, network->rates_len);
James Ketrenos43f66a62005-03-25 12:31:53 -06005899 network->rates_ex_len = priv->rates.num_rates - network->rates_len;
Jeff Garzikbf794512005-07-31 13:07:26 -04005900 memcpy(network->rates_ex,
James Ketrenos43f66a62005-03-25 12:31:53 -06005901 &priv->rates.supported_rates[network->rates_len],
5902 network->rates_ex_len);
5903 network->last_scanned = 0;
5904 network->flags = 0;
5905 network->last_associate = 0;
5906 network->time_stamp[0] = 0;
5907 network->time_stamp[1] = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04005908 network->beacon_interval = 100; /* Default */
5909 network->listen_interval = 10; /* Default */
5910 network->atim_window = 0; /* Default */
James Ketrenos43f66a62005-03-25 12:31:53 -06005911 network->wpa_ie_len = 0;
5912 network->rsn_ie_len = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005913}
5914
James Ketrenosb095c382005-08-24 22:04:42 -05005915static void ipw_send_tgi_tx_key(struct ipw_priv *priv, int type, int index)
5916{
Zhu Yi0a7bcf22006-01-24 16:37:28 +08005917 struct ipw_tgi_tx_key key;
James Ketrenosb095c382005-08-24 22:04:42 -05005918
5919 if (!(priv->ieee->sec.flags & (1 << index)))
5920 return;
5921
Zhu Yi0a7bcf22006-01-24 16:37:28 +08005922 key.key_id = index;
5923 memcpy(key.key, priv->ieee->sec.keys[index], SCM_TEMPORAL_KEY_LENGTH);
5924 key.security_type = type;
5925 key.station_index = 0; /* always 0 for BSS */
5926 key.flags = 0;
James Ketrenosb095c382005-08-24 22:04:42 -05005927 /* 0 for new key; previous value of counter (after fatal error) */
Zhu Yi851ca262006-08-21 11:37:58 +08005928 key.tx_counter[0] = cpu_to_le32(0);
5929 key.tx_counter[1] = cpu_to_le32(0);
James Ketrenosb095c382005-08-24 22:04:42 -05005930
Zhu Yi0a7bcf22006-01-24 16:37:28 +08005931 ipw_send_cmd_pdu(priv, IPW_CMD_TGI_TX_KEY, sizeof(key), &key);
James Ketrenosb095c382005-08-24 22:04:42 -05005932}
5933
5934static void ipw_send_wep_keys(struct ipw_priv *priv, int type)
James Ketrenos43f66a62005-03-25 12:31:53 -06005935{
Zhu Yi0a7bcf22006-01-24 16:37:28 +08005936 struct ipw_wep_key key;
James Ketrenos43f66a62005-03-25 12:31:53 -06005937 int i;
James Ketrenos43f66a62005-03-25 12:31:53 -06005938
Zhu Yi0a7bcf22006-01-24 16:37:28 +08005939 key.cmd_id = DINO_CMD_WEP_KEY;
5940 key.seq_num = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06005941
James Ketrenosb095c382005-08-24 22:04:42 -05005942 /* Note: AES keys cannot be set for multiple times.
5943 * Only set it at the first time. */
Jeff Garzikbf794512005-07-31 13:07:26 -04005944 for (i = 0; i < 4; i++) {
Zhu Yi0a7bcf22006-01-24 16:37:28 +08005945 key.key_index = i | type;
James Ketrenosb095c382005-08-24 22:04:42 -05005946 if (!(priv->ieee->sec.flags & (1 << i))) {
Zhu Yi0a7bcf22006-01-24 16:37:28 +08005947 key.key_size = 0;
James Ketrenosb095c382005-08-24 22:04:42 -05005948 continue;
James Ketrenos43f66a62005-03-25 12:31:53 -06005949 }
5950
Zhu Yi0a7bcf22006-01-24 16:37:28 +08005951 key.key_size = priv->ieee->sec.key_sizes[i];
5952 memcpy(key.key, priv->ieee->sec.keys[i], key.key_size);
James Ketrenosb095c382005-08-24 22:04:42 -05005953
Zhu Yi0a7bcf22006-01-24 16:37:28 +08005954 ipw_send_cmd_pdu(priv, IPW_CMD_WEP_KEY, sizeof(key), &key);
Jeff Garzikbf794512005-07-31 13:07:26 -04005955 }
James Ketrenos43f66a62005-03-25 12:31:53 -06005956}
5957
Zhu Yi1fbfea52005-08-05 17:22:56 +08005958static void ipw_set_hw_decrypt_unicast(struct ipw_priv *priv, int level)
5959{
5960 if (priv->ieee->host_encrypt)
5961 return;
5962
5963 switch (level) {
5964 case SEC_LEVEL_3:
5965 priv->sys_config.disable_unicast_decryption = 0;
5966 priv->ieee->host_decrypt = 0;
5967 break;
5968 case SEC_LEVEL_2:
5969 priv->sys_config.disable_unicast_decryption = 1;
5970 priv->ieee->host_decrypt = 1;
5971 break;
5972 case SEC_LEVEL_1:
5973 priv->sys_config.disable_unicast_decryption = 0;
5974 priv->ieee->host_decrypt = 0;
5975 break;
5976 case SEC_LEVEL_0:
5977 priv->sys_config.disable_unicast_decryption = 1;
5978 break;
5979 default:
5980 break;
5981 }
5982}
5983
5984static void ipw_set_hw_decrypt_multicast(struct ipw_priv *priv, int level)
5985{
5986 if (priv->ieee->host_encrypt)
5987 return;
5988
5989 switch (level) {
5990 case SEC_LEVEL_3:
5991 priv->sys_config.disable_multicast_decryption = 0;
5992 break;
5993 case SEC_LEVEL_2:
5994 priv->sys_config.disable_multicast_decryption = 1;
5995 break;
5996 case SEC_LEVEL_1:
5997 priv->sys_config.disable_multicast_decryption = 0;
5998 break;
5999 case SEC_LEVEL_0:
6000 priv->sys_config.disable_multicast_decryption = 1;
6001 break;
6002 default:
6003 break;
6004 }
6005}
6006
James Ketrenosb095c382005-08-24 22:04:42 -05006007static void ipw_set_hwcrypto_keys(struct ipw_priv *priv)
6008{
6009 switch (priv->ieee->sec.level) {
6010 case SEC_LEVEL_3:
Zhu Yid8bad6d2005-07-13 12:25:38 -05006011 if (priv->ieee->sec.flags & SEC_ACTIVE_KEY)
6012 ipw_send_tgi_tx_key(priv,
6013 DCT_FLAG_EXT_SECURITY_CCM,
6014 priv->ieee->sec.active_key);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006015
Hong Liu567deaf2005-08-31 18:07:22 +08006016 if (!priv->ieee->host_mc_decrypt)
6017 ipw_send_wep_keys(priv, DCW_WEP_KEY_SEC_TYPE_CCM);
James Ketrenosb095c382005-08-24 22:04:42 -05006018 break;
6019 case SEC_LEVEL_2:
Zhu Yid8bad6d2005-07-13 12:25:38 -05006020 if (priv->ieee->sec.flags & SEC_ACTIVE_KEY)
6021 ipw_send_tgi_tx_key(priv,
6022 DCT_FLAG_EXT_SECURITY_TKIP,
6023 priv->ieee->sec.active_key);
James Ketrenosb095c382005-08-24 22:04:42 -05006024 break;
6025 case SEC_LEVEL_1:
6026 ipw_send_wep_keys(priv, DCW_WEP_KEY_SEC_TYPE_WEP);
Hong Liu29cb8432005-09-12 10:43:33 -05006027 ipw_set_hw_decrypt_unicast(priv, priv->ieee->sec.level);
6028 ipw_set_hw_decrypt_multicast(priv, priv->ieee->sec.level);
James Ketrenosb095c382005-08-24 22:04:42 -05006029 break;
6030 case SEC_LEVEL_0:
6031 default:
6032 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06006033 }
6034}
6035
6036static void ipw_adhoc_check(void *data)
6037{
6038 struct ipw_priv *priv = data;
Jeff Garzikbf794512005-07-31 13:07:26 -04006039
James Ketrenosafbf30a2005-08-25 00:05:33 -05006040 if (priv->missed_adhoc_beacons++ > priv->disassociate_threshold &&
James Ketrenos43f66a62005-03-25 12:31:53 -06006041 !(priv->config & CFG_ADHOC_PERSIST)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006042 IPW_DEBUG(IPW_DL_INFO | IPW_DL_NOTIF |
6043 IPW_DL_STATE | IPW_DL_ASSOC,
6044 "Missed beacon: %d - disassociate\n",
6045 priv->missed_adhoc_beacons);
James Ketrenos43f66a62005-03-25 12:31:53 -06006046 ipw_remove_current_network(priv);
6047 ipw_disassociate(priv);
6048 return;
6049 }
6050
Tejun Heobcb6d912011-01-26 12:12:50 +01006051 schedule_delayed_work(&priv->adhoc_check,
6052 le16_to_cpu(priv->assoc_request.beacon_interval));
James Ketrenos43f66a62005-03-25 12:31:53 -06006053}
6054
David Howellsc4028952006-11-22 14:57:56 +00006055static void ipw_bg_adhoc_check(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -05006056{
David Howellsc4028952006-11-22 14:57:56 +00006057 struct ipw_priv *priv =
6058 container_of(work, struct ipw_priv, adhoc_check.work);
Zhu Yi46441512006-01-24 16:37:59 +08006059 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00006060 ipw_adhoc_check(priv);
Zhu Yi46441512006-01-24 16:37:59 +08006061 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05006062}
6063
James Ketrenos43f66a62005-03-25 12:31:53 -06006064static void ipw_debug_config(struct ipw_priv *priv)
6065{
6066 IPW_DEBUG_INFO("Scan completed, no valid APs matched "
6067 "[CFG 0x%08X]\n", priv->config);
6068 if (priv->config & CFG_STATIC_CHANNEL)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04006069 IPW_DEBUG_INFO("Channel locked to %d\n", priv->channel);
James Ketrenos43f66a62005-03-25 12:31:53 -06006070 else
6071 IPW_DEBUG_INFO("Channel unlocked.\n");
6072 if (priv->config & CFG_STATIC_ESSID)
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07006073 IPW_DEBUG_INFO("ESSID locked to '%*pE'\n",
6074 priv->essid_len, priv->essid);
James Ketrenos43f66a62005-03-25 12:31:53 -06006075 else
6076 IPW_DEBUG_INFO("ESSID unlocked.\n");
6077 if (priv->config & CFG_STATIC_BSSID)
Johannes Berge1749612008-10-27 15:59:26 -07006078 IPW_DEBUG_INFO("BSSID locked to %pM\n", priv->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06006079 else
6080 IPW_DEBUG_INFO("BSSID unlocked.\n");
6081 if (priv->capability & CAP_PRIVACY_ON)
6082 IPW_DEBUG_INFO("PRIVACY on\n");
6083 else
6084 IPW_DEBUG_INFO("PRIVACY off\n");
6085 IPW_DEBUG_INFO("RATE MASK: 0x%08X\n", priv->rates_mask);
6086}
James Ketrenos43f66a62005-03-25 12:31:53 -06006087
Arjan van de Ven858119e2006-01-14 13:20:43 -08006088static void ipw_set_fixed_rate(struct ipw_priv *priv, int mode)
James Ketrenos43f66a62005-03-25 12:31:53 -06006089{
6090 /* TODO: Verify that this works... */
Reinette Chatre21f8a732009-08-18 10:25:05 -07006091 struct ipw_fixed_rate fr;
James Ketrenos43f66a62005-03-25 12:31:53 -06006092 u32 reg;
6093 u16 mask = 0;
Reinette Chatre21f8a732009-08-18 10:25:05 -07006094 u16 new_tx_rates = priv->rates_mask;
James Ketrenos43f66a62005-03-25 12:31:53 -06006095
Jeff Garzikbf794512005-07-31 13:07:26 -04006096 /* Identify 'current FW band' and match it with the fixed
James Ketrenos43f66a62005-03-25 12:31:53 -06006097 * Tx rates */
Jeff Garzikbf794512005-07-31 13:07:26 -04006098
James Ketrenos43f66a62005-03-25 12:31:53 -06006099 switch (priv->ieee->freq_band) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006100 case LIBIPW_52GHZ_BAND: /* A only */
James Ketrenos43f66a62005-03-25 12:31:53 -06006101 /* IEEE_A */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006102 if (priv->rates_mask & ~LIBIPW_OFDM_RATES_MASK) {
James Ketrenos43f66a62005-03-25 12:31:53 -06006103 /* Invalid fixed rate mask */
James Ketrenosea2b26e2005-08-24 21:25:16 -05006104 IPW_DEBUG_WX
6105 ("invalid fixed rate mask in ipw_set_fixed_rate\n");
Reinette Chatre21f8a732009-08-18 10:25:05 -07006106 new_tx_rates = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06006107 break;
6108 }
Jeff Garzikbf794512005-07-31 13:07:26 -04006109
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006110 new_tx_rates >>= LIBIPW_OFDM_SHIFT_MASK_A;
James Ketrenos43f66a62005-03-25 12:31:53 -06006111 break;
6112
Jeff Garzik0edd5b42005-09-07 00:48:31 -04006113 default: /* 2.4Ghz or Mixed */
James Ketrenos43f66a62005-03-25 12:31:53 -06006114 /* IEEE_B */
James Ketrenosb095c382005-08-24 22:04:42 -05006115 if (mode == IEEE_B) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006116 if (new_tx_rates & ~LIBIPW_CCK_RATES_MASK) {
James Ketrenos43f66a62005-03-25 12:31:53 -06006117 /* Invalid fixed rate mask */
James Ketrenosea2b26e2005-08-24 21:25:16 -05006118 IPW_DEBUG_WX
6119 ("invalid fixed rate mask in ipw_set_fixed_rate\n");
Reinette Chatre21f8a732009-08-18 10:25:05 -07006120 new_tx_rates = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06006121 }
6122 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04006123 }
James Ketrenos43f66a62005-03-25 12:31:53 -06006124
6125 /* IEEE_G */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006126 if (new_tx_rates & ~(LIBIPW_CCK_RATES_MASK |
6127 LIBIPW_OFDM_RATES_MASK)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06006128 /* Invalid fixed rate mask */
James Ketrenosea2b26e2005-08-24 21:25:16 -05006129 IPW_DEBUG_WX
6130 ("invalid fixed rate mask in ipw_set_fixed_rate\n");
Reinette Chatre21f8a732009-08-18 10:25:05 -07006131 new_tx_rates = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06006132 break;
6133 }
6134
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006135 if (LIBIPW_OFDM_RATE_6MB_MASK & new_tx_rates) {
6136 mask |= (LIBIPW_OFDM_RATE_6MB_MASK >> 1);
6137 new_tx_rates &= ~LIBIPW_OFDM_RATE_6MB_MASK;
James Ketrenos43f66a62005-03-25 12:31:53 -06006138 }
Jeff Garzikbf794512005-07-31 13:07:26 -04006139
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006140 if (LIBIPW_OFDM_RATE_9MB_MASK & new_tx_rates) {
6141 mask |= (LIBIPW_OFDM_RATE_9MB_MASK >> 1);
6142 new_tx_rates &= ~LIBIPW_OFDM_RATE_9MB_MASK;
James Ketrenos43f66a62005-03-25 12:31:53 -06006143 }
Jeff Garzikbf794512005-07-31 13:07:26 -04006144
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006145 if (LIBIPW_OFDM_RATE_12MB_MASK & new_tx_rates) {
6146 mask |= (LIBIPW_OFDM_RATE_12MB_MASK >> 1);
6147 new_tx_rates &= ~LIBIPW_OFDM_RATE_12MB_MASK;
James Ketrenos43f66a62005-03-25 12:31:53 -06006148 }
Jeff Garzikbf794512005-07-31 13:07:26 -04006149
Reinette Chatre21f8a732009-08-18 10:25:05 -07006150 new_tx_rates |= mask;
James Ketrenos43f66a62005-03-25 12:31:53 -06006151 break;
6152 }
6153
Reinette Chatre21f8a732009-08-18 10:25:05 -07006154 fr.tx_rates = cpu_to_le16(new_tx_rates);
6155
James Ketrenos43f66a62005-03-25 12:31:53 -06006156 reg = ipw_read32(priv, IPW_MEM_FIXED_OVERRIDE);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04006157 ipw_write_reg32(priv, reg, *(u32 *) & fr);
James Ketrenos43f66a62005-03-25 12:31:53 -06006158}
6159
James Ketrenosea2b26e2005-08-24 21:25:16 -05006160static void ipw_abort_scan(struct ipw_priv *priv)
6161{
6162 int err;
6163
6164 if (priv->status & STATUS_SCAN_ABORTING) {
6165 IPW_DEBUG_HC("Ignoring concurrent scan abort request.\n");
6166 return;
6167 }
6168 priv->status |= STATUS_SCAN_ABORTING;
6169
6170 err = ipw_send_scan_abort(priv);
6171 if (err)
6172 IPW_DEBUG_HC("Request to abort scan failed.\n");
6173}
6174
James Ketrenosafbf30a2005-08-25 00:05:33 -05006175static void ipw_add_scan_channels(struct ipw_priv *priv,
6176 struct ipw_scan_request_ext *scan,
6177 int scan_type)
6178{
6179 int channel_index = 0;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006180 const struct libipw_geo *geo;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006181 int i;
6182
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006183 geo = libipw_get_geo(priv->ieee);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006184
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006185 if (priv->ieee->freq_band & LIBIPW_52GHZ_BAND) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006186 int start = channel_index;
6187 for (i = 0; i < geo->a_channels; i++) {
6188 if ((priv->status & STATUS_ASSOCIATED) &&
6189 geo->a[i].channel == priv->channel)
6190 continue;
6191 channel_index++;
6192 scan->channels_list[channel_index] = geo->a[i].channel;
Liu Hong1fe0adb2005-08-19 09:33:10 -05006193 ipw_set_scan_type(scan, channel_index,
6194 geo->a[i].
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006195 flags & LIBIPW_CH_PASSIVE_ONLY ?
Liu Hong1fe0adb2005-08-19 09:33:10 -05006196 IPW_SCAN_PASSIVE_FULL_DWELL_SCAN :
6197 scan_type);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006198 }
6199
6200 if (start != channel_index) {
6201 scan->channels_list[start] = (u8) (IPW_A_MODE << 6) |
6202 (channel_index - start);
6203 channel_index++;
6204 }
6205 }
6206
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006207 if (priv->ieee->freq_band & LIBIPW_24GHZ_BAND) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006208 int start = channel_index;
6209 if (priv->config & CFG_SPEED_SCAN) {
Liu Hong1fe0adb2005-08-19 09:33:10 -05006210 int index;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006211 u8 channels[LIBIPW_24GHZ_CHANNELS] = {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006212 /* nop out the list */
6213 [0] = 0
6214 };
6215
6216 u8 channel;
Zhu Yi7dd24592009-07-27 10:10:20 +08006217 while (channel_index < IPW_SCAN_CHANNELS - 1) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006218 channel =
6219 priv->speed_scan[priv->speed_scan_pos];
6220 if (channel == 0) {
6221 priv->speed_scan_pos = 0;
6222 channel = priv->speed_scan[0];
6223 }
6224 if ((priv->status & STATUS_ASSOCIATED) &&
6225 channel == priv->channel) {
6226 priv->speed_scan_pos++;
6227 continue;
6228 }
6229
6230 /* If this channel has already been
6231 * added in scan, break from loop
6232 * and this will be the first channel
6233 * in the next scan.
6234 */
6235 if (channels[channel - 1] != 0)
6236 break;
6237
6238 channels[channel - 1] = 1;
6239 priv->speed_scan_pos++;
6240 channel_index++;
6241 scan->channels_list[channel_index] = channel;
Liu Hong1fe0adb2005-08-19 09:33:10 -05006242 index =
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006243 libipw_channel_to_index(priv->ieee, channel);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006244 ipw_set_scan_type(scan, channel_index,
Liu Hong1fe0adb2005-08-19 09:33:10 -05006245 geo->bg[index].
6246 flags &
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006247 LIBIPW_CH_PASSIVE_ONLY ?
Liu Hong1fe0adb2005-08-19 09:33:10 -05006248 IPW_SCAN_PASSIVE_FULL_DWELL_SCAN
6249 : scan_type);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006250 }
6251 } else {
6252 for (i = 0; i < geo->bg_channels; i++) {
6253 if ((priv->status & STATUS_ASSOCIATED) &&
6254 geo->bg[i].channel == priv->channel)
6255 continue;
6256 channel_index++;
6257 scan->channels_list[channel_index] =
6258 geo->bg[i].channel;
6259 ipw_set_scan_type(scan, channel_index,
Liu Hong1fe0adb2005-08-19 09:33:10 -05006260 geo->bg[i].
6261 flags &
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006262 LIBIPW_CH_PASSIVE_ONLY ?
Liu Hong1fe0adb2005-08-19 09:33:10 -05006263 IPW_SCAN_PASSIVE_FULL_DWELL_SCAN
6264 : scan_type);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006265 }
6266 }
6267
6268 if (start != channel_index) {
6269 scan->channels_list[start] = (u8) (IPW_B_MODE << 6) |
6270 (channel_index - start);
6271 }
6272 }
6273}
6274
Helmut Schaa14a4dfe2008-12-10 13:17:26 +01006275static int ipw_passive_dwell_time(struct ipw_priv *priv)
6276{
6277 /* staying on passive channels longer than the DTIM interval during a
6278 * scan, while associated, causes the firmware to cancel the scan
6279 * without notification. Hence, don't stay on passive channels longer
6280 * than the beacon interval.
6281 */
6282 if (priv->status & STATUS_ASSOCIATED
6283 && priv->assoc_network->beacon_interval > 10)
6284 return priv->assoc_network->beacon_interval - 10;
6285 else
6286 return 120;
6287}
6288
Dan Williamsea177302008-06-02 17:51:23 -04006289static int ipw_request_scan_helper(struct ipw_priv *priv, int type, int direct)
James Ketrenosea2b26e2005-08-24 21:25:16 -05006290{
6291 struct ipw_scan_request_ext scan;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006292 int err = 0, scan_type;
6293
6294 if (!(priv->status & STATUS_INIT) ||
6295 (priv->status & STATUS_EXIT_PENDING))
6296 return 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006297
Zhu Yi46441512006-01-24 16:37:59 +08006298 mutex_lock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05006299
Dan Williamsea177302008-06-02 17:51:23 -04006300 if (direct && (priv->direct_scan_ssid_len == 0)) {
6301 IPW_DEBUG_HC("Direct scan requested but no SSID to scan for\n");
6302 priv->status &= ~STATUS_DIRECT_SCAN_PENDING;
6303 goto done;
6304 }
6305
James Ketrenosea2b26e2005-08-24 21:25:16 -05006306 if (priv->status & STATUS_SCANNING) {
Dan Williamsea177302008-06-02 17:51:23 -04006307 IPW_DEBUG_HC("Concurrent scan requested. Queuing.\n");
6308 priv->status |= direct ? STATUS_DIRECT_SCAN_PENDING :
6309 STATUS_SCAN_PENDING;
James Ketrenosb095c382005-08-24 22:04:42 -05006310 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006311 }
6312
James Ketrenosafbf30a2005-08-25 00:05:33 -05006313 if (!(priv->status & STATUS_SCAN_FORCED) &&
6314 priv->status & STATUS_SCAN_ABORTING) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006315 IPW_DEBUG_HC("Scan request while abort pending. Queuing.\n");
Dan Williamsea177302008-06-02 17:51:23 -04006316 priv->status |= direct ? STATUS_DIRECT_SCAN_PENDING :
6317 STATUS_SCAN_PENDING;
James Ketrenosb095c382005-08-24 22:04:42 -05006318 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006319 }
6320
6321 if (priv->status & STATUS_RF_KILL_MASK) {
Dan Williamsea177302008-06-02 17:51:23 -04006322 IPW_DEBUG_HC("Queuing scan due to RF Kill activation\n");
6323 priv->status |= direct ? STATUS_DIRECT_SCAN_PENDING :
6324 STATUS_SCAN_PENDING;
James Ketrenosb095c382005-08-24 22:04:42 -05006325 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006326 }
6327
6328 memset(&scan, 0, sizeof(scan));
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006329 scan.full_scan_index = cpu_to_le32(libipw_get_scans(priv->ieee));
James Ketrenosea2b26e2005-08-24 21:25:16 -05006330
Zhu Yi094c4d22006-08-21 11:39:03 +08006331 if (type == IW_SCAN_TYPE_PASSIVE) {
Helmut Schaa14a4dfe2008-12-10 13:17:26 +01006332 IPW_DEBUG_WX("use passive scanning\n");
6333 scan_type = IPW_SCAN_PASSIVE_FULL_DWELL_SCAN;
Zhu Yi094c4d22006-08-21 11:39:03 +08006334 scan.dwell_time[IPW_SCAN_PASSIVE_FULL_DWELL_SCAN] =
Helmut Schaa14a4dfe2008-12-10 13:17:26 +01006335 cpu_to_le16(ipw_passive_dwell_time(priv));
Zhu Yi094c4d22006-08-21 11:39:03 +08006336 ipw_add_scan_channels(priv, &scan, scan_type);
6337 goto send_request;
6338 }
6339
6340 /* Use active scan by default. */
Helmut Schaa14a4dfe2008-12-10 13:17:26 +01006341 if (priv->config & CFG_SPEED_SCAN)
James Ketrenosb095c382005-08-24 22:04:42 -05006342 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_SCAN] =
Zhu Yi094c4d22006-08-21 11:39:03 +08006343 cpu_to_le16(30);
James Ketrenosb095c382005-08-24 22:04:42 -05006344 else
6345 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_SCAN] =
Zhu Yi094c4d22006-08-21 11:39:03 +08006346 cpu_to_le16(20);
James Ketrenosb095c382005-08-24 22:04:42 -05006347
James Ketrenosa613bff2005-08-24 21:43:11 -05006348 scan.dwell_time[IPW_SCAN_ACTIVE_BROADCAST_AND_DIRECT_SCAN] =
Zhu Yi094c4d22006-08-21 11:39:03 +08006349 cpu_to_le16(20);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006350
Helmut Schaa14a4dfe2008-12-10 13:17:26 +01006351 scan.dwell_time[IPW_SCAN_PASSIVE_FULL_DWELL_SCAN] =
6352 cpu_to_le16(ipw_passive_dwell_time(priv));
Dan Williamsea177302008-06-02 17:51:23 -04006353 scan.dwell_time[IPW_SCAN_ACTIVE_DIRECT_SCAN] = cpu_to_le16(20);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006354
James Ketrenosb095c382005-08-24 22:04:42 -05006355#ifdef CONFIG_IPW2200_MONITOR
James Ketrenosea2b26e2005-08-24 21:25:16 -05006356 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006357 u8 channel;
James Ketrenosb095c382005-08-24 22:04:42 -05006358 u8 band = 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006359
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006360 switch (libipw_is_valid_channel(priv->ieee, priv->channel)) {
6361 case LIBIPW_52GHZ_BAND:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006362 band = (u8) (IPW_A_MODE << 6) | 1;
James Ketrenosb095c382005-08-24 22:04:42 -05006363 channel = priv->channel;
6364 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006365
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006366 case LIBIPW_24GHZ_BAND:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006367 band = (u8) (IPW_B_MODE << 6) | 1;
James Ketrenosb095c382005-08-24 22:04:42 -05006368 channel = priv->channel;
6369 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006370
James Ketrenosb095c382005-08-24 22:04:42 -05006371 default:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006372 band = (u8) (IPW_B_MODE << 6) | 1;
6373 channel = 9;
James Ketrenosb095c382005-08-24 22:04:42 -05006374 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006375 }
6376
James Ketrenosb095c382005-08-24 22:04:42 -05006377 scan.channels_list[0] = band;
6378 scan.channels_list[1] = channel;
6379 ipw_set_scan_type(&scan, 1, IPW_SCAN_PASSIVE_FULL_DWELL_SCAN);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006380
James Ketrenosb095c382005-08-24 22:04:42 -05006381 /* NOTE: The card will sit on this channel for this time
6382 * period. Scan aborts are timing sensitive and frequently
6383 * result in firmware restarts. As such, it is best to
6384 * set a small dwell_time here and just keep re-issuing
6385 * scans. Otherwise fast channel hopping will not actually
6386 * hop channels.
6387 *
6388 * TODO: Move SPEED SCAN support to all modes and bands */
James Ketrenosa613bff2005-08-24 21:43:11 -05006389 scan.dwell_time[IPW_SCAN_PASSIVE_FULL_DWELL_SCAN] =
Zhu Yi094c4d22006-08-21 11:39:03 +08006390 cpu_to_le16(2000);
James Ketrenosea2b26e2005-08-24 21:25:16 -05006391 } else {
James Ketrenosb095c382005-08-24 22:04:42 -05006392#endif /* CONFIG_IPW2200_MONITOR */
Dan Williamsea177302008-06-02 17:51:23 -04006393 /* Honor direct scans first, otherwise if we are roaming make
6394 * this a direct scan for the current network. Finally,
6395 * ensure that every other scan is a fast channel hop scan */
6396 if (direct) {
6397 err = ipw_send_ssid(priv, priv->direct_scan_ssid,
6398 priv->direct_scan_ssid_len);
6399 if (err) {
6400 IPW_DEBUG_HC("Attempt to send SSID command "
6401 "failed\n");
6402 goto done;
6403 }
6404
6405 scan_type = IPW_SCAN_ACTIVE_BROADCAST_AND_DIRECT_SCAN;
6406 } else if ((priv->status & STATUS_ROAMING)
6407 || (!(priv->status & STATUS_ASSOCIATED)
6408 && (priv->config & CFG_STATIC_ESSID)
6409 && (le32_to_cpu(scan.full_scan_index) % 2))) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006410 err = ipw_send_ssid(priv, priv->essid, priv->essid_len);
6411 if (err) {
James Ketrenosb095c382005-08-24 22:04:42 -05006412 IPW_DEBUG_HC("Attempt to send SSID command "
6413 "failed.\n");
6414 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006415 }
6416
6417 scan_type = IPW_SCAN_ACTIVE_BROADCAST_AND_DIRECT_SCAN;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006418 } else
James Ketrenosea2b26e2005-08-24 21:25:16 -05006419 scan_type = IPW_SCAN_ACTIVE_BROADCAST_SCAN;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006420
James Ketrenosafbf30a2005-08-25 00:05:33 -05006421 ipw_add_scan_channels(priv, &scan, scan_type);
James Ketrenosb095c382005-08-24 22:04:42 -05006422#ifdef CONFIG_IPW2200_MONITOR
James Ketrenosea2b26e2005-08-24 21:25:16 -05006423 }
6424#endif
6425
Zhu Yi094c4d22006-08-21 11:39:03 +08006426send_request:
James Ketrenosea2b26e2005-08-24 21:25:16 -05006427 err = ipw_send_scan_request_ext(priv, &scan);
6428 if (err) {
6429 IPW_DEBUG_HC("Sending scan command failed: %08X\n", err);
James Ketrenosb095c382005-08-24 22:04:42 -05006430 goto done;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006431 }
6432
6433 priv->status |= STATUS_SCANNING;
Dan Williamsea177302008-06-02 17:51:23 -04006434 if (direct) {
6435 priv->status &= ~STATUS_DIRECT_SCAN_PENDING;
6436 priv->direct_scan_ssid_len = 0;
6437 } else
6438 priv->status &= ~STATUS_SCAN_PENDING;
6439
Tejun Heobcb6d912011-01-26 12:12:50 +01006440 schedule_delayed_work(&priv->scan_check, IPW_SCAN_CHECK_WATCHDOG);
Zhu Yi094c4d22006-08-21 11:39:03 +08006441done:
Zhu Yi46441512006-01-24 16:37:59 +08006442 mutex_unlock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05006443 return err;
James Ketrenosc848d0a2005-08-24 21:56:24 -05006444}
6445
David Howellsc4028952006-11-22 14:57:56 +00006446static void ipw_request_passive_scan(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -05006447{
David Howellsc4028952006-11-22 14:57:56 +00006448 struct ipw_priv *priv =
Dan Williamsea177302008-06-02 17:51:23 -04006449 container_of(work, struct ipw_priv, request_passive_scan.work);
6450 ipw_request_scan_helper(priv, IW_SCAN_TYPE_PASSIVE, 0);
David Howellsc4028952006-11-22 14:57:56 +00006451}
6452
6453static void ipw_request_scan(struct work_struct *work)
6454{
6455 struct ipw_priv *priv =
6456 container_of(work, struct ipw_priv, request_scan.work);
Dan Williamsea177302008-06-02 17:51:23 -04006457 ipw_request_scan_helper(priv, IW_SCAN_TYPE_ACTIVE, 0);
6458}
6459
6460static void ipw_request_direct_scan(struct work_struct *work)
6461{
6462 struct ipw_priv *priv =
6463 container_of(work, struct ipw_priv, request_direct_scan.work);
6464 ipw_request_scan_helper(priv, IW_SCAN_TYPE_ACTIVE, 1);
David Howellsc4028952006-11-22 14:57:56 +00006465}
6466
6467static void ipw_bg_abort_scan(struct work_struct *work)
6468{
6469 struct ipw_priv *priv =
6470 container_of(work, struct ipw_priv, abort_scan);
Zhu Yi46441512006-01-24 16:37:59 +08006471 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00006472 ipw_abort_scan(priv);
Zhu Yi46441512006-01-24 16:37:59 +08006473 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05006474}
6475
James Ketrenosea2b26e2005-08-24 21:25:16 -05006476static int ipw_wpa_enable(struct ipw_priv *priv, int value)
6477{
James Ketrenosb095c382005-08-24 22:04:42 -05006478 /* This is called when wpa_supplicant loads and closes the driver
6479 * interface. */
Hong Liucdd1fa12005-08-31 18:14:27 +08006480 priv->ieee->wpa_enabled = value;
James Ketrenosb095c382005-08-24 22:04:42 -05006481 return 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006482}
6483
James Ketrenosea2b26e2005-08-24 21:25:16 -05006484static int ipw_wpa_set_auth_algs(struct ipw_priv *priv, int value)
6485{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006486 struct libipw_device *ieee = priv->ieee;
6487 struct libipw_security sec = {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006488 .flags = SEC_AUTH_MODE,
6489 };
6490 int ret = 0;
6491
James Ketrenosafbf30a2005-08-25 00:05:33 -05006492 if (value & IW_AUTH_ALG_SHARED_KEY) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006493 sec.auth_mode = WLAN_AUTH_SHARED_KEY;
6494 ieee->open_wep = 0;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006495 } else if (value & IW_AUTH_ALG_OPEN_SYSTEM) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05006496 sec.auth_mode = WLAN_AUTH_OPEN;
6497 ieee->open_wep = 1;
Zhu Yi3e234b42006-01-24 16:36:52 +08006498 } else if (value & IW_AUTH_ALG_LEAP) {
6499 sec.auth_mode = WLAN_AUTH_LEAP;
6500 ieee->open_wep = 1;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006501 } else
6502 return -EINVAL;
James Ketrenosea2b26e2005-08-24 21:25:16 -05006503
6504 if (ieee->set_security)
6505 ieee->set_security(ieee->dev, &sec);
6506 else
6507 ret = -EOPNOTSUPP;
6508
6509 return ret;
6510}
6511
Adrian Bunka73e22b2006-01-21 01:39:42 +01006512static void ipw_wpa_assoc_frame(struct ipw_priv *priv, char *wpa_ie,
6513 int wpa_ie_len)
James Ketrenosafbf30a2005-08-25 00:05:33 -05006514{
6515 /* make sure WPA is enabled */
6516 ipw_wpa_enable(priv, 1);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006517}
6518
6519static int ipw_set_rsn_capa(struct ipw_priv *priv,
6520 char *capabilities, int length)
6521{
James Ketrenosafbf30a2005-08-25 00:05:33 -05006522 IPW_DEBUG_HC("HOST_CMD_RSN_CAPABILITIES\n");
6523
Zhu Yi0a7bcf22006-01-24 16:37:28 +08006524 return ipw_send_cmd_pdu(priv, IPW_CMD_RSN_CAPABILITIES, length,
Zhu Yi2638bc32006-01-24 16:37:52 +08006525 capabilities);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006526}
6527
James Ketrenosafbf30a2005-08-25 00:05:33 -05006528/*
6529 * WE-18 support
6530 */
6531
6532/* SIOCSIWGENIE */
6533static int ipw_wx_set_genie(struct net_device *dev,
6534 struct iw_request_info *info,
6535 union iwreq_data *wrqu, char *extra)
6536{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006537 struct ipw_priv *priv = libipw_priv(dev);
6538 struct libipw_device *ieee = priv->ieee;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006539 u8 *buf;
6540 int err = 0;
6541
6542 if (wrqu->data.length > MAX_WPA_IE_LEN ||
6543 (wrqu->data.length && extra == NULL))
6544 return -EINVAL;
6545
James Ketrenosafbf30a2005-08-25 00:05:33 -05006546 if (wrqu->data.length) {
Julia Lawalld3e50332010-05-15 23:21:01 +02006547 buf = kmemdup(extra, wrqu->data.length, GFP_KERNEL);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006548 if (buf == NULL) {
6549 err = -ENOMEM;
6550 goto out;
6551 }
6552
James Ketrenosafbf30a2005-08-25 00:05:33 -05006553 kfree(ieee->wpa_ie);
6554 ieee->wpa_ie = buf;
6555 ieee->wpa_ie_len = wrqu->data.length;
6556 } else {
6557 kfree(ieee->wpa_ie);
6558 ieee->wpa_ie = NULL;
6559 ieee->wpa_ie_len = 0;
6560 }
6561
6562 ipw_wpa_assoc_frame(priv, ieee->wpa_ie, ieee->wpa_ie_len);
6563 out:
James Ketrenosafbf30a2005-08-25 00:05:33 -05006564 return err;
6565}
6566
6567/* SIOCGIWGENIE */
6568static int ipw_wx_get_genie(struct net_device *dev,
6569 struct iw_request_info *info,
6570 union iwreq_data *wrqu, char *extra)
6571{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006572 struct ipw_priv *priv = libipw_priv(dev);
6573 struct libipw_device *ieee = priv->ieee;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006574 int err = 0;
6575
James Ketrenosafbf30a2005-08-25 00:05:33 -05006576 if (ieee->wpa_ie_len == 0 || ieee->wpa_ie == NULL) {
6577 wrqu->data.length = 0;
6578 goto out;
6579 }
6580
6581 if (wrqu->data.length < ieee->wpa_ie_len) {
6582 err = -E2BIG;
6583 goto out;
6584 }
6585
6586 wrqu->data.length = ieee->wpa_ie_len;
6587 memcpy(extra, ieee->wpa_ie, ieee->wpa_ie_len);
6588
6589 out:
James Ketrenosafbf30a2005-08-25 00:05:33 -05006590 return err;
6591}
6592
Zhu Yi1fbfea52005-08-05 17:22:56 +08006593static int wext_cipher2level(int cipher)
6594{
6595 switch (cipher) {
6596 case IW_AUTH_CIPHER_NONE:
6597 return SEC_LEVEL_0;
6598 case IW_AUTH_CIPHER_WEP40:
6599 case IW_AUTH_CIPHER_WEP104:
6600 return SEC_LEVEL_1;
6601 case IW_AUTH_CIPHER_TKIP:
6602 return SEC_LEVEL_2;
6603 case IW_AUTH_CIPHER_CCMP:
6604 return SEC_LEVEL_3;
6605 default:
6606 return -1;
6607 }
6608}
6609
James Ketrenosafbf30a2005-08-25 00:05:33 -05006610/* SIOCSIWAUTH */
6611static int ipw_wx_set_auth(struct net_device *dev,
6612 struct iw_request_info *info,
6613 union iwreq_data *wrqu, char *extra)
6614{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006615 struct ipw_priv *priv = libipw_priv(dev);
6616 struct libipw_device *ieee = priv->ieee;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006617 struct iw_param *param = &wrqu->param;
John W. Linville274bfb82008-10-29 11:35:05 -04006618 struct lib80211_crypt_data *crypt;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006619 unsigned long flags;
6620 int ret = 0;
6621
6622 switch (param->flags & IW_AUTH_INDEX) {
6623 case IW_AUTH_WPA_VERSION:
Zhu Yi1fbfea52005-08-05 17:22:56 +08006624 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006625 case IW_AUTH_CIPHER_PAIRWISE:
Zhu Yi1fbfea52005-08-05 17:22:56 +08006626 ipw_set_hw_decrypt_unicast(priv,
6627 wext_cipher2level(param->value));
6628 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006629 case IW_AUTH_CIPHER_GROUP:
Zhu Yi1fbfea52005-08-05 17:22:56 +08006630 ipw_set_hw_decrypt_multicast(priv,
6631 wext_cipher2level(param->value));
6632 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006633 case IW_AUTH_KEY_MGMT:
6634 /*
6635 * ipw2200 does not use these parameters
6636 */
6637 break;
6638
6639 case IW_AUTH_TKIP_COUNTERMEASURES:
John W. Linville274bfb82008-10-29 11:35:05 -04006640 crypt = priv->ieee->crypt_info.crypt[priv->ieee->crypt_info.tx_keyidx];
James Ketrenos991d1cc2005-10-13 09:26:48 +00006641 if (!crypt || !crypt->ops->set_flags || !crypt->ops->get_flags)
James Ketrenosafbf30a2005-08-25 00:05:33 -05006642 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006643
6644 flags = crypt->ops->get_flags(crypt->priv);
6645
6646 if (param->value)
6647 flags |= IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
6648 else
6649 flags &= ~IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
6650
6651 crypt->ops->set_flags(flags, crypt->priv);
6652
6653 break;
6654
6655 case IW_AUTH_DROP_UNENCRYPTED:{
6656 /* HACK:
6657 *
6658 * wpa_supplicant calls set_wpa_enabled when the driver
6659 * is loaded and unloaded, regardless of if WPA is being
6660 * used. No other calls are made which can be used to
6661 * determine if encryption will be used or not prior to
6662 * association being expected. If encryption is not being
6663 * used, drop_unencrypted is set to false, else true -- we
6664 * can use this to determine if the CAP_PRIVACY_ON bit should
6665 * be set.
6666 */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006667 struct libipw_security sec = {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006668 .flags = SEC_ENABLED,
6669 .enabled = param->value,
6670 };
6671 priv->ieee->drop_unencrypted = param->value;
6672 /* We only change SEC_LEVEL for open mode. Others
6673 * are set by ipw_wpa_set_encryption.
6674 */
6675 if (!param->value) {
6676 sec.flags |= SEC_LEVEL;
6677 sec.level = SEC_LEVEL_0;
6678 } else {
6679 sec.flags |= SEC_LEVEL;
6680 sec.level = SEC_LEVEL_1;
6681 }
6682 if (priv->ieee->set_security)
6683 priv->ieee->set_security(priv->ieee->dev, &sec);
6684 break;
6685 }
6686
6687 case IW_AUTH_80211_AUTH_ALG:
6688 ret = ipw_wpa_set_auth_algs(priv, param->value);
6689 break;
6690
6691 case IW_AUTH_WPA_ENABLED:
6692 ret = ipw_wpa_enable(priv, param->value);
Zhu Yie3c5a642006-04-13 17:21:13 +08006693 ipw_disassociate(priv);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006694 break;
6695
6696 case IW_AUTH_RX_UNENCRYPTED_EAPOL:
6697 ieee->ieee802_1x = param->value;
6698 break;
6699
James Ketrenosafbf30a2005-08-25 00:05:33 -05006700 case IW_AUTH_PRIVACY_INVOKED:
6701 ieee->privacy_invoked = param->value;
6702 break;
6703
6704 default:
6705 return -EOPNOTSUPP;
6706 }
6707 return ret;
6708}
6709
6710/* SIOCGIWAUTH */
6711static int ipw_wx_get_auth(struct net_device *dev,
6712 struct iw_request_info *info,
6713 union iwreq_data *wrqu, char *extra)
6714{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006715 struct ipw_priv *priv = libipw_priv(dev);
6716 struct libipw_device *ieee = priv->ieee;
John W. Linville274bfb82008-10-29 11:35:05 -04006717 struct lib80211_crypt_data *crypt;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006718 struct iw_param *param = &wrqu->param;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006719
6720 switch (param->flags & IW_AUTH_INDEX) {
6721 case IW_AUTH_WPA_VERSION:
6722 case IW_AUTH_CIPHER_PAIRWISE:
6723 case IW_AUTH_CIPHER_GROUP:
6724 case IW_AUTH_KEY_MGMT:
6725 /*
6726 * wpa_supplicant will control these internally
6727 */
Wei Yongjun8df0f1e2012-12-05 03:08:11 -05006728 return -EOPNOTSUPP;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006729
6730 case IW_AUTH_TKIP_COUNTERMEASURES:
John W. Linville274bfb82008-10-29 11:35:05 -04006731 crypt = priv->ieee->crypt_info.crypt[priv->ieee->crypt_info.tx_keyidx];
James Ketrenos991d1cc2005-10-13 09:26:48 +00006732 if (!crypt || !crypt->ops->get_flags)
James Ketrenosafbf30a2005-08-25 00:05:33 -05006733 break;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006734
6735 param->value = (crypt->ops->get_flags(crypt->priv) &
6736 IEEE80211_CRYPTO_TKIP_COUNTERMEASURES) ? 1 : 0;
6737
6738 break;
6739
6740 case IW_AUTH_DROP_UNENCRYPTED:
6741 param->value = ieee->drop_unencrypted;
6742 break;
6743
6744 case IW_AUTH_80211_AUTH_ALG:
6745 param->value = ieee->sec.auth_mode;
6746 break;
6747
6748 case IW_AUTH_WPA_ENABLED:
6749 param->value = ieee->wpa_enabled;
6750 break;
6751
6752 case IW_AUTH_RX_UNENCRYPTED_EAPOL:
6753 param->value = ieee->ieee802_1x;
6754 break;
6755
6756 case IW_AUTH_ROAMING_CONTROL:
6757 case IW_AUTH_PRIVACY_INVOKED:
6758 param->value = ieee->privacy_invoked;
6759 break;
6760
6761 default:
6762 return -EOPNOTSUPP;
6763 }
6764 return 0;
6765}
6766
6767/* SIOCSIWENCODEEXT */
6768static int ipw_wx_set_encodeext(struct net_device *dev,
6769 struct iw_request_info *info,
6770 union iwreq_data *wrqu, char *extra)
6771{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006772 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006773 struct iw_encode_ext *ext = (struct iw_encode_ext *)extra;
6774
6775 if (hwcrypto) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006776 if (ext->alg == IW_ENCODE_ALG_TKIP) {
Hong Liu567deaf2005-08-31 18:07:22 +08006777 /* IPW HW can't build TKIP MIC,
6778 host decryption still needed */
6779 if (ext->ext_flags & IW_ENCODE_EXT_GROUP_KEY)
6780 priv->ieee->host_mc_decrypt = 1;
6781 else {
6782 priv->ieee->host_encrypt = 0;
6783 priv->ieee->host_encrypt_msdu = 1;
6784 priv->ieee->host_decrypt = 1;
6785 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05006786 } else {
6787 priv->ieee->host_encrypt = 0;
6788 priv->ieee->host_encrypt_msdu = 0;
6789 priv->ieee->host_decrypt = 0;
Hong Liu567deaf2005-08-31 18:07:22 +08006790 priv->ieee->host_mc_decrypt = 0;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006791 }
6792 }
6793
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006794 return libipw_wx_set_encodeext(priv->ieee, info, wrqu, extra);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006795}
6796
6797/* SIOCGIWENCODEEXT */
6798static int ipw_wx_get_encodeext(struct net_device *dev,
6799 struct iw_request_info *info,
6800 union iwreq_data *wrqu, char *extra)
6801{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006802 struct ipw_priv *priv = libipw_priv(dev);
6803 return libipw_wx_get_encodeext(priv->ieee, info, wrqu, extra);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006804}
6805
6806/* SIOCSIWMLME */
6807static int ipw_wx_set_mlme(struct net_device *dev,
6808 struct iw_request_info *info,
6809 union iwreq_data *wrqu, char *extra)
6810{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006811 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006812 struct iw_mlme *mlme = (struct iw_mlme *)extra;
Al Viroe62e1ee2007-12-27 01:36:46 -05006813 __le16 reason;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006814
6815 reason = cpu_to_le16(mlme->reason_code);
6816
6817 switch (mlme->cmd) {
6818 case IW_MLME_DEAUTH:
Pavel Machek67fd6b42006-07-11 15:34:05 +02006819 /* silently ignore */
James Ketrenosafbf30a2005-08-25 00:05:33 -05006820 break;
6821
6822 case IW_MLME_DISASSOC:
6823 ipw_disassociate(priv);
6824 break;
6825
6826 default:
6827 return -EOPNOTSUPP;
6828 }
6829 return 0;
6830}
James Ketrenosea2b26e2005-08-24 21:25:16 -05006831
Zhu Yie43e3c12006-04-13 17:20:45 +08006832#ifdef CONFIG_IPW2200_QOS
James Ketrenosb095c382005-08-24 22:04:42 -05006833
6834/* QoS */
6835/*
6836* get the modulation type of the current network or
6837* the card current mode
6838*/
Adrian Bunk53d0bcf2006-03-04 13:14:31 +01006839static u8 ipw_qos_current_mode(struct ipw_priv * priv)
James Ketrenosb095c382005-08-24 22:04:42 -05006840{
6841 u8 mode = 0;
6842
6843 if (priv->status & STATUS_ASSOCIATED) {
6844 unsigned long flags;
6845
6846 spin_lock_irqsave(&priv->ieee->lock, flags);
6847 mode = priv->assoc_network->mode;
6848 spin_unlock_irqrestore(&priv->ieee->lock, flags);
6849 } else {
6850 mode = priv->ieee->mode;
6851 }
Frans Pop9fd1ea42010-03-24 19:46:31 +01006852 IPW_DEBUG_QOS("QoS network/card mode %d\n", mode);
James Ketrenosb095c382005-08-24 22:04:42 -05006853 return mode;
6854}
6855
6856/*
6857* Handle management frame beacon and probe response
6858*/
James Ketrenos3b9990c2005-08-19 13:18:55 -05006859static int ipw_qos_handle_probe_response(struct ipw_priv *priv,
6860 int active_network,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006861 struct libipw_network *network)
James Ketrenosb095c382005-08-24 22:04:42 -05006862{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006863 u32 size = sizeof(struct libipw_qos_parameters);
James Ketrenosb095c382005-08-24 22:04:42 -05006864
James Ketrenosafbf30a2005-08-25 00:05:33 -05006865 if (network->capability & WLAN_CAPABILITY_IBSS)
James Ketrenosb095c382005-08-24 22:04:42 -05006866 network->qos_data.active = network->qos_data.supported;
6867
6868 if (network->flags & NETWORK_HAS_QOS_MASK) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006869 if (active_network &&
6870 (network->flags & NETWORK_HAS_QOS_PARAMETERS))
James Ketrenosb095c382005-08-24 22:04:42 -05006871 network->qos_data.active = network->qos_data.supported;
6872
6873 if ((network->qos_data.active == 1) && (active_network == 1) &&
6874 (network->flags & NETWORK_HAS_QOS_PARAMETERS) &&
6875 (network->qos_data.old_param_count !=
6876 network->qos_data.param_count)) {
6877 network->qos_data.old_param_count =
6878 network->qos_data.param_count;
6879 schedule_work(&priv->qos_activate);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006880 IPW_DEBUG_QOS("QoS parameters change call "
6881 "qos_activate\n");
James Ketrenosb095c382005-08-24 22:04:42 -05006882 }
6883 } else {
James Ketrenosafbf30a2005-08-25 00:05:33 -05006884 if ((priv->ieee->mode == IEEE_B) || (network->mode == IEEE_B))
6885 memcpy(&network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05006886 &def_parameters_CCK, size);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006887 else
6888 memcpy(&network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05006889 &def_parameters_OFDM, size);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006890
James Ketrenosb095c382005-08-24 22:04:42 -05006891 if ((network->qos_data.active == 1) && (active_network == 1)) {
Frans Pop9fd1ea42010-03-24 19:46:31 +01006892 IPW_DEBUG_QOS("QoS was disabled call qos_activate\n");
James Ketrenosb095c382005-08-24 22:04:42 -05006893 schedule_work(&priv->qos_activate);
6894 }
6895
6896 network->qos_data.active = 0;
6897 network->qos_data.supported = 0;
6898 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05006899 if ((priv->status & STATUS_ASSOCIATED) &&
6900 (priv->ieee->iw_mode == IW_MODE_ADHOC) && (active_network == 0)) {
dingtianhong36325f32013-12-26 19:41:23 +08006901 if (!ether_addr_equal(network->bssid, priv->bssid))
John W. Linvillec5d3dce2008-09-30 17:17:26 -04006902 if (network->capability & WLAN_CAPABILITY_IBSS)
James Ketrenosb095c382005-08-24 22:04:42 -05006903 if ((network->ssid_len ==
James Ketrenosafbf30a2005-08-25 00:05:33 -05006904 priv->assoc_network->ssid_len) &&
6905 !memcmp(network->ssid,
6906 priv->assoc_network->ssid,
6907 network->ssid_len)) {
Tejun Heobcb6d912011-01-26 12:12:50 +01006908 schedule_work(&priv->merge_networks);
James Ketrenosb095c382005-08-24 22:04:42 -05006909 }
James Ketrenosb095c382005-08-24 22:04:42 -05006910 }
6911
6912 return 0;
6913}
6914
6915/*
6916* This function set up the firmware to support QoS. It sends
6917* IPW_CMD_QOS_PARAMETERS and IPW_CMD_WME_INFO
6918*/
6919static int ipw_qos_activate(struct ipw_priv *priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006920 struct libipw_qos_data *qos_network_data)
James Ketrenosb095c382005-08-24 22:04:42 -05006921{
6922 int err;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006923 struct libipw_qos_parameters qos_parameters[QOS_QOS_SETS];
6924 struct libipw_qos_parameters *active_one = NULL;
6925 u32 size = sizeof(struct libipw_qos_parameters);
James Ketrenosb095c382005-08-24 22:04:42 -05006926 u32 burst_duration;
6927 int i;
6928 u8 type;
6929
6930 type = ipw_qos_current_mode(priv);
6931
6932 active_one = &(qos_parameters[QOS_PARAM_SET_DEF_CCK]);
6933 memcpy(active_one, priv->qos_data.def_qos_parm_CCK, size);
6934 active_one = &(qos_parameters[QOS_PARAM_SET_DEF_OFDM]);
6935 memcpy(active_one, priv->qos_data.def_qos_parm_OFDM, size);
6936
6937 if (qos_network_data == NULL) {
6938 if (type == IEEE_B) {
6939 IPW_DEBUG_QOS("QoS activate network mode %d\n", type);
6940 active_one = &def_parameters_CCK;
6941 } else
6942 active_one = &def_parameters_OFDM;
6943
James Ketrenosafbf30a2005-08-25 00:05:33 -05006944 memcpy(&qos_parameters[QOS_PARAM_SET_ACTIVE], active_one, size);
James Ketrenosb095c382005-08-24 22:04:42 -05006945 burst_duration = ipw_qos_get_burst_duration(priv);
6946 for (i = 0; i < QOS_QUEUE_NUM; i++)
James Ketrenosafbf30a2005-08-25 00:05:33 -05006947 qos_parameters[QOS_PARAM_SET_ACTIVE].tx_op_limit[i] =
Al Viro8fffc152007-12-27 01:25:40 -05006948 cpu_to_le16(burst_duration);
James Ketrenosafbf30a2005-08-25 00:05:33 -05006949 } else if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
James Ketrenosb095c382005-08-24 22:04:42 -05006950 if (type == IEEE_B) {
Masanari Iidafd9071e2012-04-13 04:33:20 +00006951 IPW_DEBUG_QOS("QoS activate IBSS network mode %d\n",
James Ketrenosb095c382005-08-24 22:04:42 -05006952 type);
6953 if (priv->qos_data.qos_enable == 0)
6954 active_one = &def_parameters_CCK;
6955 else
6956 active_one = priv->qos_data.def_qos_parm_CCK;
6957 } else {
6958 if (priv->qos_data.qos_enable == 0)
6959 active_one = &def_parameters_OFDM;
6960 else
6961 active_one = priv->qos_data.def_qos_parm_OFDM;
6962 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05006963 memcpy(&qos_parameters[QOS_PARAM_SET_ACTIVE], active_one, size);
James Ketrenosb095c382005-08-24 22:04:42 -05006964 } else {
6965 unsigned long flags;
6966 int active;
6967
6968 spin_lock_irqsave(&priv->ieee->lock, flags);
6969 active_one = &(qos_network_data->parameters);
6970 qos_network_data->old_param_count =
6971 qos_network_data->param_count;
James Ketrenosafbf30a2005-08-25 00:05:33 -05006972 memcpy(&qos_parameters[QOS_PARAM_SET_ACTIVE], active_one, size);
James Ketrenosb095c382005-08-24 22:04:42 -05006973 active = qos_network_data->supported;
6974 spin_unlock_irqrestore(&priv->ieee->lock, flags);
6975
6976 if (active == 0) {
6977 burst_duration = ipw_qos_get_burst_duration(priv);
6978 for (i = 0; i < QOS_QUEUE_NUM; i++)
6979 qos_parameters[QOS_PARAM_SET_ACTIVE].
Al Viro8fffc152007-12-27 01:25:40 -05006980 tx_op_limit[i] = cpu_to_le16(burst_duration);
James Ketrenosb095c382005-08-24 22:04:42 -05006981 }
6982 }
6983
6984 IPW_DEBUG_QOS("QoS sending IPW_CMD_QOS_PARAMETERS\n");
Joe Perches2c208892012-06-04 12:44:17 +00006985 err = ipw_send_qos_params_command(priv, &qos_parameters[0]);
James Ketrenosb095c382005-08-24 22:04:42 -05006986 if (err)
6987 IPW_DEBUG_QOS("QoS IPW_CMD_QOS_PARAMETERS failed\n");
6988
6989 return err;
6990}
6991
6992/*
6993* send IPW_CMD_WME_INFO to the firmware
6994*/
6995static int ipw_qos_set_info_element(struct ipw_priv *priv)
6996{
6997 int ret = 0;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006998 struct libipw_qos_information_element qos_info;
James Ketrenosb095c382005-08-24 22:04:42 -05006999
7000 if (priv == NULL)
7001 return -1;
7002
7003 qos_info.elementID = QOS_ELEMENT_ID;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007004 qos_info.length = sizeof(struct libipw_qos_information_element) - 2;
James Ketrenosb095c382005-08-24 22:04:42 -05007005
7006 qos_info.version = QOS_VERSION_1;
7007 qos_info.ac_info = 0;
7008
7009 memcpy(qos_info.qui, qos_oui, QOS_OUI_LEN);
7010 qos_info.qui_type = QOS_OUI_TYPE;
7011 qos_info.qui_subtype = QOS_OUI_INFO_SUB_TYPE;
7012
7013 ret = ipw_send_qos_info_command(priv, &qos_info);
7014 if (ret != 0) {
7015 IPW_DEBUG_QOS("QoS error calling ipw_send_qos_info_command\n");
7016 }
7017 return ret;
7018}
7019
7020/*
7021* Set the QoS parameter with the association request structure
7022*/
7023static int ipw_qos_association(struct ipw_priv *priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007024 struct libipw_network *network)
James Ketrenosb095c382005-08-24 22:04:42 -05007025{
7026 int err = 0;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007027 struct libipw_qos_data *qos_data = NULL;
7028 struct libipw_qos_data ibss_data = {
James Ketrenosb095c382005-08-24 22:04:42 -05007029 .supported = 1,
7030 .active = 1,
7031 };
7032
7033 switch (priv->ieee->iw_mode) {
7034 case IW_MODE_ADHOC:
Eric Sesterhenn5d9428d2006-04-02 13:52:48 +02007035 BUG_ON(!(network->capability & WLAN_CAPABILITY_IBSS));
James Ketrenosb095c382005-08-24 22:04:42 -05007036
7037 qos_data = &ibss_data;
7038 break;
7039
7040 case IW_MODE_INFRA:
7041 qos_data = &network->qos_data;
7042 break;
7043
7044 default:
7045 BUG();
7046 break;
7047 }
7048
7049 err = ipw_qos_activate(priv, qos_data);
7050 if (err) {
7051 priv->assoc_request.policy_support &= ~HC_QOS_SUPPORT_ASSOC;
7052 return err;
7053 }
7054
7055 if (priv->qos_data.qos_enable && qos_data->supported) {
7056 IPW_DEBUG_QOS("QoS will be enabled for this association\n");
7057 priv->assoc_request.policy_support |= HC_QOS_SUPPORT_ASSOC;
7058 return ipw_qos_set_info_element(priv);
7059 }
7060
7061 return 0;
7062}
7063
7064/*
Matt LaPlante0779bf22006-11-30 05:24:39 +01007065* handling the beaconing responses. if we get different QoS setting
7066* off the network from the associated setting, adjust the QoS
James Ketrenosb095c382005-08-24 22:04:42 -05007067* setting
7068*/
7069static int ipw_qos_association_resp(struct ipw_priv *priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007070 struct libipw_network *network)
James Ketrenosb095c382005-08-24 22:04:42 -05007071{
7072 int ret = 0;
7073 unsigned long flags;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007074 u32 size = sizeof(struct libipw_qos_parameters);
James Ketrenosb095c382005-08-24 22:04:42 -05007075 int set_qos_param = 0;
7076
James Ketrenosafbf30a2005-08-25 00:05:33 -05007077 if ((priv == NULL) || (network == NULL) ||
7078 (priv->assoc_network == NULL))
James Ketrenosb095c382005-08-24 22:04:42 -05007079 return ret;
7080
7081 if (!(priv->status & STATUS_ASSOCIATED))
7082 return ret;
7083
James Ketrenosafbf30a2005-08-25 00:05:33 -05007084 if ((priv->ieee->iw_mode != IW_MODE_INFRA))
James Ketrenosb095c382005-08-24 22:04:42 -05007085 return ret;
James Ketrenosb095c382005-08-24 22:04:42 -05007086
7087 spin_lock_irqsave(&priv->ieee->lock, flags);
7088 if (network->flags & NETWORK_HAS_QOS_PARAMETERS) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007089 memcpy(&priv->assoc_network->qos_data, &network->qos_data,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007090 sizeof(struct libipw_qos_data));
James Ketrenosb095c382005-08-24 22:04:42 -05007091 priv->assoc_network->qos_data.active = 1;
7092 if ((network->qos_data.old_param_count !=
7093 network->qos_data.param_count)) {
7094 set_qos_param = 1;
7095 network->qos_data.old_param_count =
7096 network->qos_data.param_count;
7097 }
7098
7099 } else {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007100 if ((network->mode == IEEE_B) || (priv->ieee->mode == IEEE_B))
7101 memcpy(&priv->assoc_network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05007102 &def_parameters_CCK, size);
James Ketrenosafbf30a2005-08-25 00:05:33 -05007103 else
7104 memcpy(&priv->assoc_network->qos_data.parameters,
James Ketrenosb095c382005-08-24 22:04:42 -05007105 &def_parameters_OFDM, size);
James Ketrenosb095c382005-08-24 22:04:42 -05007106 priv->assoc_network->qos_data.active = 0;
7107 priv->assoc_network->qos_data.supported = 0;
7108 set_qos_param = 1;
7109 }
7110
7111 spin_unlock_irqrestore(&priv->ieee->lock, flags);
7112
7113 if (set_qos_param == 1)
7114 schedule_work(&priv->qos_activate);
7115
7116 return ret;
7117}
7118
7119static u32 ipw_qos_get_burst_duration(struct ipw_priv *priv)
7120{
7121 u32 ret = 0;
7122
7123 if ((priv == NULL))
7124 return 0;
7125
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007126 if (!(priv->ieee->modulation & LIBIPW_OFDM_MODULATION))
James Ketrenosb095c382005-08-24 22:04:42 -05007127 ret = priv->qos_data.burst_duration_CCK;
James Ketrenosafbf30a2005-08-25 00:05:33 -05007128 else
James Ketrenosb095c382005-08-24 22:04:42 -05007129 ret = priv->qos_data.burst_duration_OFDM;
James Ketrenosafbf30a2005-08-25 00:05:33 -05007130
James Ketrenosb095c382005-08-24 22:04:42 -05007131 return ret;
7132}
7133
7134/*
7135* Initialize the setting of QoS global
7136*/
7137static void ipw_qos_init(struct ipw_priv *priv, int enable,
7138 int burst_enable, u32 burst_duration_CCK,
7139 u32 burst_duration_OFDM)
7140{
7141 priv->qos_data.qos_enable = enable;
7142
7143 if (priv->qos_data.qos_enable) {
7144 priv->qos_data.def_qos_parm_CCK = &def_qos_parameters_CCK;
7145 priv->qos_data.def_qos_parm_OFDM = &def_qos_parameters_OFDM;
7146 IPW_DEBUG_QOS("QoS is enabled\n");
7147 } else {
7148 priv->qos_data.def_qos_parm_CCK = &def_parameters_CCK;
7149 priv->qos_data.def_qos_parm_OFDM = &def_parameters_OFDM;
7150 IPW_DEBUG_QOS("QoS is not enabled\n");
7151 }
7152
7153 priv->qos_data.burst_enable = burst_enable;
7154
7155 if (burst_enable) {
7156 priv->qos_data.burst_duration_CCK = burst_duration_CCK;
7157 priv->qos_data.burst_duration_OFDM = burst_duration_OFDM;
7158 } else {
7159 priv->qos_data.burst_duration_CCK = 0;
7160 priv->qos_data.burst_duration_OFDM = 0;
7161 }
7162}
7163
7164/*
7165* map the packet priority to the right TX Queue
7166*/
7167static int ipw_get_tx_queue_number(struct ipw_priv *priv, u16 priority)
7168{
7169 if (priority > 7 || !priv->qos_data.qos_enable)
7170 priority = 0;
7171
7172 return from_priority_to_tx_queue[priority] - 1;
7173}
7174
Zhu Yia5cf4fe2006-04-13 17:19:11 +08007175static int ipw_is_qos_active(struct net_device *dev,
7176 struct sk_buff *skb)
James Ketrenosb095c382005-08-24 22:04:42 -05007177{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007178 struct ipw_priv *priv = libipw_priv(dev);
7179 struct libipw_qos_data *qos_data = NULL;
James Ketrenosb095c382005-08-24 22:04:42 -05007180 int active, supported;
Zhu Yia5cf4fe2006-04-13 17:19:11 +08007181 u8 *daddr = skb->data + ETH_ALEN;
7182 int unicast = !is_multicast_ether_addr(daddr);
James Ketrenosb095c382005-08-24 22:04:42 -05007183
7184 if (!(priv->status & STATUS_ASSOCIATED))
7185 return 0;
7186
7187 qos_data = &priv->assoc_network->qos_data;
7188
James Ketrenosb095c382005-08-24 22:04:42 -05007189 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
7190 if (unicast == 0)
7191 qos_data->active = 0;
7192 else
7193 qos_data->active = qos_data->supported;
7194 }
James Ketrenosb095c382005-08-24 22:04:42 -05007195 active = qos_data->active;
7196 supported = qos_data->supported;
James Ketrenosafbf30a2005-08-25 00:05:33 -05007197 IPW_DEBUG_QOS("QoS %d network is QoS active %d supported %d "
7198 "unicast %d\n",
7199 priv->qos_data.qos_enable, active, supported, unicast);
Zhu Yia5cf4fe2006-04-13 17:19:11 +08007200 if (active && priv->qos_data.qos_enable)
7201 return 1;
James Ketrenosb095c382005-08-24 22:04:42 -05007202
Zhu Yia5cf4fe2006-04-13 17:19:11 +08007203 return 0;
7204
7205}
7206/*
7207* add QoS parameter to the TX command
7208*/
7209static int ipw_qos_set_tx_queue_command(struct ipw_priv *priv,
7210 u16 priority,
7211 struct tfd_data *tfd)
7212{
7213 int tx_queue_id = 0;
7214
7215
7216 tx_queue_id = from_priority_to_tx_queue[priority] - 1;
7217 tfd->tx_flags_ext |= DCT_FLAG_EXT_QOS_ENABLED;
7218
7219 if (priv->qos_data.qos_no_ack_mask & (1UL << tx_queue_id)) {
7220 tfd->tx_flags &= ~DCT_FLAG_ACK_REQD;
Zhu Yi851ca262006-08-21 11:37:58 +08007221 tfd->tfd.tfd_26.mchdr.qos_ctrl |= cpu_to_le16(CTRL_QOS_NO_ACK);
James Ketrenosb095c382005-08-24 22:04:42 -05007222 }
Zhu Yia5cf4fe2006-04-13 17:19:11 +08007223 return 0;
James Ketrenosb095c382005-08-24 22:04:42 -05007224}
7225
7226/*
7227* background support to run QoS activate functionality
7228*/
David Howellsc4028952006-11-22 14:57:56 +00007229static void ipw_bg_qos_activate(struct work_struct *work)
James Ketrenosb095c382005-08-24 22:04:42 -05007230{
David Howellsc4028952006-11-22 14:57:56 +00007231 struct ipw_priv *priv =
7232 container_of(work, struct ipw_priv, qos_activate);
James Ketrenosb095c382005-08-24 22:04:42 -05007233
Zhu Yi46441512006-01-24 16:37:59 +08007234 mutex_lock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05007235
7236 if (priv->status & STATUS_ASSOCIATED)
7237 ipw_qos_activate(priv, &(priv->assoc_network->qos_data));
7238
Zhu Yi46441512006-01-24 16:37:59 +08007239 mutex_unlock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05007240}
7241
James Ketrenos3b9990c2005-08-19 13:18:55 -05007242static int ipw_handle_probe_response(struct net_device *dev,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007243 struct libipw_probe_response *resp,
7244 struct libipw_network *network)
James Ketrenosb095c382005-08-24 22:04:42 -05007245{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007246 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos3b9990c2005-08-19 13:18:55 -05007247 int active_network = ((priv->status & STATUS_ASSOCIATED) &&
7248 (network == priv->assoc_network));
James Ketrenosb095c382005-08-24 22:04:42 -05007249
James Ketrenos3b9990c2005-08-19 13:18:55 -05007250 ipw_qos_handle_probe_response(priv, active_network, network);
James Ketrenosb095c382005-08-24 22:04:42 -05007251
James Ketrenos3b9990c2005-08-19 13:18:55 -05007252 return 0;
7253}
James Ketrenosb095c382005-08-24 22:04:42 -05007254
James Ketrenos3b9990c2005-08-19 13:18:55 -05007255static int ipw_handle_beacon(struct net_device *dev,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007256 struct libipw_beacon *resp,
7257 struct libipw_network *network)
James Ketrenos3b9990c2005-08-19 13:18:55 -05007258{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007259 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos3b9990c2005-08-19 13:18:55 -05007260 int active_network = ((priv->status & STATUS_ASSOCIATED) &&
7261 (network == priv->assoc_network));
7262
7263 ipw_qos_handle_probe_response(priv, active_network, network);
7264
7265 return 0;
7266}
7267
7268static int ipw_handle_assoc_response(struct net_device *dev,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007269 struct libipw_assoc_response *resp,
7270 struct libipw_network *network)
James Ketrenos3b9990c2005-08-19 13:18:55 -05007271{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007272 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos3b9990c2005-08-19 13:18:55 -05007273 ipw_qos_association_resp(priv, network);
James Ketrenosb095c382005-08-24 22:04:42 -05007274 return 0;
7275}
7276
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007277static int ipw_send_qos_params_command(struct ipw_priv *priv, struct libipw_qos_parameters
James Ketrenosb095c382005-08-24 22:04:42 -05007278 *qos_param)
7279{
Zhu Yi4e226992006-01-24 16:37:36 +08007280 return ipw_send_cmd_pdu(priv, IPW_CMD_QOS_PARAMETERS,
7281 sizeof(*qos_param) * 3, qos_param);
James Ketrenosb095c382005-08-24 22:04:42 -05007282}
7283
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007284static int ipw_send_qos_info_command(struct ipw_priv *priv, struct libipw_qos_information_element
James Ketrenosb095c382005-08-24 22:04:42 -05007285 *qos_param)
7286{
Zhu Yi4e226992006-01-24 16:37:36 +08007287 return ipw_send_cmd_pdu(priv, IPW_CMD_WME_INFO, sizeof(*qos_param),
7288 qos_param);
James Ketrenosb095c382005-08-24 22:04:42 -05007289}
7290
Zhu Yie43e3c12006-04-13 17:20:45 +08007291#endif /* CONFIG_IPW2200_QOS */
James Ketrenosb095c382005-08-24 22:04:42 -05007292
James Ketrenos43f66a62005-03-25 12:31:53 -06007293static int ipw_associate_network(struct ipw_priv *priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007294 struct libipw_network *network,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007295 struct ipw_supported_rates *rates, int roaming)
James Ketrenos43f66a62005-03-25 12:31:53 -06007296{
7297 int err;
7298
7299 if (priv->config & CFG_FIXED_RATE)
James Ketrenosb095c382005-08-24 22:04:42 -05007300 ipw_set_fixed_rate(priv, network->mode);
James Ketrenos43f66a62005-03-25 12:31:53 -06007301
7302 if (!(priv->config & CFG_STATIC_ESSID)) {
Jeff Garzikbf794512005-07-31 13:07:26 -04007303 priv->essid_len = min(network->ssid_len,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007304 (u8) IW_ESSID_MAX_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06007305 memcpy(priv->essid, network->ssid, priv->essid_len);
7306 }
7307
7308 network->last_associate = jiffies;
7309
7310 memset(&priv->assoc_request, 0, sizeof(priv->assoc_request));
7311 priv->assoc_request.channel = network->channel;
Zhu Yi3e234b42006-01-24 16:36:52 +08007312 priv->assoc_request.auth_key = 0;
7313
James Ketrenos43f66a62005-03-25 12:31:53 -06007314 if ((priv->capability & CAP_PRIVACY_ON) &&
Zhu Yi3e234b42006-01-24 16:36:52 +08007315 (priv->ieee->sec.auth_mode == WLAN_AUTH_SHARED_KEY)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06007316 priv->assoc_request.auth_type = AUTH_SHARED_KEY;
James Ketrenosb095c382005-08-24 22:04:42 -05007317 priv->assoc_request.auth_key = priv->ieee->sec.active_key;
7318
Zhu Yi1ba61e02006-02-15 13:00:55 +08007319 if (priv->ieee->sec.level == SEC_LEVEL_1)
James Ketrenosb095c382005-08-24 22:04:42 -05007320 ipw_send_wep_keys(priv, DCW_WEP_KEY_SEC_TYPE_WEP);
Zhu Yi3e234b42006-01-24 16:36:52 +08007321
7322 } else if ((priv->capability & CAP_PRIVACY_ON) &&
7323 (priv->ieee->sec.auth_mode == WLAN_AUTH_LEAP))
7324 priv->assoc_request.auth_type = AUTH_LEAP;
7325 else
James Ketrenos43f66a62005-03-25 12:31:53 -06007326 priv->assoc_request.auth_type = AUTH_OPEN;
James Ketrenos43f66a62005-03-25 12:31:53 -06007327
James Ketrenosa613bff2005-08-24 21:43:11 -05007328 if (priv->ieee->wpa_ie_len) {
Al Viro5b5e8072007-12-27 01:54:06 -05007329 priv->assoc_request.policy_support = cpu_to_le16(0x02); /* RSN active */
James Ketrenosea2b26e2005-08-24 21:25:16 -05007330 ipw_set_rsn_capa(priv, priv->ieee->wpa_ie,
7331 priv->ieee->wpa_ie_len);
7332 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007333
Jeff Garzikbf794512005-07-31 13:07:26 -04007334 /*
7335 * It is valid for our ieee device to support multiple modes, but
7336 * when it comes to associating to a given network we have to choose
James Ketrenos43f66a62005-03-25 12:31:53 -06007337 * just one mode.
7338 */
7339 if (network->mode & priv->ieee->mode & IEEE_A)
7340 priv->assoc_request.ieee_mode = IPW_A_MODE;
7341 else if (network->mode & priv->ieee->mode & IEEE_G)
7342 priv->assoc_request.ieee_mode = IPW_G_MODE;
7343 else if (network->mode & priv->ieee->mode & IEEE_B)
7344 priv->assoc_request.ieee_mode = IPW_B_MODE;
7345
Al Viro5b5e8072007-12-27 01:54:06 -05007346 priv->assoc_request.capability = cpu_to_le16(network->capability);
James Ketrenosea2b26e2005-08-24 21:25:16 -05007347 if ((network->capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
7348 && !(priv->config & CFG_PREAMBLE_LONG)) {
7349 priv->assoc_request.preamble_length = DCT_FLAG_SHORT_PREAMBLE;
7350 } else {
7351 priv->assoc_request.preamble_length = DCT_FLAG_LONG_PREAMBLE;
7352
7353 /* Clear the short preamble if we won't be supporting it */
7354 priv->assoc_request.capability &=
Al Viro5b5e8072007-12-27 01:54:06 -05007355 ~cpu_to_le16(WLAN_CAPABILITY_SHORT_PREAMBLE);
James Ketrenosea2b26e2005-08-24 21:25:16 -05007356 }
7357
James Ketrenosafbf30a2005-08-25 00:05:33 -05007358 /* Clear capability bits that aren't used in Ad Hoc */
7359 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
7360 priv->assoc_request.capability &=
Al Viro5b5e8072007-12-27 01:54:06 -05007361 ~cpu_to_le16(WLAN_CAPABILITY_SHORT_SLOT_TIME);
James Ketrenosafbf30a2005-08-25 00:05:33 -05007362
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07007363 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 -06007364 roaming ? "Rea" : "A",
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07007365 priv->essid_len, priv->essid,
Jeff Garzikbf794512005-07-31 13:07:26 -04007366 network->channel,
7367 ipw_modes[priv->assoc_request.ieee_mode],
7368 rates->num_rates,
James Ketrenosea2b26e2005-08-24 21:25:16 -05007369 (priv->assoc_request.preamble_length ==
7370 DCT_FLAG_LONG_PREAMBLE) ? "long" : "short",
7371 network->capability &
7372 WLAN_CAPABILITY_SHORT_PREAMBLE ? "short" : "long",
James Ketrenos43f66a62005-03-25 12:31:53 -06007373 priv->capability & CAP_PRIVACY_ON ? "on " : "off",
Jeff Garzikbf794512005-07-31 13:07:26 -04007374 priv->capability & CAP_PRIVACY_ON ?
7375 (priv->capability & CAP_SHARED_KEY ? "(shared)" :
James Ketrenos43f66a62005-03-25 12:31:53 -06007376 "(open)") : "",
7377 priv->capability & CAP_PRIVACY_ON ? " key=" : "",
Jeff Garzikbf794512005-07-31 13:07:26 -04007378 priv->capability & CAP_PRIVACY_ON ?
James Ketrenosb095c382005-08-24 22:04:42 -05007379 '1' + priv->ieee->sec.active_key : '.',
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007380 priv->capability & CAP_PRIVACY_ON ? '.' : ' ');
James Ketrenos43f66a62005-03-25 12:31:53 -06007381
Al Viro5b5e8072007-12-27 01:54:06 -05007382 priv->assoc_request.beacon_interval = cpu_to_le16(network->beacon_interval);
James Ketrenos43f66a62005-03-25 12:31:53 -06007383 if ((priv->ieee->iw_mode == IW_MODE_ADHOC) &&
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007384 (network->time_stamp[0] == 0) && (network->time_stamp[1] == 0)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06007385 priv->assoc_request.assoc_type = HC_IBSS_START;
7386 priv->assoc_request.assoc_tsf_msw = 0;
7387 priv->assoc_request.assoc_tsf_lsw = 0;
7388 } else {
7389 if (unlikely(roaming))
7390 priv->assoc_request.assoc_type = HC_REASSOCIATE;
7391 else
7392 priv->assoc_request.assoc_type = HC_ASSOCIATE;
Al Viro5b5e8072007-12-27 01:54:06 -05007393 priv->assoc_request.assoc_tsf_msw = cpu_to_le32(network->time_stamp[1]);
7394 priv->assoc_request.assoc_tsf_lsw = cpu_to_le32(network->time_stamp[0]);
James Ketrenos43f66a62005-03-25 12:31:53 -06007395 }
7396
James Ketrenosafbf30a2005-08-25 00:05:33 -05007397 memcpy(priv->assoc_request.bssid, network->bssid, ETH_ALEN);
James Ketrenos43f66a62005-03-25 12:31:53 -06007398
7399 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
Joe Perches93803b32015-03-02 19:54:49 -08007400 eth_broadcast_addr(priv->assoc_request.dest);
Al Viro5b5e8072007-12-27 01:54:06 -05007401 priv->assoc_request.atim_window = cpu_to_le16(network->atim_window);
James Ketrenos43f66a62005-03-25 12:31:53 -06007402 } else {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007403 memcpy(priv->assoc_request.dest, network->bssid, ETH_ALEN);
James Ketrenos43f66a62005-03-25 12:31:53 -06007404 priv->assoc_request.atim_window = 0;
7405 }
7406
Al Viro5b5e8072007-12-27 01:54:06 -05007407 priv->assoc_request.listen_interval = cpu_to_le16(network->listen_interval);
Jeff Garzikbf794512005-07-31 13:07:26 -04007408
James Ketrenos43f66a62005-03-25 12:31:53 -06007409 err = ipw_send_ssid(priv, priv->essid, priv->essid_len);
7410 if (err) {
7411 IPW_DEBUG_HC("Attempt to send SSID command failed.\n");
7412 return err;
7413 }
7414
7415 rates->ieee_mode = priv->assoc_request.ieee_mode;
7416 rates->purpose = IPW_RATE_CONNECT;
7417 ipw_send_supported_rates(priv, rates);
Jeff Garzikbf794512005-07-31 13:07:26 -04007418
James Ketrenos43f66a62005-03-25 12:31:53 -06007419 if (priv->assoc_request.ieee_mode == IPW_G_MODE)
7420 priv->sys_config.dot11g_auto_detection = 1;
7421 else
7422 priv->sys_config.dot11g_auto_detection = 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05007423
7424 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
7425 priv->sys_config.answer_broadcast_ssid_probe = 1;
7426 else
7427 priv->sys_config.answer_broadcast_ssid_probe = 0;
7428
Zhu Yid685b8c2006-04-13 17:20:27 +08007429 err = ipw_send_system_config(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06007430 if (err) {
7431 IPW_DEBUG_HC("Attempt to send sys config command failed.\n");
7432 return err;
7433 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007434
James Ketrenos43f66a62005-03-25 12:31:53 -06007435 IPW_DEBUG_ASSOC("Association sensitivity: %d\n", network->stats.rssi);
James Ketrenosea2b26e2005-08-24 21:25:16 -05007436 err = ipw_set_sensitivity(priv, network->stats.rssi + IPW_RSSI_TO_DBM);
James Ketrenos43f66a62005-03-25 12:31:53 -06007437 if (err) {
7438 IPW_DEBUG_HC("Attempt to send associate command failed.\n");
7439 return err;
7440 }
7441
7442 /*
7443 * If preemption is enabled, it is possible for the association
7444 * to complete before we return from ipw_send_associate. Therefore
7445 * we have to be sure and update our priviate data first.
7446 */
7447 priv->channel = network->channel;
7448 memcpy(priv->bssid, network->bssid, ETH_ALEN);
Jeff Garzikbf794512005-07-31 13:07:26 -04007449 priv->status |= STATUS_ASSOCIATING;
James Ketrenos43f66a62005-03-25 12:31:53 -06007450 priv->status &= ~STATUS_SECURITY_UPDATED;
7451
7452 priv->assoc_network = network;
7453
Zhu Yie43e3c12006-04-13 17:20:45 +08007454#ifdef CONFIG_IPW2200_QOS
James Ketrenosb095c382005-08-24 22:04:42 -05007455 ipw_qos_association(priv, network);
7456#endif
7457
James Ketrenos43f66a62005-03-25 12:31:53 -06007458 err = ipw_send_associate(priv, &priv->assoc_request);
7459 if (err) {
7460 IPW_DEBUG_HC("Attempt to send associate command failed.\n");
7461 return err;
7462 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007463
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07007464 IPW_DEBUG(IPW_DL_STATE, "associating: '%*pE' %pM\n",
7465 priv->essid_len, priv->essid, priv->bssid);
James Ketrenos43f66a62005-03-25 12:31:53 -06007466
7467 return 0;
7468}
7469
7470static void ipw_roam(void *data)
7471{
7472 struct ipw_priv *priv = data;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007473 struct libipw_network *network = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -06007474 struct ipw_network_match match = {
7475 .network = priv->assoc_network
7476 };
7477
7478 /* The roaming process is as follows:
Jeff Garzikbf794512005-07-31 13:07:26 -04007479 *
7480 * 1. Missed beacon threshold triggers the roaming process by
James Ketrenos43f66a62005-03-25 12:31:53 -06007481 * setting the status ROAM bit and requesting a scan.
7482 * 2. When the scan completes, it schedules the ROAM work
7483 * 3. The ROAM work looks at all of the known networks for one that
7484 * is a better network than the currently associated. If none
7485 * found, the ROAM process is over (ROAM bit cleared)
7486 * 4. If a better network is found, a disassociation request is
7487 * sent.
7488 * 5. When the disassociation completes, the roam work is again
7489 * scheduled. The second time through, the driver is no longer
7490 * associated, and the newly selected network is sent an
Jeff Garzikbf794512005-07-31 13:07:26 -04007491 * association request.
James Ketrenos43f66a62005-03-25 12:31:53 -06007492 * 6. At this point ,the roaming process is complete and the ROAM
7493 * status bit is cleared.
7494 */
7495
7496 /* If we are no longer associated, and the roaming bit is no longer
7497 * set, then we are not actively roaming, so just return */
7498 if (!(priv->status & (STATUS_ASSOCIATED | STATUS_ROAMING)))
7499 return;
Jeff Garzikbf794512005-07-31 13:07:26 -04007500
James Ketrenos43f66a62005-03-25 12:31:53 -06007501 if (priv->status & STATUS_ASSOCIATED) {
Jeff Garzikbf794512005-07-31 13:07:26 -04007502 /* First pass through ROAM process -- look for a better
James Ketrenos43f66a62005-03-25 12:31:53 -06007503 * network */
James Ketrenosa613bff2005-08-24 21:43:11 -05007504 unsigned long flags;
James Ketrenos43f66a62005-03-25 12:31:53 -06007505 u8 rssi = priv->assoc_network->stats.rssi;
7506 priv->assoc_network->stats.rssi = -128;
James Ketrenosa613bff2005-08-24 21:43:11 -05007507 spin_lock_irqsave(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06007508 list_for_each_entry(network, &priv->ieee->network_list, list) {
7509 if (network != priv->assoc_network)
7510 ipw_best_network(priv, &match, network, 1);
7511 }
James Ketrenosa613bff2005-08-24 21:43:11 -05007512 spin_unlock_irqrestore(&priv->ieee->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -06007513 priv->assoc_network->stats.rssi = rssi;
Jeff Garzikbf794512005-07-31 13:07:26 -04007514
James Ketrenos43f66a62005-03-25 12:31:53 -06007515 if (match.network == priv->assoc_network) {
7516 IPW_DEBUG_ASSOC("No better APs in this network to "
7517 "roam to.\n");
7518 priv->status &= ~STATUS_ROAMING;
7519 ipw_debug_config(priv);
7520 return;
7521 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007522
James Ketrenos43f66a62005-03-25 12:31:53 -06007523 ipw_send_disassociate(priv, 1);
7524 priv->assoc_network = match.network;
7525
7526 return;
Jeff Garzikbf794512005-07-31 13:07:26 -04007527 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007528
7529 /* Second pass through ROAM process -- request association */
7530 ipw_compatible_rates(priv, priv->assoc_network, &match.rates);
7531 ipw_associate_network(priv, priv->assoc_network, &match.rates, 1);
7532 priv->status &= ~STATUS_ROAMING;
7533}
7534
David Howellsc4028952006-11-22 14:57:56 +00007535static void ipw_bg_roam(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -05007536{
David Howellsc4028952006-11-22 14:57:56 +00007537 struct ipw_priv *priv =
7538 container_of(work, struct ipw_priv, roam);
Zhu Yi46441512006-01-24 16:37:59 +08007539 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00007540 ipw_roam(priv);
Zhu Yi46441512006-01-24 16:37:59 +08007541 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05007542}
7543
7544static int ipw_associate(void *data)
James Ketrenos43f66a62005-03-25 12:31:53 -06007545{
7546 struct ipw_priv *priv = data;
7547
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007548 struct libipw_network *network = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -06007549 struct ipw_network_match match = {
7550 .network = NULL
7551 };
7552 struct ipw_supported_rates *rates;
7553 struct list_head *element;
James Ketrenosa613bff2005-08-24 21:43:11 -05007554 unsigned long flags;
James Ketrenos43f66a62005-03-25 12:31:53 -06007555
James Ketrenosb095c382005-08-24 22:04:42 -05007556 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
7557 IPW_DEBUG_ASSOC("Not attempting association (monitor mode)\n");
7558 return 0;
7559 }
7560
James Ketrenosc848d0a2005-08-24 21:56:24 -05007561 if (priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007562 IPW_DEBUG_ASSOC("Not attempting association (already in "
7563 "progress)\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05007564 return 0;
7565 }
7566
Hong Liue6324722005-09-14 21:04:15 -05007567 if (priv->status & STATUS_DISASSOCIATING) {
7568 IPW_DEBUG_ASSOC("Not attempting association (in "
7569 "disassociating)\n ");
Tejun Heobcb6d912011-01-26 12:12:50 +01007570 schedule_work(&priv->associate);
Hong Liue6324722005-09-14 21:04:15 -05007571 return 0;
7572 }
7573
James Ketrenosc848d0a2005-08-24 21:56:24 -05007574 if (!ipw_is_init(priv) || (priv->status & STATUS_SCANNING)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05007575 IPW_DEBUG_ASSOC("Not attempting association (scanning or not "
7576 "initialized)\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05007577 return 0;
7578 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007579
7580 if (!(priv->config & CFG_ASSOCIATE) &&
Alexey Fisher3e4127f2008-11-06 09:51:16 +01007581 !(priv->config & (CFG_STATIC_ESSID | CFG_STATIC_BSSID))) {
James Ketrenos43f66a62005-03-25 12:31:53 -06007582 IPW_DEBUG_ASSOC("Not attempting association (associate=0)\n");
James Ketrenosc848d0a2005-08-24 21:56:24 -05007583 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06007584 }
7585
James Ketrenosa613bff2005-08-24 21:43:11 -05007586 /* Protect our use of the network_list */
7587 spin_lock_irqsave(&priv->ieee->lock, flags);
Jeff Garzikbf794512005-07-31 13:07:26 -04007588 list_for_each_entry(network, &priv->ieee->network_list, list)
Jeff Garzik0edd5b42005-09-07 00:48:31 -04007589 ipw_best_network(priv, &match, network, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -06007590
7591 network = match.network;
7592 rates = &match.rates;
7593
7594 if (network == NULL &&
7595 priv->ieee->iw_mode == IW_MODE_ADHOC &&
7596 priv->config & CFG_ADHOC_CREATE &&
7597 priv->config & CFG_STATIC_ESSID &&
Dan Williamsa6d4eae2008-05-29 14:38:28 -04007598 priv->config & CFG_STATIC_CHANNEL) {
7599 /* Use oldest network if the free list is empty */
7600 if (list_empty(&priv->ieee->network_free_list)) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007601 struct libipw_network *oldest = NULL;
7602 struct libipw_network *target;
Dan Williamsa6d4eae2008-05-29 14:38:28 -04007603
7604 list_for_each_entry(target, &priv->ieee->network_list, list) {
7605 if ((oldest == NULL) ||
7606 (target->last_scanned < oldest->last_scanned))
7607 oldest = target;
7608 }
7609
7610 /* If there are no more slots, expire the oldest */
7611 list_del(&oldest->list);
7612 target = oldest;
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07007613 IPW_DEBUG_ASSOC("Expired '%*pE' (%pM) from network list.\n",
7614 target->ssid_len, target->ssid,
Johannes Berge1749612008-10-27 15:59:26 -07007615 target->bssid);
Dan Williamsa6d4eae2008-05-29 14:38:28 -04007616 list_add_tail(&target->list,
7617 &priv->ieee->network_free_list);
7618 }
7619
James Ketrenos43f66a62005-03-25 12:31:53 -06007620 element = priv->ieee->network_free_list.next;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007621 network = list_entry(element, struct libipw_network, list);
James Ketrenos43f66a62005-03-25 12:31:53 -06007622 ipw_adhoc_create(priv, network);
7623 rates = &priv->rates;
7624 list_del(element);
7625 list_add_tail(&network->list, &priv->ieee->network_list);
7626 }
James Ketrenosa613bff2005-08-24 21:43:11 -05007627 spin_unlock_irqrestore(&priv->ieee->lock, flags);
Jeff Garzikbf794512005-07-31 13:07:26 -04007628
James Ketrenos43f66a62005-03-25 12:31:53 -06007629 /* If we reached the end of the list, then we don't have any valid
7630 * matching APs */
7631 if (!network) {
7632 ipw_debug_config(priv);
7633
James Ketrenosb095c382005-08-24 22:04:42 -05007634 if (!(priv->status & STATUS_SCANNING)) {
7635 if (!(priv->config & CFG_SPEED_SCAN))
Tejun Heobcb6d912011-01-26 12:12:50 +01007636 schedule_delayed_work(&priv->request_scan,
7637 SCAN_INTERVAL);
James Ketrenosb095c382005-08-24 22:04:42 -05007638 else
Tejun Heobcb6d912011-01-26 12:12:50 +01007639 schedule_delayed_work(&priv->request_scan, 0);
James Ketrenosb095c382005-08-24 22:04:42 -05007640 }
Jeff Garzikbf794512005-07-31 13:07:26 -04007641
James Ketrenosc848d0a2005-08-24 21:56:24 -05007642 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06007643 }
7644
7645 ipw_associate_network(priv, network, rates, 0);
James Ketrenosc848d0a2005-08-24 21:56:24 -05007646
7647 return 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06007648}
Jeff Garzikbf794512005-07-31 13:07:26 -04007649
David Howellsc4028952006-11-22 14:57:56 +00007650static void ipw_bg_associate(struct work_struct *work)
James Ketrenos43f66a62005-03-25 12:31:53 -06007651{
David Howellsc4028952006-11-22 14:57:56 +00007652 struct ipw_priv *priv =
7653 container_of(work, struct ipw_priv, associate);
Zhu Yi46441512006-01-24 16:37:59 +08007654 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +00007655 ipw_associate(priv);
Zhu Yi46441512006-01-24 16:37:59 +08007656 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06007657}
7658
James Ketrenosb095c382005-08-24 22:04:42 -05007659static void ipw_rebuild_decrypted_skb(struct ipw_priv *priv,
7660 struct sk_buff *skb)
7661{
7662 struct ieee80211_hdr *hdr;
7663 u16 fc;
7664
7665 hdr = (struct ieee80211_hdr *)skb->data;
John W. Linville72118012008-09-30 21:43:03 -04007666 fc = le16_to_cpu(hdr->frame_control);
James Ketrenosb095c382005-08-24 22:04:42 -05007667 if (!(fc & IEEE80211_FCTL_PROTECTED))
7668 return;
7669
7670 fc &= ~IEEE80211_FCTL_PROTECTED;
John W. Linville72118012008-09-30 21:43:03 -04007671 hdr->frame_control = cpu_to_le16(fc);
James Ketrenosb095c382005-08-24 22:04:42 -05007672 switch (priv->ieee->sec.level) {
7673 case SEC_LEVEL_3:
7674 /* Remove CCMP HDR */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007675 memmove(skb->data + LIBIPW_3ADDR_LEN,
7676 skb->data + LIBIPW_3ADDR_LEN + 8,
7677 skb->len - LIBIPW_3ADDR_LEN - 8);
Zhu Yif4ff4972005-09-12 10:48:48 -05007678 skb_trim(skb, skb->len - 16); /* CCMP_HDR_LEN + CCMP_MIC_LEN */
James Ketrenosb095c382005-08-24 22:04:42 -05007679 break;
7680 case SEC_LEVEL_2:
7681 break;
7682 case SEC_LEVEL_1:
7683 /* Remove IV */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007684 memmove(skb->data + LIBIPW_3ADDR_LEN,
7685 skb->data + LIBIPW_3ADDR_LEN + 4,
7686 skb->len - LIBIPW_3ADDR_LEN - 4);
Zhu Yif4ff4972005-09-12 10:48:48 -05007687 skb_trim(skb, skb->len - 8); /* IV + ICV */
James Ketrenosb095c382005-08-24 22:04:42 -05007688 break;
7689 case SEC_LEVEL_0:
7690 break;
7691 default:
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02007692 printk(KERN_ERR "Unknown security level %d\n",
James Ketrenosb095c382005-08-24 22:04:42 -05007693 priv->ieee->sec.level);
7694 break;
7695 }
7696}
7697
7698static void ipw_handle_data_packet(struct ipw_priv *priv,
7699 struct ipw_rx_mem_buffer *rxb,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007700 struct libipw_rx_stats *stats)
James Ketrenos43f66a62005-03-25 12:31:53 -06007701{
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007702 struct net_device *dev = priv->net_dev;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007703 struct libipw_hdr_4addr *hdr;
James Ketrenos43f66a62005-03-25 12:31:53 -06007704 struct ipw_rx_packet *pkt = (struct ipw_rx_packet *)rxb->skb->data;
7705
7706 /* We received data from the HW, so stop the watchdog */
Florian Westphal860e9532016-05-03 16:33:13 +02007707 netif_trans_update(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06007708
Jeff Garzikbf794512005-07-31 13:07:26 -04007709 /* We only process data packets if the
James Ketrenos43f66a62005-03-25 12:31:53 -06007710 * interface is open */
James Ketrenosa613bff2005-08-24 21:43:11 -05007711 if (unlikely((le16_to_cpu(pkt->u.frame.length) + IPW_RX_FRAME_SIZE) >
James Ketrenos43f66a62005-03-25 12:31:53 -06007712 skb_tailroom(rxb->skb))) {
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007713 dev->stats.rx_errors++;
James Ketrenos43f66a62005-03-25 12:31:53 -06007714 priv->wstats.discard.misc++;
7715 IPW_DEBUG_DROP("Corruption detected! Oh no!\n");
7716 return;
7717 } else if (unlikely(!netif_running(priv->net_dev))) {
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007718 dev->stats.rx_dropped++;
James Ketrenos43f66a62005-03-25 12:31:53 -06007719 priv->wstats.discard.misc++;
7720 IPW_DEBUG_DROP("Dropping packet while interface is not up.\n");
7721 return;
7722 }
7723
7724 /* Advance skb->data to the start of the actual payload */
Jiri Bencaaa4d302005-06-07 14:58:41 +02007725 skb_reserve(rxb->skb, offsetof(struct ipw_rx_packet, u.frame.data));
James Ketrenos43f66a62005-03-25 12:31:53 -06007726
7727 /* Set the size of the skb to the size of the frame */
James Ketrenosa613bff2005-08-24 21:43:11 -05007728 skb_put(rxb->skb, le16_to_cpu(pkt->u.frame.length));
James Ketrenos43f66a62005-03-25 12:31:53 -06007729
7730 IPW_DEBUG_RX("Rx packet of %d bytes.\n", rxb->skb->len);
7731
James Ketrenosb095c382005-08-24 22:04:42 -05007732 /* HW decrypt will not clear the WEP bit, MIC, PN, etc. */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007733 hdr = (struct libipw_hdr_4addr *)rxb->skb->data;
Hong Liu567deaf2005-08-31 18:07:22 +08007734 if (priv->ieee->iw_mode != IW_MODE_MONITOR &&
Stephen Hemminger3c190652006-01-03 15:27:38 -08007735 (is_multicast_ether_addr(hdr->addr1) ?
Hong Liu567deaf2005-08-31 18:07:22 +08007736 !priv->ieee->host_mc_decrypt : !priv->ieee->host_decrypt))
James Ketrenosb095c382005-08-24 22:04:42 -05007737 ipw_rebuild_decrypted_skb(priv, rxb->skb);
7738
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007739 if (!libipw_rx(priv->ieee, rxb->skb, stats))
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007740 dev->stats.rx_errors++;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007741 else { /* libipw_rx succeeded, so it now owns the SKB */
James Ketrenos43f66a62005-03-25 12:31:53 -06007742 rxb->skb = NULL;
James Ketrenosb095c382005-08-24 22:04:42 -05007743 __ipw_led_activity_on(priv);
James Ketrenosa613bff2005-08-24 21:43:11 -05007744 }
James Ketrenos43f66a62005-03-25 12:31:53 -06007745}
7746
Zhu Yi459d4082006-04-13 17:21:00 +08007747#ifdef CONFIG_IPW2200_RADIOTAP
Mike Kershaw24a47db2005-08-26 00:41:54 -05007748static void ipw_handle_data_packet_monitor(struct ipw_priv *priv,
7749 struct ipw_rx_mem_buffer *rxb,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007750 struct libipw_rx_stats *stats)
Mike Kershaw24a47db2005-08-26 00:41:54 -05007751{
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007752 struct net_device *dev = priv->net_dev;
Mike Kershaw24a47db2005-08-26 00:41:54 -05007753 struct ipw_rx_packet *pkt = (struct ipw_rx_packet *)rxb->skb->data;
7754 struct ipw_rx_frame *frame = &pkt->u.frame;
7755
7756 /* initial pull of some data */
7757 u16 received_channel = frame->received_channel;
7758 u8 antennaAndPhy = frame->antennaAndPhy;
7759 s8 antsignal = frame->rssi_dbm - IPW_RSSI_TO_DBM; /* call it signed anyhow */
7760 u16 pktrate = frame->rate;
7761
7762 /* Magic struct that slots into the radiotap header -- no reason
7763 * to build this manually element by element, we can write it much
7764 * more efficiently than we can parse it. ORDER MATTERS HERE */
Zhu Yid685b8c2006-04-13 17:20:27 +08007765 struct ipw_rt_hdr *ipw_rt;
Mike Kershaw24a47db2005-08-26 00:41:54 -05007766
Dan Carpenter92c1ff12012-01-12 09:34:50 +03007767 unsigned short len = le16_to_cpu(pkt->u.frame.length);
Mike Kershaw24a47db2005-08-26 00:41:54 -05007768
7769 /* We received data from the HW, so stop the watchdog */
Florian Westphal860e9532016-05-03 16:33:13 +02007770 netif_trans_update(dev);
Mike Kershaw24a47db2005-08-26 00:41:54 -05007771
7772 /* We only process data packets if the
7773 * interface is open */
7774 if (unlikely((le16_to_cpu(pkt->u.frame.length) + IPW_RX_FRAME_SIZE) >
7775 skb_tailroom(rxb->skb))) {
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007776 dev->stats.rx_errors++;
Mike Kershaw24a47db2005-08-26 00:41:54 -05007777 priv->wstats.discard.misc++;
7778 IPW_DEBUG_DROP("Corruption detected! Oh no!\n");
7779 return;
7780 } else if (unlikely(!netif_running(priv->net_dev))) {
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007781 dev->stats.rx_dropped++;
Mike Kershaw24a47db2005-08-26 00:41:54 -05007782 priv->wstats.discard.misc++;
7783 IPW_DEBUG_DROP("Dropping packet while interface is not up.\n");
7784 return;
7785 }
7786
7787 /* Libpcap 0.9.3+ can handle variable length radiotap, so we'll use
7788 * that now */
7789 if (len > IPW_RX_BUF_SIZE - sizeof(struct ipw_rt_hdr)) {
7790 /* FIXME: Should alloc bigger skb instead */
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007791 dev->stats.rx_dropped++;
Mike Kershaw24a47db2005-08-26 00:41:54 -05007792 priv->wstats.discard.misc++;
7793 IPW_DEBUG_DROP("Dropping too large packet in monitor\n");
7794 return;
7795 }
7796
7797 /* copy the frame itself */
7798 memmove(rxb->skb->data + sizeof(struct ipw_rt_hdr),
7799 rxb->skb->data + IPW_RX_FRAME_SIZE, len);
7800
Mike Kershaw24a47db2005-08-26 00:41:54 -05007801 ipw_rt = (struct ipw_rt_hdr *)rxb->skb->data;
7802
7803 ipw_rt->rt_hdr.it_version = PKTHDR_RADIOTAP_VERSION;
7804 ipw_rt->rt_hdr.it_pad = 0; /* always good to zero */
Al Viro743b84d2007-12-27 01:43:16 -05007805 ipw_rt->rt_hdr.it_len = cpu_to_le16(sizeof(struct ipw_rt_hdr)); /* total header+data */
Mike Kershaw24a47db2005-08-26 00:41:54 -05007806
7807 /* Big bitfield of all the fields we provide in radiotap */
Al Viro743b84d2007-12-27 01:43:16 -05007808 ipw_rt->rt_hdr.it_present = cpu_to_le32(
7809 (1 << IEEE80211_RADIOTAP_TSFT) |
Zhu Yi4b1f8a92006-12-05 14:42:14 +08007810 (1 << IEEE80211_RADIOTAP_FLAGS) |
Mike Kershaw24a47db2005-08-26 00:41:54 -05007811 (1 << IEEE80211_RADIOTAP_RATE) |
7812 (1 << IEEE80211_RADIOTAP_CHANNEL) |
7813 (1 << IEEE80211_RADIOTAP_DBM_ANTSIGNAL) |
Zhu Yid685b8c2006-04-13 17:20:27 +08007814 (1 << IEEE80211_RADIOTAP_DBM_ANTNOISE) |
Mike Kershaw24a47db2005-08-26 00:41:54 -05007815 (1 << IEEE80211_RADIOTAP_ANTENNA));
7816
7817 /* Zero the flags, we'll add to them as we go */
7818 ipw_rt->rt_flags = 0;
Zhu Yi4b1f8a92006-12-05 14:42:14 +08007819 ipw_rt->rt_tsf = (u64)(frame->parent_tsf[3] << 24 |
7820 frame->parent_tsf[2] << 16 |
7821 frame->parent_tsf[1] << 8 |
7822 frame->parent_tsf[0]);
Mike Kershaw24a47db2005-08-26 00:41:54 -05007823
7824 /* Convert signal to DBM */
7825 ipw_rt->rt_dbmsignal = antsignal;
Reinette Chatre21f8a732009-08-18 10:25:05 -07007826 ipw_rt->rt_dbmnoise = (s8) le16_to_cpu(frame->noise);
Mike Kershaw24a47db2005-08-26 00:41:54 -05007827
7828 /* Convert the channel data and set the flags */
7829 ipw_rt->rt_channel = cpu_to_le16(ieee80211chan2mhz(received_channel));
7830 if (received_channel > 14) { /* 802.11a */
7831 ipw_rt->rt_chbitmask =
7832 cpu_to_le16((IEEE80211_CHAN_OFDM | IEEE80211_CHAN_5GHZ));
7833 } else if (antennaAndPhy & 32) { /* 802.11b */
7834 ipw_rt->rt_chbitmask =
7835 cpu_to_le16((IEEE80211_CHAN_CCK | IEEE80211_CHAN_2GHZ));
7836 } else { /* 802.11g */
7837 ipw_rt->rt_chbitmask =
Al Viro472caf82007-12-27 01:50:54 -05007838 cpu_to_le16(IEEE80211_CHAN_OFDM | IEEE80211_CHAN_2GHZ);
Mike Kershaw24a47db2005-08-26 00:41:54 -05007839 }
7840
7841 /* set the rate in multiples of 500k/s */
7842 switch (pktrate) {
7843 case IPW_TX_RATE_1MB:
7844 ipw_rt->rt_rate = 2;
7845 break;
7846 case IPW_TX_RATE_2MB:
7847 ipw_rt->rt_rate = 4;
7848 break;
7849 case IPW_TX_RATE_5MB:
7850 ipw_rt->rt_rate = 10;
7851 break;
7852 case IPW_TX_RATE_6MB:
7853 ipw_rt->rt_rate = 12;
7854 break;
7855 case IPW_TX_RATE_9MB:
7856 ipw_rt->rt_rate = 18;
7857 break;
7858 case IPW_TX_RATE_11MB:
7859 ipw_rt->rt_rate = 22;
7860 break;
7861 case IPW_TX_RATE_12MB:
7862 ipw_rt->rt_rate = 24;
7863 break;
7864 case IPW_TX_RATE_18MB:
7865 ipw_rt->rt_rate = 36;
7866 break;
7867 case IPW_TX_RATE_24MB:
7868 ipw_rt->rt_rate = 48;
7869 break;
7870 case IPW_TX_RATE_36MB:
7871 ipw_rt->rt_rate = 72;
7872 break;
7873 case IPW_TX_RATE_48MB:
7874 ipw_rt->rt_rate = 96;
7875 break;
7876 case IPW_TX_RATE_54MB:
7877 ipw_rt->rt_rate = 108;
7878 break;
7879 default:
7880 ipw_rt->rt_rate = 0;
7881 break;
7882 }
7883
7884 /* antenna number */
7885 ipw_rt->rt_antenna = (antennaAndPhy & 3); /* Is this right? */
7886
7887 /* set the preamble flag if we have it */
7888 if ((antennaAndPhy & 64))
7889 ipw_rt->rt_flags |= IEEE80211_RADIOTAP_F_SHORTPRE;
7890
7891 /* Set the size of the skb to the size of the frame */
7892 skb_put(rxb->skb, len + sizeof(struct ipw_rt_hdr));
James Ketrenos43f66a62005-03-25 12:31:53 -06007893
7894 IPW_DEBUG_RX("Rx packet of %d bytes.\n", rxb->skb->len);
7895
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007896 if (!libipw_rx(priv->ieee, rxb->skb, stats))
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007897 dev->stats.rx_errors++;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007898 else { /* libipw_rx succeeded, so it now owns the SKB */
James Ketrenos43f66a62005-03-25 12:31:53 -06007899 rxb->skb = NULL;
Mike Kershaw24a47db2005-08-26 00:41:54 -05007900 /* no LED during capture */
7901 }
7902}
7903#endif
7904
Zhu Yid685b8c2006-04-13 17:20:27 +08007905#ifdef CONFIG_IPW2200_PROMISCUOUS
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007906#define libipw_is_probe_response(fc) \
Zhu Yid685b8c2006-04-13 17:20:27 +08007907 ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT && \
7908 (fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_PROBE_RESP )
7909
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007910#define libipw_is_management(fc) \
Zhu Yid685b8c2006-04-13 17:20:27 +08007911 ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT)
7912
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007913#define libipw_is_control(fc) \
Zhu Yid685b8c2006-04-13 17:20:27 +08007914 ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_CTL)
7915
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007916#define libipw_is_data(fc) \
Zhu Yid685b8c2006-04-13 17:20:27 +08007917 ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA)
7918
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007919#define libipw_is_assoc_request(fc) \
Zhu Yid685b8c2006-04-13 17:20:27 +08007920 ((fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_ASSOC_REQ)
7921
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007922#define libipw_is_reassoc_request(fc) \
Zhu Yid685b8c2006-04-13 17:20:27 +08007923 ((fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_REASSOC_REQ)
7924
7925static void ipw_handle_promiscuous_rx(struct ipw_priv *priv,
7926 struct ipw_rx_mem_buffer *rxb,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007927 struct libipw_rx_stats *stats)
Zhu Yid685b8c2006-04-13 17:20:27 +08007928{
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007929 struct net_device *dev = priv->prom_net_dev;
Zhu Yid685b8c2006-04-13 17:20:27 +08007930 struct ipw_rx_packet *pkt = (struct ipw_rx_packet *)rxb->skb->data;
7931 struct ipw_rx_frame *frame = &pkt->u.frame;
7932 struct ipw_rt_hdr *ipw_rt;
7933
7934 /* First cache any information we need before we overwrite
7935 * the information provided in the skb from the hardware */
7936 struct ieee80211_hdr *hdr;
7937 u16 channel = frame->received_channel;
7938 u8 phy_flags = frame->antennaAndPhy;
7939 s8 signal = frame->rssi_dbm - IPW_RSSI_TO_DBM;
Reinette Chatre21f8a732009-08-18 10:25:05 -07007940 s8 noise = (s8) le16_to_cpu(frame->noise);
Zhu Yid685b8c2006-04-13 17:20:27 +08007941 u8 rate = frame->rate;
Dan Carpenter92c1ff12012-01-12 09:34:50 +03007942 unsigned short len = le16_to_cpu(pkt->u.frame.length);
Zhu Yid685b8c2006-04-13 17:20:27 +08007943 struct sk_buff *skb;
7944 int hdr_only = 0;
7945 u16 filter = priv->prom_priv->filter;
7946
7947 /* If the filter is set to not include Rx frames then return */
7948 if (filter & IPW_PROM_NO_RX)
7949 return;
7950
Zhu Yid685b8c2006-04-13 17:20:27 +08007951 /* We received data from the HW, so stop the watchdog */
Florian Westphal860e9532016-05-03 16:33:13 +02007952 netif_trans_update(dev);
Zhu Yid685b8c2006-04-13 17:20:27 +08007953
7954 if (unlikely((len + IPW_RX_FRAME_SIZE) > skb_tailroom(rxb->skb))) {
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007955 dev->stats.rx_errors++;
Zhu Yid685b8c2006-04-13 17:20:27 +08007956 IPW_DEBUG_DROP("Corruption detected! Oh no!\n");
7957 return;
7958 }
7959
7960 /* We only process data packets if the interface is open */
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007961 if (unlikely(!netif_running(dev))) {
7962 dev->stats.rx_dropped++;
Zhu Yid685b8c2006-04-13 17:20:27 +08007963 IPW_DEBUG_DROP("Dropping packet while interface is not up.\n");
7964 return;
7965 }
7966
7967 /* Libpcap 0.9.3+ can handle variable length radiotap, so we'll use
7968 * that now */
7969 if (len > IPW_RX_BUF_SIZE - sizeof(struct ipw_rt_hdr)) {
7970 /* FIXME: Should alloc bigger skb instead */
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00007971 dev->stats.rx_dropped++;
Zhu Yid685b8c2006-04-13 17:20:27 +08007972 IPW_DEBUG_DROP("Dropping too large packet in monitor\n");
7973 return;
7974 }
7975
7976 hdr = (void *)rxb->skb->data + IPW_RX_FRAME_SIZE;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007977 if (libipw_is_management(le16_to_cpu(hdr->frame_control))) {
Zhu Yid685b8c2006-04-13 17:20:27 +08007978 if (filter & IPW_PROM_NO_MGMT)
7979 return;
7980 if (filter & IPW_PROM_MGMT_HEADER_ONLY)
7981 hdr_only = 1;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007982 } else if (libipw_is_control(le16_to_cpu(hdr->frame_control))) {
Zhu Yid685b8c2006-04-13 17:20:27 +08007983 if (filter & IPW_PROM_NO_CTL)
7984 return;
7985 if (filter & IPW_PROM_CTL_HEADER_ONLY)
7986 hdr_only = 1;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007987 } else if (libipw_is_data(le16_to_cpu(hdr->frame_control))) {
Zhu Yid685b8c2006-04-13 17:20:27 +08007988 if (filter & IPW_PROM_NO_DATA)
7989 return;
7990 if (filter & IPW_PROM_DATA_HEADER_ONLY)
7991 hdr_only = 1;
7992 }
7993
7994 /* Copy the SKB since this is for the promiscuous side */
7995 skb = skb_copy(rxb->skb, GFP_ATOMIC);
7996 if (skb == NULL) {
7997 IPW_ERROR("skb_clone failed for promiscuous copy.\n");
7998 return;
7999 }
8000
8001 /* copy the frame data to write after where the radiotap header goes */
8002 ipw_rt = (void *)skb->data;
8003
8004 if (hdr_only)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008005 len = libipw_get_hdrlen(le16_to_cpu(hdr->frame_control));
Zhu Yid685b8c2006-04-13 17:20:27 +08008006
8007 memcpy(ipw_rt->payload, hdr, len);
8008
Zhu Yid685b8c2006-04-13 17:20:27 +08008009 ipw_rt->rt_hdr.it_version = PKTHDR_RADIOTAP_VERSION;
8010 ipw_rt->rt_hdr.it_pad = 0; /* always good to zero */
Al Viro743b84d2007-12-27 01:43:16 -05008011 ipw_rt->rt_hdr.it_len = cpu_to_le16(sizeof(*ipw_rt)); /* total header+data */
Zhu Yid685b8c2006-04-13 17:20:27 +08008012
8013 /* Set the size of the skb to the size of the frame */
Al Viro743b84d2007-12-27 01:43:16 -05008014 skb_put(skb, sizeof(*ipw_rt) + len);
Zhu Yid685b8c2006-04-13 17:20:27 +08008015
8016 /* Big bitfield of all the fields we provide in radiotap */
Al Viro743b84d2007-12-27 01:43:16 -05008017 ipw_rt->rt_hdr.it_present = cpu_to_le32(
8018 (1 << IEEE80211_RADIOTAP_TSFT) |
Zhu Yi4b1f8a92006-12-05 14:42:14 +08008019 (1 << IEEE80211_RADIOTAP_FLAGS) |
Zhu Yid685b8c2006-04-13 17:20:27 +08008020 (1 << IEEE80211_RADIOTAP_RATE) |
8021 (1 << IEEE80211_RADIOTAP_CHANNEL) |
8022 (1 << IEEE80211_RADIOTAP_DBM_ANTSIGNAL) |
8023 (1 << IEEE80211_RADIOTAP_DBM_ANTNOISE) |
8024 (1 << IEEE80211_RADIOTAP_ANTENNA));
8025
8026 /* Zero the flags, we'll add to them as we go */
8027 ipw_rt->rt_flags = 0;
Zhu Yi4b1f8a92006-12-05 14:42:14 +08008028 ipw_rt->rt_tsf = (u64)(frame->parent_tsf[3] << 24 |
8029 frame->parent_tsf[2] << 16 |
8030 frame->parent_tsf[1] << 8 |
8031 frame->parent_tsf[0]);
Zhu Yid685b8c2006-04-13 17:20:27 +08008032
8033 /* Convert to DBM */
8034 ipw_rt->rt_dbmsignal = signal;
8035 ipw_rt->rt_dbmnoise = noise;
8036
8037 /* Convert the channel data and set the flags */
8038 ipw_rt->rt_channel = cpu_to_le16(ieee80211chan2mhz(channel));
8039 if (channel > 14) { /* 802.11a */
8040 ipw_rt->rt_chbitmask =
8041 cpu_to_le16((IEEE80211_CHAN_OFDM | IEEE80211_CHAN_5GHZ));
8042 } else if (phy_flags & (1 << 5)) { /* 802.11b */
8043 ipw_rt->rt_chbitmask =
8044 cpu_to_le16((IEEE80211_CHAN_CCK | IEEE80211_CHAN_2GHZ));
8045 } else { /* 802.11g */
8046 ipw_rt->rt_chbitmask =
Al Viro472caf82007-12-27 01:50:54 -05008047 cpu_to_le16(IEEE80211_CHAN_OFDM | IEEE80211_CHAN_2GHZ);
Zhu Yid685b8c2006-04-13 17:20:27 +08008048 }
8049
8050 /* set the rate in multiples of 500k/s */
8051 switch (rate) {
8052 case IPW_TX_RATE_1MB:
8053 ipw_rt->rt_rate = 2;
8054 break;
8055 case IPW_TX_RATE_2MB:
8056 ipw_rt->rt_rate = 4;
8057 break;
8058 case IPW_TX_RATE_5MB:
8059 ipw_rt->rt_rate = 10;
8060 break;
8061 case IPW_TX_RATE_6MB:
8062 ipw_rt->rt_rate = 12;
8063 break;
8064 case IPW_TX_RATE_9MB:
8065 ipw_rt->rt_rate = 18;
8066 break;
8067 case IPW_TX_RATE_11MB:
8068 ipw_rt->rt_rate = 22;
8069 break;
8070 case IPW_TX_RATE_12MB:
8071 ipw_rt->rt_rate = 24;
8072 break;
8073 case IPW_TX_RATE_18MB:
8074 ipw_rt->rt_rate = 36;
8075 break;
8076 case IPW_TX_RATE_24MB:
8077 ipw_rt->rt_rate = 48;
8078 break;
8079 case IPW_TX_RATE_36MB:
8080 ipw_rt->rt_rate = 72;
8081 break;
8082 case IPW_TX_RATE_48MB:
8083 ipw_rt->rt_rate = 96;
8084 break;
8085 case IPW_TX_RATE_54MB:
8086 ipw_rt->rt_rate = 108;
8087 break;
8088 default:
8089 ipw_rt->rt_rate = 0;
8090 break;
8091 }
8092
8093 /* antenna number */
8094 ipw_rt->rt_antenna = (phy_flags & 3);
8095
8096 /* set the preamble flag if we have it */
8097 if (phy_flags & (1 << 6))
8098 ipw_rt->rt_flags |= IEEE80211_RADIOTAP_F_SHORTPRE;
8099
8100 IPW_DEBUG_RX("Rx packet of %d bytes.\n", skb->len);
8101
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008102 if (!libipw_rx(priv->prom_priv->ieee, skb, stats)) {
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00008103 dev->stats.rx_errors++;
Zhu Yid685b8c2006-04-13 17:20:27 +08008104 dev_kfree_skb_any(skb);
8105 }
8106}
8107#endif
8108
Arjan van de Ven858119e2006-01-14 13:20:43 -08008109static int is_network_packet(struct ipw_priv *priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008110 struct libipw_hdr_4addr *header)
James Ketrenosea2b26e2005-08-24 21:25:16 -05008111{
Lucas De Marchi25985ed2011-03-30 22:57:33 -03008112 /* Filter incoming packets to determine if they are targeted toward
James Ketrenosea2b26e2005-08-24 21:25:16 -05008113 * this network, discarding packets coming from ourselves */
8114 switch (priv->ieee->iw_mode) {
James Ketrenosa613bff2005-08-24 21:43:11 -05008115 case IW_MODE_ADHOC: /* Header: Dest. | Source | BSSID */
James Ketrenosc848d0a2005-08-24 21:56:24 -05008116 /* packets from our adapter are dropped (echo) */
dingtianhong36325f32013-12-26 19:41:23 +08008117 if (ether_addr_equal(header->addr2, priv->net_dev->dev_addr))
James Ketrenosc848d0a2005-08-24 21:56:24 -05008118 return 0;
8119
Peter Jones90700fd2005-08-26 16:51:06 -05008120 /* {broad,multi}cast packets to our BSSID go through */
Stephen Hemminger3c190652006-01-03 15:27:38 -08008121 if (is_multicast_ether_addr(header->addr1))
dingtianhong36325f32013-12-26 19:41:23 +08008122 return ether_addr_equal(header->addr3, priv->bssid);
James Ketrenosa613bff2005-08-24 21:43:11 -05008123
8124 /* packets to our adapter go through */
dingtianhong36325f32013-12-26 19:41:23 +08008125 return ether_addr_equal(header->addr1,
8126 priv->net_dev->dev_addr);
James Ketrenosa613bff2005-08-24 21:43:11 -05008127
Peter Jones90700fd2005-08-26 16:51:06 -05008128 case IW_MODE_INFRA: /* Header: Dest. | BSSID | Source */
James Ketrenosc848d0a2005-08-24 21:56:24 -05008129 /* packets from our adapter are dropped (echo) */
dingtianhong36325f32013-12-26 19:41:23 +08008130 if (ether_addr_equal(header->addr3, priv->net_dev->dev_addr))
James Ketrenosc848d0a2005-08-24 21:56:24 -05008131 return 0;
8132
Peter Jones90700fd2005-08-26 16:51:06 -05008133 /* {broad,multi}cast packets to our BSS go through */
Stephen Hemminger3c190652006-01-03 15:27:38 -08008134 if (is_multicast_ether_addr(header->addr1))
dingtianhong36325f32013-12-26 19:41:23 +08008135 return ether_addr_equal(header->addr2, priv->bssid);
James Ketrenosa613bff2005-08-24 21:43:11 -05008136
8137 /* packets to our adapter go through */
dingtianhong36325f32013-12-26 19:41:23 +08008138 return ether_addr_equal(header->addr1,
8139 priv->net_dev->dev_addr);
James Ketrenosea2b26e2005-08-24 21:25:16 -05008140 }
James Ketrenosa613bff2005-08-24 21:43:11 -05008141
James Ketrenosea2b26e2005-08-24 21:25:16 -05008142 return 1;
8143}
8144
James Ketrenosafbf30a2005-08-25 00:05:33 -05008145#define IPW_PACKET_RETRY_TIME HZ
8146
Arjan van de Ven858119e2006-01-14 13:20:43 -08008147static int is_duplicate_packet(struct ipw_priv *priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008148 struct libipw_hdr_4addr *header)
James Ketrenosafbf30a2005-08-25 00:05:33 -05008149{
James Ketrenosafbf30a2005-08-25 00:05:33 -05008150 u16 sc = le16_to_cpu(header->seq_ctl);
8151 u16 seq = WLAN_GET_SEQ_SEQ(sc);
8152 u16 frag = WLAN_GET_SEQ_FRAG(sc);
8153 u16 *last_seq, *last_frag;
8154 unsigned long *last_time;
8155
8156 switch (priv->ieee->iw_mode) {
8157 case IW_MODE_ADHOC:
8158 {
8159 struct list_head *p;
8160 struct ipw_ibss_seq *entry = NULL;
8161 u8 *mac = header->addr2;
8162 int index = mac[5] % IPW_IBSS_MAC_HASH_SIZE;
8163
Dave Jones5cb06562013-07-03 15:05:18 -07008164 list_for_each(p, &priv->ibss_mac_hash[index]) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008165 entry =
8166 list_entry(p, struct ipw_ibss_seq, list);
dingtianhong36325f32013-12-26 19:41:23 +08008167 if (ether_addr_equal(entry->mac, mac))
James Ketrenosafbf30a2005-08-25 00:05:33 -05008168 break;
8169 }
8170 if (p == &priv->ibss_mac_hash[index]) {
8171 entry = kmalloc(sizeof(*entry), GFP_ATOMIC);
8172 if (!entry) {
8173 IPW_ERROR
8174 ("Cannot malloc new mac entry\n");
8175 return 0;
8176 }
8177 memcpy(entry->mac, mac, ETH_ALEN);
8178 entry->seq_num = seq;
8179 entry->frag_num = frag;
8180 entry->packet_time = jiffies;
8181 list_add(&entry->list,
8182 &priv->ibss_mac_hash[index]);
8183 return 0;
8184 }
8185 last_seq = &entry->seq_num;
8186 last_frag = &entry->frag_num;
8187 last_time = &entry->packet_time;
8188 break;
8189 }
8190 case IW_MODE_INFRA:
8191 last_seq = &priv->last_seq_num;
8192 last_frag = &priv->last_frag_num;
8193 last_time = &priv->last_packet_time;
8194 break;
8195 default:
8196 return 0;
8197 }
8198 if ((*last_seq == seq) &&
8199 time_after(*last_time + IPW_PACKET_RETRY_TIME, jiffies)) {
8200 if (*last_frag == frag)
8201 goto drop;
8202 if (*last_frag + 1 != frag)
8203 /* out-of-order fragment */
8204 goto drop;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008205 } else
8206 *last_seq = seq;
8207
Zhu Yif57ce7c2005-07-13 12:22:15 -05008208 *last_frag = frag;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008209 *last_time = jiffies;
8210 return 0;
8211
8212 drop:
Zhu Yi87b016c2005-08-05 17:17:35 +08008213 /* Comment this line now since we observed the card receives
8214 * duplicate packets but the FCTL_RETRY bit is not set in the
8215 * IBSS mode with fragmentation enabled.
John W. Linville72118012008-09-30 21:43:03 -04008216 BUG_ON(!(le16_to_cpu(header->frame_control) & IEEE80211_FCTL_RETRY)); */
James Ketrenosafbf30a2005-08-25 00:05:33 -05008217 return 1;
8218}
8219
James Ketrenosb095c382005-08-24 22:04:42 -05008220static void ipw_handle_mgmt_packet(struct ipw_priv *priv,
8221 struct ipw_rx_mem_buffer *rxb,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008222 struct libipw_rx_stats *stats)
James Ketrenosb095c382005-08-24 22:04:42 -05008223{
8224 struct sk_buff *skb = rxb->skb;
8225 struct ipw_rx_packet *pkt = (struct ipw_rx_packet *)skb->data;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008226 struct libipw_hdr_4addr *header = (struct libipw_hdr_4addr *)
James Ketrenosb095c382005-08-24 22:04:42 -05008227 (skb->data + IPW_RX_FRAME_SIZE);
8228
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008229 libipw_rx_mgt(priv->ieee, header, stats);
James Ketrenosb095c382005-08-24 22:04:42 -05008230
8231 if (priv->ieee->iw_mode == IW_MODE_ADHOC &&
8232 ((WLAN_FC_GET_STYPE(le16_to_cpu(header->frame_ctl)) ==
8233 IEEE80211_STYPE_PROBE_RESP) ||
8234 (WLAN_FC_GET_STYPE(le16_to_cpu(header->frame_ctl)) ==
8235 IEEE80211_STYPE_BEACON))) {
dingtianhong36325f32013-12-26 19:41:23 +08008236 if (ether_addr_equal(header->addr3, priv->bssid))
James Ketrenosb095c382005-08-24 22:04:42 -05008237 ipw_add_station(priv, header->addr2);
8238 }
8239
8240 if (priv->config & CFG_NET_STATS) {
8241 IPW_DEBUG_HC("sending stat packet\n");
8242
8243 /* Set the size of the skb to the size of the full
8244 * ipw header and 802.11 frame */
8245 skb_put(skb, le16_to_cpu(pkt->u.frame.length) +
8246 IPW_RX_FRAME_SIZE);
8247
8248 /* Advance past the ipw packet header to the 802.11 frame */
8249 skb_pull(skb, IPW_RX_FRAME_SIZE);
8250
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008251 /* Push the libipw_rx_stats before the 802.11 frame */
James Ketrenosb095c382005-08-24 22:04:42 -05008252 memcpy(skb_push(skb, sizeof(*stats)), stats, sizeof(*stats));
8253
8254 skb->dev = priv->ieee->dev;
8255
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008256 /* Point raw at the libipw_stats */
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07008257 skb_reset_mac_header(skb);
James Ketrenosb095c382005-08-24 22:04:42 -05008258
8259 skb->pkt_type = PACKET_OTHERHOST;
Harvey Harrisonc1b4aa32009-01-29 13:26:44 -08008260 skb->protocol = cpu_to_be16(ETH_P_80211_STATS);
James Ketrenosb095c382005-08-24 22:04:42 -05008261 memset(skb->cb, 0, sizeof(rxb->skb->cb));
8262 netif_rx(skb);
8263 rxb->skb = NULL;
8264 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008265}
8266
James Ketrenos43f66a62005-03-25 12:31:53 -06008267/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03008268 * Main entry function for receiving a packet with 80211 headers. This
James Ketrenos43f66a62005-03-25 12:31:53 -06008269 * should be called when ever the FW has notified us that there is a new
Lucas De Marchi25985ed2011-03-30 22:57:33 -03008270 * skb in the receive queue.
James Ketrenos43f66a62005-03-25 12:31:53 -06008271 */
8272static void ipw_rx(struct ipw_priv *priv)
8273{
8274 struct ipw_rx_mem_buffer *rxb;
8275 struct ipw_rx_packet *pkt;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008276 struct libipw_hdr_4addr *header;
James Ketrenos43f66a62005-03-25 12:31:53 -06008277 u32 r, w, i;
8278 u8 network_packet;
Dan Williams943dbef2008-02-14 17:49:41 -05008279 u8 fill_rx = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008280
James Ketrenosb095c382005-08-24 22:04:42 -05008281 r = ipw_read32(priv, IPW_RX_READ_INDEX);
8282 w = ipw_read32(priv, IPW_RX_WRITE_INDEX);
Dan Williams943dbef2008-02-14 17:49:41 -05008283 i = priv->rxq->read;
8284
8285 if (ipw_rx_queue_space (priv->rxq) > (RX_QUEUE_SIZE / 2))
8286 fill_rx = 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06008287
8288 while (i != r) {
8289 rxb = priv->rxq->queue[i];
James Ketrenos43f66a62005-03-25 12:31:53 -06008290 if (unlikely(rxb == NULL)) {
8291 printk(KERN_CRIT "Queue not allocated!\n");
8292 break;
8293 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008294 priv->rxq->queue[i] = NULL;
8295
8296 pci_dma_sync_single_for_cpu(priv->pci_dev, rxb->dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05008297 IPW_RX_BUF_SIZE,
James Ketrenos43f66a62005-03-25 12:31:53 -06008298 PCI_DMA_FROMDEVICE);
8299
8300 pkt = (struct ipw_rx_packet *)rxb->skb->data;
8301 IPW_DEBUG_RX("Packet: type=%02X seq=%02X bits=%02X\n",
8302 pkt->header.message_type,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008303 pkt->header.rx_seq_num, pkt->header.control_bits);
James Ketrenos43f66a62005-03-25 12:31:53 -06008304
8305 switch (pkt->header.message_type) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008306 case RX_FRAME_TYPE: /* 802.11 frame */ {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008307 struct libipw_rx_stats stats = {
Zhu Yi851ca262006-08-21 11:37:58 +08008308 .rssi = pkt->u.frame.rssi_dbm -
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008309 IPW_RSSI_TO_DBM,
James Ketrenosc848d0a2005-08-24 21:56:24 -05008310 .signal =
Reinette Chatre21f8a732009-08-18 10:25:05 -07008311 pkt->u.frame.rssi_dbm -
Bill Mossb1916082006-02-15 08:50:18 +08008312 IPW_RSSI_TO_DBM + 0x100,
James Ketrenosc848d0a2005-08-24 21:56:24 -05008313 .noise =
8314 le16_to_cpu(pkt->u.frame.noise),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008315 .rate = pkt->u.frame.rate,
8316 .mac_time = jiffies,
8317 .received_channel =
8318 pkt->u.frame.received_channel,
8319 .freq =
8320 (pkt->u.frame.
8321 control & (1 << 0)) ?
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008322 LIBIPW_24GHZ_BAND :
8323 LIBIPW_52GHZ_BAND,
James Ketrenosa613bff2005-08-24 21:43:11 -05008324 .len = le16_to_cpu(pkt->u.frame.length),
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008325 };
James Ketrenos43f66a62005-03-25 12:31:53 -06008326
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008327 if (stats.rssi != 0)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008328 stats.mask |= LIBIPW_STATMASK_RSSI;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008329 if (stats.signal != 0)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008330 stats.mask |= LIBIPW_STATMASK_SIGNAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008331 if (stats.noise != 0)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008332 stats.mask |= LIBIPW_STATMASK_NOISE;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008333 if (stats.rate != 0)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008334 stats.mask |= LIBIPW_STATMASK_RATE;
James Ketrenos43f66a62005-03-25 12:31:53 -06008335
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008336 priv->rx_packets++;
James Ketrenos43f66a62005-03-25 12:31:53 -06008337
Zhu Yid685b8c2006-04-13 17:20:27 +08008338#ifdef CONFIG_IPW2200_PROMISCUOUS
8339 if (priv->prom_net_dev && netif_running(priv->prom_net_dev))
8340 ipw_handle_promiscuous_rx(priv, rxb, &stats);
8341#endif
8342
James Ketrenosb095c382005-08-24 22:04:42 -05008343#ifdef CONFIG_IPW2200_MONITOR
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008344 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
Zhu Yi459d4082006-04-13 17:21:00 +08008345#ifdef CONFIG_IPW2200_RADIOTAP
Zhu Yid685b8c2006-04-13 17:20:27 +08008346
8347 ipw_handle_data_packet_monitor(priv,
8348 rxb,
8349 &stats);
Mike Kershaw24a47db2005-08-26 00:41:54 -05008350#else
Zhu Yid685b8c2006-04-13 17:20:27 +08008351 ipw_handle_data_packet(priv, rxb,
8352 &stats);
Mike Kershaw24a47db2005-08-26 00:41:54 -05008353#endif
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008354 break;
8355 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008356#endif
Jeff Garzikbf794512005-07-31 13:07:26 -04008357
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008358 header =
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008359 (struct libipw_hdr_4addr *)(rxb->skb->
James Ketrenos0dacca12005-09-21 12:23:41 -05008360 data +
8361 IPW_RX_FRAME_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06008362 /* TODO: Check Ad-Hoc dest/source and make sure
8363 * that we are actually parsing these packets
Jeff Garzikbf794512005-07-31 13:07:26 -04008364 * correctly -- we should probably use the
James Ketrenos43f66a62005-03-25 12:31:53 -06008365 * frame control of the packet and disregard
8366 * the current iw_mode */
James Ketrenos43f66a62005-03-25 12:31:53 -06008367
James Ketrenosea2b26e2005-08-24 21:25:16 -05008368 network_packet =
8369 is_network_packet(priv, header);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008370 if (network_packet && priv->assoc_network) {
8371 priv->assoc_network->stats.rssi =
8372 stats.rssi;
Zhu Yi00d21de2006-04-13 17:19:02 +08008373 priv->exp_avg_rssi =
8374 exponential_average(priv->exp_avg_rssi,
8375 stats.rssi, DEPTH_RSSI);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008376 }
8377
8378 IPW_DEBUG_RX("Frame: len=%u\n",
James Ketrenosa613bff2005-08-24 21:43:11 -05008379 le16_to_cpu(pkt->u.frame.length));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008380
James Ketrenosa613bff2005-08-24 21:43:11 -05008381 if (le16_to_cpu(pkt->u.frame.length) <
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008382 libipw_get_hdrlen(le16_to_cpu(
Zhu Yi9d0be032006-02-15 06:18:19 +08008383 header->frame_ctl))) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008384 IPW_DEBUG_DROP
8385 ("Received packet is too small. "
8386 "Dropping.\n");
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00008387 priv->net_dev->stats.rx_errors++;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008388 priv->wstats.discard.misc++;
8389 break;
8390 }
8391
James Ketrenosa613bff2005-08-24 21:43:11 -05008392 switch (WLAN_FC_GET_TYPE
8393 (le16_to_cpu(header->frame_ctl))) {
James Ketrenosb095c382005-08-24 22:04:42 -05008394
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008395 case IEEE80211_FTYPE_MGMT:
James Ketrenosb095c382005-08-24 22:04:42 -05008396 ipw_handle_mgmt_packet(priv, rxb,
8397 &stats);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008398 break;
8399
8400 case IEEE80211_FTYPE_CTL:
8401 break;
8402
8403 case IEEE80211_FTYPE_DATA:
James Ketrenosafbf30a2005-08-25 00:05:33 -05008404 if (unlikely(!network_packet ||
8405 is_duplicate_packet(priv,
8406 header)))
8407 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008408 IPW_DEBUG_DROP("Dropping: "
Johannes Berge1749612008-10-27 15:59:26 -07008409 "%pM, "
8410 "%pM, "
8411 "%pM\n",
8412 header->addr1,
8413 header->addr2,
8414 header->addr3);
James Ketrenosb095c382005-08-24 22:04:42 -05008415 break;
8416 }
8417
8418 ipw_handle_data_packet(priv, rxb,
8419 &stats);
8420
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008421 break;
8422 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008423 break;
8424 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008425
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008426 case RX_HOST_NOTIFICATION_TYPE:{
8427 IPW_DEBUG_RX
8428 ("Notification: subtype=%02X flags=%02X size=%d\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06008429 pkt->u.notification.subtype,
8430 pkt->u.notification.flags,
Zhu Yi720eeb42006-12-05 14:41:40 +08008431 le16_to_cpu(pkt->u.notification.size));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008432 ipw_rx_notification(priv, &pkt->u.notification);
8433 break;
8434 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008435
8436 default:
8437 IPW_DEBUG_RX("Bad Rx packet of type %d\n",
8438 pkt->header.message_type);
8439 break;
8440 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008441
8442 /* For now we just don't re-use anything. We can tweak this
8443 * later to try and re-use notification packets and SKBs that
James Ketrenos43f66a62005-03-25 12:31:53 -06008444 * fail to Rx correctly */
8445 if (rxb->skb != NULL) {
8446 dev_kfree_skb_any(rxb->skb);
8447 rxb->skb = NULL;
8448 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008449
James Ketrenos43f66a62005-03-25 12:31:53 -06008450 pci_unmap_single(priv->pci_dev, rxb->dma_addr,
James Ketrenosb095c382005-08-24 22:04:42 -05008451 IPW_RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
James Ketrenos43f66a62005-03-25 12:31:53 -06008452 list_add_tail(&rxb->list, &priv->rxq->rx_used);
Jeff Garzikbf794512005-07-31 13:07:26 -04008453
James Ketrenos43f66a62005-03-25 12:31:53 -06008454 i = (i + 1) % RX_QUEUE_SIZE;
Dan Williams943dbef2008-02-14 17:49:41 -05008455
8456 /* If there are a lot of unsued frames, restock the Rx queue
8457 * so the ucode won't assert */
8458 if (fill_rx) {
8459 priv->rxq->read = i;
8460 ipw_rx_queue_replenish(priv);
8461 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008462 }
8463
8464 /* Backtrack one entry */
Dan Williams943dbef2008-02-14 17:49:41 -05008465 priv->rxq->read = i;
James Ketrenos43f66a62005-03-25 12:31:53 -06008466 ipw_rx_queue_restock(priv);
8467}
8468
James Ketrenosafbf30a2005-08-25 00:05:33 -05008469#define DEFAULT_RTS_THRESHOLD 2304U
8470#define MIN_RTS_THRESHOLD 1U
8471#define MAX_RTS_THRESHOLD 2304U
8472#define DEFAULT_BEACON_INTERVAL 100U
8473#define DEFAULT_SHORT_RETRY_LIMIT 7U
8474#define DEFAULT_LONG_RETRY_LIMIT 4U
8475
Zhu Yid6d5b5c2006-02-16 16:21:09 +08008476/**
8477 * ipw_sw_reset
8478 * @option: options to control different reset behaviour
8479 * 0 = reset everything except the 'disable' module_param
8480 * 1 = reset everything and print out driver info (for probe only)
8481 * 2 = reset everything
8482 */
8483static int ipw_sw_reset(struct ipw_priv *priv, int option)
James Ketrenos43f66a62005-03-25 12:31:53 -06008484{
James Ketrenosafbf30a2005-08-25 00:05:33 -05008485 int band, modulation;
8486 int old_mode = priv->ieee->iw_mode;
James Ketrenos43f66a62005-03-25 12:31:53 -06008487
James Ketrenosafbf30a2005-08-25 00:05:33 -05008488 /* Initialize module parameter values here */
8489 priv->config = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008490
James Ketrenosafbf30a2005-08-25 00:05:33 -05008491 /* We default to disabling the LED code as right now it causes
8492 * too many systems to lock up... */
Reinette Chatre21f8a732009-08-18 10:25:05 -07008493 if (!led_support)
James Ketrenosafbf30a2005-08-25 00:05:33 -05008494 priv->config |= CFG_NO_LED;
James Ketrenos43f66a62005-03-25 12:31:53 -06008495
James Ketrenosafbf30a2005-08-25 00:05:33 -05008496 if (associate)
8497 priv->config |= CFG_ASSOCIATE;
8498 else
8499 IPW_DEBUG_INFO("Auto associate disabled.\n");
Jeff Garzikbf794512005-07-31 13:07:26 -04008500
James Ketrenosafbf30a2005-08-25 00:05:33 -05008501 if (auto_create)
8502 priv->config |= CFG_ADHOC_CREATE;
8503 else
8504 IPW_DEBUG_INFO("Auto adhoc creation disabled.\n");
8505
Zhu Yi17ed0812006-01-24 16:36:31 +08008506 priv->config &= ~CFG_STATIC_ESSID;
8507 priv->essid_len = 0;
8508 memset(priv->essid, 0, IW_ESSID_MAX_SIZE);
8509
Zhu Yid6d5b5c2006-02-16 16:21:09 +08008510 if (disable && option) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008511 priv->status |= STATUS_RF_KILL_SW;
8512 IPW_DEBUG_INFO("Radio disabled.\n");
James Ketrenos43f66a62005-03-25 12:31:53 -06008513 }
8514
Reinette Chatre21f8a732009-08-18 10:25:05 -07008515 if (default_channel != 0) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008516 priv->config |= CFG_STATIC_CHANNEL;
Reinette Chatre21f8a732009-08-18 10:25:05 -07008517 priv->channel = default_channel;
8518 IPW_DEBUG_INFO("Bind to static channel %d\n", default_channel);
James Ketrenosafbf30a2005-08-25 00:05:33 -05008519 /* TODO: Validate that provided channel is in range */
8520 }
Zhu Yie43e3c12006-04-13 17:20:45 +08008521#ifdef CONFIG_IPW2200_QOS
James Ketrenosafbf30a2005-08-25 00:05:33 -05008522 ipw_qos_init(priv, qos_enable, qos_burst_enable,
8523 burst_duration_CCK, burst_duration_OFDM);
Zhu Yie43e3c12006-04-13 17:20:45 +08008524#endif /* CONFIG_IPW2200_QOS */
James Ketrenosafbf30a2005-08-25 00:05:33 -05008525
Reinette Chatre21f8a732009-08-18 10:25:05 -07008526 switch (network_mode) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008527 case 1:
8528 priv->ieee->iw_mode = IW_MODE_ADHOC;
8529 priv->net_dev->type = ARPHRD_ETHER;
8530
8531 break;
8532#ifdef CONFIG_IPW2200_MONITOR
8533 case 2:
8534 priv->ieee->iw_mode = IW_MODE_MONITOR;
Zhu Yi459d4082006-04-13 17:21:00 +08008535#ifdef CONFIG_IPW2200_RADIOTAP
Mike Kershaw24a47db2005-08-26 00:41:54 -05008536 priv->net_dev->type = ARPHRD_IEEE80211_RADIOTAP;
8537#else
James Ketrenosafbf30a2005-08-25 00:05:33 -05008538 priv->net_dev->type = ARPHRD_IEEE80211;
Mike Kershaw24a47db2005-08-26 00:41:54 -05008539#endif
James Ketrenosafbf30a2005-08-25 00:05:33 -05008540 break;
8541#endif
8542 default:
8543 case 0:
8544 priv->net_dev->type = ARPHRD_ETHER;
8545 priv->ieee->iw_mode = IW_MODE_INFRA;
8546 break;
James Ketrenos43f66a62005-03-25 12:31:53 -06008547 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008548
James Ketrenosafbf30a2005-08-25 00:05:33 -05008549 if (hwcrypto) {
8550 priv->ieee->host_encrypt = 0;
8551 priv->ieee->host_encrypt_msdu = 0;
8552 priv->ieee->host_decrypt = 0;
Hong Liu567deaf2005-08-31 18:07:22 +08008553 priv->ieee->host_mc_decrypt = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008554 }
James Ketrenosafbf30a2005-08-25 00:05:33 -05008555 IPW_DEBUG_INFO("Hardware crypto [%s]\n", hwcrypto ? "on" : "off");
James Ketrenos43f66a62005-03-25 12:31:53 -06008556
Zhu Yie402c932005-08-05 17:20:40 +08008557 /* IPW2200/2915 is abled to do hardware fragmentation. */
8558 priv->ieee->host_open_frag = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008559
James Ketrenosafbf30a2005-08-25 00:05:33 -05008560 if ((priv->pci_dev->device == 0x4223) ||
8561 (priv->pci_dev->device == 0x4224)) {
Zhu Yie8c69e22006-02-17 08:25:12 +08008562 if (option == 1)
James Ketrenosafbf30a2005-08-25 00:05:33 -05008563 printk(KERN_INFO DRV_NAME
8564 ": Detected Intel PRO/Wireless 2915ABG Network "
8565 "Connection\n");
8566 priv->ieee->abg_true = 1;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008567 band = LIBIPW_52GHZ_BAND | LIBIPW_24GHZ_BAND;
8568 modulation = LIBIPW_OFDM_MODULATION |
8569 LIBIPW_CCK_MODULATION;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008570 priv->adapter = IPW_2915ABG;
8571 priv->ieee->mode = IEEE_A | IEEE_G | IEEE_B;
James Ketrenos43f66a62005-03-25 12:31:53 -06008572 } else {
Zhu Yie8c69e22006-02-17 08:25:12 +08008573 if (option == 1)
James Ketrenosafbf30a2005-08-25 00:05:33 -05008574 printk(KERN_INFO DRV_NAME
8575 ": Detected Intel PRO/Wireless 2200BG Network "
8576 "Connection\n");
8577
8578 priv->ieee->abg_true = 0;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008579 band = LIBIPW_24GHZ_BAND;
8580 modulation = LIBIPW_OFDM_MODULATION |
8581 LIBIPW_CCK_MODULATION;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008582 priv->adapter = IPW_2200BG;
8583 priv->ieee->mode = IEEE_G | IEEE_B;
James Ketrenos43f66a62005-03-25 12:31:53 -06008584 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008585
James Ketrenosafbf30a2005-08-25 00:05:33 -05008586 priv->ieee->freq_band = band;
8587 priv->ieee->modulation = modulation;
Jeff Garzikbf794512005-07-31 13:07:26 -04008588
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008589 priv->rates_mask = LIBIPW_DEFAULT_RATES_MASK;
James Ketrenos43f66a62005-03-25 12:31:53 -06008590
James Ketrenosafbf30a2005-08-25 00:05:33 -05008591 priv->disassociate_threshold = IPW_MB_DISASSOCIATE_THRESHOLD_DEFAULT;
8592 priv->roaming_threshold = IPW_MB_ROAMING_THRESHOLD_DEFAULT;
James Ketrenos43f66a62005-03-25 12:31:53 -06008593
James Ketrenosafbf30a2005-08-25 00:05:33 -05008594 priv->rts_threshold = DEFAULT_RTS_THRESHOLD;
8595 priv->short_retry_limit = DEFAULT_SHORT_RETRY_LIMIT;
8596 priv->long_retry_limit = DEFAULT_LONG_RETRY_LIMIT;
Jeff Garzikbf794512005-07-31 13:07:26 -04008597
James Ketrenosafbf30a2005-08-25 00:05:33 -05008598 /* If power management is turned on, default to AC mode */
8599 priv->power_mode = IPW_POWER_AC;
8600 priv->tx_power = IPW_TX_POWER_DEFAULT;
James Ketrenos43f66a62005-03-25 12:31:53 -06008601
Zhu Yi0ece35b2005-08-05 17:26:51 +08008602 return old_mode == priv->ieee->iw_mode;
James Ketrenos43f66a62005-03-25 12:31:53 -06008603}
8604
8605/*
8606 * This file defines the Wireless Extension handlers. It does not
8607 * define any methods of hardware manipulation and relies on the
8608 * functions defined in ipw_main to provide the HW interaction.
Jeff Garzikbf794512005-07-31 13:07:26 -04008609 *
8610 * The exception to this is the use of the ipw_get_ordinal()
Lucas De Marchi25985ed2011-03-30 22:57:33 -03008611 * function used to poll the hardware vs. making unnecessary calls.
James Ketrenos43f66a62005-03-25 12:31:53 -06008612 *
8613 */
8614
James Ketrenos43f66a62005-03-25 12:31:53 -06008615static int ipw_set_channel(struct ipw_priv *priv, u8 channel)
8616{
8617 if (channel == 0) {
8618 IPW_DEBUG_INFO("Setting channel to ANY (0)\n");
8619 priv->config &= ~CFG_STATIC_CHANNEL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008620 IPW_DEBUG_ASSOC("Attempting to associate with new "
8621 "parameters.\n");
8622 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06008623 return 0;
8624 }
8625
8626 priv->config |= CFG_STATIC_CHANNEL;
8627
8628 if (priv->channel == channel) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008629 IPW_DEBUG_INFO("Request to set channel to current value (%d)\n",
8630 channel);
James Ketrenos43f66a62005-03-25 12:31:53 -06008631 return 0;
8632 }
8633
8634 IPW_DEBUG_INFO("Setting channel to %i\n", (int)channel);
8635 priv->channel = channel;
8636
James Ketrenosb095c382005-08-24 22:04:42 -05008637#ifdef CONFIG_IPW2200_MONITOR
8638 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008639 int i;
James Ketrenosb095c382005-08-24 22:04:42 -05008640 if (priv->status & STATUS_SCANNING) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008641 IPW_DEBUG_SCAN("Scan abort triggered due to "
James Ketrenosb095c382005-08-24 22:04:42 -05008642 "channel change.\n");
James Ketrenosafbf30a2005-08-25 00:05:33 -05008643 ipw_abort_scan(priv);
James Ketrenosb095c382005-08-24 22:04:42 -05008644 }
8645
8646 for (i = 1000; i && (priv->status & STATUS_SCANNING); i--)
8647 udelay(10);
8648
8649 if (priv->status & STATUS_SCANNING)
8650 IPW_DEBUG_SCAN("Still scanning...\n");
8651 else
8652 IPW_DEBUG_SCAN("Took %dms to abort current scan\n",
8653 1000 - i);
8654
8655 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008656 }
James Ketrenosb095c382005-08-24 22:04:42 -05008657#endif /* CONFIG_IPW2200_MONITOR */
8658
James Ketrenosc848d0a2005-08-24 21:56:24 -05008659 /* Network configuration changed -- force [re]association */
8660 IPW_DEBUG_ASSOC("[re]association triggered due to channel change.\n");
8661 if (!ipw_disassociate(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -06008662 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06008663
8664 return 0;
8665}
8666
Jeff Garzikbf794512005-07-31 13:07:26 -04008667static int ipw_wx_set_freq(struct net_device *dev,
8668 struct iw_request_info *info,
8669 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06008670{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008671 struct ipw_priv *priv = libipw_priv(dev);
8672 const struct libipw_geo *geo = libipw_get_geo(priv->ieee);
James Ketrenos43f66a62005-03-25 12:31:53 -06008673 struct iw_freq *fwrq = &wrqu->freq;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008674 int ret = 0, i;
Liu Hong1fe0adb2005-08-19 09:33:10 -05008675 u8 channel, flags;
8676 int band;
Jeff Garzikbf794512005-07-31 13:07:26 -04008677
James Ketrenosb095c382005-08-24 22:04:42 -05008678 if (fwrq->m == 0) {
8679 IPW_DEBUG_WX("SET Freq/Channel -> any\n");
Zhu Yi46441512006-01-24 16:37:59 +08008680 mutex_lock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05008681 ret = ipw_set_channel(priv, 0);
Zhu Yi46441512006-01-24 16:37:59 +08008682 mutex_unlock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05008683 return ret;
8684 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008685 /* if setting by freq convert to channel */
8686 if (fwrq->e == 1) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008687 channel = libipw_freq_to_channel(priv->ieee, fwrq->m);
James Ketrenosb095c382005-08-24 22:04:42 -05008688 if (channel == 0)
8689 return -EINVAL;
8690 } else
8691 channel = fwrq->m;
Jeff Garzikbf794512005-07-31 13:07:26 -04008692
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008693 if (!(band = libipw_is_valid_channel(priv->ieee, channel)))
James Ketrenosb095c382005-08-24 22:04:42 -05008694 return -EINVAL;
Jeff Garzikbf794512005-07-31 13:07:26 -04008695
Liu Hong1fe0adb2005-08-19 09:33:10 -05008696 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008697 i = libipw_channel_to_index(priv->ieee, channel);
James Ketrenosafbf30a2005-08-25 00:05:33 -05008698 if (i == -1)
8699 return -EINVAL;
Liu Hong1fe0adb2005-08-19 09:33:10 -05008700
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008701 flags = (band == LIBIPW_24GHZ_BAND) ?
Liu Hong1fe0adb2005-08-19 09:33:10 -05008702 geo->bg[i].flags : geo->a[i].flags;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008703 if (flags & LIBIPW_CH_PASSIVE_ONLY) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05008704 IPW_DEBUG_WX("Invalid Ad-Hoc channel for 802.11a\n");
8705 return -EINVAL;
James Ketrenos43f66a62005-03-25 12:31:53 -06008706 }
8707 }
Jeff Garzikbf794512005-07-31 13:07:26 -04008708
Frans Pop9fd1ea42010-03-24 19:46:31 +01008709 IPW_DEBUG_WX("SET Freq/Channel -> %d\n", fwrq->m);
Zhu Yi46441512006-01-24 16:37:59 +08008710 mutex_lock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05008711 ret = ipw_set_channel(priv, channel);
Zhu Yi46441512006-01-24 16:37:59 +08008712 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05008713 return ret;
James Ketrenos43f66a62005-03-25 12:31:53 -06008714}
8715
Jeff Garzikbf794512005-07-31 13:07:26 -04008716static int ipw_wx_get_freq(struct net_device *dev,
8717 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008718 union iwreq_data *wrqu, char *extra)
8719{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008720 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06008721
8722 wrqu->freq.e = 0;
8723
8724 /* If we are associated, trying to associate, or have a statically
8725 * configured CHANNEL then return that; otherwise return ANY */
Zhu Yi46441512006-01-24 16:37:59 +08008726 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008727 if (priv->config & CFG_STATIC_CHANNEL ||
Zhu Yic580f672006-08-21 11:37:01 +08008728 priv->status & (STATUS_ASSOCIATING | STATUS_ASSOCIATED)) {
8729 int i;
8730
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008731 i = libipw_channel_to_index(priv->ieee, priv->channel);
Zhu Yic580f672006-08-21 11:37:01 +08008732 BUG_ON(i == -1);
8733 wrqu->freq.e = 1;
8734
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008735 switch (libipw_is_valid_channel(priv->ieee, priv->channel)) {
8736 case LIBIPW_52GHZ_BAND:
Zhu Yic580f672006-08-21 11:37:01 +08008737 wrqu->freq.m = priv->ieee->geo.a[i].freq * 100000;
8738 break;
8739
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008740 case LIBIPW_24GHZ_BAND:
Zhu Yic580f672006-08-21 11:37:01 +08008741 wrqu->freq.m = priv->ieee->geo.bg[i].freq * 100000;
8742 break;
8743
8744 default:
8745 BUG();
8746 }
8747 } else
James Ketrenos43f66a62005-03-25 12:31:53 -06008748 wrqu->freq.m = 0;
8749
Zhu Yi46441512006-01-24 16:37:59 +08008750 mutex_unlock(&priv->mutex);
Frans Pop9fd1ea42010-03-24 19:46:31 +01008751 IPW_DEBUG_WX("GET Freq/Channel -> %d\n", priv->channel);
James Ketrenos43f66a62005-03-25 12:31:53 -06008752 return 0;
8753}
8754
Jeff Garzikbf794512005-07-31 13:07:26 -04008755static int ipw_wx_set_mode(struct net_device *dev,
8756 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008757 union iwreq_data *wrqu, char *extra)
8758{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008759 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06008760 int err = 0;
8761
8762 IPW_DEBUG_WX("Set MODE: %d\n", wrqu->mode);
8763
James Ketrenos43f66a62005-03-25 12:31:53 -06008764 switch (wrqu->mode) {
James Ketrenosb095c382005-08-24 22:04:42 -05008765#ifdef CONFIG_IPW2200_MONITOR
James Ketrenos43f66a62005-03-25 12:31:53 -06008766 case IW_MODE_MONITOR:
8767#endif
8768 case IW_MODE_ADHOC:
8769 case IW_MODE_INFRA:
8770 break;
8771 case IW_MODE_AUTO:
8772 wrqu->mode = IW_MODE_INFRA;
8773 break;
8774 default:
8775 return -EINVAL;
8776 }
James Ketrenosb095c382005-08-24 22:04:42 -05008777 if (wrqu->mode == priv->ieee->iw_mode)
8778 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06008779
Zhu Yi46441512006-01-24 16:37:59 +08008780 mutex_lock(&priv->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -05008781
8782 ipw_sw_reset(priv, 0);
8783
James Ketrenosb095c382005-08-24 22:04:42 -05008784#ifdef CONFIG_IPW2200_MONITOR
Jeff Garzikbf794512005-07-31 13:07:26 -04008785 if (priv->ieee->iw_mode == IW_MODE_MONITOR)
James Ketrenos43f66a62005-03-25 12:31:53 -06008786 priv->net_dev->type = ARPHRD_ETHER;
Jeff Garzikbf794512005-07-31 13:07:26 -04008787
8788 if (wrqu->mode == IW_MODE_MONITOR)
Zhu Yi459d4082006-04-13 17:21:00 +08008789#ifdef CONFIG_IPW2200_RADIOTAP
Mike Kershaw24a47db2005-08-26 00:41:54 -05008790 priv->net_dev->type = ARPHRD_IEEE80211_RADIOTAP;
8791#else
James Ketrenos43f66a62005-03-25 12:31:53 -06008792 priv->net_dev->type = ARPHRD_IEEE80211;
Mike Kershaw24a47db2005-08-26 00:41:54 -05008793#endif
James Ketrenosb095c382005-08-24 22:04:42 -05008794#endif /* CONFIG_IPW2200_MONITOR */
Jeff Garzikbf794512005-07-31 13:07:26 -04008795
Jeff Garzikbf794512005-07-31 13:07:26 -04008796 /* Free the existing firmware and reset the fw_loaded
Nick Andrew877d0312009-01-26 11:06:57 +01008797 * flag so ipw_load() will bring in the new firmware */
James Ketrenosafbf30a2005-08-25 00:05:33 -05008798 free_firmware();
James Ketrenos43f66a62005-03-25 12:31:53 -06008799
8800 priv->ieee->iw_mode = wrqu->mode;
Jeff Garzikbf794512005-07-31 13:07:26 -04008801
Tejun Heobcb6d912011-01-26 12:12:50 +01008802 schedule_work(&priv->adapter_restart);
Zhu Yi46441512006-01-24 16:37:59 +08008803 mutex_unlock(&priv->mutex);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008804 return err;
James Ketrenos43f66a62005-03-25 12:31:53 -06008805}
8806
Jeff Garzikbf794512005-07-31 13:07:26 -04008807static int ipw_wx_get_mode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008808 struct iw_request_info *info,
8809 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06008810{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008811 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08008812 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008813 wrqu->mode = priv->ieee->iw_mode;
8814 IPW_DEBUG_WX("Get MODE -> %d\n", wrqu->mode);
Zhu Yi46441512006-01-24 16:37:59 +08008815 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008816 return 0;
8817}
8818
James Ketrenos43f66a62005-03-25 12:31:53 -06008819/* Values are in microsecond */
8820static const s32 timeout_duration[] = {
8821 350000,
8822 250000,
8823 75000,
8824 37000,
8825 25000,
8826};
8827
8828static const s32 period_duration[] = {
8829 400000,
8830 700000,
8831 1000000,
8832 1000000,
8833 1000000
8834};
8835
Jeff Garzikbf794512005-07-31 13:07:26 -04008836static int ipw_wx_get_range(struct net_device *dev,
8837 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008838 union iwreq_data *wrqu, char *extra)
8839{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008840 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06008841 struct iw_range *range = (struct iw_range *)extra;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008842 const struct libipw_geo *geo = libipw_get_geo(priv->ieee);
James Ketrenosb095c382005-08-24 22:04:42 -05008843 int i = 0, j;
James Ketrenos43f66a62005-03-25 12:31:53 -06008844
8845 wrqu->data.length = sizeof(*range);
8846 memset(range, 0, sizeof(*range));
8847
8848 /* 54Mbs == ~27 Mb/s real (802.11g) */
Jeff Garzikbf794512005-07-31 13:07:26 -04008849 range->throughput = 27 * 1000 * 1000;
James Ketrenos43f66a62005-03-25 12:31:53 -06008850
8851 range->max_qual.qual = 100;
8852 /* TODO: Find real max RSSI and stick here */
8853 range->max_qual.level = 0;
Bill Mossb1916082006-02-15 08:50:18 +08008854 range->max_qual.noise = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008855 range->max_qual.updated = 7; /* Updated all three */
James Ketrenos43f66a62005-03-25 12:31:53 -06008856
8857 range->avg_qual.qual = 70;
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02008858 /* TODO: Find real 'good' to 'bad' threshold value for RSSI */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008859 range->avg_qual.level = 0; /* FIXME to real average level */
James Ketrenos43f66a62005-03-25 12:31:53 -06008860 range->avg_qual.noise = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008861 range->avg_qual.updated = 7; /* Updated all three */
Zhu Yi46441512006-01-24 16:37:59 +08008862 mutex_lock(&priv->mutex);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008863 range->num_bitrates = min(priv->rates.num_rates, (u8) IW_MAX_BITRATES);
James Ketrenos43f66a62005-03-25 12:31:53 -06008864
Jeff Garzikbf794512005-07-31 13:07:26 -04008865 for (i = 0; i < range->num_bitrates; i++)
8866 range->bitrate[i] = (priv->rates.supported_rates[i] & 0x7F) *
Jeff Garzik0edd5b42005-09-07 00:48:31 -04008867 500000;
Jeff Garzikbf794512005-07-31 13:07:26 -04008868
James Ketrenos43f66a62005-03-25 12:31:53 -06008869 range->max_rts = DEFAULT_RTS_THRESHOLD;
8870 range->min_frag = MIN_FRAG_THRESHOLD;
8871 range->max_frag = MAX_FRAG_THRESHOLD;
8872
8873 range->encoding_size[0] = 5;
Jeff Garzikbf794512005-07-31 13:07:26 -04008874 range->encoding_size[1] = 13;
James Ketrenos43f66a62005-03-25 12:31:53 -06008875 range->num_encoding_sizes = 2;
8876 range->max_encoding_tokens = WEP_KEYS;
8877
8878 /* Set the Wireless Extension versions */
8879 range->we_version_compiled = WIRELESS_EXT;
Dan Williamsf1b50862006-01-30 13:58:56 -05008880 range->we_version_source = 18;
James Ketrenos43f66a62005-03-25 12:31:53 -06008881
James Ketrenosb095c382005-08-24 22:04:42 -05008882 i = 0;
8883 if (priv->ieee->mode & (IEEE_B | IEEE_G)) {
Zhu Yie815de42006-03-02 05:55:51 +08008884 for (j = 0; j < geo->bg_channels && i < IW_MAX_FREQUENCIES; j++) {
8885 if ((priv->ieee->iw_mode == IW_MODE_ADHOC) &&
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008886 (geo->bg[j].flags & LIBIPW_CH_PASSIVE_ONLY))
Zhu Yie815de42006-03-02 05:55:51 +08008887 continue;
8888
James Ketrenosb095c382005-08-24 22:04:42 -05008889 range->freq[i].i = geo->bg[j].channel;
8890 range->freq[i].m = geo->bg[j].freq * 100000;
8891 range->freq[i].e = 1;
Zhu Yie815de42006-03-02 05:55:51 +08008892 i++;
James Ketrenosb095c382005-08-24 22:04:42 -05008893 }
James Ketrenos43f66a62005-03-25 12:31:53 -06008894 }
James Ketrenosb095c382005-08-24 22:04:42 -05008895
8896 if (priv->ieee->mode & IEEE_A) {
Zhu Yie815de42006-03-02 05:55:51 +08008897 for (j = 0; j < geo->a_channels && i < IW_MAX_FREQUENCIES; j++) {
8898 if ((priv->ieee->iw_mode == IW_MODE_ADHOC) &&
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008899 (geo->a[j].flags & LIBIPW_CH_PASSIVE_ONLY))
Zhu Yie815de42006-03-02 05:55:51 +08008900 continue;
8901
James Ketrenosb095c382005-08-24 22:04:42 -05008902 range->freq[i].i = geo->a[j].channel;
8903 range->freq[i].m = geo->a[j].freq * 100000;
8904 range->freq[i].e = 1;
Zhu Yie815de42006-03-02 05:55:51 +08008905 i++;
James Ketrenosb095c382005-08-24 22:04:42 -05008906 }
8907 }
8908
8909 range->num_channels = i;
8910 range->num_frequency = i;
8911
Zhu Yi46441512006-01-24 16:37:59 +08008912 mutex_unlock(&priv->mutex);
Benoit Boissinot97a78ca2005-09-15 17:30:28 +00008913
8914 /* Event capability (kernel + driver) */
8915 range->event_capa[0] = (IW_EVENT_CAPA_K_0 |
8916 IW_EVENT_CAPA_MASK(SIOCGIWTHRSPY) |
Zhu Yi07f02e42006-04-13 17:19:25 +08008917 IW_EVENT_CAPA_MASK(SIOCGIWAP) |
8918 IW_EVENT_CAPA_MASK(SIOCGIWSCAN));
Benoit Boissinot97a78ca2005-09-15 17:30:28 +00008919 range->event_capa[1] = IW_EVENT_CAPA_K_1;
James Ketrenos43f66a62005-03-25 12:31:53 -06008920
Dan Williamsf1b50862006-01-30 13:58:56 -05008921 range->enc_capa = IW_ENC_CAPA_WPA | IW_ENC_CAPA_WPA2 |
8922 IW_ENC_CAPA_CIPHER_TKIP | IW_ENC_CAPA_CIPHER_CCMP;
8923
Dan Williams374fdfb2007-12-12 10:25:07 -05008924 range->scan_capa = IW_SCAN_CAPA_ESSID | IW_SCAN_CAPA_TYPE;
8925
James Ketrenos43f66a62005-03-25 12:31:53 -06008926 IPW_DEBUG_WX("GET Range\n");
8927 return 0;
8928}
8929
Jeff Garzikbf794512005-07-31 13:07:26 -04008930static int ipw_wx_set_wap(struct net_device *dev,
8931 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008932 union iwreq_data *wrqu, char *extra)
8933{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008934 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06008935
Jeff Garzikbf794512005-07-31 13:07:26 -04008936 if (wrqu->ap_addr.sa_family != ARPHRD_ETHER)
James Ketrenos43f66a62005-03-25 12:31:53 -06008937 return -EINVAL;
Zhu Yi46441512006-01-24 16:37:59 +08008938 mutex_lock(&priv->mutex);
Wei Yongjun7949d202012-08-23 14:54:05 +08008939 if (is_broadcast_ether_addr(wrqu->ap_addr.sa_data) ||
8940 is_zero_ether_addr(wrqu->ap_addr.sa_data)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06008941 /* we disable mandatory BSSID association */
8942 IPW_DEBUG_WX("Setting AP BSSID to ANY\n");
8943 priv->config &= ~CFG_STATIC_BSSID;
James Ketrenosc848d0a2005-08-24 21:56:24 -05008944 IPW_DEBUG_ASSOC("Attempting to associate with new "
8945 "parameters.\n");
8946 ipw_associate(priv);
Zhu Yi46441512006-01-24 16:37:59 +08008947 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008948 return 0;
8949 }
8950
8951 priv->config |= CFG_STATIC_BSSID;
dingtianhong36325f32013-12-26 19:41:23 +08008952 if (ether_addr_equal(priv->bssid, wrqu->ap_addr.sa_data)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06008953 IPW_DEBUG_WX("BSSID set to current BSSID.\n");
Zhu Yi46441512006-01-24 16:37:59 +08008954 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008955 return 0;
8956 }
8957
Johannes Berge1749612008-10-27 15:59:26 -07008958 IPW_DEBUG_WX("Setting mandatory BSSID to %pM\n",
8959 wrqu->ap_addr.sa_data);
James Ketrenos43f66a62005-03-25 12:31:53 -06008960
8961 memcpy(priv->bssid, wrqu->ap_addr.sa_data, ETH_ALEN);
8962
James Ketrenosc848d0a2005-08-24 21:56:24 -05008963 /* Network configuration changed -- force [re]association */
8964 IPW_DEBUG_ASSOC("[re]association triggered due to BSSID change.\n");
8965 if (!ipw_disassociate(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -06008966 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06008967
Zhu Yi46441512006-01-24 16:37:59 +08008968 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008969 return 0;
8970}
8971
Jeff Garzikbf794512005-07-31 13:07:26 -04008972static int ipw_wx_get_wap(struct net_device *dev,
8973 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008974 union iwreq_data *wrqu, char *extra)
8975{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008976 struct ipw_priv *priv = libipw_priv(dev);
Joe Perches0795af52007-10-03 17:59:30 -07008977
James Ketrenos43f66a62005-03-25 12:31:53 -06008978 /* If we are associated, trying to associate, or have a statically
8979 * configured BSSID then return that; otherwise return ANY */
Zhu Yi46441512006-01-24 16:37:59 +08008980 mutex_lock(&priv->mutex);
Jeff Garzikbf794512005-07-31 13:07:26 -04008981 if (priv->config & CFG_STATIC_BSSID ||
James Ketrenos43f66a62005-03-25 12:31:53 -06008982 priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) {
8983 wrqu->ap_addr.sa_family = ARPHRD_ETHER;
James Ketrenosafbf30a2005-08-25 00:05:33 -05008984 memcpy(wrqu->ap_addr.sa_data, priv->bssid, ETH_ALEN);
James Ketrenos43f66a62005-03-25 12:31:53 -06008985 } else
Joe Perches93803b32015-03-02 19:54:49 -08008986 eth_zero_addr(wrqu->ap_addr.sa_data);
James Ketrenos43f66a62005-03-25 12:31:53 -06008987
Johannes Berge1749612008-10-27 15:59:26 -07008988 IPW_DEBUG_WX("Getting WAP BSSID: %pM\n",
8989 wrqu->ap_addr.sa_data);
Zhu Yi46441512006-01-24 16:37:59 +08008990 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06008991 return 0;
8992}
8993
Jeff Garzikbf794512005-07-31 13:07:26 -04008994static int ipw_wx_set_essid(struct net_device *dev,
8995 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06008996 union iwreq_data *wrqu, char *extra)
8997{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008998 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yiab644b02006-08-21 11:37:13 +08008999 int length;
James Ketrenos43f66a62005-03-25 12:31:53 -06009000
Zhu Yiab644b02006-08-21 11:37:13 +08009001 mutex_lock(&priv->mutex);
9002
9003 if (!wrqu->essid.flags)
9004 {
9005 IPW_DEBUG_WX("Setting ESSID to ANY\n");
9006 ipw_disassociate(priv);
9007 priv->config &= ~CFG_STATIC_ESSID;
9008 ipw_associate(priv);
9009 mutex_unlock(&priv->mutex);
9010 return 0;
9011 }
9012
Zhu Yia9f0d422006-08-21 11:37:26 +08009013 length = min((int)wrqu->essid.length, IW_ESSID_MAX_SIZE);
James Ketrenos43f66a62005-03-25 12:31:53 -06009014
9015 priv->config |= CFG_STATIC_ESSID;
9016
Zhu Yia9f0d422006-08-21 11:37:26 +08009017 if (priv->essid_len == length && !memcmp(priv->essid, extra, length)
9018 && (priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING))) {
James Ketrenos43f66a62005-03-25 12:31:53 -06009019 IPW_DEBUG_WX("ESSID set to current ESSID.\n");
Zhu Yi46441512006-01-24 16:37:59 +08009020 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009021 return 0;
9022 }
9023
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07009024 IPW_DEBUG_WX("Setting ESSID: '%*pE' (%d)\n", length, extra, length);
James Ketrenos43f66a62005-03-25 12:31:53 -06009025
9026 priv->essid_len = length;
Zhu Yia9f0d422006-08-21 11:37:26 +08009027 memcpy(priv->essid, extra, priv->essid_len);
Jeff Garzikbf794512005-07-31 13:07:26 -04009028
James Ketrenosc848d0a2005-08-24 21:56:24 -05009029 /* Network configuration changed -- force [re]association */
9030 IPW_DEBUG_ASSOC("[re]association triggered due to ESSID change.\n");
9031 if (!ipw_disassociate(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -06009032 ipw_associate(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06009033
Zhu Yi46441512006-01-24 16:37:59 +08009034 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009035 return 0;
9036}
9037
Jeff Garzikbf794512005-07-31 13:07:26 -04009038static int ipw_wx_get_essid(struct net_device *dev,
9039 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009040 union iwreq_data *wrqu, char *extra)
9041{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009042 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009043
9044 /* If we are associated, trying to associate, or have a statically
9045 * configured ESSID then return that; otherwise return ANY */
Zhu Yi46441512006-01-24 16:37:59 +08009046 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009047 if (priv->config & CFG_STATIC_ESSID ||
Jeff Garzikbf794512005-07-31 13:07:26 -04009048 priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) {
Andy Shevchenko4b4890c2014-10-13 15:55:22 -07009049 IPW_DEBUG_WX("Getting essid: '%*pE'\n",
9050 priv->essid_len, priv->essid);
Jeff Garzikbf794512005-07-31 13:07:26 -04009051 memcpy(extra, priv->essid, priv->essid_len);
James Ketrenos43f66a62005-03-25 12:31:53 -06009052 wrqu->essid.length = priv->essid_len;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009053 wrqu->essid.flags = 1; /* active */
James Ketrenos43f66a62005-03-25 12:31:53 -06009054 } else {
9055 IPW_DEBUG_WX("Getting essid: ANY\n");
9056 wrqu->essid.length = 0;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009057 wrqu->essid.flags = 0; /* active */
James Ketrenos43f66a62005-03-25 12:31:53 -06009058 }
Zhu Yi46441512006-01-24 16:37:59 +08009059 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009060 return 0;
9061}
9062
Jeff Garzikbf794512005-07-31 13:07:26 -04009063static int ipw_wx_set_nick(struct net_device *dev,
9064 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009065 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009066{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009067 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009068
9069 IPW_DEBUG_WX("Setting nick to '%s'\n", extra);
9070 if (wrqu->data.length > IW_ESSID_MAX_SIZE)
9071 return -E2BIG;
Zhu Yi46441512006-01-24 16:37:59 +08009072 mutex_lock(&priv->mutex);
Silvan Jegenc8e49552014-02-25 18:12:52 +01009073 wrqu->data.length = min_t(size_t, wrqu->data.length, sizeof(priv->nick));
James Ketrenos43f66a62005-03-25 12:31:53 -06009074 memset(priv->nick, 0, sizeof(priv->nick));
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009075 memcpy(priv->nick, extra, wrqu->data.length);
James Ketrenos43f66a62005-03-25 12:31:53 -06009076 IPW_DEBUG_TRACE("<<\n");
Zhu Yi46441512006-01-24 16:37:59 +08009077 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009078 return 0;
9079
9080}
9081
Jeff Garzikbf794512005-07-31 13:07:26 -04009082static int ipw_wx_get_nick(struct net_device *dev,
9083 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009084 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009085{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009086 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009087 IPW_DEBUG_WX("Getting nick\n");
Zhu Yi46441512006-01-24 16:37:59 +08009088 mutex_lock(&priv->mutex);
Jean Tourrilhes919ee6d2006-08-29 18:01:40 -07009089 wrqu->data.length = strlen(priv->nick);
James Ketrenos43f66a62005-03-25 12:31:53 -06009090 memcpy(extra, priv->nick, wrqu->data.length);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009091 wrqu->data.flags = 1; /* active */
Zhu Yi46441512006-01-24 16:37:59 +08009092 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009093 return 0;
9094}
9095
Olivier Hochreutiner651be262006-03-08 03:13:55 +08009096static int ipw_wx_set_sens(struct net_device *dev,
9097 struct iw_request_info *info,
9098 union iwreq_data *wrqu, char *extra)
9099{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009100 struct ipw_priv *priv = libipw_priv(dev);
Olivier Hochreutiner651be262006-03-08 03:13:55 +08009101 int err = 0;
9102
9103 IPW_DEBUG_WX("Setting roaming threshold to %d\n", wrqu->sens.value);
9104 IPW_DEBUG_WX("Setting disassociate threshold to %d\n", 3*wrqu->sens.value);
9105 mutex_lock(&priv->mutex);
9106
9107 if (wrqu->sens.fixed == 0)
9108 {
9109 priv->roaming_threshold = IPW_MB_ROAMING_THRESHOLD_DEFAULT;
9110 priv->disassociate_threshold = IPW_MB_DISASSOCIATE_THRESHOLD_DEFAULT;
9111 goto out;
9112 }
9113 if ((wrqu->sens.value > IPW_MB_ROAMING_THRESHOLD_MAX) ||
9114 (wrqu->sens.value < IPW_MB_ROAMING_THRESHOLD_MIN)) {
9115 err = -EINVAL;
9116 goto out;
9117 }
9118
9119 priv->roaming_threshold = wrqu->sens.value;
9120 priv->disassociate_threshold = 3*wrqu->sens.value;
9121 out:
9122 mutex_unlock(&priv->mutex);
9123 return err;
9124}
9125
9126static int ipw_wx_get_sens(struct net_device *dev,
9127 struct iw_request_info *info,
9128 union iwreq_data *wrqu, char *extra)
9129{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009130 struct ipw_priv *priv = libipw_priv(dev);
Olivier Hochreutiner651be262006-03-08 03:13:55 +08009131 mutex_lock(&priv->mutex);
9132 wrqu->sens.fixed = 1;
9133 wrqu->sens.value = priv->roaming_threshold;
9134 mutex_unlock(&priv->mutex);
9135
Frans Pop9fd1ea42010-03-24 19:46:31 +01009136 IPW_DEBUG_WX("GET roaming threshold -> %s %d\n",
Olivier Hochreutiner651be262006-03-08 03:13:55 +08009137 wrqu->power.disabled ? "OFF" : "ON", wrqu->power.value);
9138
9139 return 0;
9140}
9141
James Ketrenos43f66a62005-03-25 12:31:53 -06009142static int ipw_wx_set_rate(struct net_device *dev,
9143 struct iw_request_info *info,
9144 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009145{
James Ketrenosea2b26e2005-08-24 21:25:16 -05009146 /* TODO: We should use semaphores or locks for access to priv */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009147 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009148 u32 target_rate = wrqu->bitrate.value;
9149 u32 fixed, mask;
9150
9151 /* value = -1, fixed = 0 means auto only, so we should use all rates offered by AP */
9152 /* value = X, fixed = 1 means only rate X */
9153 /* value = X, fixed = 0 means all rates lower equal X */
9154
9155 if (target_rate == -1) {
9156 fixed = 0;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009157 mask = LIBIPW_DEFAULT_RATES_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009158 /* Now we should reassociate */
9159 goto apply;
9160 }
9161
9162 mask = 0;
9163 fixed = wrqu->bitrate.fixed;
9164
9165 if (target_rate == 1000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009166 mask |= LIBIPW_CCK_RATE_1MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009167 if (target_rate == 1000000)
9168 goto apply;
9169
9170 if (target_rate == 2000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009171 mask |= LIBIPW_CCK_RATE_2MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009172 if (target_rate == 2000000)
9173 goto apply;
9174
9175 if (target_rate == 5500000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009176 mask |= LIBIPW_CCK_RATE_5MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009177 if (target_rate == 5500000)
9178 goto apply;
9179
9180 if (target_rate == 6000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009181 mask |= LIBIPW_OFDM_RATE_6MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009182 if (target_rate == 6000000)
9183 goto apply;
9184
9185 if (target_rate == 9000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009186 mask |= LIBIPW_OFDM_RATE_9MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009187 if (target_rate == 9000000)
9188 goto apply;
9189
9190 if (target_rate == 11000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009191 mask |= LIBIPW_CCK_RATE_11MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009192 if (target_rate == 11000000)
9193 goto apply;
9194
9195 if (target_rate == 12000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009196 mask |= LIBIPW_OFDM_RATE_12MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009197 if (target_rate == 12000000)
9198 goto apply;
9199
9200 if (target_rate == 18000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009201 mask |= LIBIPW_OFDM_RATE_18MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009202 if (target_rate == 18000000)
9203 goto apply;
9204
9205 if (target_rate == 24000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009206 mask |= LIBIPW_OFDM_RATE_24MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009207 if (target_rate == 24000000)
9208 goto apply;
9209
9210 if (target_rate == 36000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009211 mask |= LIBIPW_OFDM_RATE_36MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009212 if (target_rate == 36000000)
9213 goto apply;
9214
9215 if (target_rate == 48000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009216 mask |= LIBIPW_OFDM_RATE_48MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009217 if (target_rate == 48000000)
9218 goto apply;
9219
9220 if (target_rate == 54000000 || !fixed)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009221 mask |= LIBIPW_OFDM_RATE_54MB_MASK;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009222 if (target_rate == 54000000)
9223 goto apply;
9224
9225 IPW_DEBUG_WX("invalid rate specified, returning error\n");
9226 return -EINVAL;
9227
9228 apply:
9229 IPW_DEBUG_WX("Setting rate mask to 0x%08X [%s]\n",
9230 mask, fixed ? "fixed" : "sub-rates");
Zhu Yi46441512006-01-24 16:37:59 +08009231 mutex_lock(&priv->mutex);
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009232 if (mask == LIBIPW_DEFAULT_RATES_MASK) {
James Ketrenosea2b26e2005-08-24 21:25:16 -05009233 priv->config &= ~CFG_FIXED_RATE;
James Ketrenosb095c382005-08-24 22:04:42 -05009234 ipw_set_fixed_rate(priv, priv->ieee->mode);
9235 } else
James Ketrenosea2b26e2005-08-24 21:25:16 -05009236 priv->config |= CFG_FIXED_RATE;
9237
James Ketrenosc848d0a2005-08-24 21:56:24 -05009238 if (priv->rates_mask == mask) {
9239 IPW_DEBUG_WX("Mask set to current mask.\n");
Zhu Yi46441512006-01-24 16:37:59 +08009240 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009241 return 0;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009242 }
9243
James Ketrenosc848d0a2005-08-24 21:56:24 -05009244 priv->rates_mask = mask;
9245
9246 /* Network configuration changed -- force [re]association */
9247 IPW_DEBUG_ASSOC("[re]association triggered due to rates change.\n");
9248 if (!ipw_disassociate(priv))
9249 ipw_associate(priv);
9250
Zhu Yi46441512006-01-24 16:37:59 +08009251 mutex_unlock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009252 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009253}
9254
Jeff Garzikbf794512005-07-31 13:07:26 -04009255static int ipw_wx_get_rate(struct net_device *dev,
9256 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009257 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009258{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009259 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009260 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009261 wrqu->bitrate.value = priv->last_rate;
Zhu Yi455936c2006-04-13 17:20:05 +08009262 wrqu->bitrate.fixed = (priv->config & CFG_FIXED_RATE) ? 1 : 0;
Zhu Yi46441512006-01-24 16:37:59 +08009263 mutex_unlock(&priv->mutex);
Frans Pop9fd1ea42010-03-24 19:46:31 +01009264 IPW_DEBUG_WX("GET Rate -> %d\n", wrqu->bitrate.value);
James Ketrenos43f66a62005-03-25 12:31:53 -06009265 return 0;
9266}
9267
Jeff Garzikbf794512005-07-31 13:07:26 -04009268static int ipw_wx_set_rts(struct net_device *dev,
9269 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009270 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009271{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009272 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009273 mutex_lock(&priv->mutex);
Zhu Yiea8862d2007-01-11 17:32:54 +08009274 if (wrqu->rts.disabled || !wrqu->rts.fixed)
James Ketrenos43f66a62005-03-25 12:31:53 -06009275 priv->rts_threshold = DEFAULT_RTS_THRESHOLD;
9276 else {
9277 if (wrqu->rts.value < MIN_RTS_THRESHOLD ||
James Ketrenosc848d0a2005-08-24 21:56:24 -05009278 wrqu->rts.value > MAX_RTS_THRESHOLD) {
Zhu Yi46441512006-01-24 16:37:59 +08009279 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009280 return -EINVAL;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009281 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009282 priv->rts_threshold = wrqu->rts.value;
9283 }
9284
9285 ipw_send_rts_threshold(priv, priv->rts_threshold);
Zhu Yi46441512006-01-24 16:37:59 +08009286 mutex_unlock(&priv->mutex);
Frans Pop9fd1ea42010-03-24 19:46:31 +01009287 IPW_DEBUG_WX("SET RTS Threshold -> %d\n", priv->rts_threshold);
James Ketrenos43f66a62005-03-25 12:31:53 -06009288 return 0;
9289}
9290
Jeff Garzikbf794512005-07-31 13:07:26 -04009291static int ipw_wx_get_rts(struct net_device *dev,
9292 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009293 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009294{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009295 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009296 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009297 wrqu->rts.value = priv->rts_threshold;
9298 wrqu->rts.fixed = 0; /* no auto select */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009299 wrqu->rts.disabled = (wrqu->rts.value == DEFAULT_RTS_THRESHOLD);
Zhu Yi46441512006-01-24 16:37:59 +08009300 mutex_unlock(&priv->mutex);
Frans Pop9fd1ea42010-03-24 19:46:31 +01009301 IPW_DEBUG_WX("GET RTS Threshold -> %d\n", wrqu->rts.value);
James Ketrenos43f66a62005-03-25 12:31:53 -06009302 return 0;
9303}
9304
Jeff Garzikbf794512005-07-31 13:07:26 -04009305static int ipw_wx_set_txpow(struct net_device *dev,
9306 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009307 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009308{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009309 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009310 int err = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009311
Zhu Yi46441512006-01-24 16:37:59 +08009312 mutex_lock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009313 if (ipw_radio_kill_sw(priv, wrqu->power.disabled)) {
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009314 err = -EINPROGRESS;
9315 goto out;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009316 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009317
James Ketrenosb095c382005-08-24 22:04:42 -05009318 if (!wrqu->power.fixed)
9319 wrqu->power.value = IPW_TX_POWER_DEFAULT;
James Ketrenos43f66a62005-03-25 12:31:53 -06009320
James Ketrenosc848d0a2005-08-24 21:56:24 -05009321 if (wrqu->power.flags != IW_TXPOW_DBM) {
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009322 err = -EINVAL;
9323 goto out;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009324 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009325
James Ketrenosb095c382005-08-24 22:04:42 -05009326 if ((wrqu->power.value > IPW_TX_POWER_MAX) ||
James Ketrenosafbf30a2005-08-25 00:05:33 -05009327 (wrqu->power.value < IPW_TX_POWER_MIN)) {
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009328 err = -EINVAL;
9329 goto out;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009330 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009331
9332 priv->tx_power = wrqu->power.value;
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009333 err = ipw_set_tx_power(priv);
9334 out:
Zhu Yi46441512006-01-24 16:37:59 +08009335 mutex_unlock(&priv->mutex);
Zhu Yi6de9f7f2005-08-11 14:39:33 +08009336 return err;
James Ketrenos43f66a62005-03-25 12:31:53 -06009337}
9338
Jeff Garzikbf794512005-07-31 13:07:26 -04009339static int ipw_wx_get_txpow(struct net_device *dev,
9340 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009341 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009342{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009343 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009344 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009345 wrqu->power.value = priv->tx_power;
9346 wrqu->power.fixed = 1;
9347 wrqu->power.flags = IW_TXPOW_DBM;
9348 wrqu->power.disabled = (priv->status & STATUS_RF_KILL_MASK) ? 1 : 0;
Zhu Yi46441512006-01-24 16:37:59 +08009349 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009350
Frans Pop9fd1ea42010-03-24 19:46:31 +01009351 IPW_DEBUG_WX("GET TX Power -> %s %d\n",
Zhu Yi22501c82005-08-11 10:49:17 +08009352 wrqu->power.disabled ? "OFF" : "ON", wrqu->power.value);
James Ketrenos43f66a62005-03-25 12:31:53 -06009353
9354 return 0;
9355}
9356
Jeff Garzikbf794512005-07-31 13:07:26 -04009357static int ipw_wx_set_frag(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009358 struct iw_request_info *info,
9359 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009360{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009361 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009362 mutex_lock(&priv->mutex);
Zhu Yiea8862d2007-01-11 17:32:54 +08009363 if (wrqu->frag.disabled || !wrqu->frag.fixed)
James Ketrenos43f66a62005-03-25 12:31:53 -06009364 priv->ieee->fts = DEFAULT_FTS;
9365 else {
9366 if (wrqu->frag.value < MIN_FRAG_THRESHOLD ||
James Ketrenosb095c382005-08-24 22:04:42 -05009367 wrqu->frag.value > MAX_FRAG_THRESHOLD) {
Zhu Yi46441512006-01-24 16:37:59 +08009368 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009369 return -EINVAL;
James Ketrenosb095c382005-08-24 22:04:42 -05009370 }
Jeff Garzikbf794512005-07-31 13:07:26 -04009371
James Ketrenos43f66a62005-03-25 12:31:53 -06009372 priv->ieee->fts = wrqu->frag.value & ~0x1;
9373 }
9374
9375 ipw_send_frag_threshold(priv, wrqu->frag.value);
Zhu Yi46441512006-01-24 16:37:59 +08009376 mutex_unlock(&priv->mutex);
Frans Pop9fd1ea42010-03-24 19:46:31 +01009377 IPW_DEBUG_WX("SET Frag Threshold -> %d\n", wrqu->frag.value);
James Ketrenos43f66a62005-03-25 12:31:53 -06009378 return 0;
9379}
9380
Jeff Garzikbf794512005-07-31 13:07:26 -04009381static int ipw_wx_get_frag(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009382 struct iw_request_info *info,
9383 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009384{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009385 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009386 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009387 wrqu->frag.value = priv->ieee->fts;
9388 wrqu->frag.fixed = 0; /* no auto select */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009389 wrqu->frag.disabled = (wrqu->frag.value == DEFAULT_FTS);
Zhu Yi46441512006-01-24 16:37:59 +08009390 mutex_unlock(&priv->mutex);
Frans Pop9fd1ea42010-03-24 19:46:31 +01009391 IPW_DEBUG_WX("GET Frag Threshold -> %d\n", wrqu->frag.value);
James Ketrenos43f66a62005-03-25 12:31:53 -06009392
9393 return 0;
9394}
9395
Jeff Garzikbf794512005-07-31 13:07:26 -04009396static int ipw_wx_set_retry(struct net_device *dev,
9397 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009398 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009399{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009400 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009401
9402 if (wrqu->retry.flags & IW_RETRY_LIFETIME || wrqu->retry.disabled)
9403 return -EINVAL;
9404
9405 if (!(wrqu->retry.flags & IW_RETRY_LIMIT))
9406 return 0;
9407
Zhu Yid5f7ac22006-08-21 11:38:17 +08009408 if (wrqu->retry.value < 0 || wrqu->retry.value >= 255)
James Ketrenosafbf30a2005-08-25 00:05:33 -05009409 return -EINVAL;
9410
Zhu Yi46441512006-01-24 16:37:59 +08009411 mutex_lock(&priv->mutex);
Jean Tourrilhes919ee6d2006-08-29 18:01:40 -07009412 if (wrqu->retry.flags & IW_RETRY_SHORT)
James Ketrenosafbf30a2005-08-25 00:05:33 -05009413 priv->short_retry_limit = (u8) wrqu->retry.value;
Jean Tourrilhes919ee6d2006-08-29 18:01:40 -07009414 else if (wrqu->retry.flags & IW_RETRY_LONG)
James Ketrenosafbf30a2005-08-25 00:05:33 -05009415 priv->long_retry_limit = (u8) wrqu->retry.value;
9416 else {
9417 priv->short_retry_limit = (u8) wrqu->retry.value;
9418 priv->long_retry_limit = (u8) wrqu->retry.value;
9419 }
9420
9421 ipw_send_retry_limit(priv, priv->short_retry_limit,
9422 priv->long_retry_limit);
Zhu Yi46441512006-01-24 16:37:59 +08009423 mutex_unlock(&priv->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009424 IPW_DEBUG_WX("SET retry limit -> short:%d long:%d\n",
9425 priv->short_retry_limit, priv->long_retry_limit);
9426 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009427}
9428
Jeff Garzikbf794512005-07-31 13:07:26 -04009429static int ipw_wx_get_retry(struct net_device *dev,
9430 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009431 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009432{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009433 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009434
Zhu Yi46441512006-01-24 16:37:59 +08009435 mutex_lock(&priv->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009436 wrqu->retry.disabled = 0;
9437
9438 if ((wrqu->retry.flags & IW_RETRY_TYPE) == IW_RETRY_LIFETIME) {
Zhu Yi46441512006-01-24 16:37:59 +08009439 mutex_unlock(&priv->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009440 return -EINVAL;
9441 }
9442
Jean Tourrilhes919ee6d2006-08-29 18:01:40 -07009443 if (wrqu->retry.flags & IW_RETRY_LONG) {
9444 wrqu->retry.flags = IW_RETRY_LIMIT | IW_RETRY_LONG;
James Ketrenosafbf30a2005-08-25 00:05:33 -05009445 wrqu->retry.value = priv->long_retry_limit;
Jean Tourrilhes919ee6d2006-08-29 18:01:40 -07009446 } else if (wrqu->retry.flags & IW_RETRY_SHORT) {
9447 wrqu->retry.flags = IW_RETRY_LIMIT | IW_RETRY_SHORT;
James Ketrenosafbf30a2005-08-25 00:05:33 -05009448 wrqu->retry.value = priv->short_retry_limit;
9449 } else {
9450 wrqu->retry.flags = IW_RETRY_LIMIT;
9451 wrqu->retry.value = priv->short_retry_limit;
9452 }
Zhu Yi46441512006-01-24 16:37:59 +08009453 mutex_unlock(&priv->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009454
Frans Pop9fd1ea42010-03-24 19:46:31 +01009455 IPW_DEBUG_WX("GET retry -> %d\n", wrqu->retry.value);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009456
9457 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009458}
9459
Jeff Garzikbf794512005-07-31 13:07:26 -04009460static int ipw_wx_set_scan(struct net_device *dev,
9461 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009462 union iwreq_data *wrqu, char *extra)
9463{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009464 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi094c4d22006-08-21 11:39:03 +08009465 struct iw_scan_req *req = (struct iw_scan_req *)extra;
Dan Williamsea177302008-06-02 17:51:23 -04009466 struct delayed_work *work = NULL;
Zhu Yi094c4d22006-08-21 11:39:03 +08009467
Dan Williams0b531672007-10-09 13:55:24 -04009468 mutex_lock(&priv->mutex);
Dan Williamsea177302008-06-02 17:51:23 -04009469
Dan Williams0b531672007-10-09 13:55:24 -04009470 priv->user_requested_scan = 1;
Dan Williams0b531672007-10-09 13:55:24 -04009471
Zhu Yi094c4d22006-08-21 11:39:03 +08009472 if (wrqu->data.length == sizeof(struct iw_scan_req)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -05009473 if (wrqu->data.flags & IW_SCAN_THIS_ESSID) {
Dan Williamsea177302008-06-02 17:51:23 -04009474 int len = min((int)req->essid_len,
9475 (int)sizeof(priv->direct_scan_ssid));
9476 memcpy(priv->direct_scan_ssid, req->essid, len);
9477 priv->direct_scan_ssid_len = len;
9478 work = &priv->request_direct_scan;
9479 } else if (req->scan_type == IW_SCAN_TYPE_PASSIVE) {
9480 work = &priv->request_passive_scan;
James Ketrenosafbf30a2005-08-25 00:05:33 -05009481 }
Dan Williamsea177302008-06-02 17:51:23 -04009482 } else {
9483 /* Normal active broadcast scan */
9484 work = &priv->request_scan;
James Ketrenosafbf30a2005-08-25 00:05:33 -05009485 }
James Ketrenos8935f392005-10-05 15:59:08 -05009486
Dan Williamsea177302008-06-02 17:51:23 -04009487 mutex_unlock(&priv->mutex);
9488
James Ketrenos43f66a62005-03-25 12:31:53 -06009489 IPW_DEBUG_WX("Start scan\n");
James Ketrenosb095c382005-08-24 22:04:42 -05009490
Tejun Heobcb6d912011-01-26 12:12:50 +01009491 schedule_delayed_work(work, 0);
James Ketrenosb095c382005-08-24 22:04:42 -05009492
James Ketrenos43f66a62005-03-25 12:31:53 -06009493 return 0;
9494}
9495
Jeff Garzikbf794512005-07-31 13:07:26 -04009496static int ipw_wx_get_scan(struct net_device *dev,
9497 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009498 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009499{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009500 struct ipw_priv *priv = libipw_priv(dev);
9501 return libipw_wx_get_scan(priv->ieee, info, wrqu, extra);
James Ketrenos43f66a62005-03-25 12:31:53 -06009502}
9503
Jeff Garzikbf794512005-07-31 13:07:26 -04009504static int ipw_wx_set_encode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009505 struct iw_request_info *info,
9506 union iwreq_data *wrqu, char *key)
James Ketrenos43f66a62005-03-25 12:31:53 -06009507{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009508 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009509 int ret;
Hong Liucaeff812005-08-05 17:25:50 +08009510 u32 cap = priv->capability;
James Ketrenosafbf30a2005-08-25 00:05:33 -05009511
Zhu Yi46441512006-01-24 16:37:59 +08009512 mutex_lock(&priv->mutex);
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009513 ret = libipw_wx_set_encode(priv->ieee, info, wrqu, key);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009514
Hong Liucaeff812005-08-05 17:25:50 +08009515 /* In IBSS mode, we need to notify the firmware to update
9516 * the beacon info after we changed the capability. */
9517 if (cap != priv->capability &&
9518 priv->ieee->iw_mode == IW_MODE_ADHOC &&
9519 priv->status & STATUS_ASSOCIATED)
9520 ipw_disassociate(priv);
9521
Zhu Yi46441512006-01-24 16:37:59 +08009522 mutex_unlock(&priv->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009523 return ret;
James Ketrenos43f66a62005-03-25 12:31:53 -06009524}
9525
Jeff Garzikbf794512005-07-31 13:07:26 -04009526static int ipw_wx_get_encode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009527 struct iw_request_info *info,
9528 union iwreq_data *wrqu, char *key)
James Ketrenos43f66a62005-03-25 12:31:53 -06009529{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009530 struct ipw_priv *priv = libipw_priv(dev);
9531 return libipw_wx_get_encode(priv->ieee, info, wrqu, key);
James Ketrenos43f66a62005-03-25 12:31:53 -06009532}
9533
Jeff Garzikbf794512005-07-31 13:07:26 -04009534static int ipw_wx_set_power(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009535 struct iw_request_info *info,
9536 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009537{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009538 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009539 int err;
Zhu Yi46441512006-01-24 16:37:59 +08009540 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009541 if (wrqu->power.disabled) {
9542 priv->power_mode = IPW_POWER_LEVEL(priv->power_mode);
9543 err = ipw_send_power_mode(priv, IPW_POWER_MODE_CAM);
9544 if (err) {
9545 IPW_DEBUG_WX("failed setting power mode.\n");
Zhu Yi46441512006-01-24 16:37:59 +08009546 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009547 return err;
9548 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009549 IPW_DEBUG_WX("SET Power Management Mode -> off\n");
Zhu Yi46441512006-01-24 16:37:59 +08009550 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009551 return 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04009552 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009553
9554 switch (wrqu->power.flags & IW_POWER_MODE) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009555 case IW_POWER_ON: /* If not specified */
9556 case IW_POWER_MODE: /* If set all mask */
Jean Delvarec03983a2007-10-19 23:22:55 +02009557 case IW_POWER_ALL_R: /* If explicitly state all */
James Ketrenos43f66a62005-03-25 12:31:53 -06009558 break;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009559 default: /* Otherwise we don't support it */
James Ketrenos43f66a62005-03-25 12:31:53 -06009560 IPW_DEBUG_WX("SET PM Mode: %X not supported.\n",
9561 wrqu->power.flags);
Zhu Yi46441512006-01-24 16:37:59 +08009562 mutex_unlock(&priv->mutex);
Jeff Garzikbf794512005-07-31 13:07:26 -04009563 return -EOPNOTSUPP;
James Ketrenos43f66a62005-03-25 12:31:53 -06009564 }
Jeff Garzikbf794512005-07-31 13:07:26 -04009565
James Ketrenos43f66a62005-03-25 12:31:53 -06009566 /* If the user hasn't specified a power management mode yet, default
9567 * to BATTERY */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009568 if (IPW_POWER_LEVEL(priv->power_mode) == IPW_POWER_AC)
James Ketrenos43f66a62005-03-25 12:31:53 -06009569 priv->power_mode = IPW_POWER_ENABLED | IPW_POWER_BATTERY;
Jeff Garzikbf794512005-07-31 13:07:26 -04009570 else
James Ketrenos43f66a62005-03-25 12:31:53 -06009571 priv->power_mode = IPW_POWER_ENABLED | priv->power_mode;
Zhu Yi4e157f02007-07-12 16:09:32 +08009572
James Ketrenos43f66a62005-03-25 12:31:53 -06009573 err = ipw_send_power_mode(priv, IPW_POWER_LEVEL(priv->power_mode));
9574 if (err) {
9575 IPW_DEBUG_WX("failed setting power mode.\n");
Zhu Yi46441512006-01-24 16:37:59 +08009576 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009577 return err;
9578 }
9579
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009580 IPW_DEBUG_WX("SET Power Management Mode -> 0x%02X\n", priv->power_mode);
Zhu Yi46441512006-01-24 16:37:59 +08009581 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009582 return 0;
9583}
9584
Jeff Garzikbf794512005-07-31 13:07:26 -04009585static int ipw_wx_get_power(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009586 struct iw_request_info *info,
9587 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009588{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009589 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009590 mutex_lock(&priv->mutex);
James Ketrenosa613bff2005-08-24 21:43:11 -05009591 if (!(priv->power_mode & IPW_POWER_ENABLED))
James Ketrenos43f66a62005-03-25 12:31:53 -06009592 wrqu->power.disabled = 1;
James Ketrenosa613bff2005-08-24 21:43:11 -05009593 else
James Ketrenos43f66a62005-03-25 12:31:53 -06009594 wrqu->power.disabled = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009595
Zhu Yi46441512006-01-24 16:37:59 +08009596 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009597 IPW_DEBUG_WX("GET Power Management Mode -> %02X\n", priv->power_mode);
Jeff Garzikbf794512005-07-31 13:07:26 -04009598
James Ketrenos43f66a62005-03-25 12:31:53 -06009599 return 0;
9600}
9601
Jeff Garzikbf794512005-07-31 13:07:26 -04009602static int ipw_wx_set_powermode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009603 struct iw_request_info *info,
9604 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009605{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009606 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009607 int mode = *(int *)extra;
9608 int err;
Zhu Yi4e157f02007-07-12 16:09:32 +08009609
Zhu Yi46441512006-01-24 16:37:59 +08009610 mutex_lock(&priv->mutex);
Zhu Yi4e157f02007-07-12 16:09:32 +08009611 if ((mode < 1) || (mode > IPW_POWER_LIMIT))
James Ketrenos43f66a62005-03-25 12:31:53 -06009612 mode = IPW_POWER_AC;
Jeff Garzikbf794512005-07-31 13:07:26 -04009613
Zhu Yi4e157f02007-07-12 16:09:32 +08009614 if (IPW_POWER_LEVEL(priv->power_mode) != mode) {
James Ketrenos43f66a62005-03-25 12:31:53 -06009615 err = ipw_send_power_mode(priv, mode);
James Ketrenos43f66a62005-03-25 12:31:53 -06009616 if (err) {
9617 IPW_DEBUG_WX("failed setting power mode.\n");
Zhu Yi46441512006-01-24 16:37:59 +08009618 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009619 return err;
9620 }
Zhu Yi4e157f02007-07-12 16:09:32 +08009621 priv->power_mode = IPW_POWER_ENABLED | mode;
James Ketrenos43f66a62005-03-25 12:31:53 -06009622 }
Zhu Yi46441512006-01-24 16:37:59 +08009623 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009624 return 0;
9625}
9626
9627#define MAX_WX_STRING 80
Jeff Garzikbf794512005-07-31 13:07:26 -04009628static int ipw_wx_get_powermode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009629 struct iw_request_info *info,
9630 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009631{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009632 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009633 int level = IPW_POWER_LEVEL(priv->power_mode);
9634 char *p = extra;
9635
9636 p += snprintf(p, MAX_WX_STRING, "Power save level: %d ", level);
9637
9638 switch (level) {
9639 case IPW_POWER_AC:
9640 p += snprintf(p, MAX_WX_STRING - (p - extra), "(AC)");
9641 break;
9642 case IPW_POWER_BATTERY:
9643 p += snprintf(p, MAX_WX_STRING - (p - extra), "(BATTERY)");
9644 break;
9645 default:
9646 p += snprintf(p, MAX_WX_STRING - (p - extra),
Jeff Garzikbf794512005-07-31 13:07:26 -04009647 "(Timeout %dms, Period %dms)",
James Ketrenos43f66a62005-03-25 12:31:53 -06009648 timeout_duration[level - 1] / 1000,
9649 period_duration[level - 1] / 1000);
9650 }
9651
9652 if (!(priv->power_mode & IPW_POWER_ENABLED))
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009653 p += snprintf(p, MAX_WX_STRING - (p - extra), " OFF");
James Ketrenos43f66a62005-03-25 12:31:53 -06009654
9655 wrqu->data.length = p - extra + 1;
9656
9657 return 0;
9658}
9659
9660static int ipw_wx_set_wireless_mode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009661 struct iw_request_info *info,
9662 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009663{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009664 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009665 int mode = *(int *)extra;
9666 u8 band = 0, modulation = 0;
9667
9668 if (mode == 0 || mode & ~IEEE_MODE_MASK) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009669 IPW_WARNING("Attempt to set invalid wireless mode: %d\n", mode);
James Ketrenos43f66a62005-03-25 12:31:53 -06009670 return -EINVAL;
9671 }
Zhu Yi46441512006-01-24 16:37:59 +08009672 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009673 if (priv->adapter == IPW_2915ABG) {
James Ketrenosa33a1982005-09-14 14:28:59 -05009674 priv->ieee->abg_true = 1;
James Ketrenos43f66a62005-03-25 12:31:53 -06009675 if (mode & IEEE_A) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009676 band |= LIBIPW_52GHZ_BAND;
9677 modulation |= LIBIPW_OFDM_MODULATION;
James Ketrenos43f66a62005-03-25 12:31:53 -06009678 } else
James Ketrenosa33a1982005-09-14 14:28:59 -05009679 priv->ieee->abg_true = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009680 } else {
9681 if (mode & IEEE_A) {
9682 IPW_WARNING("Attempt to set 2200BG into "
9683 "802.11a mode\n");
Zhu Yi46441512006-01-24 16:37:59 +08009684 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009685 return -EINVAL;
9686 }
9687
James Ketrenosa33a1982005-09-14 14:28:59 -05009688 priv->ieee->abg_true = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009689 }
9690
9691 if (mode & IEEE_B) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009692 band |= LIBIPW_24GHZ_BAND;
9693 modulation |= LIBIPW_CCK_MODULATION;
James Ketrenos43f66a62005-03-25 12:31:53 -06009694 } else
James Ketrenosa33a1982005-09-14 14:28:59 -05009695 priv->ieee->abg_true = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -04009696
James Ketrenos43f66a62005-03-25 12:31:53 -06009697 if (mode & IEEE_G) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009698 band |= LIBIPW_24GHZ_BAND;
9699 modulation |= LIBIPW_OFDM_MODULATION;
James Ketrenos43f66a62005-03-25 12:31:53 -06009700 } else
James Ketrenosa33a1982005-09-14 14:28:59 -05009701 priv->ieee->abg_true = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009702
9703 priv->ieee->mode = mode;
9704 priv->ieee->freq_band = band;
9705 priv->ieee->modulation = modulation;
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009706 init_supported_rates(priv, &priv->rates);
James Ketrenos43f66a62005-03-25 12:31:53 -06009707
James Ketrenosc848d0a2005-08-24 21:56:24 -05009708 /* Network configuration changed -- force [re]association */
9709 IPW_DEBUG_ASSOC("[re]association triggered due to mode change.\n");
9710 if (!ipw_disassociate(priv)) {
James Ketrenos43f66a62005-03-25 12:31:53 -06009711 ipw_send_supported_rates(priv, &priv->rates);
James Ketrenosc848d0a2005-08-24 21:56:24 -05009712 ipw_associate(priv);
9713 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009714
James Ketrenosa613bff2005-08-24 21:43:11 -05009715 /* Update the band LEDs */
9716 ipw_led_band_on(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -06009717
Jeff Garzikbf794512005-07-31 13:07:26 -04009718 IPW_DEBUG_WX("PRIV SET MODE: %c%c%c\n",
James Ketrenos43f66a62005-03-25 12:31:53 -06009719 mode & IEEE_A ? 'a' : '.',
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009720 mode & IEEE_B ? 'b' : '.', mode & IEEE_G ? 'g' : '.');
Zhu Yi46441512006-01-24 16:37:59 +08009721 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009722 return 0;
9723}
9724
9725static int ipw_wx_get_wireless_mode(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009726 struct iw_request_info *info,
9727 union iwreq_data *wrqu, char *extra)
James Ketrenos43f66a62005-03-25 12:31:53 -06009728{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009729 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009730 mutex_lock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009731 switch (priv->ieee->mode) {
9732 case IEEE_A:
James Ketrenos43f66a62005-03-25 12:31:53 -06009733 strncpy(extra, "802.11a (1)", MAX_WX_STRING);
9734 break;
James Ketrenosea2b26e2005-08-24 21:25:16 -05009735 case IEEE_B:
9736 strncpy(extra, "802.11b (2)", MAX_WX_STRING);
9737 break;
9738 case IEEE_A | IEEE_B:
9739 strncpy(extra, "802.11ab (3)", MAX_WX_STRING);
9740 break;
9741 case IEEE_G:
9742 strncpy(extra, "802.11g (4)", MAX_WX_STRING);
9743 break;
9744 case IEEE_A | IEEE_G:
9745 strncpy(extra, "802.11ag (5)", MAX_WX_STRING);
9746 break;
9747 case IEEE_B | IEEE_G:
9748 strncpy(extra, "802.11bg (6)", MAX_WX_STRING);
9749 break;
9750 case IEEE_A | IEEE_B | IEEE_G:
9751 strncpy(extra, "802.11abg (7)", MAX_WX_STRING);
9752 break;
9753 default:
9754 strncpy(extra, "unknown", MAX_WX_STRING);
James Ketrenos43f66a62005-03-25 12:31:53 -06009755 break;
Jeff Garzikbf794512005-07-31 13:07:26 -04009756 }
Rickard Strandqvist2da2c582014-08-10 01:39:28 +02009757 extra[MAX_WX_STRING - 1] = '\0';
Jeff Garzikbf794512005-07-31 13:07:26 -04009758
James Ketrenos43f66a62005-03-25 12:31:53 -06009759 IPW_DEBUG_WX("PRIV GET MODE: %s\n", extra);
9760
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009761 wrqu->data.length = strlen(extra) + 1;
Zhu Yi46441512006-01-24 16:37:59 +08009762 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009763
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009764 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -06009765}
9766
James Ketrenosea2b26e2005-08-24 21:25:16 -05009767static int ipw_wx_set_preamble(struct net_device *dev,
9768 struct iw_request_info *info,
9769 union iwreq_data *wrqu, char *extra)
9770{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009771 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009772 int mode = *(int *)extra;
Zhu Yi46441512006-01-24 16:37:59 +08009773 mutex_lock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009774 /* Switching from SHORT -> LONG requires a disassociation */
9775 if (mode == 1) {
9776 if (!(priv->config & CFG_PREAMBLE_LONG)) {
9777 priv->config |= CFG_PREAMBLE_LONG;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009778
9779 /* Network configuration changed -- force [re]association */
9780 IPW_DEBUG_ASSOC
9781 ("[re]association triggered due to preamble change.\n");
9782 if (!ipw_disassociate(priv))
9783 ipw_associate(priv);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009784 }
9785 goto done;
9786 }
9787
9788 if (mode == 0) {
9789 priv->config &= ~CFG_PREAMBLE_LONG;
9790 goto done;
9791 }
Zhu Yi46441512006-01-24 16:37:59 +08009792 mutex_unlock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009793 return -EINVAL;
9794
9795 done:
Zhu Yi46441512006-01-24 16:37:59 +08009796 mutex_unlock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009797 return 0;
9798}
9799
9800static int ipw_wx_get_preamble(struct net_device *dev,
9801 struct iw_request_info *info,
9802 union iwreq_data *wrqu, char *extra)
9803{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009804 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yi46441512006-01-24 16:37:59 +08009805 mutex_lock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009806 if (priv->config & CFG_PREAMBLE_LONG)
9807 snprintf(wrqu->name, IFNAMSIZ, "long (1)");
9808 else
9809 snprintf(wrqu->name, IFNAMSIZ, "auto (0)");
Zhu Yi46441512006-01-24 16:37:59 +08009810 mutex_unlock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009811 return 0;
9812}
9813
James Ketrenosb095c382005-08-24 22:04:42 -05009814#ifdef CONFIG_IPW2200_MONITOR
James Ketrenosea2b26e2005-08-24 21:25:16 -05009815static int ipw_wx_set_monitor(struct net_device *dev,
Jeff Garzikbf794512005-07-31 13:07:26 -04009816 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009817 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009818{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009819 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009820 int *parms = (int *)extra;
9821 int enable = (parms[0] > 0);
Zhu Yi46441512006-01-24 16:37:59 +08009822 mutex_lock(&priv->mutex);
James Ketrenosea2b26e2005-08-24 21:25:16 -05009823 IPW_DEBUG_WX("SET MONITOR: %d %d\n", enable, parms[1]);
James Ketrenos43f66a62005-03-25 12:31:53 -06009824 if (enable) {
9825 if (priv->ieee->iw_mode != IW_MODE_MONITOR) {
Zhu Yi459d4082006-04-13 17:21:00 +08009826#ifdef CONFIG_IPW2200_RADIOTAP
Mike Kershaw24a47db2005-08-26 00:41:54 -05009827 priv->net_dev->type = ARPHRD_IEEE80211_RADIOTAP;
9828#else
James Ketrenos43f66a62005-03-25 12:31:53 -06009829 priv->net_dev->type = ARPHRD_IEEE80211;
Mike Kershaw24a47db2005-08-26 00:41:54 -05009830#endif
Tejun Heobcb6d912011-01-26 12:12:50 +01009831 schedule_work(&priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06009832 }
Jeff Garzikbf794512005-07-31 13:07:26 -04009833
James Ketrenos43f66a62005-03-25 12:31:53 -06009834 ipw_set_channel(priv, parms[1]);
9835 } else {
James Ketrenosc848d0a2005-08-24 21:56:24 -05009836 if (priv->ieee->iw_mode != IW_MODE_MONITOR) {
Zhu Yi46441512006-01-24 16:37:59 +08009837 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009838 return 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -05009839 }
James Ketrenos43f66a62005-03-25 12:31:53 -06009840 priv->net_dev->type = ARPHRD_ETHER;
Tejun Heobcb6d912011-01-26 12:12:50 +01009841 schedule_work(&priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06009842 }
Zhu Yi46441512006-01-24 16:37:59 +08009843 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -06009844 return 0;
9845}
9846
Pavel Machek67fd6b42006-07-11 15:34:05 +02009847#endif /* CONFIG_IPW2200_MONITOR */
James Ketrenosb095c382005-08-24 22:04:42 -05009848
Jeff Garzikbf794512005-07-31 13:07:26 -04009849static int ipw_wx_reset(struct net_device *dev,
9850 struct iw_request_info *info,
James Ketrenos43f66a62005-03-25 12:31:53 -06009851 union iwreq_data *wrqu, char *extra)
Jeff Garzikbf794512005-07-31 13:07:26 -04009852{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009853 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -06009854 IPW_DEBUG_WX("RESET\n");
Tejun Heobcb6d912011-01-26 12:12:50 +01009855 schedule_work(&priv->adapter_restart);
James Ketrenos43f66a62005-03-25 12:31:53 -06009856 return 0;
9857}
James Ketrenosb095c382005-08-24 22:04:42 -05009858
James Ketrenosb095c382005-08-24 22:04:42 -05009859static int ipw_wx_sw_reset(struct net_device *dev,
9860 struct iw_request_info *info,
9861 union iwreq_data *wrqu, char *extra)
9862{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009863 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenosb095c382005-08-24 22:04:42 -05009864 union iwreq_data wrqu_sec = {
9865 .encoding = {
9866 .flags = IW_ENCODE_DISABLED,
9867 },
9868 };
James Ketrenosafbf30a2005-08-25 00:05:33 -05009869 int ret;
James Ketrenosb095c382005-08-24 22:04:42 -05009870
9871 IPW_DEBUG_WX("SW_RESET\n");
9872
Zhu Yi46441512006-01-24 16:37:59 +08009873 mutex_lock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05009874
Zhu Yid6d5b5c2006-02-16 16:21:09 +08009875 ret = ipw_sw_reset(priv, 2);
James Ketrenosafbf30a2005-08-25 00:05:33 -05009876 if (!ret) {
9877 free_firmware();
9878 ipw_adapter_restart(priv);
9879 }
James Ketrenosb095c382005-08-24 22:04:42 -05009880
9881 /* The SW reset bit might have been toggled on by the 'disable'
9882 * module parameter, so take appropriate action */
9883 ipw_radio_kill_sw(priv, priv->status & STATUS_RF_KILL_SW);
9884
Zhu Yi46441512006-01-24 16:37:59 +08009885 mutex_unlock(&priv->mutex);
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04009886 libipw_wx_set_encode(priv->ieee, info, &wrqu_sec, NULL);
Zhu Yi46441512006-01-24 16:37:59 +08009887 mutex_lock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05009888
9889 if (!(priv->status & STATUS_RF_KILL_MASK)) {
9890 /* Configuration likely changed -- force [re]association */
9891 IPW_DEBUG_ASSOC("[re]association triggered due to sw "
9892 "reset.\n");
9893 if (!ipw_disassociate(priv))
9894 ipw_associate(priv);
9895 }
9896
Zhu Yi46441512006-01-24 16:37:59 +08009897 mutex_unlock(&priv->mutex);
James Ketrenosb095c382005-08-24 22:04:42 -05009898
9899 return 0;
9900}
James Ketrenos43f66a62005-03-25 12:31:53 -06009901
9902/* Rebase the WE IOCTLs to zero for the handler array */
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009903static iw_handler ipw_wx_handlers[] = {
Joe Perches56b632e2010-03-18 18:29:38 -07009904 IW_HANDLER(SIOCGIWNAME, (iw_handler)cfg80211_wext_giwname),
9905 IW_HANDLER(SIOCSIWFREQ, ipw_wx_set_freq),
9906 IW_HANDLER(SIOCGIWFREQ, ipw_wx_get_freq),
9907 IW_HANDLER(SIOCSIWMODE, ipw_wx_set_mode),
9908 IW_HANDLER(SIOCGIWMODE, ipw_wx_get_mode),
9909 IW_HANDLER(SIOCSIWSENS, ipw_wx_set_sens),
9910 IW_HANDLER(SIOCGIWSENS, ipw_wx_get_sens),
9911 IW_HANDLER(SIOCGIWRANGE, ipw_wx_get_range),
9912 IW_HANDLER(SIOCSIWAP, ipw_wx_set_wap),
9913 IW_HANDLER(SIOCGIWAP, ipw_wx_get_wap),
9914 IW_HANDLER(SIOCSIWSCAN, ipw_wx_set_scan),
9915 IW_HANDLER(SIOCGIWSCAN, ipw_wx_get_scan),
9916 IW_HANDLER(SIOCSIWESSID, ipw_wx_set_essid),
9917 IW_HANDLER(SIOCGIWESSID, ipw_wx_get_essid),
9918 IW_HANDLER(SIOCSIWNICKN, ipw_wx_set_nick),
9919 IW_HANDLER(SIOCGIWNICKN, ipw_wx_get_nick),
9920 IW_HANDLER(SIOCSIWRATE, ipw_wx_set_rate),
9921 IW_HANDLER(SIOCGIWRATE, ipw_wx_get_rate),
9922 IW_HANDLER(SIOCSIWRTS, ipw_wx_set_rts),
9923 IW_HANDLER(SIOCGIWRTS, ipw_wx_get_rts),
9924 IW_HANDLER(SIOCSIWFRAG, ipw_wx_set_frag),
9925 IW_HANDLER(SIOCGIWFRAG, ipw_wx_get_frag),
9926 IW_HANDLER(SIOCSIWTXPOW, ipw_wx_set_txpow),
9927 IW_HANDLER(SIOCGIWTXPOW, ipw_wx_get_txpow),
9928 IW_HANDLER(SIOCSIWRETRY, ipw_wx_set_retry),
9929 IW_HANDLER(SIOCGIWRETRY, ipw_wx_get_retry),
9930 IW_HANDLER(SIOCSIWENCODE, ipw_wx_set_encode),
9931 IW_HANDLER(SIOCGIWENCODE, ipw_wx_get_encode),
9932 IW_HANDLER(SIOCSIWPOWER, ipw_wx_set_power),
9933 IW_HANDLER(SIOCGIWPOWER, ipw_wx_get_power),
9934 IW_HANDLER(SIOCSIWSPY, iw_handler_set_spy),
9935 IW_HANDLER(SIOCGIWSPY, iw_handler_get_spy),
9936 IW_HANDLER(SIOCSIWTHRSPY, iw_handler_set_thrspy),
9937 IW_HANDLER(SIOCGIWTHRSPY, iw_handler_get_thrspy),
9938 IW_HANDLER(SIOCSIWGENIE, ipw_wx_set_genie),
9939 IW_HANDLER(SIOCGIWGENIE, ipw_wx_get_genie),
9940 IW_HANDLER(SIOCSIWMLME, ipw_wx_set_mlme),
9941 IW_HANDLER(SIOCSIWAUTH, ipw_wx_set_auth),
9942 IW_HANDLER(SIOCGIWAUTH, ipw_wx_get_auth),
9943 IW_HANDLER(SIOCSIWENCODEEXT, ipw_wx_set_encodeext),
9944 IW_HANDLER(SIOCGIWENCODEEXT, ipw_wx_get_encodeext),
James Ketrenos43f66a62005-03-25 12:31:53 -06009945};
9946
James Ketrenosb095c382005-08-24 22:04:42 -05009947enum {
9948 IPW_PRIV_SET_POWER = SIOCIWFIRSTPRIV,
9949 IPW_PRIV_GET_POWER,
9950 IPW_PRIV_SET_MODE,
9951 IPW_PRIV_GET_MODE,
9952 IPW_PRIV_SET_PREAMBLE,
9953 IPW_PRIV_GET_PREAMBLE,
9954 IPW_PRIV_RESET,
9955 IPW_PRIV_SW_RESET,
9956#ifdef CONFIG_IPW2200_MONITOR
9957 IPW_PRIV_SET_MONITOR,
9958#endif
9959};
James Ketrenos43f66a62005-03-25 12:31:53 -06009960
Jeff Garzikbf794512005-07-31 13:07:26 -04009961static struct iw_priv_args ipw_priv_args[] = {
James Ketrenos43f66a62005-03-25 12:31:53 -06009962 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009963 .cmd = IPW_PRIV_SET_POWER,
9964 .set_args = IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
9965 .name = "set_power"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009966 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009967 .cmd = IPW_PRIV_GET_POWER,
9968 .get_args = IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | MAX_WX_STRING,
9969 .name = "get_power"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009970 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009971 .cmd = IPW_PRIV_SET_MODE,
9972 .set_args = IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
9973 .name = "set_mode"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009974 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009975 .cmd = IPW_PRIV_GET_MODE,
9976 .get_args = IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | MAX_WX_STRING,
9977 .name = "get_mode"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009978 {
James Ketrenosea2b26e2005-08-24 21:25:16 -05009979 .cmd = IPW_PRIV_SET_PREAMBLE,
9980 .set_args = IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
9981 .name = "set_preamble"},
9982 {
9983 .cmd = IPW_PRIV_GET_PREAMBLE,
9984 .get_args = IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | IFNAMSIZ,
9985 .name = "get_preamble"},
James Ketrenos43f66a62005-03-25 12:31:53 -06009986 {
Jeff Garzik0edd5b42005-09-07 00:48:31 -04009987 IPW_PRIV_RESET,
9988 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 0, 0, "reset"},
James Ketrenosb095c382005-08-24 22:04:42 -05009989 {
9990 IPW_PRIV_SW_RESET,
9991 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 0, 0, "sw_reset"},
9992#ifdef CONFIG_IPW2200_MONITOR
9993 {
9994 IPW_PRIV_SET_MONITOR,
9995 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 2, 0, "monitor"},
9996#endif /* CONFIG_IPW2200_MONITOR */
James Ketrenos43f66a62005-03-25 12:31:53 -06009997};
9998
9999static iw_handler ipw_priv_handler[] = {
10000 ipw_wx_set_powermode,
10001 ipw_wx_get_powermode,
10002 ipw_wx_set_wireless_mode,
10003 ipw_wx_get_wireless_mode,
James Ketrenosea2b26e2005-08-24 21:25:16 -050010004 ipw_wx_set_preamble,
10005 ipw_wx_get_preamble,
Jeff Garzikbf794512005-07-31 13:07:26 -040010006 ipw_wx_reset,
James Ketrenosb095c382005-08-24 22:04:42 -050010007 ipw_wx_sw_reset,
10008#ifdef CONFIG_IPW2200_MONITOR
10009 ipw_wx_set_monitor,
James Ketrenos43f66a62005-03-25 12:31:53 -060010010#endif
10011};
10012
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010013static struct iw_handler_def ipw_wx_handler_def = {
James Ketrenosea2b26e2005-08-24 21:25:16 -050010014 .standard = ipw_wx_handlers,
10015 .num_standard = ARRAY_SIZE(ipw_wx_handlers),
10016 .num_private = ARRAY_SIZE(ipw_priv_handler),
10017 .num_private_args = ARRAY_SIZE(ipw_priv_args),
10018 .private = ipw_priv_handler,
10019 .private_args = ipw_priv_args,
Benoit Boissinot97a78ca2005-09-15 17:30:28 +000010020 .get_wireless_stats = ipw_get_wireless_stats,
James Ketrenos43f66a62005-03-25 12:31:53 -060010021};
10022
James Ketrenos43f66a62005-03-25 12:31:53 -060010023/*
10024 * Get wireless statistics.
10025 * Called by /proc/net/wireless
10026 * Also called by SIOCGIWSTATS
10027 */
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010028static struct iw_statistics *ipw_get_wireless_stats(struct net_device *dev)
James Ketrenos43f66a62005-03-25 12:31:53 -060010029{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010030 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060010031 struct iw_statistics *wstats;
Jeff Garzikbf794512005-07-31 13:07:26 -040010032
James Ketrenos43f66a62005-03-25 12:31:53 -060010033 wstats = &priv->wstats;
10034
James Ketrenosea2b26e2005-08-24 21:25:16 -050010035 /* if hw is disabled, then ipw_get_ordinal() can't be called.
James Ketrenosafbf30a2005-08-25 00:05:33 -050010036 * netdev->get_wireless_stats seems to be called before fw is
James Ketrenos43f66a62005-03-25 12:31:53 -060010037 * initialized. STATUS_ASSOCIATED will only be set if the hw is up
10038 * and associated; if not associcated, the values are all meaningless
10039 * anyway, so set them all to NULL and INVALID */
10040 if (!(priv->status & STATUS_ASSOCIATED)) {
10041 wstats->miss.beacon = 0;
10042 wstats->discard.retries = 0;
10043 wstats->qual.qual = 0;
10044 wstats->qual.level = 0;
10045 wstats->qual.noise = 0;
10046 wstats->qual.updated = 7;
10047 wstats->qual.updated |= IW_QUAL_NOISE_INVALID |
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010048 IW_QUAL_QUAL_INVALID | IW_QUAL_LEVEL_INVALID;
James Ketrenos43f66a62005-03-25 12:31:53 -060010049 return wstats;
Jeff Garzikbf794512005-07-31 13:07:26 -040010050 }
James Ketrenos43f66a62005-03-25 12:31:53 -060010051
10052 wstats->qual.qual = priv->quality;
Zhu Yi00d21de2006-04-13 17:19:02 +080010053 wstats->qual.level = priv->exp_avg_rssi;
10054 wstats->qual.noise = priv->exp_avg_noise;
James Ketrenos43f66a62005-03-25 12:31:53 -060010055 wstats->qual.updated = IW_QUAL_QUAL_UPDATED | IW_QUAL_LEVEL_UPDATED |
Bill Mossb1916082006-02-15 08:50:18 +080010056 IW_QUAL_NOISE_UPDATED | IW_QUAL_DBM;
James Ketrenos43f66a62005-03-25 12:31:53 -060010057
10058 wstats->miss.beacon = average_value(&priv->average_missed_beacons);
10059 wstats->discard.retries = priv->last_tx_failures;
10060 wstats->discard.code = priv->ieee->ieee_stats.rx_discards_undecryptable;
Jeff Garzikbf794512005-07-31 13:07:26 -040010061
James Ketrenos43f66a62005-03-25 12:31:53 -060010062/* if (ipw_get_ordinal(priv, IPW_ORD_STAT_TX_RETRY, &tx_retry, &len))
10063 goto fail_get_ordinal;
10064 wstats->discard.retries += tx_retry; */
Jeff Garzikbf794512005-07-31 13:07:26 -040010065
James Ketrenos43f66a62005-03-25 12:31:53 -060010066 return wstats;
10067}
10068
James Ketrenos43f66a62005-03-25 12:31:53 -060010069/* net device stuff */
10070
Arjan van de Ven858119e2006-01-14 13:20:43 -080010071static void init_sys_config(struct ipw_sys_config *sys_config)
James Ketrenos43f66a62005-03-25 12:31:53 -060010072{
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010073 memset(sys_config, 0, sizeof(struct ipw_sys_config));
Zhu Yi810dabd2006-01-24 16:36:59 +080010074 sys_config->bt_coexistence = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060010075 sys_config->answer_broadcast_ssid_probe = 0;
10076 sys_config->accept_all_data_frames = 0;
10077 sys_config->accept_non_directed_frames = 1;
10078 sys_config->exclude_unicast_unencrypted = 0;
10079 sys_config->disable_unicast_decryption = 1;
10080 sys_config->exclude_multicast_unencrypted = 0;
10081 sys_config->disable_multicast_decryption = 1;
Zhu Yid2b83e12006-04-13 17:19:36 +080010082 if (antenna < CFG_SYS_ANTENNA_BOTH || antenna > CFG_SYS_ANTENNA_B)
10083 antenna = CFG_SYS_ANTENNA_BOTH;
10084 sys_config->antenna_diversity = antenna;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010085 sys_config->pass_crc_to_host = 0; /* TODO: See if 1 gives us FCS */
James Ketrenos43f66a62005-03-25 12:31:53 -060010086 sys_config->dot11g_auto_detection = 0;
Jeff Garzikbf794512005-07-31 13:07:26 -040010087 sys_config->enable_cts_to_self = 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060010088 sys_config->bt_coexist_collision_thr = 0;
Pavel Machek67fd6b42006-07-11 15:34:05 +020010089 sys_config->pass_noise_stats_to_host = 1; /* 1 -- fix for 256 */
Cahill, Ben M12977152006-03-08 02:58:02 +080010090 sys_config->silence_threshold = 0x1e;
James Ketrenos43f66a62005-03-25 12:31:53 -060010091}
10092
10093static int ipw_net_open(struct net_device *dev)
10094{
James Ketrenos43f66a62005-03-25 12:31:53 -060010095 IPW_DEBUG_INFO("dev->open\n");
David S. Miller521c4d92008-07-22 18:32:47 -070010096 netif_start_queue(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060010097 return 0;
10098}
10099
10100static int ipw_net_stop(struct net_device *dev)
10101{
10102 IPW_DEBUG_INFO("dev->close\n");
10103 netif_stop_queue(dev);
10104 return 0;
10105}
10106
10107/*
10108todo:
10109
10110modify to send one tfd per fragment instead of using chunking. otherwise
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010111we need to heavily modify the libipw_skb_to_txb.
James Ketrenos43f66a62005-03-25 12:31:53 -060010112*/
10113
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010114static int ipw_tx_skb(struct ipw_priv *priv, struct libipw_txb *txb,
James Ketrenos227d2dc2005-07-28 16:25:55 -050010115 int pri)
James Ketrenos43f66a62005-03-25 12:31:53 -060010116{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010117 struct libipw_hdr_3addrqos *hdr = (struct libipw_hdr_3addrqos *)
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010118 txb->fragments[0]->data;
James Ketrenos43f66a62005-03-25 12:31:53 -060010119 int i = 0;
10120 struct tfd_frame *tfd;
Zhu Yie43e3c12006-04-13 17:20:45 +080010121#ifdef CONFIG_IPW2200_QOS
James Ketrenosb095c382005-08-24 22:04:42 -050010122 int tx_id = ipw_get_tx_queue_number(priv, pri);
10123 struct clx2_tx_queue *txq = &priv->txq[tx_id];
10124#else
James Ketrenos43f66a62005-03-25 12:31:53 -060010125 struct clx2_tx_queue *txq = &priv->txq[0];
James Ketrenosb095c382005-08-24 22:04:42 -050010126#endif
James Ketrenos43f66a62005-03-25 12:31:53 -060010127 struct clx2_queue *q = &txq->q;
10128 u8 id, hdr_len, unicast;
James Ketrenosc848d0a2005-08-24 21:56:24 -050010129 int fc;
James Ketrenos43f66a62005-03-25 12:31:53 -060010130
Zhu Yib8ddafd2008-11-27 13:42:20 +080010131 if (!(priv->status & STATUS_ASSOCIATED))
10132 goto drop;
10133
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010134 hdr_len = libipw_get_hdrlen(le16_to_cpu(hdr->frame_ctl));
James Ketrenos43f66a62005-03-25 12:31:53 -060010135 switch (priv->ieee->iw_mode) {
10136 case IW_MODE_ADHOC:
Stephen Hemminger3c190652006-01-03 15:27:38 -080010137 unicast = !is_multicast_ether_addr(hdr->addr1);
James Ketrenos43f66a62005-03-25 12:31:53 -060010138 id = ipw_find_station(priv, hdr->addr1);
10139 if (id == IPW_INVALID_STATION) {
10140 id = ipw_add_station(priv, hdr->addr1);
10141 if (id == IPW_INVALID_STATION) {
10142 IPW_WARNING("Attempt to send data to "
Johannes Berge1749612008-10-27 15:59:26 -070010143 "invalid cell: %pM\n",
10144 hdr->addr1);
James Ketrenos43f66a62005-03-25 12:31:53 -060010145 goto drop;
10146 }
10147 }
10148 break;
10149
10150 case IW_MODE_INFRA:
10151 default:
Stephen Hemminger3c190652006-01-03 15:27:38 -080010152 unicast = !is_multicast_ether_addr(hdr->addr3);
James Ketrenos43f66a62005-03-25 12:31:53 -060010153 id = 0;
10154 break;
10155 }
10156
10157 tfd = &txq->bd[q->first_empty];
10158 txq->txb[q->first_empty] = txb;
10159 memset(tfd, 0, sizeof(*tfd));
10160 tfd->u.data.station_number = id;
10161
10162 tfd->control_flags.message_type = TX_FRAME_TYPE;
10163 tfd->control_flags.control_bits = TFD_NEED_IRQ_MASK;
10164
10165 tfd->u.data.cmd_id = DINO_CMD_TX;
James Ketrenosa613bff2005-08-24 21:43:11 -050010166 tfd->u.data.len = cpu_to_le16(txb->payload_size);
Jeff Garzikbf794512005-07-31 13:07:26 -040010167
James Ketrenos43f66a62005-03-25 12:31:53 -060010168 if (priv->assoc_request.ieee_mode == IPW_B_MODE)
James Ketrenosb095c382005-08-24 22:04:42 -050010169 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_MODE_CCK;
James Ketrenos43f66a62005-03-25 12:31:53 -060010170 else
James Ketrenosb095c382005-08-24 22:04:42 -050010171 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_MODE_OFDM;
James Ketrenos43f66a62005-03-25 12:31:53 -060010172
James Ketrenosea2b26e2005-08-24 21:25:16 -050010173 if (priv->assoc_request.preamble_length == DCT_FLAG_SHORT_PREAMBLE)
10174 tfd->u.data.tx_flags |= DCT_FLAG_SHORT_PREAMBLE;
James Ketrenos43f66a62005-03-25 12:31:53 -060010175
James Ketrenosc848d0a2005-08-24 21:56:24 -050010176 fc = le16_to_cpu(hdr->frame_ctl);
10177 hdr->frame_ctl = cpu_to_le16(fc & ~IEEE80211_FCTL_MOREFRAGS);
James Ketrenos43f66a62005-03-25 12:31:53 -060010178
10179 memcpy(&tfd->u.data.tfd.tfd_24.mchdr, hdr, hdr_len);
10180
James Ketrenosb095c382005-08-24 22:04:42 -050010181 if (likely(unicast))
10182 tfd->u.data.tx_flags |= DCT_FLAG_ACK_REQD;
10183
10184 if (txb->encrypted && !priv->ieee->host_encrypt) {
10185 switch (priv->ieee->sec.level) {
10186 case SEC_LEVEL_3:
10187 tfd->u.data.tfd.tfd_24.mchdr.frame_ctl |=
Zhu Yi851ca262006-08-21 11:37:58 +080010188 cpu_to_le16(IEEE80211_FCTL_PROTECTED);
James Ketrenosb095c382005-08-24 22:04:42 -050010189 /* XXX: ACK flag must be set for CCMP even if it
10190 * is a multicast/broadcast packet, because CCMP
10191 * group communication encrypted by GTK is
10192 * actually done by the AP. */
10193 if (!unicast)
10194 tfd->u.data.tx_flags |= DCT_FLAG_ACK_REQD;
10195
10196 tfd->u.data.tx_flags &= ~DCT_FLAG_NO_WEP;
10197 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_SECURITY_CCM;
10198 tfd->u.data.key_index = 0;
10199 tfd->u.data.key_index |= DCT_WEP_INDEX_USE_IMMEDIATE;
10200 break;
10201 case SEC_LEVEL_2:
10202 tfd->u.data.tfd.tfd_24.mchdr.frame_ctl |=
Zhu Yi851ca262006-08-21 11:37:58 +080010203 cpu_to_le16(IEEE80211_FCTL_PROTECTED);
James Ketrenosb095c382005-08-24 22:04:42 -050010204 tfd->u.data.tx_flags &= ~DCT_FLAG_NO_WEP;
10205 tfd->u.data.tx_flags_ext |= DCT_FLAG_EXT_SECURITY_TKIP;
10206 tfd->u.data.key_index = DCT_WEP_INDEX_USE_IMMEDIATE;
10207 break;
10208 case SEC_LEVEL_1:
10209 tfd->u.data.tfd.tfd_24.mchdr.frame_ctl |=
Zhu Yi851ca262006-08-21 11:37:58 +080010210 cpu_to_le16(IEEE80211_FCTL_PROTECTED);
John W. Linville274bfb82008-10-29 11:35:05 -040010211 tfd->u.data.key_index = priv->ieee->crypt_info.tx_keyidx;
10212 if (priv->ieee->sec.key_sizes[priv->ieee->crypt_info.tx_keyidx] <=
James Ketrenosb095c382005-08-24 22:04:42 -050010213 40)
10214 tfd->u.data.key_index |= DCT_WEP_KEY_64Bit;
10215 else
10216 tfd->u.data.key_index |= DCT_WEP_KEY_128Bit;
10217 break;
10218 case SEC_LEVEL_0:
10219 break;
10220 default:
André Goddard Rosaaf901ca2009-11-14 13:09:05 -020010221 printk(KERN_ERR "Unknown security level %d\n",
James Ketrenosb095c382005-08-24 22:04:42 -050010222 priv->ieee->sec.level);
10223 break;
10224 }
10225 } else
10226 /* No hardware encryption */
10227 tfd->u.data.tx_flags |= DCT_FLAG_NO_WEP;
10228
Zhu Yie43e3c12006-04-13 17:20:45 +080010229#ifdef CONFIG_IPW2200_QOS
Zhu Yia5cf4fe2006-04-13 17:19:11 +080010230 if (fc & IEEE80211_STYPE_QOS_DATA)
10231 ipw_qos_set_tx_queue_command(priv, pri, &(tfd->u.data));
Zhu Yie43e3c12006-04-13 17:20:45 +080010232#endif /* CONFIG_IPW2200_QOS */
James Ketrenosb095c382005-08-24 22:04:42 -050010233
James Ketrenos43f66a62005-03-25 12:31:53 -060010234 /* payload */
James Ketrenosa613bff2005-08-24 21:43:11 -050010235 tfd->u.data.num_chunks = cpu_to_le32(min((u8) (NUM_TFD_CHUNKS - 2),
10236 txb->nr_frags));
10237 IPW_DEBUG_FRAG("%i fragments being sent as %i chunks.\n",
10238 txb->nr_frags, le32_to_cpu(tfd->u.data.num_chunks));
10239 for (i = 0; i < le32_to_cpu(tfd->u.data.num_chunks); i++) {
10240 IPW_DEBUG_FRAG("Adding fragment %i of %i (%d bytes).\n",
10241 i, le32_to_cpu(tfd->u.data.num_chunks),
10242 txb->fragments[i]->len - hdr_len);
Jeff Garzikbf794512005-07-31 13:07:26 -040010243 IPW_DEBUG_TX("Dumping TX packet frag %i of %i (%d bytes):\n",
James Ketrenos43f66a62005-03-25 12:31:53 -060010244 i, tfd->u.data.num_chunks,
10245 txb->fragments[i]->len - hdr_len);
Jeff Garzikbf794512005-07-31 13:07:26 -040010246 printk_buf(IPW_DL_TX, txb->fragments[i]->data + hdr_len,
James Ketrenos43f66a62005-03-25 12:31:53 -060010247 txb->fragments[i]->len - hdr_len);
10248
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010249 tfd->u.data.chunk_ptr[i] =
James Ketrenosa613bff2005-08-24 21:43:11 -050010250 cpu_to_le32(pci_map_single
10251 (priv->pci_dev,
10252 txb->fragments[i]->data + hdr_len,
10253 txb->fragments[i]->len - hdr_len,
10254 PCI_DMA_TODEVICE));
10255 tfd->u.data.chunk_len[i] =
10256 cpu_to_le16(txb->fragments[i]->len - hdr_len);
James Ketrenos43f66a62005-03-25 12:31:53 -060010257 }
10258
10259 if (i != txb->nr_frags) {
10260 struct sk_buff *skb;
10261 u16 remaining_bytes = 0;
10262 int j;
10263
10264 for (j = i; j < txb->nr_frags; j++)
10265 remaining_bytes += txb->fragments[j]->len - hdr_len;
10266
10267 printk(KERN_INFO "Trying to reallocate for %d bytes\n",
10268 remaining_bytes);
10269 skb = alloc_skb(remaining_bytes, GFP_ATOMIC);
10270 if (skb != NULL) {
James Ketrenosa613bff2005-08-24 21:43:11 -050010271 tfd->u.data.chunk_len[i] = cpu_to_le16(remaining_bytes);
James Ketrenos43f66a62005-03-25 12:31:53 -060010272 for (j = i; j < txb->nr_frags; j++) {
10273 int size = txb->fragments[j]->len - hdr_len;
James Ketrenosafbf30a2005-08-25 00:05:33 -050010274
James Ketrenos43f66a62005-03-25 12:31:53 -060010275 printk(KERN_INFO "Adding frag %d %d...\n",
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010276 j, size);
James Ketrenos43f66a62005-03-25 12:31:53 -060010277 memcpy(skb_put(skb, size),
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010278 txb->fragments[j]->data + hdr_len, size);
James Ketrenos43f66a62005-03-25 12:31:53 -060010279 }
10280 dev_kfree_skb_any(txb->fragments[i]);
10281 txb->fragments[i] = skb;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010282 tfd->u.data.chunk_ptr[i] =
James Ketrenosa613bff2005-08-24 21:43:11 -050010283 cpu_to_le32(pci_map_single
10284 (priv->pci_dev, skb->data,
Al Viro49587302007-12-27 01:57:47 -050010285 remaining_bytes,
James Ketrenosa613bff2005-08-24 21:43:11 -050010286 PCI_DMA_TODEVICE));
10287
Marcin Slusarz5c058632008-02-13 00:06:12 +010010288 le32_add_cpu(&tfd->u.data.num_chunks, 1);
Jeff Garzikbf794512005-07-31 13:07:26 -040010289 }
James Ketrenos43f66a62005-03-25 12:31:53 -060010290 }
10291
10292 /* kick DMA */
10293 q->first_empty = ipw_queue_inc_wrap(q->first_empty, q->n_bd);
10294 ipw_write32(priv, q->reg_w, q->first_empty);
10295
Dan Williams943dbef2008-02-14 17:49:41 -050010296 if (ipw_tx_queue_space(q) < q->high_mark)
James Ketrenosf6970142006-02-14 09:10:51 +080010297 netif_stop_queue(priv->net_dev);
10298
James Ketrenos227d2dc2005-07-28 16:25:55 -050010299 return NETDEV_TX_OK;
James Ketrenos43f66a62005-03-25 12:31:53 -060010300
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010301 drop:
James Ketrenos43f66a62005-03-25 12:31:53 -060010302 IPW_DEBUG_DROP("Silently dropping Tx packet.\n");
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010303 libipw_txb_free(txb);
James Ketrenos227d2dc2005-07-28 16:25:55 -050010304 return NETDEV_TX_OK;
10305}
10306
10307static int ipw_net_is_queue_full(struct net_device *dev, int pri)
10308{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010309 struct ipw_priv *priv = libipw_priv(dev);
Zhu Yie43e3c12006-04-13 17:20:45 +080010310#ifdef CONFIG_IPW2200_QOS
James Ketrenos227d2dc2005-07-28 16:25:55 -050010311 int tx_id = ipw_get_tx_queue_number(priv, pri);
10312 struct clx2_tx_queue *txq = &priv->txq[tx_id];
10313#else
10314 struct clx2_tx_queue *txq = &priv->txq[0];
Zhu Yie43e3c12006-04-13 17:20:45 +080010315#endif /* CONFIG_IPW2200_QOS */
James Ketrenos227d2dc2005-07-28 16:25:55 -050010316
Dan Williams943dbef2008-02-14 17:49:41 -050010317 if (ipw_tx_queue_space(&txq->q) < txq->q.high_mark)
James Ketrenos227d2dc2005-07-28 16:25:55 -050010318 return 1;
10319
10320 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060010321}
10322
Zhu Yid685b8c2006-04-13 17:20:27 +080010323#ifdef CONFIG_IPW2200_PROMISCUOUS
10324static void ipw_handle_promiscuous_tx(struct ipw_priv *priv,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010325 struct libipw_txb *txb)
Zhu Yid685b8c2006-04-13 17:20:27 +080010326{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010327 struct libipw_rx_stats dummystats;
Zhu Yid685b8c2006-04-13 17:20:27 +080010328 struct ieee80211_hdr *hdr;
10329 u8 n;
10330 u16 filter = priv->prom_priv->filter;
10331 int hdr_only = 0;
10332
10333 if (filter & IPW_PROM_NO_TX)
10334 return;
10335
10336 memset(&dummystats, 0, sizeof(dummystats));
10337
Lucas De Marchi25985ed2011-03-30 22:57:33 -030010338 /* Filtering of fragment chains is done against the first fragment */
Zhu Yid685b8c2006-04-13 17:20:27 +080010339 hdr = (void *)txb->fragments[0]->data;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010340 if (libipw_is_management(le16_to_cpu(hdr->frame_control))) {
Zhu Yid685b8c2006-04-13 17:20:27 +080010341 if (filter & IPW_PROM_NO_MGMT)
10342 return;
10343 if (filter & IPW_PROM_MGMT_HEADER_ONLY)
10344 hdr_only = 1;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010345 } else if (libipw_is_control(le16_to_cpu(hdr->frame_control))) {
Zhu Yid685b8c2006-04-13 17:20:27 +080010346 if (filter & IPW_PROM_NO_CTL)
10347 return;
10348 if (filter & IPW_PROM_CTL_HEADER_ONLY)
10349 hdr_only = 1;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010350 } else if (libipw_is_data(le16_to_cpu(hdr->frame_control))) {
Zhu Yid685b8c2006-04-13 17:20:27 +080010351 if (filter & IPW_PROM_NO_DATA)
10352 return;
10353 if (filter & IPW_PROM_DATA_HEADER_ONLY)
10354 hdr_only = 1;
10355 }
10356
10357 for(n=0; n<txb->nr_frags; ++n) {
10358 struct sk_buff *src = txb->fragments[n];
10359 struct sk_buff *dst;
10360 struct ieee80211_radiotap_header *rt_hdr;
10361 int len;
10362
10363 if (hdr_only) {
10364 hdr = (void *)src->data;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010365 len = libipw_get_hdrlen(le16_to_cpu(hdr->frame_control));
Zhu Yid685b8c2006-04-13 17:20:27 +080010366 } else
10367 len = src->len;
10368
Stanislav Yakovlevbf113152012-10-15 14:14:32 +000010369 dst = alloc_skb(len + sizeof(*rt_hdr) + sizeof(u16)*2, GFP_ATOMIC);
Johannes Berg007e5dd2008-11-27 23:13:38 +010010370 if (!dst)
10371 continue;
Zhu Yid685b8c2006-04-13 17:20:27 +080010372
10373 rt_hdr = (void *)skb_put(dst, sizeof(*rt_hdr));
10374
10375 rt_hdr->it_version = PKTHDR_RADIOTAP_VERSION;
10376 rt_hdr->it_pad = 0;
10377 rt_hdr->it_present = 0; /* after all, it's just an idea */
Al Viro743b84d2007-12-27 01:43:16 -050010378 rt_hdr->it_present |= cpu_to_le32(1 << IEEE80211_RADIOTAP_CHANNEL);
Zhu Yid685b8c2006-04-13 17:20:27 +080010379
Al Viroe62e1ee2007-12-27 01:36:46 -050010380 *(__le16*)skb_put(dst, sizeof(u16)) = cpu_to_le16(
Zhu Yid685b8c2006-04-13 17:20:27 +080010381 ieee80211chan2mhz(priv->channel));
10382 if (priv->channel > 14) /* 802.11a */
Al Viroe62e1ee2007-12-27 01:36:46 -050010383 *(__le16*)skb_put(dst, sizeof(u16)) =
Zhu Yid685b8c2006-04-13 17:20:27 +080010384 cpu_to_le16(IEEE80211_CHAN_OFDM |
10385 IEEE80211_CHAN_5GHZ);
10386 else if (priv->ieee->mode == IEEE_B) /* 802.11b */
Al Viroe62e1ee2007-12-27 01:36:46 -050010387 *(__le16*)skb_put(dst, sizeof(u16)) =
Zhu Yid685b8c2006-04-13 17:20:27 +080010388 cpu_to_le16(IEEE80211_CHAN_CCK |
10389 IEEE80211_CHAN_2GHZ);
10390 else /* 802.11g */
Al Viroe62e1ee2007-12-27 01:36:46 -050010391 *(__le16*)skb_put(dst, sizeof(u16)) =
Zhu Yid685b8c2006-04-13 17:20:27 +080010392 cpu_to_le16(IEEE80211_CHAN_OFDM |
10393 IEEE80211_CHAN_2GHZ);
10394
Al Viro743b84d2007-12-27 01:43:16 -050010395 rt_hdr->it_len = cpu_to_le16(dst->len);
Zhu Yid685b8c2006-04-13 17:20:27 +080010396
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -030010397 skb_copy_from_linear_data(src, skb_put(dst, len), len);
Zhu Yid685b8c2006-04-13 17:20:27 +080010398
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010399 if (!libipw_rx(priv->prom_priv->ieee, dst, &dummystats))
Zhu Yid685b8c2006-04-13 17:20:27 +080010400 dev_kfree_skb_any(dst);
10401 }
10402}
10403#endif
10404
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +000010405static netdev_tx_t ipw_net_hard_start_xmit(struct libipw_txb *txb,
10406 struct net_device *dev, int pri)
James Ketrenos43f66a62005-03-25 12:31:53 -060010407{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010408 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060010409 unsigned long flags;
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +000010410 netdev_tx_t ret;
James Ketrenos43f66a62005-03-25 12:31:53 -060010411
10412 IPW_DEBUG_TX("dev->xmit(%d bytes)\n", txb->payload_size);
James Ketrenos43f66a62005-03-25 12:31:53 -060010413 spin_lock_irqsave(&priv->lock, flags);
10414
Zhu Yid685b8c2006-04-13 17:20:27 +080010415#ifdef CONFIG_IPW2200_PROMISCUOUS
10416 if (rtap_iface && netif_running(priv->prom_net_dev))
10417 ipw_handle_promiscuous_tx(priv, txb);
10418#endif
10419
James Ketrenos227d2dc2005-07-28 16:25:55 -050010420 ret = ipw_tx_skb(priv, txb, pri);
10421 if (ret == NETDEV_TX_OK)
10422 __ipw_led_activity_on(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060010423 spin_unlock_irqrestore(&priv->lock, flags);
James Ketrenos43f66a62005-03-25 12:31:53 -060010424
James Ketrenos227d2dc2005-07-28 16:25:55 -050010425 return ret;
James Ketrenos43f66a62005-03-25 12:31:53 -060010426}
10427
James Ketrenos43f66a62005-03-25 12:31:53 -060010428static void ipw_net_set_multicast_list(struct net_device *dev)
10429{
10430
10431}
10432
10433static int ipw_net_set_mac_address(struct net_device *dev, void *p)
10434{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010435 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060010436 struct sockaddr *addr = p;
Joe Perches0795af52007-10-03 17:59:30 -070010437
James Ketrenos43f66a62005-03-25 12:31:53 -060010438 if (!is_valid_ether_addr(addr->sa_data))
10439 return -EADDRNOTAVAIL;
Zhu Yi46441512006-01-24 16:37:59 +080010440 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060010441 priv->config |= CFG_CUSTOM_MAC;
10442 memcpy(priv->mac_addr, addr->sa_data, ETH_ALEN);
Johannes Berge1749612008-10-27 15:59:26 -070010443 printk(KERN_INFO "%s: Setting MAC to %pM\n",
10444 priv->net_dev->name, priv->mac_addr);
Tejun Heobcb6d912011-01-26 12:12:50 +010010445 schedule_work(&priv->adapter_restart);
Zhu Yi46441512006-01-24 16:37:59 +080010446 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060010447 return 0;
10448}
10449
Jeff Garzikbf794512005-07-31 13:07:26 -040010450static void ipw_ethtool_get_drvinfo(struct net_device *dev,
James Ketrenos43f66a62005-03-25 12:31:53 -060010451 struct ethtool_drvinfo *info)
10452{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010453 struct ipw_priv *p = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060010454 char vers[64];
10455 char date[32];
10456 u32 len;
10457
Rick Jones1f80c232011-11-15 10:40:49 -080010458 strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
10459 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
James Ketrenos43f66a62005-03-25 12:31:53 -060010460
10461 len = sizeof(vers);
10462 ipw_get_ordinal(p, IPW_ORD_STAT_FW_VERSION, vers, &len);
10463 len = sizeof(date);
10464 ipw_get_ordinal(p, IPW_ORD_STAT_FW_DATE, date, &len);
10465
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010466 snprintf(info->fw_version, sizeof(info->fw_version), "%s (%s)",
James Ketrenos43f66a62005-03-25 12:31:53 -060010467 vers, date);
Rick Jones1f80c232011-11-15 10:40:49 -080010468 strlcpy(info->bus_info, pci_name(p->pci_dev),
10469 sizeof(info->bus_info));
James Ketrenos43f66a62005-03-25 12:31:53 -060010470}
10471
10472static u32 ipw_ethtool_get_link(struct net_device *dev)
10473{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010474 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060010475 return (priv->status & STATUS_ASSOCIATED) != 0;
10476}
10477
10478static int ipw_ethtool_get_eeprom_len(struct net_device *dev)
10479{
James Ketrenosb095c382005-08-24 22:04:42 -050010480 return IPW_EEPROM_IMAGE_SIZE;
James Ketrenos43f66a62005-03-25 12:31:53 -060010481}
10482
10483static int ipw_ethtool_get_eeprom(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010484 struct ethtool_eeprom *eeprom, u8 * bytes)
James Ketrenos43f66a62005-03-25 12:31:53 -060010485{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010486 struct ipw_priv *p = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060010487
James Ketrenosb095c382005-08-24 22:04:42 -050010488 if (eeprom->offset + eeprom->len > IPW_EEPROM_IMAGE_SIZE)
James Ketrenos43f66a62005-03-25 12:31:53 -060010489 return -EINVAL;
Zhu Yi46441512006-01-24 16:37:59 +080010490 mutex_lock(&p->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010491 memcpy(bytes, &p->eeprom[eeprom->offset], eeprom->len);
Zhu Yi46441512006-01-24 16:37:59 +080010492 mutex_unlock(&p->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060010493 return 0;
10494}
10495
10496static int ipw_ethtool_set_eeprom(struct net_device *dev,
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010497 struct ethtool_eeprom *eeprom, u8 * bytes)
James Ketrenos43f66a62005-03-25 12:31:53 -060010498{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010499 struct ipw_priv *p = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060010500 int i;
10501
James Ketrenosb095c382005-08-24 22:04:42 -050010502 if (eeprom->offset + eeprom->len > IPW_EEPROM_IMAGE_SIZE)
James Ketrenos43f66a62005-03-25 12:31:53 -060010503 return -EINVAL;
Zhu Yi46441512006-01-24 16:37:59 +080010504 mutex_lock(&p->mutex);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010505 memcpy(&p->eeprom[eeprom->offset], bytes, eeprom->len);
Adrian Bunk71e585f2006-03-11 04:42:58 +010010506 for (i = 0; i < IPW_EEPROM_IMAGE_SIZE; i++)
10507 ipw_write8(p, i + IPW_EEPROM_DATA, p->eeprom[i]);
Zhu Yi46441512006-01-24 16:37:59 +080010508 mutex_unlock(&p->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060010509 return 0;
10510}
10511
Jeff Garzik7282d492006-09-13 14:30:00 -040010512static const struct ethtool_ops ipw_ethtool_ops = {
James Ketrenosea2b26e2005-08-24 21:25:16 -050010513 .get_link = ipw_ethtool_get_link,
10514 .get_drvinfo = ipw_ethtool_get_drvinfo,
10515 .get_eeprom_len = ipw_ethtool_get_eeprom_len,
10516 .get_eeprom = ipw_ethtool_get_eeprom,
10517 .set_eeprom = ipw_ethtool_set_eeprom,
James Ketrenos43f66a62005-03-25 12:31:53 -060010518};
10519
David Howells7d12e782006-10-05 14:55:46 +010010520static irqreturn_t ipw_isr(int irq, void *data)
James Ketrenos43f66a62005-03-25 12:31:53 -060010521{
10522 struct ipw_priv *priv = data;
10523 u32 inta, inta_mask;
Jeff Garzikbf794512005-07-31 13:07:26 -040010524
James Ketrenos43f66a62005-03-25 12:31:53 -060010525 if (!priv)
10526 return IRQ_NONE;
10527
Zhu Yi89c318e2006-06-08 22:19:49 -070010528 spin_lock(&priv->irq_lock);
James Ketrenos43f66a62005-03-25 12:31:53 -060010529
10530 if (!(priv->status & STATUS_INT_ENABLED)) {
Zhu Yid00d0122007-07-12 16:09:40 +080010531 /* IRQ is disabled */
James Ketrenos43f66a62005-03-25 12:31:53 -060010532 goto none;
10533 }
10534
James Ketrenosb095c382005-08-24 22:04:42 -050010535 inta = ipw_read32(priv, IPW_INTA_RW);
10536 inta_mask = ipw_read32(priv, IPW_INTA_MASK_R);
Jeff Garzikbf794512005-07-31 13:07:26 -040010537
James Ketrenos43f66a62005-03-25 12:31:53 -060010538 if (inta == 0xFFFFFFFF) {
10539 /* Hardware disappeared */
10540 IPW_WARNING("IRQ INTA == 0xFFFFFFFF\n");
10541 goto none;
10542 }
10543
James Ketrenosb095c382005-08-24 22:04:42 -050010544 if (!(inta & (IPW_INTA_MASK_ALL & inta_mask))) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010545 /* Shared interrupt */
10546 goto none;
10547 }
10548
10549 /* tell the device to stop sending interrupts */
Zhu Yi89c318e2006-06-08 22:19:49 -070010550 __ipw_disable_interrupts(priv);
Jeff Garzikbf794512005-07-31 13:07:26 -040010551
James Ketrenos43f66a62005-03-25 12:31:53 -060010552 /* ack current interrupts */
James Ketrenosb095c382005-08-24 22:04:42 -050010553 inta &= (IPW_INTA_MASK_ALL & inta_mask);
10554 ipw_write32(priv, IPW_INTA_RW, inta);
Jeff Garzikbf794512005-07-31 13:07:26 -040010555
James Ketrenos43f66a62005-03-25 12:31:53 -060010556 /* Cache INTA value for our tasklet */
10557 priv->isr_inta = inta;
10558
10559 tasklet_schedule(&priv->irq_tasklet);
10560
Zhu Yi89c318e2006-06-08 22:19:49 -070010561 spin_unlock(&priv->irq_lock);
James Ketrenos43f66a62005-03-25 12:31:53 -060010562
10563 return IRQ_HANDLED;
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010564 none:
Zhu Yi89c318e2006-06-08 22:19:49 -070010565 spin_unlock(&priv->irq_lock);
James Ketrenos43f66a62005-03-25 12:31:53 -060010566 return IRQ_NONE;
10567}
10568
10569static void ipw_rf_kill(void *adapter)
10570{
10571 struct ipw_priv *priv = adapter;
10572 unsigned long flags;
Jeff Garzikbf794512005-07-31 13:07:26 -040010573
James Ketrenos43f66a62005-03-25 12:31:53 -060010574 spin_lock_irqsave(&priv->lock, flags);
10575
10576 if (rf_kill_active(priv)) {
10577 IPW_DEBUG_RF_KILL("RF Kill active, rescheduling GPIO check\n");
Tejun Heobcb6d912011-01-26 12:12:50 +010010578 schedule_delayed_work(&priv->rf_kill, 2 * HZ);
James Ketrenos43f66a62005-03-25 12:31:53 -060010579 goto exit_unlock;
10580 }
10581
10582 /* RF Kill is now disabled, so bring the device back up */
10583
10584 if (!(priv->status & STATUS_RF_KILL_MASK)) {
10585 IPW_DEBUG_RF_KILL("HW RF Kill no longer active, restarting "
10586 "device\n");
10587
10588 /* we can not do an adapter restart while inside an irq lock */
Tejun Heobcb6d912011-01-26 12:12:50 +010010589 schedule_work(&priv->adapter_restart);
Jeff Garzikbf794512005-07-31 13:07:26 -040010590 } else
James Ketrenos43f66a62005-03-25 12:31:53 -060010591 IPW_DEBUG_RF_KILL("HW RF Kill deactivated. SW RF Kill still "
10592 "enabled\n");
10593
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010594 exit_unlock:
James Ketrenos43f66a62005-03-25 12:31:53 -060010595 spin_unlock_irqrestore(&priv->lock, flags);
10596}
10597
David Howellsc4028952006-11-22 14:57:56 +000010598static void ipw_bg_rf_kill(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -050010599{
David Howellsc4028952006-11-22 14:57:56 +000010600 struct ipw_priv *priv =
10601 container_of(work, struct ipw_priv, rf_kill.work);
Zhu Yi46441512006-01-24 16:37:59 +080010602 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +000010603 ipw_rf_kill(priv);
Zhu Yi46441512006-01-24 16:37:59 +080010604 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010605}
10606
Adrian Bunka73e22b2006-01-21 01:39:42 +010010607static void ipw_link_up(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -050010608{
James Ketrenosafbf30a2005-08-25 00:05:33 -050010609 priv->last_seq_num = -1;
10610 priv->last_frag_num = -1;
10611 priv->last_packet_time = 0;
10612
James Ketrenosa613bff2005-08-24 21:43:11 -050010613 netif_carrier_on(priv->net_dev);
James Ketrenosa613bff2005-08-24 21:43:11 -050010614
James Ketrenosc848d0a2005-08-24 21:56:24 -050010615 cancel_delayed_work(&priv->request_scan);
Dan Williamsea177302008-06-02 17:51:23 -040010616 cancel_delayed_work(&priv->request_direct_scan);
10617 cancel_delayed_work(&priv->request_passive_scan);
Dan Williams0b531672007-10-09 13:55:24 -040010618 cancel_delayed_work(&priv->scan_event);
James Ketrenosa613bff2005-08-24 21:43:11 -050010619 ipw_reset_stats(priv);
10620 /* Ensure the rate is updated immediately */
10621 priv->last_rate = ipw_get_current_rate(priv);
10622 ipw_gather_stats(priv);
10623 ipw_led_link_up(priv);
10624 notify_wx_assoc_event(priv);
10625
10626 if (priv->config & CFG_BACKGROUND_SCAN)
Tejun Heobcb6d912011-01-26 12:12:50 +010010627 schedule_delayed_work(&priv->request_scan, HZ);
James Ketrenosa613bff2005-08-24 21:43:11 -050010628}
10629
David Howellsc4028952006-11-22 14:57:56 +000010630static void ipw_bg_link_up(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -050010631{
David Howellsc4028952006-11-22 14:57:56 +000010632 struct ipw_priv *priv =
10633 container_of(work, struct ipw_priv, link_up);
Zhu Yi46441512006-01-24 16:37:59 +080010634 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +000010635 ipw_link_up(priv);
Zhu Yi46441512006-01-24 16:37:59 +080010636 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010637}
10638
Adrian Bunka73e22b2006-01-21 01:39:42 +010010639static void ipw_link_down(struct ipw_priv *priv)
James Ketrenosa613bff2005-08-24 21:43:11 -050010640{
10641 ipw_led_link_down(priv);
10642 netif_carrier_off(priv->net_dev);
James Ketrenosa613bff2005-08-24 21:43:11 -050010643 notify_wx_assoc_event(priv);
10644
10645 /* Cancel any queued work ... */
10646 cancel_delayed_work(&priv->request_scan);
Dan Williamsea177302008-06-02 17:51:23 -040010647 cancel_delayed_work(&priv->request_direct_scan);
10648 cancel_delayed_work(&priv->request_passive_scan);
James Ketrenosa613bff2005-08-24 21:43:11 -050010649 cancel_delayed_work(&priv->adhoc_check);
10650 cancel_delayed_work(&priv->gather_stats);
10651
10652 ipw_reset_stats(priv);
10653
James Ketrenosafbf30a2005-08-25 00:05:33 -050010654 if (!(priv->status & STATUS_EXIT_PENDING)) {
10655 /* Queue up another scan... */
Tejun Heobcb6d912011-01-26 12:12:50 +010010656 schedule_delayed_work(&priv->request_scan, 0);
Dan Williams0b531672007-10-09 13:55:24 -040010657 } else
10658 cancel_delayed_work(&priv->scan_event);
James Ketrenosa613bff2005-08-24 21:43:11 -050010659}
10660
David Howellsc4028952006-11-22 14:57:56 +000010661static void ipw_bg_link_down(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -050010662{
David Howellsc4028952006-11-22 14:57:56 +000010663 struct ipw_priv *priv =
10664 container_of(work, struct ipw_priv, link_down);
Zhu Yi46441512006-01-24 16:37:59 +080010665 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +000010666 ipw_link_down(priv);
Zhu Yi46441512006-01-24 16:37:59 +080010667 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -050010668}
10669
Bill Pembertoneb9248e2012-12-03 09:56:32 -050010670static int ipw_setup_deferred_work(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -060010671{
10672 int ret = 0;
10673
James Ketrenos43f66a62005-03-25 12:31:53 -060010674 init_waitqueue_head(&priv->wait_command_queue);
James Ketrenosafbf30a2005-08-25 00:05:33 -050010675 init_waitqueue_head(&priv->wait_state);
James Ketrenos43f66a62005-03-25 12:31:53 -060010676
David Howellsc4028952006-11-22 14:57:56 +000010677 INIT_DELAYED_WORK(&priv->adhoc_check, ipw_bg_adhoc_check);
10678 INIT_WORK(&priv->associate, ipw_bg_associate);
10679 INIT_WORK(&priv->disassociate, ipw_bg_disassociate);
10680 INIT_WORK(&priv->system_config, ipw_system_config);
10681 INIT_WORK(&priv->rx_replenish, ipw_bg_rx_queue_replenish);
10682 INIT_WORK(&priv->adapter_restart, ipw_bg_adapter_restart);
10683 INIT_DELAYED_WORK(&priv->rf_kill, ipw_bg_rf_kill);
10684 INIT_WORK(&priv->up, ipw_bg_up);
10685 INIT_WORK(&priv->down, ipw_bg_down);
10686 INIT_DELAYED_WORK(&priv->request_scan, ipw_request_scan);
Dan Williamsea177302008-06-02 17:51:23 -040010687 INIT_DELAYED_WORK(&priv->request_direct_scan, ipw_request_direct_scan);
10688 INIT_DELAYED_WORK(&priv->request_passive_scan, ipw_request_passive_scan);
Dan Williams0b531672007-10-09 13:55:24 -040010689 INIT_DELAYED_WORK(&priv->scan_event, ipw_scan_event);
David Howellsc4028952006-11-22 14:57:56 +000010690 INIT_DELAYED_WORK(&priv->gather_stats, ipw_bg_gather_stats);
10691 INIT_WORK(&priv->abort_scan, ipw_bg_abort_scan);
10692 INIT_WORK(&priv->roam, ipw_bg_roam);
10693 INIT_DELAYED_WORK(&priv->scan_check, ipw_bg_scan_check);
10694 INIT_WORK(&priv->link_up, ipw_bg_link_up);
10695 INIT_WORK(&priv->link_down, ipw_bg_link_down);
10696 INIT_DELAYED_WORK(&priv->led_link_on, ipw_bg_led_link_on);
10697 INIT_DELAYED_WORK(&priv->led_link_off, ipw_bg_led_link_off);
10698 INIT_DELAYED_WORK(&priv->led_act_off, ipw_bg_led_activity_off);
10699 INIT_WORK(&priv->merge_networks, ipw_merge_adhoc_network);
James Ketrenos43f66a62005-03-25 12:31:53 -060010700
Zhu Yie43e3c12006-04-13 17:20:45 +080010701#ifdef CONFIG_IPW2200_QOS
David Howellsc4028952006-11-22 14:57:56 +000010702 INIT_WORK(&priv->qos_activate, ipw_bg_qos_activate);
Zhu Yie43e3c12006-04-13 17:20:45 +080010703#endif /* CONFIG_IPW2200_QOS */
James Ketrenos43f66a62005-03-25 12:31:53 -060010704
10705 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
10706 ipw_irq_tasklet, (unsigned long)priv);
10707
10708 return ret;
10709}
10710
James Ketrenos43f66a62005-03-25 12:31:53 -060010711static void shim__set_security(struct net_device *dev,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010712 struct libipw_security *sec)
James Ketrenos43f66a62005-03-25 12:31:53 -060010713{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010714 struct ipw_priv *priv = libipw_priv(dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060010715 int i;
Jeff Garzikbf794512005-07-31 13:07:26 -040010716 for (i = 0; i < 4; i++) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010717 if (sec->flags & (1 << i)) {
James Ketrenosafbf30a2005-08-25 00:05:33 -050010718 priv->ieee->sec.encode_alg[i] = sec->encode_alg[i];
James Ketrenosb095c382005-08-24 22:04:42 -050010719 priv->ieee->sec.key_sizes[i] = sec->key_sizes[i];
James Ketrenos43f66a62005-03-25 12:31:53 -060010720 if (sec->key_sizes[i] == 0)
James Ketrenosb095c382005-08-24 22:04:42 -050010721 priv->ieee->sec.flags &= ~(1 << i);
10722 else {
10723 memcpy(priv->ieee->sec.keys[i], sec->keys[i],
James Ketrenos43f66a62005-03-25 12:31:53 -060010724 sec->key_sizes[i]);
James Ketrenosb095c382005-08-24 22:04:42 -050010725 priv->ieee->sec.flags |= (1 << i);
10726 }
James Ketrenos43f66a62005-03-25 12:31:53 -060010727 priv->status |= STATUS_SECURITY_UPDATED;
James Ketrenosb095c382005-08-24 22:04:42 -050010728 } else if (sec->level != SEC_LEVEL_1)
10729 priv->ieee->sec.flags &= ~(1 << i);
James Ketrenos43f66a62005-03-25 12:31:53 -060010730 }
10731
James Ketrenosb095c382005-08-24 22:04:42 -050010732 if (sec->flags & SEC_ACTIVE_KEY) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010733 if (sec->active_key <= 3) {
James Ketrenosb095c382005-08-24 22:04:42 -050010734 priv->ieee->sec.active_key = sec->active_key;
10735 priv->ieee->sec.flags |= SEC_ACTIVE_KEY;
Jeff Garzikbf794512005-07-31 13:07:26 -040010736 } else
James Ketrenosb095c382005-08-24 22:04:42 -050010737 priv->ieee->sec.flags &= ~SEC_ACTIVE_KEY;
James Ketrenos43f66a62005-03-25 12:31:53 -060010738 priv->status |= STATUS_SECURITY_UPDATED;
James Ketrenosb095c382005-08-24 22:04:42 -050010739 } else
10740 priv->ieee->sec.flags &= ~SEC_ACTIVE_KEY;
James Ketrenos43f66a62005-03-25 12:31:53 -060010741
10742 if ((sec->flags & SEC_AUTH_MODE) &&
James Ketrenosb095c382005-08-24 22:04:42 -050010743 (priv->ieee->sec.auth_mode != sec->auth_mode)) {
10744 priv->ieee->sec.auth_mode = sec->auth_mode;
10745 priv->ieee->sec.flags |= SEC_AUTH_MODE;
James Ketrenos43f66a62005-03-25 12:31:53 -060010746 if (sec->auth_mode == WLAN_AUTH_SHARED_KEY)
10747 priv->capability |= CAP_SHARED_KEY;
10748 else
10749 priv->capability &= ~CAP_SHARED_KEY;
10750 priv->status |= STATUS_SECURITY_UPDATED;
10751 }
Jeff Garzikbf794512005-07-31 13:07:26 -040010752
James Ketrenosb095c382005-08-24 22:04:42 -050010753 if (sec->flags & SEC_ENABLED && priv->ieee->sec.enabled != sec->enabled) {
10754 priv->ieee->sec.flags |= SEC_ENABLED;
10755 priv->ieee->sec.enabled = sec->enabled;
James Ketrenos43f66a62005-03-25 12:31:53 -060010756 priv->status |= STATUS_SECURITY_UPDATED;
Jeff Garzikbf794512005-07-31 13:07:26 -040010757 if (sec->enabled)
James Ketrenos43f66a62005-03-25 12:31:53 -060010758 priv->capability |= CAP_PRIVACY_ON;
10759 else
10760 priv->capability &= ~CAP_PRIVACY_ON;
10761 }
Jeff Garzikbf794512005-07-31 13:07:26 -040010762
James Ketrenosafbf30a2005-08-25 00:05:33 -050010763 if (sec->flags & SEC_ENCRYPT)
10764 priv->ieee->sec.encrypt = sec->encrypt;
James Ketrenos43f66a62005-03-25 12:31:53 -060010765
James Ketrenosb095c382005-08-24 22:04:42 -050010766 if (sec->flags & SEC_LEVEL && priv->ieee->sec.level != sec->level) {
10767 priv->ieee->sec.level = sec->level;
10768 priv->ieee->sec.flags |= SEC_LEVEL;
James Ketrenos43f66a62005-03-25 12:31:53 -060010769 priv->status |= STATUS_SECURITY_UPDATED;
10770 }
10771
Zhu Yi1fbfea52005-08-05 17:22:56 +080010772 if (!priv->ieee->host_encrypt && (sec->flags & SEC_ENCRYPT))
10773 ipw_set_hwcrypto_keys(priv);
10774
Jeff Garzikbf794512005-07-31 13:07:26 -040010775 /* To match current functionality of ipw2100 (which works well w/
10776 * various supplicants, we don't force a disassociate if the
James Ketrenos43f66a62005-03-25 12:31:53 -060010777 * privacy capability changes ... */
10778#if 0
10779 if ((priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)) &&
Jeff Garzikbf794512005-07-31 13:07:26 -040010780 (((priv->assoc_request.capability &
Al Viro5b5e8072007-12-27 01:54:06 -050010781 cpu_to_le16(WLAN_CAPABILITY_PRIVACY)) && !sec->enabled) ||
Jeff Garzikbf794512005-07-31 13:07:26 -040010782 (!(priv->assoc_request.capability &
Al Viro5b5e8072007-12-27 01:54:06 -050010783 cpu_to_le16(WLAN_CAPABILITY_PRIVACY)) && sec->enabled))) {
James Ketrenos43f66a62005-03-25 12:31:53 -060010784 IPW_DEBUG_ASSOC("Disassociating due to capability "
10785 "change.\n");
10786 ipw_disassociate(priv);
10787 }
10788#endif
10789}
10790
Jeff Garzikbf794512005-07-31 13:07:26 -040010791static int init_supported_rates(struct ipw_priv *priv,
James Ketrenos43f66a62005-03-25 12:31:53 -060010792 struct ipw_supported_rates *rates)
10793{
10794 /* TODO: Mask out rates based on priv->rates_mask */
10795
10796 memset(rates, 0, sizeof(*rates));
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010797 /* configure supported rates */
James Ketrenos43f66a62005-03-25 12:31:53 -060010798 switch (priv->ieee->freq_band) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010799 case LIBIPW_52GHZ_BAND:
James Ketrenos43f66a62005-03-25 12:31:53 -060010800 rates->ieee_mode = IPW_A_MODE;
10801 rates->purpose = IPW_RATE_CAPABILITIES;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010802 ipw_add_ofdm_scan_rates(rates, LIBIPW_CCK_MODULATION,
10803 LIBIPW_OFDM_DEFAULT_RATES_MASK);
James Ketrenos43f66a62005-03-25 12:31:53 -060010804 break;
10805
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010806 default: /* Mixed or 2.4Ghz */
James Ketrenos43f66a62005-03-25 12:31:53 -060010807 rates->ieee_mode = IPW_G_MODE;
10808 rates->purpose = IPW_RATE_CAPABILITIES;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010809 ipw_add_cck_scan_rates(rates, LIBIPW_CCK_MODULATION,
10810 LIBIPW_CCK_DEFAULT_RATES_MASK);
10811 if (priv->ieee->modulation & LIBIPW_OFDM_MODULATION) {
10812 ipw_add_ofdm_scan_rates(rates, LIBIPW_CCK_MODULATION,
10813 LIBIPW_OFDM_DEFAULT_RATES_MASK);
James Ketrenos43f66a62005-03-25 12:31:53 -060010814 }
10815 break;
10816 }
10817
10818 return 0;
10819}
10820
Jeff Garzikbf794512005-07-31 13:07:26 -040010821static int ipw_config(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -060010822{
James Ketrenos43f66a62005-03-25 12:31:53 -060010823 /* This is only called from ipw_up, which resets/reloads the firmware
10824 so, we don't need to first disable the card before we configure
10825 it */
Zhu Yi6de9f7f2005-08-11 14:39:33 +080010826 if (ipw_set_tx_power(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -060010827 goto error;
10828
10829 /* initialize adapter address */
10830 if (ipw_send_adapter_address(priv, priv->net_dev->dev_addr))
10831 goto error;
10832
10833 /* set basic system config settings */
10834 init_sys_config(&priv->sys_config);
Zhu Yi810dabd2006-01-24 16:36:59 +080010835
10836 /* Support Bluetooth if we have BT h/w on board, and user wants to.
10837 * Does not support BT priority yet (don't abort or defer our Tx) */
10838 if (bt_coexist) {
Zhu Yi2638bc32006-01-24 16:37:52 +080010839 unsigned char bt_caps = priv->eeprom[EEPROM_SKU_CAPABILITY];
Zhu Yi810dabd2006-01-24 16:36:59 +080010840
10841 if (bt_caps & EEPROM_SKU_CAP_BT_CHANNEL_SIG)
10842 priv->sys_config.bt_coexistence
Zhu Yi2638bc32006-01-24 16:37:52 +080010843 |= CFG_BT_COEXISTENCE_SIGNAL_CHNL;
Zhu Yi810dabd2006-01-24 16:36:59 +080010844 if (bt_caps & EEPROM_SKU_CAP_BT_OOB)
10845 priv->sys_config.bt_coexistence
Zhu Yi2638bc32006-01-24 16:37:52 +080010846 |= CFG_BT_COEXISTENCE_OOB;
Zhu Yi810dabd2006-01-24 16:36:59 +080010847 }
10848
Zhu Yid685b8c2006-04-13 17:20:27 +080010849#ifdef CONFIG_IPW2200_PROMISCUOUS
10850 if (priv->prom_net_dev && netif_running(priv->prom_net_dev)) {
10851 priv->sys_config.accept_all_data_frames = 1;
10852 priv->sys_config.accept_non_directed_frames = 1;
10853 priv->sys_config.accept_all_mgmt_bcpr = 1;
10854 priv->sys_config.accept_all_mgmt_frames = 1;
10855 }
10856#endif
10857
James Ketrenosc848d0a2005-08-24 21:56:24 -050010858 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
10859 priv->sys_config.answer_broadcast_ssid_probe = 1;
10860 else
10861 priv->sys_config.answer_broadcast_ssid_probe = 0;
10862
Zhu Yid685b8c2006-04-13 17:20:27 +080010863 if (ipw_send_system_config(priv))
James Ketrenos43f66a62005-03-25 12:31:53 -060010864 goto error;
10865
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010866 init_supported_rates(priv, &priv->rates);
10867 if (ipw_send_supported_rates(priv, &priv->rates))
James Ketrenos43f66a62005-03-25 12:31:53 -060010868 goto error;
10869
10870 /* Set request-to-send threshold */
10871 if (priv->rts_threshold) {
10872 if (ipw_send_rts_threshold(priv, priv->rts_threshold))
10873 goto error;
10874 }
Zhu Yie43e3c12006-04-13 17:20:45 +080010875#ifdef CONFIG_IPW2200_QOS
James Ketrenosb095c382005-08-24 22:04:42 -050010876 IPW_DEBUG_QOS("QoS: call ipw_qos_activate\n");
10877 ipw_qos_activate(priv, NULL);
Zhu Yie43e3c12006-04-13 17:20:45 +080010878#endif /* CONFIG_IPW2200_QOS */
James Ketrenos43f66a62005-03-25 12:31:53 -060010879
10880 if (ipw_set_random_seed(priv))
10881 goto error;
Jeff Garzikbf794512005-07-31 13:07:26 -040010882
James Ketrenos43f66a62005-03-25 12:31:53 -060010883 /* final state transition to the RUN state */
10884 if (ipw_send_host_complete(priv))
10885 goto error;
10886
James Ketrenose6666192005-08-12 09:17:04 -050010887 priv->status |= STATUS_INIT;
10888
10889 ipw_led_init(priv);
10890 ipw_led_radio_on(priv);
10891 priv->notif_missed_beacons = 0;
10892
10893 /* Set hardware WEP key if it is configured. */
10894 if ((priv->capability & CAP_PRIVACY_ON) &&
10895 (priv->ieee->sec.level == SEC_LEVEL_1) &&
10896 !(priv->ieee->host_encrypt || priv->ieee->host_decrypt))
10897 ipw_set_hwcrypto_keys(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060010898
10899 return 0;
Jeff Garzikbf794512005-07-31 13:07:26 -040010900
Jeff Garzik0edd5b42005-09-07 00:48:31 -040010901 error:
James Ketrenos43f66a62005-03-25 12:31:53 -060010902 return -EIO;
10903}
10904
James Ketrenos4f36f802005-08-03 20:36:56 -050010905/*
10906 * NOTE:
10907 *
10908 * These tables have been tested in conjunction with the
10909 * Intel PRO/Wireless 2200BG and 2915ABG Network Connection Adapters.
10910 *
10911 * Altering this values, using it on other hardware, or in geographies
10912 * not intended for resale of the above mentioned Intel adapters has
10913 * not been tested.
10914 *
Henrik Brix Andersen48a84772006-02-14 09:09:52 +080010915 * Remember to update the table in README.ipw2200 when changing this
10916 * table.
10917 *
James Ketrenos4f36f802005-08-03 20:36:56 -050010918 */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010919static const struct libipw_geo ipw_geos[] = {
James Ketrenos4f36f802005-08-03 20:36:56 -050010920 { /* Restricted */
10921 "---",
10922 .bg_channels = 11,
10923 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10924 {2427, 4}, {2432, 5}, {2437, 6},
10925 {2442, 7}, {2447, 8}, {2452, 9},
10926 {2457, 10}, {2462, 11}},
10927 },
10928
10929 { /* Custom US/Canada */
10930 "ZZF",
10931 .bg_channels = 11,
10932 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10933 {2427, 4}, {2432, 5}, {2437, 6},
10934 {2442, 7}, {2447, 8}, {2452, 9},
10935 {2457, 10}, {2462, 11}},
10936 .a_channels = 8,
10937 .a = {{5180, 36},
10938 {5200, 40},
10939 {5220, 44},
10940 {5240, 48},
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010941 {5260, 52, LIBIPW_CH_PASSIVE_ONLY},
10942 {5280, 56, LIBIPW_CH_PASSIVE_ONLY},
10943 {5300, 60, LIBIPW_CH_PASSIVE_ONLY},
10944 {5320, 64, LIBIPW_CH_PASSIVE_ONLY}},
James Ketrenos4f36f802005-08-03 20:36:56 -050010945 },
10946
10947 { /* Rest of World */
10948 "ZZD",
10949 .bg_channels = 13,
10950 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10951 {2427, 4}, {2432, 5}, {2437, 6},
10952 {2442, 7}, {2447, 8}, {2452, 9},
10953 {2457, 10}, {2462, 11}, {2467, 12},
10954 {2472, 13}},
10955 },
10956
10957 { /* Custom USA & Europe & High */
10958 "ZZA",
10959 .bg_channels = 11,
10960 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10961 {2427, 4}, {2432, 5}, {2437, 6},
10962 {2442, 7}, {2447, 8}, {2452, 9},
10963 {2457, 10}, {2462, 11}},
10964 .a_channels = 13,
10965 .a = {{5180, 36},
10966 {5200, 40},
10967 {5220, 44},
10968 {5240, 48},
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010969 {5260, 52, LIBIPW_CH_PASSIVE_ONLY},
10970 {5280, 56, LIBIPW_CH_PASSIVE_ONLY},
10971 {5300, 60, LIBIPW_CH_PASSIVE_ONLY},
10972 {5320, 64, LIBIPW_CH_PASSIVE_ONLY},
James Ketrenos4f36f802005-08-03 20:36:56 -050010973 {5745, 149},
10974 {5765, 153},
10975 {5785, 157},
10976 {5805, 161},
10977 {5825, 165}},
10978 },
10979
10980 { /* Custom NA & Europe */
10981 "ZZB",
10982 .bg_channels = 11,
10983 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
10984 {2427, 4}, {2432, 5}, {2437, 6},
10985 {2442, 7}, {2447, 8}, {2452, 9},
10986 {2457, 10}, {2462, 11}},
10987 .a_channels = 13,
10988 .a = {{5180, 36},
10989 {5200, 40},
10990 {5220, 44},
10991 {5240, 48},
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040010992 {5260, 52, LIBIPW_CH_PASSIVE_ONLY},
10993 {5280, 56, LIBIPW_CH_PASSIVE_ONLY},
10994 {5300, 60, LIBIPW_CH_PASSIVE_ONLY},
10995 {5320, 64, LIBIPW_CH_PASSIVE_ONLY},
10996 {5745, 149, LIBIPW_CH_PASSIVE_ONLY},
10997 {5765, 153, LIBIPW_CH_PASSIVE_ONLY},
10998 {5785, 157, LIBIPW_CH_PASSIVE_ONLY},
10999 {5805, 161, LIBIPW_CH_PASSIVE_ONLY},
11000 {5825, 165, LIBIPW_CH_PASSIVE_ONLY}},
James Ketrenos4f36f802005-08-03 20:36:56 -050011001 },
11002
11003 { /* Custom Japan */
11004 "ZZC",
11005 .bg_channels = 11,
11006 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11007 {2427, 4}, {2432, 5}, {2437, 6},
11008 {2442, 7}, {2447, 8}, {2452, 9},
11009 {2457, 10}, {2462, 11}},
11010 .a_channels = 4,
11011 .a = {{5170, 34}, {5190, 38},
11012 {5210, 42}, {5230, 46}},
11013 },
11014
11015 { /* Custom */
11016 "ZZM",
11017 .bg_channels = 11,
11018 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11019 {2427, 4}, {2432, 5}, {2437, 6},
11020 {2442, 7}, {2447, 8}, {2452, 9},
11021 {2457, 10}, {2462, 11}},
11022 },
11023
11024 { /* Europe */
11025 "ZZE",
11026 .bg_channels = 13,
11027 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11028 {2427, 4}, {2432, 5}, {2437, 6},
11029 {2442, 7}, {2447, 8}, {2452, 9},
11030 {2457, 10}, {2462, 11}, {2467, 12},
11031 {2472, 13}},
11032 .a_channels = 19,
11033 .a = {{5180, 36},
11034 {5200, 40},
11035 {5220, 44},
11036 {5240, 48},
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011037 {5260, 52, LIBIPW_CH_PASSIVE_ONLY},
11038 {5280, 56, LIBIPW_CH_PASSIVE_ONLY},
11039 {5300, 60, LIBIPW_CH_PASSIVE_ONLY},
11040 {5320, 64, LIBIPW_CH_PASSIVE_ONLY},
11041 {5500, 100, LIBIPW_CH_PASSIVE_ONLY},
11042 {5520, 104, LIBIPW_CH_PASSIVE_ONLY},
11043 {5540, 108, LIBIPW_CH_PASSIVE_ONLY},
11044 {5560, 112, LIBIPW_CH_PASSIVE_ONLY},
11045 {5580, 116, LIBIPW_CH_PASSIVE_ONLY},
11046 {5600, 120, LIBIPW_CH_PASSIVE_ONLY},
11047 {5620, 124, LIBIPW_CH_PASSIVE_ONLY},
11048 {5640, 128, LIBIPW_CH_PASSIVE_ONLY},
11049 {5660, 132, LIBIPW_CH_PASSIVE_ONLY},
11050 {5680, 136, LIBIPW_CH_PASSIVE_ONLY},
11051 {5700, 140, LIBIPW_CH_PASSIVE_ONLY}},
James Ketrenos4f36f802005-08-03 20:36:56 -050011052 },
11053
11054 { /* Custom Japan */
11055 "ZZJ",
11056 .bg_channels = 14,
11057 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11058 {2427, 4}, {2432, 5}, {2437, 6},
11059 {2442, 7}, {2447, 8}, {2452, 9},
11060 {2457, 10}, {2462, 11}, {2467, 12},
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011061 {2472, 13}, {2484, 14, LIBIPW_CH_B_ONLY}},
James Ketrenos4f36f802005-08-03 20:36:56 -050011062 .a_channels = 4,
11063 .a = {{5170, 34}, {5190, 38},
11064 {5210, 42}, {5230, 46}},
11065 },
11066
James Ketrenos03520572005-10-19 16:12:31 -050011067 { /* Rest of World */
11068 "ZZR",
11069 .bg_channels = 14,
11070 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11071 {2427, 4}, {2432, 5}, {2437, 6},
11072 {2442, 7}, {2447, 8}, {2452, 9},
11073 {2457, 10}, {2462, 11}, {2467, 12},
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011074 {2472, 13}, {2484, 14, LIBIPW_CH_B_ONLY |
11075 LIBIPW_CH_PASSIVE_ONLY}},
James Ketrenos03520572005-10-19 16:12:31 -050011076 },
11077
James Ketrenos4f36f802005-08-03 20:36:56 -050011078 { /* High Band */
11079 "ZZH",
11080 .bg_channels = 13,
11081 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11082 {2427, 4}, {2432, 5}, {2437, 6},
11083 {2442, 7}, {2447, 8}, {2452, 9},
11084 {2457, 10}, {2462, 11},
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011085 {2467, 12, LIBIPW_CH_PASSIVE_ONLY},
11086 {2472, 13, LIBIPW_CH_PASSIVE_ONLY}},
James Ketrenos4f36f802005-08-03 20:36:56 -050011087 .a_channels = 4,
11088 .a = {{5745, 149}, {5765, 153},
11089 {5785, 157}, {5805, 161}},
11090 },
11091
11092 { /* Custom Europe */
11093 "ZZG",
11094 .bg_channels = 13,
11095 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11096 {2427, 4}, {2432, 5}, {2437, 6},
11097 {2442, 7}, {2447, 8}, {2452, 9},
11098 {2457, 10}, {2462, 11},
11099 {2467, 12}, {2472, 13}},
11100 .a_channels = 4,
11101 .a = {{5180, 36}, {5200, 40},
11102 {5220, 44}, {5240, 48}},
11103 },
11104
11105 { /* Europe */
11106 "ZZK",
11107 .bg_channels = 13,
11108 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11109 {2427, 4}, {2432, 5}, {2437, 6},
11110 {2442, 7}, {2447, 8}, {2452, 9},
11111 {2457, 10}, {2462, 11},
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011112 {2467, 12, LIBIPW_CH_PASSIVE_ONLY},
11113 {2472, 13, LIBIPW_CH_PASSIVE_ONLY}},
James Ketrenos4f36f802005-08-03 20:36:56 -050011114 .a_channels = 24,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011115 .a = {{5180, 36, LIBIPW_CH_PASSIVE_ONLY},
11116 {5200, 40, LIBIPW_CH_PASSIVE_ONLY},
11117 {5220, 44, LIBIPW_CH_PASSIVE_ONLY},
11118 {5240, 48, LIBIPW_CH_PASSIVE_ONLY},
11119 {5260, 52, LIBIPW_CH_PASSIVE_ONLY},
11120 {5280, 56, LIBIPW_CH_PASSIVE_ONLY},
11121 {5300, 60, LIBIPW_CH_PASSIVE_ONLY},
11122 {5320, 64, LIBIPW_CH_PASSIVE_ONLY},
11123 {5500, 100, LIBIPW_CH_PASSIVE_ONLY},
11124 {5520, 104, LIBIPW_CH_PASSIVE_ONLY},
11125 {5540, 108, LIBIPW_CH_PASSIVE_ONLY},
11126 {5560, 112, LIBIPW_CH_PASSIVE_ONLY},
11127 {5580, 116, LIBIPW_CH_PASSIVE_ONLY},
11128 {5600, 120, LIBIPW_CH_PASSIVE_ONLY},
11129 {5620, 124, LIBIPW_CH_PASSIVE_ONLY},
11130 {5640, 128, LIBIPW_CH_PASSIVE_ONLY},
11131 {5660, 132, LIBIPW_CH_PASSIVE_ONLY},
11132 {5680, 136, LIBIPW_CH_PASSIVE_ONLY},
11133 {5700, 140, LIBIPW_CH_PASSIVE_ONLY},
11134 {5745, 149, LIBIPW_CH_PASSIVE_ONLY},
11135 {5765, 153, LIBIPW_CH_PASSIVE_ONLY},
11136 {5785, 157, LIBIPW_CH_PASSIVE_ONLY},
11137 {5805, 161, LIBIPW_CH_PASSIVE_ONLY},
11138 {5825, 165, LIBIPW_CH_PASSIVE_ONLY}},
James Ketrenos4f36f802005-08-03 20:36:56 -050011139 },
11140
11141 { /* Europe */
11142 "ZZL",
11143 .bg_channels = 11,
11144 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
11145 {2427, 4}, {2432, 5}, {2437, 6},
11146 {2442, 7}, {2447, 8}, {2452, 9},
11147 {2457, 10}, {2462, 11}},
11148 .a_channels = 13,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011149 .a = {{5180, 36, LIBIPW_CH_PASSIVE_ONLY},
11150 {5200, 40, LIBIPW_CH_PASSIVE_ONLY},
11151 {5220, 44, LIBIPW_CH_PASSIVE_ONLY},
11152 {5240, 48, LIBIPW_CH_PASSIVE_ONLY},
11153 {5260, 52, LIBIPW_CH_PASSIVE_ONLY},
11154 {5280, 56, LIBIPW_CH_PASSIVE_ONLY},
11155 {5300, 60, LIBIPW_CH_PASSIVE_ONLY},
11156 {5320, 64, LIBIPW_CH_PASSIVE_ONLY},
11157 {5745, 149, LIBIPW_CH_PASSIVE_ONLY},
11158 {5765, 153, LIBIPW_CH_PASSIVE_ONLY},
11159 {5785, 157, LIBIPW_CH_PASSIVE_ONLY},
11160 {5805, 161, LIBIPW_CH_PASSIVE_ONLY},
11161 {5825, 165, LIBIPW_CH_PASSIVE_ONLY}},
James Ketrenos4f36f802005-08-03 20:36:56 -050011162 }
James Ketrenosafbf30a2005-08-25 00:05:33 -050011163};
11164
Stanislav Yakovlev06729382012-11-20 23:54:20 +000011165static void ipw_set_geo(struct ipw_priv *priv)
11166{
11167 int j;
11168
11169 for (j = 0; j < ARRAY_SIZE(ipw_geos); j++) {
11170 if (!memcmp(&priv->eeprom[EEPROM_COUNTRY_CODE],
11171 ipw_geos[j].name, 3))
11172 break;
11173 }
11174
11175 if (j == ARRAY_SIZE(ipw_geos)) {
11176 IPW_WARNING("SKU [%c%c%c] not recognized.\n",
11177 priv->eeprom[EEPROM_COUNTRY_CODE + 0],
11178 priv->eeprom[EEPROM_COUNTRY_CODE + 1],
11179 priv->eeprom[EEPROM_COUNTRY_CODE + 2]);
11180 j = 0;
11181 }
11182
11183 libipw_set_geo(priv->ieee, &ipw_geos[j]);
11184}
11185
James Ketrenos43f66a62005-03-25 12:31:53 -060011186#define MAX_HW_RESTARTS 5
11187static int ipw_up(struct ipw_priv *priv)
11188{
Stanislav Yakovlev06729382012-11-20 23:54:20 +000011189 int rc, i;
James Ketrenos43f66a62005-03-25 12:31:53 -060011190
Dan Williamsc3d72b92009-02-11 13:26:06 -050011191 /* Age scan list entries found before suspend */
11192 if (priv->suspend_time) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011193 libipw_networks_age(priv->ieee, priv->suspend_time);
Dan Williamsc3d72b92009-02-11 13:26:06 -050011194 priv->suspend_time = 0;
11195 }
11196
James Ketrenos43f66a62005-03-25 12:31:53 -060011197 if (priv->status & STATUS_EXIT_PENDING)
11198 return -EIO;
11199
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011200 if (cmdlog && !priv->cmdlog) {
Yan Burmane6e3f122006-12-02 13:38:14 +020011201 priv->cmdlog = kcalloc(cmdlog, sizeof(*priv->cmdlog),
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011202 GFP_KERNEL);
11203 if (priv->cmdlog == NULL) {
11204 IPW_ERROR("Error allocating %d command log entries.\n",
11205 cmdlog);
Zhu Yid0b526b2006-04-13 17:19:50 +080011206 return -ENOMEM;
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011207 } else {
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011208 priv->cmdlog_len = cmdlog;
11209 }
11210 }
11211
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011212 for (i = 0; i < MAX_HW_RESTARTS; i++) {
Jeff Garzikbf794512005-07-31 13:07:26 -040011213 /* Load the microcode, firmware, and eeprom.
James Ketrenos43f66a62005-03-25 12:31:53 -060011214 * Also start the clocks. */
11215 rc = ipw_load(priv);
11216 if (rc) {
Peter Jonesa4f6bbb2005-08-26 00:33:34 -050011217 IPW_ERROR("Unable to load firmware: %d\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -060011218 return rc;
11219 }
11220
11221 ipw_init_ordinals(priv);
11222 if (!(priv->config & CFG_CUSTOM_MAC))
11223 eeprom_parse_mac(priv, priv->mac_addr);
11224 memcpy(priv->net_dev->dev_addr, priv->mac_addr, ETH_ALEN);
11225
Stanislav Yakovlev06729382012-11-20 23:54:20 +000011226 ipw_set_geo(priv);
James Ketrenos4f36f802005-08-03 20:36:56 -050011227
James Ketrenosb095c382005-08-24 22:04:42 -050011228 if (priv->status & STATUS_RF_KILL_SW) {
11229 IPW_WARNING("Radio disabled by module parameter.\n");
11230 return 0;
11231 } else if (rf_kill_active(priv)) {
11232 IPW_WARNING("Radio Frequency Kill Switch is On:\n"
11233 "Kill switch must be turned off for "
11234 "wireless networking to work.\n");
Tejun Heobcb6d912011-01-26 12:12:50 +010011235 schedule_delayed_work(&priv->rf_kill, 2 * HZ);
James Ketrenos43f66a62005-03-25 12:31:53 -060011236 return 0;
James Ketrenosc848d0a2005-08-24 21:56:24 -050011237 }
James Ketrenos43f66a62005-03-25 12:31:53 -060011238
11239 rc = ipw_config(priv);
11240 if (!rc) {
11241 IPW_DEBUG_INFO("Configured device on count %i\n", i);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011242
James Ketrenose6666192005-08-12 09:17:04 -050011243 /* If configure to try and auto-associate, kick
11244 * off a scan. */
Tejun Heobcb6d912011-01-26 12:12:50 +010011245 schedule_delayed_work(&priv->request_scan, 0);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011246
James Ketrenos43f66a62005-03-25 12:31:53 -060011247 return 0;
James Ketrenos43f66a62005-03-25 12:31:53 -060011248 }
Jeff Garzikbf794512005-07-31 13:07:26 -040011249
James Ketrenosc848d0a2005-08-24 21:56:24 -050011250 IPW_DEBUG_INFO("Device configuration failed: 0x%08X\n", rc);
James Ketrenos43f66a62005-03-25 12:31:53 -060011251 IPW_DEBUG_INFO("Failed to config device on retry %d of %d\n",
11252 i, MAX_HW_RESTARTS);
11253
11254 /* We had an error bringing up the hardware, so take it
11255 * all the way back down so we can try again */
11256 ipw_down(priv);
11257 }
11258
Jeff Garzikbf794512005-07-31 13:07:26 -040011259 /* tried to restart and config the device for as long as our
James Ketrenos43f66a62005-03-25 12:31:53 -060011260 * patience could withstand */
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011261 IPW_ERROR("Unable to initialize device after %d attempts.\n", i);
James Ketrenosc848d0a2005-08-24 21:56:24 -050011262
James Ketrenos43f66a62005-03-25 12:31:53 -060011263 return -EIO;
11264}
11265
David Howellsc4028952006-11-22 14:57:56 +000011266static void ipw_bg_up(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -050011267{
David Howellsc4028952006-11-22 14:57:56 +000011268 struct ipw_priv *priv =
11269 container_of(work, struct ipw_priv, up);
Zhu Yi46441512006-01-24 16:37:59 +080011270 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +000011271 ipw_up(priv);
Zhu Yi46441512006-01-24 16:37:59 +080011272 mutex_unlock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -050011273}
11274
James Ketrenosb095c382005-08-24 22:04:42 -050011275static void ipw_deinit(struct ipw_priv *priv)
James Ketrenos43f66a62005-03-25 12:31:53 -060011276{
James Ketrenosb095c382005-08-24 22:04:42 -050011277 int i;
11278
11279 if (priv->status & STATUS_SCANNING) {
11280 IPW_DEBUG_INFO("Aborting scan during shutdown.\n");
11281 ipw_abort_scan(priv);
11282 }
11283
11284 if (priv->status & STATUS_ASSOCIATED) {
11285 IPW_DEBUG_INFO("Disassociating during shutdown.\n");
11286 ipw_disassociate(priv);
11287 }
11288
11289 ipw_led_shutdown(priv);
11290
11291 /* Wait up to 1s for status to change to not scanning and not
11292 * associated (disassociation can take a while for a ful 802.11
11293 * exchange */
11294 for (i = 1000; i && (priv->status &
11295 (STATUS_DISASSOCIATING |
11296 STATUS_ASSOCIATED | STATUS_SCANNING)); i--)
11297 udelay(10);
11298
11299 if (priv->status & (STATUS_DISASSOCIATING |
11300 STATUS_ASSOCIATED | STATUS_SCANNING))
11301 IPW_DEBUG_INFO("Still associated or scanning...\n");
11302 else
11303 IPW_DEBUG_INFO("Took %dms to de-init\n", 1000 - i);
11304
James Ketrenosc848d0a2005-08-24 21:56:24 -050011305 /* Attempt to disable the card */
James Ketrenos43f66a62005-03-25 12:31:53 -060011306 ipw_send_card_disable(priv, 0);
James Ketrenosb095c382005-08-24 22:04:42 -050011307
11308 priv->status &= ~STATUS_INIT;
11309}
11310
James Ketrenos43f66a62005-03-25 12:31:53 -060011311static void ipw_down(struct ipw_priv *priv)
11312{
James Ketrenosb095c382005-08-24 22:04:42 -050011313 int exit_pending = priv->status & STATUS_EXIT_PENDING;
11314
11315 priv->status |= STATUS_EXIT_PENDING;
11316
11317 if (ipw_is_init(priv))
11318 ipw_deinit(priv);
11319
11320 /* Wipe out the EXIT_PENDING status bit if we are not actually
11321 * exiting the module */
11322 if (!exit_pending)
11323 priv->status &= ~STATUS_EXIT_PENDING;
James Ketrenos43f66a62005-03-25 12:31:53 -060011324
11325 /* tell the device to stop sending interrupts */
11326 ipw_disable_interrupts(priv);
11327
11328 /* Clear all bits but the RF Kill */
James Ketrenosb095c382005-08-24 22:04:42 -050011329 priv->status &= STATUS_RF_KILL_MASK | STATUS_EXIT_PENDING;
James Ketrenos43f66a62005-03-25 12:31:53 -060011330 netif_carrier_off(priv->net_dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060011331
11332 ipw_stop_nic(priv);
James Ketrenosa613bff2005-08-24 21:43:11 -050011333
11334 ipw_led_radio_off(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060011335}
11336
David Howellsc4028952006-11-22 14:57:56 +000011337static void ipw_bg_down(struct work_struct *work)
James Ketrenosc848d0a2005-08-24 21:56:24 -050011338{
David Howellsc4028952006-11-22 14:57:56 +000011339 struct ipw_priv *priv =
11340 container_of(work, struct ipw_priv, down);
Zhu Yi46441512006-01-24 16:37:59 +080011341 mutex_lock(&priv->mutex);
David Howellsc4028952006-11-22 14:57:56 +000011342 ipw_down(priv);
Zhu Yi46441512006-01-24 16:37:59 +080011343 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060011344}
11345
Stanislaw Gruszka7cabafc2011-09-14 16:47:50 +020011346static int ipw_wdev_init(struct net_device *dev)
11347{
John W. Linvillea3caa992009-08-25 14:12:25 -040011348 int i, rc = 0;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011349 struct ipw_priv *priv = libipw_priv(dev);
John W. Linvillea3caa992009-08-25 14:12:25 -040011350 const struct libipw_geo *geo = libipw_get_geo(priv->ieee);
11351 struct wireless_dev *wdev = &priv->ieee->wdev;
James Ketrenos43f66a62005-03-25 12:31:53 -060011352
John W. Linvillea3caa992009-08-25 14:12:25 -040011353 memcpy(wdev->wiphy->perm_addr, priv->mac_addr, ETH_ALEN);
11354
11355 /* fill-out priv->ieee->bg_band */
11356 if (geo->bg_channels) {
11357 struct ieee80211_supported_band *bg_band = &priv->ieee->bg_band;
11358
Johannes Berg57fbcce2016-04-12 15:56:15 +020011359 bg_band->band = NL80211_BAND_2GHZ;
John W. Linvillea3caa992009-08-25 14:12:25 -040011360 bg_band->n_channels = geo->bg_channels;
Joe Perchesbaeb2ff2010-08-11 07:02:48 +000011361 bg_band->channels = kcalloc(geo->bg_channels,
11362 sizeof(struct ieee80211_channel),
11363 GFP_KERNEL);
Dan Carpenter2ee4e272010-10-04 14:31:46 +020011364 if (!bg_band->channels) {
11365 rc = -ENOMEM;
11366 goto out;
11367 }
John W. Linvillea3caa992009-08-25 14:12:25 -040011368 /* translate geo->bg to bg_band.channels */
11369 for (i = 0; i < geo->bg_channels; i++) {
Johannes Berg57fbcce2016-04-12 15:56:15 +020011370 bg_band->channels[i].band = NL80211_BAND_2GHZ;
John W. Linvillea3caa992009-08-25 14:12:25 -040011371 bg_band->channels[i].center_freq = geo->bg[i].freq;
11372 bg_band->channels[i].hw_value = geo->bg[i].channel;
11373 bg_band->channels[i].max_power = geo->bg[i].max_power;
11374 if (geo->bg[i].flags & LIBIPW_CH_PASSIVE_ONLY)
11375 bg_band->channels[i].flags |=
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +020011376 IEEE80211_CHAN_NO_IR;
John W. Linvillea3caa992009-08-25 14:12:25 -040011377 if (geo->bg[i].flags & LIBIPW_CH_NO_IBSS)
11378 bg_band->channels[i].flags |=
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +020011379 IEEE80211_CHAN_NO_IR;
John W. Linvillea3caa992009-08-25 14:12:25 -040011380 if (geo->bg[i].flags & LIBIPW_CH_RADAR_DETECT)
11381 bg_band->channels[i].flags |=
11382 IEEE80211_CHAN_RADAR;
11383 /* No equivalent for LIBIPW_CH_80211H_RULES,
11384 LIBIPW_CH_UNIFORM_SPREADING, or
11385 LIBIPW_CH_B_ONLY... */
11386 }
11387 /* point at bitrate info */
11388 bg_band->bitrates = ipw2200_bg_rates;
11389 bg_band->n_bitrates = ipw2200_num_bg_rates;
11390
Johannes Berg57fbcce2016-04-12 15:56:15 +020011391 wdev->wiphy->bands[NL80211_BAND_2GHZ] = bg_band;
John W. Linvillea3caa992009-08-25 14:12:25 -040011392 }
11393
11394 /* fill-out priv->ieee->a_band */
11395 if (geo->a_channels) {
11396 struct ieee80211_supported_band *a_band = &priv->ieee->a_band;
11397
Johannes Berg57fbcce2016-04-12 15:56:15 +020011398 a_band->band = NL80211_BAND_5GHZ;
John W. Linvillea3caa992009-08-25 14:12:25 -040011399 a_band->n_channels = geo->a_channels;
Joe Perchesbaeb2ff2010-08-11 07:02:48 +000011400 a_band->channels = kcalloc(geo->a_channels,
11401 sizeof(struct ieee80211_channel),
11402 GFP_KERNEL);
Dan Carpenter2ee4e272010-10-04 14:31:46 +020011403 if (!a_band->channels) {
11404 rc = -ENOMEM;
11405 goto out;
11406 }
Stanislav Yakovlev75836b82012-03-20 17:52:57 -040011407 /* translate geo->a to a_band.channels */
John W. Linvillea3caa992009-08-25 14:12:25 -040011408 for (i = 0; i < geo->a_channels; i++) {
Johannes Berg57fbcce2016-04-12 15:56:15 +020011409 a_band->channels[i].band = NL80211_BAND_5GHZ;
John W. Linvillea3caa992009-08-25 14:12:25 -040011410 a_band->channels[i].center_freq = geo->a[i].freq;
11411 a_band->channels[i].hw_value = geo->a[i].channel;
11412 a_band->channels[i].max_power = geo->a[i].max_power;
11413 if (geo->a[i].flags & LIBIPW_CH_PASSIVE_ONLY)
11414 a_band->channels[i].flags |=
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +020011415 IEEE80211_CHAN_NO_IR;
John W. Linvillea3caa992009-08-25 14:12:25 -040011416 if (geo->a[i].flags & LIBIPW_CH_NO_IBSS)
11417 a_band->channels[i].flags |=
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +020011418 IEEE80211_CHAN_NO_IR;
John W. Linvillea3caa992009-08-25 14:12:25 -040011419 if (geo->a[i].flags & LIBIPW_CH_RADAR_DETECT)
11420 a_band->channels[i].flags |=
11421 IEEE80211_CHAN_RADAR;
11422 /* No equivalent for LIBIPW_CH_80211H_RULES,
11423 LIBIPW_CH_UNIFORM_SPREADING, or
11424 LIBIPW_CH_B_ONLY... */
11425 }
11426 /* point at bitrate info */
11427 a_band->bitrates = ipw2200_a_rates;
11428 a_band->n_bitrates = ipw2200_num_a_rates;
11429
Johannes Berg57fbcce2016-04-12 15:56:15 +020011430 wdev->wiphy->bands[NL80211_BAND_5GHZ] = a_band;
John W. Linvillea3caa992009-08-25 14:12:25 -040011431 }
11432
Stanislav Yakovleva141e6a2012-04-10 21:44:47 -040011433 wdev->wiphy->cipher_suites = ipw_cipher_suites;
11434 wdev->wiphy->n_cipher_suites = ARRAY_SIZE(ipw_cipher_suites);
11435
John W. Linvillea3caa992009-08-25 14:12:25 -040011436 set_wiphy_dev(wdev->wiphy, &priv->pci_dev->dev);
11437
11438 /* With that information in place, we can now register the wiphy... */
Stanislaw Gruszka7cabafc2011-09-14 16:47:50 +020011439 if (wiphy_register(wdev->wiphy))
John W. Linvillea3caa992009-08-25 14:12:25 -040011440 rc = -EIO;
John W. Linvillea3caa992009-08-25 14:12:25 -040011441out:
John W. Linvillea3caa992009-08-25 14:12:25 -040011442 return rc;
James Ketrenos43f66a62005-03-25 12:31:53 -060011443}
11444
11445/* PCI driver stuff */
Benoit Taine9baa3c32014-08-08 15:56:03 +020011446static const struct pci_device_id card_ids[] = {
James Ketrenos43f66a62005-03-25 12:31:53 -060011447 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2701, 0, 0, 0},
11448 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2702, 0, 0, 0},
11449 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2711, 0, 0, 0},
11450 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2712, 0, 0, 0},
11451 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2721, 0, 0, 0},
11452 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2722, 0, 0, 0},
11453 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2731, 0, 0, 0},
11454 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2732, 0, 0, 0},
11455 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2741, 0, 0, 0},
11456 {PCI_VENDOR_ID_INTEL, 0x1043, 0x103c, 0x2741, 0, 0, 0},
11457 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2742, 0, 0, 0},
11458 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2751, 0, 0, 0},
11459 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2752, 0, 0, 0},
11460 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2753, 0, 0, 0},
11461 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2754, 0, 0, 0},
11462 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2761, 0, 0, 0},
11463 {PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, 0x2762, 0, 0, 0},
Joe Perches8ab0ea72009-06-24 22:13:27 -070011464 {PCI_VDEVICE(INTEL, 0x104f), 0},
11465 {PCI_VDEVICE(INTEL, 0x4220), 0}, /* BG */
11466 {PCI_VDEVICE(INTEL, 0x4221), 0}, /* BG */
11467 {PCI_VDEVICE(INTEL, 0x4223), 0}, /* ABG */
11468 {PCI_VDEVICE(INTEL, 0x4224), 0}, /* ABG */
Jeff Garzikbf794512005-07-31 13:07:26 -040011469
James Ketrenos43f66a62005-03-25 12:31:53 -060011470 /* required last entry */
11471 {0,}
11472};
11473
11474MODULE_DEVICE_TABLE(pci, card_ids);
11475
11476static struct attribute *ipw_sysfs_entries[] = {
11477 &dev_attr_rf_kill.attr,
11478 &dev_attr_direct_dword.attr,
11479 &dev_attr_indirect_byte.attr,
11480 &dev_attr_indirect_dword.attr,
11481 &dev_attr_mem_gpio_reg.attr,
11482 &dev_attr_command_event_reg.attr,
11483 &dev_attr_nic_type.attr,
11484 &dev_attr_status.attr,
11485 &dev_attr_cfg.attr,
James Ketrenosb39860c2005-08-12 09:36:32 -050011486 &dev_attr_error.attr,
11487 &dev_attr_event_log.attr,
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011488 &dev_attr_cmd_log.attr,
James Ketrenos43f66a62005-03-25 12:31:53 -060011489 &dev_attr_eeprom_delay.attr,
11490 &dev_attr_ucode_version.attr,
11491 &dev_attr_rtc.attr,
James Ketrenosa613bff2005-08-24 21:43:11 -050011492 &dev_attr_scan_age.attr,
11493 &dev_attr_led.attr,
James Ketrenosb095c382005-08-24 22:04:42 -050011494 &dev_attr_speed_scan.attr,
11495 &dev_attr_net_stats.attr,
Zhu Yi375dd242007-02-14 16:04:24 +080011496 &dev_attr_channels.attr,
Zhu Yid685b8c2006-04-13 17:20:27 +080011497#ifdef CONFIG_IPW2200_PROMISCUOUS
11498 &dev_attr_rtap_iface.attr,
11499 &dev_attr_rtap_filter.attr,
11500#endif
James Ketrenos43f66a62005-03-25 12:31:53 -060011501 NULL
11502};
11503
11504static struct attribute_group ipw_attribute_group = {
11505 .name = NULL, /* put in device directory */
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011506 .attrs = ipw_sysfs_entries,
James Ketrenos43f66a62005-03-25 12:31:53 -060011507};
11508
Zhu Yid685b8c2006-04-13 17:20:27 +080011509#ifdef CONFIG_IPW2200_PROMISCUOUS
11510static int ipw_prom_open(struct net_device *dev)
11511{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011512 struct ipw_prom_priv *prom_priv = libipw_priv(dev);
Zhu Yid685b8c2006-04-13 17:20:27 +080011513 struct ipw_priv *priv = prom_priv->priv;
11514
11515 IPW_DEBUG_INFO("prom dev->open\n");
11516 netif_carrier_off(dev);
Zhu Yid685b8c2006-04-13 17:20:27 +080011517
11518 if (priv->ieee->iw_mode != IW_MODE_MONITOR) {
11519 priv->sys_config.accept_all_data_frames = 1;
11520 priv->sys_config.accept_non_directed_frames = 1;
11521 priv->sys_config.accept_all_mgmt_bcpr = 1;
11522 priv->sys_config.accept_all_mgmt_frames = 1;
11523
11524 ipw_send_system_config(priv);
11525 }
11526
11527 return 0;
11528}
11529
11530static int ipw_prom_stop(struct net_device *dev)
11531{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011532 struct ipw_prom_priv *prom_priv = libipw_priv(dev);
Zhu Yid685b8c2006-04-13 17:20:27 +080011533 struct ipw_priv *priv = prom_priv->priv;
11534
11535 IPW_DEBUG_INFO("prom dev->stop\n");
11536
11537 if (priv->ieee->iw_mode != IW_MODE_MONITOR) {
11538 priv->sys_config.accept_all_data_frames = 0;
11539 priv->sys_config.accept_non_directed_frames = 0;
11540 priv->sys_config.accept_all_mgmt_bcpr = 0;
11541 priv->sys_config.accept_all_mgmt_frames = 0;
11542
11543 ipw_send_system_config(priv);
11544 }
11545
11546 return 0;
11547}
11548
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +000011549static netdev_tx_t ipw_prom_hard_start_xmit(struct sk_buff *skb,
11550 struct net_device *dev)
Zhu Yid685b8c2006-04-13 17:20:27 +080011551{
11552 IPW_DEBUG_INFO("prom dev->xmit\n");
Patrick McHardy4153e772009-06-12 04:08:02 +000011553 dev_kfree_skb(skb);
11554 return NETDEV_TX_OK;
Zhu Yid685b8c2006-04-13 17:20:27 +080011555}
11556
Stephen Hemminger44e9ad02009-03-20 19:36:41 +000011557static const struct net_device_ops ipw_prom_netdev_ops = {
11558 .ndo_open = ipw_prom_open,
11559 .ndo_stop = ipw_prom_stop,
11560 .ndo_start_xmit = ipw_prom_hard_start_xmit,
Stephen Hemminger44e9ad02009-03-20 19:36:41 +000011561 .ndo_set_mac_address = eth_mac_addr,
11562 .ndo_validate_addr = eth_validate_addr,
11563};
11564
Zhu Yid685b8c2006-04-13 17:20:27 +080011565static int ipw_prom_alloc(struct ipw_priv *priv)
11566{
11567 int rc = 0;
11568
11569 if (priv->prom_net_dev)
11570 return -EPERM;
11571
Pavel Roskin27ae60f2010-03-12 00:01:22 -050011572 priv->prom_net_dev = alloc_libipw(sizeof(struct ipw_prom_priv), 1);
Zhu Yid685b8c2006-04-13 17:20:27 +080011573 if (priv->prom_net_dev == NULL)
11574 return -ENOMEM;
11575
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011576 priv->prom_priv = libipw_priv(priv->prom_net_dev);
Zhu Yid685b8c2006-04-13 17:20:27 +080011577 priv->prom_priv->ieee = netdev_priv(priv->prom_net_dev);
11578 priv->prom_priv->priv = priv;
11579
11580 strcpy(priv->prom_net_dev->name, "rtap%d");
Daniel Drake3f2eeac2008-04-02 20:33:54 +010011581 memcpy(priv->prom_net_dev->dev_addr, priv->mac_addr, ETH_ALEN);
Zhu Yid685b8c2006-04-13 17:20:27 +080011582
11583 priv->prom_net_dev->type = ARPHRD_IEEE80211_RADIOTAP;
Stephen Hemminger44e9ad02009-03-20 19:36:41 +000011584 priv->prom_net_dev->netdev_ops = &ipw_prom_netdev_ops;
Zhu Yid685b8c2006-04-13 17:20:27 +080011585
Jarod Wilson9c22b4a2016-10-20 13:55:18 -040011586 priv->prom_net_dev->min_mtu = 68;
11587 priv->prom_net_dev->max_mtu = LIBIPW_DATA_LEN;
11588
Zhu Yid685b8c2006-04-13 17:20:27 +080011589 priv->prom_priv->ieee->iw_mode = IW_MODE_MONITOR;
Masakazu Mokuno229ce3a2008-05-14 14:16:50 +090011590 SET_NETDEV_DEV(priv->prom_net_dev, &priv->pci_dev->dev);
Zhu Yid685b8c2006-04-13 17:20:27 +080011591
11592 rc = register_netdev(priv->prom_net_dev);
11593 if (rc) {
Pavel Roskin27ae60f2010-03-12 00:01:22 -050011594 free_libipw(priv->prom_net_dev, 1);
Zhu Yid685b8c2006-04-13 17:20:27 +080011595 priv->prom_net_dev = NULL;
11596 return rc;
11597 }
11598
11599 return 0;
11600}
11601
11602static void ipw_prom_free(struct ipw_priv *priv)
11603{
11604 if (!priv->prom_net_dev)
11605 return;
11606
11607 unregister_netdev(priv->prom_net_dev);
Pavel Roskin27ae60f2010-03-12 00:01:22 -050011608 free_libipw(priv->prom_net_dev, 1);
Zhu Yid685b8c2006-04-13 17:20:27 +080011609
11610 priv->prom_net_dev = NULL;
11611}
11612
11613#endif
11614
Stephen Hemminger44e9ad02009-03-20 19:36:41 +000011615static const struct net_device_ops ipw_netdev_ops = {
Stephen Hemminger44e9ad02009-03-20 19:36:41 +000011616 .ndo_open = ipw_net_open,
11617 .ndo_stop = ipw_net_stop,
Jiri Pirkoafc4b132011-08-16 06:29:01 +000011618 .ndo_set_rx_mode = ipw_net_set_multicast_list,
Stephen Hemminger44e9ad02009-03-20 19:36:41 +000011619 .ndo_set_mac_address = ipw_net_set_mac_address,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011620 .ndo_start_xmit = libipw_xmit,
Stephen Hemminger44e9ad02009-03-20 19:36:41 +000011621 .ndo_validate_addr = eth_validate_addr,
11622};
Zhu Yid685b8c2006-04-13 17:20:27 +080011623
Bill Pembertoneb9248e2012-12-03 09:56:32 -050011624static int ipw_pci_probe(struct pci_dev *pdev,
Adrian Bunk2ef19e62007-12-11 23:20:22 +010011625 const struct pci_device_id *ent)
James Ketrenos43f66a62005-03-25 12:31:53 -060011626{
11627 int err = 0;
11628 struct net_device *net_dev;
11629 void __iomem *base;
11630 u32 length, val;
11631 struct ipw_priv *priv;
James Ketrenosafbf30a2005-08-25 00:05:33 -050011632 int i;
James Ketrenos43f66a62005-03-25 12:31:53 -060011633
Pavel Roskin27ae60f2010-03-12 00:01:22 -050011634 net_dev = alloc_libipw(sizeof(struct ipw_priv), 0);
James Ketrenos43f66a62005-03-25 12:31:53 -060011635 if (net_dev == NULL) {
11636 err = -ENOMEM;
11637 goto out;
11638 }
11639
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -040011640 priv = libipw_priv(net_dev);
James Ketrenos43f66a62005-03-25 12:31:53 -060011641 priv->ieee = netdev_priv(net_dev);
James Ketrenosa613bff2005-08-24 21:43:11 -050011642
James Ketrenos43f66a62005-03-25 12:31:53 -060011643 priv->net_dev = net_dev;
11644 priv->pci_dev = pdev;
James Ketrenos43f66a62005-03-25 12:31:53 -060011645 ipw_debug_level = debug;
Zhu Yi89c318e2006-06-08 22:19:49 -070011646 spin_lock_init(&priv->irq_lock);
James Ketrenos43f66a62005-03-25 12:31:53 -060011647 spin_lock_init(&priv->lock);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011648 for (i = 0; i < IPW_IBSS_MAC_HASH_SIZE; i++)
11649 INIT_LIST_HEAD(&priv->ibss_mac_hash[i]);
James Ketrenos43f66a62005-03-25 12:31:53 -060011650
Zhu Yi46441512006-01-24 16:37:59 +080011651 mutex_init(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060011652 if (pci_enable_device(pdev)) {
11653 err = -ENODEV;
Pavel Roskin27ae60f2010-03-12 00:01:22 -050011654 goto out_free_libipw;
James Ketrenos43f66a62005-03-25 12:31:53 -060011655 }
11656
11657 pci_set_master(pdev);
11658
Yang Hongyang284901a2009-04-06 19:01:15 -070011659 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Jeff Garzikbf794512005-07-31 13:07:26 -040011660 if (!err)
Yang Hongyang284901a2009-04-06 19:01:15 -070011661 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
James Ketrenos43f66a62005-03-25 12:31:53 -060011662 if (err) {
11663 printk(KERN_WARNING DRV_NAME ": No suitable DMA available.\n");
11664 goto out_pci_disable_device;
11665 }
11666
11667 pci_set_drvdata(pdev, priv);
11668
11669 err = pci_request_regions(pdev, DRV_NAME);
Jeff Garzikbf794512005-07-31 13:07:26 -040011670 if (err)
James Ketrenos43f66a62005-03-25 12:31:53 -060011671 goto out_pci_disable_device;
11672
Jeff Garzikbf794512005-07-31 13:07:26 -040011673 /* We disable the RETRY_TIMEOUT register (0x41) to keep
James Ketrenos43f66a62005-03-25 12:31:53 -060011674 * PCI Tx retries from interfering with C3 CPU state */
Jeff Garzikbf794512005-07-31 13:07:26 -040011675 pci_read_config_dword(pdev, 0x40, &val);
11676 if ((val & 0x0000ff00) != 0)
James Ketrenos43f66a62005-03-25 12:31:53 -060011677 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
Jeff Garzikbf794512005-07-31 13:07:26 -040011678
James Ketrenos43f66a62005-03-25 12:31:53 -060011679 length = pci_resource_len(pdev, 0);
11680 priv->hw_len = length;
Jeff Garzikbf794512005-07-31 13:07:26 -040011681
Arjan van de Ven275f1652008-10-20 21:42:39 -070011682 base = pci_ioremap_bar(pdev, 0);
James Ketrenos43f66a62005-03-25 12:31:53 -060011683 if (!base) {
11684 err = -ENODEV;
11685 goto out_pci_release_regions;
11686 }
11687
11688 priv->hw_base = base;
11689 IPW_DEBUG_INFO("pci_resource_len = 0x%08x\n", length);
11690 IPW_DEBUG_INFO("pci_resource_base = %p\n", base);
11691
11692 err = ipw_setup_deferred_work(priv);
11693 if (err) {
11694 IPW_ERROR("Unable to setup deferred work\n");
11695 goto out_iounmap;
11696 }
11697
James Ketrenosb095c382005-08-24 22:04:42 -050011698 ipw_sw_reset(priv, 1);
James Ketrenos43f66a62005-03-25 12:31:53 -060011699
Thomas Gleixner1fb9df52006-07-01 19:29:39 -070011700 err = request_irq(pdev->irq, ipw_isr, IRQF_SHARED, DRV_NAME, priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060011701 if (err) {
11702 IPW_ERROR("Error allocating IRQ %d\n", pdev->irq);
Tejun Heobcb6d912011-01-26 12:12:50 +010011703 goto out_iounmap;
James Ketrenos43f66a62005-03-25 12:31:53 -060011704 }
11705
James Ketrenos43f66a62005-03-25 12:31:53 -060011706 SET_NETDEV_DEV(net_dev, &pdev->dev);
11707
Zhu Yi46441512006-01-24 16:37:59 +080011708 mutex_lock(&priv->mutex);
James Ketrenosc848d0a2005-08-24 21:56:24 -050011709
James Ketrenos43f66a62005-03-25 12:31:53 -060011710 priv->ieee->hard_start_xmit = ipw_net_hard_start_xmit;
11711 priv->ieee->set_security = shim__set_security;
James Ketrenos227d2dc2005-07-28 16:25:55 -050011712 priv->ieee->is_queue_full = ipw_net_is_queue_full;
James Ketrenos43f66a62005-03-25 12:31:53 -060011713
Zhu Yie43e3c12006-04-13 17:20:45 +080011714#ifdef CONFIG_IPW2200_QOS
Zhu Yia5cf4fe2006-04-13 17:19:11 +080011715 priv->ieee->is_qos_active = ipw_is_qos_active;
James Ketrenos3b9990c2005-08-19 13:18:55 -050011716 priv->ieee->handle_probe_response = ipw_handle_beacon;
11717 priv->ieee->handle_beacon = ipw_handle_probe_response;
11718 priv->ieee->handle_assoc_response = ipw_handle_assoc_response;
Zhu Yie43e3c12006-04-13 17:20:45 +080011719#endif /* CONFIG_IPW2200_QOS */
James Ketrenosb095c382005-08-24 22:04:42 -050011720
James Ketrenosc848d0a2005-08-24 21:56:24 -050011721 priv->ieee->perfect_rssi = -20;
11722 priv->ieee->worst_rssi = -85;
James Ketrenos43f66a62005-03-25 12:31:53 -060011723
Stephen Hemminger44e9ad02009-03-20 19:36:41 +000011724 net_dev->netdev_ops = &ipw_netdev_ops;
Benoit Boissinot97a78ca2005-09-15 17:30:28 +000011725 priv->wireless_data.spy_data = &priv->ieee->spy_data;
Benoit Boissinot97a78ca2005-09-15 17:30:28 +000011726 net_dev->wireless_data = &priv->wireless_data;
James Ketrenos43f66a62005-03-25 12:31:53 -060011727 net_dev->wireless_handlers = &ipw_wx_handler_def;
11728 net_dev->ethtool_ops = &ipw_ethtool_ops;
James Ketrenos43f66a62005-03-25 12:31:53 -060011729
Jarod Wilson9c22b4a2016-10-20 13:55:18 -040011730 net_dev->min_mtu = 68;
11731 net_dev->max_mtu = LIBIPW_DATA_LEN;
11732
James Ketrenos43f66a62005-03-25 12:31:53 -060011733 err = sysfs_create_group(&pdev->dev.kobj, &ipw_attribute_group);
11734 if (err) {
11735 IPW_ERROR("failed to create sysfs device attributes\n");
Zhu Yi46441512006-01-24 16:37:59 +080011736 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060011737 goto out_release_irq;
11738 }
11739
Stanislav Yakovlev7ed85b62012-04-16 06:38:30 -040011740 if (ipw_up(priv)) {
11741 mutex_unlock(&priv->mutex);
11742 err = -EIO;
11743 goto out_remove_sysfs;
11744 }
11745
Zhu Yi46441512006-01-24 16:37:59 +080011746 mutex_unlock(&priv->mutex);
Henrik Brix Andersen48a84772006-02-14 09:09:52 +080011747
Stanislaw Gruszka7cabafc2011-09-14 16:47:50 +020011748 err = ipw_wdev_init(net_dev);
11749 if (err) {
11750 IPW_ERROR("failed to register wireless device\n");
Ben Hutchingsb4050792012-01-22 03:09:35 +000011751 goto out_remove_sysfs;
11752 }
11753
11754 err = register_netdev(net_dev);
11755 if (err) {
11756 IPW_ERROR("failed to register network device\n");
11757 goto out_unregister_wiphy;
Stanislaw Gruszka7cabafc2011-09-14 16:47:50 +020011758 }
11759
Zhu Yid685b8c2006-04-13 17:20:27 +080011760#ifdef CONFIG_IPW2200_PROMISCUOUS
11761 if (rtap_iface) {
11762 err = ipw_prom_alloc(priv);
11763 if (err) {
11764 IPW_ERROR("Failed to register promiscuous network "
11765 "device (error %d).\n", err);
Ben Hutchingsb4050792012-01-22 03:09:35 +000011766 unregister_netdev(priv->net_dev);
11767 goto out_unregister_wiphy;
Zhu Yid685b8c2006-04-13 17:20:27 +080011768 }
11769 }
11770#endif
11771
Henrik Brix Andersen48a84772006-02-14 09:09:52 +080011772 printk(KERN_INFO DRV_NAME ": Detected geography %s (%d 802.11bg "
11773 "channels, %d 802.11a channels)\n",
11774 priv->ieee->geo.name, priv->ieee->geo.bg_channels,
11775 priv->ieee->geo.a_channels);
11776
James Ketrenos43f66a62005-03-25 12:31:53 -060011777 return 0;
11778
Ben Hutchingsb4050792012-01-22 03:09:35 +000011779 out_unregister_wiphy:
11780 wiphy_unregister(priv->ieee->wdev.wiphy);
11781 kfree(priv->ieee->a_band.channels);
11782 kfree(priv->ieee->bg_band.channels);
James Ketrenosa613bff2005-08-24 21:43:11 -050011783 out_remove_sysfs:
James Ketrenos43f66a62005-03-25 12:31:53 -060011784 sysfs_remove_group(&pdev->dev.kobj, &ipw_attribute_group);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011785 out_release_irq:
James Ketrenos43f66a62005-03-25 12:31:53 -060011786 free_irq(pdev->irq, priv);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011787 out_iounmap:
James Ketrenos43f66a62005-03-25 12:31:53 -060011788 iounmap(priv->hw_base);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011789 out_pci_release_regions:
James Ketrenos43f66a62005-03-25 12:31:53 -060011790 pci_release_regions(pdev);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011791 out_pci_disable_device:
James Ketrenos43f66a62005-03-25 12:31:53 -060011792 pci_disable_device(pdev);
Pavel Roskin27ae60f2010-03-12 00:01:22 -050011793 out_free_libipw:
11794 free_libipw(priv->net_dev, 0);
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011795 out:
James Ketrenos43f66a62005-03-25 12:31:53 -060011796 return err;
11797}
11798
Bill Pembertoneb9248e2012-12-03 09:56:32 -050011799static void ipw_pci_remove(struct pci_dev *pdev)
James Ketrenos43f66a62005-03-25 12:31:53 -060011800{
11801 struct ipw_priv *priv = pci_get_drvdata(pdev);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011802 struct list_head *p, *q;
11803 int i;
James Ketrenosb095c382005-08-24 22:04:42 -050011804
James Ketrenos43f66a62005-03-25 12:31:53 -060011805 if (!priv)
11806 return;
11807
Zhu Yi46441512006-01-24 16:37:59 +080011808 mutex_lock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060011809
James Ketrenosafbf30a2005-08-25 00:05:33 -050011810 priv->status |= STATUS_EXIT_PENDING;
James Ketrenos43f66a62005-03-25 12:31:53 -060011811 ipw_down(priv);
James Ketrenos43f66a62005-03-25 12:31:53 -060011812 sysfs_remove_group(&pdev->dev.kobj, &ipw_attribute_group);
11813
Zhu Yi46441512006-01-24 16:37:59 +080011814 mutex_unlock(&priv->mutex);
James Ketrenos43f66a62005-03-25 12:31:53 -060011815
11816 unregister_netdev(priv->net_dev);
11817
11818 if (priv->rxq) {
11819 ipw_rx_queue_free(priv, priv->rxq);
11820 priv->rxq = NULL;
11821 }
11822 ipw_tx_queue_free(priv);
11823
James Ketrenosf6c5cb72005-08-25 00:39:09 -050011824 if (priv->cmdlog) {
11825 kfree(priv->cmdlog);
11826 priv->cmdlog = NULL;
11827 }
Tejun Heobcb6d912011-01-26 12:12:50 +010011828
11829 /* make sure all works are inactive */
11830 cancel_delayed_work_sync(&priv->adhoc_check);
11831 cancel_work_sync(&priv->associate);
11832 cancel_work_sync(&priv->disassociate);
11833 cancel_work_sync(&priv->system_config);
11834 cancel_work_sync(&priv->rx_replenish);
11835 cancel_work_sync(&priv->adapter_restart);
11836 cancel_delayed_work_sync(&priv->rf_kill);
11837 cancel_work_sync(&priv->up);
11838 cancel_work_sync(&priv->down);
11839 cancel_delayed_work_sync(&priv->request_scan);
11840 cancel_delayed_work_sync(&priv->request_direct_scan);
11841 cancel_delayed_work_sync(&priv->request_passive_scan);
11842 cancel_delayed_work_sync(&priv->scan_event);
11843 cancel_delayed_work_sync(&priv->gather_stats);
11844 cancel_work_sync(&priv->abort_scan);
11845 cancel_work_sync(&priv->roam);
11846 cancel_delayed_work_sync(&priv->scan_check);
11847 cancel_work_sync(&priv->link_up);
11848 cancel_work_sync(&priv->link_down);
11849 cancel_delayed_work_sync(&priv->led_link_on);
11850 cancel_delayed_work_sync(&priv->led_link_off);
11851 cancel_delayed_work_sync(&priv->led_act_off);
11852 cancel_work_sync(&priv->merge_networks);
James Ketrenos43f66a62005-03-25 12:31:53 -060011853
James Ketrenosafbf30a2005-08-25 00:05:33 -050011854 /* Free MAC hash list for ADHOC */
11855 for (i = 0; i < IPW_IBSS_MAC_HASH_SIZE; i++) {
11856 list_for_each_safe(p, q, &priv->ibss_mac_hash[i]) {
James Ketrenosafbf30a2005-08-25 00:05:33 -050011857 list_del(p);
Zhu Yi489f4452006-01-24 16:37:41 +080011858 kfree(list_entry(p, struct ipw_ibss_seq, list));
James Ketrenosafbf30a2005-08-25 00:05:33 -050011859 }
11860 }
11861
Jesper Juhl8f760782006-06-27 02:55:06 -070011862 kfree(priv->error);
11863 priv->error = NULL;
James Ketrenos43f66a62005-03-25 12:31:53 -060011864
Zhu Yid685b8c2006-04-13 17:20:27 +080011865#ifdef CONFIG_IPW2200_PROMISCUOUS
11866 ipw_prom_free(priv);
11867#endif
11868
James Ketrenos43f66a62005-03-25 12:31:53 -060011869 free_irq(pdev->irq, priv);
11870 iounmap(priv->hw_base);
11871 pci_release_regions(pdev);
11872 pci_disable_device(pdev);
Pavel Roskin27ae60f2010-03-12 00:01:22 -050011873 /* wiphy_unregister needs to be here, before free_libipw */
John W. Linvillea3caa992009-08-25 14:12:25 -040011874 wiphy_unregister(priv->ieee->wdev.wiphy);
11875 kfree(priv->ieee->a_band.channels);
11876 kfree(priv->ieee->bg_band.channels);
Pavel Roskin27ae60f2010-03-12 00:01:22 -050011877 free_libipw(priv->net_dev, 0);
James Ketrenosafbf30a2005-08-25 00:05:33 -050011878 free_firmware();
James Ketrenos43f66a62005-03-25 12:31:53 -060011879}
11880
James Ketrenos43f66a62005-03-25 12:31:53 -060011881#ifdef CONFIG_PM
Pavel Machek583a4e82005-09-03 15:56:58 -070011882static int ipw_pci_suspend(struct pci_dev *pdev, pm_message_t state)
James Ketrenos43f66a62005-03-25 12:31:53 -060011883{
11884 struct ipw_priv *priv = pci_get_drvdata(pdev);
11885 struct net_device *dev = priv->net_dev;
11886
11887 printk(KERN_INFO "%s: Going into suspend...\n", dev->name);
11888
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011889 /* Take down the device; powers it off, etc. */
James Ketrenos43f66a62005-03-25 12:31:53 -060011890 ipw_down(priv);
11891
11892 /* Remove the PRESENT state of the device */
11893 netif_device_detach(dev);
11894
James Ketrenos43f66a62005-03-25 12:31:53 -060011895 pci_save_state(pdev);
James Ketrenos43f66a62005-03-25 12:31:53 -060011896 pci_disable_device(pdev);
Pavel Machek583a4e82005-09-03 15:56:58 -070011897 pci_set_power_state(pdev, pci_choose_state(pdev, state));
Jeff Garzikbf794512005-07-31 13:07:26 -040011898
Dan Williamsc3d72b92009-02-11 13:26:06 -050011899 priv->suspend_at = get_seconds();
11900
James Ketrenos43f66a62005-03-25 12:31:53 -060011901 return 0;
11902}
11903
11904static int ipw_pci_resume(struct pci_dev *pdev)
11905{
11906 struct ipw_priv *priv = pci_get_drvdata(pdev);
11907 struct net_device *dev = priv->net_dev;
John W. Linville02e0e5e2006-11-07 20:53:48 -050011908 int err;
James Ketrenos43f66a62005-03-25 12:31:53 -060011909 u32 val;
Jeff Garzikbf794512005-07-31 13:07:26 -040011910
James Ketrenos43f66a62005-03-25 12:31:53 -060011911 printk(KERN_INFO "%s: Coming out of suspend...\n", dev->name);
11912
James Ketrenosea2b26e2005-08-24 21:25:16 -050011913 pci_set_power_state(pdev, PCI_D0);
John W. Linville02e0e5e2006-11-07 20:53:48 -050011914 err = pci_enable_device(pdev);
11915 if (err) {
11916 printk(KERN_ERR "%s: pci_enable_device failed on resume\n",
11917 dev->name);
11918 return err;
11919 }
James Ketrenos43f66a62005-03-25 12:31:53 -060011920 pci_restore_state(pdev);
James Ketrenosea2b26e2005-08-24 21:25:16 -050011921
James Ketrenos43f66a62005-03-25 12:31:53 -060011922 /*
11923 * Suspend/Resume resets the PCI configuration space, so we have to
11924 * re-disable the RETRY_TIMEOUT register (0x41) to keep PCI Tx retries
11925 * from interfering with C3 CPU state. pci_restore_state won't help
11926 * here since it only restores the first 64 bytes pci config header.
11927 */
Jeff Garzikbf794512005-07-31 13:07:26 -040011928 pci_read_config_dword(pdev, 0x40, &val);
11929 if ((val & 0x0000ff00) != 0)
James Ketrenos43f66a62005-03-25 12:31:53 -060011930 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
11931
11932 /* Set the device back into the PRESENT state; this will also wake
11933 * the queue of needed */
11934 netif_device_attach(dev);
11935
Dan Williamsc3d72b92009-02-11 13:26:06 -050011936 priv->suspend_time = get_seconds() - priv->suspend_at;
11937
James Ketrenos43f66a62005-03-25 12:31:53 -060011938 /* Bring the device back up */
Tejun Heobcb6d912011-01-26 12:12:50 +010011939 schedule_work(&priv->up);
Jeff Garzikbf794512005-07-31 13:07:26 -040011940
James Ketrenos43f66a62005-03-25 12:31:53 -060011941 return 0;
11942}
11943#endif
11944
Zhu Yic8c22c92006-08-21 11:38:39 +080011945static void ipw_pci_shutdown(struct pci_dev *pdev)
11946{
11947 struct ipw_priv *priv = pci_get_drvdata(pdev);
11948
11949 /* Take down the device; powers it off, etc. */
11950 ipw_down(priv);
11951
11952 pci_disable_device(pdev);
11953}
11954
James Ketrenos43f66a62005-03-25 12:31:53 -060011955/* driver initialization stuff */
11956static struct pci_driver ipw_driver = {
11957 .name = DRV_NAME,
11958 .id_table = card_ids,
11959 .probe = ipw_pci_probe,
Bill Pembertoneb9248e2012-12-03 09:56:32 -050011960 .remove = ipw_pci_remove,
James Ketrenos43f66a62005-03-25 12:31:53 -060011961#ifdef CONFIG_PM
11962 .suspend = ipw_pci_suspend,
11963 .resume = ipw_pci_resume,
11964#endif
Zhu Yic8c22c92006-08-21 11:38:39 +080011965 .shutdown = ipw_pci_shutdown,
James Ketrenos43f66a62005-03-25 12:31:53 -060011966};
11967
11968static int __init ipw_init(void)
11969{
11970 int ret;
11971
11972 printk(KERN_INFO DRV_NAME ": " DRV_DESCRIPTION ", " DRV_VERSION "\n");
11973 printk(KERN_INFO DRV_NAME ": " DRV_COPYRIGHT "\n");
11974
Jeff Garzik29917622006-08-19 17:48:59 -040011975 ret = pci_register_driver(&ipw_driver);
James Ketrenos43f66a62005-03-25 12:31:53 -060011976 if (ret) {
11977 IPW_ERROR("Unable to initialize PCI module\n");
11978 return ret;
11979 }
11980
Jeff Garzik0edd5b42005-09-07 00:48:31 -040011981 ret = driver_create_file(&ipw_driver.driver, &driver_attr_debug_level);
James Ketrenos43f66a62005-03-25 12:31:53 -060011982 if (ret) {
11983 IPW_ERROR("Unable to create driver sysfs file\n");
11984 pci_unregister_driver(&ipw_driver);
11985 return ret;
11986 }
11987
11988 return ret;
11989}
11990
11991static void __exit ipw_exit(void)
11992{
11993 driver_remove_file(&ipw_driver.driver, &driver_attr_debug_level);
11994 pci_unregister_driver(&ipw_driver);
11995}
11996
11997module_param(disable, int, 0444);
11998MODULE_PARM_DESC(disable, "manually disable the radio (default 0 [radio on])");
11999
12000module_param(associate, int, 0444);
Tim Gardner5c7f9b72008-10-14 10:38:03 -060012001MODULE_PARM_DESC(associate, "auto associate when scanning (default off)");
James Ketrenos43f66a62005-03-25 12:31:53 -060012002
12003module_param(auto_create, int, 0444);
12004MODULE_PARM_DESC(auto_create, "auto create adhoc network (default on)");
12005
Reinette Chatre21f8a732009-08-18 10:25:05 -070012006module_param_named(led, led_support, int, 0444);
ubuntu@tjworld.netc086aba2009-03-23 20:29:28 +000012007MODULE_PARM_DESC(led, "enable led control on some systems (default 1 on)");
James Ketrenosa613bff2005-08-24 21:43:11 -050012008
James Ketrenos43f66a62005-03-25 12:31:53 -060012009module_param(debug, int, 0444);
12010MODULE_PARM_DESC(debug, "debug output mask");
12011
Reinette Chatre21f8a732009-08-18 10:25:05 -070012012module_param_named(channel, default_channel, int, 0444);
Jeff Garzikbf794512005-07-31 13:07:26 -040012013MODULE_PARM_DESC(channel, "channel to limit associate to (default 0 [ANY])");
James Ketrenos43f66a62005-03-25 12:31:53 -060012014
Zhu Yid685b8c2006-04-13 17:20:27 +080012015#ifdef CONFIG_IPW2200_PROMISCUOUS
12016module_param(rtap_iface, int, 0444);
12017MODULE_PARM_DESC(rtap_iface, "create the rtap interface (1 - create, default 0)");
12018#endif
12019
Zhu Yie43e3c12006-04-13 17:20:45 +080012020#ifdef CONFIG_IPW2200_QOS
James Ketrenosb095c382005-08-24 22:04:42 -050012021module_param(qos_enable, int, 0444);
12022MODULE_PARM_DESC(qos_enable, "enable all QoS functionalitis");
James Ketrenos43f66a62005-03-25 12:31:53 -060012023
James Ketrenosb095c382005-08-24 22:04:42 -050012024module_param(qos_burst_enable, int, 0444);
12025MODULE_PARM_DESC(qos_burst_enable, "enable QoS burst mode");
12026
12027module_param(qos_no_ack_mask, int, 0444);
12028MODULE_PARM_DESC(qos_no_ack_mask, "mask Tx_Queue to no ack");
12029
12030module_param(burst_duration_CCK, int, 0444);
12031MODULE_PARM_DESC(burst_duration_CCK, "set CCK burst value");
12032
12033module_param(burst_duration_OFDM, int, 0444);
12034MODULE_PARM_DESC(burst_duration_OFDM, "set OFDM burst value");
Zhu Yie43e3c12006-04-13 17:20:45 +080012035#endif /* CONFIG_IPW2200_QOS */
James Ketrenosb095c382005-08-24 22:04:42 -050012036
12037#ifdef CONFIG_IPW2200_MONITOR
Reinette Chatre21f8a732009-08-18 10:25:05 -070012038module_param_named(mode, network_mode, int, 0444);
James Ketrenos43f66a62005-03-25 12:31:53 -060012039MODULE_PARM_DESC(mode, "network mode (0=BSS,1=IBSS,2=Monitor)");
12040#else
Reinette Chatre21f8a732009-08-18 10:25:05 -070012041module_param_named(mode, network_mode, int, 0444);
James Ketrenos43f66a62005-03-25 12:31:53 -060012042MODULE_PARM_DESC(mode, "network mode (0=BSS,1=IBSS)");
12043#endif
12044
Zhu Yi810dabd2006-01-24 16:36:59 +080012045module_param(bt_coexist, int, 0444);
12046MODULE_PARM_DESC(bt_coexist, "enable bluetooth coexistence (default off)");
12047
James Ketrenosb095c382005-08-24 22:04:42 -050012048module_param(hwcrypto, int, 0444);
Zhu Yibde37d02006-01-24 16:38:08 +080012049MODULE_PARM_DESC(hwcrypto, "enable hardware crypto (default off)");
James Ketrenosb095c382005-08-24 22:04:42 -050012050
James Ketrenosf6c5cb72005-08-25 00:39:09 -050012051module_param(cmdlog, int, 0444);
12052MODULE_PARM_DESC(cmdlog,
12053 "allocate a ring buffer for logging firmware commands");
12054
Zhu Yi4bfdb912006-01-24 16:37:16 +080012055module_param(roaming, int, 0444);
12056MODULE_PARM_DESC(roaming, "enable roaming support (default on)");
12057
Zhu Yid2b83e12006-04-13 17:19:36 +080012058module_param(antenna, int, 0444);
12059MODULE_PARM_DESC(antenna, "select antenna 1=Main, 3=Aux, default 0 [both], 2=slow_diversity (choose the one with lower background noise)");
12060
James Ketrenos43f66a62005-03-25 12:31:53 -060012061module_exit(ipw_exit);
12062module_init(ipw_init);