blob: 3774dd034746286815af04f0322e7d4e778d6f32 [file] [log] [blame]
James Ketrenos2c86c272005-03-23 17:32:29 -06001/******************************************************************************
2
Zhu Yi171e7b22006-02-15 07:17:56 +08003 Copyright(c) 2003 - 2006 Intel Corporation. All rights reserved.
James Ketrenos2c86c272005-03-23 17:32:29 -06004
5 This program is free software; you can redistribute it and/or modify it
6 under the terms of version 2 of the GNU General Public License as
7 published by the Free Software Foundation.
8
9 This program is distributed in the hope that it will be useful, but WITHOUT
10 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 more details.
13
14 You should have received a copy of the GNU General Public License along with
15 this program; if not, write to the Free Software Foundation, Inc., 59
16 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
18 The full GNU General Public License is included in this distribution in the
19 file called LICENSE.
20
21 Contact Information:
Reinette Chatrec1eb2c82009-08-21 13:34:26 -070022 Intel Linux Wireless <ilw@linux.intel.com>
James Ketrenos2c86c272005-03-23 17:32:29 -060023 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
24
25 Portions of this file are based on the sample_* files provided by Wireless
26 Extensions 0.26 package and copyright (c) 1997-2003 Jean Tourrilhes
27 <jt@hpl.hp.com>
28
29 Portions of this file are based on the Host AP project,
30 Copyright (c) 2001-2002, SSH Communications Security Corp and Jouni Malinen
Jouni Malinen85d32e72007-03-24 17:15:30 -070031 <j@w1.fi>
32 Copyright (c) 2002-2003, Jouni Malinen <j@w1.fi>
James Ketrenos2c86c272005-03-23 17:32:29 -060033
34 Portions of ipw2100_mod_firmware_load, ipw2100_do_mod_firmware_load, and
35 ipw2100_fw_load are loosely based on drivers/sound/sound_firmware.c
36 available in the 2.4.25 kernel sources, and are copyright (c) Alan Cox
37
38******************************************************************************/
39/*
40
41 Initial driver on which this is based was developed by Janusz Gorycki,
42 Maciej Urbaniak, and Maciej Sosnowski.
43
44 Promiscuous mode support added by Jacek Wysoczynski and Maciej Urbaniak.
45
46Theory of Operation
47
48Tx - Commands and Data
49
50Firmware and host share a circular queue of Transmit Buffer Descriptors (TBDs)
51Each TBD contains a pointer to the physical (dma_addr_t) address of data being
52sent to the firmware as well as the length of the data.
53
54The host writes to the TBD queue at the WRITE index. The WRITE index points
55to the _next_ packet to be written and is advanced when after the TBD has been
56filled.
57
58The firmware pulls from the TBD queue at the READ index. The READ index points
59to the currently being read entry, and is advanced once the firmware is
60done with a packet.
61
62When data is sent to the firmware, the first TBD is used to indicate to the
63firmware if a Command or Data is being sent. If it is Command, all of the
64command information is contained within the physical address referred to by the
65TBD. If it is Data, the first TBD indicates the type of data packet, number
Lucas De Marchi25985ed2011-03-30 22:57:33 -030066of fragments, etc. The next TBD then refers to the actual packet location.
James Ketrenos2c86c272005-03-23 17:32:29 -060067
68The Tx flow cycle is as follows:
69
701) ipw2100_tx() is called by kernel with SKB to transmit
712) Packet is move from the tx_free_list and appended to the transmit pending
72 list (tx_pend_list)
733) work is scheduled to move pending packets into the shared circular queue.
744) when placing packet in the circular queue, the incoming SKB is DMA mapped
75 to a physical address. That address is entered into a TBD. Two TBDs are
76 filled out. The first indicating a data packet, the second referring to the
77 actual payload data.
785) the packet is removed from tx_pend_list and placed on the end of the
79 firmware pending list (fw_pend_list)
806) firmware is notified that the WRITE index has
817) Once the firmware has processed the TBD, INTA is triggered.
828) For each Tx interrupt received from the firmware, the READ index is checked
83 to see which TBDs are done being processed.
849) For each TBD that has been processed, the ISR pulls the oldest packet
85 from the fw_pend_list.
8610)The packet structure contained in the fw_pend_list is then used
87 to unmap the DMA address and to free the SKB originally passed to the driver
88 from the kernel.
8911)The packet structure is placed onto the tx_free_list
90
91The above steps are the same for commands, only the msg_free_list/msg_pend_list
92are used instead of tx_free_list/tx_pend_list
93
94...
95
96Critical Sections / Locking :
97
98There are two locks utilized. The first is the low level lock (priv->low_lock)
99that protects the following:
100
101- Access to the Tx/Rx queue lists via priv->low_lock. The lists are as follows:
102
103 tx_free_list : Holds pre-allocated Tx buffers.
104 TAIL modified in __ipw2100_tx_process()
105 HEAD modified in ipw2100_tx()
106
107 tx_pend_list : Holds used Tx buffers waiting to go into the TBD ring
108 TAIL modified ipw2100_tx()
Jiri Benc19f7f742005-08-25 20:02:10 -0400109 HEAD modified by ipw2100_tx_send_data()
James Ketrenos2c86c272005-03-23 17:32:29 -0600110
111 msg_free_list : Holds pre-allocated Msg (Command) buffers
112 TAIL modified in __ipw2100_tx_process()
113 HEAD modified in ipw2100_hw_send_command()
114
115 msg_pend_list : Holds used Msg buffers waiting to go into the TBD ring
116 TAIL modified in ipw2100_hw_send_command()
Jiri Benc19f7f742005-08-25 20:02:10 -0400117 HEAD modified in ipw2100_tx_send_commands()
James Ketrenos2c86c272005-03-23 17:32:29 -0600118
119 The flow of data on the TX side is as follows:
120
121 MSG_FREE_LIST + COMMAND => MSG_PEND_LIST => TBD => MSG_FREE_LIST
122 TX_FREE_LIST + DATA => TX_PEND_LIST => TBD => TX_FREE_LIST
123
124 The methods that work on the TBD ring are protected via priv->low_lock.
125
126- The internal data state of the device itself
127- Access to the firmware read/write indexes for the BD queues
128 and associated logic
129
130All external entry functions are locked with the priv->action_lock to ensure
131that only one external action is invoked at a time.
132
133
134*/
135
136#include <linux/compiler.h>
James Ketrenos2c86c272005-03-23 17:32:29 -0600137#include <linux/errno.h>
138#include <linux/if_arp.h>
139#include <linux/in6.h>
140#include <linux/in.h>
141#include <linux/ip.h>
142#include <linux/kernel.h>
143#include <linux/kmod.h>
144#include <linux/module.h>
145#include <linux/netdevice.h>
146#include <linux/ethtool.h>
147#include <linux/pci.h>
Tobias Klauser05743d12005-06-20 14:28:40 -0700148#include <linux/dma-mapping.h>
James Ketrenos2c86c272005-03-23 17:32:29 -0600149#include <linux/proc_fs.h>
150#include <linux/skbuff.h>
151#include <asm/uaccess.h>
152#include <asm/io.h>
James Ketrenos2c86c272005-03-23 17:32:29 -0600153#include <linux/fs.h>
154#include <linux/mm.h>
155#include <linux/slab.h>
156#include <linux/unistd.h>
157#include <linux/stringify.h>
158#include <linux/tcp.h>
159#include <linux/types.h>
James Ketrenos2c86c272005-03-23 17:32:29 -0600160#include <linux/time.h>
161#include <linux/firmware.h>
162#include <linux/acpi.h>
163#include <linux/ctype.h>
Mark Grossf011e2e2008-02-04 22:30:09 -0800164#include <linux/pm_qos_params.h>
James Ketrenos2c86c272005-03-23 17:32:29 -0600165
John W. Linville9387b7c2008-09-30 20:59:05 -0400166#include <net/lib80211.h>
167
James Ketrenos2c86c272005-03-23 17:32:29 -0600168#include "ipw2100.h"
169
Zhu Yicc8279f2006-02-21 18:46:15 +0800170#define IPW2100_VERSION "git-1.2.2"
James Ketrenos2c86c272005-03-23 17:32:29 -0600171
172#define DRV_NAME "ipw2100"
173#define DRV_VERSION IPW2100_VERSION
174#define DRV_DESCRIPTION "Intel(R) PRO/Wireless 2100 Network Driver"
Zhu Yi171e7b22006-02-15 07:17:56 +0800175#define DRV_COPYRIGHT "Copyright(c) 2003-2006 Intel Corporation"
James Ketrenos2c86c272005-03-23 17:32:29 -0600176
Linus Torvalds6ba74012010-08-04 11:47:58 -0700177static struct pm_qos_request_list ipw2100_pm_qos_req;
Mark Grossed771342010-05-06 01:59:26 +0200178
James Ketrenos2c86c272005-03-23 17:32:29 -0600179/* Debugging stuff */
Brice Goglin0f52bf92005-12-01 01:41:46 -0800180#ifdef CONFIG_IPW2100_DEBUG
Robert P. J. Dayae800312007-01-31 02:39:40 -0500181#define IPW2100_RX_DEBUG /* Reception debugging */
James Ketrenos2c86c272005-03-23 17:32:29 -0600182#endif
183
184MODULE_DESCRIPTION(DRV_DESCRIPTION);
185MODULE_VERSION(DRV_VERSION);
186MODULE_AUTHOR(DRV_COPYRIGHT);
187MODULE_LICENSE("GPL");
188
189static int debug = 0;
Reinette Chatre21f8a732009-08-18 10:25:05 -0700190static int network_mode = 0;
James Ketrenos2c86c272005-03-23 17:32:29 -0600191static int channel = 0;
Tim Gardner5c7f9b72008-10-14 10:38:03 -0600192static int associate = 0;
James Ketrenos2c86c272005-03-23 17:32:29 -0600193static int disable = 0;
194#ifdef CONFIG_PM
195static struct ipw2100_fw ipw2100_firmware;
196#endif
197
198#include <linux/moduleparam.h>
199module_param(debug, int, 0444);
Reinette Chatre21f8a732009-08-18 10:25:05 -0700200module_param_named(mode, network_mode, int, 0444);
James Ketrenos2c86c272005-03-23 17:32:29 -0600201module_param(channel, int, 0444);
202module_param(associate, int, 0444);
203module_param(disable, int, 0444);
204
205MODULE_PARM_DESC(debug, "debug level");
206MODULE_PARM_DESC(mode, "network mode (0=BSS,1=IBSS,2=Monitor)");
207MODULE_PARM_DESC(channel, "channel");
Tim Gardner5c7f9b72008-10-14 10:38:03 -0600208MODULE_PARM_DESC(associate, "auto associate when scanning (default off)");
James Ketrenos2c86c272005-03-23 17:32:29 -0600209MODULE_PARM_DESC(disable, "manually disable the radio (default 0 [radio on])");
210
Jiri Bencc4aee8c2005-08-25 20:04:43 -0400211static u32 ipw2100_debug_level = IPW_DL_NONE;
212
Brice Goglin0f52bf92005-12-01 01:41:46 -0800213#ifdef CONFIG_IPW2100_DEBUG
Jiri Bencc4aee8c2005-08-25 20:04:43 -0400214#define IPW_DEBUG(level, message...) \
215do { \
216 if (ipw2100_debug_level & (level)) { \
217 printk(KERN_DEBUG "ipw2100: %c %s ", \
Harvey Harrisonc94c93d2008-07-28 23:01:34 -0700218 in_interrupt() ? 'I' : 'U', __func__); \
Jiri Bencc4aee8c2005-08-25 20:04:43 -0400219 printk(message); \
220 } \
221} while (0)
222#else
223#define IPW_DEBUG(level, message...) do {} while (0)
Brice Goglin0f52bf92005-12-01 01:41:46 -0800224#endif /* CONFIG_IPW2100_DEBUG */
James Ketrenos2c86c272005-03-23 17:32:29 -0600225
Brice Goglin0f52bf92005-12-01 01:41:46 -0800226#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -0600227static const char *command_types[] = {
228 "undefined",
James Ketrenosee8e3652005-09-14 09:47:29 -0500229 "unused", /* HOST_ATTENTION */
James Ketrenos2c86c272005-03-23 17:32:29 -0600230 "HOST_COMPLETE",
James Ketrenosee8e3652005-09-14 09:47:29 -0500231 "unused", /* SLEEP */
232 "unused", /* HOST_POWER_DOWN */
James Ketrenos2c86c272005-03-23 17:32:29 -0600233 "unused",
234 "SYSTEM_CONFIG",
James Ketrenosee8e3652005-09-14 09:47:29 -0500235 "unused", /* SET_IMR */
James Ketrenos2c86c272005-03-23 17:32:29 -0600236 "SSID",
237 "MANDATORY_BSSID",
238 "AUTHENTICATION_TYPE",
239 "ADAPTER_ADDRESS",
240 "PORT_TYPE",
241 "INTERNATIONAL_MODE",
242 "CHANNEL",
243 "RTS_THRESHOLD",
244 "FRAG_THRESHOLD",
245 "POWER_MODE",
246 "TX_RATES",
247 "BASIC_TX_RATES",
248 "WEP_KEY_INFO",
249 "unused",
250 "unused",
251 "unused",
252 "unused",
253 "WEP_KEY_INDEX",
254 "WEP_FLAGS",
255 "ADD_MULTICAST",
256 "CLEAR_ALL_MULTICAST",
257 "BEACON_INTERVAL",
258 "ATIM_WINDOW",
259 "CLEAR_STATISTICS",
260 "undefined",
261 "undefined",
262 "undefined",
263 "undefined",
264 "TX_POWER_INDEX",
265 "undefined",
266 "undefined",
267 "undefined",
268 "undefined",
269 "undefined",
270 "undefined",
271 "BROADCAST_SCAN",
272 "CARD_DISABLE",
273 "PREFERRED_BSSID",
274 "SET_SCAN_OPTIONS",
275 "SCAN_DWELL_TIME",
276 "SWEEP_TABLE",
277 "AP_OR_STATION_TABLE",
278 "GROUP_ORDINALS",
279 "SHORT_RETRY_LIMIT",
280 "LONG_RETRY_LIMIT",
James Ketrenosee8e3652005-09-14 09:47:29 -0500281 "unused", /* SAVE_CALIBRATION */
282 "unused", /* RESTORE_CALIBRATION */
James Ketrenos2c86c272005-03-23 17:32:29 -0600283 "undefined",
284 "undefined",
285 "undefined",
286 "HOST_PRE_POWER_DOWN",
James Ketrenosee8e3652005-09-14 09:47:29 -0500287 "unused", /* HOST_INTERRUPT_COALESCING */
James Ketrenos2c86c272005-03-23 17:32:29 -0600288 "undefined",
289 "CARD_DISABLE_PHY_OFF",
Jean Delvare96a95c12011-07-06 00:27:06 +0200290 "MSDU_TX_RATES",
James Ketrenos2c86c272005-03-23 17:32:29 -0600291 "undefined",
292 "SET_STATION_STAT_BITS",
293 "CLEAR_STATIONS_STAT_BITS",
294 "LEAP_ROGUE_MODE",
295 "SET_SECURITY_INFORMATION",
296 "DISASSOCIATION_BSSID",
297 "SET_WPA_ASS_IE"
298};
299#endif
300
Matthew Garrettc26409a2009-11-11 14:36:30 -0500301#define WEXT_USECHANNELS 1
302
303static const long ipw2100_frequencies[] = {
304 2412, 2417, 2422, 2427,
305 2432, 2437, 2442, 2447,
306 2452, 2457, 2462, 2467,
307 2472, 2484
308};
309
310#define FREQ_COUNT ARRAY_SIZE(ipw2100_frequencies)
311
312static const long ipw2100_rates_11b[] = {
313 1000000,
314 2000000,
315 5500000,
316 11000000
317};
318
319static struct ieee80211_rate ipw2100_bg_rates[] = {
320 { .bitrate = 10 },
321 { .bitrate = 20, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
322 { .bitrate = 55, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
323 { .bitrate = 110, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
324};
325
326#define RATE_COUNT ARRAY_SIZE(ipw2100_rates_11b)
327
James Ketrenos2c86c272005-03-23 17:32:29 -0600328/* Pre-decl until we get the code solid and then we can clean it up */
Jiri Benc19f7f742005-08-25 20:02:10 -0400329static void ipw2100_tx_send_commands(struct ipw2100_priv *priv);
330static void ipw2100_tx_send_data(struct ipw2100_priv *priv);
James Ketrenos2c86c272005-03-23 17:32:29 -0600331static int ipw2100_adapter_setup(struct ipw2100_priv *priv);
332
333static void ipw2100_queues_initialize(struct ipw2100_priv *priv);
334static void ipw2100_queues_free(struct ipw2100_priv *priv);
335static int ipw2100_queues_allocate(struct ipw2100_priv *priv);
336
Jiri Bencc4aee8c2005-08-25 20:04:43 -0400337static int ipw2100_fw_download(struct ipw2100_priv *priv,
338 struct ipw2100_fw *fw);
339static int ipw2100_get_firmware(struct ipw2100_priv *priv,
340 struct ipw2100_fw *fw);
341static int ipw2100_get_fwversion(struct ipw2100_priv *priv, char *buf,
342 size_t max);
343static int ipw2100_get_ucodeversion(struct ipw2100_priv *priv, char *buf,
344 size_t max);
345static void ipw2100_release_firmware(struct ipw2100_priv *priv,
346 struct ipw2100_fw *fw);
347static int ipw2100_ucode_download(struct ipw2100_priv *priv,
348 struct ipw2100_fw *fw);
David Howellsc4028952006-11-22 14:57:56 +0000349static void ipw2100_wx_event_work(struct work_struct *work);
James Ketrenosee8e3652005-09-14 09:47:29 -0500350static struct iw_statistics *ipw2100_wx_wireless_stats(struct net_device *dev);
Jiri Bencc4aee8c2005-08-25 20:04:43 -0400351static struct iw_handler_def ipw2100_wx_handler_def;
352
James Ketrenosee8e3652005-09-14 09:47:29 -0500353static inline void read_register(struct net_device *dev, u32 reg, u32 * val)
James Ketrenos2c86c272005-03-23 17:32:29 -0600354{
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +0100355 *val = readl((void __iomem *)(dev->base_addr + reg));
James Ketrenos2c86c272005-03-23 17:32:29 -0600356 IPW_DEBUG_IO("r: 0x%08X => 0x%08X\n", reg, *val);
357}
358
359static inline void write_register(struct net_device *dev, u32 reg, u32 val)
360{
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +0100361 writel(val, (void __iomem *)(dev->base_addr + reg));
James Ketrenos2c86c272005-03-23 17:32:29 -0600362 IPW_DEBUG_IO("w: 0x%08X <= 0x%08X\n", reg, val);
363}
364
James Ketrenosee8e3652005-09-14 09:47:29 -0500365static inline void read_register_word(struct net_device *dev, u32 reg,
366 u16 * val)
James Ketrenos2c86c272005-03-23 17:32:29 -0600367{
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +0100368 *val = readw((void __iomem *)(dev->base_addr + reg));
James Ketrenos2c86c272005-03-23 17:32:29 -0600369 IPW_DEBUG_IO("r: 0x%08X => %04X\n", reg, *val);
370}
371
James Ketrenosee8e3652005-09-14 09:47:29 -0500372static inline void read_register_byte(struct net_device *dev, u32 reg, u8 * val)
James Ketrenos2c86c272005-03-23 17:32:29 -0600373{
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +0100374 *val = readb((void __iomem *)(dev->base_addr + reg));
James Ketrenos2c86c272005-03-23 17:32:29 -0600375 IPW_DEBUG_IO("r: 0x%08X => %02X\n", reg, *val);
376}
377
378static inline void write_register_word(struct net_device *dev, u32 reg, u16 val)
379{
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +0100380 writew(val, (void __iomem *)(dev->base_addr + reg));
James Ketrenos2c86c272005-03-23 17:32:29 -0600381 IPW_DEBUG_IO("w: 0x%08X <= %04X\n", reg, val);
382}
383
James Ketrenos2c86c272005-03-23 17:32:29 -0600384static inline void write_register_byte(struct net_device *dev, u32 reg, u8 val)
385{
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +0100386 writeb(val, (void __iomem *)(dev->base_addr + reg));
James Ketrenos2c86c272005-03-23 17:32:29 -0600387 IPW_DEBUG_IO("w: 0x%08X =< %02X\n", reg, val);
388}
389
James Ketrenosee8e3652005-09-14 09:47:29 -0500390static inline void read_nic_dword(struct net_device *dev, u32 addr, u32 * val)
James Ketrenos2c86c272005-03-23 17:32:29 -0600391{
392 write_register(dev, IPW_REG_INDIRECT_ACCESS_ADDRESS,
393 addr & IPW_REG_INDIRECT_ADDR_MASK);
394 read_register(dev, IPW_REG_INDIRECT_ACCESS_DATA, val);
395}
396
397static inline void write_nic_dword(struct net_device *dev, u32 addr, u32 val)
398{
399 write_register(dev, IPW_REG_INDIRECT_ACCESS_ADDRESS,
400 addr & IPW_REG_INDIRECT_ADDR_MASK);
401 write_register(dev, IPW_REG_INDIRECT_ACCESS_DATA, val);
402}
403
James Ketrenosee8e3652005-09-14 09:47:29 -0500404static inline void read_nic_word(struct net_device *dev, u32 addr, u16 * val)
James Ketrenos2c86c272005-03-23 17:32:29 -0600405{
406 write_register(dev, IPW_REG_INDIRECT_ACCESS_ADDRESS,
407 addr & IPW_REG_INDIRECT_ADDR_MASK);
408 read_register_word(dev, IPW_REG_INDIRECT_ACCESS_DATA, val);
409}
410
411static inline void write_nic_word(struct net_device *dev, u32 addr, u16 val)
412{
413 write_register(dev, IPW_REG_INDIRECT_ACCESS_ADDRESS,
414 addr & IPW_REG_INDIRECT_ADDR_MASK);
415 write_register_word(dev, IPW_REG_INDIRECT_ACCESS_DATA, val);
416}
417
James Ketrenosee8e3652005-09-14 09:47:29 -0500418static inline void read_nic_byte(struct net_device *dev, u32 addr, u8 * val)
James Ketrenos2c86c272005-03-23 17:32:29 -0600419{
420 write_register(dev, IPW_REG_INDIRECT_ACCESS_ADDRESS,
421 addr & IPW_REG_INDIRECT_ADDR_MASK);
422 read_register_byte(dev, IPW_REG_INDIRECT_ACCESS_DATA, val);
423}
424
425static inline void write_nic_byte(struct net_device *dev, u32 addr, u8 val)
426{
427 write_register(dev, IPW_REG_INDIRECT_ACCESS_ADDRESS,
428 addr & IPW_REG_INDIRECT_ADDR_MASK);
429 write_register_byte(dev, IPW_REG_INDIRECT_ACCESS_DATA, val);
430}
431
432static inline void write_nic_auto_inc_address(struct net_device *dev, u32 addr)
433{
434 write_register(dev, IPW_REG_AUTOINCREMENT_ADDRESS,
435 addr & IPW_REG_INDIRECT_ADDR_MASK);
436}
437
438static inline void write_nic_dword_auto_inc(struct net_device *dev, u32 val)
439{
440 write_register(dev, IPW_REG_AUTOINCREMENT_DATA, val);
441}
442
Arjan van de Ven858119e2006-01-14 13:20:43 -0800443static void write_nic_memory(struct net_device *dev, u32 addr, u32 len,
James Ketrenosee8e3652005-09-14 09:47:29 -0500444 const u8 * buf)
James Ketrenos2c86c272005-03-23 17:32:29 -0600445{
446 u32 aligned_addr;
447 u32 aligned_len;
448 u32 dif_len;
449 u32 i;
450
451 /* read first nibble byte by byte */
452 aligned_addr = addr & (~0x3);
453 dif_len = addr - aligned_addr;
454 if (dif_len) {
455 /* Start reading at aligned_addr + dif_len */
456 write_register(dev, IPW_REG_INDIRECT_ACCESS_ADDRESS,
457 aligned_addr);
458 for (i = dif_len; i < 4; i++, buf++)
James Ketrenosee8e3652005-09-14 09:47:29 -0500459 write_register_byte(dev,
460 IPW_REG_INDIRECT_ACCESS_DATA + i,
461 *buf);
James Ketrenos2c86c272005-03-23 17:32:29 -0600462
463 len -= dif_len;
464 aligned_addr += 4;
465 }
466
467 /* read DWs through autoincrement registers */
James Ketrenosee8e3652005-09-14 09:47:29 -0500468 write_register(dev, IPW_REG_AUTOINCREMENT_ADDRESS, aligned_addr);
James Ketrenos2c86c272005-03-23 17:32:29 -0600469 aligned_len = len & (~0x3);
470 for (i = 0; i < aligned_len; i += 4, buf += 4, aligned_addr += 4)
James Ketrenosee8e3652005-09-14 09:47:29 -0500471 write_register(dev, IPW_REG_AUTOINCREMENT_DATA, *(u32 *) buf);
James Ketrenos2c86c272005-03-23 17:32:29 -0600472
473 /* copy the last nibble */
474 dif_len = len - aligned_len;
475 write_register(dev, IPW_REG_INDIRECT_ACCESS_ADDRESS, aligned_addr);
476 for (i = 0; i < dif_len; i++, buf++)
James Ketrenosee8e3652005-09-14 09:47:29 -0500477 write_register_byte(dev, IPW_REG_INDIRECT_ACCESS_DATA + i,
478 *buf);
James Ketrenos2c86c272005-03-23 17:32:29 -0600479}
480
Arjan van de Ven858119e2006-01-14 13:20:43 -0800481static void read_nic_memory(struct net_device *dev, u32 addr, u32 len,
James Ketrenosee8e3652005-09-14 09:47:29 -0500482 u8 * buf)
James Ketrenos2c86c272005-03-23 17:32:29 -0600483{
484 u32 aligned_addr;
485 u32 aligned_len;
486 u32 dif_len;
487 u32 i;
488
489 /* read first nibble byte by byte */
490 aligned_addr = addr & (~0x3);
491 dif_len = addr - aligned_addr;
492 if (dif_len) {
493 /* Start reading at aligned_addr + dif_len */
494 write_register(dev, IPW_REG_INDIRECT_ACCESS_ADDRESS,
495 aligned_addr);
496 for (i = dif_len; i < 4; i++, buf++)
James Ketrenosee8e3652005-09-14 09:47:29 -0500497 read_register_byte(dev,
498 IPW_REG_INDIRECT_ACCESS_DATA + i,
499 buf);
James Ketrenos2c86c272005-03-23 17:32:29 -0600500
501 len -= dif_len;
502 aligned_addr += 4;
503 }
504
505 /* read DWs through autoincrement registers */
James Ketrenosee8e3652005-09-14 09:47:29 -0500506 write_register(dev, IPW_REG_AUTOINCREMENT_ADDRESS, aligned_addr);
James Ketrenos2c86c272005-03-23 17:32:29 -0600507 aligned_len = len & (~0x3);
508 for (i = 0; i < aligned_len; i += 4, buf += 4, aligned_addr += 4)
James Ketrenosee8e3652005-09-14 09:47:29 -0500509 read_register(dev, IPW_REG_AUTOINCREMENT_DATA, (u32 *) buf);
James Ketrenos2c86c272005-03-23 17:32:29 -0600510
511 /* copy the last nibble */
512 dif_len = len - aligned_len;
James Ketrenosee8e3652005-09-14 09:47:29 -0500513 write_register(dev, IPW_REG_INDIRECT_ACCESS_ADDRESS, aligned_addr);
James Ketrenos2c86c272005-03-23 17:32:29 -0600514 for (i = 0; i < dif_len; i++, buf++)
James Ketrenosee8e3652005-09-14 09:47:29 -0500515 read_register_byte(dev, IPW_REG_INDIRECT_ACCESS_DATA + i, buf);
James Ketrenos2c86c272005-03-23 17:32:29 -0600516}
517
518static inline int ipw2100_hw_is_adapter_in_system(struct net_device *dev)
519{
520 return (dev->base_addr &&
James Ketrenosee8e3652005-09-14 09:47:29 -0500521 (readl
522 ((void __iomem *)(dev->base_addr +
523 IPW_REG_DOA_DEBUG_AREA_START))
James Ketrenos2c86c272005-03-23 17:32:29 -0600524 == IPW_DATA_DOA_DEBUG_VALUE));
525}
526
Jiri Bencc4aee8c2005-08-25 20:04:43 -0400527static int ipw2100_get_ordinal(struct ipw2100_priv *priv, u32 ord,
James Ketrenosee8e3652005-09-14 09:47:29 -0500528 void *val, u32 * len)
James Ketrenos2c86c272005-03-23 17:32:29 -0600529{
530 struct ipw2100_ordinals *ordinals = &priv->ordinals;
531 u32 addr;
532 u32 field_info;
533 u16 field_len;
534 u16 field_count;
535 u32 total_length;
536
537 if (ordinals->table1_addr == 0) {
Jiri Benc797b4f72005-08-25 20:03:27 -0400538 printk(KERN_WARNING DRV_NAME ": attempt to use fw ordinals "
James Ketrenos2c86c272005-03-23 17:32:29 -0600539 "before they have been loaded.\n");
540 return -EINVAL;
541 }
542
543 if (IS_ORDINAL_TABLE_ONE(ordinals, ord)) {
544 if (*len < IPW_ORD_TAB_1_ENTRY_SIZE) {
545 *len = IPW_ORD_TAB_1_ENTRY_SIZE;
546
Jiri Benc797b4f72005-08-25 20:03:27 -0400547 printk(KERN_WARNING DRV_NAME
Jiri Bencaaa4d302005-06-07 14:58:41 +0200548 ": ordinal buffer length too small, need %zd\n",
James Ketrenos2c86c272005-03-23 17:32:29 -0600549 IPW_ORD_TAB_1_ENTRY_SIZE);
550
551 return -EINVAL;
552 }
553
James Ketrenosee8e3652005-09-14 09:47:29 -0500554 read_nic_dword(priv->net_dev,
555 ordinals->table1_addr + (ord << 2), &addr);
James Ketrenos2c86c272005-03-23 17:32:29 -0600556 read_nic_dword(priv->net_dev, addr, val);
557
558 *len = IPW_ORD_TAB_1_ENTRY_SIZE;
559
560 return 0;
561 }
562
563 if (IS_ORDINAL_TABLE_TWO(ordinals, ord)) {
564
565 ord -= IPW_START_ORD_TAB_2;
566
567 /* get the address of statistic */
James Ketrenosee8e3652005-09-14 09:47:29 -0500568 read_nic_dword(priv->net_dev,
569 ordinals->table2_addr + (ord << 3), &addr);
James Ketrenos2c86c272005-03-23 17:32:29 -0600570
571 /* get the second DW of statistics ;
572 * two 16-bit words - first is length, second is count */
573 read_nic_dword(priv->net_dev,
574 ordinals->table2_addr + (ord << 3) + sizeof(u32),
575 &field_info);
576
577 /* get each entry length */
James Ketrenosee8e3652005-09-14 09:47:29 -0500578 field_len = *((u16 *) & field_info);
James Ketrenos2c86c272005-03-23 17:32:29 -0600579
580 /* get number of entries */
James Ketrenosee8e3652005-09-14 09:47:29 -0500581 field_count = *(((u16 *) & field_info) + 1);
James Ketrenos2c86c272005-03-23 17:32:29 -0600582
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200583 /* abort if no enough memory */
James Ketrenos2c86c272005-03-23 17:32:29 -0600584 total_length = field_len * field_count;
585 if (total_length > *len) {
586 *len = total_length;
587 return -EINVAL;
588 }
589
590 *len = total_length;
591 if (!total_length)
592 return 0;
593
594 /* read the ordinal data from the SRAM */
595 read_nic_memory(priv->net_dev, addr, total_length, val);
596
597 return 0;
598 }
599
Jiri Benc797b4f72005-08-25 20:03:27 -0400600 printk(KERN_WARNING DRV_NAME ": ordinal %d neither in table 1 nor "
James Ketrenos2c86c272005-03-23 17:32:29 -0600601 "in table 2\n", ord);
602
603 return -EINVAL;
604}
605
James Ketrenosee8e3652005-09-14 09:47:29 -0500606static int ipw2100_set_ordinal(struct ipw2100_priv *priv, u32 ord, u32 * val,
607 u32 * len)
James Ketrenos2c86c272005-03-23 17:32:29 -0600608{
609 struct ipw2100_ordinals *ordinals = &priv->ordinals;
610 u32 addr;
611
612 if (IS_ORDINAL_TABLE_ONE(ordinals, ord)) {
613 if (*len != IPW_ORD_TAB_1_ENTRY_SIZE) {
614 *len = IPW_ORD_TAB_1_ENTRY_SIZE;
615 IPW_DEBUG_INFO("wrong size\n");
616 return -EINVAL;
617 }
618
James Ketrenosee8e3652005-09-14 09:47:29 -0500619 read_nic_dword(priv->net_dev,
620 ordinals->table1_addr + (ord << 2), &addr);
James Ketrenos2c86c272005-03-23 17:32:29 -0600621
622 write_nic_dword(priv->net_dev, addr, *val);
623
624 *len = IPW_ORD_TAB_1_ENTRY_SIZE;
625
626 return 0;
627 }
628
629 IPW_DEBUG_INFO("wrong table\n");
630 if (IS_ORDINAL_TABLE_TWO(ordinals, ord))
631 return -EINVAL;
632
633 return -EINVAL;
634}
635
636static char *snprint_line(char *buf, size_t count,
James Ketrenosee8e3652005-09-14 09:47:29 -0500637 const u8 * data, u32 len, u32 ofs)
James Ketrenos2c86c272005-03-23 17:32:29 -0600638{
639 int out, i, j, l;
640 char c;
641
642 out = snprintf(buf, count, "%08X", ofs);
643
644 for (l = 0, i = 0; i < 2; i++) {
645 out += snprintf(buf + out, count - out, " ");
646 for (j = 0; j < 8 && l < len; j++, l++)
647 out += snprintf(buf + out, count - out, "%02X ",
648 data[(i * 8 + j)]);
649 for (; j < 8; j++)
650 out += snprintf(buf + out, count - out, " ");
651 }
652
653 out += snprintf(buf + out, count - out, " ");
654 for (l = 0, i = 0; i < 2; i++) {
655 out += snprintf(buf + out, count - out, " ");
656 for (j = 0; j < 8 && l < len; j++, l++) {
657 c = data[(i * 8 + j)];
658 if (!isascii(c) || !isprint(c))
659 c = '.';
660
661 out += snprintf(buf + out, count - out, "%c", c);
662 }
663
664 for (; j < 8; j++)
665 out += snprintf(buf + out, count - out, " ");
666 }
667
668 return buf;
669}
670
James Ketrenosee8e3652005-09-14 09:47:29 -0500671static void printk_buf(int level, const u8 * data, u32 len)
James Ketrenos2c86c272005-03-23 17:32:29 -0600672{
673 char line[81];
674 u32 ofs = 0;
675 if (!(ipw2100_debug_level & level))
676 return;
677
678 while (len) {
679 printk(KERN_DEBUG "%s\n",
680 snprint_line(line, sizeof(line), &data[ofs],
681 min(len, 16U), ofs));
682 ofs += 16;
683 len -= min(len, 16U);
684 }
685}
686
James Ketrenos2c86c272005-03-23 17:32:29 -0600687#define MAX_RESET_BACKOFF 10
688
Arjan van de Ven858119e2006-01-14 13:20:43 -0800689static void schedule_reset(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -0600690{
691 unsigned long now = get_seconds();
692
693 /* If we haven't received a reset request within the backoff period,
694 * then we can reset the backoff interval so this reset occurs
695 * immediately */
696 if (priv->reset_backoff &&
697 (now - priv->last_reset > priv->reset_backoff))
698 priv->reset_backoff = 0;
699
700 priv->last_reset = get_seconds();
701
702 if (!(priv->status & STATUS_RESET_PENDING)) {
703 IPW_DEBUG_INFO("%s: Scheduling firmware restart (%ds).\n",
704 priv->net_dev->name, priv->reset_backoff);
705 netif_carrier_off(priv->net_dev);
706 netif_stop_queue(priv->net_dev);
707 priv->status |= STATUS_RESET_PENDING;
708 if (priv->reset_backoff)
Tejun Heobcb6d912011-01-26 12:12:50 +0100709 schedule_delayed_work(&priv->reset_work,
710 priv->reset_backoff * HZ);
James Ketrenos2c86c272005-03-23 17:32:29 -0600711 else
Tejun Heobcb6d912011-01-26 12:12:50 +0100712 schedule_delayed_work(&priv->reset_work, 0);
James Ketrenos2c86c272005-03-23 17:32:29 -0600713
714 if (priv->reset_backoff < MAX_RESET_BACKOFF)
715 priv->reset_backoff++;
716
717 wake_up_interruptible(&priv->wait_command_queue);
718 } else
719 IPW_DEBUG_INFO("%s: Firmware restart already in progress.\n",
720 priv->net_dev->name);
721
722}
723
724#define HOST_COMPLETE_TIMEOUT (2 * HZ)
725static int ipw2100_hw_send_command(struct ipw2100_priv *priv,
James Ketrenosee8e3652005-09-14 09:47:29 -0500726 struct host_command *cmd)
James Ketrenos2c86c272005-03-23 17:32:29 -0600727{
728 struct list_head *element;
729 struct ipw2100_tx_packet *packet;
730 unsigned long flags;
731 int err = 0;
732
733 IPW_DEBUG_HC("Sending %s command (#%d), %d bytes\n",
734 command_types[cmd->host_command], cmd->host_command,
735 cmd->host_command_length);
James Ketrenosee8e3652005-09-14 09:47:29 -0500736 printk_buf(IPW_DL_HC, (u8 *) cmd->host_command_parameters,
James Ketrenos2c86c272005-03-23 17:32:29 -0600737 cmd->host_command_length);
738
739 spin_lock_irqsave(&priv->low_lock, flags);
740
741 if (priv->fatal_error) {
James Ketrenosee8e3652005-09-14 09:47:29 -0500742 IPW_DEBUG_INFO
743 ("Attempt to send command while hardware in fatal error condition.\n");
James Ketrenos2c86c272005-03-23 17:32:29 -0600744 err = -EIO;
745 goto fail_unlock;
746 }
747
748 if (!(priv->status & STATUS_RUNNING)) {
James Ketrenosee8e3652005-09-14 09:47:29 -0500749 IPW_DEBUG_INFO
750 ("Attempt to send command while hardware is not running.\n");
James Ketrenos2c86c272005-03-23 17:32:29 -0600751 err = -EIO;
752 goto fail_unlock;
753 }
754
755 if (priv->status & STATUS_CMD_ACTIVE) {
James Ketrenosee8e3652005-09-14 09:47:29 -0500756 IPW_DEBUG_INFO
757 ("Attempt to send command while another command is pending.\n");
James Ketrenos2c86c272005-03-23 17:32:29 -0600758 err = -EBUSY;
759 goto fail_unlock;
760 }
761
762 if (list_empty(&priv->msg_free_list)) {
763 IPW_DEBUG_INFO("no available msg buffers\n");
764 goto fail_unlock;
765 }
766
767 priv->status |= STATUS_CMD_ACTIVE;
768 priv->messages_sent++;
769
770 element = priv->msg_free_list.next;
771
772 packet = list_entry(element, struct ipw2100_tx_packet, list);
773 packet->jiffy_start = jiffies;
774
775 /* initialize the firmware command packet */
776 packet->info.c_struct.cmd->host_command_reg = cmd->host_command;
777 packet->info.c_struct.cmd->host_command_reg1 = cmd->host_command1;
James Ketrenosee8e3652005-09-14 09:47:29 -0500778 packet->info.c_struct.cmd->host_command_len_reg =
779 cmd->host_command_length;
James Ketrenos2c86c272005-03-23 17:32:29 -0600780 packet->info.c_struct.cmd->sequence = cmd->host_command_sequence;
781
782 memcpy(packet->info.c_struct.cmd->host_command_params_reg,
783 cmd->host_command_parameters,
784 sizeof(packet->info.c_struct.cmd->host_command_params_reg));
785
786 list_del(element);
787 DEC_STAT(&priv->msg_free_stat);
788
789 list_add_tail(element, &priv->msg_pend_list);
790 INC_STAT(&priv->msg_pend_stat);
791
Jiri Benc19f7f742005-08-25 20:02:10 -0400792 ipw2100_tx_send_commands(priv);
793 ipw2100_tx_send_data(priv);
James Ketrenos2c86c272005-03-23 17:32:29 -0600794
795 spin_unlock_irqrestore(&priv->low_lock, flags);
796
797 /*
798 * We must wait for this command to complete before another
799 * command can be sent... but if we wait more than 3 seconds
800 * then there is a problem.
801 */
802
James Ketrenosee8e3652005-09-14 09:47:29 -0500803 err =
804 wait_event_interruptible_timeout(priv->wait_command_queue,
805 !(priv->
806 status & STATUS_CMD_ACTIVE),
807 HOST_COMPLETE_TIMEOUT);
James Ketrenos2c86c272005-03-23 17:32:29 -0600808
809 if (err == 0) {
810 IPW_DEBUG_INFO("Command completion failed out after %dms.\n",
James Ketrenos82328352005-08-24 22:33:31 -0500811 1000 * (HOST_COMPLETE_TIMEOUT / HZ));
James Ketrenos2c86c272005-03-23 17:32:29 -0600812 priv->fatal_error = IPW2100_ERR_MSG_TIMEOUT;
813 priv->status &= ~STATUS_CMD_ACTIVE;
814 schedule_reset(priv);
815 return -EIO;
816 }
817
818 if (priv->fatal_error) {
Jiri Benc797b4f72005-08-25 20:03:27 -0400819 printk(KERN_WARNING DRV_NAME ": %s: firmware fatal error\n",
James Ketrenos2c86c272005-03-23 17:32:29 -0600820 priv->net_dev->name);
821 return -EIO;
822 }
823
824 /* !!!!! HACK TEST !!!!!
825 * When lots of debug trace statements are enabled, the driver
826 * doesn't seem to have as many firmware restart cycles...
827 *
828 * As a test, we're sticking in a 1/100s delay here */
Nishanth Aravamudan3173c892005-09-11 02:09:55 -0700829 schedule_timeout_uninterruptible(msecs_to_jiffies(10));
James Ketrenos2c86c272005-03-23 17:32:29 -0600830
831 return 0;
832
James Ketrenosee8e3652005-09-14 09:47:29 -0500833 fail_unlock:
James Ketrenos2c86c272005-03-23 17:32:29 -0600834 spin_unlock_irqrestore(&priv->low_lock, flags);
835
836 return err;
837}
838
James Ketrenos2c86c272005-03-23 17:32:29 -0600839/*
840 * Verify the values and data access of the hardware
841 * No locks needed or used. No functions called.
842 */
843static int ipw2100_verify(struct ipw2100_priv *priv)
844{
845 u32 data1, data2;
846 u32 address;
847
848 u32 val1 = 0x76543210;
849 u32 val2 = 0xFEDCBA98;
850
851 /* Domain 0 check - all values should be DOA_DEBUG */
852 for (address = IPW_REG_DOA_DEBUG_AREA_START;
James Ketrenosee8e3652005-09-14 09:47:29 -0500853 address < IPW_REG_DOA_DEBUG_AREA_END; address += sizeof(u32)) {
James Ketrenos2c86c272005-03-23 17:32:29 -0600854 read_register(priv->net_dev, address, &data1);
855 if (data1 != IPW_DATA_DOA_DEBUG_VALUE)
856 return -EIO;
857 }
858
859 /* Domain 1 check - use arbitrary read/write compare */
860 for (address = 0; address < 5; address++) {
861 /* The memory area is not used now */
862 write_register(priv->net_dev, IPW_REG_DOMAIN_1_OFFSET + 0x32,
863 val1);
864 write_register(priv->net_dev, IPW_REG_DOMAIN_1_OFFSET + 0x36,
865 val2);
866 read_register(priv->net_dev, IPW_REG_DOMAIN_1_OFFSET + 0x32,
867 &data1);
868 read_register(priv->net_dev, IPW_REG_DOMAIN_1_OFFSET + 0x36,
869 &data2);
870 if (val1 == data1 && val2 == data2)
871 return 0;
872 }
873
874 return -EIO;
875}
876
877/*
878 *
879 * Loop until the CARD_DISABLED bit is the same value as the
880 * supplied parameter
881 *
882 * TODO: See if it would be more efficient to do a wait/wake
883 * cycle and have the completion event trigger the wakeup
884 *
885 */
886#define IPW_CARD_DISABLE_COMPLETE_WAIT 100 // 100 milli
887static int ipw2100_wait_for_card_state(struct ipw2100_priv *priv, int state)
888{
889 int i;
890 u32 card_state;
891 u32 len = sizeof(card_state);
892 int err;
893
894 for (i = 0; i <= IPW_CARD_DISABLE_COMPLETE_WAIT * 1000; i += 50) {
895 err = ipw2100_get_ordinal(priv, IPW_ORD_CARD_DISABLED,
896 &card_state, &len);
897 if (err) {
898 IPW_DEBUG_INFO("Query of CARD_DISABLED ordinal "
899 "failed.\n");
900 return 0;
901 }
902
903 /* We'll break out if either the HW state says it is
904 * in the state we want, or if HOST_COMPLETE command
905 * finishes */
906 if ((card_state == state) ||
907 ((priv->status & STATUS_ENABLED) ?
908 IPW_HW_STATE_ENABLED : IPW_HW_STATE_DISABLED) == state) {
909 if (state == IPW_HW_STATE_ENABLED)
910 priv->status |= STATUS_ENABLED;
911 else
912 priv->status &= ~STATUS_ENABLED;
913
914 return 0;
915 }
916
917 udelay(50);
918 }
919
920 IPW_DEBUG_INFO("ipw2100_wait_for_card_state to %s state timed out\n",
921 state ? "DISABLED" : "ENABLED");
922 return -EIO;
923}
924
James Ketrenos2c86c272005-03-23 17:32:29 -0600925/*********************************************************************
926 Procedure : sw_reset_and_clock
927 Purpose : Asserts s/w reset, asserts clock initialization
928 and waits for clock stabilization
929 ********************************************************************/
930static int sw_reset_and_clock(struct ipw2100_priv *priv)
931{
932 int i;
933 u32 r;
934
935 // assert s/w reset
936 write_register(priv->net_dev, IPW_REG_RESET_REG,
937 IPW_AUX_HOST_RESET_REG_SW_RESET);
938
939 // wait for clock stabilization
940 for (i = 0; i < 1000; i++) {
941 udelay(IPW_WAIT_RESET_ARC_COMPLETE_DELAY);
942
943 // check clock ready bit
944 read_register(priv->net_dev, IPW_REG_RESET_REG, &r);
945 if (r & IPW_AUX_HOST_RESET_REG_PRINCETON_RESET)
946 break;
947 }
948
949 if (i == 1000)
950 return -EIO; // TODO: better error value
951
952 /* set "initialization complete" bit to move adapter to
953 * D0 state */
954 write_register(priv->net_dev, IPW_REG_GP_CNTRL,
955 IPW_AUX_HOST_GP_CNTRL_BIT_INIT_DONE);
956
957 /* wait for clock stabilization */
958 for (i = 0; i < 10000; i++) {
959 udelay(IPW_WAIT_CLOCK_STABILIZATION_DELAY * 4);
960
961 /* check clock ready bit */
962 read_register(priv->net_dev, IPW_REG_GP_CNTRL, &r);
963 if (r & IPW_AUX_HOST_GP_CNTRL_BIT_CLOCK_READY)
964 break;
965 }
966
967 if (i == 10000)
968 return -EIO; /* TODO: better error value */
969
James Ketrenos2c86c272005-03-23 17:32:29 -0600970 /* set D0 standby bit */
971 read_register(priv->net_dev, IPW_REG_GP_CNTRL, &r);
972 write_register(priv->net_dev, IPW_REG_GP_CNTRL,
973 r | IPW_AUX_HOST_GP_CNTRL_BIT_HOST_ALLOWS_STANDBY);
James Ketrenos2c86c272005-03-23 17:32:29 -0600974
975 return 0;
976}
977
978/*********************************************************************
Pavel Machek8724a112005-06-20 14:28:43 -0700979 Procedure : ipw2100_download_firmware
James Ketrenos2c86c272005-03-23 17:32:29 -0600980 Purpose : Initiaze adapter after power on.
981 The sequence is:
982 1. assert s/w reset first!
983 2. awake clocks & wait for clock stabilization
984 3. hold ARC (don't ask me why...)
985 4. load Dino ucode and reset/clock init again
986 5. zero-out shared mem
987 6. download f/w
988 *******************************************************************/
989static int ipw2100_download_firmware(struct ipw2100_priv *priv)
990{
991 u32 address;
992 int err;
993
994#ifndef CONFIG_PM
995 /* Fetch the firmware and microcode */
996 struct ipw2100_fw ipw2100_firmware;
997#endif
998
999 if (priv->fatal_error) {
1000 IPW_DEBUG_ERROR("%s: ipw2100_download_firmware called after "
James Ketrenosee8e3652005-09-14 09:47:29 -05001001 "fatal error %d. Interface must be brought down.\n",
1002 priv->net_dev->name, priv->fatal_error);
James Ketrenos2c86c272005-03-23 17:32:29 -06001003 return -EINVAL;
1004 }
James Ketrenos2c86c272005-03-23 17:32:29 -06001005#ifdef CONFIG_PM
1006 if (!ipw2100_firmware.version) {
1007 err = ipw2100_get_firmware(priv, &ipw2100_firmware);
1008 if (err) {
1009 IPW_DEBUG_ERROR("%s: ipw2100_get_firmware failed: %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05001010 priv->net_dev->name, err);
James Ketrenos2c86c272005-03-23 17:32:29 -06001011 priv->fatal_error = IPW2100_ERR_FW_LOAD;
1012 goto fail;
1013 }
1014 }
1015#else
1016 err = ipw2100_get_firmware(priv, &ipw2100_firmware);
1017 if (err) {
1018 IPW_DEBUG_ERROR("%s: ipw2100_get_firmware failed: %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05001019 priv->net_dev->name, err);
James Ketrenos2c86c272005-03-23 17:32:29 -06001020 priv->fatal_error = IPW2100_ERR_FW_LOAD;
1021 goto fail;
1022 }
1023#endif
1024 priv->firmware_version = ipw2100_firmware.version;
1025
1026 /* s/w reset and clock stabilization */
1027 err = sw_reset_and_clock(priv);
1028 if (err) {
1029 IPW_DEBUG_ERROR("%s: sw_reset_and_clock failed: %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05001030 priv->net_dev->name, err);
James Ketrenos2c86c272005-03-23 17:32:29 -06001031 goto fail;
1032 }
1033
1034 err = ipw2100_verify(priv);
1035 if (err) {
1036 IPW_DEBUG_ERROR("%s: ipw2100_verify failed: %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05001037 priv->net_dev->name, err);
James Ketrenos2c86c272005-03-23 17:32:29 -06001038 goto fail;
1039 }
1040
1041 /* Hold ARC */
1042 write_nic_dword(priv->net_dev,
James Ketrenosee8e3652005-09-14 09:47:29 -05001043 IPW_INTERNAL_REGISTER_HALT_AND_RESET, 0x80000000);
James Ketrenos2c86c272005-03-23 17:32:29 -06001044
1045 /* allow ARC to run */
1046 write_register(priv->net_dev, IPW_REG_RESET_REG, 0);
1047
1048 /* load microcode */
1049 err = ipw2100_ucode_download(priv, &ipw2100_firmware);
1050 if (err) {
Jiri Benc797b4f72005-08-25 20:03:27 -04001051 printk(KERN_ERR DRV_NAME ": %s: Error loading microcode: %d\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06001052 priv->net_dev->name, err);
1053 goto fail;
1054 }
1055
1056 /* release ARC */
1057 write_nic_dword(priv->net_dev,
James Ketrenosee8e3652005-09-14 09:47:29 -05001058 IPW_INTERNAL_REGISTER_HALT_AND_RESET, 0x00000000);
James Ketrenos2c86c272005-03-23 17:32:29 -06001059
1060 /* s/w reset and clock stabilization (again!!!) */
1061 err = sw_reset_and_clock(priv);
1062 if (err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001063 printk(KERN_ERR DRV_NAME
1064 ": %s: sw_reset_and_clock failed: %d\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06001065 priv->net_dev->name, err);
1066 goto fail;
1067 }
1068
1069 /* load f/w */
1070 err = ipw2100_fw_download(priv, &ipw2100_firmware);
1071 if (err) {
1072 IPW_DEBUG_ERROR("%s: Error loading firmware: %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05001073 priv->net_dev->name, err);
James Ketrenos2c86c272005-03-23 17:32:29 -06001074 goto fail;
1075 }
James Ketrenos2c86c272005-03-23 17:32:29 -06001076#ifndef CONFIG_PM
1077 /*
1078 * When the .resume method of the driver is called, the other
1079 * part of the system, i.e. the ide driver could still stay in
1080 * the suspend stage. This prevents us from loading the firmware
1081 * from the disk. --YZ
1082 */
1083
1084 /* free any storage allocated for firmware image */
1085 ipw2100_release_firmware(priv, &ipw2100_firmware);
1086#endif
1087
1088 /* zero out Domain 1 area indirectly (Si requirement) */
1089 for (address = IPW_HOST_FW_SHARED_AREA0;
1090 address < IPW_HOST_FW_SHARED_AREA0_END; address += 4)
1091 write_nic_dword(priv->net_dev, address, 0);
1092 for (address = IPW_HOST_FW_SHARED_AREA1;
1093 address < IPW_HOST_FW_SHARED_AREA1_END; address += 4)
1094 write_nic_dword(priv->net_dev, address, 0);
1095 for (address = IPW_HOST_FW_SHARED_AREA2;
1096 address < IPW_HOST_FW_SHARED_AREA2_END; address += 4)
1097 write_nic_dword(priv->net_dev, address, 0);
1098 for (address = IPW_HOST_FW_SHARED_AREA3;
1099 address < IPW_HOST_FW_SHARED_AREA3_END; address += 4)
1100 write_nic_dword(priv->net_dev, address, 0);
1101 for (address = IPW_HOST_FW_INTERRUPT_AREA;
1102 address < IPW_HOST_FW_INTERRUPT_AREA_END; address += 4)
1103 write_nic_dword(priv->net_dev, address, 0);
1104
1105 return 0;
1106
James Ketrenosee8e3652005-09-14 09:47:29 -05001107 fail:
James Ketrenos2c86c272005-03-23 17:32:29 -06001108 ipw2100_release_firmware(priv, &ipw2100_firmware);
1109 return err;
1110}
1111
1112static inline void ipw2100_enable_interrupts(struct ipw2100_priv *priv)
1113{
1114 if (priv->status & STATUS_INT_ENABLED)
1115 return;
1116 priv->status |= STATUS_INT_ENABLED;
1117 write_register(priv->net_dev, IPW_REG_INTA_MASK, IPW_INTERRUPT_MASK);
1118}
1119
1120static inline void ipw2100_disable_interrupts(struct ipw2100_priv *priv)
1121{
1122 if (!(priv->status & STATUS_INT_ENABLED))
1123 return;
1124 priv->status &= ~STATUS_INT_ENABLED;
1125 write_register(priv->net_dev, IPW_REG_INTA_MASK, 0x0);
1126}
1127
James Ketrenos2c86c272005-03-23 17:32:29 -06001128static void ipw2100_initialize_ordinals(struct ipw2100_priv *priv)
1129{
1130 struct ipw2100_ordinals *ord = &priv->ordinals;
1131
1132 IPW_DEBUG_INFO("enter\n");
1133
1134 read_register(priv->net_dev, IPW_MEM_HOST_SHARED_ORDINALS_TABLE_1,
1135 &ord->table1_addr);
1136
1137 read_register(priv->net_dev, IPW_MEM_HOST_SHARED_ORDINALS_TABLE_2,
1138 &ord->table2_addr);
1139
1140 read_nic_dword(priv->net_dev, ord->table1_addr, &ord->table1_size);
1141 read_nic_dword(priv->net_dev, ord->table2_addr, &ord->table2_size);
1142
1143 ord->table2_size &= 0x0000FFFF;
1144
1145 IPW_DEBUG_INFO("table 1 size: %d\n", ord->table1_size);
1146 IPW_DEBUG_INFO("table 2 size: %d\n", ord->table2_size);
1147 IPW_DEBUG_INFO("exit\n");
1148}
1149
1150static inline void ipw2100_hw_set_gpio(struct ipw2100_priv *priv)
1151{
1152 u32 reg = 0;
1153 /*
1154 * Set GPIO 3 writable by FW; GPIO 1 writable
1155 * by driver and enable clock
1156 */
1157 reg = (IPW_BIT_GPIO_GPIO3_MASK | IPW_BIT_GPIO_GPIO1_ENABLE |
1158 IPW_BIT_GPIO_LED_OFF);
1159 write_register(priv->net_dev, IPW_REG_GPIO, reg);
1160}
1161
Arjan van de Ven858119e2006-01-14 13:20:43 -08001162static int rf_kill_active(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06001163{
1164#define MAX_RF_KILL_CHECKS 5
1165#define RF_KILL_CHECK_DELAY 40
James Ketrenos2c86c272005-03-23 17:32:29 -06001166
1167 unsigned short value = 0;
1168 u32 reg = 0;
1169 int i;
1170
1171 if (!(priv->hw_features & HW_FEATURE_RFKILL)) {
Matthew Garrettc26409a2009-11-11 14:36:30 -05001172 wiphy_rfkill_set_hw_state(priv->ieee->wdev.wiphy, false);
James Ketrenos2c86c272005-03-23 17:32:29 -06001173 priv->status &= ~STATUS_RF_KILL_HW;
1174 return 0;
1175 }
1176
1177 for (i = 0; i < MAX_RF_KILL_CHECKS; i++) {
1178 udelay(RF_KILL_CHECK_DELAY);
1179 read_register(priv->net_dev, IPW_REG_GPIO, &reg);
1180 value = (value << 1) | ((reg & IPW_BIT_GPIO_RF_KILL) ? 0 : 1);
1181 }
1182
Matthew Garrettc26409a2009-11-11 14:36:30 -05001183 if (value == 0) {
1184 wiphy_rfkill_set_hw_state(priv->ieee->wdev.wiphy, true);
James Ketrenos2c86c272005-03-23 17:32:29 -06001185 priv->status |= STATUS_RF_KILL_HW;
Matthew Garrettc26409a2009-11-11 14:36:30 -05001186 } else {
1187 wiphy_rfkill_set_hw_state(priv->ieee->wdev.wiphy, false);
James Ketrenos2c86c272005-03-23 17:32:29 -06001188 priv->status &= ~STATUS_RF_KILL_HW;
Matthew Garrettc26409a2009-11-11 14:36:30 -05001189 }
James Ketrenos2c86c272005-03-23 17:32:29 -06001190
1191 return (value == 0);
1192}
1193
1194static int ipw2100_get_hw_features(struct ipw2100_priv *priv)
1195{
1196 u32 addr, len;
1197 u32 val;
1198
1199 /*
1200 * EEPROM_SRAM_DB_START_ADDRESS using ordinal in ordinal table 1
1201 */
1202 len = sizeof(addr);
James Ketrenosee8e3652005-09-14 09:47:29 -05001203 if (ipw2100_get_ordinal
1204 (priv, IPW_ORD_EEPROM_SRAM_DB_BLOCK_START_ADDRESS, &addr, &len)) {
James Ketrenos2c86c272005-03-23 17:32:29 -06001205 IPW_DEBUG_INFO("failed querying ordinals at line %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05001206 __LINE__);
James Ketrenos2c86c272005-03-23 17:32:29 -06001207 return -EIO;
1208 }
1209
1210 IPW_DEBUG_INFO("EEPROM address: %08X\n", addr);
1211
1212 /*
1213 * EEPROM version is the byte at offset 0xfd in firmware
1214 * We read 4 bytes, then shift out the byte we actually want */
1215 read_nic_dword(priv->net_dev, addr + 0xFC, &val);
1216 priv->eeprom_version = (val >> 24) & 0xFF;
1217 IPW_DEBUG_INFO("EEPROM version: %d\n", priv->eeprom_version);
1218
James Ketrenosee8e3652005-09-14 09:47:29 -05001219 /*
James Ketrenos2c86c272005-03-23 17:32:29 -06001220 * HW RF Kill enable is bit 0 in byte at offset 0x21 in firmware
1221 *
1222 * notice that the EEPROM bit is reverse polarity, i.e.
1223 * bit = 0 signifies HW RF kill switch is supported
1224 * bit = 1 signifies HW RF kill switch is NOT supported
1225 */
1226 read_nic_dword(priv->net_dev, addr + 0x20, &val);
1227 if (!((val >> 24) & 0x01))
1228 priv->hw_features |= HW_FEATURE_RFKILL;
1229
1230 IPW_DEBUG_INFO("HW RF Kill: %ssupported.\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05001231 (priv->hw_features & HW_FEATURE_RFKILL) ? "" : "not ");
James Ketrenos2c86c272005-03-23 17:32:29 -06001232
1233 return 0;
1234}
1235
1236/*
1237 * Start firmware execution after power on and intialization
1238 * The sequence is:
1239 * 1. Release ARC
1240 * 2. Wait for f/w initialization completes;
1241 */
1242static int ipw2100_start_adapter(struct ipw2100_priv *priv)
1243{
James Ketrenos2c86c272005-03-23 17:32:29 -06001244 int i;
1245 u32 inta, inta_mask, gpio;
1246
1247 IPW_DEBUG_INFO("enter\n");
1248
1249 if (priv->status & STATUS_RUNNING)
1250 return 0;
1251
1252 /*
1253 * Initialize the hw - drive adapter to DO state by setting
1254 * init_done bit. Wait for clk_ready bit and Download
1255 * fw & dino ucode
1256 */
1257 if (ipw2100_download_firmware(priv)) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001258 printk(KERN_ERR DRV_NAME
1259 ": %s: Failed to power on the adapter.\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06001260 priv->net_dev->name);
1261 return -EIO;
1262 }
1263
1264 /* Clear the Tx, Rx and Msg queues and the r/w indexes
1265 * in the firmware RBD and TBD ring queue */
1266 ipw2100_queues_initialize(priv);
1267
1268 ipw2100_hw_set_gpio(priv);
1269
1270 /* TODO -- Look at disabling interrupts here to make sure none
1271 * get fired during FW initialization */
1272
1273 /* Release ARC - clear reset bit */
1274 write_register(priv->net_dev, IPW_REG_RESET_REG, 0);
1275
1276 /* wait for f/w intialization complete */
1277 IPW_DEBUG_FW("Waiting for f/w initialization to complete...\n");
1278 i = 5000;
1279 do {
Nishanth Aravamudan3173c892005-09-11 02:09:55 -07001280 schedule_timeout_uninterruptible(msecs_to_jiffies(40));
James Ketrenos2c86c272005-03-23 17:32:29 -06001281 /* Todo... wait for sync command ... */
1282
1283 read_register(priv->net_dev, IPW_REG_INTA, &inta);
1284
1285 /* check "init done" bit */
1286 if (inta & IPW2100_INTA_FW_INIT_DONE) {
1287 /* reset "init done" bit */
1288 write_register(priv->net_dev, IPW_REG_INTA,
1289 IPW2100_INTA_FW_INIT_DONE);
1290 break;
1291 }
1292
1293 /* check error conditions : we check these after the firmware
1294 * check so that if there is an error, the interrupt handler
1295 * will see it and the adapter will be reset */
1296 if (inta &
1297 (IPW2100_INTA_FATAL_ERROR | IPW2100_INTA_PARITY_ERROR)) {
1298 /* clear error conditions */
1299 write_register(priv->net_dev, IPW_REG_INTA,
1300 IPW2100_INTA_FATAL_ERROR |
1301 IPW2100_INTA_PARITY_ERROR);
1302 }
Roel Kluina2a1c3e2007-11-05 23:55:02 +01001303 } while (--i);
James Ketrenos2c86c272005-03-23 17:32:29 -06001304
1305 /* Clear out any pending INTAs since we aren't supposed to have
1306 * interrupts enabled at this point... */
1307 read_register(priv->net_dev, IPW_REG_INTA, &inta);
1308 read_register(priv->net_dev, IPW_REG_INTA_MASK, &inta_mask);
1309 inta &= IPW_INTERRUPT_MASK;
1310 /* Clear out any pending interrupts */
1311 if (inta & inta_mask)
1312 write_register(priv->net_dev, IPW_REG_INTA, inta);
1313
1314 IPW_DEBUG_FW("f/w initialization complete: %s\n",
1315 i ? "SUCCESS" : "FAILED");
1316
1317 if (!i) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001318 printk(KERN_WARNING DRV_NAME
1319 ": %s: Firmware did not initialize.\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06001320 priv->net_dev->name);
1321 return -EIO;
1322 }
1323
1324 /* allow firmware to write to GPIO1 & GPIO3 */
1325 read_register(priv->net_dev, IPW_REG_GPIO, &gpio);
1326
1327 gpio |= (IPW_BIT_GPIO_GPIO1_MASK | IPW_BIT_GPIO_GPIO3_MASK);
1328
1329 write_register(priv->net_dev, IPW_REG_GPIO, gpio);
1330
1331 /* Ready to receive commands */
1332 priv->status |= STATUS_RUNNING;
1333
1334 /* The adapter has been reset; we are not associated */
1335 priv->status &= ~(STATUS_ASSOCIATING | STATUS_ASSOCIATED);
1336
1337 IPW_DEBUG_INFO("exit\n");
1338
1339 return 0;
1340}
1341
1342static inline void ipw2100_reset_fatalerror(struct ipw2100_priv *priv)
1343{
1344 if (!priv->fatal_error)
1345 return;
1346
1347 priv->fatal_errors[priv->fatal_index++] = priv->fatal_error;
1348 priv->fatal_index %= IPW2100_ERROR_QUEUE;
1349 priv->fatal_error = 0;
1350}
1351
James Ketrenos2c86c272005-03-23 17:32:29 -06001352/* NOTE: Our interrupt is disabled when this method is called */
1353static int ipw2100_power_cycle_adapter(struct ipw2100_priv *priv)
1354{
1355 u32 reg;
1356 int i;
1357
1358 IPW_DEBUG_INFO("Power cycling the hardware.\n");
1359
1360 ipw2100_hw_set_gpio(priv);
1361
1362 /* Step 1. Stop Master Assert */
1363 write_register(priv->net_dev, IPW_REG_RESET_REG,
1364 IPW_AUX_HOST_RESET_REG_STOP_MASTER);
1365
1366 /* Step 2. Wait for stop Master Assert
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02001367 * (not more than 50us, otherwise ret error */
James Ketrenos2c86c272005-03-23 17:32:29 -06001368 i = 5;
1369 do {
1370 udelay(IPW_WAIT_RESET_MASTER_ASSERT_COMPLETE_DELAY);
1371 read_register(priv->net_dev, IPW_REG_RESET_REG, &reg);
1372
1373 if (reg & IPW_AUX_HOST_RESET_REG_MASTER_DISABLED)
1374 break;
Roel Kluina2a1c3e2007-11-05 23:55:02 +01001375 } while (--i);
James Ketrenos2c86c272005-03-23 17:32:29 -06001376
1377 priv->status &= ~STATUS_RESET_PENDING;
1378
1379 if (!i) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001380 IPW_DEBUG_INFO
1381 ("exit - waited too long for master assert stop\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06001382 return -EIO;
1383 }
1384
1385 write_register(priv->net_dev, IPW_REG_RESET_REG,
1386 IPW_AUX_HOST_RESET_REG_SW_RESET);
1387
James Ketrenos2c86c272005-03-23 17:32:29 -06001388 /* Reset any fatal_error conditions */
1389 ipw2100_reset_fatalerror(priv);
1390
1391 /* At this point, the adapter is now stopped and disabled */
1392 priv->status &= ~(STATUS_RUNNING | STATUS_ASSOCIATING |
1393 STATUS_ASSOCIATED | STATUS_ENABLED);
1394
1395 return 0;
1396}
1397
1398/*
Justin P. Mattock942a8492011-02-01 21:06:21 -08001399 * Send the CARD_DISABLE_PHY_OFF command to the card to disable it
James Ketrenos2c86c272005-03-23 17:32:29 -06001400 *
1401 * After disabling, if the card was associated, a STATUS_ASSN_LOST will be sent.
1402 *
1403 * STATUS_CARD_DISABLE_NOTIFICATION will be sent regardless of
1404 * if STATUS_ASSN_LOST is sent.
1405 */
1406static int ipw2100_hw_phy_off(struct ipw2100_priv *priv)
1407{
1408
1409#define HW_PHY_OFF_LOOP_DELAY (HZ / 5000)
1410
1411 struct host_command cmd = {
1412 .host_command = CARD_DISABLE_PHY_OFF,
1413 .host_command_sequence = 0,
1414 .host_command_length = 0,
1415 };
1416 int err, i;
1417 u32 val1, val2;
1418
1419 IPW_DEBUG_HC("CARD_DISABLE_PHY_OFF\n");
1420
1421 /* Turn off the radio */
1422 err = ipw2100_hw_send_command(priv, &cmd);
1423 if (err)
1424 return err;
1425
1426 for (i = 0; i < 2500; i++) {
1427 read_nic_dword(priv->net_dev, IPW2100_CONTROL_REG, &val1);
1428 read_nic_dword(priv->net_dev, IPW2100_COMMAND, &val2);
1429
1430 if ((val1 & IPW2100_CONTROL_PHY_OFF) &&
1431 (val2 & IPW2100_COMMAND_PHY_OFF))
1432 return 0;
1433
Nishanth Aravamudan3173c892005-09-11 02:09:55 -07001434 schedule_timeout_uninterruptible(HW_PHY_OFF_LOOP_DELAY);
James Ketrenos2c86c272005-03-23 17:32:29 -06001435 }
1436
1437 return -EIO;
1438}
1439
James Ketrenos2c86c272005-03-23 17:32:29 -06001440static int ipw2100_enable_adapter(struct ipw2100_priv *priv)
1441{
1442 struct host_command cmd = {
1443 .host_command = HOST_COMPLETE,
1444 .host_command_sequence = 0,
1445 .host_command_length = 0
1446 };
1447 int err = 0;
1448
1449 IPW_DEBUG_HC("HOST_COMPLETE\n");
1450
1451 if (priv->status & STATUS_ENABLED)
1452 return 0;
1453
Ingo Molnar752e3772006-02-28 07:20:54 +08001454 mutex_lock(&priv->adapter_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06001455
1456 if (rf_kill_active(priv)) {
1457 IPW_DEBUG_HC("Command aborted due to RF kill active.\n");
1458 goto fail_up;
1459 }
1460
1461 err = ipw2100_hw_send_command(priv, &cmd);
1462 if (err) {
1463 IPW_DEBUG_INFO("Failed to send HOST_COMPLETE command\n");
1464 goto fail_up;
1465 }
1466
1467 err = ipw2100_wait_for_card_state(priv, IPW_HW_STATE_ENABLED);
1468 if (err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001469 IPW_DEBUG_INFO("%s: card not responding to init command.\n",
1470 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06001471 goto fail_up;
1472 }
1473
1474 if (priv->stop_hang_check) {
1475 priv->stop_hang_check = 0;
Tejun Heobcb6d912011-01-26 12:12:50 +01001476 schedule_delayed_work(&priv->hang_check, HZ / 2);
James Ketrenos2c86c272005-03-23 17:32:29 -06001477 }
1478
James Ketrenosee8e3652005-09-14 09:47:29 -05001479 fail_up:
Ingo Molnar752e3772006-02-28 07:20:54 +08001480 mutex_unlock(&priv->adapter_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06001481 return err;
1482}
1483
1484static int ipw2100_hw_stop_adapter(struct ipw2100_priv *priv)
1485{
Nishanth Aravamudan3173c892005-09-11 02:09:55 -07001486#define HW_POWER_DOWN_DELAY (msecs_to_jiffies(100))
James Ketrenos2c86c272005-03-23 17:32:29 -06001487
1488 struct host_command cmd = {
1489 .host_command = HOST_PRE_POWER_DOWN,
1490 .host_command_sequence = 0,
1491 .host_command_length = 0,
1492 };
1493 int err, i;
1494 u32 reg;
1495
1496 if (!(priv->status & STATUS_RUNNING))
1497 return 0;
1498
1499 priv->status |= STATUS_STOPPING;
1500
1501 /* We can only shut down the card if the firmware is operational. So,
1502 * if we haven't reset since a fatal_error, then we can not send the
1503 * shutdown commands. */
1504 if (!priv->fatal_error) {
1505 /* First, make sure the adapter is enabled so that the PHY_OFF
1506 * command can shut it down */
1507 ipw2100_enable_adapter(priv);
1508
1509 err = ipw2100_hw_phy_off(priv);
1510 if (err)
James Ketrenosee8e3652005-09-14 09:47:29 -05001511 printk(KERN_WARNING DRV_NAME
1512 ": Error disabling radio %d\n", err);
James Ketrenos2c86c272005-03-23 17:32:29 -06001513
1514 /*
1515 * If in D0-standby mode going directly to D3 may cause a
1516 * PCI bus violation. Therefore we must change out of the D0
1517 * state.
1518 *
1519 * Sending the PREPARE_FOR_POWER_DOWN will restrict the
1520 * hardware from going into standby mode and will transition
Andreas Mohrd6e05ed2006-06-26 18:35:02 +02001521 * out of D0-standby if it is already in that state.
James Ketrenos2c86c272005-03-23 17:32:29 -06001522 *
1523 * STATUS_PREPARE_POWER_DOWN_COMPLETE will be sent by the
1524 * driver upon completion. Once received, the driver can
1525 * proceed to the D3 state.
1526 *
1527 * Prepare for power down command to fw. This command would
1528 * take HW out of D0-standby and prepare it for D3 state.
1529 *
1530 * Currently FW does not support event notification for this
1531 * event. Therefore, skip waiting for it. Just wait a fixed
1532 * 100ms
1533 */
1534 IPW_DEBUG_HC("HOST_PRE_POWER_DOWN\n");
1535
1536 err = ipw2100_hw_send_command(priv, &cmd);
1537 if (err)
Jiri Benc797b4f72005-08-25 20:03:27 -04001538 printk(KERN_WARNING DRV_NAME ": "
James Ketrenos2c86c272005-03-23 17:32:29 -06001539 "%s: Power down command failed: Error %d\n",
1540 priv->net_dev->name, err);
Nishanth Aravamudan3173c892005-09-11 02:09:55 -07001541 else
1542 schedule_timeout_uninterruptible(HW_POWER_DOWN_DELAY);
James Ketrenos2c86c272005-03-23 17:32:29 -06001543 }
1544
1545 priv->status &= ~STATUS_ENABLED;
1546
1547 /*
1548 * Set GPIO 3 writable by FW; GPIO 1 writable
1549 * by driver and enable clock
1550 */
1551 ipw2100_hw_set_gpio(priv);
1552
1553 /*
1554 * Power down adapter. Sequence:
1555 * 1. Stop master assert (RESET_REG[9]=1)
1556 * 2. Wait for stop master (RESET_REG[8]==1)
1557 * 3. S/w reset assert (RESET_REG[7] = 1)
1558 */
1559
1560 /* Stop master assert */
1561 write_register(priv->net_dev, IPW_REG_RESET_REG,
1562 IPW_AUX_HOST_RESET_REG_STOP_MASTER);
1563
1564 /* wait stop master not more than 50 usec.
1565 * Otherwise return error. */
1566 for (i = 5; i > 0; i--) {
1567 udelay(10);
1568
1569 /* Check master stop bit */
1570 read_register(priv->net_dev, IPW_REG_RESET_REG, &reg);
1571
1572 if (reg & IPW_AUX_HOST_RESET_REG_MASTER_DISABLED)
1573 break;
1574 }
1575
1576 if (i == 0)
Jiri Benc797b4f72005-08-25 20:03:27 -04001577 printk(KERN_WARNING DRV_NAME
James Ketrenos2c86c272005-03-23 17:32:29 -06001578 ": %s: Could now power down adapter.\n",
1579 priv->net_dev->name);
1580
1581 /* assert s/w reset */
1582 write_register(priv->net_dev, IPW_REG_RESET_REG,
1583 IPW_AUX_HOST_RESET_REG_SW_RESET);
1584
1585 priv->status &= ~(STATUS_RUNNING | STATUS_STOPPING);
1586
1587 return 0;
1588}
1589
James Ketrenos2c86c272005-03-23 17:32:29 -06001590static int ipw2100_disable_adapter(struct ipw2100_priv *priv)
1591{
1592 struct host_command cmd = {
1593 .host_command = CARD_DISABLE,
1594 .host_command_sequence = 0,
1595 .host_command_length = 0
1596 };
1597 int err = 0;
1598
1599 IPW_DEBUG_HC("CARD_DISABLE\n");
1600
1601 if (!(priv->status & STATUS_ENABLED))
1602 return 0;
1603
1604 /* Make sure we clear the associated state */
1605 priv->status &= ~(STATUS_ASSOCIATED | STATUS_ASSOCIATING);
1606
1607 if (!priv->stop_hang_check) {
1608 priv->stop_hang_check = 1;
1609 cancel_delayed_work(&priv->hang_check);
1610 }
1611
Ingo Molnar752e3772006-02-28 07:20:54 +08001612 mutex_lock(&priv->adapter_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06001613
1614 err = ipw2100_hw_send_command(priv, &cmd);
1615 if (err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001616 printk(KERN_WARNING DRV_NAME
1617 ": exit - failed to send CARD_DISABLE command\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06001618 goto fail_up;
1619 }
1620
1621 err = ipw2100_wait_for_card_state(priv, IPW_HW_STATE_DISABLED);
1622 if (err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001623 printk(KERN_WARNING DRV_NAME
1624 ": exit - card failed to change to DISABLED\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06001625 goto fail_up;
1626 }
1627
1628 IPW_DEBUG_INFO("TODO: implement scan state machine\n");
1629
James Ketrenosee8e3652005-09-14 09:47:29 -05001630 fail_up:
Ingo Molnar752e3772006-02-28 07:20:54 +08001631 mutex_unlock(&priv->adapter_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06001632 return err;
1633}
1634
Jiri Bencc4aee8c2005-08-25 20:04:43 -04001635static int ipw2100_set_scan_options(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06001636{
1637 struct host_command cmd = {
1638 .host_command = SET_SCAN_OPTIONS,
1639 .host_command_sequence = 0,
1640 .host_command_length = 8
1641 };
1642 int err;
1643
1644 IPW_DEBUG_INFO("enter\n");
1645
1646 IPW_DEBUG_SCAN("setting scan options\n");
1647
1648 cmd.host_command_parameters[0] = 0;
1649
1650 if (!(priv->config & CFG_ASSOCIATE))
1651 cmd.host_command_parameters[0] |= IPW_SCAN_NOASSOCIATE;
25b645b2005-07-12 15:45:30 -05001652 if ((priv->ieee->sec.flags & SEC_ENABLED) && priv->ieee->sec.enabled)
James Ketrenos2c86c272005-03-23 17:32:29 -06001653 cmd.host_command_parameters[0] |= IPW_SCAN_MIXED_CELL;
1654 if (priv->config & CFG_PASSIVE_SCAN)
1655 cmd.host_command_parameters[0] |= IPW_SCAN_PASSIVE;
1656
1657 cmd.host_command_parameters[1] = priv->channel_mask;
1658
1659 err = ipw2100_hw_send_command(priv, &cmd);
1660
1661 IPW_DEBUG_HC("SET_SCAN_OPTIONS 0x%04X\n",
1662 cmd.host_command_parameters[0]);
1663
1664 return err;
1665}
1666
Jiri Bencc4aee8c2005-08-25 20:04:43 -04001667static int ipw2100_start_scan(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06001668{
1669 struct host_command cmd = {
1670 .host_command = BROADCAST_SCAN,
1671 .host_command_sequence = 0,
1672 .host_command_length = 4
1673 };
1674 int err;
1675
1676 IPW_DEBUG_HC("START_SCAN\n");
1677
1678 cmd.host_command_parameters[0] = 0;
1679
1680 /* No scanning if in monitor mode */
1681 if (priv->ieee->iw_mode == IW_MODE_MONITOR)
1682 return 1;
1683
1684 if (priv->status & STATUS_SCANNING) {
1685 IPW_DEBUG_SCAN("Scan requested while already in scan...\n");
1686 return 0;
1687 }
1688
1689 IPW_DEBUG_INFO("enter\n");
1690
1691 /* Not clearing here; doing so makes iwlist always return nothing...
1692 *
1693 * We should modify the table logic to use aging tables vs. clearing
1694 * the table on each scan start.
1695 */
1696 IPW_DEBUG_SCAN("starting scan\n");
1697
1698 priv->status |= STATUS_SCANNING;
1699 err = ipw2100_hw_send_command(priv, &cmd);
1700 if (err)
1701 priv->status &= ~STATUS_SCANNING;
1702
1703 IPW_DEBUG_INFO("exit\n");
1704
1705 return err;
1706}
1707
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001708static const struct libipw_geo ipw_geos[] = {
Zhu Yibe6b3b12006-01-24 13:49:08 +08001709 { /* Restricted */
1710 "---",
1711 .bg_channels = 14,
1712 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
1713 {2427, 4}, {2432, 5}, {2437, 6},
1714 {2442, 7}, {2447, 8}, {2452, 9},
1715 {2457, 10}, {2462, 11}, {2467, 12},
1716 {2472, 13}, {2484, 14}},
1717 },
1718};
1719
James Ketrenos2c86c272005-03-23 17:32:29 -06001720static int ipw2100_up(struct ipw2100_priv *priv, int deferred)
1721{
1722 unsigned long flags;
1723 int rc = 0;
1724 u32 lock;
1725 u32 ord_len = sizeof(lock);
1726
Dan Williamsc3d72b92009-02-11 13:26:06 -05001727 /* Age scan list entries found before suspend */
1728 if (priv->suspend_time) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001729 libipw_networks_age(priv->ieee, priv->suspend_time);
Dan Williamsc3d72b92009-02-11 13:26:06 -05001730 priv->suspend_time = 0;
1731 }
1732
1733 /* Quiet if manually disabled. */
James Ketrenos2c86c272005-03-23 17:32:29 -06001734 if (priv->status & STATUS_RF_KILL_SW) {
1735 IPW_DEBUG_INFO("%s: Radio is disabled by Manual Disable "
1736 "switch\n", priv->net_dev->name);
1737 return 0;
1738 }
1739
Arjan van de Ven5c875792006-09-30 23:27:17 -07001740 /* the ipw2100 hardware really doesn't want power management delays
1741 * longer than 175usec
1742 */
James Bottomley82f68252010-07-05 22:53:06 +02001743 pm_qos_update_request(&ipw2100_pm_qos_req, 175);
Arjan van de Ven5c875792006-09-30 23:27:17 -07001744
James Ketrenos2c86c272005-03-23 17:32:29 -06001745 /* If the interrupt is enabled, turn it off... */
1746 spin_lock_irqsave(&priv->low_lock, flags);
1747 ipw2100_disable_interrupts(priv);
1748
1749 /* Reset any fatal_error conditions */
1750 ipw2100_reset_fatalerror(priv);
1751 spin_unlock_irqrestore(&priv->low_lock, flags);
1752
1753 if (priv->status & STATUS_POWERED ||
1754 (priv->status & STATUS_RESET_PENDING)) {
1755 /* Power cycle the card ... */
1756 if (ipw2100_power_cycle_adapter(priv)) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001757 printk(KERN_WARNING DRV_NAME
1758 ": %s: Could not cycle adapter.\n",
1759 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06001760 rc = 1;
1761 goto exit;
1762 }
1763 } else
1764 priv->status |= STATUS_POWERED;
1765
Pavel Machek8724a112005-06-20 14:28:43 -07001766 /* Load the firmware, start the clocks, etc. */
James Ketrenos2c86c272005-03-23 17:32:29 -06001767 if (ipw2100_start_adapter(priv)) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001768 printk(KERN_ERR DRV_NAME
1769 ": %s: Failed to start the firmware.\n",
1770 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06001771 rc = 1;
1772 goto exit;
1773 }
1774
1775 ipw2100_initialize_ordinals(priv);
1776
1777 /* Determine capabilities of this particular HW configuration */
1778 if (ipw2100_get_hw_features(priv)) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001779 printk(KERN_ERR DRV_NAME
1780 ": %s: Failed to determine HW features.\n",
1781 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06001782 rc = 1;
1783 goto exit;
1784 }
1785
Zhu Yibe6b3b12006-01-24 13:49:08 +08001786 /* Initialize the geo */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001787 if (libipw_set_geo(priv->ieee, &ipw_geos[0])) {
Zhu Yibe6b3b12006-01-24 13:49:08 +08001788 printk(KERN_WARNING DRV_NAME "Could not set geo\n");
1789 return 0;
1790 }
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001791 priv->ieee->freq_band = LIBIPW_24GHZ_BAND;
Zhu Yibe6b3b12006-01-24 13:49:08 +08001792
James Ketrenos2c86c272005-03-23 17:32:29 -06001793 lock = LOCK_NONE;
1794 if (ipw2100_set_ordinal(priv, IPW_ORD_PERS_DB_LOCK, &lock, &ord_len)) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001795 printk(KERN_ERR DRV_NAME
1796 ": %s: Failed to clear ordinal lock.\n",
1797 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06001798 rc = 1;
1799 goto exit;
1800 }
1801
1802 priv->status &= ~STATUS_SCANNING;
1803
1804 if (rf_kill_active(priv)) {
1805 printk(KERN_INFO "%s: Radio is disabled by RF switch.\n",
1806 priv->net_dev->name);
1807
1808 if (priv->stop_rf_kill) {
1809 priv->stop_rf_kill = 0;
Tejun Heobcb6d912011-01-26 12:12:50 +01001810 schedule_delayed_work(&priv->rf_kill,
1811 round_jiffies_relative(HZ));
James Ketrenos2c86c272005-03-23 17:32:29 -06001812 }
1813
1814 deferred = 1;
1815 }
1816
1817 /* Turn on the interrupt so that commands can be processed */
1818 ipw2100_enable_interrupts(priv);
1819
1820 /* Send all of the commands that must be sent prior to
1821 * HOST_COMPLETE */
1822 if (ipw2100_adapter_setup(priv)) {
Jiri Benc797b4f72005-08-25 20:03:27 -04001823 printk(KERN_ERR DRV_NAME ": %s: Failed to start the card.\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05001824 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06001825 rc = 1;
1826 goto exit;
1827 }
1828
1829 if (!deferred) {
1830 /* Enable the adapter - sends HOST_COMPLETE */
1831 if (ipw2100_enable_adapter(priv)) {
Jiri Benc797b4f72005-08-25 20:03:27 -04001832 printk(KERN_ERR DRV_NAME ": "
James Ketrenosee8e3652005-09-14 09:47:29 -05001833 "%s: failed in call to enable adapter.\n",
1834 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06001835 ipw2100_hw_stop_adapter(priv);
1836 rc = 1;
1837 goto exit;
1838 }
1839
James Ketrenos2c86c272005-03-23 17:32:29 -06001840 /* Start a scan . . . */
1841 ipw2100_set_scan_options(priv);
1842 ipw2100_start_scan(priv);
1843 }
1844
James Ketrenosee8e3652005-09-14 09:47:29 -05001845 exit:
James Ketrenos2c86c272005-03-23 17:32:29 -06001846 return rc;
1847}
1848
James Ketrenos2c86c272005-03-23 17:32:29 -06001849static void ipw2100_down(struct ipw2100_priv *priv)
1850{
1851 unsigned long flags;
1852 union iwreq_data wrqu = {
1853 .ap_addr = {
James Ketrenosee8e3652005-09-14 09:47:29 -05001854 .sa_family = ARPHRD_ETHER}
James Ketrenos2c86c272005-03-23 17:32:29 -06001855 };
1856 int associated = priv->status & STATUS_ASSOCIATED;
1857
1858 /* Kill the RF switch timer */
1859 if (!priv->stop_rf_kill) {
1860 priv->stop_rf_kill = 1;
1861 cancel_delayed_work(&priv->rf_kill);
1862 }
1863
Nick Andrew44072452009-01-03 18:52:40 +11001864 /* Kill the firmware hang check timer */
James Ketrenos2c86c272005-03-23 17:32:29 -06001865 if (!priv->stop_hang_check) {
1866 priv->stop_hang_check = 1;
1867 cancel_delayed_work(&priv->hang_check);
1868 }
1869
1870 /* Kill any pending resets */
1871 if (priv->status & STATUS_RESET_PENDING)
1872 cancel_delayed_work(&priv->reset_work);
1873
1874 /* Make sure the interrupt is on so that FW commands will be
1875 * processed correctly */
1876 spin_lock_irqsave(&priv->low_lock, flags);
1877 ipw2100_enable_interrupts(priv);
1878 spin_unlock_irqrestore(&priv->low_lock, flags);
1879
1880 if (ipw2100_hw_stop_adapter(priv))
Jiri Benc797b4f72005-08-25 20:03:27 -04001881 printk(KERN_ERR DRV_NAME ": %s: Error stopping adapter.\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06001882 priv->net_dev->name);
1883
1884 /* Do not disable the interrupt until _after_ we disable
1885 * the adaptor. Otherwise the CARD_DISABLE command will never
1886 * be ack'd by the firmware */
1887 spin_lock_irqsave(&priv->low_lock, flags);
1888 ipw2100_disable_interrupts(priv);
1889 spin_unlock_irqrestore(&priv->low_lock, flags);
1890
James Bottomley82f68252010-07-05 22:53:06 +02001891 pm_qos_update_request(&ipw2100_pm_qos_req, PM_QOS_DEFAULT_VALUE);
Arjan van de Ven5c875792006-09-30 23:27:17 -07001892
James Ketrenos2c86c272005-03-23 17:32:29 -06001893 /* We have to signal any supplicant if we are disassociating */
1894 if (associated)
1895 wireless_send_event(priv->net_dev, SIOCGIWAP, &wrqu, NULL);
1896
1897 priv->status &= ~(STATUS_ASSOCIATED | STATUS_ASSOCIATING);
1898 netif_carrier_off(priv->net_dev);
1899 netif_stop_queue(priv->net_dev);
1900}
1901
Matthew Garrettc26409a2009-11-11 14:36:30 -05001902/* Called by register_netdev() */
1903static int ipw2100_net_init(struct net_device *dev)
1904{
1905 struct ipw2100_priv *priv = libipw_priv(dev);
1906 const struct libipw_geo *geo = libipw_get_geo(priv->ieee);
1907 struct wireless_dev *wdev = &priv->ieee->wdev;
1908 int ret;
1909 int i;
1910
1911 ret = ipw2100_up(priv, 1);
1912 if (ret)
1913 return ret;
1914
1915 memcpy(wdev->wiphy->perm_addr, priv->mac_addr, ETH_ALEN);
1916
1917 /* fill-out priv->ieee->bg_band */
1918 if (geo->bg_channels) {
1919 struct ieee80211_supported_band *bg_band = &priv->ieee->bg_band;
1920
1921 bg_band->band = IEEE80211_BAND_2GHZ;
1922 bg_band->n_channels = geo->bg_channels;
Joe Perchesbaeb2ff2010-08-11 07:02:48 +00001923 bg_band->channels = kcalloc(geo->bg_channels,
1924 sizeof(struct ieee80211_channel),
1925 GFP_KERNEL);
Christoph Fritz93c05842010-08-03 12:54:20 +02001926 if (!bg_band->channels) {
1927 ipw2100_down(priv);
1928 return -ENOMEM;
1929 }
Matthew Garrettc26409a2009-11-11 14:36:30 -05001930 /* translate geo->bg to bg_band.channels */
1931 for (i = 0; i < geo->bg_channels; i++) {
1932 bg_band->channels[i].band = IEEE80211_BAND_2GHZ;
1933 bg_band->channels[i].center_freq = geo->bg[i].freq;
1934 bg_band->channels[i].hw_value = geo->bg[i].channel;
1935 bg_band->channels[i].max_power = geo->bg[i].max_power;
1936 if (geo->bg[i].flags & LIBIPW_CH_PASSIVE_ONLY)
1937 bg_band->channels[i].flags |=
1938 IEEE80211_CHAN_PASSIVE_SCAN;
1939 if (geo->bg[i].flags & LIBIPW_CH_NO_IBSS)
1940 bg_band->channels[i].flags |=
1941 IEEE80211_CHAN_NO_IBSS;
1942 if (geo->bg[i].flags & LIBIPW_CH_RADAR_DETECT)
1943 bg_band->channels[i].flags |=
1944 IEEE80211_CHAN_RADAR;
1945 /* No equivalent for LIBIPW_CH_80211H_RULES,
1946 LIBIPW_CH_UNIFORM_SPREADING, or
1947 LIBIPW_CH_B_ONLY... */
1948 }
1949 /* point at bitrate info */
1950 bg_band->bitrates = ipw2100_bg_rates;
1951 bg_band->n_bitrates = RATE_COUNT;
1952
1953 wdev->wiphy->bands[IEEE80211_BAND_2GHZ] = bg_band;
1954 }
1955
1956 set_wiphy_dev(wdev->wiphy, &priv->pci_dev->dev);
1957 if (wiphy_register(wdev->wiphy)) {
1958 ipw2100_down(priv);
1959 return -EIO;
1960 }
1961 return 0;
1962}
1963
David Howellsc4028952006-11-22 14:57:56 +00001964static void ipw2100_reset_adapter(struct work_struct *work)
James Ketrenos2c86c272005-03-23 17:32:29 -06001965{
David Howellsc4028952006-11-22 14:57:56 +00001966 struct ipw2100_priv *priv =
1967 container_of(work, struct ipw2100_priv, reset_work.work);
James Ketrenos2c86c272005-03-23 17:32:29 -06001968 unsigned long flags;
1969 union iwreq_data wrqu = {
1970 .ap_addr = {
James Ketrenosee8e3652005-09-14 09:47:29 -05001971 .sa_family = ARPHRD_ETHER}
James Ketrenos2c86c272005-03-23 17:32:29 -06001972 };
1973 int associated = priv->status & STATUS_ASSOCIATED;
1974
1975 spin_lock_irqsave(&priv->low_lock, flags);
Zhu Yia1e695a2005-07-04 14:06:00 +08001976 IPW_DEBUG_INFO(": %s: Restarting adapter.\n", priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06001977 priv->resets++;
1978 priv->status &= ~(STATUS_ASSOCIATED | STATUS_ASSOCIATING);
1979 priv->status |= STATUS_SECURITY_UPDATED;
1980
1981 /* Force a power cycle even if interface hasn't been opened
1982 * yet */
1983 cancel_delayed_work(&priv->reset_work);
1984 priv->status |= STATUS_RESET_PENDING;
1985 spin_unlock_irqrestore(&priv->low_lock, flags);
1986
Ingo Molnar752e3772006-02-28 07:20:54 +08001987 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06001988 /* stop timed checks so that they don't interfere with reset */
1989 priv->stop_hang_check = 1;
1990 cancel_delayed_work(&priv->hang_check);
1991
1992 /* We have to signal any supplicant if we are disassociating */
1993 if (associated)
1994 wireless_send_event(priv->net_dev, SIOCGIWAP, &wrqu, NULL);
1995
1996 ipw2100_up(priv, 0);
Ingo Molnar752e3772006-02-28 07:20:54 +08001997 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06001998
1999}
2000
James Ketrenos2c86c272005-03-23 17:32:29 -06002001static void isr_indicate_associated(struct ipw2100_priv *priv, u32 status)
2002{
2003
2004#define MAC_ASSOCIATION_READ_DELAY (HZ)
Hannes Ederb9da9e92009-02-14 11:50:26 +00002005 int ret;
2006 unsigned int len, essid_len;
James Ketrenos2c86c272005-03-23 17:32:29 -06002007 char essid[IW_ESSID_MAX_SIZE];
2008 u32 txrate;
2009 u32 chan;
2010 char *txratename;
James Ketrenosee8e3652005-09-14 09:47:29 -05002011 u8 bssid[ETH_ALEN];
John W. Linville9387b7c2008-09-30 20:59:05 -04002012 DECLARE_SSID_BUF(ssid);
James Ketrenos2c86c272005-03-23 17:32:29 -06002013
2014 /*
2015 * TBD: BSSID is usually 00:00:00:00:00:00 here and not
2016 * an actual MAC of the AP. Seems like FW sets this
2017 * address too late. Read it later and expose through
2018 * /proc or schedule a later task to query and update
2019 */
2020
2021 essid_len = IW_ESSID_MAX_SIZE;
2022 ret = ipw2100_get_ordinal(priv, IPW_ORD_STAT_ASSN_SSID,
2023 essid, &essid_len);
2024 if (ret) {
2025 IPW_DEBUG_INFO("failed querying ordinals at line %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05002026 __LINE__);
James Ketrenos2c86c272005-03-23 17:32:29 -06002027 return;
2028 }
2029
2030 len = sizeof(u32);
James Ketrenosee8e3652005-09-14 09:47:29 -05002031 ret = ipw2100_get_ordinal(priv, IPW_ORD_CURRENT_TX_RATE, &txrate, &len);
James Ketrenos2c86c272005-03-23 17:32:29 -06002032 if (ret) {
2033 IPW_DEBUG_INFO("failed querying ordinals at line %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05002034 __LINE__);
James Ketrenos2c86c272005-03-23 17:32:29 -06002035 return;
2036 }
2037
2038 len = sizeof(u32);
2039 ret = ipw2100_get_ordinal(priv, IPW_ORD_OUR_FREQ, &chan, &len);
2040 if (ret) {
2041 IPW_DEBUG_INFO("failed querying ordinals at line %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05002042 __LINE__);
James Ketrenos2c86c272005-03-23 17:32:29 -06002043 return;
2044 }
2045 len = ETH_ALEN;
James Ketrenosee8e3652005-09-14 09:47:29 -05002046 ipw2100_get_ordinal(priv, IPW_ORD_STAT_ASSN_AP_BSSID, &bssid, &len);
James Ketrenos2c86c272005-03-23 17:32:29 -06002047 if (ret) {
2048 IPW_DEBUG_INFO("failed querying ordinals at line %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05002049 __LINE__);
James Ketrenos2c86c272005-03-23 17:32:29 -06002050 return;
2051 }
2052 memcpy(priv->ieee->bssid, bssid, ETH_ALEN);
2053
James Ketrenos2c86c272005-03-23 17:32:29 -06002054 switch (txrate) {
2055 case TX_RATE_1_MBIT:
2056 txratename = "1Mbps";
2057 break;
2058 case TX_RATE_2_MBIT:
2059 txratename = "2Mbsp";
2060 break;
2061 case TX_RATE_5_5_MBIT:
2062 txratename = "5.5Mbps";
2063 break;
2064 case TX_RATE_11_MBIT:
2065 txratename = "11Mbps";
2066 break;
2067 default:
2068 IPW_DEBUG_INFO("Unknown rate: %d\n", txrate);
2069 txratename = "unknown rate";
2070 break;
2071 }
2072
Johannes Berge1749612008-10-27 15:59:26 -07002073 IPW_DEBUG_INFO("%s: Associated with '%s' at %s, channel %d (BSSID=%pM)\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04002074 priv->net_dev->name, print_ssid(ssid, essid, essid_len),
Johannes Berge1749612008-10-27 15:59:26 -07002075 txratename, chan, bssid);
James Ketrenos2c86c272005-03-23 17:32:29 -06002076
2077 /* now we copy read ssid into dev */
2078 if (!(priv->config & CFG_STATIC_ESSID)) {
James Ketrenosee8e3652005-09-14 09:47:29 -05002079 priv->essid_len = min((u8) essid_len, (u8) IW_ESSID_MAX_SIZE);
James Ketrenos2c86c272005-03-23 17:32:29 -06002080 memcpy(priv->essid, essid, priv->essid_len);
2081 }
2082 priv->channel = chan;
2083 memcpy(priv->bssid, bssid, ETH_ALEN);
2084
2085 priv->status |= STATUS_ASSOCIATING;
2086 priv->connect_start = get_seconds();
2087
Tejun Heobcb6d912011-01-26 12:12:50 +01002088 schedule_delayed_work(&priv->wx_event_work, HZ / 10);
James Ketrenos2c86c272005-03-23 17:32:29 -06002089}
2090
Jiri Bencc4aee8c2005-08-25 20:04:43 -04002091static int ipw2100_set_essid(struct ipw2100_priv *priv, char *essid,
2092 int length, int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06002093{
2094 int ssid_len = min(length, IW_ESSID_MAX_SIZE);
2095 struct host_command cmd = {
2096 .host_command = SSID,
2097 .host_command_sequence = 0,
2098 .host_command_length = ssid_len
2099 };
2100 int err;
John W. Linville9387b7c2008-09-30 20:59:05 -04002101 DECLARE_SSID_BUF(ssid);
James Ketrenos2c86c272005-03-23 17:32:29 -06002102
John W. Linville9387b7c2008-09-30 20:59:05 -04002103 IPW_DEBUG_HC("SSID: '%s'\n", print_ssid(ssid, essid, ssid_len));
James Ketrenos2c86c272005-03-23 17:32:29 -06002104
2105 if (ssid_len)
James Ketrenos82328352005-08-24 22:33:31 -05002106 memcpy(cmd.host_command_parameters, essid, ssid_len);
James Ketrenos2c86c272005-03-23 17:32:29 -06002107
2108 if (!batch_mode) {
2109 err = ipw2100_disable_adapter(priv);
2110 if (err)
2111 return err;
2112 }
2113
2114 /* Bug in FW currently doesn't honor bit 0 in SET_SCAN_OPTIONS to
2115 * disable auto association -- so we cheat by setting a bogus SSID */
2116 if (!ssid_len && !(priv->config & CFG_ASSOCIATE)) {
2117 int i;
James Ketrenosee8e3652005-09-14 09:47:29 -05002118 u8 *bogus = (u8 *) cmd.host_command_parameters;
James Ketrenos2c86c272005-03-23 17:32:29 -06002119 for (i = 0; i < IW_ESSID_MAX_SIZE; i++)
2120 bogus[i] = 0x18 + i;
2121 cmd.host_command_length = IW_ESSID_MAX_SIZE;
2122 }
2123
2124 /* NOTE: We always send the SSID command even if the provided ESSID is
2125 * the same as what we currently think is set. */
2126
2127 err = ipw2100_hw_send_command(priv, &cmd);
2128 if (!err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05002129 memset(priv->essid + ssid_len, 0, IW_ESSID_MAX_SIZE - ssid_len);
James Ketrenos2c86c272005-03-23 17:32:29 -06002130 memcpy(priv->essid, essid, ssid_len);
2131 priv->essid_len = ssid_len;
2132 }
2133
2134 if (!batch_mode) {
2135 if (ipw2100_enable_adapter(priv))
2136 err = -EIO;
2137 }
2138
2139 return err;
2140}
2141
2142static void isr_indicate_association_lost(struct ipw2100_priv *priv, u32 status)
2143{
John W. Linville9387b7c2008-09-30 20:59:05 -04002144 DECLARE_SSID_BUF(ssid);
2145
James Ketrenos2c86c272005-03-23 17:32:29 -06002146 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE | IPW_DL_ASSOC,
Frans Pop9fd1ea42010-03-24 19:46:31 +01002147 "disassociated: '%s' %pM\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04002148 print_ssid(ssid, priv->essid, priv->essid_len),
Johannes Berge1749612008-10-27 15:59:26 -07002149 priv->bssid);
James Ketrenos2c86c272005-03-23 17:32:29 -06002150
2151 priv->status &= ~(STATUS_ASSOCIATED | STATUS_ASSOCIATING);
2152
2153 if (priv->status & STATUS_STOPPING) {
2154 IPW_DEBUG_INFO("Card is stopping itself, discard ASSN_LOST.\n");
2155 return;
2156 }
2157
2158 memset(priv->bssid, 0, ETH_ALEN);
2159 memset(priv->ieee->bssid, 0, ETH_ALEN);
2160
2161 netif_carrier_off(priv->net_dev);
2162 netif_stop_queue(priv->net_dev);
2163
2164 if (!(priv->status & STATUS_RUNNING))
2165 return;
2166
2167 if (priv->status & STATUS_SECURITY_UPDATED)
Tejun Heobcb6d912011-01-26 12:12:50 +01002168 schedule_delayed_work(&priv->security_work, 0);
James Ketrenos2c86c272005-03-23 17:32:29 -06002169
Tejun Heobcb6d912011-01-26 12:12:50 +01002170 schedule_delayed_work(&priv->wx_event_work, 0);
James Ketrenos2c86c272005-03-23 17:32:29 -06002171}
2172
2173static void isr_indicate_rf_kill(struct ipw2100_priv *priv, u32 status)
2174{
2175 IPW_DEBUG_INFO("%s: RF Kill state changed to radio OFF.\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05002176 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06002177
2178 /* RF_KILL is now enabled (else we wouldn't be here) */
Matthew Garrettc26409a2009-11-11 14:36:30 -05002179 wiphy_rfkill_set_hw_state(priv->ieee->wdev.wiphy, true);
James Ketrenos2c86c272005-03-23 17:32:29 -06002180 priv->status |= STATUS_RF_KILL_HW;
2181
James Ketrenos2c86c272005-03-23 17:32:29 -06002182 /* Make sure the RF Kill check timer is running */
2183 priv->stop_rf_kill = 0;
2184 cancel_delayed_work(&priv->rf_kill);
Tejun Heobcb6d912011-01-26 12:12:50 +01002185 schedule_delayed_work(&priv->rf_kill, round_jiffies_relative(HZ));
James Ketrenos2c86c272005-03-23 17:32:29 -06002186}
2187
Dan Williamsd20c6782007-10-10 12:28:07 -04002188static void send_scan_event(void *data)
2189{
2190 struct ipw2100_priv *priv = data;
2191 union iwreq_data wrqu;
2192
2193 wrqu.data.length = 0;
2194 wrqu.data.flags = 0;
2195 wireless_send_event(priv->net_dev, SIOCGIWSCAN, &wrqu, NULL);
2196}
2197
2198static void ipw2100_scan_event_later(struct work_struct *work)
2199{
2200 send_scan_event(container_of(work, struct ipw2100_priv,
2201 scan_event_later.work));
2202}
2203
2204static void ipw2100_scan_event_now(struct work_struct *work)
2205{
2206 send_scan_event(container_of(work, struct ipw2100_priv,
2207 scan_event_now));
2208}
2209
James Ketrenos2c86c272005-03-23 17:32:29 -06002210static void isr_scan_complete(struct ipw2100_priv *priv, u32 status)
2211{
2212 IPW_DEBUG_SCAN("scan complete\n");
2213 /* Age the scan results... */
2214 priv->ieee->scans++;
2215 priv->status &= ~STATUS_SCANNING;
Dan Williamsd20c6782007-10-10 12:28:07 -04002216
2217 /* Only userspace-requested scan completion events go out immediately */
2218 if (!priv->user_requested_scan) {
2219 if (!delayed_work_pending(&priv->scan_event_later))
Tejun Heobcb6d912011-01-26 12:12:50 +01002220 schedule_delayed_work(&priv->scan_event_later,
2221 round_jiffies_relative(msecs_to_jiffies(4000)));
Dan Williamsd20c6782007-10-10 12:28:07 -04002222 } else {
2223 priv->user_requested_scan = 0;
2224 cancel_delayed_work(&priv->scan_event_later);
Tejun Heobcb6d912011-01-26 12:12:50 +01002225 schedule_work(&priv->scan_event_now);
Dan Williamsd20c6782007-10-10 12:28:07 -04002226 }
James Ketrenos2c86c272005-03-23 17:32:29 -06002227}
2228
Brice Goglin0f52bf92005-12-01 01:41:46 -08002229#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06002230#define IPW2100_HANDLER(v, f) { v, f, # v }
2231struct ipw2100_status_indicator {
2232 int status;
James Ketrenosee8e3652005-09-14 09:47:29 -05002233 void (*cb) (struct ipw2100_priv * priv, u32 status);
James Ketrenos2c86c272005-03-23 17:32:29 -06002234 char *name;
2235};
2236#else
2237#define IPW2100_HANDLER(v, f) { v, f }
2238struct ipw2100_status_indicator {
2239 int status;
James Ketrenosee8e3652005-09-14 09:47:29 -05002240 void (*cb) (struct ipw2100_priv * priv, u32 status);
James Ketrenos2c86c272005-03-23 17:32:29 -06002241};
Brice Goglin0f52bf92005-12-01 01:41:46 -08002242#endif /* CONFIG_IPW2100_DEBUG */
James Ketrenos2c86c272005-03-23 17:32:29 -06002243
2244static void isr_indicate_scanning(struct ipw2100_priv *priv, u32 status)
2245{
2246 IPW_DEBUG_SCAN("Scanning...\n");
2247 priv->status |= STATUS_SCANNING;
2248}
2249
Jiri Bencc4aee8c2005-08-25 20:04:43 -04002250static const struct ipw2100_status_indicator status_handlers[] = {
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01002251 IPW2100_HANDLER(IPW_STATE_INITIALIZED, NULL),
2252 IPW2100_HANDLER(IPW_STATE_COUNTRY_FOUND, NULL),
James Ketrenos2c86c272005-03-23 17:32:29 -06002253 IPW2100_HANDLER(IPW_STATE_ASSOCIATED, isr_indicate_associated),
2254 IPW2100_HANDLER(IPW_STATE_ASSN_LOST, isr_indicate_association_lost),
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01002255 IPW2100_HANDLER(IPW_STATE_ASSN_CHANGED, NULL),
James Ketrenos2c86c272005-03-23 17:32:29 -06002256 IPW2100_HANDLER(IPW_STATE_SCAN_COMPLETE, isr_scan_complete),
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01002257 IPW2100_HANDLER(IPW_STATE_ENTERED_PSP, NULL),
2258 IPW2100_HANDLER(IPW_STATE_LEFT_PSP, NULL),
James Ketrenos2c86c272005-03-23 17:32:29 -06002259 IPW2100_HANDLER(IPW_STATE_RF_KILL, isr_indicate_rf_kill),
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01002260 IPW2100_HANDLER(IPW_STATE_DISABLED, NULL),
2261 IPW2100_HANDLER(IPW_STATE_POWER_DOWN, NULL),
James Ketrenos2c86c272005-03-23 17:32:29 -06002262 IPW2100_HANDLER(IPW_STATE_SCANNING, isr_indicate_scanning),
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01002263 IPW2100_HANDLER(-1, NULL)
James Ketrenos2c86c272005-03-23 17:32:29 -06002264};
2265
James Ketrenos2c86c272005-03-23 17:32:29 -06002266static void isr_status_change(struct ipw2100_priv *priv, int status)
2267{
2268 int i;
2269
2270 if (status == IPW_STATE_SCANNING &&
2271 priv->status & STATUS_ASSOCIATED &&
2272 !(priv->status & STATUS_SCANNING)) {
2273 IPW_DEBUG_INFO("Scan detected while associated, with "
2274 "no scan request. Restarting firmware.\n");
2275
2276 /* Wake up any sleeping jobs */
2277 schedule_reset(priv);
2278 }
2279
2280 for (i = 0; status_handlers[i].status != -1; i++) {
2281 if (status == status_handlers[i].status) {
2282 IPW_DEBUG_NOTIF("Status change: %s\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05002283 status_handlers[i].name);
James Ketrenos2c86c272005-03-23 17:32:29 -06002284 if (status_handlers[i].cb)
2285 status_handlers[i].cb(priv, status);
2286 priv->wstats.status = status;
2287 return;
2288 }
2289 }
2290
2291 IPW_DEBUG_NOTIF("unknown status received: %04x\n", status);
2292}
2293
James Ketrenosee8e3652005-09-14 09:47:29 -05002294static void isr_rx_complete_command(struct ipw2100_priv *priv,
2295 struct ipw2100_cmd_header *cmd)
James Ketrenos2c86c272005-03-23 17:32:29 -06002296{
Brice Goglin0f52bf92005-12-01 01:41:46 -08002297#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06002298 if (cmd->host_command_reg < ARRAY_SIZE(command_types)) {
2299 IPW_DEBUG_HC("Command completed '%s (%d)'\n",
2300 command_types[cmd->host_command_reg],
2301 cmd->host_command_reg);
2302 }
2303#endif
2304 if (cmd->host_command_reg == HOST_COMPLETE)
2305 priv->status |= STATUS_ENABLED;
2306
2307 if (cmd->host_command_reg == CARD_DISABLE)
2308 priv->status &= ~STATUS_ENABLED;
2309
2310 priv->status &= ~STATUS_CMD_ACTIVE;
2311
2312 wake_up_interruptible(&priv->wait_command_queue);
2313}
2314
Brice Goglin0f52bf92005-12-01 01:41:46 -08002315#ifdef CONFIG_IPW2100_DEBUG
Jiri Bencc4aee8c2005-08-25 20:04:43 -04002316static const char *frame_types[] = {
James Ketrenos2c86c272005-03-23 17:32:29 -06002317 "COMMAND_STATUS_VAL",
2318 "STATUS_CHANGE_VAL",
2319 "P80211_DATA_VAL",
2320 "P8023_DATA_VAL",
2321 "HOST_NOTIFICATION_VAL"
2322};
2323#endif
2324
Arjan van de Ven858119e2006-01-14 13:20:43 -08002325static int ipw2100_alloc_skb(struct ipw2100_priv *priv,
James Ketrenosee8e3652005-09-14 09:47:29 -05002326 struct ipw2100_rx_packet *packet)
James Ketrenos2c86c272005-03-23 17:32:29 -06002327{
2328 packet->skb = dev_alloc_skb(sizeof(struct ipw2100_rx));
2329 if (!packet->skb)
2330 return -ENOMEM;
2331
2332 packet->rxp = (struct ipw2100_rx *)packet->skb->data;
2333 packet->dma_addr = pci_map_single(priv->pci_dev, packet->skb->data,
2334 sizeof(struct ipw2100_rx),
2335 PCI_DMA_FROMDEVICE);
2336 /* NOTE: pci_map_single does not return an error code, and 0 is a valid
2337 * dma_addr */
2338
2339 return 0;
2340}
2341
James Ketrenos2c86c272005-03-23 17:32:29 -06002342#define SEARCH_ERROR 0xffffffff
2343#define SEARCH_FAIL 0xfffffffe
2344#define SEARCH_SUCCESS 0xfffffff0
2345#define SEARCH_DISCARD 0
2346#define SEARCH_SNAPSHOT 1
2347
2348#define SNAPSHOT_ADDR(ofs) (priv->snapshot[((ofs) >> 12) & 0xff] + ((ofs) & 0xfff))
Zhu Yi3c5eca52006-01-24 13:49:26 +08002349static void ipw2100_snapshot_free(struct ipw2100_priv *priv)
2350{
2351 int i;
2352 if (!priv->snapshot[0])
2353 return;
2354 for (i = 0; i < 0x30; i++)
2355 kfree(priv->snapshot[i]);
2356 priv->snapshot[0] = NULL;
2357}
2358
Robert P. J. Dayae800312007-01-31 02:39:40 -05002359#ifdef IPW2100_DEBUG_C3
Arjan van de Ven858119e2006-01-14 13:20:43 -08002360static int ipw2100_snapshot_alloc(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06002361{
2362 int i;
2363 if (priv->snapshot[0])
2364 return 1;
2365 for (i = 0; i < 0x30; i++) {
Robert P. J. Day5cbded52006-12-13 00:35:56 -08002366 priv->snapshot[i] = kmalloc(0x1000, GFP_ATOMIC);
James Ketrenos2c86c272005-03-23 17:32:29 -06002367 if (!priv->snapshot[i]) {
2368 IPW_DEBUG_INFO("%s: Error allocating snapshot "
James Ketrenosee8e3652005-09-14 09:47:29 -05002369 "buffer %d\n", priv->net_dev->name, i);
James Ketrenos2c86c272005-03-23 17:32:29 -06002370 while (i > 0)
2371 kfree(priv->snapshot[--i]);
2372 priv->snapshot[0] = NULL;
2373 return 0;
2374 }
2375 }
2376
2377 return 1;
2378}
2379
Arjan van de Ven858119e2006-01-14 13:20:43 -08002380static u32 ipw2100_match_buf(struct ipw2100_priv *priv, u8 * in_buf,
James Ketrenos2c86c272005-03-23 17:32:29 -06002381 size_t len, int mode)
2382{
2383 u32 i, j;
2384 u32 tmp;
2385 u8 *s, *d;
2386 u32 ret;
2387
2388 s = in_buf;
2389 if (mode == SEARCH_SNAPSHOT) {
2390 if (!ipw2100_snapshot_alloc(priv))
2391 mode = SEARCH_DISCARD;
2392 }
2393
2394 for (ret = SEARCH_FAIL, i = 0; i < 0x30000; i += 4) {
2395 read_nic_dword(priv->net_dev, i, &tmp);
2396 if (mode == SEARCH_SNAPSHOT)
James Ketrenosee8e3652005-09-14 09:47:29 -05002397 *(u32 *) SNAPSHOT_ADDR(i) = tmp;
James Ketrenos2c86c272005-03-23 17:32:29 -06002398 if (ret == SEARCH_FAIL) {
James Ketrenosee8e3652005-09-14 09:47:29 -05002399 d = (u8 *) & tmp;
James Ketrenos2c86c272005-03-23 17:32:29 -06002400 for (j = 0; j < 4; j++) {
2401 if (*s != *d) {
2402 s = in_buf;
2403 continue;
2404 }
2405
2406 s++;
2407 d++;
2408
2409 if ((s - in_buf) == len)
2410 ret = (i + j) - len + 1;
2411 }
2412 } else if (mode == SEARCH_DISCARD)
2413 return ret;
2414 }
2415
2416 return ret;
2417}
Zhu Yi3c5eca52006-01-24 13:49:26 +08002418#endif
James Ketrenos2c86c272005-03-23 17:32:29 -06002419
2420/*
2421 *
2422 * 0) Disconnect the SKB from the firmware (just unmap)
2423 * 1) Pack the ETH header into the SKB
2424 * 2) Pass the SKB to the network stack
2425 *
2426 * When packet is provided by the firmware, it contains the following:
2427 *
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04002428 * . libipw_hdr
2429 * . libipw_snap_hdr
James Ketrenos2c86c272005-03-23 17:32:29 -06002430 *
2431 * The size of the constructed ethernet
2432 *
2433 */
Robert P. J. Dayae800312007-01-31 02:39:40 -05002434#ifdef IPW2100_RX_DEBUG
Jiri Bencc4aee8c2005-08-25 20:04:43 -04002435static u8 packet_data[IPW_RX_NIC_BUFFER_LENGTH];
James Ketrenos2c86c272005-03-23 17:32:29 -06002436#endif
2437
Arjan van de Ven858119e2006-01-14 13:20:43 -08002438static void ipw2100_corruption_detected(struct ipw2100_priv *priv, int i)
James Ketrenos2c86c272005-03-23 17:32:29 -06002439{
Robert P. J. Dayae800312007-01-31 02:39:40 -05002440#ifdef IPW2100_DEBUG_C3
James Ketrenos2c86c272005-03-23 17:32:29 -06002441 struct ipw2100_status *status = &priv->status_queue.drv[i];
2442 u32 match, reg;
2443 int j;
2444#endif
James Ketrenos2c86c272005-03-23 17:32:29 -06002445
Zhu Yia1e695a2005-07-04 14:06:00 +08002446 IPW_DEBUG_INFO(": PCI latency error detected at 0x%04zX.\n",
2447 i * sizeof(struct ipw2100_status));
James Ketrenos2c86c272005-03-23 17:32:29 -06002448
Robert P. J. Dayae800312007-01-31 02:39:40 -05002449#ifdef IPW2100_DEBUG_C3
Nick Andrew877d0312009-01-26 11:06:57 +01002450 /* Halt the firmware so we can get a good image */
James Ketrenos2c86c272005-03-23 17:32:29 -06002451 write_register(priv->net_dev, IPW_REG_RESET_REG,
2452 IPW_AUX_HOST_RESET_REG_STOP_MASTER);
2453 j = 5;
2454 do {
2455 udelay(IPW_WAIT_RESET_MASTER_ASSERT_COMPLETE_DELAY);
2456 read_register(priv->net_dev, IPW_REG_RESET_REG, &reg);
2457
2458 if (reg & IPW_AUX_HOST_RESET_REG_MASTER_DISABLED)
2459 break;
James Ketrenosee8e3652005-09-14 09:47:29 -05002460 } while (j--);
James Ketrenos2c86c272005-03-23 17:32:29 -06002461
James Ketrenosee8e3652005-09-14 09:47:29 -05002462 match = ipw2100_match_buf(priv, (u8 *) status,
James Ketrenos2c86c272005-03-23 17:32:29 -06002463 sizeof(struct ipw2100_status),
2464 SEARCH_SNAPSHOT);
2465 if (match < SEARCH_SUCCESS)
2466 IPW_DEBUG_INFO("%s: DMA status match in Firmware at "
2467 "offset 0x%06X, length %d:\n",
2468 priv->net_dev->name, match,
2469 sizeof(struct ipw2100_status));
2470 else
2471 IPW_DEBUG_INFO("%s: No DMA status match in "
2472 "Firmware.\n", priv->net_dev->name);
2473
James Ketrenosee8e3652005-09-14 09:47:29 -05002474 printk_buf((u8 *) priv->status_queue.drv,
James Ketrenos2c86c272005-03-23 17:32:29 -06002475 sizeof(struct ipw2100_status) * RX_QUEUE_LENGTH);
2476#endif
2477
2478 priv->fatal_error = IPW2100_ERR_C3_CORRUPTION;
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00002479 priv->net_dev->stats.rx_errors++;
James Ketrenos2c86c272005-03-23 17:32:29 -06002480 schedule_reset(priv);
2481}
2482
Arjan van de Ven858119e2006-01-14 13:20:43 -08002483static void isr_rx(struct ipw2100_priv *priv, int i,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04002484 struct libipw_rx_stats *stats)
James Ketrenos2c86c272005-03-23 17:32:29 -06002485{
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00002486 struct net_device *dev = priv->net_dev;
James Ketrenos2c86c272005-03-23 17:32:29 -06002487 struct ipw2100_status *status = &priv->status_queue.drv[i];
2488 struct ipw2100_rx_packet *packet = &priv->rx_buffers[i];
2489
2490 IPW_DEBUG_RX("Handler...\n");
2491
2492 if (unlikely(status->frame_size > skb_tailroom(packet->skb))) {
2493 IPW_DEBUG_INFO("%s: frame_size (%u) > skb_tailroom (%u)!"
2494 " Dropping.\n",
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00002495 dev->name,
James Ketrenos2c86c272005-03-23 17:32:29 -06002496 status->frame_size, skb_tailroom(packet->skb));
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00002497 dev->stats.rx_errors++;
James Ketrenos2c86c272005-03-23 17:32:29 -06002498 return;
2499 }
2500
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00002501 if (unlikely(!netif_running(dev))) {
2502 dev->stats.rx_errors++;
James Ketrenos2c86c272005-03-23 17:32:29 -06002503 priv->wstats.discard.misc++;
2504 IPW_DEBUG_DROP("Dropping packet while interface is not up.\n");
2505 return;
2506 }
James Ketrenos2c86c272005-03-23 17:32:29 -06002507
2508 if (unlikely(priv->ieee->iw_mode != IW_MODE_MONITOR &&
James Ketrenosee8e3652005-09-14 09:47:29 -05002509 !(priv->status & STATUS_ASSOCIATED))) {
James Ketrenos2c86c272005-03-23 17:32:29 -06002510 IPW_DEBUG_DROP("Dropping packet while not associated.\n");
2511 priv->wstats.discard.misc++;
2512 return;
2513 }
2514
James Ketrenos2c86c272005-03-23 17:32:29 -06002515 pci_unmap_single(priv->pci_dev,
2516 packet->dma_addr,
James Ketrenosee8e3652005-09-14 09:47:29 -05002517 sizeof(struct ipw2100_rx), PCI_DMA_FROMDEVICE);
James Ketrenos2c86c272005-03-23 17:32:29 -06002518
2519 skb_put(packet->skb, status->frame_size);
2520
Robert P. J. Dayae800312007-01-31 02:39:40 -05002521#ifdef IPW2100_RX_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06002522 /* Make a copy of the frame so we can dump it to the logs if
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04002523 * libipw_rx fails */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002524 skb_copy_from_linear_data(packet->skb, packet_data,
2525 min_t(u32, status->frame_size,
2526 IPW_RX_NIC_BUFFER_LENGTH));
James Ketrenos2c86c272005-03-23 17:32:29 -06002527#endif
2528
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04002529 if (!libipw_rx(priv->ieee, packet->skb, stats)) {
Robert P. J. Dayae800312007-01-31 02:39:40 -05002530#ifdef IPW2100_RX_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06002531 IPW_DEBUG_DROP("%s: Non consumed packet:\n",
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00002532 dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06002533 printk_buf(IPW_DL_DROP, packet_data, status->frame_size);
2534#endif
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00002535 dev->stats.rx_errors++;
James Ketrenos2c86c272005-03-23 17:32:29 -06002536
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04002537 /* libipw_rx failed, so it didn't free the SKB */
James Ketrenos2c86c272005-03-23 17:32:29 -06002538 dev_kfree_skb_any(packet->skb);
2539 packet->skb = NULL;
2540 }
2541
2542 /* We need to allocate a new SKB and attach it to the RDB. */
2543 if (unlikely(ipw2100_alloc_skb(priv, packet))) {
Jiri Benc797b4f72005-08-25 20:03:27 -04002544 printk(KERN_WARNING DRV_NAME ": "
James Ketrenosee8e3652005-09-14 09:47:29 -05002545 "%s: Unable to allocate SKB onto RBD ring - disabling "
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00002546 "adapter.\n", dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06002547 /* TODO: schedule adapter shutdown */
2548 IPW_DEBUG_INFO("TODO: Shutdown adapter...\n");
2549 }
2550
2551 /* Update the RDB entry */
2552 priv->rx_queue.drv[i].host_addr = packet->dma_addr;
2553}
2554
Stefan Rompf15745a72006-02-21 18:36:17 +08002555#ifdef CONFIG_IPW2100_MONITOR
2556
2557static void isr_rx_monitor(struct ipw2100_priv *priv, int i,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04002558 struct libipw_rx_stats *stats)
Stefan Rompf15745a72006-02-21 18:36:17 +08002559{
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00002560 struct net_device *dev = priv->net_dev;
Stefan Rompf15745a72006-02-21 18:36:17 +08002561 struct ipw2100_status *status = &priv->status_queue.drv[i];
2562 struct ipw2100_rx_packet *packet = &priv->rx_buffers[i];
2563
Stefan Rompf15745a72006-02-21 18:36:17 +08002564 /* Magic struct that slots into the radiotap header -- no reason
2565 * to build this manually element by element, we can write it much
2566 * more efficiently than we can parse it. ORDER MATTERS HERE */
2567 struct ipw_rt_hdr {
2568 struct ieee80211_radiotap_header rt_hdr;
2569 s8 rt_dbmsignal; /* signal in dbM, kluged to signed */
2570 } *ipw_rt;
2571
Zhu Yicae16292006-02-21 18:41:14 +08002572 IPW_DEBUG_RX("Handler...\n");
2573
2574 if (unlikely(status->frame_size > skb_tailroom(packet->skb) -
2575 sizeof(struct ipw_rt_hdr))) {
Stefan Rompf15745a72006-02-21 18:36:17 +08002576 IPW_DEBUG_INFO("%s: frame_size (%u) > skb_tailroom (%u)!"
2577 " Dropping.\n",
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00002578 dev->name,
Zhu Yicae16292006-02-21 18:41:14 +08002579 status->frame_size,
2580 skb_tailroom(packet->skb));
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00002581 dev->stats.rx_errors++;
Stefan Rompf15745a72006-02-21 18:36:17 +08002582 return;
2583 }
2584
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00002585 if (unlikely(!netif_running(dev))) {
2586 dev->stats.rx_errors++;
Stefan Rompf15745a72006-02-21 18:36:17 +08002587 priv->wstats.discard.misc++;
2588 IPW_DEBUG_DROP("Dropping packet while interface is not up.\n");
2589 return;
2590 }
2591
2592 if (unlikely(priv->config & CFG_CRC_CHECK &&
2593 status->flags & IPW_STATUS_FLAG_CRC_ERROR)) {
2594 IPW_DEBUG_RX("CRC error in packet. Dropping.\n");
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00002595 dev->stats.rx_errors++;
Stefan Rompf15745a72006-02-21 18:36:17 +08002596 return;
2597 }
2598
Zhu Yicae16292006-02-21 18:41:14 +08002599 pci_unmap_single(priv->pci_dev, packet->dma_addr,
Stefan Rompf15745a72006-02-21 18:36:17 +08002600 sizeof(struct ipw2100_rx), PCI_DMA_FROMDEVICE);
2601 memmove(packet->skb->data + sizeof(struct ipw_rt_hdr),
2602 packet->skb->data, status->frame_size);
2603
2604 ipw_rt = (struct ipw_rt_hdr *) packet->skb->data;
2605
2606 ipw_rt->rt_hdr.it_version = PKTHDR_RADIOTAP_VERSION;
2607 ipw_rt->rt_hdr.it_pad = 0; /* always good to zero */
Al Viro1edd3a52007-12-21 00:15:18 -05002608 ipw_rt->rt_hdr.it_len = cpu_to_le16(sizeof(struct ipw_rt_hdr)); /* total hdr+data */
Stefan Rompf15745a72006-02-21 18:36:17 +08002609
Al Viro1edd3a52007-12-21 00:15:18 -05002610 ipw_rt->rt_hdr.it_present = cpu_to_le32(1 << IEEE80211_RADIOTAP_DBM_ANTSIGNAL);
Stefan Rompf15745a72006-02-21 18:36:17 +08002611
2612 ipw_rt->rt_dbmsignal = status->rssi + IPW2100_RSSI_TO_DBM;
2613
2614 skb_put(packet->skb, status->frame_size + sizeof(struct ipw_rt_hdr));
2615
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04002616 if (!libipw_rx(priv->ieee, packet->skb, stats)) {
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00002617 dev->stats.rx_errors++;
Stefan Rompf15745a72006-02-21 18:36:17 +08002618
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04002619 /* libipw_rx failed, so it didn't free the SKB */
Stefan Rompf15745a72006-02-21 18:36:17 +08002620 dev_kfree_skb_any(packet->skb);
2621 packet->skb = NULL;
2622 }
2623
2624 /* We need to allocate a new SKB and attach it to the RDB. */
2625 if (unlikely(ipw2100_alloc_skb(priv, packet))) {
2626 IPW_DEBUG_WARNING(
2627 "%s: Unable to allocate SKB onto RBD ring - disabling "
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00002628 "adapter.\n", dev->name);
Stefan Rompf15745a72006-02-21 18:36:17 +08002629 /* TODO: schedule adapter shutdown */
2630 IPW_DEBUG_INFO("TODO: Shutdown adapter...\n");
2631 }
2632
2633 /* Update the RDB entry */
2634 priv->rx_queue.drv[i].host_addr = packet->dma_addr;
2635}
2636
2637#endif
2638
Arjan van de Ven858119e2006-01-14 13:20:43 -08002639static int ipw2100_corruption_check(struct ipw2100_priv *priv, int i)
James Ketrenos2c86c272005-03-23 17:32:29 -06002640{
2641 struct ipw2100_status *status = &priv->status_queue.drv[i];
2642 struct ipw2100_rx *u = priv->rx_buffers[i].rxp;
2643 u16 frame_type = status->status_fields & STATUS_TYPE_MASK;
2644
2645 switch (frame_type) {
2646 case COMMAND_STATUS_VAL:
2647 return (status->frame_size != sizeof(u->rx_data.command));
2648 case STATUS_CHANGE_VAL:
2649 return (status->frame_size != sizeof(u->rx_data.status));
2650 case HOST_NOTIFICATION_VAL:
2651 return (status->frame_size < sizeof(u->rx_data.notification));
2652 case P80211_DATA_VAL:
2653 case P8023_DATA_VAL:
2654#ifdef CONFIG_IPW2100_MONITOR
2655 return 0;
2656#else
Al Viro1edd3a52007-12-21 00:15:18 -05002657 switch (WLAN_FC_GET_TYPE(le16_to_cpu(u->rx_data.header.frame_ctl))) {
James Ketrenos2c86c272005-03-23 17:32:29 -06002658 case IEEE80211_FTYPE_MGMT:
2659 case IEEE80211_FTYPE_CTL:
2660 return 0;
2661 case IEEE80211_FTYPE_DATA:
2662 return (status->frame_size >
2663 IPW_MAX_802_11_PAYLOAD_LENGTH);
2664 }
2665#endif
2666 }
2667
2668 return 1;
2669}
2670
2671/*
2672 * ipw2100 interrupts are disabled at this point, and the ISR
2673 * is the only code that calls this method. So, we do not need
2674 * to play with any locks.
2675 *
2676 * RX Queue works as follows:
2677 *
2678 * Read index - firmware places packet in entry identified by the
2679 * Read index and advances Read index. In this manner,
2680 * Read index will always point to the next packet to
2681 * be filled--but not yet valid.
2682 *
2683 * Write index - driver fills this entry with an unused RBD entry.
2684 * This entry has not filled by the firmware yet.
2685 *
2686 * In between the W and R indexes are the RBDs that have been received
2687 * but not yet processed.
2688 *
2689 * The process of handling packets will start at WRITE + 1 and advance
2690 * until it reaches the READ index.
2691 *
2692 * The WRITE index is cached in the variable 'priv->rx_queue.next'.
2693 *
2694 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002695static void __ipw2100_rx_process(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06002696{
2697 struct ipw2100_bd_queue *rxq = &priv->rx_queue;
2698 struct ipw2100_status_queue *sq = &priv->status_queue;
2699 struct ipw2100_rx_packet *packet;
2700 u16 frame_type;
2701 u32 r, w, i, s;
2702 struct ipw2100_rx *u;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04002703 struct libipw_rx_stats stats = {
James Ketrenos2c86c272005-03-23 17:32:29 -06002704 .mac_time = jiffies,
2705 };
2706
2707 read_register(priv->net_dev, IPW_MEM_HOST_SHARED_RX_READ_INDEX, &r);
2708 read_register(priv->net_dev, IPW_MEM_HOST_SHARED_RX_WRITE_INDEX, &w);
2709
2710 if (r >= rxq->entries) {
2711 IPW_DEBUG_RX("exit - bad read index\n");
2712 return;
2713 }
2714
2715 i = (rxq->next + 1) % rxq->entries;
2716 s = i;
2717 while (i != r) {
2718 /* IPW_DEBUG_RX("r = %d : w = %d : processing = %d\n",
2719 r, rxq->next, i); */
2720
2721 packet = &priv->rx_buffers[i];
2722
James Ketrenos2c86c272005-03-23 17:32:29 -06002723 /* Sync the DMA for the RX buffer so CPU is sure to get
2724 * the correct values */
2725 pci_dma_sync_single_for_cpu(priv->pci_dev, packet->dma_addr,
2726 sizeof(struct ipw2100_rx),
2727 PCI_DMA_FROMDEVICE);
2728
2729 if (unlikely(ipw2100_corruption_check(priv, i))) {
2730 ipw2100_corruption_detected(priv, i);
2731 goto increment;
2732 }
2733
2734 u = packet->rxp;
James Ketrenosee8e3652005-09-14 09:47:29 -05002735 frame_type = sq->drv[i].status_fields & STATUS_TYPE_MASK;
James Ketrenos2c86c272005-03-23 17:32:29 -06002736 stats.rssi = sq->drv[i].rssi + IPW2100_RSSI_TO_DBM;
2737 stats.len = sq->drv[i].frame_size;
2738
2739 stats.mask = 0;
2740 if (stats.rssi != 0)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04002741 stats.mask |= LIBIPW_STATMASK_RSSI;
2742 stats.freq = LIBIPW_24GHZ_BAND;
James Ketrenos2c86c272005-03-23 17:32:29 -06002743
James Ketrenosee8e3652005-09-14 09:47:29 -05002744 IPW_DEBUG_RX("%s: '%s' frame type received (%d).\n",
2745 priv->net_dev->name, frame_types[frame_type],
2746 stats.len);
James Ketrenos2c86c272005-03-23 17:32:29 -06002747
2748 switch (frame_type) {
2749 case COMMAND_STATUS_VAL:
2750 /* Reset Rx watchdog */
James Ketrenosee8e3652005-09-14 09:47:29 -05002751 isr_rx_complete_command(priv, &u->rx_data.command);
James Ketrenos2c86c272005-03-23 17:32:29 -06002752 break;
2753
2754 case STATUS_CHANGE_VAL:
2755 isr_status_change(priv, u->rx_data.status);
2756 break;
2757
2758 case P80211_DATA_VAL:
2759 case P8023_DATA_VAL:
2760#ifdef CONFIG_IPW2100_MONITOR
2761 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
Stefan Rompf15745a72006-02-21 18:36:17 +08002762 isr_rx_monitor(priv, i, &stats);
James Ketrenos2c86c272005-03-23 17:32:29 -06002763 break;
2764 }
2765#endif
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04002766 if (stats.len < sizeof(struct libipw_hdr_3addr))
James Ketrenos2c86c272005-03-23 17:32:29 -06002767 break;
Al Viro1edd3a52007-12-21 00:15:18 -05002768 switch (WLAN_FC_GET_TYPE(le16_to_cpu(u->rx_data.header.frame_ctl))) {
James Ketrenos2c86c272005-03-23 17:32:29 -06002769 case IEEE80211_FTYPE_MGMT:
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04002770 libipw_rx_mgt(priv->ieee,
James Ketrenosee8e3652005-09-14 09:47:29 -05002771 &u->rx_data.header, &stats);
James Ketrenos2c86c272005-03-23 17:32:29 -06002772 break;
2773
2774 case IEEE80211_FTYPE_CTL:
2775 break;
2776
2777 case IEEE80211_FTYPE_DATA:
2778 isr_rx(priv, i, &stats);
2779 break;
2780
2781 }
2782 break;
2783 }
2784
James Ketrenosee8e3652005-09-14 09:47:29 -05002785 increment:
James Ketrenos2c86c272005-03-23 17:32:29 -06002786 /* clear status field associated with this RBD */
2787 rxq->drv[i].status.info.field = 0;
2788
2789 i = (i + 1) % rxq->entries;
2790 }
2791
2792 if (i != s) {
2793 /* backtrack one entry, wrapping to end if at 0 */
2794 rxq->next = (i ? i : rxq->entries) - 1;
2795
2796 write_register(priv->net_dev,
James Ketrenosee8e3652005-09-14 09:47:29 -05002797 IPW_MEM_HOST_SHARED_RX_WRITE_INDEX, rxq->next);
James Ketrenos2c86c272005-03-23 17:32:29 -06002798 }
2799}
2800
James Ketrenos2c86c272005-03-23 17:32:29 -06002801/*
2802 * __ipw2100_tx_process
2803 *
2804 * This routine will determine whether the next packet on
2805 * the fw_pend_list has been processed by the firmware yet.
2806 *
2807 * If not, then it does nothing and returns.
2808 *
2809 * If so, then it removes the item from the fw_pend_list, frees
2810 * any associated storage, and places the item back on the
2811 * free list of its source (either msg_free_list or tx_free_list)
2812 *
2813 * TX Queue works as follows:
2814 *
2815 * Read index - points to the next TBD that the firmware will
2816 * process. The firmware will read the data, and once
2817 * done processing, it will advance the Read index.
2818 *
2819 * Write index - driver fills this entry with an constructed TBD
2820 * entry. The Write index is not advanced until the
2821 * packet has been configured.
2822 *
2823 * In between the W and R indexes are the TBDs that have NOT been
2824 * processed. Lagging behind the R index are packets that have
2825 * been processed but have not been freed by the driver.
2826 *
2827 * In order to free old storage, an internal index will be maintained
2828 * that points to the next packet to be freed. When all used
2829 * packets have been freed, the oldest index will be the same as the
2830 * firmware's read index.
2831 *
2832 * The OLDEST index is cached in the variable 'priv->tx_queue.oldest'
2833 *
2834 * Because the TBD structure can not contain arbitrary data, the
2835 * driver must keep an internal queue of cached allocations such that
2836 * it can put that data back into the tx_free_list and msg_free_list
2837 * for use by future command and data packets.
2838 *
2839 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002840static int __ipw2100_tx_process(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06002841{
2842 struct ipw2100_bd_queue *txq = &priv->tx_queue;
James Ketrenosee8e3652005-09-14 09:47:29 -05002843 struct ipw2100_bd *tbd;
James Ketrenos2c86c272005-03-23 17:32:29 -06002844 struct list_head *element;
2845 struct ipw2100_tx_packet *packet;
2846 int descriptors_used;
2847 int e, i;
2848 u32 r, w, frag_num = 0;
2849
2850 if (list_empty(&priv->fw_pend_list))
2851 return 0;
2852
2853 element = priv->fw_pend_list.next;
2854
2855 packet = list_entry(element, struct ipw2100_tx_packet, list);
James Ketrenosee8e3652005-09-14 09:47:29 -05002856 tbd = &txq->drv[packet->index];
James Ketrenos2c86c272005-03-23 17:32:29 -06002857
2858 /* Determine how many TBD entries must be finished... */
2859 switch (packet->type) {
2860 case COMMAND:
2861 /* COMMAND uses only one slot; don't advance */
2862 descriptors_used = 1;
2863 e = txq->oldest;
2864 break;
2865
2866 case DATA:
2867 /* DATA uses two slots; advance and loop position. */
2868 descriptors_used = tbd->num_fragments;
James Ketrenosee8e3652005-09-14 09:47:29 -05002869 frag_num = tbd->num_fragments - 1;
James Ketrenos2c86c272005-03-23 17:32:29 -06002870 e = txq->oldest + frag_num;
2871 e %= txq->entries;
2872 break;
2873
2874 default:
Jiri Benc797b4f72005-08-25 20:03:27 -04002875 printk(KERN_WARNING DRV_NAME ": %s: Bad fw_pend_list entry!\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05002876 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06002877 return 0;
2878 }
2879
2880 /* if the last TBD is not done by NIC yet, then packet is
2881 * not ready to be released.
2882 *
2883 */
2884 read_register(priv->net_dev, IPW_MEM_HOST_SHARED_TX_QUEUE_READ_INDEX,
2885 &r);
2886 read_register(priv->net_dev, IPW_MEM_HOST_SHARED_TX_QUEUE_WRITE_INDEX,
2887 &w);
2888 if (w != txq->next)
Jiri Benc797b4f72005-08-25 20:03:27 -04002889 printk(KERN_WARNING DRV_NAME ": %s: write index mismatch\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06002890 priv->net_dev->name);
2891
James Ketrenosee8e3652005-09-14 09:47:29 -05002892 /*
James Ketrenos2c86c272005-03-23 17:32:29 -06002893 * txq->next is the index of the last packet written txq->oldest is
2894 * the index of the r is the index of the next packet to be read by
2895 * firmware
2896 */
2897
James Ketrenos2c86c272005-03-23 17:32:29 -06002898 /*
2899 * Quick graphic to help you visualize the following
2900 * if / else statement
2901 *
2902 * ===>| s---->|===============
2903 * e>|
2904 * | a | b | c | d | e | f | g | h | i | j | k | l
2905 * r---->|
2906 * w
2907 *
2908 * w - updated by driver
2909 * r - updated by firmware
2910 * s - start of oldest BD entry (txq->oldest)
2911 * e - end of oldest BD entry
2912 *
2913 */
2914 if (!((r <= w && (e < r || e >= w)) || (e < r && e >= w))) {
2915 IPW_DEBUG_TX("exit - no processed packets ready to release.\n");
2916 return 0;
2917 }
2918
2919 list_del(element);
2920 DEC_STAT(&priv->fw_pend_stat);
2921
Brice Goglin0f52bf92005-12-01 01:41:46 -08002922#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06002923 {
Reinette Chatre21f8a732009-08-18 10:25:05 -07002924 i = txq->oldest;
James Ketrenosee8e3652005-09-14 09:47:29 -05002925 IPW_DEBUG_TX("TX%d V=%p P=%04X T=%04X L=%d\n", i,
2926 &txq->drv[i],
2927 (u32) (txq->nic + i * sizeof(struct ipw2100_bd)),
2928 txq->drv[i].host_addr, txq->drv[i].buf_length);
James Ketrenos2c86c272005-03-23 17:32:29 -06002929
2930 if (packet->type == DATA) {
2931 i = (i + 1) % txq->entries;
2932
James Ketrenosee8e3652005-09-14 09:47:29 -05002933 IPW_DEBUG_TX("TX%d V=%p P=%04X T=%04X L=%d\n", i,
2934 &txq->drv[i],
2935 (u32) (txq->nic + i *
2936 sizeof(struct ipw2100_bd)),
2937 (u32) txq->drv[i].host_addr,
2938 txq->drv[i].buf_length);
James Ketrenos2c86c272005-03-23 17:32:29 -06002939 }
2940 }
2941#endif
2942
2943 switch (packet->type) {
2944 case DATA:
2945 if (txq->drv[txq->oldest].status.info.fields.txType != 0)
Jiri Benc797b4f72005-08-25 20:03:27 -04002946 printk(KERN_WARNING DRV_NAME ": %s: Queue mismatch. "
James Ketrenos2c86c272005-03-23 17:32:29 -06002947 "Expecting DATA TBD but pulled "
2948 "something else: ids %d=%d.\n",
2949 priv->net_dev->name, txq->oldest, packet->index);
2950
2951 /* DATA packet; we have to unmap and free the SKB */
James Ketrenos2c86c272005-03-23 17:32:29 -06002952 for (i = 0; i < frag_num; i++) {
James Ketrenosee8e3652005-09-14 09:47:29 -05002953 tbd = &txq->drv[(packet->index + 1 + i) % txq->entries];
James Ketrenos2c86c272005-03-23 17:32:29 -06002954
James Ketrenosee8e3652005-09-14 09:47:29 -05002955 IPW_DEBUG_TX("TX%d P=%08x L=%d\n",
2956 (packet->index + 1 + i) % txq->entries,
2957 tbd->host_addr, tbd->buf_length);
James Ketrenos2c86c272005-03-23 17:32:29 -06002958
2959 pci_unmap_single(priv->pci_dev,
2960 tbd->host_addr,
James Ketrenosee8e3652005-09-14 09:47:29 -05002961 tbd->buf_length, PCI_DMA_TODEVICE);
James Ketrenos2c86c272005-03-23 17:32:29 -06002962 }
2963
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04002964 libipw_txb_free(packet->info.d_struct.txb);
James Ketrenos2c86c272005-03-23 17:32:29 -06002965 packet->info.d_struct.txb = NULL;
2966
2967 list_add_tail(element, &priv->tx_free_list);
2968 INC_STAT(&priv->tx_free_stat);
2969
2970 /* We have a free slot in the Tx queue, so wake up the
2971 * transmit layer if it is stopped. */
James Ketrenos82328352005-08-24 22:33:31 -05002972 if (priv->status & STATUS_ASSOCIATED)
James Ketrenos2c86c272005-03-23 17:32:29 -06002973 netif_wake_queue(priv->net_dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06002974
2975 /* A packet was processed by the hardware, so update the
2976 * watchdog */
2977 priv->net_dev->trans_start = jiffies;
2978
2979 break;
2980
2981 case COMMAND:
2982 if (txq->drv[txq->oldest].status.info.fields.txType != 1)
Jiri Benc797b4f72005-08-25 20:03:27 -04002983 printk(KERN_WARNING DRV_NAME ": %s: Queue mismatch. "
James Ketrenos2c86c272005-03-23 17:32:29 -06002984 "Expecting COMMAND TBD but pulled "
2985 "something else: ids %d=%d.\n",
2986 priv->net_dev->name, txq->oldest, packet->index);
2987
Brice Goglin0f52bf92005-12-01 01:41:46 -08002988#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06002989 if (packet->info.c_struct.cmd->host_command_reg <
Ahmed S. Darwish22d57432007-02-05 18:56:22 +02002990 ARRAY_SIZE(command_types))
James Ketrenosee8e3652005-09-14 09:47:29 -05002991 IPW_DEBUG_TX("Command '%s (%d)' processed: %d.\n",
2992 command_types[packet->info.c_struct.cmd->
2993 host_command_reg],
2994 packet->info.c_struct.cmd->
2995 host_command_reg,
2996 packet->info.c_struct.cmd->cmd_status_reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06002997#endif
2998
2999 list_add_tail(element, &priv->msg_free_list);
3000 INC_STAT(&priv->msg_free_stat);
3001 break;
3002 }
3003
3004 /* advance oldest used TBD pointer to start of next entry */
3005 txq->oldest = (e + 1) % txq->entries;
3006 /* increase available TBDs number */
3007 txq->available += descriptors_used;
3008 SET_STAT(&priv->txq_stat, txq->available);
3009
3010 IPW_DEBUG_TX("packet latency (send to process) %ld jiffies\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05003011 jiffies - packet->jiffy_start);
James Ketrenos2c86c272005-03-23 17:32:29 -06003012
3013 return (!list_empty(&priv->fw_pend_list));
3014}
3015
James Ketrenos2c86c272005-03-23 17:32:29 -06003016static inline void __ipw2100_tx_complete(struct ipw2100_priv *priv)
3017{
3018 int i = 0;
3019
James Ketrenosee8e3652005-09-14 09:47:29 -05003020 while (__ipw2100_tx_process(priv) && i < 200)
3021 i++;
James Ketrenos2c86c272005-03-23 17:32:29 -06003022
3023 if (i == 200) {
Jiri Benc19f7f742005-08-25 20:02:10 -04003024 printk(KERN_WARNING DRV_NAME ": "
James Ketrenos2c86c272005-03-23 17:32:29 -06003025 "%s: Driver is running slow (%d iters).\n",
3026 priv->net_dev->name, i);
3027 }
3028}
3029
Jiri Benc19f7f742005-08-25 20:02:10 -04003030static void ipw2100_tx_send_commands(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06003031{
3032 struct list_head *element;
3033 struct ipw2100_tx_packet *packet;
3034 struct ipw2100_bd_queue *txq = &priv->tx_queue;
3035 struct ipw2100_bd *tbd;
3036 int next = txq->next;
3037
3038 while (!list_empty(&priv->msg_pend_list)) {
3039 /* if there isn't enough space in TBD queue, then
3040 * don't stuff a new one in.
3041 * NOTE: 3 are needed as a command will take one,
3042 * and there is a minimum of 2 that must be
3043 * maintained between the r and w indexes
3044 */
3045 if (txq->available <= 3) {
3046 IPW_DEBUG_TX("no room in tx_queue\n");
3047 break;
3048 }
3049
3050 element = priv->msg_pend_list.next;
3051 list_del(element);
3052 DEC_STAT(&priv->msg_pend_stat);
3053
James Ketrenosee8e3652005-09-14 09:47:29 -05003054 packet = list_entry(element, struct ipw2100_tx_packet, list);
James Ketrenos2c86c272005-03-23 17:32:29 -06003055
John W. Linvilleaa0d52c2010-08-10 13:08:11 -04003056 IPW_DEBUG_TX("using TBD at virt=%p, phys=%04X\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05003057 &txq->drv[txq->next],
John W. Linvilleaa0d52c2010-08-10 13:08:11 -04003058 (u32) (txq->nic + txq->next *
James Ketrenosee8e3652005-09-14 09:47:29 -05003059 sizeof(struct ipw2100_bd)));
James Ketrenos2c86c272005-03-23 17:32:29 -06003060
3061 packet->index = txq->next;
3062
3063 tbd = &txq->drv[txq->next];
3064
3065 /* initialize TBD */
3066 tbd->host_addr = packet->info.c_struct.cmd_phys;
3067 tbd->buf_length = sizeof(struct ipw2100_cmd_header);
3068 /* not marking number of fragments causes problems
3069 * with f/w debug version */
3070 tbd->num_fragments = 1;
3071 tbd->status.info.field =
James Ketrenosee8e3652005-09-14 09:47:29 -05003072 IPW_BD_STATUS_TX_FRAME_COMMAND |
3073 IPW_BD_STATUS_TX_INTERRUPT_ENABLE;
James Ketrenos2c86c272005-03-23 17:32:29 -06003074
3075 /* update TBD queue counters */
3076 txq->next++;
3077 txq->next %= txq->entries;
3078 txq->available--;
3079 DEC_STAT(&priv->txq_stat);
3080
3081 list_add_tail(element, &priv->fw_pend_list);
3082 INC_STAT(&priv->fw_pend_stat);
3083 }
3084
3085 if (txq->next != next) {
3086 /* kick off the DMA by notifying firmware the
3087 * write index has moved; make sure TBD stores are sync'd */
3088 wmb();
3089 write_register(priv->net_dev,
3090 IPW_MEM_HOST_SHARED_TX_QUEUE_WRITE_INDEX,
3091 txq->next);
3092 }
3093}
3094
James Ketrenos2c86c272005-03-23 17:32:29 -06003095/*
Jiri Benc19f7f742005-08-25 20:02:10 -04003096 * ipw2100_tx_send_data
James Ketrenos2c86c272005-03-23 17:32:29 -06003097 *
3098 */
Jiri Benc19f7f742005-08-25 20:02:10 -04003099static void ipw2100_tx_send_data(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06003100{
3101 struct list_head *element;
3102 struct ipw2100_tx_packet *packet;
3103 struct ipw2100_bd_queue *txq = &priv->tx_queue;
3104 struct ipw2100_bd *tbd;
3105 int next = txq->next;
James Ketrenosee8e3652005-09-14 09:47:29 -05003106 int i = 0;
James Ketrenos2c86c272005-03-23 17:32:29 -06003107 struct ipw2100_data_header *ipw_hdr;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04003108 struct libipw_hdr_3addr *hdr;
James Ketrenos2c86c272005-03-23 17:32:29 -06003109
3110 while (!list_empty(&priv->tx_pend_list)) {
3111 /* if there isn't enough space in TBD queue, then
3112 * don't stuff a new one in.
3113 * NOTE: 4 are needed as a data will take two,
3114 * and there is a minimum of 2 that must be
3115 * maintained between the r and w indexes
3116 */
3117 element = priv->tx_pend_list.next;
James Ketrenosee8e3652005-09-14 09:47:29 -05003118 packet = list_entry(element, struct ipw2100_tx_packet, list);
James Ketrenos2c86c272005-03-23 17:32:29 -06003119
3120 if (unlikely(1 + packet->info.d_struct.txb->nr_frags >
3121 IPW_MAX_BDS)) {
3122 /* TODO: Support merging buffers if more than
3123 * IPW_MAX_BDS are used */
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02003124 IPW_DEBUG_INFO("%s: Maximum BD threshold exceeded. "
James Ketrenosee8e3652005-09-14 09:47:29 -05003125 "Increase fragmentation level.\n",
3126 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06003127 }
3128
James Ketrenosee8e3652005-09-14 09:47:29 -05003129 if (txq->available <= 3 + packet->info.d_struct.txb->nr_frags) {
James Ketrenos2c86c272005-03-23 17:32:29 -06003130 IPW_DEBUG_TX("no room in tx_queue\n");
3131 break;
3132 }
3133
3134 list_del(element);
3135 DEC_STAT(&priv->tx_pend_stat);
3136
3137 tbd = &txq->drv[txq->next];
3138
3139 packet->index = txq->next;
3140
3141 ipw_hdr = packet->info.d_struct.data;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04003142 hdr = (struct libipw_hdr_3addr *)packet->info.d_struct.txb->
James Ketrenosee8e3652005-09-14 09:47:29 -05003143 fragments[0]->data;
James Ketrenos2c86c272005-03-23 17:32:29 -06003144
3145 if (priv->ieee->iw_mode == IW_MODE_INFRA) {
3146 /* To DS: Addr1 = BSSID, Addr2 = SA,
3147 Addr3 = DA */
3148 memcpy(ipw_hdr->src_addr, hdr->addr2, ETH_ALEN);
3149 memcpy(ipw_hdr->dst_addr, hdr->addr3, ETH_ALEN);
3150 } else if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
3151 /* not From/To DS: Addr1 = DA, Addr2 = SA,
3152 Addr3 = BSSID */
3153 memcpy(ipw_hdr->src_addr, hdr->addr2, ETH_ALEN);
3154 memcpy(ipw_hdr->dst_addr, hdr->addr1, ETH_ALEN);
3155 }
3156
3157 ipw_hdr->host_command_reg = SEND;
3158 ipw_hdr->host_command_reg1 = 0;
3159
3160 /* For now we only support host based encryption */
3161 ipw_hdr->needs_encryption = 0;
3162 ipw_hdr->encrypted = packet->info.d_struct.txb->encrypted;
3163 if (packet->info.d_struct.txb->nr_frags > 1)
3164 ipw_hdr->fragment_size =
James Ketrenosee8e3652005-09-14 09:47:29 -05003165 packet->info.d_struct.txb->frag_size -
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04003166 LIBIPW_3ADDR_LEN;
James Ketrenos2c86c272005-03-23 17:32:29 -06003167 else
3168 ipw_hdr->fragment_size = 0;
3169
3170 tbd->host_addr = packet->info.d_struct.data_phys;
3171 tbd->buf_length = sizeof(struct ipw2100_data_header);
3172 tbd->num_fragments = 1 + packet->info.d_struct.txb->nr_frags;
3173 tbd->status.info.field =
James Ketrenosee8e3652005-09-14 09:47:29 -05003174 IPW_BD_STATUS_TX_FRAME_802_3 |
3175 IPW_BD_STATUS_TX_FRAME_NOT_LAST_FRAGMENT;
James Ketrenos2c86c272005-03-23 17:32:29 -06003176 txq->next++;
3177 txq->next %= txq->entries;
3178
James Ketrenosee8e3652005-09-14 09:47:29 -05003179 IPW_DEBUG_TX("data header tbd TX%d P=%08x L=%d\n",
3180 packet->index, tbd->host_addr, tbd->buf_length);
Brice Goglin0f52bf92005-12-01 01:41:46 -08003181#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06003182 if (packet->info.d_struct.txb->nr_frags > 1)
3183 IPW_DEBUG_FRAG("fragment Tx: %d frames\n",
3184 packet->info.d_struct.txb->nr_frags);
3185#endif
3186
James Ketrenosee8e3652005-09-14 09:47:29 -05003187 for (i = 0; i < packet->info.d_struct.txb->nr_frags; i++) {
3188 tbd = &txq->drv[txq->next];
James Ketrenos2c86c272005-03-23 17:32:29 -06003189 if (i == packet->info.d_struct.txb->nr_frags - 1)
3190 tbd->status.info.field =
James Ketrenosee8e3652005-09-14 09:47:29 -05003191 IPW_BD_STATUS_TX_FRAME_802_3 |
3192 IPW_BD_STATUS_TX_INTERRUPT_ENABLE;
James Ketrenos2c86c272005-03-23 17:32:29 -06003193 else
3194 tbd->status.info.field =
James Ketrenosee8e3652005-09-14 09:47:29 -05003195 IPW_BD_STATUS_TX_FRAME_802_3 |
3196 IPW_BD_STATUS_TX_FRAME_NOT_LAST_FRAGMENT;
James Ketrenos2c86c272005-03-23 17:32:29 -06003197
3198 tbd->buf_length = packet->info.d_struct.txb->
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04003199 fragments[i]->len - LIBIPW_3ADDR_LEN;
James Ketrenos2c86c272005-03-23 17:32:29 -06003200
James Ketrenosee8e3652005-09-14 09:47:29 -05003201 tbd->host_addr = pci_map_single(priv->pci_dev,
3202 packet->info.d_struct.
3203 txb->fragments[i]->
3204 data +
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04003205 LIBIPW_3ADDR_LEN,
James Ketrenosee8e3652005-09-14 09:47:29 -05003206 tbd->buf_length,
3207 PCI_DMA_TODEVICE);
James Ketrenos2c86c272005-03-23 17:32:29 -06003208
James Ketrenosee8e3652005-09-14 09:47:29 -05003209 IPW_DEBUG_TX("data frag tbd TX%d P=%08x L=%d\n",
3210 txq->next, tbd->host_addr,
3211 tbd->buf_length);
James Ketrenos2c86c272005-03-23 17:32:29 -06003212
James Ketrenosee8e3652005-09-14 09:47:29 -05003213 pci_dma_sync_single_for_device(priv->pci_dev,
3214 tbd->host_addr,
3215 tbd->buf_length,
3216 PCI_DMA_TODEVICE);
James Ketrenos2c86c272005-03-23 17:32:29 -06003217
3218 txq->next++;
3219 txq->next %= txq->entries;
James Ketrenosee8e3652005-09-14 09:47:29 -05003220 }
James Ketrenos2c86c272005-03-23 17:32:29 -06003221
3222 txq->available -= 1 + packet->info.d_struct.txb->nr_frags;
3223 SET_STAT(&priv->txq_stat, txq->available);
3224
3225 list_add_tail(element, &priv->fw_pend_list);
3226 INC_STAT(&priv->fw_pend_stat);
3227 }
3228
3229 if (txq->next != next) {
3230 /* kick off the DMA by notifying firmware the
3231 * write index has moved; make sure TBD stores are sync'd */
3232 write_register(priv->net_dev,
3233 IPW_MEM_HOST_SHARED_TX_QUEUE_WRITE_INDEX,
3234 txq->next);
3235 }
James Ketrenos2c86c272005-03-23 17:32:29 -06003236}
3237
3238static void ipw2100_irq_tasklet(struct ipw2100_priv *priv)
3239{
3240 struct net_device *dev = priv->net_dev;
3241 unsigned long flags;
3242 u32 inta, tmp;
3243
3244 spin_lock_irqsave(&priv->low_lock, flags);
3245 ipw2100_disable_interrupts(priv);
3246
3247 read_register(dev, IPW_REG_INTA, &inta);
3248
3249 IPW_DEBUG_ISR("enter - INTA: 0x%08lX\n",
3250 (unsigned long)inta & IPW_INTERRUPT_MASK);
3251
3252 priv->in_isr++;
3253 priv->interrupts++;
3254
3255 /* We do not loop and keep polling for more interrupts as this
3256 * is frowned upon and doesn't play nicely with other potentially
3257 * chained IRQs */
3258 IPW_DEBUG_ISR("INTA: 0x%08lX\n",
3259 (unsigned long)inta & IPW_INTERRUPT_MASK);
3260
3261 if (inta & IPW2100_INTA_FATAL_ERROR) {
Jiri Benc797b4f72005-08-25 20:03:27 -04003262 printk(KERN_WARNING DRV_NAME
James Ketrenosee8e3652005-09-14 09:47:29 -05003263 ": Fatal interrupt. Scheduling firmware restart.\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06003264 priv->inta_other++;
James Ketrenosee8e3652005-09-14 09:47:29 -05003265 write_register(dev, IPW_REG_INTA, IPW2100_INTA_FATAL_ERROR);
James Ketrenos2c86c272005-03-23 17:32:29 -06003266
3267 read_nic_dword(dev, IPW_NIC_FATAL_ERROR, &priv->fatal_error);
3268 IPW_DEBUG_INFO("%s: Fatal error value: 0x%08X\n",
3269 priv->net_dev->name, priv->fatal_error);
3270
3271 read_nic_dword(dev, IPW_ERROR_ADDR(priv->fatal_error), &tmp);
3272 IPW_DEBUG_INFO("%s: Fatal error address value: 0x%08X\n",
3273 priv->net_dev->name, tmp);
3274
3275 /* Wake up any sleeping jobs */
3276 schedule_reset(priv);
3277 }
3278
3279 if (inta & IPW2100_INTA_PARITY_ERROR) {
James Ketrenosee8e3652005-09-14 09:47:29 -05003280 printk(KERN_ERR DRV_NAME
Frans Pop9fd1ea42010-03-24 19:46:31 +01003281 ": ***** PARITY ERROR INTERRUPT !!!!\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06003282 priv->inta_other++;
James Ketrenosee8e3652005-09-14 09:47:29 -05003283 write_register(dev, IPW_REG_INTA, IPW2100_INTA_PARITY_ERROR);
James Ketrenos2c86c272005-03-23 17:32:29 -06003284 }
3285
3286 if (inta & IPW2100_INTA_RX_TRANSFER) {
3287 IPW_DEBUG_ISR("RX interrupt\n");
3288
3289 priv->rx_interrupts++;
3290
James Ketrenosee8e3652005-09-14 09:47:29 -05003291 write_register(dev, IPW_REG_INTA, IPW2100_INTA_RX_TRANSFER);
James Ketrenos2c86c272005-03-23 17:32:29 -06003292
3293 __ipw2100_rx_process(priv);
3294 __ipw2100_tx_complete(priv);
3295 }
3296
3297 if (inta & IPW2100_INTA_TX_TRANSFER) {
3298 IPW_DEBUG_ISR("TX interrupt\n");
3299
3300 priv->tx_interrupts++;
3301
James Ketrenosee8e3652005-09-14 09:47:29 -05003302 write_register(dev, IPW_REG_INTA, IPW2100_INTA_TX_TRANSFER);
James Ketrenos2c86c272005-03-23 17:32:29 -06003303
3304 __ipw2100_tx_complete(priv);
Jiri Benc19f7f742005-08-25 20:02:10 -04003305 ipw2100_tx_send_commands(priv);
3306 ipw2100_tx_send_data(priv);
James Ketrenos2c86c272005-03-23 17:32:29 -06003307 }
3308
3309 if (inta & IPW2100_INTA_TX_COMPLETE) {
3310 IPW_DEBUG_ISR("TX complete\n");
3311 priv->inta_other++;
James Ketrenosee8e3652005-09-14 09:47:29 -05003312 write_register(dev, IPW_REG_INTA, IPW2100_INTA_TX_COMPLETE);
James Ketrenos2c86c272005-03-23 17:32:29 -06003313
3314 __ipw2100_tx_complete(priv);
3315 }
3316
3317 if (inta & IPW2100_INTA_EVENT_INTERRUPT) {
3318 /* ipw2100_handle_event(dev); */
3319 priv->inta_other++;
James Ketrenosee8e3652005-09-14 09:47:29 -05003320 write_register(dev, IPW_REG_INTA, IPW2100_INTA_EVENT_INTERRUPT);
James Ketrenos2c86c272005-03-23 17:32:29 -06003321 }
3322
3323 if (inta & IPW2100_INTA_FW_INIT_DONE) {
3324 IPW_DEBUG_ISR("FW init done interrupt\n");
3325 priv->inta_other++;
3326
3327 read_register(dev, IPW_REG_INTA, &tmp);
3328 if (tmp & (IPW2100_INTA_FATAL_ERROR |
3329 IPW2100_INTA_PARITY_ERROR)) {
James Ketrenosee8e3652005-09-14 09:47:29 -05003330 write_register(dev, IPW_REG_INTA,
3331 IPW2100_INTA_FATAL_ERROR |
3332 IPW2100_INTA_PARITY_ERROR);
James Ketrenos2c86c272005-03-23 17:32:29 -06003333 }
3334
James Ketrenosee8e3652005-09-14 09:47:29 -05003335 write_register(dev, IPW_REG_INTA, IPW2100_INTA_FW_INIT_DONE);
James Ketrenos2c86c272005-03-23 17:32:29 -06003336 }
3337
3338 if (inta & IPW2100_INTA_STATUS_CHANGE) {
3339 IPW_DEBUG_ISR("Status change interrupt\n");
3340 priv->inta_other++;
James Ketrenosee8e3652005-09-14 09:47:29 -05003341 write_register(dev, IPW_REG_INTA, IPW2100_INTA_STATUS_CHANGE);
James Ketrenos2c86c272005-03-23 17:32:29 -06003342 }
3343
3344 if (inta & IPW2100_INTA_SLAVE_MODE_HOST_COMMAND_DONE) {
3345 IPW_DEBUG_ISR("slave host mode interrupt\n");
3346 priv->inta_other++;
James Ketrenosee8e3652005-09-14 09:47:29 -05003347 write_register(dev, IPW_REG_INTA,
3348 IPW2100_INTA_SLAVE_MODE_HOST_COMMAND_DONE);
James Ketrenos2c86c272005-03-23 17:32:29 -06003349 }
3350
3351 priv->in_isr--;
3352 ipw2100_enable_interrupts(priv);
3353
3354 spin_unlock_irqrestore(&priv->low_lock, flags);
3355
3356 IPW_DEBUG_ISR("exit\n");
3357}
3358
David Howells7d12e782006-10-05 14:55:46 +01003359static irqreturn_t ipw2100_interrupt(int irq, void *data)
James Ketrenos2c86c272005-03-23 17:32:29 -06003360{
3361 struct ipw2100_priv *priv = data;
3362 u32 inta, inta_mask;
3363
3364 if (!data)
3365 return IRQ_NONE;
3366
James Ketrenosee8e3652005-09-14 09:47:29 -05003367 spin_lock(&priv->low_lock);
James Ketrenos2c86c272005-03-23 17:32:29 -06003368
3369 /* We check to see if we should be ignoring interrupts before
3370 * we touch the hardware. During ucode load if we try and handle
3371 * an interrupt we can cause keyboard problems as well as cause
3372 * the ucode to fail to initialize */
3373 if (!(priv->status & STATUS_INT_ENABLED)) {
3374 /* Shared IRQ */
3375 goto none;
3376 }
3377
3378 read_register(priv->net_dev, IPW_REG_INTA_MASK, &inta_mask);
3379 read_register(priv->net_dev, IPW_REG_INTA, &inta);
3380
3381 if (inta == 0xFFFFFFFF) {
3382 /* Hardware disappeared */
Jiri Benc797b4f72005-08-25 20:03:27 -04003383 printk(KERN_WARNING DRV_NAME ": IRQ INTA == 0xFFFFFFFF\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06003384 goto none;
3385 }
3386
3387 inta &= IPW_INTERRUPT_MASK;
3388
3389 if (!(inta & inta_mask)) {
3390 /* Shared interrupt */
3391 goto none;
3392 }
3393
3394 /* We disable the hardware interrupt here just to prevent unneeded
3395 * calls to be made. We disable this again within the actual
3396 * work tasklet, so if another part of the code re-enables the
3397 * interrupt, that is fine */
3398 ipw2100_disable_interrupts(priv);
3399
3400 tasklet_schedule(&priv->irq_tasklet);
James Ketrenosee8e3652005-09-14 09:47:29 -05003401 spin_unlock(&priv->low_lock);
James Ketrenos2c86c272005-03-23 17:32:29 -06003402
3403 return IRQ_HANDLED;
James Ketrenosee8e3652005-09-14 09:47:29 -05003404 none:
James Ketrenos2c86c272005-03-23 17:32:29 -06003405 spin_unlock(&priv->low_lock);
3406 return IRQ_NONE;
3407}
3408
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +00003409static netdev_tx_t ipw2100_tx(struct libipw_txb *txb,
3410 struct net_device *dev, int pri)
James Ketrenos2c86c272005-03-23 17:32:29 -06003411{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04003412 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06003413 struct list_head *element;
3414 struct ipw2100_tx_packet *packet;
3415 unsigned long flags;
3416
3417 spin_lock_irqsave(&priv->low_lock, flags);
3418
3419 if (!(priv->status & STATUS_ASSOCIATED)) {
3420 IPW_DEBUG_INFO("Can not transmit when not connected.\n");
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00003421 priv->net_dev->stats.tx_carrier_errors++;
James Ketrenos2c86c272005-03-23 17:32:29 -06003422 netif_stop_queue(dev);
3423 goto fail_unlock;
3424 }
3425
3426 if (list_empty(&priv->tx_free_list))
3427 goto fail_unlock;
3428
3429 element = priv->tx_free_list.next;
3430 packet = list_entry(element, struct ipw2100_tx_packet, list);
3431
3432 packet->info.d_struct.txb = txb;
3433
James Ketrenosee8e3652005-09-14 09:47:29 -05003434 IPW_DEBUG_TX("Sending fragment (%d bytes):\n", txb->fragments[0]->len);
3435 printk_buf(IPW_DL_TX, txb->fragments[0]->data, txb->fragments[0]->len);
James Ketrenos2c86c272005-03-23 17:32:29 -06003436
3437 packet->jiffy_start = jiffies;
3438
3439 list_del(element);
3440 DEC_STAT(&priv->tx_free_stat);
3441
3442 list_add_tail(element, &priv->tx_pend_list);
3443 INC_STAT(&priv->tx_pend_stat);
3444
Jiri Benc19f7f742005-08-25 20:02:10 -04003445 ipw2100_tx_send_data(priv);
James Ketrenos2c86c272005-03-23 17:32:29 -06003446
3447 spin_unlock_irqrestore(&priv->low_lock, flags);
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +00003448 return NETDEV_TX_OK;
James Ketrenos2c86c272005-03-23 17:32:29 -06003449
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +00003450fail_unlock:
James Ketrenos2c86c272005-03-23 17:32:29 -06003451 netif_stop_queue(dev);
3452 spin_unlock_irqrestore(&priv->low_lock, flags);
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +00003453 return NETDEV_TX_BUSY;
James Ketrenos2c86c272005-03-23 17:32:29 -06003454}
3455
James Ketrenos2c86c272005-03-23 17:32:29 -06003456static int ipw2100_msg_allocate(struct ipw2100_priv *priv)
3457{
3458 int i, j, err = -EINVAL;
3459 void *v;
3460 dma_addr_t p;
3461
James Ketrenosee8e3652005-09-14 09:47:29 -05003462 priv->msg_buffers =
Joe Perchesefe4c452010-05-31 20:23:15 -07003463 kmalloc(IPW_COMMAND_POOL_SIZE * sizeof(struct ipw2100_tx_packet),
3464 GFP_KERNEL);
James Ketrenos2c86c272005-03-23 17:32:29 -06003465 if (!priv->msg_buffers) {
Jiri Benc797b4f72005-08-25 20:03:27 -04003466 printk(KERN_ERR DRV_NAME ": %s: PCI alloc failed for msg "
James Ketrenos2c86c272005-03-23 17:32:29 -06003467 "buffers.\n", priv->net_dev->name);
3468 return -ENOMEM;
3469 }
3470
3471 for (i = 0; i < IPW_COMMAND_POOL_SIZE; i++) {
James Ketrenosee8e3652005-09-14 09:47:29 -05003472 v = pci_alloc_consistent(priv->pci_dev,
3473 sizeof(struct ipw2100_cmd_header), &p);
James Ketrenos2c86c272005-03-23 17:32:29 -06003474 if (!v) {
Jiri Benc797b4f72005-08-25 20:03:27 -04003475 printk(KERN_ERR DRV_NAME ": "
James Ketrenos2c86c272005-03-23 17:32:29 -06003476 "%s: PCI alloc failed for msg "
James Ketrenosee8e3652005-09-14 09:47:29 -05003477 "buffers.\n", priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06003478 err = -ENOMEM;
3479 break;
3480 }
3481
3482 memset(v, 0, sizeof(struct ipw2100_cmd_header));
3483
3484 priv->msg_buffers[i].type = COMMAND;
3485 priv->msg_buffers[i].info.c_struct.cmd =
James Ketrenosee8e3652005-09-14 09:47:29 -05003486 (struct ipw2100_cmd_header *)v;
James Ketrenos2c86c272005-03-23 17:32:29 -06003487 priv->msg_buffers[i].info.c_struct.cmd_phys = p;
3488 }
3489
3490 if (i == IPW_COMMAND_POOL_SIZE)
3491 return 0;
3492
3493 for (j = 0; j < i; j++) {
James Ketrenosee8e3652005-09-14 09:47:29 -05003494 pci_free_consistent(priv->pci_dev,
3495 sizeof(struct ipw2100_cmd_header),
3496 priv->msg_buffers[j].info.c_struct.cmd,
3497 priv->msg_buffers[j].info.c_struct.
3498 cmd_phys);
James Ketrenos2c86c272005-03-23 17:32:29 -06003499 }
3500
3501 kfree(priv->msg_buffers);
3502 priv->msg_buffers = NULL;
3503
3504 return err;
3505}
3506
3507static int ipw2100_msg_initialize(struct ipw2100_priv *priv)
3508{
3509 int i;
3510
3511 INIT_LIST_HEAD(&priv->msg_free_list);
3512 INIT_LIST_HEAD(&priv->msg_pend_list);
3513
3514 for (i = 0; i < IPW_COMMAND_POOL_SIZE; i++)
3515 list_add_tail(&priv->msg_buffers[i].list, &priv->msg_free_list);
3516 SET_STAT(&priv->msg_free_stat, i);
3517
3518 return 0;
3519}
3520
3521static void ipw2100_msg_free(struct ipw2100_priv *priv)
3522{
3523 int i;
3524
3525 if (!priv->msg_buffers)
3526 return;
3527
3528 for (i = 0; i < IPW_COMMAND_POOL_SIZE; i++) {
3529 pci_free_consistent(priv->pci_dev,
3530 sizeof(struct ipw2100_cmd_header),
3531 priv->msg_buffers[i].info.c_struct.cmd,
James Ketrenosee8e3652005-09-14 09:47:29 -05003532 priv->msg_buffers[i].info.c_struct.
3533 cmd_phys);
James Ketrenos2c86c272005-03-23 17:32:29 -06003534 }
3535
3536 kfree(priv->msg_buffers);
3537 priv->msg_buffers = NULL;
3538}
3539
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003540static ssize_t show_pci(struct device *d, struct device_attribute *attr,
3541 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003542{
3543 struct pci_dev *pci_dev = container_of(d, struct pci_dev, dev);
3544 char *out = buf;
3545 int i, j;
3546 u32 val;
3547
3548 for (i = 0; i < 16; i++) {
3549 out += sprintf(out, "[%08X] ", i * 16);
3550 for (j = 0; j < 16; j += 4) {
3551 pci_read_config_dword(pci_dev, i * 16 + j, &val);
3552 out += sprintf(out, "%08X ", val);
3553 }
3554 out += sprintf(out, "\n");
3555 }
3556
3557 return out - buf;
3558}
James Ketrenosee8e3652005-09-14 09:47:29 -05003559
James Ketrenos2c86c272005-03-23 17:32:29 -06003560static DEVICE_ATTR(pci, S_IRUGO, show_pci, NULL);
3561
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003562static ssize_t show_cfg(struct device *d, struct device_attribute *attr,
3563 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003564{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003565 struct ipw2100_priv *p = dev_get_drvdata(d);
James Ketrenos2c86c272005-03-23 17:32:29 -06003566 return sprintf(buf, "0x%08x\n", (int)p->config);
3567}
James Ketrenosee8e3652005-09-14 09:47:29 -05003568
James Ketrenos2c86c272005-03-23 17:32:29 -06003569static DEVICE_ATTR(cfg, S_IRUGO, show_cfg, NULL);
3570
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003571static ssize_t show_status(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003572 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003573{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003574 struct ipw2100_priv *p = dev_get_drvdata(d);
James Ketrenos2c86c272005-03-23 17:32:29 -06003575 return sprintf(buf, "0x%08x\n", (int)p->status);
3576}
James Ketrenosee8e3652005-09-14 09:47:29 -05003577
James Ketrenos2c86c272005-03-23 17:32:29 -06003578static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
3579
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003580static ssize_t show_capability(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003581 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003582{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003583 struct ipw2100_priv *p = dev_get_drvdata(d);
James Ketrenos2c86c272005-03-23 17:32:29 -06003584 return sprintf(buf, "0x%08x\n", (int)p->capability);
3585}
James Ketrenos2c86c272005-03-23 17:32:29 -06003586
James Ketrenosee8e3652005-09-14 09:47:29 -05003587static DEVICE_ATTR(capability, S_IRUGO, show_capability, NULL);
James Ketrenos2c86c272005-03-23 17:32:29 -06003588
3589#define IPW2100_REG(x) { IPW_ ##x, #x }
Jiri Bencc4aee8c2005-08-25 20:04:43 -04003590static const struct {
James Ketrenos2c86c272005-03-23 17:32:29 -06003591 u32 addr;
3592 const char *name;
3593} hw_data[] = {
James Ketrenosee8e3652005-09-14 09:47:29 -05003594IPW2100_REG(REG_GP_CNTRL),
3595 IPW2100_REG(REG_GPIO),
3596 IPW2100_REG(REG_INTA),
3597 IPW2100_REG(REG_INTA_MASK), IPW2100_REG(REG_RESET_REG),};
James Ketrenos2c86c272005-03-23 17:32:29 -06003598#define IPW2100_NIC(x, s) { x, #x, s }
Jiri Bencc4aee8c2005-08-25 20:04:43 -04003599static const struct {
James Ketrenos2c86c272005-03-23 17:32:29 -06003600 u32 addr;
3601 const char *name;
3602 size_t size;
3603} nic_data[] = {
James Ketrenosee8e3652005-09-14 09:47:29 -05003604IPW2100_NIC(IPW2100_CONTROL_REG, 2),
3605 IPW2100_NIC(0x210014, 1), IPW2100_NIC(0x210000, 1),};
James Ketrenos2c86c272005-03-23 17:32:29 -06003606#define IPW2100_ORD(x, d) { IPW_ORD_ ##x, #x, d }
Jiri Bencc4aee8c2005-08-25 20:04:43 -04003607static const struct {
James Ketrenos2c86c272005-03-23 17:32:29 -06003608 u8 index;
3609 const char *name;
3610 const char *desc;
3611} ord_data[] = {
James Ketrenosee8e3652005-09-14 09:47:29 -05003612IPW2100_ORD(STAT_TX_HOST_REQUESTS, "requested Host Tx's (MSDU)"),
3613 IPW2100_ORD(STAT_TX_HOST_COMPLETE,
3614 "successful Host Tx's (MSDU)"),
3615 IPW2100_ORD(STAT_TX_DIR_DATA,
3616 "successful Directed Tx's (MSDU)"),
3617 IPW2100_ORD(STAT_TX_DIR_DATA1,
3618 "successful Directed Tx's (MSDU) @ 1MB"),
3619 IPW2100_ORD(STAT_TX_DIR_DATA2,
3620 "successful Directed Tx's (MSDU) @ 2MB"),
3621 IPW2100_ORD(STAT_TX_DIR_DATA5_5,
3622 "successful Directed Tx's (MSDU) @ 5_5MB"),
3623 IPW2100_ORD(STAT_TX_DIR_DATA11,
3624 "successful Directed Tx's (MSDU) @ 11MB"),
3625 IPW2100_ORD(STAT_TX_NODIR_DATA1,
3626 "successful Non_Directed Tx's (MSDU) @ 1MB"),
3627 IPW2100_ORD(STAT_TX_NODIR_DATA2,
3628 "successful Non_Directed Tx's (MSDU) @ 2MB"),
3629 IPW2100_ORD(STAT_TX_NODIR_DATA5_5,
3630 "successful Non_Directed Tx's (MSDU) @ 5.5MB"),
3631 IPW2100_ORD(STAT_TX_NODIR_DATA11,
3632 "successful Non_Directed Tx's (MSDU) @ 11MB"),
3633 IPW2100_ORD(STAT_NULL_DATA, "successful NULL data Tx's"),
3634 IPW2100_ORD(STAT_TX_RTS, "successful Tx RTS"),
3635 IPW2100_ORD(STAT_TX_CTS, "successful Tx CTS"),
3636 IPW2100_ORD(STAT_TX_ACK, "successful Tx ACK"),
3637 IPW2100_ORD(STAT_TX_ASSN, "successful Association Tx's"),
3638 IPW2100_ORD(STAT_TX_ASSN_RESP,
3639 "successful Association response Tx's"),
3640 IPW2100_ORD(STAT_TX_REASSN,
3641 "successful Reassociation Tx's"),
3642 IPW2100_ORD(STAT_TX_REASSN_RESP,
3643 "successful Reassociation response Tx's"),
3644 IPW2100_ORD(STAT_TX_PROBE,
3645 "probes successfully transmitted"),
3646 IPW2100_ORD(STAT_TX_PROBE_RESP,
3647 "probe responses successfully transmitted"),
3648 IPW2100_ORD(STAT_TX_BEACON, "tx beacon"),
3649 IPW2100_ORD(STAT_TX_ATIM, "Tx ATIM"),
3650 IPW2100_ORD(STAT_TX_DISASSN,
3651 "successful Disassociation TX"),
3652 IPW2100_ORD(STAT_TX_AUTH, "successful Authentication Tx"),
3653 IPW2100_ORD(STAT_TX_DEAUTH,
3654 "successful Deauthentication TX"),
3655 IPW2100_ORD(STAT_TX_TOTAL_BYTES,
3656 "Total successful Tx data bytes"),
3657 IPW2100_ORD(STAT_TX_RETRIES, "Tx retries"),
3658 IPW2100_ORD(STAT_TX_RETRY1, "Tx retries at 1MBPS"),
3659 IPW2100_ORD(STAT_TX_RETRY2, "Tx retries at 2MBPS"),
3660 IPW2100_ORD(STAT_TX_RETRY5_5, "Tx retries at 5.5MBPS"),
3661 IPW2100_ORD(STAT_TX_RETRY11, "Tx retries at 11MBPS"),
3662 IPW2100_ORD(STAT_TX_FAILURES, "Tx Failures"),
3663 IPW2100_ORD(STAT_TX_MAX_TRIES_IN_HOP,
3664 "times max tries in a hop failed"),
3665 IPW2100_ORD(STAT_TX_DISASSN_FAIL,
3666 "times disassociation failed"),
3667 IPW2100_ORD(STAT_TX_ERR_CTS, "missed/bad CTS frames"),
3668 IPW2100_ORD(STAT_TX_ERR_ACK, "tx err due to acks"),
3669 IPW2100_ORD(STAT_RX_HOST, "packets passed to host"),
3670 IPW2100_ORD(STAT_RX_DIR_DATA, "directed packets"),
3671 IPW2100_ORD(STAT_RX_DIR_DATA1, "directed packets at 1MB"),
3672 IPW2100_ORD(STAT_RX_DIR_DATA2, "directed packets at 2MB"),
3673 IPW2100_ORD(STAT_RX_DIR_DATA5_5,
3674 "directed packets at 5.5MB"),
3675 IPW2100_ORD(STAT_RX_DIR_DATA11, "directed packets at 11MB"),
3676 IPW2100_ORD(STAT_RX_NODIR_DATA, "nondirected packets"),
3677 IPW2100_ORD(STAT_RX_NODIR_DATA1,
3678 "nondirected packets at 1MB"),
3679 IPW2100_ORD(STAT_RX_NODIR_DATA2,
3680 "nondirected packets at 2MB"),
3681 IPW2100_ORD(STAT_RX_NODIR_DATA5_5,
3682 "nondirected packets at 5.5MB"),
3683 IPW2100_ORD(STAT_RX_NODIR_DATA11,
3684 "nondirected packets at 11MB"),
3685 IPW2100_ORD(STAT_RX_NULL_DATA, "null data rx's"),
3686 IPW2100_ORD(STAT_RX_RTS, "Rx RTS"), IPW2100_ORD(STAT_RX_CTS,
3687 "Rx CTS"),
3688 IPW2100_ORD(STAT_RX_ACK, "Rx ACK"),
3689 IPW2100_ORD(STAT_RX_CFEND, "Rx CF End"),
3690 IPW2100_ORD(STAT_RX_CFEND_ACK, "Rx CF End + CF Ack"),
3691 IPW2100_ORD(STAT_RX_ASSN, "Association Rx's"),
3692 IPW2100_ORD(STAT_RX_ASSN_RESP, "Association response Rx's"),
3693 IPW2100_ORD(STAT_RX_REASSN, "Reassociation Rx's"),
3694 IPW2100_ORD(STAT_RX_REASSN_RESP,
3695 "Reassociation response Rx's"),
3696 IPW2100_ORD(STAT_RX_PROBE, "probe Rx's"),
3697 IPW2100_ORD(STAT_RX_PROBE_RESP, "probe response Rx's"),
3698 IPW2100_ORD(STAT_RX_BEACON, "Rx beacon"),
3699 IPW2100_ORD(STAT_RX_ATIM, "Rx ATIM"),
3700 IPW2100_ORD(STAT_RX_DISASSN, "disassociation Rx"),
3701 IPW2100_ORD(STAT_RX_AUTH, "authentication Rx"),
3702 IPW2100_ORD(STAT_RX_DEAUTH, "deauthentication Rx"),
3703 IPW2100_ORD(STAT_RX_TOTAL_BYTES,
3704 "Total rx data bytes received"),
3705 IPW2100_ORD(STAT_RX_ERR_CRC, "packets with Rx CRC error"),
3706 IPW2100_ORD(STAT_RX_ERR_CRC1, "Rx CRC errors at 1MB"),
3707 IPW2100_ORD(STAT_RX_ERR_CRC2, "Rx CRC errors at 2MB"),
3708 IPW2100_ORD(STAT_RX_ERR_CRC5_5, "Rx CRC errors at 5.5MB"),
3709 IPW2100_ORD(STAT_RX_ERR_CRC11, "Rx CRC errors at 11MB"),
3710 IPW2100_ORD(STAT_RX_DUPLICATE1,
3711 "duplicate rx packets at 1MB"),
3712 IPW2100_ORD(STAT_RX_DUPLICATE2,
3713 "duplicate rx packets at 2MB"),
3714 IPW2100_ORD(STAT_RX_DUPLICATE5_5,
3715 "duplicate rx packets at 5.5MB"),
3716 IPW2100_ORD(STAT_RX_DUPLICATE11,
3717 "duplicate rx packets at 11MB"),
3718 IPW2100_ORD(STAT_RX_DUPLICATE, "duplicate rx packets"),
3719 IPW2100_ORD(PERS_DB_LOCK, "locking fw permanent db"),
3720 IPW2100_ORD(PERS_DB_SIZE, "size of fw permanent db"),
3721 IPW2100_ORD(PERS_DB_ADDR, "address of fw permanent db"),
3722 IPW2100_ORD(STAT_RX_INVALID_PROTOCOL,
3723 "rx frames with invalid protocol"),
3724 IPW2100_ORD(SYS_BOOT_TIME, "Boot time"),
3725 IPW2100_ORD(STAT_RX_NO_BUFFER,
3726 "rx frames rejected due to no buffer"),
3727 IPW2100_ORD(STAT_RX_MISSING_FRAG,
3728 "rx frames dropped due to missing fragment"),
3729 IPW2100_ORD(STAT_RX_ORPHAN_FRAG,
3730 "rx frames dropped due to non-sequential fragment"),
3731 IPW2100_ORD(STAT_RX_ORPHAN_FRAME,
3732 "rx frames dropped due to unmatched 1st frame"),
3733 IPW2100_ORD(STAT_RX_FRAG_AGEOUT,
3734 "rx frames dropped due to uncompleted frame"),
3735 IPW2100_ORD(STAT_RX_ICV_ERRORS,
3736 "ICV errors during decryption"),
3737 IPW2100_ORD(STAT_PSP_SUSPENSION, "times adapter suspended"),
3738 IPW2100_ORD(STAT_PSP_BCN_TIMEOUT, "beacon timeout"),
3739 IPW2100_ORD(STAT_PSP_POLL_TIMEOUT,
3740 "poll response timeouts"),
3741 IPW2100_ORD(STAT_PSP_NONDIR_TIMEOUT,
3742 "timeouts waiting for last {broad,multi}cast pkt"),
3743 IPW2100_ORD(STAT_PSP_RX_DTIMS, "PSP DTIMs received"),
3744 IPW2100_ORD(STAT_PSP_RX_TIMS, "PSP TIMs received"),
3745 IPW2100_ORD(STAT_PSP_STATION_ID, "PSP Station ID"),
3746 IPW2100_ORD(LAST_ASSN_TIME, "RTC time of last association"),
3747 IPW2100_ORD(STAT_PERCENT_MISSED_BCNS,
3748 "current calculation of % missed beacons"),
3749 IPW2100_ORD(STAT_PERCENT_RETRIES,
3750 "current calculation of % missed tx retries"),
3751 IPW2100_ORD(ASSOCIATED_AP_PTR,
3752 "0 if not associated, else pointer to AP table entry"),
3753 IPW2100_ORD(AVAILABLE_AP_CNT,
3754 "AP's decsribed in the AP table"),
3755 IPW2100_ORD(AP_LIST_PTR, "Ptr to list of available APs"),
3756 IPW2100_ORD(STAT_AP_ASSNS, "associations"),
3757 IPW2100_ORD(STAT_ASSN_FAIL, "association failures"),
3758 IPW2100_ORD(STAT_ASSN_RESP_FAIL,
3759 "failures due to response fail"),
3760 IPW2100_ORD(STAT_FULL_SCANS, "full scans"),
3761 IPW2100_ORD(CARD_DISABLED, "Card Disabled"),
3762 IPW2100_ORD(STAT_ROAM_INHIBIT,
3763 "times roaming was inhibited due to activity"),
3764 IPW2100_ORD(RSSI_AT_ASSN,
3765 "RSSI of associated AP at time of association"),
3766 IPW2100_ORD(STAT_ASSN_CAUSE1,
3767 "reassociation: no probe response or TX on hop"),
3768 IPW2100_ORD(STAT_ASSN_CAUSE2,
3769 "reassociation: poor tx/rx quality"),
3770 IPW2100_ORD(STAT_ASSN_CAUSE3,
3771 "reassociation: tx/rx quality (excessive AP load"),
3772 IPW2100_ORD(STAT_ASSN_CAUSE4,
3773 "reassociation: AP RSSI level"),
3774 IPW2100_ORD(STAT_ASSN_CAUSE5,
3775 "reassociations due to load leveling"),
3776 IPW2100_ORD(STAT_AUTH_FAIL, "times authentication failed"),
3777 IPW2100_ORD(STAT_AUTH_RESP_FAIL,
3778 "times authentication response failed"),
3779 IPW2100_ORD(STATION_TABLE_CNT,
3780 "entries in association table"),
3781 IPW2100_ORD(RSSI_AVG_CURR, "Current avg RSSI"),
3782 IPW2100_ORD(POWER_MGMT_MODE, "Power mode - 0=CAM, 1=PSP"),
3783 IPW2100_ORD(COUNTRY_CODE,
3784 "IEEE country code as recv'd from beacon"),
3785 IPW2100_ORD(COUNTRY_CHANNELS,
3786 "channels suported by country"),
3787 IPW2100_ORD(RESET_CNT, "adapter resets (warm)"),
3788 IPW2100_ORD(BEACON_INTERVAL, "Beacon interval"),
3789 IPW2100_ORD(ANTENNA_DIVERSITY,
3790 "TRUE if antenna diversity is disabled"),
3791 IPW2100_ORD(DTIM_PERIOD, "beacon intervals between DTIMs"),
3792 IPW2100_ORD(OUR_FREQ,
3793 "current radio freq lower digits - channel ID"),
3794 IPW2100_ORD(RTC_TIME, "current RTC time"),
3795 IPW2100_ORD(PORT_TYPE, "operating mode"),
3796 IPW2100_ORD(CURRENT_TX_RATE, "current tx rate"),
3797 IPW2100_ORD(SUPPORTED_RATES, "supported tx rates"),
3798 IPW2100_ORD(ATIM_WINDOW, "current ATIM Window"),
3799 IPW2100_ORD(BASIC_RATES, "basic tx rates"),
3800 IPW2100_ORD(NIC_HIGHEST_RATE, "NIC highest tx rate"),
3801 IPW2100_ORD(AP_HIGHEST_RATE, "AP highest tx rate"),
3802 IPW2100_ORD(CAPABILITIES,
3803 "Management frame capability field"),
3804 IPW2100_ORD(AUTH_TYPE, "Type of authentication"),
3805 IPW2100_ORD(RADIO_TYPE, "Adapter card platform type"),
3806 IPW2100_ORD(RTS_THRESHOLD,
3807 "Min packet length for RTS handshaking"),
3808 IPW2100_ORD(INT_MODE, "International mode"),
3809 IPW2100_ORD(FRAGMENTATION_THRESHOLD,
3810 "protocol frag threshold"),
3811 IPW2100_ORD(EEPROM_SRAM_DB_BLOCK_START_ADDRESS,
3812 "EEPROM offset in SRAM"),
3813 IPW2100_ORD(EEPROM_SRAM_DB_BLOCK_SIZE,
3814 "EEPROM size in SRAM"),
3815 IPW2100_ORD(EEPROM_SKU_CAPABILITY, "EEPROM SKU Capability"),
3816 IPW2100_ORD(EEPROM_IBSS_11B_CHANNELS,
3817 "EEPROM IBSS 11b channel set"),
3818 IPW2100_ORD(MAC_VERSION, "MAC Version"),
3819 IPW2100_ORD(MAC_REVISION, "MAC Revision"),
3820 IPW2100_ORD(RADIO_VERSION, "Radio Version"),
3821 IPW2100_ORD(NIC_MANF_DATE_TIME, "MANF Date/Time STAMP"),
3822 IPW2100_ORD(UCODE_VERSION, "Ucode Version"),};
James Ketrenos2c86c272005-03-23 17:32:29 -06003823
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003824static ssize_t show_registers(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003825 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003826{
3827 int i;
3828 struct ipw2100_priv *priv = dev_get_drvdata(d);
3829 struct net_device *dev = priv->net_dev;
James Ketrenosee8e3652005-09-14 09:47:29 -05003830 char *out = buf;
James Ketrenos2c86c272005-03-23 17:32:29 -06003831 u32 val = 0;
3832
3833 out += sprintf(out, "%30s [Address ] : Hex\n", "Register");
3834
Ahmed S. Darwish22d57432007-02-05 18:56:22 +02003835 for (i = 0; i < ARRAY_SIZE(hw_data); i++) {
James Ketrenos2c86c272005-03-23 17:32:29 -06003836 read_register(dev, hw_data[i].addr, &val);
3837 out += sprintf(out, "%30s [%08X] : %08X\n",
3838 hw_data[i].name, hw_data[i].addr, val);
3839 }
3840
3841 return out - buf;
3842}
James Ketrenosee8e3652005-09-14 09:47:29 -05003843
James Ketrenos2c86c272005-03-23 17:32:29 -06003844static DEVICE_ATTR(registers, S_IRUGO, show_registers, NULL);
3845
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003846static ssize_t show_hardware(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003847 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003848{
3849 struct ipw2100_priv *priv = dev_get_drvdata(d);
3850 struct net_device *dev = priv->net_dev;
James Ketrenosee8e3652005-09-14 09:47:29 -05003851 char *out = buf;
James Ketrenos2c86c272005-03-23 17:32:29 -06003852 int i;
3853
3854 out += sprintf(out, "%30s [Address ] : Hex\n", "NIC entry");
3855
Ahmed S. Darwish22d57432007-02-05 18:56:22 +02003856 for (i = 0; i < ARRAY_SIZE(nic_data); i++) {
James Ketrenos2c86c272005-03-23 17:32:29 -06003857 u8 tmp8;
3858 u16 tmp16;
3859 u32 tmp32;
3860
3861 switch (nic_data[i].size) {
3862 case 1:
3863 read_nic_byte(dev, nic_data[i].addr, &tmp8);
3864 out += sprintf(out, "%30s [%08X] : %02X\n",
3865 nic_data[i].name, nic_data[i].addr,
3866 tmp8);
3867 break;
3868 case 2:
3869 read_nic_word(dev, nic_data[i].addr, &tmp16);
3870 out += sprintf(out, "%30s [%08X] : %04X\n",
3871 nic_data[i].name, nic_data[i].addr,
3872 tmp16);
3873 break;
3874 case 4:
3875 read_nic_dword(dev, nic_data[i].addr, &tmp32);
3876 out += sprintf(out, "%30s [%08X] : %08X\n",
3877 nic_data[i].name, nic_data[i].addr,
3878 tmp32);
3879 break;
3880 }
3881 }
3882 return out - buf;
3883}
James Ketrenosee8e3652005-09-14 09:47:29 -05003884
James Ketrenos2c86c272005-03-23 17:32:29 -06003885static DEVICE_ATTR(hardware, S_IRUGO, show_hardware, NULL);
3886
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003887static ssize_t show_memory(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003888 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003889{
3890 struct ipw2100_priv *priv = dev_get_drvdata(d);
3891 struct net_device *dev = priv->net_dev;
3892 static unsigned long loop = 0;
3893 int len = 0;
3894 u32 buffer[4];
3895 int i;
3896 char line[81];
3897
3898 if (loop >= 0x30000)
3899 loop = 0;
3900
3901 /* sysfs provides us PAGE_SIZE buffer */
3902 while (len < PAGE_SIZE - 128 && loop < 0x30000) {
3903
James Ketrenosee8e3652005-09-14 09:47:29 -05003904 if (priv->snapshot[0])
3905 for (i = 0; i < 4; i++)
3906 buffer[i] =
3907 *(u32 *) SNAPSHOT_ADDR(loop + i * 4);
3908 else
3909 for (i = 0; i < 4; i++)
3910 read_nic_dword(dev, loop + i * 4, &buffer[i]);
James Ketrenos2c86c272005-03-23 17:32:29 -06003911
3912 if (priv->dump_raw)
3913 len += sprintf(buf + len,
3914 "%c%c%c%c"
3915 "%c%c%c%c"
3916 "%c%c%c%c"
3917 "%c%c%c%c",
James Ketrenosee8e3652005-09-14 09:47:29 -05003918 ((u8 *) buffer)[0x0],
3919 ((u8 *) buffer)[0x1],
3920 ((u8 *) buffer)[0x2],
3921 ((u8 *) buffer)[0x3],
3922 ((u8 *) buffer)[0x4],
3923 ((u8 *) buffer)[0x5],
3924 ((u8 *) buffer)[0x6],
3925 ((u8 *) buffer)[0x7],
3926 ((u8 *) buffer)[0x8],
3927 ((u8 *) buffer)[0x9],
3928 ((u8 *) buffer)[0xa],
3929 ((u8 *) buffer)[0xb],
3930 ((u8 *) buffer)[0xc],
3931 ((u8 *) buffer)[0xd],
3932 ((u8 *) buffer)[0xe],
3933 ((u8 *) buffer)[0xf]);
James Ketrenos2c86c272005-03-23 17:32:29 -06003934 else
3935 len += sprintf(buf + len, "%s\n",
3936 snprint_line(line, sizeof(line),
James Ketrenosee8e3652005-09-14 09:47:29 -05003937 (u8 *) buffer, 16, loop));
James Ketrenos2c86c272005-03-23 17:32:29 -06003938 loop += 16;
3939 }
3940
3941 return len;
3942}
3943
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003944static ssize_t store_memory(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003945 const char *buf, size_t count)
James Ketrenos2c86c272005-03-23 17:32:29 -06003946{
3947 struct ipw2100_priv *priv = dev_get_drvdata(d);
3948 struct net_device *dev = priv->net_dev;
3949 const char *p = buf;
3950
Zhu Yi8ed55a42006-01-24 13:49:20 +08003951 (void)dev; /* kill unused-var warning for debug-only code */
Jeff Garzikc2a8fad2005-11-09 00:49:38 -05003952
James Ketrenos2c86c272005-03-23 17:32:29 -06003953 if (count < 1)
3954 return count;
3955
3956 if (p[0] == '1' ||
3957 (count >= 2 && tolower(p[0]) == 'o' && tolower(p[1]) == 'n')) {
3958 IPW_DEBUG_INFO("%s: Setting memory dump to RAW mode.\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05003959 dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06003960 priv->dump_raw = 1;
3961
3962 } else if (p[0] == '0' || (count >= 2 && tolower(p[0]) == 'o' &&
James Ketrenosee8e3652005-09-14 09:47:29 -05003963 tolower(p[1]) == 'f')) {
James Ketrenos2c86c272005-03-23 17:32:29 -06003964 IPW_DEBUG_INFO("%s: Setting memory dump to HEX mode.\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05003965 dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06003966 priv->dump_raw = 0;
3967
3968 } else if (tolower(p[0]) == 'r') {
James Ketrenosee8e3652005-09-14 09:47:29 -05003969 IPW_DEBUG_INFO("%s: Resetting firmware snapshot.\n", dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06003970 ipw2100_snapshot_free(priv);
3971
3972 } else
3973 IPW_DEBUG_INFO("%s: Usage: 0|on = HEX, 1|off = RAW, "
James Ketrenosee8e3652005-09-14 09:47:29 -05003974 "reset = clear memory snapshot\n", dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06003975
3976 return count;
3977}
James Ketrenos2c86c272005-03-23 17:32:29 -06003978
James Ketrenosee8e3652005-09-14 09:47:29 -05003979static DEVICE_ATTR(memory, S_IWUSR | S_IRUGO, show_memory, store_memory);
James Ketrenos2c86c272005-03-23 17:32:29 -06003980
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003981static ssize_t show_ordinals(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003982 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003983{
3984 struct ipw2100_priv *priv = dev_get_drvdata(d);
3985 u32 val = 0;
3986 int len = 0;
3987 u32 val_len;
3988 static int loop = 0;
3989
James Ketrenos82328352005-08-24 22:33:31 -05003990 if (priv->status & STATUS_RF_KILL_MASK)
3991 return 0;
3992
Ahmed S. Darwish22d57432007-02-05 18:56:22 +02003993 if (loop >= ARRAY_SIZE(ord_data))
James Ketrenos2c86c272005-03-23 17:32:29 -06003994 loop = 0;
3995
3996 /* sysfs provides us PAGE_SIZE buffer */
Ahmed S. Darwish22d57432007-02-05 18:56:22 +02003997 while (len < PAGE_SIZE - 128 && loop < ARRAY_SIZE(ord_data)) {
James Ketrenos2c86c272005-03-23 17:32:29 -06003998 val_len = sizeof(u32);
3999
4000 if (ipw2100_get_ordinal(priv, ord_data[loop].index, &val,
4001 &val_len))
4002 len += sprintf(buf + len, "[0x%02X] = ERROR %s\n",
4003 ord_data[loop].index,
4004 ord_data[loop].desc);
4005 else
4006 len += sprintf(buf + len, "[0x%02X] = 0x%08X %s\n",
4007 ord_data[loop].index, val,
4008 ord_data[loop].desc);
4009 loop++;
4010 }
4011
4012 return len;
4013}
James Ketrenosee8e3652005-09-14 09:47:29 -05004014
James Ketrenos2c86c272005-03-23 17:32:29 -06004015static DEVICE_ATTR(ordinals, S_IRUGO, show_ordinals, NULL);
4016
Andrew Mortonedfc43f2005-06-20 14:30:35 -07004017static ssize_t show_stats(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05004018 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06004019{
4020 struct ipw2100_priv *priv = dev_get_drvdata(d);
James Ketrenosee8e3652005-09-14 09:47:29 -05004021 char *out = buf;
James Ketrenos2c86c272005-03-23 17:32:29 -06004022
4023 out += sprintf(out, "interrupts: %d {tx: %d, rx: %d, other: %d}\n",
4024 priv->interrupts, priv->tx_interrupts,
4025 priv->rx_interrupts, priv->inta_other);
4026 out += sprintf(out, "firmware resets: %d\n", priv->resets);
4027 out += sprintf(out, "firmware hangs: %d\n", priv->hangs);
Brice Goglin0f52bf92005-12-01 01:41:46 -08004028#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06004029 out += sprintf(out, "packet mismatch image: %s\n",
4030 priv->snapshot[0] ? "YES" : "NO");
4031#endif
4032
4033 return out - buf;
4034}
James Ketrenos2c86c272005-03-23 17:32:29 -06004035
James Ketrenosee8e3652005-09-14 09:47:29 -05004036static DEVICE_ATTR(stats, S_IRUGO, show_stats, NULL);
James Ketrenos2c86c272005-03-23 17:32:29 -06004037
Jiri Bencc4aee8c2005-08-25 20:04:43 -04004038static int ipw2100_switch_mode(struct ipw2100_priv *priv, u32 mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06004039{
4040 int err;
4041
4042 if (mode == priv->ieee->iw_mode)
4043 return 0;
4044
4045 err = ipw2100_disable_adapter(priv);
4046 if (err) {
Jiri Benc797b4f72005-08-25 20:03:27 -04004047 printk(KERN_ERR DRV_NAME ": %s: Could not disable adapter %d\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06004048 priv->net_dev->name, err);
4049 return err;
4050 }
4051
4052 switch (mode) {
4053 case IW_MODE_INFRA:
4054 priv->net_dev->type = ARPHRD_ETHER;
4055 break;
4056 case IW_MODE_ADHOC:
4057 priv->net_dev->type = ARPHRD_ETHER;
4058 break;
4059#ifdef CONFIG_IPW2100_MONITOR
4060 case IW_MODE_MONITOR:
4061 priv->last_mode = priv->ieee->iw_mode;
Stefan Rompf15745a72006-02-21 18:36:17 +08004062 priv->net_dev->type = ARPHRD_IEEE80211_RADIOTAP;
James Ketrenos2c86c272005-03-23 17:32:29 -06004063 break;
James Ketrenosee8e3652005-09-14 09:47:29 -05004064#endif /* CONFIG_IPW2100_MONITOR */
James Ketrenos2c86c272005-03-23 17:32:29 -06004065 }
4066
4067 priv->ieee->iw_mode = mode;
4068
4069#ifdef CONFIG_PM
James Ketrenosee8e3652005-09-14 09:47:29 -05004070 /* Indicate ipw2100_download_firmware download firmware
James Ketrenos2c86c272005-03-23 17:32:29 -06004071 * from disk instead of memory. */
4072 ipw2100_firmware.version = 0;
4073#endif
4074
James Ketrenosee8e3652005-09-14 09:47:29 -05004075 printk(KERN_INFO "%s: Reseting on mode change.\n", priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06004076 priv->reset_backoff = 0;
4077 schedule_reset(priv);
4078
4079 return 0;
4080}
4081
Andrew Mortonedfc43f2005-06-20 14:30:35 -07004082static ssize_t show_internals(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05004083 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06004084{
4085 struct ipw2100_priv *priv = dev_get_drvdata(d);
4086 int len = 0;
4087
James Ketrenosee8e3652005-09-14 09:47:29 -05004088#define DUMP_VAR(x,y) len += sprintf(buf + len, # x ": %" y "\n", priv-> x)
James Ketrenos2c86c272005-03-23 17:32:29 -06004089
4090 if (priv->status & STATUS_ASSOCIATED)
4091 len += sprintf(buf + len, "connected: %lu\n",
4092 get_seconds() - priv->connect_start);
4093 else
4094 len += sprintf(buf + len, "not connected\n");
4095
John W. Linville274bfb82008-10-29 11:35:05 -04004096 DUMP_VAR(ieee->crypt_info.crypt[priv->ieee->crypt_info.tx_keyidx], "p");
James Ketrenosee8e3652005-09-14 09:47:29 -05004097 DUMP_VAR(status, "08lx");
4098 DUMP_VAR(config, "08lx");
4099 DUMP_VAR(capability, "08lx");
James Ketrenos2c86c272005-03-23 17:32:29 -06004100
James Ketrenosee8e3652005-09-14 09:47:29 -05004101 len +=
4102 sprintf(buf + len, "last_rtc: %lu\n",
4103 (unsigned long)priv->last_rtc);
James Ketrenos2c86c272005-03-23 17:32:29 -06004104
James Ketrenosee8e3652005-09-14 09:47:29 -05004105 DUMP_VAR(fatal_error, "d");
4106 DUMP_VAR(stop_hang_check, "d");
4107 DUMP_VAR(stop_rf_kill, "d");
4108 DUMP_VAR(messages_sent, "d");
James Ketrenos2c86c272005-03-23 17:32:29 -06004109
James Ketrenosee8e3652005-09-14 09:47:29 -05004110 DUMP_VAR(tx_pend_stat.value, "d");
4111 DUMP_VAR(tx_pend_stat.hi, "d");
James Ketrenos2c86c272005-03-23 17:32:29 -06004112
James Ketrenosee8e3652005-09-14 09:47:29 -05004113 DUMP_VAR(tx_free_stat.value, "d");
4114 DUMP_VAR(tx_free_stat.lo, "d");
James Ketrenos2c86c272005-03-23 17:32:29 -06004115
James Ketrenosee8e3652005-09-14 09:47:29 -05004116 DUMP_VAR(msg_free_stat.value, "d");
4117 DUMP_VAR(msg_free_stat.lo, "d");
James Ketrenos2c86c272005-03-23 17:32:29 -06004118
James Ketrenosee8e3652005-09-14 09:47:29 -05004119 DUMP_VAR(msg_pend_stat.value, "d");
4120 DUMP_VAR(msg_pend_stat.hi, "d");
James Ketrenos2c86c272005-03-23 17:32:29 -06004121
James Ketrenosee8e3652005-09-14 09:47:29 -05004122 DUMP_VAR(fw_pend_stat.value, "d");
4123 DUMP_VAR(fw_pend_stat.hi, "d");
James Ketrenos2c86c272005-03-23 17:32:29 -06004124
James Ketrenosee8e3652005-09-14 09:47:29 -05004125 DUMP_VAR(txq_stat.value, "d");
4126 DUMP_VAR(txq_stat.lo, "d");
James Ketrenos2c86c272005-03-23 17:32:29 -06004127
James Ketrenosee8e3652005-09-14 09:47:29 -05004128 DUMP_VAR(ieee->scans, "d");
4129 DUMP_VAR(reset_backoff, "d");
James Ketrenos2c86c272005-03-23 17:32:29 -06004130
4131 return len;
4132}
James Ketrenosee8e3652005-09-14 09:47:29 -05004133
James Ketrenos2c86c272005-03-23 17:32:29 -06004134static DEVICE_ATTR(internals, S_IRUGO, show_internals, NULL);
4135
Andrew Mortonedfc43f2005-06-20 14:30:35 -07004136static ssize_t show_bssinfo(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05004137 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06004138{
4139 struct ipw2100_priv *priv = dev_get_drvdata(d);
4140 char essid[IW_ESSID_MAX_SIZE + 1];
4141 u8 bssid[ETH_ALEN];
4142 u32 chan = 0;
James Ketrenosee8e3652005-09-14 09:47:29 -05004143 char *out = buf;
Hannes Ederb9da9e92009-02-14 11:50:26 +00004144 unsigned int length;
James Ketrenos2c86c272005-03-23 17:32:29 -06004145 int ret;
4146
James Ketrenos82328352005-08-24 22:33:31 -05004147 if (priv->status & STATUS_RF_KILL_MASK)
4148 return 0;
4149
James Ketrenos2c86c272005-03-23 17:32:29 -06004150 memset(essid, 0, sizeof(essid));
4151 memset(bssid, 0, sizeof(bssid));
4152
4153 length = IW_ESSID_MAX_SIZE;
4154 ret = ipw2100_get_ordinal(priv, IPW_ORD_STAT_ASSN_SSID, essid, &length);
4155 if (ret)
4156 IPW_DEBUG_INFO("failed querying ordinals at line %d\n",
4157 __LINE__);
4158
4159 length = sizeof(bssid);
4160 ret = ipw2100_get_ordinal(priv, IPW_ORD_STAT_ASSN_AP_BSSID,
4161 bssid, &length);
4162 if (ret)
4163 IPW_DEBUG_INFO("failed querying ordinals at line %d\n",
4164 __LINE__);
4165
4166 length = sizeof(u32);
4167 ret = ipw2100_get_ordinal(priv, IPW_ORD_OUR_FREQ, &chan, &length);
4168 if (ret)
4169 IPW_DEBUG_INFO("failed querying ordinals at line %d\n",
4170 __LINE__);
4171
4172 out += sprintf(out, "ESSID: %s\n", essid);
Johannes Berge1749612008-10-27 15:59:26 -07004173 out += sprintf(out, "BSSID: %pM\n", bssid);
James Ketrenos2c86c272005-03-23 17:32:29 -06004174 out += sprintf(out, "Channel: %d\n", chan);
4175
4176 return out - buf;
4177}
James Ketrenos2c86c272005-03-23 17:32:29 -06004178
James Ketrenosee8e3652005-09-14 09:47:29 -05004179static DEVICE_ATTR(bssinfo, S_IRUGO, show_bssinfo, NULL);
James Ketrenos2c86c272005-03-23 17:32:29 -06004180
Brice Goglin0f52bf92005-12-01 01:41:46 -08004181#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06004182static ssize_t show_debug_level(struct device_driver *d, char *buf)
4183{
4184 return sprintf(buf, "0x%08X\n", ipw2100_debug_level);
4185}
4186
James Ketrenos82328352005-08-24 22:33:31 -05004187static ssize_t store_debug_level(struct device_driver *d,
4188 const char *buf, size_t count)
James Ketrenos2c86c272005-03-23 17:32:29 -06004189{
4190 char *p = (char *)buf;
4191 u32 val;
4192
4193 if (p[1] == 'x' || p[1] == 'X' || p[0] == 'x' || p[0] == 'X') {
4194 p++;
4195 if (p[0] == 'x' || p[0] == 'X')
4196 p++;
4197 val = simple_strtoul(p, &p, 16);
4198 } else
4199 val = simple_strtoul(p, &p, 10);
4200 if (p == buf)
Zhu Yia1e695a2005-07-04 14:06:00 +08004201 IPW_DEBUG_INFO(": %s is not in hex or decimal form.\n", buf);
James Ketrenos2c86c272005-03-23 17:32:29 -06004202 else
4203 ipw2100_debug_level = val;
4204
4205 return strnlen(buf, count);
4206}
James Ketrenosee8e3652005-09-14 09:47:29 -05004207
James Ketrenos2c86c272005-03-23 17:32:29 -06004208static DRIVER_ATTR(debug_level, S_IWUSR | S_IRUGO, show_debug_level,
4209 store_debug_level);
Brice Goglin0f52bf92005-12-01 01:41:46 -08004210#endif /* CONFIG_IPW2100_DEBUG */
James Ketrenos2c86c272005-03-23 17:32:29 -06004211
Andrew Mortonedfc43f2005-06-20 14:30:35 -07004212static ssize_t show_fatal_error(struct device *d,
James Ketrenosee8e3652005-09-14 09:47:29 -05004213 struct device_attribute *attr, char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06004214{
4215 struct ipw2100_priv *priv = dev_get_drvdata(d);
4216 char *out = buf;
4217 int i;
4218
4219 if (priv->fatal_error)
James Ketrenosee8e3652005-09-14 09:47:29 -05004220 out += sprintf(out, "0x%08X\n", priv->fatal_error);
James Ketrenos2c86c272005-03-23 17:32:29 -06004221 else
4222 out += sprintf(out, "0\n");
4223
4224 for (i = 1; i <= IPW2100_ERROR_QUEUE; i++) {
4225 if (!priv->fatal_errors[(priv->fatal_index - i) %
4226 IPW2100_ERROR_QUEUE])
4227 continue;
4228
4229 out += sprintf(out, "%d. 0x%08X\n", i,
4230 priv->fatal_errors[(priv->fatal_index - i) %
4231 IPW2100_ERROR_QUEUE]);
4232 }
4233
4234 return out - buf;
4235}
4236
Andrew Mortonedfc43f2005-06-20 14:30:35 -07004237static ssize_t store_fatal_error(struct device *d,
James Ketrenosee8e3652005-09-14 09:47:29 -05004238 struct device_attribute *attr, const char *buf,
4239 size_t count)
James Ketrenos2c86c272005-03-23 17:32:29 -06004240{
4241 struct ipw2100_priv *priv = dev_get_drvdata(d);
4242 schedule_reset(priv);
4243 return count;
4244}
James Ketrenos2c86c272005-03-23 17:32:29 -06004245
James Ketrenosee8e3652005-09-14 09:47:29 -05004246static DEVICE_ATTR(fatal_error, S_IWUSR | S_IRUGO, show_fatal_error,
4247 store_fatal_error);
James Ketrenos2c86c272005-03-23 17:32:29 -06004248
Andrew Mortonedfc43f2005-06-20 14:30:35 -07004249static ssize_t show_scan_age(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05004250 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06004251{
4252 struct ipw2100_priv *priv = dev_get_drvdata(d);
4253 return sprintf(buf, "%d\n", priv->ieee->scan_age);
4254}
4255
Andrew Mortonedfc43f2005-06-20 14:30:35 -07004256static ssize_t store_scan_age(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05004257 const char *buf, size_t count)
James Ketrenos2c86c272005-03-23 17:32:29 -06004258{
4259 struct ipw2100_priv *priv = dev_get_drvdata(d);
4260 struct net_device *dev = priv->net_dev;
4261 char buffer[] = "00000000";
4262 unsigned long len =
4263 (sizeof(buffer) - 1) > count ? count : sizeof(buffer) - 1;
4264 unsigned long val;
4265 char *p = buffer;
4266
Zhu Yi8ed55a42006-01-24 13:49:20 +08004267 (void)dev; /* kill unused-var warning for debug-only code */
Jeff Garzikc2a8fad2005-11-09 00:49:38 -05004268
James Ketrenos2c86c272005-03-23 17:32:29 -06004269 IPW_DEBUG_INFO("enter\n");
4270
4271 strncpy(buffer, buf, len);
4272 buffer[len] = 0;
4273
4274 if (p[1] == 'x' || p[1] == 'X' || p[0] == 'x' || p[0] == 'X') {
4275 p++;
4276 if (p[0] == 'x' || p[0] == 'X')
4277 p++;
4278 val = simple_strtoul(p, &p, 16);
4279 } else
4280 val = simple_strtoul(p, &p, 10);
4281 if (p == buffer) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004282 IPW_DEBUG_INFO("%s: user supplied invalid value.\n", dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06004283 } else {
4284 priv->ieee->scan_age = val;
4285 IPW_DEBUG_INFO("set scan_age = %u\n", priv->ieee->scan_age);
4286 }
4287
4288 IPW_DEBUG_INFO("exit\n");
4289 return len;
4290}
James Ketrenosee8e3652005-09-14 09:47:29 -05004291
James Ketrenos2c86c272005-03-23 17:32:29 -06004292static DEVICE_ATTR(scan_age, S_IWUSR | S_IRUGO, show_scan_age, store_scan_age);
4293
Andrew Mortonedfc43f2005-06-20 14:30:35 -07004294static ssize_t show_rf_kill(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05004295 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06004296{
4297 /* 0 - RF kill not enabled
4298 1 - SW based RF kill active (sysfs)
4299 2 - HW based RF kill active
4300 3 - Both HW and SW baed RF kill active */
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07004301 struct ipw2100_priv *priv = dev_get_drvdata(d);
James Ketrenos2c86c272005-03-23 17:32:29 -06004302 int val = ((priv->status & STATUS_RF_KILL_SW) ? 0x1 : 0x0) |
James Ketrenosee8e3652005-09-14 09:47:29 -05004303 (rf_kill_active(priv) ? 0x2 : 0x0);
James Ketrenos2c86c272005-03-23 17:32:29 -06004304 return sprintf(buf, "%i\n", val);
4305}
4306
4307static int ipw_radio_kill_sw(struct ipw2100_priv *priv, int disable_radio)
4308{
4309 if ((disable_radio ? 1 : 0) ==
4310 (priv->status & STATUS_RF_KILL_SW ? 1 : 0))
James Ketrenosee8e3652005-09-14 09:47:29 -05004311 return 0;
James Ketrenos2c86c272005-03-23 17:32:29 -06004312
4313 IPW_DEBUG_RF_KILL("Manual SW RF Kill set to: RADIO %s\n",
4314 disable_radio ? "OFF" : "ON");
4315
Ingo Molnar752e3772006-02-28 07:20:54 +08004316 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06004317
4318 if (disable_radio) {
4319 priv->status |= STATUS_RF_KILL_SW;
4320 ipw2100_down(priv);
4321 } else {
4322 priv->status &= ~STATUS_RF_KILL_SW;
4323 if (rf_kill_active(priv)) {
4324 IPW_DEBUG_RF_KILL("Can not turn radio back on - "
4325 "disabled by HW switch\n");
4326 /* Make sure the RF_KILL check timer is running */
4327 priv->stop_rf_kill = 0;
4328 cancel_delayed_work(&priv->rf_kill);
Tejun Heobcb6d912011-01-26 12:12:50 +01004329 schedule_delayed_work(&priv->rf_kill,
4330 round_jiffies_relative(HZ));
James Ketrenos2c86c272005-03-23 17:32:29 -06004331 } else
4332 schedule_reset(priv);
4333 }
4334
Ingo Molnar752e3772006-02-28 07:20:54 +08004335 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06004336 return 1;
4337}
4338
Andrew Mortonedfc43f2005-06-20 14:30:35 -07004339static ssize_t store_rf_kill(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05004340 const char *buf, size_t count)
James Ketrenos2c86c272005-03-23 17:32:29 -06004341{
4342 struct ipw2100_priv *priv = dev_get_drvdata(d);
4343 ipw_radio_kill_sw(priv, buf[0] == '1');
4344 return count;
4345}
James Ketrenos2c86c272005-03-23 17:32:29 -06004346
James Ketrenosee8e3652005-09-14 09:47:29 -05004347static DEVICE_ATTR(rf_kill, S_IWUSR | S_IRUGO, show_rf_kill, store_rf_kill);
James Ketrenos2c86c272005-03-23 17:32:29 -06004348
4349static struct attribute *ipw2100_sysfs_entries[] = {
4350 &dev_attr_hardware.attr,
4351 &dev_attr_registers.attr,
4352 &dev_attr_ordinals.attr,
4353 &dev_attr_pci.attr,
4354 &dev_attr_stats.attr,
4355 &dev_attr_internals.attr,
4356 &dev_attr_bssinfo.attr,
4357 &dev_attr_memory.attr,
4358 &dev_attr_scan_age.attr,
4359 &dev_attr_fatal_error.attr,
4360 &dev_attr_rf_kill.attr,
4361 &dev_attr_cfg.attr,
4362 &dev_attr_status.attr,
4363 &dev_attr_capability.attr,
4364 NULL,
4365};
4366
4367static struct attribute_group ipw2100_attribute_group = {
4368 .attrs = ipw2100_sysfs_entries,
4369};
4370
James Ketrenos2c86c272005-03-23 17:32:29 -06004371static int status_queue_allocate(struct ipw2100_priv *priv, int entries)
4372{
4373 struct ipw2100_status_queue *q = &priv->status_queue;
4374
4375 IPW_DEBUG_INFO("enter\n");
4376
4377 q->size = entries * sizeof(struct ipw2100_status);
James Ketrenosee8e3652005-09-14 09:47:29 -05004378 q->drv =
4379 (struct ipw2100_status *)pci_alloc_consistent(priv->pci_dev,
4380 q->size, &q->nic);
James Ketrenos2c86c272005-03-23 17:32:29 -06004381 if (!q->drv) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004382 IPW_DEBUG_WARNING("Can not allocate status queue.\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06004383 return -ENOMEM;
4384 }
4385
4386 memset(q->drv, 0, q->size);
4387
4388 IPW_DEBUG_INFO("exit\n");
4389
4390 return 0;
4391}
4392
4393static void status_queue_free(struct ipw2100_priv *priv)
4394{
4395 IPW_DEBUG_INFO("enter\n");
4396
4397 if (priv->status_queue.drv) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004398 pci_free_consistent(priv->pci_dev, priv->status_queue.size,
4399 priv->status_queue.drv,
4400 priv->status_queue.nic);
James Ketrenos2c86c272005-03-23 17:32:29 -06004401 priv->status_queue.drv = NULL;
4402 }
4403
4404 IPW_DEBUG_INFO("exit\n");
4405}
4406
4407static int bd_queue_allocate(struct ipw2100_priv *priv,
4408 struct ipw2100_bd_queue *q, int entries)
4409{
4410 IPW_DEBUG_INFO("enter\n");
4411
4412 memset(q, 0, sizeof(struct ipw2100_bd_queue));
4413
4414 q->entries = entries;
4415 q->size = entries * sizeof(struct ipw2100_bd);
4416 q->drv = pci_alloc_consistent(priv->pci_dev, q->size, &q->nic);
4417 if (!q->drv) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004418 IPW_DEBUG_INFO
4419 ("can't allocate shared memory for buffer descriptors\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06004420 return -ENOMEM;
4421 }
4422 memset(q->drv, 0, q->size);
4423
4424 IPW_DEBUG_INFO("exit\n");
4425
4426 return 0;
4427}
4428
James Ketrenosee8e3652005-09-14 09:47:29 -05004429static void bd_queue_free(struct ipw2100_priv *priv, struct ipw2100_bd_queue *q)
James Ketrenos2c86c272005-03-23 17:32:29 -06004430{
4431 IPW_DEBUG_INFO("enter\n");
4432
4433 if (!q)
4434 return;
4435
4436 if (q->drv) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004437 pci_free_consistent(priv->pci_dev, q->size, q->drv, q->nic);
James Ketrenos2c86c272005-03-23 17:32:29 -06004438 q->drv = NULL;
4439 }
4440
4441 IPW_DEBUG_INFO("exit\n");
4442}
4443
James Ketrenosee8e3652005-09-14 09:47:29 -05004444static void bd_queue_initialize(struct ipw2100_priv *priv,
4445 struct ipw2100_bd_queue *q, u32 base, u32 size,
4446 u32 r, u32 w)
James Ketrenos2c86c272005-03-23 17:32:29 -06004447{
4448 IPW_DEBUG_INFO("enter\n");
4449
James Ketrenosee8e3652005-09-14 09:47:29 -05004450 IPW_DEBUG_INFO("initializing bd queue at virt=%p, phys=%08x\n", q->drv,
4451 (u32) q->nic);
James Ketrenos2c86c272005-03-23 17:32:29 -06004452
4453 write_register(priv->net_dev, base, q->nic);
4454 write_register(priv->net_dev, size, q->entries);
4455 write_register(priv->net_dev, r, q->oldest);
4456 write_register(priv->net_dev, w, q->next);
4457
4458 IPW_DEBUG_INFO("exit\n");
4459}
4460
Tejun Heobcb6d912011-01-26 12:12:50 +01004461static void ipw2100_kill_works(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06004462{
Tejun Heobcb6d912011-01-26 12:12:50 +01004463 priv->stop_rf_kill = 1;
4464 priv->stop_hang_check = 1;
4465 cancel_delayed_work_sync(&priv->reset_work);
4466 cancel_delayed_work_sync(&priv->security_work);
4467 cancel_delayed_work_sync(&priv->wx_event_work);
4468 cancel_delayed_work_sync(&priv->hang_check);
4469 cancel_delayed_work_sync(&priv->rf_kill);
4470 cancel_work_sync(&priv->scan_event_now);
4471 cancel_delayed_work_sync(&priv->scan_event_later);
James Ketrenos2c86c272005-03-23 17:32:29 -06004472}
4473
4474static int ipw2100_tx_allocate(struct ipw2100_priv *priv)
4475{
4476 int i, j, err = -EINVAL;
4477 void *v;
4478 dma_addr_t p;
4479
4480 IPW_DEBUG_INFO("enter\n");
4481
4482 err = bd_queue_allocate(priv, &priv->tx_queue, TX_QUEUE_LENGTH);
4483 if (err) {
4484 IPW_DEBUG_ERROR("%s: failed bd_queue_allocate\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05004485 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06004486 return err;
4487 }
4488
James Ketrenosee8e3652005-09-14 09:47:29 -05004489 priv->tx_buffers =
Joe Perchesefe4c452010-05-31 20:23:15 -07004490 kmalloc(TX_PENDED_QUEUE_LENGTH * sizeof(struct ipw2100_tx_packet),
4491 GFP_ATOMIC);
James Ketrenos2c86c272005-03-23 17:32:29 -06004492 if (!priv->tx_buffers) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004493 printk(KERN_ERR DRV_NAME
4494 ": %s: alloc failed form tx buffers.\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06004495 priv->net_dev->name);
4496 bd_queue_free(priv, &priv->tx_queue);
4497 return -ENOMEM;
4498 }
4499
4500 for (i = 0; i < TX_PENDED_QUEUE_LENGTH; i++) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004501 v = pci_alloc_consistent(priv->pci_dev,
4502 sizeof(struct ipw2100_data_header),
4503 &p);
James Ketrenos2c86c272005-03-23 17:32:29 -06004504 if (!v) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004505 printk(KERN_ERR DRV_NAME
4506 ": %s: PCI alloc failed for tx " "buffers.\n",
4507 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06004508 err = -ENOMEM;
4509 break;
4510 }
4511
4512 priv->tx_buffers[i].type = DATA;
James Ketrenosee8e3652005-09-14 09:47:29 -05004513 priv->tx_buffers[i].info.d_struct.data =
4514 (struct ipw2100_data_header *)v;
James Ketrenos2c86c272005-03-23 17:32:29 -06004515 priv->tx_buffers[i].info.d_struct.data_phys = p;
4516 priv->tx_buffers[i].info.d_struct.txb = NULL;
4517 }
4518
4519 if (i == TX_PENDED_QUEUE_LENGTH)
4520 return 0;
4521
4522 for (j = 0; j < i; j++) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004523 pci_free_consistent(priv->pci_dev,
4524 sizeof(struct ipw2100_data_header),
4525 priv->tx_buffers[j].info.d_struct.data,
4526 priv->tx_buffers[j].info.d_struct.
4527 data_phys);
James Ketrenos2c86c272005-03-23 17:32:29 -06004528 }
4529
4530 kfree(priv->tx_buffers);
4531 priv->tx_buffers = NULL;
4532
4533 return err;
4534}
4535
4536static void ipw2100_tx_initialize(struct ipw2100_priv *priv)
4537{
4538 int i;
4539
4540 IPW_DEBUG_INFO("enter\n");
4541
4542 /*
4543 * reinitialize packet info lists
4544 */
4545 INIT_LIST_HEAD(&priv->fw_pend_list);
4546 INIT_STAT(&priv->fw_pend_stat);
4547
4548 /*
4549 * reinitialize lists
4550 */
4551 INIT_LIST_HEAD(&priv->tx_pend_list);
4552 INIT_LIST_HEAD(&priv->tx_free_list);
4553 INIT_STAT(&priv->tx_pend_stat);
4554 INIT_STAT(&priv->tx_free_stat);
4555
4556 for (i = 0; i < TX_PENDED_QUEUE_LENGTH; i++) {
4557 /* We simply drop any SKBs that have been queued for
4558 * transmit */
4559 if (priv->tx_buffers[i].info.d_struct.txb) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004560 libipw_txb_free(priv->tx_buffers[i].info.d_struct.
James Ketrenosee8e3652005-09-14 09:47:29 -05004561 txb);
James Ketrenos2c86c272005-03-23 17:32:29 -06004562 priv->tx_buffers[i].info.d_struct.txb = NULL;
4563 }
4564
4565 list_add_tail(&priv->tx_buffers[i].list, &priv->tx_free_list);
4566 }
4567
4568 SET_STAT(&priv->tx_free_stat, i);
4569
4570 priv->tx_queue.oldest = 0;
4571 priv->tx_queue.available = priv->tx_queue.entries;
4572 priv->tx_queue.next = 0;
4573 INIT_STAT(&priv->txq_stat);
4574 SET_STAT(&priv->txq_stat, priv->tx_queue.available);
4575
4576 bd_queue_initialize(priv, &priv->tx_queue,
4577 IPW_MEM_HOST_SHARED_TX_QUEUE_BD_BASE,
4578 IPW_MEM_HOST_SHARED_TX_QUEUE_BD_SIZE,
4579 IPW_MEM_HOST_SHARED_TX_QUEUE_READ_INDEX,
4580 IPW_MEM_HOST_SHARED_TX_QUEUE_WRITE_INDEX);
4581
4582 IPW_DEBUG_INFO("exit\n");
4583
4584}
4585
4586static void ipw2100_tx_free(struct ipw2100_priv *priv)
4587{
4588 int i;
4589
4590 IPW_DEBUG_INFO("enter\n");
4591
4592 bd_queue_free(priv, &priv->tx_queue);
4593
4594 if (!priv->tx_buffers)
4595 return;
4596
4597 for (i = 0; i < TX_PENDED_QUEUE_LENGTH; i++) {
4598 if (priv->tx_buffers[i].info.d_struct.txb) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004599 libipw_txb_free(priv->tx_buffers[i].info.d_struct.
James Ketrenosee8e3652005-09-14 09:47:29 -05004600 txb);
James Ketrenos2c86c272005-03-23 17:32:29 -06004601 priv->tx_buffers[i].info.d_struct.txb = NULL;
4602 }
4603 if (priv->tx_buffers[i].info.d_struct.data)
James Ketrenosee8e3652005-09-14 09:47:29 -05004604 pci_free_consistent(priv->pci_dev,
4605 sizeof(struct ipw2100_data_header),
4606 priv->tx_buffers[i].info.d_struct.
4607 data,
4608 priv->tx_buffers[i].info.d_struct.
4609 data_phys);
James Ketrenos2c86c272005-03-23 17:32:29 -06004610 }
4611
4612 kfree(priv->tx_buffers);
4613 priv->tx_buffers = NULL;
4614
4615 IPW_DEBUG_INFO("exit\n");
4616}
4617
James Ketrenos2c86c272005-03-23 17:32:29 -06004618static int ipw2100_rx_allocate(struct ipw2100_priv *priv)
4619{
4620 int i, j, err = -EINVAL;
4621
4622 IPW_DEBUG_INFO("enter\n");
4623
4624 err = bd_queue_allocate(priv, &priv->rx_queue, RX_QUEUE_LENGTH);
4625 if (err) {
4626 IPW_DEBUG_INFO("failed bd_queue_allocate\n");
4627 return err;
4628 }
4629
4630 err = status_queue_allocate(priv, RX_QUEUE_LENGTH);
4631 if (err) {
4632 IPW_DEBUG_INFO("failed status_queue_allocate\n");
4633 bd_queue_free(priv, &priv->rx_queue);
4634 return err;
4635 }
4636
4637 /*
4638 * allocate packets
4639 */
Joe Perchesefe4c452010-05-31 20:23:15 -07004640 priv->rx_buffers = kmalloc(RX_QUEUE_LENGTH *
4641 sizeof(struct ipw2100_rx_packet),
4642 GFP_KERNEL);
James Ketrenos2c86c272005-03-23 17:32:29 -06004643 if (!priv->rx_buffers) {
4644 IPW_DEBUG_INFO("can't allocate rx packet buffer table\n");
4645
4646 bd_queue_free(priv, &priv->rx_queue);
4647
4648 status_queue_free(priv);
4649
4650 return -ENOMEM;
4651 }
4652
4653 for (i = 0; i < RX_QUEUE_LENGTH; i++) {
4654 struct ipw2100_rx_packet *packet = &priv->rx_buffers[i];
4655
4656 err = ipw2100_alloc_skb(priv, packet);
4657 if (unlikely(err)) {
4658 err = -ENOMEM;
4659 break;
4660 }
4661
4662 /* The BD holds the cache aligned address */
4663 priv->rx_queue.drv[i].host_addr = packet->dma_addr;
4664 priv->rx_queue.drv[i].buf_length = IPW_RX_NIC_BUFFER_LENGTH;
4665 priv->status_queue.drv[i].status_fields = 0;
4666 }
4667
4668 if (i == RX_QUEUE_LENGTH)
4669 return 0;
4670
4671 for (j = 0; j < i; j++) {
4672 pci_unmap_single(priv->pci_dev, priv->rx_buffers[j].dma_addr,
4673 sizeof(struct ipw2100_rx_packet),
4674 PCI_DMA_FROMDEVICE);
4675 dev_kfree_skb(priv->rx_buffers[j].skb);
4676 }
4677
4678 kfree(priv->rx_buffers);
4679 priv->rx_buffers = NULL;
4680
4681 bd_queue_free(priv, &priv->rx_queue);
4682
4683 status_queue_free(priv);
4684
4685 return err;
4686}
4687
4688static void ipw2100_rx_initialize(struct ipw2100_priv *priv)
4689{
4690 IPW_DEBUG_INFO("enter\n");
4691
4692 priv->rx_queue.oldest = 0;
4693 priv->rx_queue.available = priv->rx_queue.entries - 1;
4694 priv->rx_queue.next = priv->rx_queue.entries - 1;
4695
4696 INIT_STAT(&priv->rxq_stat);
4697 SET_STAT(&priv->rxq_stat, priv->rx_queue.available);
4698
4699 bd_queue_initialize(priv, &priv->rx_queue,
4700 IPW_MEM_HOST_SHARED_RX_BD_BASE,
4701 IPW_MEM_HOST_SHARED_RX_BD_SIZE,
4702 IPW_MEM_HOST_SHARED_RX_READ_INDEX,
4703 IPW_MEM_HOST_SHARED_RX_WRITE_INDEX);
4704
4705 /* set up the status queue */
4706 write_register(priv->net_dev, IPW_MEM_HOST_SHARED_RX_STATUS_BASE,
4707 priv->status_queue.nic);
4708
4709 IPW_DEBUG_INFO("exit\n");
4710}
4711
4712static void ipw2100_rx_free(struct ipw2100_priv *priv)
4713{
4714 int i;
4715
4716 IPW_DEBUG_INFO("enter\n");
4717
4718 bd_queue_free(priv, &priv->rx_queue);
4719 status_queue_free(priv);
4720
4721 if (!priv->rx_buffers)
4722 return;
4723
4724 for (i = 0; i < RX_QUEUE_LENGTH; i++) {
4725 if (priv->rx_buffers[i].rxp) {
4726 pci_unmap_single(priv->pci_dev,
4727 priv->rx_buffers[i].dma_addr,
4728 sizeof(struct ipw2100_rx),
4729 PCI_DMA_FROMDEVICE);
4730 dev_kfree_skb(priv->rx_buffers[i].skb);
4731 }
4732 }
4733
4734 kfree(priv->rx_buffers);
4735 priv->rx_buffers = NULL;
4736
4737 IPW_DEBUG_INFO("exit\n");
4738}
4739
4740static int ipw2100_read_mac_address(struct ipw2100_priv *priv)
4741{
4742 u32 length = ETH_ALEN;
Joe Perches0795af52007-10-03 17:59:30 -07004743 u8 addr[ETH_ALEN];
James Ketrenos2c86c272005-03-23 17:32:29 -06004744
4745 int err;
4746
Joe Perches0795af52007-10-03 17:59:30 -07004747 err = ipw2100_get_ordinal(priv, IPW_ORD_STAT_ADAPTER_MAC, addr, &length);
James Ketrenos2c86c272005-03-23 17:32:29 -06004748 if (err) {
4749 IPW_DEBUG_INFO("MAC address read failed\n");
4750 return -EIO;
4751 }
James Ketrenos2c86c272005-03-23 17:32:29 -06004752
Joe Perches0795af52007-10-03 17:59:30 -07004753 memcpy(priv->net_dev->dev_addr, addr, ETH_ALEN);
Johannes Berge1749612008-10-27 15:59:26 -07004754 IPW_DEBUG_INFO("card MAC is %pM\n", priv->net_dev->dev_addr);
James Ketrenos2c86c272005-03-23 17:32:29 -06004755
4756 return 0;
4757}
4758
4759/********************************************************************
4760 *
4761 * Firmware Commands
4762 *
4763 ********************************************************************/
4764
Jiri Bencc4aee8c2005-08-25 20:04:43 -04004765static int ipw2100_set_mac_address(struct ipw2100_priv *priv, int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06004766{
4767 struct host_command cmd = {
4768 .host_command = ADAPTER_ADDRESS,
4769 .host_command_sequence = 0,
4770 .host_command_length = ETH_ALEN
4771 };
4772 int err;
4773
4774 IPW_DEBUG_HC("SET_MAC_ADDRESS\n");
4775
4776 IPW_DEBUG_INFO("enter\n");
4777
4778 if (priv->config & CFG_CUSTOM_MAC) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004779 memcpy(cmd.host_command_parameters, priv->mac_addr, ETH_ALEN);
James Ketrenos2c86c272005-03-23 17:32:29 -06004780 memcpy(priv->net_dev->dev_addr, priv->mac_addr, ETH_ALEN);
4781 } else
4782 memcpy(cmd.host_command_parameters, priv->net_dev->dev_addr,
4783 ETH_ALEN);
4784
4785 err = ipw2100_hw_send_command(priv, &cmd);
4786
4787 IPW_DEBUG_INFO("exit\n");
4788 return err;
4789}
4790
Jiri Bencc4aee8c2005-08-25 20:04:43 -04004791static int ipw2100_set_port_type(struct ipw2100_priv *priv, u32 port_type,
James Ketrenos2c86c272005-03-23 17:32:29 -06004792 int batch_mode)
4793{
4794 struct host_command cmd = {
4795 .host_command = PORT_TYPE,
4796 .host_command_sequence = 0,
4797 .host_command_length = sizeof(u32)
4798 };
4799 int err;
4800
4801 switch (port_type) {
4802 case IW_MODE_INFRA:
4803 cmd.host_command_parameters[0] = IPW_BSS;
4804 break;
4805 case IW_MODE_ADHOC:
4806 cmd.host_command_parameters[0] = IPW_IBSS;
4807 break;
4808 }
4809
4810 IPW_DEBUG_HC("PORT_TYPE: %s\n",
4811 port_type == IPW_IBSS ? "Ad-Hoc" : "Managed");
4812
4813 if (!batch_mode) {
4814 err = ipw2100_disable_adapter(priv);
4815 if (err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004816 printk(KERN_ERR DRV_NAME
4817 ": %s: Could not disable adapter %d\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06004818 priv->net_dev->name, err);
4819 return err;
4820 }
4821 }
4822
4823 /* send cmd to firmware */
4824 err = ipw2100_hw_send_command(priv, &cmd);
4825
4826 if (!batch_mode)
4827 ipw2100_enable_adapter(priv);
4828
4829 return err;
4830}
4831
Jiri Bencc4aee8c2005-08-25 20:04:43 -04004832static int ipw2100_set_channel(struct ipw2100_priv *priv, u32 channel,
4833 int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06004834{
4835 struct host_command cmd = {
4836 .host_command = CHANNEL,
4837 .host_command_sequence = 0,
4838 .host_command_length = sizeof(u32)
4839 };
4840 int err;
4841
4842 cmd.host_command_parameters[0] = channel;
4843
4844 IPW_DEBUG_HC("CHANNEL: %d\n", channel);
4845
4846 /* If BSS then we don't support channel selection */
4847 if (priv->ieee->iw_mode == IW_MODE_INFRA)
4848 return 0;
4849
4850 if ((channel != 0) &&
4851 ((channel < REG_MIN_CHANNEL) || (channel > REG_MAX_CHANNEL)))
4852 return -EINVAL;
4853
4854 if (!batch_mode) {
4855 err = ipw2100_disable_adapter(priv);
4856 if (err)
4857 return err;
4858 }
4859
4860 err = ipw2100_hw_send_command(priv, &cmd);
4861 if (err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004862 IPW_DEBUG_INFO("Failed to set channel to %d", channel);
James Ketrenos2c86c272005-03-23 17:32:29 -06004863 return err;
4864 }
4865
4866 if (channel)
4867 priv->config |= CFG_STATIC_CHANNEL;
4868 else
4869 priv->config &= ~CFG_STATIC_CHANNEL;
4870
4871 priv->channel = channel;
4872
4873 if (!batch_mode) {
4874 err = ipw2100_enable_adapter(priv);
4875 if (err)
4876 return err;
4877 }
4878
4879 return 0;
4880}
4881
Jiri Bencc4aee8c2005-08-25 20:04:43 -04004882static int ipw2100_system_config(struct ipw2100_priv *priv, int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06004883{
4884 struct host_command cmd = {
4885 .host_command = SYSTEM_CONFIG,
4886 .host_command_sequence = 0,
4887 .host_command_length = 12,
4888 };
4889 u32 ibss_mask, len = sizeof(u32);
4890 int err;
4891
4892 /* Set system configuration */
4893
4894 if (!batch_mode) {
4895 err = ipw2100_disable_adapter(priv);
4896 if (err)
4897 return err;
4898 }
4899
4900 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
4901 cmd.host_command_parameters[0] |= IPW_CFG_IBSS_AUTO_START;
4902
4903 cmd.host_command_parameters[0] |= IPW_CFG_IBSS_MASK |
James Ketrenosee8e3652005-09-14 09:47:29 -05004904 IPW_CFG_BSS_MASK | IPW_CFG_802_1x_ENABLE;
James Ketrenos2c86c272005-03-23 17:32:29 -06004905
4906 if (!(priv->config & CFG_LONG_PREAMBLE))
4907 cmd.host_command_parameters[0] |= IPW_CFG_PREAMBLE_AUTO;
4908
4909 err = ipw2100_get_ordinal(priv,
4910 IPW_ORD_EEPROM_IBSS_11B_CHANNELS,
James Ketrenosee8e3652005-09-14 09:47:29 -05004911 &ibss_mask, &len);
James Ketrenos2c86c272005-03-23 17:32:29 -06004912 if (err)
4913 ibss_mask = IPW_IBSS_11B_DEFAULT_MASK;
4914
4915 cmd.host_command_parameters[1] = REG_CHANNEL_MASK;
4916 cmd.host_command_parameters[2] = REG_CHANNEL_MASK & ibss_mask;
4917
4918 /* 11b only */
James Ketrenosee8e3652005-09-14 09:47:29 -05004919 /*cmd.host_command_parameters[0] |= DIVERSITY_ANTENNA_A; */
James Ketrenos2c86c272005-03-23 17:32:29 -06004920
4921 err = ipw2100_hw_send_command(priv, &cmd);
4922 if (err)
4923 return err;
4924
4925/* If IPv6 is configured in the kernel then we don't want to filter out all
4926 * of the multicast packets as IPv6 needs some. */
4927#if !defined(CONFIG_IPV6) && !defined(CONFIG_IPV6_MODULE)
4928 cmd.host_command = ADD_MULTICAST;
4929 cmd.host_command_sequence = 0;
4930 cmd.host_command_length = 0;
4931
4932 ipw2100_hw_send_command(priv, &cmd);
4933#endif
4934 if (!batch_mode) {
4935 err = ipw2100_enable_adapter(priv);
4936 if (err)
4937 return err;
4938 }
4939
4940 return 0;
4941}
4942
Jiri Bencc4aee8c2005-08-25 20:04:43 -04004943static int ipw2100_set_tx_rates(struct ipw2100_priv *priv, u32 rate,
4944 int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06004945{
4946 struct host_command cmd = {
4947 .host_command = BASIC_TX_RATES,
4948 .host_command_sequence = 0,
4949 .host_command_length = 4
4950 };
4951 int err;
4952
4953 cmd.host_command_parameters[0] = rate & TX_RATE_MASK;
4954
4955 if (!batch_mode) {
4956 err = ipw2100_disable_adapter(priv);
4957 if (err)
4958 return err;
4959 }
4960
4961 /* Set BASIC TX Rate first */
4962 ipw2100_hw_send_command(priv, &cmd);
4963
4964 /* Set TX Rate */
4965 cmd.host_command = TX_RATES;
4966 ipw2100_hw_send_command(priv, &cmd);
4967
4968 /* Set MSDU TX Rate */
4969 cmd.host_command = MSDU_TX_RATES;
4970 ipw2100_hw_send_command(priv, &cmd);
4971
4972 if (!batch_mode) {
4973 err = ipw2100_enable_adapter(priv);
4974 if (err)
4975 return err;
4976 }
4977
4978 priv->tx_rates = rate;
4979
4980 return 0;
4981}
4982
James Ketrenosee8e3652005-09-14 09:47:29 -05004983static int ipw2100_set_power_mode(struct ipw2100_priv *priv, int power_level)
James Ketrenos2c86c272005-03-23 17:32:29 -06004984{
4985 struct host_command cmd = {
4986 .host_command = POWER_MODE,
4987 .host_command_sequence = 0,
4988 .host_command_length = 4
4989 };
4990 int err;
4991
4992 cmd.host_command_parameters[0] = power_level;
4993
4994 err = ipw2100_hw_send_command(priv, &cmd);
4995 if (err)
4996 return err;
4997
4998 if (power_level == IPW_POWER_MODE_CAM)
4999 priv->power_mode = IPW_POWER_LEVEL(priv->power_mode);
5000 else
5001 priv->power_mode = IPW_POWER_ENABLED | power_level;
5002
Robert P. J. Dayae800312007-01-31 02:39:40 -05005003#ifdef IPW2100_TX_POWER
James Ketrenosee8e3652005-09-14 09:47:29 -05005004 if (priv->port_type == IBSS && priv->adhoc_power != DFTL_IBSS_TX_POWER) {
James Ketrenos2c86c272005-03-23 17:32:29 -06005005 /* Set beacon interval */
5006 cmd.host_command = TX_POWER_INDEX;
James Ketrenosee8e3652005-09-14 09:47:29 -05005007 cmd.host_command_parameters[0] = (u32) priv->adhoc_power;
James Ketrenos2c86c272005-03-23 17:32:29 -06005008
5009 err = ipw2100_hw_send_command(priv, &cmd);
5010 if (err)
5011 return err;
5012 }
5013#endif
5014
5015 return 0;
5016}
5017
Jiri Bencc4aee8c2005-08-25 20:04:43 -04005018static int ipw2100_set_rts_threshold(struct ipw2100_priv *priv, u32 threshold)
James Ketrenos2c86c272005-03-23 17:32:29 -06005019{
5020 struct host_command cmd = {
5021 .host_command = RTS_THRESHOLD,
5022 .host_command_sequence = 0,
5023 .host_command_length = 4
5024 };
5025 int err;
5026
5027 if (threshold & RTS_DISABLED)
5028 cmd.host_command_parameters[0] = MAX_RTS_THRESHOLD;
5029 else
5030 cmd.host_command_parameters[0] = threshold & ~RTS_DISABLED;
5031
5032 err = ipw2100_hw_send_command(priv, &cmd);
5033 if (err)
5034 return err;
5035
5036 priv->rts_threshold = threshold;
5037
5038 return 0;
5039}
5040
5041#if 0
5042int ipw2100_set_fragmentation_threshold(struct ipw2100_priv *priv,
5043 u32 threshold, int batch_mode)
5044{
5045 struct host_command cmd = {
5046 .host_command = FRAG_THRESHOLD,
5047 .host_command_sequence = 0,
5048 .host_command_length = 4,
5049 .host_command_parameters[0] = 0,
5050 };
5051 int err;
5052
5053 if (!batch_mode) {
5054 err = ipw2100_disable_adapter(priv);
5055 if (err)
5056 return err;
5057 }
5058
5059 if (threshold == 0)
5060 threshold = DEFAULT_FRAG_THRESHOLD;
5061 else {
5062 threshold = max(threshold, MIN_FRAG_THRESHOLD);
5063 threshold = min(threshold, MAX_FRAG_THRESHOLD);
5064 }
5065
5066 cmd.host_command_parameters[0] = threshold;
5067
5068 IPW_DEBUG_HC("FRAG_THRESHOLD: %u\n", threshold);
5069
5070 err = ipw2100_hw_send_command(priv, &cmd);
5071
5072 if (!batch_mode)
5073 ipw2100_enable_adapter(priv);
5074
5075 if (!err)
5076 priv->frag_threshold = threshold;
5077
5078 return err;
5079}
5080#endif
5081
Jiri Bencc4aee8c2005-08-25 20:04:43 -04005082static int ipw2100_set_short_retry(struct ipw2100_priv *priv, u32 retry)
James Ketrenos2c86c272005-03-23 17:32:29 -06005083{
5084 struct host_command cmd = {
5085 .host_command = SHORT_RETRY_LIMIT,
5086 .host_command_sequence = 0,
5087 .host_command_length = 4
5088 };
5089 int err;
5090
5091 cmd.host_command_parameters[0] = retry;
5092
5093 err = ipw2100_hw_send_command(priv, &cmd);
5094 if (err)
5095 return err;
5096
5097 priv->short_retry_limit = retry;
5098
5099 return 0;
5100}
5101
Jiri Bencc4aee8c2005-08-25 20:04:43 -04005102static int ipw2100_set_long_retry(struct ipw2100_priv *priv, u32 retry)
James Ketrenos2c86c272005-03-23 17:32:29 -06005103{
5104 struct host_command cmd = {
5105 .host_command = LONG_RETRY_LIMIT,
5106 .host_command_sequence = 0,
5107 .host_command_length = 4
5108 };
5109 int err;
5110
5111 cmd.host_command_parameters[0] = retry;
5112
5113 err = ipw2100_hw_send_command(priv, &cmd);
5114 if (err)
5115 return err;
5116
5117 priv->long_retry_limit = retry;
5118
5119 return 0;
5120}
5121
James Ketrenosee8e3652005-09-14 09:47:29 -05005122static int ipw2100_set_mandatory_bssid(struct ipw2100_priv *priv, u8 * bssid,
Jiri Bencc4aee8c2005-08-25 20:04:43 -04005123 int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06005124{
5125 struct host_command cmd = {
5126 .host_command = MANDATORY_BSSID,
5127 .host_command_sequence = 0,
5128 .host_command_length = (bssid == NULL) ? 0 : ETH_ALEN
5129 };
5130 int err;
5131
Brice Goglin0f52bf92005-12-01 01:41:46 -08005132#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06005133 if (bssid != NULL)
Johannes Berge1749612008-10-27 15:59:26 -07005134 IPW_DEBUG_HC("MANDATORY_BSSID: %pM\n", bssid);
James Ketrenos2c86c272005-03-23 17:32:29 -06005135 else
5136 IPW_DEBUG_HC("MANDATORY_BSSID: <clear>\n");
5137#endif
5138 /* if BSSID is empty then we disable mandatory bssid mode */
5139 if (bssid != NULL)
James Ketrenos82328352005-08-24 22:33:31 -05005140 memcpy(cmd.host_command_parameters, bssid, ETH_ALEN);
James Ketrenos2c86c272005-03-23 17:32:29 -06005141
5142 if (!batch_mode) {
5143 err = ipw2100_disable_adapter(priv);
5144 if (err)
5145 return err;
5146 }
5147
5148 err = ipw2100_hw_send_command(priv, &cmd);
5149
5150 if (!batch_mode)
5151 ipw2100_enable_adapter(priv);
5152
5153 return err;
5154}
5155
James Ketrenos2c86c272005-03-23 17:32:29 -06005156static int ipw2100_disassociate_bssid(struct ipw2100_priv *priv)
5157{
5158 struct host_command cmd = {
5159 .host_command = DISASSOCIATION_BSSID,
5160 .host_command_sequence = 0,
5161 .host_command_length = ETH_ALEN
5162 };
5163 int err;
5164 int len;
5165
5166 IPW_DEBUG_HC("DISASSOCIATION_BSSID\n");
5167
5168 len = ETH_ALEN;
5169 /* The Firmware currently ignores the BSSID and just disassociates from
5170 * the currently associated AP -- but in the off chance that a future
5171 * firmware does use the BSSID provided here, we go ahead and try and
5172 * set it to the currently associated AP's BSSID */
5173 memcpy(cmd.host_command_parameters, priv->bssid, ETH_ALEN);
5174
5175 err = ipw2100_hw_send_command(priv, &cmd);
5176
5177 return err;
5178}
James Ketrenos2c86c272005-03-23 17:32:29 -06005179
5180static int ipw2100_set_wpa_ie(struct ipw2100_priv *,
5181 struct ipw2100_wpa_assoc_frame *, int)
James Ketrenosee8e3652005-09-14 09:47:29 -05005182 __attribute__ ((unused));
James Ketrenos2c86c272005-03-23 17:32:29 -06005183
5184static int ipw2100_set_wpa_ie(struct ipw2100_priv *priv,
5185 struct ipw2100_wpa_assoc_frame *wpa_frame,
5186 int batch_mode)
5187{
5188 struct host_command cmd = {
5189 .host_command = SET_WPA_IE,
5190 .host_command_sequence = 0,
5191 .host_command_length = sizeof(struct ipw2100_wpa_assoc_frame),
5192 };
5193 int err;
5194
5195 IPW_DEBUG_HC("SET_WPA_IE\n");
5196
5197 if (!batch_mode) {
5198 err = ipw2100_disable_adapter(priv);
5199 if (err)
5200 return err;
5201 }
5202
5203 memcpy(cmd.host_command_parameters, wpa_frame,
5204 sizeof(struct ipw2100_wpa_assoc_frame));
5205
5206 err = ipw2100_hw_send_command(priv, &cmd);
5207
5208 if (!batch_mode) {
5209 if (ipw2100_enable_adapter(priv))
5210 err = -EIO;
5211 }
5212
5213 return err;
5214}
5215
5216struct security_info_params {
5217 u32 allowed_ciphers;
5218 u16 version;
5219 u8 auth_mode;
5220 u8 replay_counters_number;
5221 u8 unicast_using_group;
Eric Dumazetba2d3582010-06-02 18:10:09 +00005222} __packed;
James Ketrenos2c86c272005-03-23 17:32:29 -06005223
Jiri Bencc4aee8c2005-08-25 20:04:43 -04005224static int ipw2100_set_security_information(struct ipw2100_priv *priv,
5225 int auth_mode,
5226 int security_level,
5227 int unicast_using_group,
5228 int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06005229{
5230 struct host_command cmd = {
5231 .host_command = SET_SECURITY_INFORMATION,
5232 .host_command_sequence = 0,
5233 .host_command_length = sizeof(struct security_info_params)
5234 };
5235 struct security_info_params *security =
James Ketrenosee8e3652005-09-14 09:47:29 -05005236 (struct security_info_params *)&cmd.host_command_parameters;
James Ketrenos2c86c272005-03-23 17:32:29 -06005237 int err;
5238 memset(security, 0, sizeof(*security));
5239
5240 /* If shared key AP authentication is turned on, then we need to
5241 * configure the firmware to try and use it.
5242 *
5243 * Actual data encryption/decryption is handled by the host. */
5244 security->auth_mode = auth_mode;
5245 security->unicast_using_group = unicast_using_group;
5246
5247 switch (security_level) {
5248 default:
5249 case SEC_LEVEL_0:
5250 security->allowed_ciphers = IPW_NONE_CIPHER;
5251 break;
5252 case SEC_LEVEL_1:
5253 security->allowed_ciphers = IPW_WEP40_CIPHER |
James Ketrenosee8e3652005-09-14 09:47:29 -05005254 IPW_WEP104_CIPHER;
James Ketrenos2c86c272005-03-23 17:32:29 -06005255 break;
5256 case SEC_LEVEL_2:
5257 security->allowed_ciphers = IPW_WEP40_CIPHER |
James Ketrenosee8e3652005-09-14 09:47:29 -05005258 IPW_WEP104_CIPHER | IPW_TKIP_CIPHER;
James Ketrenos2c86c272005-03-23 17:32:29 -06005259 break;
5260 case SEC_LEVEL_2_CKIP:
5261 security->allowed_ciphers = IPW_WEP40_CIPHER |
James Ketrenosee8e3652005-09-14 09:47:29 -05005262 IPW_WEP104_CIPHER | IPW_CKIP_CIPHER;
James Ketrenos2c86c272005-03-23 17:32:29 -06005263 break;
5264 case SEC_LEVEL_3:
5265 security->allowed_ciphers = IPW_WEP40_CIPHER |
James Ketrenosee8e3652005-09-14 09:47:29 -05005266 IPW_WEP104_CIPHER | IPW_TKIP_CIPHER | IPW_CCMP_CIPHER;
James Ketrenos2c86c272005-03-23 17:32:29 -06005267 break;
5268 }
5269
James Ketrenosee8e3652005-09-14 09:47:29 -05005270 IPW_DEBUG_HC
5271 ("SET_SECURITY_INFORMATION: auth:%d cipher:0x%02X (level %d)\n",
5272 security->auth_mode, security->allowed_ciphers, security_level);
James Ketrenos2c86c272005-03-23 17:32:29 -06005273
5274 security->replay_counters_number = 0;
5275
5276 if (!batch_mode) {
5277 err = ipw2100_disable_adapter(priv);
5278 if (err)
5279 return err;
5280 }
5281
5282 err = ipw2100_hw_send_command(priv, &cmd);
5283
5284 if (!batch_mode)
5285 ipw2100_enable_adapter(priv);
5286
5287 return err;
5288}
5289
James Ketrenosee8e3652005-09-14 09:47:29 -05005290static int ipw2100_set_tx_power(struct ipw2100_priv *priv, u32 tx_power)
James Ketrenos2c86c272005-03-23 17:32:29 -06005291{
5292 struct host_command cmd = {
5293 .host_command = TX_POWER_INDEX,
5294 .host_command_sequence = 0,
5295 .host_command_length = 4
5296 };
5297 int err = 0;
Zhu Yi3173ca02006-01-24 13:49:01 +08005298 u32 tmp = tx_power;
James Ketrenos2c86c272005-03-23 17:32:29 -06005299
Liu Hongf75459e2005-07-13 12:29:21 -05005300 if (tx_power != IPW_TX_POWER_DEFAULT)
Zhu Yi3173ca02006-01-24 13:49:01 +08005301 tmp = (tx_power - IPW_TX_POWER_MIN_DBM) * 16 /
5302 (IPW_TX_POWER_MAX_DBM - IPW_TX_POWER_MIN_DBM);
Liu Hongf75459e2005-07-13 12:29:21 -05005303
Zhu Yi3173ca02006-01-24 13:49:01 +08005304 cmd.host_command_parameters[0] = tmp;
James Ketrenos2c86c272005-03-23 17:32:29 -06005305
5306 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
5307 err = ipw2100_hw_send_command(priv, &cmd);
5308 if (!err)
5309 priv->tx_power = tx_power;
5310
5311 return 0;
5312}
5313
Jiri Bencc4aee8c2005-08-25 20:04:43 -04005314static int ipw2100_set_ibss_beacon_interval(struct ipw2100_priv *priv,
5315 u32 interval, int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06005316{
5317 struct host_command cmd = {
5318 .host_command = BEACON_INTERVAL,
5319 .host_command_sequence = 0,
5320 .host_command_length = 4
5321 };
5322 int err;
5323
5324 cmd.host_command_parameters[0] = interval;
5325
5326 IPW_DEBUG_INFO("enter\n");
5327
5328 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
5329 if (!batch_mode) {
5330 err = ipw2100_disable_adapter(priv);
5331 if (err)
5332 return err;
5333 }
5334
5335 ipw2100_hw_send_command(priv, &cmd);
5336
5337 if (!batch_mode) {
5338 err = ipw2100_enable_adapter(priv);
5339 if (err)
5340 return err;
5341 }
5342 }
5343
5344 IPW_DEBUG_INFO("exit\n");
5345
5346 return 0;
5347}
5348
Hannes Edera3d1fd22008-12-26 00:14:41 -08005349static void ipw2100_queues_initialize(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06005350{
5351 ipw2100_tx_initialize(priv);
5352 ipw2100_rx_initialize(priv);
5353 ipw2100_msg_initialize(priv);
5354}
5355
Hannes Edera3d1fd22008-12-26 00:14:41 -08005356static void ipw2100_queues_free(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06005357{
5358 ipw2100_tx_free(priv);
5359 ipw2100_rx_free(priv);
5360 ipw2100_msg_free(priv);
5361}
5362
Hannes Edera3d1fd22008-12-26 00:14:41 -08005363static int ipw2100_queues_allocate(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06005364{
5365 if (ipw2100_tx_allocate(priv) ||
James Ketrenosee8e3652005-09-14 09:47:29 -05005366 ipw2100_rx_allocate(priv) || ipw2100_msg_allocate(priv))
James Ketrenos2c86c272005-03-23 17:32:29 -06005367 goto fail;
5368
5369 return 0;
5370
James Ketrenosee8e3652005-09-14 09:47:29 -05005371 fail:
James Ketrenos2c86c272005-03-23 17:32:29 -06005372 ipw2100_tx_free(priv);
5373 ipw2100_rx_free(priv);
5374 ipw2100_msg_free(priv);
5375 return -ENOMEM;
5376}
5377
5378#define IPW_PRIVACY_CAPABLE 0x0008
5379
5380static int ipw2100_set_wep_flags(struct ipw2100_priv *priv, u32 flags,
5381 int batch_mode)
5382{
5383 struct host_command cmd = {
5384 .host_command = WEP_FLAGS,
5385 .host_command_sequence = 0,
5386 .host_command_length = 4
5387 };
5388 int err;
5389
5390 cmd.host_command_parameters[0] = flags;
5391
5392 IPW_DEBUG_HC("WEP_FLAGS: flags = 0x%08X\n", flags);
5393
5394 if (!batch_mode) {
5395 err = ipw2100_disable_adapter(priv);
5396 if (err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05005397 printk(KERN_ERR DRV_NAME
5398 ": %s: Could not disable adapter %d\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06005399 priv->net_dev->name, err);
5400 return err;
5401 }
5402 }
5403
5404 /* send cmd to firmware */
5405 err = ipw2100_hw_send_command(priv, &cmd);
5406
5407 if (!batch_mode)
5408 ipw2100_enable_adapter(priv);
5409
5410 return err;
5411}
5412
5413struct ipw2100_wep_key {
5414 u8 idx;
5415 u8 len;
5416 u8 key[13];
5417};
5418
5419/* Macros to ease up priting WEP keys */
5420#define WEP_FMT_64 "%02X%02X%02X%02X-%02X"
5421#define WEP_FMT_128 "%02X%02X%02X%02X-%02X%02X%02X%02X-%02X%02X%02X"
5422#define WEP_STR_64(x) x[0],x[1],x[2],x[3],x[4]
5423#define WEP_STR_128(x) x[0],x[1],x[2],x[3],x[4],x[5],x[6],x[7],x[8],x[9],x[10]
5424
James Ketrenos2c86c272005-03-23 17:32:29 -06005425/**
5426 * Set a the wep key
5427 *
5428 * @priv: struct to work on
5429 * @idx: index of the key we want to set
5430 * @key: ptr to the key data to set
5431 * @len: length of the buffer at @key
5432 * @batch_mode: FIXME perform the operation in batch mode, not
5433 * disabling the device.
5434 *
5435 * @returns 0 if OK, < 0 errno code on error.
5436 *
5437 * Fill out a command structure with the new wep key, length an
5438 * index and send it down the wire.
5439 */
5440static int ipw2100_set_key(struct ipw2100_priv *priv,
5441 int idx, char *key, int len, int batch_mode)
5442{
5443 int keylen = len ? (len <= 5 ? 5 : 13) : 0;
5444 struct host_command cmd = {
5445 .host_command = WEP_KEY_INFO,
5446 .host_command_sequence = 0,
5447 .host_command_length = sizeof(struct ipw2100_wep_key),
5448 };
James Ketrenosee8e3652005-09-14 09:47:29 -05005449 struct ipw2100_wep_key *wep_key = (void *)cmd.host_command_parameters;
James Ketrenos2c86c272005-03-23 17:32:29 -06005450 int err;
5451
5452 IPW_DEBUG_HC("WEP_KEY_INFO: index = %d, len = %d/%d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05005453 idx, keylen, len);
James Ketrenos2c86c272005-03-23 17:32:29 -06005454
5455 /* NOTE: We don't check cached values in case the firmware was reset
Adrian Bunk80f72282006-06-30 18:27:16 +02005456 * or some other problem is occurring. If the user is setting the key,
James Ketrenos2c86c272005-03-23 17:32:29 -06005457 * then we push the change */
5458
5459 wep_key->idx = idx;
5460 wep_key->len = keylen;
5461
5462 if (keylen) {
5463 memcpy(wep_key->key, key, len);
5464 memset(wep_key->key + len, 0, keylen - len);
5465 }
5466
5467 /* Will be optimized out on debug not being configured in */
5468 if (keylen == 0)
5469 IPW_DEBUG_WEP("%s: Clearing key %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05005470 priv->net_dev->name, wep_key->idx);
James Ketrenos2c86c272005-03-23 17:32:29 -06005471 else if (keylen == 5)
5472 IPW_DEBUG_WEP("%s: idx: %d, len: %d key: " WEP_FMT_64 "\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05005473 priv->net_dev->name, wep_key->idx, wep_key->len,
5474 WEP_STR_64(wep_key->key));
James Ketrenos2c86c272005-03-23 17:32:29 -06005475 else
5476 IPW_DEBUG_WEP("%s: idx: %d, len: %d key: " WEP_FMT_128
James Ketrenosee8e3652005-09-14 09:47:29 -05005477 "\n",
5478 priv->net_dev->name, wep_key->idx, wep_key->len,
5479 WEP_STR_128(wep_key->key));
James Ketrenos2c86c272005-03-23 17:32:29 -06005480
5481 if (!batch_mode) {
5482 err = ipw2100_disable_adapter(priv);
5483 /* FIXME: IPG: shouldn't this prink be in _disable_adapter()? */
5484 if (err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05005485 printk(KERN_ERR DRV_NAME
5486 ": %s: Could not disable adapter %d\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06005487 priv->net_dev->name, err);
5488 return err;
5489 }
5490 }
5491
5492 /* send cmd to firmware */
5493 err = ipw2100_hw_send_command(priv, &cmd);
5494
5495 if (!batch_mode) {
5496 int err2 = ipw2100_enable_adapter(priv);
5497 if (err == 0)
5498 err = err2;
5499 }
5500 return err;
5501}
5502
5503static int ipw2100_set_key_index(struct ipw2100_priv *priv,
5504 int idx, int batch_mode)
5505{
5506 struct host_command cmd = {
5507 .host_command = WEP_KEY_INDEX,
5508 .host_command_sequence = 0,
5509 .host_command_length = 4,
James Ketrenosee8e3652005-09-14 09:47:29 -05005510 .host_command_parameters = {idx},
James Ketrenos2c86c272005-03-23 17:32:29 -06005511 };
5512 int err;
5513
5514 IPW_DEBUG_HC("WEP_KEY_INDEX: index = %d\n", idx);
5515
5516 if (idx < 0 || idx > 3)
5517 return -EINVAL;
5518
5519 if (!batch_mode) {
5520 err = ipw2100_disable_adapter(priv);
5521 if (err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05005522 printk(KERN_ERR DRV_NAME
5523 ": %s: Could not disable adapter %d\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06005524 priv->net_dev->name, err);
5525 return err;
5526 }
5527 }
5528
5529 /* send cmd to firmware */
5530 err = ipw2100_hw_send_command(priv, &cmd);
5531
5532 if (!batch_mode)
5533 ipw2100_enable_adapter(priv);
5534
5535 return err;
5536}
5537
James Ketrenosee8e3652005-09-14 09:47:29 -05005538static int ipw2100_configure_security(struct ipw2100_priv *priv, int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06005539{
5540 int i, err, auth_mode, sec_level, use_group;
5541
5542 if (!(priv->status & STATUS_RUNNING))
5543 return 0;
5544
5545 if (!batch_mode) {
5546 err = ipw2100_disable_adapter(priv);
5547 if (err)
5548 return err;
5549 }
5550
25b645b2005-07-12 15:45:30 -05005551 if (!priv->ieee->sec.enabled) {
James Ketrenosee8e3652005-09-14 09:47:29 -05005552 err =
5553 ipw2100_set_security_information(priv, IPW_AUTH_OPEN,
5554 SEC_LEVEL_0, 0, 1);
James Ketrenos2c86c272005-03-23 17:32:29 -06005555 } else {
5556 auth_mode = IPW_AUTH_OPEN;
Zhu Yicbbdd032006-01-24 13:48:53 +08005557 if (priv->ieee->sec.flags & SEC_AUTH_MODE) {
5558 if (priv->ieee->sec.auth_mode == WLAN_AUTH_SHARED_KEY)
5559 auth_mode = IPW_AUTH_SHARED;
5560 else if (priv->ieee->sec.auth_mode == WLAN_AUTH_LEAP)
5561 auth_mode = IPW_AUTH_LEAP_CISCO_ID;
5562 }
James Ketrenos2c86c272005-03-23 17:32:29 -06005563
5564 sec_level = SEC_LEVEL_0;
25b645b2005-07-12 15:45:30 -05005565 if (priv->ieee->sec.flags & SEC_LEVEL)
5566 sec_level = priv->ieee->sec.level;
James Ketrenos2c86c272005-03-23 17:32:29 -06005567
5568 use_group = 0;
25b645b2005-07-12 15:45:30 -05005569 if (priv->ieee->sec.flags & SEC_UNICAST_GROUP)
5570 use_group = priv->ieee->sec.unicast_uses_group;
James Ketrenos2c86c272005-03-23 17:32:29 -06005571
James Ketrenosee8e3652005-09-14 09:47:29 -05005572 err =
5573 ipw2100_set_security_information(priv, auth_mode, sec_level,
5574 use_group, 1);
James Ketrenos2c86c272005-03-23 17:32:29 -06005575 }
5576
5577 if (err)
5578 goto exit;
5579
25b645b2005-07-12 15:45:30 -05005580 if (priv->ieee->sec.enabled) {
James Ketrenos2c86c272005-03-23 17:32:29 -06005581 for (i = 0; i < 4; i++) {
25b645b2005-07-12 15:45:30 -05005582 if (!(priv->ieee->sec.flags & (1 << i))) {
5583 memset(priv->ieee->sec.keys[i], 0, WEP_KEY_LEN);
5584 priv->ieee->sec.key_sizes[i] = 0;
James Ketrenos2c86c272005-03-23 17:32:29 -06005585 } else {
5586 err = ipw2100_set_key(priv, i,
25b645b2005-07-12 15:45:30 -05005587 priv->ieee->sec.keys[i],
5588 priv->ieee->sec.
5589 key_sizes[i], 1);
James Ketrenos2c86c272005-03-23 17:32:29 -06005590 if (err)
5591 goto exit;
5592 }
5593 }
5594
John W. Linville274bfb82008-10-29 11:35:05 -04005595 ipw2100_set_key_index(priv, priv->ieee->crypt_info.tx_keyidx, 1);
James Ketrenos2c86c272005-03-23 17:32:29 -06005596 }
5597
5598 /* Always enable privacy so the Host can filter WEP packets if
5599 * encrypted data is sent up */
James Ketrenosee8e3652005-09-14 09:47:29 -05005600 err =
5601 ipw2100_set_wep_flags(priv,
25b645b2005-07-12 15:45:30 -05005602 priv->ieee->sec.
5603 enabled ? IPW_PRIVACY_CAPABLE : 0, 1);
James Ketrenos2c86c272005-03-23 17:32:29 -06005604 if (err)
5605 goto exit;
5606
5607 priv->status &= ~STATUS_SECURITY_UPDATED;
5608
James Ketrenosee8e3652005-09-14 09:47:29 -05005609 exit:
James Ketrenos2c86c272005-03-23 17:32:29 -06005610 if (!batch_mode)
5611 ipw2100_enable_adapter(priv);
5612
5613 return err;
5614}
5615
David Howellsc4028952006-11-22 14:57:56 +00005616static void ipw2100_security_work(struct work_struct *work)
James Ketrenos2c86c272005-03-23 17:32:29 -06005617{
David Howellsc4028952006-11-22 14:57:56 +00005618 struct ipw2100_priv *priv =
5619 container_of(work, struct ipw2100_priv, security_work.work);
5620
James Ketrenos2c86c272005-03-23 17:32:29 -06005621 /* If we happen to have reconnected before we get a chance to
5622 * process this, then update the security settings--which causes
5623 * a disassociation to occur */
5624 if (!(priv->status & STATUS_ASSOCIATED) &&
5625 priv->status & STATUS_SECURITY_UPDATED)
5626 ipw2100_configure_security(priv, 0);
5627}
5628
5629static void shim__set_security(struct net_device *dev,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005630 struct libipw_security *sec)
James Ketrenos2c86c272005-03-23 17:32:29 -06005631{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005632 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06005633 int i, force_update = 0;
5634
Ingo Molnar752e3772006-02-28 07:20:54 +08005635 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06005636 if (!(priv->status & STATUS_INITIALIZED))
5637 goto done;
5638
5639 for (i = 0; i < 4; i++) {
5640 if (sec->flags & (1 << i)) {
25b645b2005-07-12 15:45:30 -05005641 priv->ieee->sec.key_sizes[i] = sec->key_sizes[i];
James Ketrenos2c86c272005-03-23 17:32:29 -06005642 if (sec->key_sizes[i] == 0)
25b645b2005-07-12 15:45:30 -05005643 priv->ieee->sec.flags &= ~(1 << i);
James Ketrenos2c86c272005-03-23 17:32:29 -06005644 else
25b645b2005-07-12 15:45:30 -05005645 memcpy(priv->ieee->sec.keys[i], sec->keys[i],
James Ketrenos2c86c272005-03-23 17:32:29 -06005646 sec->key_sizes[i]);
Hong Liu054b08d2005-08-25 17:45:49 +08005647 if (sec->level == SEC_LEVEL_1) {
5648 priv->ieee->sec.flags |= (1 << i);
5649 priv->status |= STATUS_SECURITY_UPDATED;
5650 } else
5651 priv->ieee->sec.flags &= ~(1 << i);
James Ketrenos2c86c272005-03-23 17:32:29 -06005652 }
5653 }
5654
5655 if ((sec->flags & SEC_ACTIVE_KEY) &&
25b645b2005-07-12 15:45:30 -05005656 priv->ieee->sec.active_key != sec->active_key) {
James Ketrenos2c86c272005-03-23 17:32:29 -06005657 if (sec->active_key <= 3) {
25b645b2005-07-12 15:45:30 -05005658 priv->ieee->sec.active_key = sec->active_key;
5659 priv->ieee->sec.flags |= SEC_ACTIVE_KEY;
James Ketrenos2c86c272005-03-23 17:32:29 -06005660 } else
25b645b2005-07-12 15:45:30 -05005661 priv->ieee->sec.flags &= ~SEC_ACTIVE_KEY;
James Ketrenos2c86c272005-03-23 17:32:29 -06005662
5663 priv->status |= STATUS_SECURITY_UPDATED;
5664 }
5665
5666 if ((sec->flags & SEC_AUTH_MODE) &&
25b645b2005-07-12 15:45:30 -05005667 (priv->ieee->sec.auth_mode != sec->auth_mode)) {
5668 priv->ieee->sec.auth_mode = sec->auth_mode;
5669 priv->ieee->sec.flags |= SEC_AUTH_MODE;
James Ketrenos2c86c272005-03-23 17:32:29 -06005670 priv->status |= STATUS_SECURITY_UPDATED;
5671 }
5672
25b645b2005-07-12 15:45:30 -05005673 if (sec->flags & SEC_ENABLED && priv->ieee->sec.enabled != sec->enabled) {
5674 priv->ieee->sec.flags |= SEC_ENABLED;
5675 priv->ieee->sec.enabled = sec->enabled;
James Ketrenos2c86c272005-03-23 17:32:29 -06005676 priv->status |= STATUS_SECURITY_UPDATED;
5677 force_update = 1;
5678 }
5679
25b645b2005-07-12 15:45:30 -05005680 if (sec->flags & SEC_ENCRYPT)
5681 priv->ieee->sec.encrypt = sec->encrypt;
5682
5683 if (sec->flags & SEC_LEVEL && priv->ieee->sec.level != sec->level) {
5684 priv->ieee->sec.level = sec->level;
5685 priv->ieee->sec.flags |= SEC_LEVEL;
James Ketrenos2c86c272005-03-23 17:32:29 -06005686 priv->status |= STATUS_SECURITY_UPDATED;
5687 }
5688
5689 IPW_DEBUG_WEP("Security flags: %c %c%c%c%c %c%c%c%c\n",
25b645b2005-07-12 15:45:30 -05005690 priv->ieee->sec.flags & (1 << 8) ? '1' : '0',
5691 priv->ieee->sec.flags & (1 << 7) ? '1' : '0',
5692 priv->ieee->sec.flags & (1 << 6) ? '1' : '0',
5693 priv->ieee->sec.flags & (1 << 5) ? '1' : '0',
5694 priv->ieee->sec.flags & (1 << 4) ? '1' : '0',
5695 priv->ieee->sec.flags & (1 << 3) ? '1' : '0',
5696 priv->ieee->sec.flags & (1 << 2) ? '1' : '0',
5697 priv->ieee->sec.flags & (1 << 1) ? '1' : '0',
5698 priv->ieee->sec.flags & (1 << 0) ? '1' : '0');
James Ketrenos2c86c272005-03-23 17:32:29 -06005699
5700/* As a temporary work around to enable WPA until we figure out why
5701 * wpa_supplicant toggles the security capability of the driver, which
5702 * forces a disassocation with force_update...
5703 *
5704 * if (force_update || !(priv->status & STATUS_ASSOCIATED))*/
5705 if (!(priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)))
5706 ipw2100_configure_security(priv, 0);
James Ketrenosee8e3652005-09-14 09:47:29 -05005707 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08005708 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06005709}
5710
5711static int ipw2100_adapter_setup(struct ipw2100_priv *priv)
5712{
5713 int err;
5714 int batch_mode = 1;
5715 u8 *bssid;
5716
5717 IPW_DEBUG_INFO("enter\n");
5718
5719 err = ipw2100_disable_adapter(priv);
5720 if (err)
5721 return err;
5722#ifdef CONFIG_IPW2100_MONITOR
5723 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
5724 err = ipw2100_set_channel(priv, priv->channel, batch_mode);
5725 if (err)
5726 return err;
5727
5728 IPW_DEBUG_INFO("exit\n");
5729
5730 return 0;
5731 }
James Ketrenosee8e3652005-09-14 09:47:29 -05005732#endif /* CONFIG_IPW2100_MONITOR */
James Ketrenos2c86c272005-03-23 17:32:29 -06005733
5734 err = ipw2100_read_mac_address(priv);
5735 if (err)
5736 return -EIO;
5737
5738 err = ipw2100_set_mac_address(priv, batch_mode);
5739 if (err)
5740 return err;
5741
5742 err = ipw2100_set_port_type(priv, priv->ieee->iw_mode, batch_mode);
5743 if (err)
5744 return err;
5745
5746 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
5747 err = ipw2100_set_channel(priv, priv->channel, batch_mode);
5748 if (err)
5749 return err;
5750 }
5751
James Ketrenosee8e3652005-09-14 09:47:29 -05005752 err = ipw2100_system_config(priv, batch_mode);
James Ketrenos2c86c272005-03-23 17:32:29 -06005753 if (err)
5754 return err;
5755
5756 err = ipw2100_set_tx_rates(priv, priv->tx_rates, batch_mode);
5757 if (err)
5758 return err;
5759
5760 /* Default to power mode OFF */
5761 err = ipw2100_set_power_mode(priv, IPW_POWER_MODE_CAM);
5762 if (err)
5763 return err;
5764
5765 err = ipw2100_set_rts_threshold(priv, priv->rts_threshold);
5766 if (err)
5767 return err;
5768
5769 if (priv->config & CFG_STATIC_BSSID)
5770 bssid = priv->bssid;
5771 else
5772 bssid = NULL;
5773 err = ipw2100_set_mandatory_bssid(priv, bssid, batch_mode);
5774 if (err)
5775 return err;
5776
5777 if (priv->config & CFG_STATIC_ESSID)
5778 err = ipw2100_set_essid(priv, priv->essid, priv->essid_len,
5779 batch_mode);
5780 else
5781 err = ipw2100_set_essid(priv, NULL, 0, batch_mode);
5782 if (err)
5783 return err;
5784
5785 err = ipw2100_configure_security(priv, batch_mode);
5786 if (err)
5787 return err;
5788
5789 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
James Ketrenosee8e3652005-09-14 09:47:29 -05005790 err =
5791 ipw2100_set_ibss_beacon_interval(priv,
5792 priv->beacon_interval,
5793 batch_mode);
James Ketrenos2c86c272005-03-23 17:32:29 -06005794 if (err)
5795 return err;
5796
5797 err = ipw2100_set_tx_power(priv, priv->tx_power);
5798 if (err)
5799 return err;
5800 }
5801
5802 /*
James Ketrenosee8e3652005-09-14 09:47:29 -05005803 err = ipw2100_set_fragmentation_threshold(
5804 priv, priv->frag_threshold, batch_mode);
5805 if (err)
5806 return err;
5807 */
James Ketrenos2c86c272005-03-23 17:32:29 -06005808
5809 IPW_DEBUG_INFO("exit\n");
5810
5811 return 0;
5812}
5813
James Ketrenos2c86c272005-03-23 17:32:29 -06005814/*************************************************************************
5815 *
5816 * EXTERNALLY CALLED METHODS
5817 *
5818 *************************************************************************/
5819
5820/* This method is called by the network layer -- not to be confused with
5821 * ipw2100_set_mac_address() declared above called by this driver (and this
5822 * method as well) to talk to the firmware */
5823static int ipw2100_set_address(struct net_device *dev, void *p)
5824{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005825 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06005826 struct sockaddr *addr = p;
5827 int err = 0;
5828
5829 if (!is_valid_ether_addr(addr->sa_data))
5830 return -EADDRNOTAVAIL;
5831
Ingo Molnar752e3772006-02-28 07:20:54 +08005832 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06005833
5834 priv->config |= CFG_CUSTOM_MAC;
5835 memcpy(priv->mac_addr, addr->sa_data, ETH_ALEN);
5836
5837 err = ipw2100_set_mac_address(priv, 0);
5838 if (err)
5839 goto done;
5840
5841 priv->reset_backoff = 0;
Ingo Molnar752e3772006-02-28 07:20:54 +08005842 mutex_unlock(&priv->action_mutex);
David Howellsc4028952006-11-22 14:57:56 +00005843 ipw2100_reset_adapter(&priv->reset_work.work);
James Ketrenos2c86c272005-03-23 17:32:29 -06005844 return 0;
5845
James Ketrenosee8e3652005-09-14 09:47:29 -05005846 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08005847 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06005848 return err;
5849}
5850
5851static int ipw2100_open(struct net_device *dev)
5852{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005853 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06005854 unsigned long flags;
5855 IPW_DEBUG_INFO("dev->open\n");
5856
5857 spin_lock_irqsave(&priv->low_lock, flags);
Jiri Benc3ce329c2005-08-25 20:07:01 -04005858 if (priv->status & STATUS_ASSOCIATED) {
5859 netif_carrier_on(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06005860 netif_start_queue(dev);
Jiri Benc3ce329c2005-08-25 20:07:01 -04005861 }
James Ketrenos2c86c272005-03-23 17:32:29 -06005862 spin_unlock_irqrestore(&priv->low_lock, flags);
5863
5864 return 0;
5865}
5866
5867static int ipw2100_close(struct net_device *dev)
5868{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005869 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06005870 unsigned long flags;
5871 struct list_head *element;
5872 struct ipw2100_tx_packet *packet;
5873
5874 IPW_DEBUG_INFO("enter\n");
5875
5876 spin_lock_irqsave(&priv->low_lock, flags);
5877
5878 if (priv->status & STATUS_ASSOCIATED)
5879 netif_carrier_off(dev);
5880 netif_stop_queue(dev);
5881
5882 /* Flush the TX queue ... */
5883 while (!list_empty(&priv->tx_pend_list)) {
5884 element = priv->tx_pend_list.next;
James Ketrenosee8e3652005-09-14 09:47:29 -05005885 packet = list_entry(element, struct ipw2100_tx_packet, list);
James Ketrenos2c86c272005-03-23 17:32:29 -06005886
5887 list_del(element);
5888 DEC_STAT(&priv->tx_pend_stat);
5889
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005890 libipw_txb_free(packet->info.d_struct.txb);
James Ketrenos2c86c272005-03-23 17:32:29 -06005891 packet->info.d_struct.txb = NULL;
5892
5893 list_add_tail(element, &priv->tx_free_list);
5894 INC_STAT(&priv->tx_free_stat);
5895 }
5896 spin_unlock_irqrestore(&priv->low_lock, flags);
5897
5898 IPW_DEBUG_INFO("exit\n");
5899
5900 return 0;
5901}
5902
James Ketrenos2c86c272005-03-23 17:32:29 -06005903/*
5904 * TODO: Fix this function... its just wrong
5905 */
5906static void ipw2100_tx_timeout(struct net_device *dev)
5907{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005908 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06005909
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00005910 dev->stats.tx_errors++;
James Ketrenos2c86c272005-03-23 17:32:29 -06005911
5912#ifdef CONFIG_IPW2100_MONITOR
5913 if (priv->ieee->iw_mode == IW_MODE_MONITOR)
5914 return;
5915#endif
5916
5917 IPW_DEBUG_INFO("%s: TX timed out. Scheduling firmware restart.\n",
5918 dev->name);
5919 schedule_reset(priv);
5920}
5921
James Ketrenosee8e3652005-09-14 09:47:29 -05005922static int ipw2100_wpa_enable(struct ipw2100_priv *priv, int value)
5923{
James Ketrenos82328352005-08-24 22:33:31 -05005924 /* This is called when wpa_supplicant loads and closes the driver
5925 * interface. */
5926 priv->ieee->wpa_enabled = value;
5927 return 0;
James Ketrenos2c86c272005-03-23 17:32:29 -06005928}
5929
James Ketrenosee8e3652005-09-14 09:47:29 -05005930static int ipw2100_wpa_set_auth_algs(struct ipw2100_priv *priv, int value)
5931{
James Ketrenos2c86c272005-03-23 17:32:29 -06005932
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005933 struct libipw_device *ieee = priv->ieee;
5934 struct libipw_security sec = {
James Ketrenos2c86c272005-03-23 17:32:29 -06005935 .flags = SEC_AUTH_MODE,
5936 };
5937 int ret = 0;
5938
James Ketrenos82328352005-08-24 22:33:31 -05005939 if (value & IW_AUTH_ALG_SHARED_KEY) {
James Ketrenos2c86c272005-03-23 17:32:29 -06005940 sec.auth_mode = WLAN_AUTH_SHARED_KEY;
5941 ieee->open_wep = 0;
James Ketrenos82328352005-08-24 22:33:31 -05005942 } else if (value & IW_AUTH_ALG_OPEN_SYSTEM) {
James Ketrenos2c86c272005-03-23 17:32:29 -06005943 sec.auth_mode = WLAN_AUTH_OPEN;
5944 ieee->open_wep = 1;
Zhu Yicbbdd032006-01-24 13:48:53 +08005945 } else if (value & IW_AUTH_ALG_LEAP) {
5946 sec.auth_mode = WLAN_AUTH_LEAP;
5947 ieee->open_wep = 1;
James Ketrenos82328352005-08-24 22:33:31 -05005948 } else
5949 return -EINVAL;
James Ketrenos2c86c272005-03-23 17:32:29 -06005950
5951 if (ieee->set_security)
5952 ieee->set_security(ieee->dev, &sec);
5953 else
5954 ret = -EOPNOTSUPP;
5955
5956 return ret;
5957}
5958
Adrian Bunk3c398b82006-01-21 01:36:36 +01005959static void ipw2100_wpa_assoc_frame(struct ipw2100_priv *priv,
5960 char *wpa_ie, int wpa_ie_len)
James Ketrenosee8e3652005-09-14 09:47:29 -05005961{
James Ketrenos2c86c272005-03-23 17:32:29 -06005962
5963 struct ipw2100_wpa_assoc_frame frame;
5964
5965 frame.fixed_ie_mask = 0;
5966
5967 /* copy WPA IE */
5968 memcpy(frame.var_ie, wpa_ie, wpa_ie_len);
5969 frame.var_ie_len = wpa_ie_len;
5970
5971 /* make sure WPA is enabled */
5972 ipw2100_wpa_enable(priv, 1);
5973 ipw2100_set_wpa_ie(priv, &frame, 0);
5974}
5975
James Ketrenos2c86c272005-03-23 17:32:29 -06005976static void ipw_ethtool_get_drvinfo(struct net_device *dev,
5977 struct ethtool_drvinfo *info)
5978{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005979 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06005980 char fw_ver[64], ucode_ver[64];
5981
5982 strcpy(info->driver, DRV_NAME);
5983 strcpy(info->version, DRV_VERSION);
5984
5985 ipw2100_get_fwversion(priv, fw_ver, sizeof(fw_ver));
5986 ipw2100_get_ucodeversion(priv, ucode_ver, sizeof(ucode_ver));
5987
5988 snprintf(info->fw_version, sizeof(info->fw_version), "%s:%d:%s",
5989 fw_ver, priv->eeprom_version, ucode_ver);
5990
5991 strcpy(info->bus_info, pci_name(priv->pci_dev));
5992}
5993
5994static u32 ipw2100_ethtool_get_link(struct net_device *dev)
5995{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005996 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenosee8e3652005-09-14 09:47:29 -05005997 return (priv->status & STATUS_ASSOCIATED) ? 1 : 0;
James Ketrenos2c86c272005-03-23 17:32:29 -06005998}
5999
Jeff Garzik7282d492006-09-13 14:30:00 -04006000static const struct ethtool_ops ipw2100_ethtool_ops = {
James Ketrenosee8e3652005-09-14 09:47:29 -05006001 .get_link = ipw2100_ethtool_get_link,
6002 .get_drvinfo = ipw_ethtool_get_drvinfo,
James Ketrenos2c86c272005-03-23 17:32:29 -06006003};
6004
David Howellsc4028952006-11-22 14:57:56 +00006005static void ipw2100_hang_check(struct work_struct *work)
James Ketrenos2c86c272005-03-23 17:32:29 -06006006{
David Howellsc4028952006-11-22 14:57:56 +00006007 struct ipw2100_priv *priv =
6008 container_of(work, struct ipw2100_priv, hang_check.work);
James Ketrenos2c86c272005-03-23 17:32:29 -06006009 unsigned long flags;
6010 u32 rtc = 0xa5a5a5a5;
6011 u32 len = sizeof(rtc);
6012 int restart = 0;
6013
6014 spin_lock_irqsave(&priv->low_lock, flags);
6015
6016 if (priv->fatal_error != 0) {
6017 /* If fatal_error is set then we need to restart */
6018 IPW_DEBUG_INFO("%s: Hardware fatal error detected.\n",
6019 priv->net_dev->name);
6020
6021 restart = 1;
6022 } else if (ipw2100_get_ordinal(priv, IPW_ORD_RTC_TIME, &rtc, &len) ||
6023 (rtc == priv->last_rtc)) {
6024 /* Check if firmware is hung */
6025 IPW_DEBUG_INFO("%s: Firmware RTC stalled.\n",
6026 priv->net_dev->name);
6027
6028 restart = 1;
6029 }
6030
6031 if (restart) {
6032 /* Kill timer */
6033 priv->stop_hang_check = 1;
6034 priv->hangs++;
6035
6036 /* Restart the NIC */
6037 schedule_reset(priv);
6038 }
6039
6040 priv->last_rtc = rtc;
6041
6042 if (!priv->stop_hang_check)
Tejun Heobcb6d912011-01-26 12:12:50 +01006043 schedule_delayed_work(&priv->hang_check, HZ / 2);
James Ketrenos2c86c272005-03-23 17:32:29 -06006044
6045 spin_unlock_irqrestore(&priv->low_lock, flags);
6046}
6047
David Howellsc4028952006-11-22 14:57:56 +00006048static void ipw2100_rf_kill(struct work_struct *work)
James Ketrenos2c86c272005-03-23 17:32:29 -06006049{
David Howellsc4028952006-11-22 14:57:56 +00006050 struct ipw2100_priv *priv =
6051 container_of(work, struct ipw2100_priv, rf_kill.work);
James Ketrenos2c86c272005-03-23 17:32:29 -06006052 unsigned long flags;
6053
6054 spin_lock_irqsave(&priv->low_lock, flags);
6055
6056 if (rf_kill_active(priv)) {
6057 IPW_DEBUG_RF_KILL("RF Kill active, rescheduling GPIO check\n");
6058 if (!priv->stop_rf_kill)
Tejun Heobcb6d912011-01-26 12:12:50 +01006059 schedule_delayed_work(&priv->rf_kill,
6060 round_jiffies_relative(HZ));
James Ketrenos2c86c272005-03-23 17:32:29 -06006061 goto exit_unlock;
6062 }
6063
6064 /* RF Kill is now disabled, so bring the device back up */
6065
6066 if (!(priv->status & STATUS_RF_KILL_MASK)) {
6067 IPW_DEBUG_RF_KILL("HW RF Kill no longer active, restarting "
6068 "device\n");
6069 schedule_reset(priv);
6070 } else
6071 IPW_DEBUG_RF_KILL("HW RF Kill deactivated. SW RF Kill still "
6072 "enabled\n");
6073
James Ketrenosee8e3652005-09-14 09:47:29 -05006074 exit_unlock:
James Ketrenos2c86c272005-03-23 17:32:29 -06006075 spin_unlock_irqrestore(&priv->low_lock, flags);
6076}
6077
6078static void ipw2100_irq_tasklet(struct ipw2100_priv *priv);
6079
Stephen Hemminger3e47fce2009-03-20 19:36:40 +00006080static const struct net_device_ops ipw2100_netdev_ops = {
6081 .ndo_open = ipw2100_open,
6082 .ndo_stop = ipw2100_close,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006083 .ndo_start_xmit = libipw_xmit,
6084 .ndo_change_mtu = libipw_change_mtu,
Stephen Hemminger3e47fce2009-03-20 19:36:40 +00006085 .ndo_init = ipw2100_net_init,
6086 .ndo_tx_timeout = ipw2100_tx_timeout,
6087 .ndo_set_mac_address = ipw2100_set_address,
6088 .ndo_validate_addr = eth_validate_addr,
6089};
6090
Pavel Roskin27ae60f2010-03-12 00:01:22 -05006091/* Look into using netdev destructor to shutdown libipw? */
James Ketrenos2c86c272005-03-23 17:32:29 -06006092
James Ketrenosee8e3652005-09-14 09:47:29 -05006093static struct net_device *ipw2100_alloc_device(struct pci_dev *pci_dev,
6094 void __iomem * base_addr,
6095 unsigned long mem_start,
6096 unsigned long mem_len)
James Ketrenos2c86c272005-03-23 17:32:29 -06006097{
6098 struct ipw2100_priv *priv;
6099 struct net_device *dev;
6100
Pavel Roskin27ae60f2010-03-12 00:01:22 -05006101 dev = alloc_libipw(sizeof(struct ipw2100_priv), 0);
James Ketrenos2c86c272005-03-23 17:32:29 -06006102 if (!dev)
6103 return NULL;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006104 priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06006105 priv->ieee = netdev_priv(dev);
6106 priv->pci_dev = pci_dev;
6107 priv->net_dev = dev;
6108
6109 priv->ieee->hard_start_xmit = ipw2100_tx;
6110 priv->ieee->set_security = shim__set_security;
6111
James Ketrenos82328352005-08-24 22:33:31 -05006112 priv->ieee->perfect_rssi = -20;
6113 priv->ieee->worst_rssi = -85;
6114
Stephen Hemminger3e47fce2009-03-20 19:36:40 +00006115 dev->netdev_ops = &ipw2100_netdev_ops;
James Ketrenos2c86c272005-03-23 17:32:29 -06006116 dev->ethtool_ops = &ipw2100_ethtool_ops;
James Ketrenos2c86c272005-03-23 17:32:29 -06006117 dev->wireless_handlers = &ipw2100_wx_handler_def;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006118 priv->wireless_data.libipw = priv->ieee;
James Ketrenoseaf8f532005-11-12 12:50:12 -06006119 dev->wireless_data = &priv->wireless_data;
James Ketrenosee8e3652005-09-14 09:47:29 -05006120 dev->watchdog_timeo = 3 * HZ;
James Ketrenos2c86c272005-03-23 17:32:29 -06006121 dev->irq = 0;
6122
6123 dev->base_addr = (unsigned long)base_addr;
6124 dev->mem_start = mem_start;
6125 dev->mem_end = dev->mem_start + mem_len - 1;
6126
6127 /* NOTE: We don't use the wireless_handlers hook
6128 * in dev as the system will start throwing WX requests
6129 * to us before we're actually initialized and it just
6130 * ends up causing problems. So, we just handle
6131 * the WX extensions through the ipw2100_ioctl interface */
6132
Jean Delvarec03983a2007-10-19 23:22:55 +02006133 /* memset() puts everything to 0, so we only have explicitly set
James Ketrenos2c86c272005-03-23 17:32:29 -06006134 * those values that need to be something else */
6135
6136 /* If power management is turned on, default to AUTO mode */
6137 priv->power_mode = IPW_POWER_AUTO;
6138
James Ketrenos82328352005-08-24 22:33:31 -05006139#ifdef CONFIG_IPW2100_MONITOR
6140 priv->config |= CFG_CRC_CHECK;
6141#endif
James Ketrenos2c86c272005-03-23 17:32:29 -06006142 priv->ieee->wpa_enabled = 0;
James Ketrenos2c86c272005-03-23 17:32:29 -06006143 priv->ieee->drop_unencrypted = 0;
6144 priv->ieee->privacy_invoked = 0;
6145 priv->ieee->ieee802_1x = 1;
James Ketrenos2c86c272005-03-23 17:32:29 -06006146
6147 /* Set module parameters */
Reinette Chatre21f8a732009-08-18 10:25:05 -07006148 switch (network_mode) {
James Ketrenos2c86c272005-03-23 17:32:29 -06006149 case 1:
6150 priv->ieee->iw_mode = IW_MODE_ADHOC;
6151 break;
6152#ifdef CONFIG_IPW2100_MONITOR
6153 case 2:
6154 priv->ieee->iw_mode = IW_MODE_MONITOR;
6155 break;
6156#endif
6157 default:
6158 case 0:
6159 priv->ieee->iw_mode = IW_MODE_INFRA;
6160 break;
6161 }
6162
6163 if (disable == 1)
6164 priv->status |= STATUS_RF_KILL_SW;
6165
6166 if (channel != 0 &&
James Ketrenosee8e3652005-09-14 09:47:29 -05006167 ((channel >= REG_MIN_CHANNEL) && (channel <= REG_MAX_CHANNEL))) {
James Ketrenos2c86c272005-03-23 17:32:29 -06006168 priv->config |= CFG_STATIC_CHANNEL;
6169 priv->channel = channel;
6170 }
6171
6172 if (associate)
6173 priv->config |= CFG_ASSOCIATE;
6174
6175 priv->beacon_interval = DEFAULT_BEACON_INTERVAL;
6176 priv->short_retry_limit = DEFAULT_SHORT_RETRY_LIMIT;
6177 priv->long_retry_limit = DEFAULT_LONG_RETRY_LIMIT;
6178 priv->rts_threshold = DEFAULT_RTS_THRESHOLD | RTS_DISABLED;
6179 priv->frag_threshold = DEFAULT_FTS | FRAG_DISABLED;
6180 priv->tx_power = IPW_TX_POWER_DEFAULT;
6181 priv->tx_rates = DEFAULT_TX_RATES;
6182
6183 strcpy(priv->nick, "ipw2100");
6184
6185 spin_lock_init(&priv->low_lock);
Ingo Molnar752e3772006-02-28 07:20:54 +08006186 mutex_init(&priv->action_mutex);
6187 mutex_init(&priv->adapter_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06006188
6189 init_waitqueue_head(&priv->wait_command_queue);
6190
6191 netif_carrier_off(dev);
6192
6193 INIT_LIST_HEAD(&priv->msg_free_list);
6194 INIT_LIST_HEAD(&priv->msg_pend_list);
6195 INIT_STAT(&priv->msg_free_stat);
6196 INIT_STAT(&priv->msg_pend_stat);
6197
6198 INIT_LIST_HEAD(&priv->tx_free_list);
6199 INIT_LIST_HEAD(&priv->tx_pend_list);
6200 INIT_STAT(&priv->tx_free_stat);
6201 INIT_STAT(&priv->tx_pend_stat);
6202
6203 INIT_LIST_HEAD(&priv->fw_pend_list);
6204 INIT_STAT(&priv->fw_pend_stat);
6205
David Howellsc4028952006-11-22 14:57:56 +00006206 INIT_DELAYED_WORK(&priv->reset_work, ipw2100_reset_adapter);
6207 INIT_DELAYED_WORK(&priv->security_work, ipw2100_security_work);
6208 INIT_DELAYED_WORK(&priv->wx_event_work, ipw2100_wx_event_work);
6209 INIT_DELAYED_WORK(&priv->hang_check, ipw2100_hang_check);
6210 INIT_DELAYED_WORK(&priv->rf_kill, ipw2100_rf_kill);
Dan Williamsd20c6782007-10-10 12:28:07 -04006211 INIT_WORK(&priv->scan_event_now, ipw2100_scan_event_now);
6212 INIT_DELAYED_WORK(&priv->scan_event_later, ipw2100_scan_event_later);
James Ketrenos2c86c272005-03-23 17:32:29 -06006213
6214 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
6215 ipw2100_irq_tasklet, (unsigned long)priv);
6216
6217 /* NOTE: We do not start the deferred work for status checks yet */
6218 priv->stop_rf_kill = 1;
6219 priv->stop_hang_check = 1;
6220
6221 return dev;
6222}
6223
James Ketrenos2c86c272005-03-23 17:32:29 -06006224static int ipw2100_pci_init_one(struct pci_dev *pci_dev,
6225 const struct pci_device_id *ent)
6226{
6227 unsigned long mem_start, mem_len, mem_flags;
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01006228 void __iomem *base_addr = NULL;
James Ketrenos2c86c272005-03-23 17:32:29 -06006229 struct net_device *dev = NULL;
6230 struct ipw2100_priv *priv = NULL;
6231 int err = 0;
6232 int registered = 0;
6233 u32 val;
6234
6235 IPW_DEBUG_INFO("enter\n");
6236
6237 mem_start = pci_resource_start(pci_dev, 0);
6238 mem_len = pci_resource_len(pci_dev, 0);
6239 mem_flags = pci_resource_flags(pci_dev, 0);
6240
6241 if ((mem_flags & IORESOURCE_MEM) != IORESOURCE_MEM) {
6242 IPW_DEBUG_INFO("weird - resource type is not memory\n");
6243 err = -ENODEV;
6244 goto fail;
6245 }
6246
6247 base_addr = ioremap_nocache(mem_start, mem_len);
6248 if (!base_addr) {
6249 printk(KERN_WARNING DRV_NAME
6250 "Error calling ioremap_nocache.\n");
6251 err = -EIO;
6252 goto fail;
6253 }
6254
6255 /* allocate and initialize our net_device */
6256 dev = ipw2100_alloc_device(pci_dev, base_addr, mem_start, mem_len);
6257 if (!dev) {
6258 printk(KERN_WARNING DRV_NAME
6259 "Error calling ipw2100_alloc_device.\n");
6260 err = -ENOMEM;
6261 goto fail;
6262 }
6263
6264 /* set up PCI mappings for device */
6265 err = pci_enable_device(pci_dev);
6266 if (err) {
6267 printk(KERN_WARNING DRV_NAME
6268 "Error calling pci_enable_device.\n");
6269 return err;
6270 }
6271
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006272 priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06006273
6274 pci_set_master(pci_dev);
6275 pci_set_drvdata(pci_dev, priv);
6276
Yang Hongyang284901a2009-04-06 19:01:15 -07006277 err = pci_set_dma_mask(pci_dev, DMA_BIT_MASK(32));
James Ketrenos2c86c272005-03-23 17:32:29 -06006278 if (err) {
6279 printk(KERN_WARNING DRV_NAME
6280 "Error calling pci_set_dma_mask.\n");
6281 pci_disable_device(pci_dev);
6282 return err;
6283 }
6284
6285 err = pci_request_regions(pci_dev, DRV_NAME);
6286 if (err) {
6287 printk(KERN_WARNING DRV_NAME
6288 "Error calling pci_request_regions.\n");
6289 pci_disable_device(pci_dev);
6290 return err;
6291 }
6292
James Ketrenosee8e3652005-09-14 09:47:29 -05006293 /* We disable the RETRY_TIMEOUT register (0x41) to keep
James Ketrenos2c86c272005-03-23 17:32:29 -06006294 * PCI Tx retries from interfering with C3 CPU state */
6295 pci_read_config_dword(pci_dev, 0x40, &val);
6296 if ((val & 0x0000ff00) != 0)
6297 pci_write_config_dword(pci_dev, 0x40, val & 0xffff00ff);
6298
Pavel Machek8724a112005-06-20 14:28:43 -07006299 pci_set_power_state(pci_dev, PCI_D0);
James Ketrenos2c86c272005-03-23 17:32:29 -06006300
6301 if (!ipw2100_hw_is_adapter_in_system(dev)) {
6302 printk(KERN_WARNING DRV_NAME
6303 "Device not found via register read.\n");
6304 err = -ENODEV;
6305 goto fail;
6306 }
6307
6308 SET_NETDEV_DEV(dev, &pci_dev->dev);
6309
6310 /* Force interrupts to be shut off on the device */
6311 priv->status |= STATUS_INT_ENABLED;
6312 ipw2100_disable_interrupts(priv);
6313
6314 /* Allocate and initialize the Tx/Rx queues and lists */
6315 if (ipw2100_queues_allocate(priv)) {
6316 printk(KERN_WARNING DRV_NAME
Zhu Yi90c009a2006-12-05 14:41:32 +08006317 "Error calling ipw2100_queues_allocate.\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06006318 err = -ENOMEM;
6319 goto fail;
6320 }
6321 ipw2100_queues_initialize(priv);
6322
6323 err = request_irq(pci_dev->irq,
Thomas Gleixner1fb9df52006-07-01 19:29:39 -07006324 ipw2100_interrupt, IRQF_SHARED, dev->name, priv);
James Ketrenos2c86c272005-03-23 17:32:29 -06006325 if (err) {
6326 printk(KERN_WARNING DRV_NAME
James Ketrenosee8e3652005-09-14 09:47:29 -05006327 "Error calling request_irq: %d.\n", pci_dev->irq);
James Ketrenos2c86c272005-03-23 17:32:29 -06006328 goto fail;
6329 }
6330 dev->irq = pci_dev->irq;
6331
6332 IPW_DEBUG_INFO("Attempting to register device...\n");
6333
James Ketrenos2c86c272005-03-23 17:32:29 -06006334 printk(KERN_INFO DRV_NAME
6335 ": Detected Intel PRO/Wireless 2100 Network Connection\n");
6336
6337 /* Bring up the interface. Pre 0.46, after we registered the
6338 * network device we would call ipw2100_up. This introduced a race
6339 * condition with newer hotplug configurations (network was coming
6340 * up and making calls before the device was initialized).
6341 *
6342 * If we called ipw2100_up before we registered the device, then the
6343 * device name wasn't registered. So, we instead use the net_dev->init
6344 * member to call a function that then just turns and calls ipw2100_up.
6345 * net_dev->init is called after name allocation but before the
6346 * notifier chain is called */
James Ketrenos2c86c272005-03-23 17:32:29 -06006347 err = register_netdev(dev);
6348 if (err) {
6349 printk(KERN_WARNING DRV_NAME
6350 "Error calling register_netdev.\n");
Zhu Yiefbd8092006-08-21 11:38:52 +08006351 goto fail;
James Ketrenos2c86c272005-03-23 17:32:29 -06006352 }
Zhu Yiefbd8092006-08-21 11:38:52 +08006353
6354 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06006355 registered = 1;
6356
6357 IPW_DEBUG_INFO("%s: Bound to %s\n", dev->name, pci_name(pci_dev));
6358
6359 /* perform this after register_netdev so that dev->name is set */
Jeff Garzikde897882006-10-01 07:31:09 -04006360 err = sysfs_create_group(&pci_dev->dev.kobj, &ipw2100_attribute_group);
6361 if (err)
6362 goto fail_unlock;
James Ketrenos2c86c272005-03-23 17:32:29 -06006363
6364 /* If the RF Kill switch is disabled, go ahead and complete the
6365 * startup sequence */
6366 if (!(priv->status & STATUS_RF_KILL_MASK)) {
6367 /* Enable the adapter - sends HOST_COMPLETE */
6368 if (ipw2100_enable_adapter(priv)) {
6369 printk(KERN_WARNING DRV_NAME
6370 ": %s: failed in call to enable adapter.\n",
6371 priv->net_dev->name);
6372 ipw2100_hw_stop_adapter(priv);
6373 err = -EIO;
6374 goto fail_unlock;
6375 }
6376
6377 /* Start a scan . . . */
6378 ipw2100_set_scan_options(priv);
6379 ipw2100_start_scan(priv);
6380 }
6381
6382 IPW_DEBUG_INFO("exit\n");
6383
6384 priv->status |= STATUS_INITIALIZED;
6385
Ingo Molnar752e3772006-02-28 07:20:54 +08006386 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06006387
6388 return 0;
6389
James Ketrenosee8e3652005-09-14 09:47:29 -05006390 fail_unlock:
Ingo Molnar752e3772006-02-28 07:20:54 +08006391 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06006392
James Ketrenosee8e3652005-09-14 09:47:29 -05006393 fail:
James Ketrenos2c86c272005-03-23 17:32:29 -06006394 if (dev) {
John W. Linville143d40f2009-11-06 12:58:20 -05006395 if (registered)
James Ketrenos2c86c272005-03-23 17:32:29 -06006396 unregister_netdev(dev);
6397
6398 ipw2100_hw_stop_adapter(priv);
6399
6400 ipw2100_disable_interrupts(priv);
6401
6402 if (dev->irq)
6403 free_irq(dev->irq, priv);
6404
Tejun Heobcb6d912011-01-26 12:12:50 +01006405 ipw2100_kill_works(priv);
James Ketrenos2c86c272005-03-23 17:32:29 -06006406
6407 /* These are safe to call even if they weren't allocated */
6408 ipw2100_queues_free(priv);
James Ketrenosee8e3652005-09-14 09:47:29 -05006409 sysfs_remove_group(&pci_dev->dev.kobj,
6410 &ipw2100_attribute_group);
James Ketrenos2c86c272005-03-23 17:32:29 -06006411
Pavel Roskin27ae60f2010-03-12 00:01:22 -05006412 free_libipw(dev, 0);
James Ketrenos2c86c272005-03-23 17:32:29 -06006413 pci_set_drvdata(pci_dev, NULL);
6414 }
6415
6416 if (base_addr)
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01006417 iounmap(base_addr);
James Ketrenos2c86c272005-03-23 17:32:29 -06006418
6419 pci_release_regions(pci_dev);
6420 pci_disable_device(pci_dev);
6421
6422 return err;
6423}
6424
6425static void __devexit ipw2100_pci_remove_one(struct pci_dev *pci_dev)
6426{
6427 struct ipw2100_priv *priv = pci_get_drvdata(pci_dev);
6428 struct net_device *dev;
6429
6430 if (priv) {
Ingo Molnar752e3772006-02-28 07:20:54 +08006431 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06006432
6433 priv->status &= ~STATUS_INITIALIZED;
6434
6435 dev = priv->net_dev;
James Ketrenosee8e3652005-09-14 09:47:29 -05006436 sysfs_remove_group(&pci_dev->dev.kobj,
6437 &ipw2100_attribute_group);
James Ketrenos2c86c272005-03-23 17:32:29 -06006438
6439#ifdef CONFIG_PM
6440 if (ipw2100_firmware.version)
6441 ipw2100_release_firmware(priv, &ipw2100_firmware);
6442#endif
6443 /* Take down the hardware */
6444 ipw2100_down(priv);
6445
Ingo Molnar752e3772006-02-28 07:20:54 +08006446 /* Release the mutex so that the network subsystem can
James Ketrenos2c86c272005-03-23 17:32:29 -06006447 * complete any needed calls into the driver... */
Ingo Molnar752e3772006-02-28 07:20:54 +08006448 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06006449
6450 /* Unregister the device first - this results in close()
6451 * being called if the device is open. If we free storage
6452 * first, then close() will crash. */
6453 unregister_netdev(dev);
6454
Tejun Heobcb6d912011-01-26 12:12:50 +01006455 ipw2100_kill_works(priv);
James Ketrenos2c86c272005-03-23 17:32:29 -06006456
6457 ipw2100_queues_free(priv);
6458
6459 /* Free potential debugging firmware snapshot */
6460 ipw2100_snapshot_free(priv);
6461
6462 if (dev->irq)
6463 free_irq(dev->irq, priv);
6464
6465 if (dev->base_addr)
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01006466 iounmap((void __iomem *)dev->base_addr);
James Ketrenos2c86c272005-03-23 17:32:29 -06006467
Pavel Roskin27ae60f2010-03-12 00:01:22 -05006468 /* wiphy_unregister needs to be here, before free_libipw */
Matthew Garrettc26409a2009-11-11 14:36:30 -05006469 wiphy_unregister(priv->ieee->wdev.wiphy);
6470 kfree(priv->ieee->bg_band.channels);
Pavel Roskin27ae60f2010-03-12 00:01:22 -05006471 free_libipw(dev, 0);
James Ketrenos2c86c272005-03-23 17:32:29 -06006472 }
6473
6474 pci_release_regions(pci_dev);
6475 pci_disable_device(pci_dev);
6476
6477 IPW_DEBUG_INFO("exit\n");
6478}
6479
James Ketrenos2c86c272005-03-23 17:32:29 -06006480#ifdef CONFIG_PM
James Ketrenos2c86c272005-03-23 17:32:29 -06006481static int ipw2100_suspend(struct pci_dev *pci_dev, pm_message_t state)
James Ketrenos2c86c272005-03-23 17:32:29 -06006482{
6483 struct ipw2100_priv *priv = pci_get_drvdata(pci_dev);
6484 struct net_device *dev = priv->net_dev;
6485
James Ketrenosee8e3652005-09-14 09:47:29 -05006486 IPW_DEBUG_INFO("%s: Going into suspend...\n", dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06006487
Ingo Molnar752e3772006-02-28 07:20:54 +08006488 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06006489 if (priv->status & STATUS_INITIALIZED) {
6490 /* Take down the device; powers it off, etc. */
6491 ipw2100_down(priv);
6492 }
6493
6494 /* Remove the PRESENT state of the device */
6495 netif_device_detach(dev);
6496
James Ketrenos2c86c272005-03-23 17:32:29 -06006497 pci_save_state(pci_dev);
James Ketrenosee8e3652005-09-14 09:47:29 -05006498 pci_disable_device(pci_dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06006499 pci_set_power_state(pci_dev, PCI_D3hot);
James Ketrenos2c86c272005-03-23 17:32:29 -06006500
Dan Williamsc3d72b92009-02-11 13:26:06 -05006501 priv->suspend_at = get_seconds();
6502
Ingo Molnar752e3772006-02-28 07:20:54 +08006503 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06006504
6505 return 0;
6506}
6507
6508static int ipw2100_resume(struct pci_dev *pci_dev)
6509{
6510 struct ipw2100_priv *priv = pci_get_drvdata(pci_dev);
6511 struct net_device *dev = priv->net_dev;
John W. Linville02e0e5e2006-11-07 20:53:48 -05006512 int err;
James Ketrenos2c86c272005-03-23 17:32:29 -06006513 u32 val;
6514
6515 if (IPW2100_PM_DISABLED)
6516 return 0;
6517
Ingo Molnar752e3772006-02-28 07:20:54 +08006518 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06006519
James Ketrenosee8e3652005-09-14 09:47:29 -05006520 IPW_DEBUG_INFO("%s: Coming out of suspend...\n", dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06006521
James Ketrenos2c86c272005-03-23 17:32:29 -06006522 pci_set_power_state(pci_dev, PCI_D0);
John W. Linville02e0e5e2006-11-07 20:53:48 -05006523 err = pci_enable_device(pci_dev);
6524 if (err) {
6525 printk(KERN_ERR "%s: pci_enable_device failed on resume\n",
6526 dev->name);
Julia Lawall80c42af2008-07-21 09:58:11 +02006527 mutex_unlock(&priv->action_mutex);
John W. Linville02e0e5e2006-11-07 20:53:48 -05006528 return err;
6529 }
James Ketrenos2c86c272005-03-23 17:32:29 -06006530 pci_restore_state(pci_dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06006531
6532 /*
6533 * Suspend/Resume resets the PCI configuration space, so we have to
6534 * re-disable the RETRY_TIMEOUT register (0x41) to keep PCI Tx retries
6535 * from interfering with C3 CPU state. pci_restore_state won't help
6536 * here since it only restores the first 64 bytes pci config header.
6537 */
6538 pci_read_config_dword(pci_dev, 0x40, &val);
6539 if ((val & 0x0000ff00) != 0)
6540 pci_write_config_dword(pci_dev, 0x40, val & 0xffff00ff);
6541
6542 /* Set the device back into the PRESENT state; this will also wake
6543 * the queue of needed */
6544 netif_device_attach(dev);
6545
Dan Williamsc3d72b92009-02-11 13:26:06 -05006546 priv->suspend_time = get_seconds() - priv->suspend_at;
6547
James Ketrenosee8e3652005-09-14 09:47:29 -05006548 /* Bring the device back up */
6549 if (!(priv->status & STATUS_RF_KILL_SW))
6550 ipw2100_up(priv, 0);
James Ketrenos2c86c272005-03-23 17:32:29 -06006551
Ingo Molnar752e3772006-02-28 07:20:54 +08006552 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06006553
6554 return 0;
6555}
6556#endif
6557
Zhu Yi52ce3e9a72009-12-02 14:24:37 +08006558static void ipw2100_shutdown(struct pci_dev *pci_dev)
6559{
6560 struct ipw2100_priv *priv = pci_get_drvdata(pci_dev);
6561
6562 /* Take down the device; powers it off, etc. */
6563 ipw2100_down(priv);
6564
6565 pci_disable_device(pci_dev);
6566}
6567
James Ketrenos2c86c272005-03-23 17:32:29 -06006568#define IPW2100_DEV_ID(x) { PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, x }
6569
Alexey Dobriyana3aa1882010-01-07 11:58:11 +00006570static DEFINE_PCI_DEVICE_TABLE(ipw2100_pci_id_table) = {
James Ketrenosee8e3652005-09-14 09:47:29 -05006571 IPW2100_DEV_ID(0x2520), /* IN 2100A mPCI 3A */
6572 IPW2100_DEV_ID(0x2521), /* IN 2100A mPCI 3B */
6573 IPW2100_DEV_ID(0x2524), /* IN 2100A mPCI 3B */
6574 IPW2100_DEV_ID(0x2525), /* IN 2100A mPCI 3B */
6575 IPW2100_DEV_ID(0x2526), /* IN 2100A mPCI Gen A3 */
6576 IPW2100_DEV_ID(0x2522), /* IN 2100 mPCI 3B */
6577 IPW2100_DEV_ID(0x2523), /* IN 2100 mPCI 3A */
6578 IPW2100_DEV_ID(0x2527), /* IN 2100 mPCI 3B */
6579 IPW2100_DEV_ID(0x2528), /* IN 2100 mPCI 3B */
6580 IPW2100_DEV_ID(0x2529), /* IN 2100 mPCI 3B */
6581 IPW2100_DEV_ID(0x252B), /* IN 2100 mPCI 3A */
6582 IPW2100_DEV_ID(0x252C), /* IN 2100 mPCI 3A */
6583 IPW2100_DEV_ID(0x252D), /* IN 2100 mPCI 3A */
James Ketrenos2c86c272005-03-23 17:32:29 -06006584
James Ketrenosee8e3652005-09-14 09:47:29 -05006585 IPW2100_DEV_ID(0x2550), /* IB 2100A mPCI 3B */
6586 IPW2100_DEV_ID(0x2551), /* IB 2100 mPCI 3B */
6587 IPW2100_DEV_ID(0x2553), /* IB 2100 mPCI 3B */
6588 IPW2100_DEV_ID(0x2554), /* IB 2100 mPCI 3B */
6589 IPW2100_DEV_ID(0x2555), /* IB 2100 mPCI 3B */
James Ketrenos2c86c272005-03-23 17:32:29 -06006590
James Ketrenosee8e3652005-09-14 09:47:29 -05006591 IPW2100_DEV_ID(0x2560), /* DE 2100A mPCI 3A */
6592 IPW2100_DEV_ID(0x2562), /* DE 2100A mPCI 3A */
6593 IPW2100_DEV_ID(0x2563), /* DE 2100A mPCI 3A */
6594 IPW2100_DEV_ID(0x2561), /* DE 2100 mPCI 3A */
6595 IPW2100_DEV_ID(0x2565), /* DE 2100 mPCI 3A */
6596 IPW2100_DEV_ID(0x2566), /* DE 2100 mPCI 3A */
6597 IPW2100_DEV_ID(0x2567), /* DE 2100 mPCI 3A */
James Ketrenos2c86c272005-03-23 17:32:29 -06006598
James Ketrenosee8e3652005-09-14 09:47:29 -05006599 IPW2100_DEV_ID(0x2570), /* GA 2100 mPCI 3B */
James Ketrenos2c86c272005-03-23 17:32:29 -06006600
James Ketrenosee8e3652005-09-14 09:47:29 -05006601 IPW2100_DEV_ID(0x2580), /* TO 2100A mPCI 3B */
6602 IPW2100_DEV_ID(0x2582), /* TO 2100A mPCI 3B */
6603 IPW2100_DEV_ID(0x2583), /* TO 2100A mPCI 3B */
6604 IPW2100_DEV_ID(0x2581), /* TO 2100 mPCI 3B */
6605 IPW2100_DEV_ID(0x2585), /* TO 2100 mPCI 3B */
6606 IPW2100_DEV_ID(0x2586), /* TO 2100 mPCI 3B */
6607 IPW2100_DEV_ID(0x2587), /* TO 2100 mPCI 3B */
James Ketrenos2c86c272005-03-23 17:32:29 -06006608
James Ketrenosee8e3652005-09-14 09:47:29 -05006609 IPW2100_DEV_ID(0x2590), /* SO 2100A mPCI 3B */
6610 IPW2100_DEV_ID(0x2592), /* SO 2100A mPCI 3B */
6611 IPW2100_DEV_ID(0x2591), /* SO 2100 mPCI 3B */
6612 IPW2100_DEV_ID(0x2593), /* SO 2100 mPCI 3B */
6613 IPW2100_DEV_ID(0x2596), /* SO 2100 mPCI 3B */
6614 IPW2100_DEV_ID(0x2598), /* SO 2100 mPCI 3B */
James Ketrenos2c86c272005-03-23 17:32:29 -06006615
James Ketrenosee8e3652005-09-14 09:47:29 -05006616 IPW2100_DEV_ID(0x25A0), /* HP 2100 mPCI 3B */
James Ketrenos2c86c272005-03-23 17:32:29 -06006617 {0,},
6618};
6619
6620MODULE_DEVICE_TABLE(pci, ipw2100_pci_id_table);
6621
6622static struct pci_driver ipw2100_pci_driver = {
6623 .name = DRV_NAME,
6624 .id_table = ipw2100_pci_id_table,
6625 .probe = ipw2100_pci_init_one,
6626 .remove = __devexit_p(ipw2100_pci_remove_one),
6627#ifdef CONFIG_PM
6628 .suspend = ipw2100_suspend,
6629 .resume = ipw2100_resume,
6630#endif
Zhu Yi52ce3e9a72009-12-02 14:24:37 +08006631 .shutdown = ipw2100_shutdown,
James Ketrenos2c86c272005-03-23 17:32:29 -06006632};
6633
James Ketrenos2c86c272005-03-23 17:32:29 -06006634/**
6635 * Initialize the ipw2100 driver/module
6636 *
6637 * @returns 0 if ok, < 0 errno node con error.
6638 *
6639 * Note: we cannot init the /proc stuff until the PCI driver is there,
6640 * or we risk an unlikely race condition on someone accessing
6641 * uninitialized data in the PCI dev struct through /proc.
6642 */
6643static int __init ipw2100_init(void)
6644{
6645 int ret;
6646
6647 printk(KERN_INFO DRV_NAME ": %s, %s\n", DRV_DESCRIPTION, DRV_VERSION);
6648 printk(KERN_INFO DRV_NAME ": %s\n", DRV_COPYRIGHT);
6649
John W. Linville2f81b472010-08-11 16:11:00 -04006650 pm_qos_add_request(&ipw2100_pm_qos_req, PM_QOS_CPU_DMA_LATENCY,
6651 PM_QOS_DEFAULT_VALUE);
6652
Jeff Garzik29917622006-08-19 17:48:59 -04006653 ret = pci_register_driver(&ipw2100_pci_driver);
Jeff Garzikde897882006-10-01 07:31:09 -04006654 if (ret)
6655 goto out;
James Ketrenos2c86c272005-03-23 17:32:29 -06006656
Brice Goglin0f52bf92005-12-01 01:41:46 -08006657#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06006658 ipw2100_debug_level = debug;
Jeff Garzikde897882006-10-01 07:31:09 -04006659 ret = driver_create_file(&ipw2100_pci_driver.driver,
6660 &driver_attr_debug_level);
James Ketrenos2c86c272005-03-23 17:32:29 -06006661#endif
6662
Jeff Garzikde897882006-10-01 07:31:09 -04006663out:
James Ketrenos2c86c272005-03-23 17:32:29 -06006664 return ret;
6665}
6666
James Ketrenos2c86c272005-03-23 17:32:29 -06006667/**
6668 * Cleanup ipw2100 driver registration
6669 */
6670static void __exit ipw2100_exit(void)
6671{
6672 /* FIXME: IPG: check that we have no instances of the devices open */
Brice Goglin0f52bf92005-12-01 01:41:46 -08006673#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06006674 driver_remove_file(&ipw2100_pci_driver.driver,
6675 &driver_attr_debug_level);
6676#endif
6677 pci_unregister_driver(&ipw2100_pci_driver);
James Bottomley82f68252010-07-05 22:53:06 +02006678 pm_qos_remove_request(&ipw2100_pm_qos_req);
James Ketrenos2c86c272005-03-23 17:32:29 -06006679}
6680
6681module_init(ipw2100_init);
6682module_exit(ipw2100_exit);
6683
James Ketrenos2c86c272005-03-23 17:32:29 -06006684static int ipw2100_wx_get_name(struct net_device *dev,
6685 struct iw_request_info *info,
6686 union iwreq_data *wrqu, char *extra)
6687{
6688 /*
6689 * This can be called at any time. No action lock required
6690 */
6691
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006692 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06006693 if (!(priv->status & STATUS_ASSOCIATED))
6694 strcpy(wrqu->name, "unassociated");
6695 else
6696 snprintf(wrqu->name, IFNAMSIZ, "IEEE 802.11b");
6697
6698 IPW_DEBUG_WX("Name: %s\n", wrqu->name);
6699 return 0;
6700}
6701
James Ketrenos2c86c272005-03-23 17:32:29 -06006702static int ipw2100_wx_set_freq(struct net_device *dev,
6703 struct iw_request_info *info,
6704 union iwreq_data *wrqu, char *extra)
6705{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006706 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06006707 struct iw_freq *fwrq = &wrqu->freq;
6708 int err = 0;
6709
6710 if (priv->ieee->iw_mode == IW_MODE_INFRA)
6711 return -EOPNOTSUPP;
6712
Ingo Molnar752e3772006-02-28 07:20:54 +08006713 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06006714 if (!(priv->status & STATUS_INITIALIZED)) {
6715 err = -EIO;
6716 goto done;
6717 }
6718
6719 /* if setting by freq convert to channel */
6720 if (fwrq->e == 1) {
James Ketrenosee8e3652005-09-14 09:47:29 -05006721 if ((fwrq->m >= (int)2.412e8 && fwrq->m <= (int)2.487e8)) {
James Ketrenos2c86c272005-03-23 17:32:29 -06006722 int f = fwrq->m / 100000;
6723 int c = 0;
6724
6725 while ((c < REG_MAX_CHANNEL) &&
6726 (f != ipw2100_frequencies[c]))
6727 c++;
6728
6729 /* hack to fall through */
6730 fwrq->e = 0;
6731 fwrq->m = c + 1;
6732 }
6733 }
6734
James Ketrenos82328352005-08-24 22:33:31 -05006735 if (fwrq->e > 0 || fwrq->m > 1000) {
6736 err = -EOPNOTSUPP;
6737 goto done;
6738 } else { /* Set the channel */
Frans Pop9fd1ea42010-03-24 19:46:31 +01006739 IPW_DEBUG_WX("SET Freq/Channel -> %d\n", fwrq->m);
James Ketrenos2c86c272005-03-23 17:32:29 -06006740 err = ipw2100_set_channel(priv, fwrq->m, 0);
6741 }
6742
James Ketrenosee8e3652005-09-14 09:47:29 -05006743 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08006744 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06006745 return err;
6746}
6747
James Ketrenos2c86c272005-03-23 17:32:29 -06006748static int ipw2100_wx_get_freq(struct net_device *dev,
6749 struct iw_request_info *info,
6750 union iwreq_data *wrqu, char *extra)
6751{
6752 /*
6753 * This can be called at any time. No action lock required
6754 */
6755
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006756 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06006757
6758 wrqu->freq.e = 0;
6759
6760 /* If we are associated, trying to associate, or have a statically
6761 * configured CHANNEL then return that; otherwise return ANY */
6762 if (priv->config & CFG_STATIC_CHANNEL ||
6763 priv->status & STATUS_ASSOCIATED)
6764 wrqu->freq.m = priv->channel;
6765 else
6766 wrqu->freq.m = 0;
6767
Frans Pop9fd1ea42010-03-24 19:46:31 +01006768 IPW_DEBUG_WX("GET Freq/Channel -> %d\n", priv->channel);
James Ketrenos2c86c272005-03-23 17:32:29 -06006769 return 0;
6770
6771}
6772
6773static int ipw2100_wx_set_mode(struct net_device *dev,
6774 struct iw_request_info *info,
6775 union iwreq_data *wrqu, char *extra)
6776{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006777 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06006778 int err = 0;
6779
Frans Pop9fd1ea42010-03-24 19:46:31 +01006780 IPW_DEBUG_WX("SET Mode -> %d\n", wrqu->mode);
James Ketrenos2c86c272005-03-23 17:32:29 -06006781
6782 if (wrqu->mode == priv->ieee->iw_mode)
6783 return 0;
6784
Ingo Molnar752e3772006-02-28 07:20:54 +08006785 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06006786 if (!(priv->status & STATUS_INITIALIZED)) {
6787 err = -EIO;
6788 goto done;
6789 }
6790
6791 switch (wrqu->mode) {
6792#ifdef CONFIG_IPW2100_MONITOR
6793 case IW_MODE_MONITOR:
6794 err = ipw2100_switch_mode(priv, IW_MODE_MONITOR);
6795 break;
James Ketrenosee8e3652005-09-14 09:47:29 -05006796#endif /* CONFIG_IPW2100_MONITOR */
James Ketrenos2c86c272005-03-23 17:32:29 -06006797 case IW_MODE_ADHOC:
6798 err = ipw2100_switch_mode(priv, IW_MODE_ADHOC);
6799 break;
6800 case IW_MODE_INFRA:
6801 case IW_MODE_AUTO:
6802 default:
6803 err = ipw2100_switch_mode(priv, IW_MODE_INFRA);
6804 break;
6805 }
6806
James Ketrenosee8e3652005-09-14 09:47:29 -05006807 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08006808 mutex_unlock(&priv->action_mutex);
James Ketrenosee8e3652005-09-14 09:47:29 -05006809 return err;
James Ketrenos2c86c272005-03-23 17:32:29 -06006810}
6811
6812static int ipw2100_wx_get_mode(struct net_device *dev,
6813 struct iw_request_info *info,
6814 union iwreq_data *wrqu, char *extra)
6815{
6816 /*
6817 * This can be called at any time. No action lock required
6818 */
6819
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006820 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06006821
6822 wrqu->mode = priv->ieee->iw_mode;
6823 IPW_DEBUG_WX("GET Mode -> %d\n", wrqu->mode);
6824
6825 return 0;
6826}
6827
James Ketrenos2c86c272005-03-23 17:32:29 -06006828#define POWER_MODES 5
6829
6830/* Values are in microsecond */
Jiri Bencc4aee8c2005-08-25 20:04:43 -04006831static const s32 timeout_duration[POWER_MODES] = {
James Ketrenos2c86c272005-03-23 17:32:29 -06006832 350000,
6833 250000,
6834 75000,
6835 37000,
6836 25000,
6837};
6838
Jiri Bencc4aee8c2005-08-25 20:04:43 -04006839static const s32 period_duration[POWER_MODES] = {
James Ketrenos2c86c272005-03-23 17:32:29 -06006840 400000,
6841 700000,
6842 1000000,
6843 1000000,
6844 1000000
6845};
6846
6847static int ipw2100_wx_get_range(struct net_device *dev,
6848 struct iw_request_info *info,
6849 union iwreq_data *wrqu, char *extra)
6850{
6851 /*
6852 * This can be called at any time. No action lock required
6853 */
6854
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006855 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06006856 struct iw_range *range = (struct iw_range *)extra;
6857 u16 val;
6858 int i, level;
6859
6860 wrqu->data.length = sizeof(*range);
6861 memset(range, 0, sizeof(*range));
6862
6863 /* Let's try to keep this struct in the same order as in
6864 * linux/include/wireless.h
6865 */
6866
6867 /* TODO: See what values we can set, and remove the ones we can't
6868 * set, or fill them with some default data.
6869 */
6870
6871 /* ~5 Mb/s real (802.11b) */
6872 range->throughput = 5 * 1000 * 1000;
6873
James Ketrenosee8e3652005-09-14 09:47:29 -05006874// range->sensitivity; /* signal level threshold range */
James Ketrenos2c86c272005-03-23 17:32:29 -06006875
6876 range->max_qual.qual = 100;
6877 /* TODO: Find real max RSSI and stick here */
6878 range->max_qual.level = 0;
6879 range->max_qual.noise = 0;
James Ketrenosee8e3652005-09-14 09:47:29 -05006880 range->max_qual.updated = 7; /* Updated all three */
James Ketrenos2c86c272005-03-23 17:32:29 -06006881
James Ketrenosee8e3652005-09-14 09:47:29 -05006882 range->avg_qual.qual = 70; /* > 8% missed beacons is 'bad' */
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02006883 /* TODO: Find real 'good' to 'bad' threshold value for RSSI */
James Ketrenos2c86c272005-03-23 17:32:29 -06006884 range->avg_qual.level = 20 + IPW2100_RSSI_TO_DBM;
6885 range->avg_qual.noise = 0;
James Ketrenosee8e3652005-09-14 09:47:29 -05006886 range->avg_qual.updated = 7; /* Updated all three */
James Ketrenos2c86c272005-03-23 17:32:29 -06006887
6888 range->num_bitrates = RATE_COUNT;
6889
6890 for (i = 0; i < RATE_COUNT && i < IW_MAX_BITRATES; i++) {
6891 range->bitrate[i] = ipw2100_rates_11b[i];
6892 }
6893
6894 range->min_rts = MIN_RTS_THRESHOLD;
6895 range->max_rts = MAX_RTS_THRESHOLD;
6896 range->min_frag = MIN_FRAG_THRESHOLD;
6897 range->max_frag = MAX_FRAG_THRESHOLD;
6898
6899 range->min_pmp = period_duration[0]; /* Minimal PM period */
James Ketrenosee8e3652005-09-14 09:47:29 -05006900 range->max_pmp = period_duration[POWER_MODES - 1]; /* Maximal PM period */
6901 range->min_pmt = timeout_duration[POWER_MODES - 1]; /* Minimal PM timeout */
6902 range->max_pmt = timeout_duration[0]; /* Maximal PM timeout */
James Ketrenos2c86c272005-03-23 17:32:29 -06006903
James Ketrenosee8e3652005-09-14 09:47:29 -05006904 /* How to decode max/min PM period */
James Ketrenos2c86c272005-03-23 17:32:29 -06006905 range->pmp_flags = IW_POWER_PERIOD;
James Ketrenosee8e3652005-09-14 09:47:29 -05006906 /* How to decode max/min PM period */
James Ketrenos2c86c272005-03-23 17:32:29 -06006907 range->pmt_flags = IW_POWER_TIMEOUT;
6908 /* What PM options are supported */
6909 range->pm_capa = IW_POWER_TIMEOUT | IW_POWER_PERIOD;
6910
6911 range->encoding_size[0] = 5;
James Ketrenosee8e3652005-09-14 09:47:29 -05006912 range->encoding_size[1] = 13; /* Different token sizes */
6913 range->num_encoding_sizes = 2; /* Number of entry in the list */
6914 range->max_encoding_tokens = WEP_KEYS; /* Max number of tokens */
6915// range->encoding_login_index; /* token index for login token */
James Ketrenos2c86c272005-03-23 17:32:29 -06006916
6917 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
6918 range->txpower_capa = IW_TXPOW_DBM;
6919 range->num_txpower = IW_MAX_TXPOWER;
James Ketrenosee8e3652005-09-14 09:47:29 -05006920 for (i = 0, level = (IPW_TX_POWER_MAX_DBM * 16);
6921 i < IW_MAX_TXPOWER;
6922 i++, level -=
6923 ((IPW_TX_POWER_MAX_DBM -
6924 IPW_TX_POWER_MIN_DBM) * 16) / (IW_MAX_TXPOWER - 1))
James Ketrenos2c86c272005-03-23 17:32:29 -06006925 range->txpower[i] = level / 16;
6926 } else {
6927 range->txpower_capa = 0;
6928 range->num_txpower = 0;
6929 }
6930
James Ketrenos2c86c272005-03-23 17:32:29 -06006931 /* Set the Wireless Extension versions */
6932 range->we_version_compiled = WIRELESS_EXT;
Dan Williams166c3432006-01-09 11:04:31 -05006933 range->we_version_source = 18;
James Ketrenos2c86c272005-03-23 17:32:29 -06006934
James Ketrenosee8e3652005-09-14 09:47:29 -05006935// range->retry_capa; /* What retry options are supported */
6936// range->retry_flags; /* How to decode max/min retry limit */
6937// range->r_time_flags; /* How to decode max/min retry life */
6938// range->min_retry; /* Minimal number of retries */
6939// range->max_retry; /* Maximal number of retries */
6940// range->min_r_time; /* Minimal retry lifetime */
6941// range->max_r_time; /* Maximal retry lifetime */
James Ketrenos2c86c272005-03-23 17:32:29 -06006942
James Ketrenosee8e3652005-09-14 09:47:29 -05006943 range->num_channels = FREQ_COUNT;
James Ketrenos2c86c272005-03-23 17:32:29 -06006944
6945 val = 0;
6946 for (i = 0; i < FREQ_COUNT; i++) {
6947 // TODO: Include only legal frequencies for some countries
James Ketrenosee8e3652005-09-14 09:47:29 -05006948// if (local->channel_mask & (1 << i)) {
6949 range->freq[val].i = i + 1;
6950 range->freq[val].m = ipw2100_frequencies[i] * 100000;
6951 range->freq[val].e = 1;
6952 val++;
6953// }
James Ketrenos2c86c272005-03-23 17:32:29 -06006954 if (val == IW_MAX_FREQUENCIES)
James Ketrenosee8e3652005-09-14 09:47:29 -05006955 break;
James Ketrenos2c86c272005-03-23 17:32:29 -06006956 }
6957 range->num_frequency = val;
6958
James Ketrenoseaf8f532005-11-12 12:50:12 -06006959 /* Event capability (kernel + driver) */
6960 range->event_capa[0] = (IW_EVENT_CAPA_K_0 |
6961 IW_EVENT_CAPA_MASK(SIOCGIWAP));
6962 range->event_capa[1] = IW_EVENT_CAPA_K_1;
6963
Dan Williams166c3432006-01-09 11:04:31 -05006964 range->enc_capa = IW_ENC_CAPA_WPA | IW_ENC_CAPA_WPA2 |
6965 IW_ENC_CAPA_CIPHER_TKIP | IW_ENC_CAPA_CIPHER_CCMP;
6966
James Ketrenos2c86c272005-03-23 17:32:29 -06006967 IPW_DEBUG_WX("GET Range\n");
6968
6969 return 0;
6970}
6971
6972static int ipw2100_wx_set_wap(struct net_device *dev,
6973 struct iw_request_info *info,
6974 union iwreq_data *wrqu, char *extra)
6975{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006976 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06006977 int err = 0;
6978
6979 static const unsigned char any[] = {
6980 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
6981 };
6982 static const unsigned char off[] = {
6983 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
6984 };
6985
6986 // sanity checks
6987 if (wrqu->ap_addr.sa_family != ARPHRD_ETHER)
6988 return -EINVAL;
6989
Ingo Molnar752e3772006-02-28 07:20:54 +08006990 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06006991 if (!(priv->status & STATUS_INITIALIZED)) {
6992 err = -EIO;
6993 goto done;
6994 }
6995
6996 if (!memcmp(any, wrqu->ap_addr.sa_data, ETH_ALEN) ||
6997 !memcmp(off, wrqu->ap_addr.sa_data, ETH_ALEN)) {
6998 /* we disable mandatory BSSID association */
6999 IPW_DEBUG_WX("exit - disable mandatory BSSID\n");
7000 priv->config &= ~CFG_STATIC_BSSID;
7001 err = ipw2100_set_mandatory_bssid(priv, NULL, 0);
7002 goto done;
7003 }
7004
7005 priv->config |= CFG_STATIC_BSSID;
7006 memcpy(priv->mandatory_bssid_mac, wrqu->ap_addr.sa_data, ETH_ALEN);
7007
7008 err = ipw2100_set_mandatory_bssid(priv, wrqu->ap_addr.sa_data, 0);
7009
Johannes Berge1749612008-10-27 15:59:26 -07007010 IPW_DEBUG_WX("SET BSSID -> %pM\n", wrqu->ap_addr.sa_data);
James Ketrenos2c86c272005-03-23 17:32:29 -06007011
James Ketrenosee8e3652005-09-14 09:47:29 -05007012 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08007013 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007014 return err;
7015}
7016
7017static int ipw2100_wx_get_wap(struct net_device *dev,
7018 struct iw_request_info *info,
7019 union iwreq_data *wrqu, char *extra)
7020{
7021 /*
7022 * This can be called at any time. No action lock required
7023 */
7024
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007025 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06007026
7027 /* If we are associated, trying to associate, or have a statically
7028 * configured BSSID then return that; otherwise return ANY */
James Ketrenosee8e3652005-09-14 09:47:29 -05007029 if (priv->config & CFG_STATIC_BSSID || priv->status & STATUS_ASSOCIATED) {
James Ketrenos2c86c272005-03-23 17:32:29 -06007030 wrqu->ap_addr.sa_family = ARPHRD_ETHER;
James Ketrenos82328352005-08-24 22:33:31 -05007031 memcpy(wrqu->ap_addr.sa_data, priv->bssid, ETH_ALEN);
James Ketrenos2c86c272005-03-23 17:32:29 -06007032 } else
7033 memset(wrqu->ap_addr.sa_data, 0, ETH_ALEN);
7034
Johannes Berge1749612008-10-27 15:59:26 -07007035 IPW_DEBUG_WX("Getting WAP BSSID: %pM\n", wrqu->ap_addr.sa_data);
James Ketrenos2c86c272005-03-23 17:32:29 -06007036 return 0;
7037}
7038
7039static int ipw2100_wx_set_essid(struct net_device *dev,
7040 struct iw_request_info *info,
7041 union iwreq_data *wrqu, char *extra)
7042{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007043 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenosee8e3652005-09-14 09:47:29 -05007044 char *essid = ""; /* ANY */
James Ketrenos2c86c272005-03-23 17:32:29 -06007045 int length = 0;
7046 int err = 0;
John W. Linville9387b7c2008-09-30 20:59:05 -04007047 DECLARE_SSID_BUF(ssid);
James Ketrenos2c86c272005-03-23 17:32:29 -06007048
Ingo Molnar752e3772006-02-28 07:20:54 +08007049 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007050 if (!(priv->status & STATUS_INITIALIZED)) {
7051 err = -EIO;
7052 goto done;
7053 }
7054
7055 if (wrqu->essid.flags && wrqu->essid.length) {
Jean Tourrilhes5b63bae2006-08-29 18:00:48 -07007056 length = wrqu->essid.length;
James Ketrenos2c86c272005-03-23 17:32:29 -06007057 essid = extra;
7058 }
7059
7060 if (length == 0) {
7061 IPW_DEBUG_WX("Setting ESSID to ANY\n");
7062 priv->config &= ~CFG_STATIC_ESSID;
7063 err = ipw2100_set_essid(priv, NULL, 0, 0);
7064 goto done;
7065 }
7066
7067 length = min(length, IW_ESSID_MAX_SIZE);
7068
7069 priv->config |= CFG_STATIC_ESSID;
7070
7071 if (priv->essid_len == length && !memcmp(priv->essid, extra, length)) {
7072 IPW_DEBUG_WX("ESSID set to current ESSID.\n");
7073 err = 0;
7074 goto done;
7075 }
7076
John W. Linville9387b7c2008-09-30 20:59:05 -04007077 IPW_DEBUG_WX("Setting ESSID: '%s' (%d)\n",
7078 print_ssid(ssid, essid, length), length);
James Ketrenos2c86c272005-03-23 17:32:29 -06007079
7080 priv->essid_len = length;
7081 memcpy(priv->essid, essid, priv->essid_len);
7082
7083 err = ipw2100_set_essid(priv, essid, length, 0);
7084
James Ketrenosee8e3652005-09-14 09:47:29 -05007085 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08007086 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007087 return err;
7088}
7089
7090static int ipw2100_wx_get_essid(struct net_device *dev,
7091 struct iw_request_info *info,
7092 union iwreq_data *wrqu, char *extra)
7093{
7094 /*
7095 * This can be called at any time. No action lock required
7096 */
7097
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007098 struct ipw2100_priv *priv = libipw_priv(dev);
John W. Linville9387b7c2008-09-30 20:59:05 -04007099 DECLARE_SSID_BUF(ssid);
James Ketrenos2c86c272005-03-23 17:32:29 -06007100
7101 /* If we are associated, trying to associate, or have a statically
7102 * configured ESSID then return that; otherwise return ANY */
James Ketrenosee8e3652005-09-14 09:47:29 -05007103 if (priv->config & CFG_STATIC_ESSID || priv->status & STATUS_ASSOCIATED) {
James Ketrenos2c86c272005-03-23 17:32:29 -06007104 IPW_DEBUG_WX("Getting essid: '%s'\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04007105 print_ssid(ssid, priv->essid, priv->essid_len));
James Ketrenos2c86c272005-03-23 17:32:29 -06007106 memcpy(extra, priv->essid, priv->essid_len);
7107 wrqu->essid.length = priv->essid_len;
James Ketrenosee8e3652005-09-14 09:47:29 -05007108 wrqu->essid.flags = 1; /* active */
James Ketrenos2c86c272005-03-23 17:32:29 -06007109 } else {
7110 IPW_DEBUG_WX("Getting essid: ANY\n");
7111 wrqu->essid.length = 0;
James Ketrenosee8e3652005-09-14 09:47:29 -05007112 wrqu->essid.flags = 0; /* active */
James Ketrenos2c86c272005-03-23 17:32:29 -06007113 }
7114
7115 return 0;
7116}
7117
7118static int ipw2100_wx_set_nick(struct net_device *dev,
7119 struct iw_request_info *info,
7120 union iwreq_data *wrqu, char *extra)
7121{
7122 /*
7123 * This can be called at any time. No action lock required
7124 */
7125
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007126 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06007127
7128 if (wrqu->data.length > IW_ESSID_MAX_SIZE)
7129 return -E2BIG;
7130
James Ketrenosee8e3652005-09-14 09:47:29 -05007131 wrqu->data.length = min((size_t) wrqu->data.length, sizeof(priv->nick));
James Ketrenos2c86c272005-03-23 17:32:29 -06007132 memset(priv->nick, 0, sizeof(priv->nick));
James Ketrenosee8e3652005-09-14 09:47:29 -05007133 memcpy(priv->nick, extra, wrqu->data.length);
James Ketrenos2c86c272005-03-23 17:32:29 -06007134
Frans Pop9fd1ea42010-03-24 19:46:31 +01007135 IPW_DEBUG_WX("SET Nickname -> %s\n", priv->nick);
James Ketrenos2c86c272005-03-23 17:32:29 -06007136
7137 return 0;
7138}
7139
7140static int ipw2100_wx_get_nick(struct net_device *dev,
7141 struct iw_request_info *info,
7142 union iwreq_data *wrqu, char *extra)
7143{
7144 /*
7145 * This can be called at any time. No action lock required
7146 */
7147
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007148 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06007149
Jean Tourrilhes5b63bae2006-08-29 18:00:48 -07007150 wrqu->data.length = strlen(priv->nick);
James Ketrenos2c86c272005-03-23 17:32:29 -06007151 memcpy(extra, priv->nick, wrqu->data.length);
James Ketrenosee8e3652005-09-14 09:47:29 -05007152 wrqu->data.flags = 1; /* active */
James Ketrenos2c86c272005-03-23 17:32:29 -06007153
Frans Pop9fd1ea42010-03-24 19:46:31 +01007154 IPW_DEBUG_WX("GET Nickname -> %s\n", extra);
James Ketrenos2c86c272005-03-23 17:32:29 -06007155
7156 return 0;
7157}
7158
7159static int ipw2100_wx_set_rate(struct net_device *dev,
7160 struct iw_request_info *info,
7161 union iwreq_data *wrqu, char *extra)
7162{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007163 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06007164 u32 target_rate = wrqu->bitrate.value;
7165 u32 rate;
7166 int err = 0;
7167
Ingo Molnar752e3772006-02-28 07:20:54 +08007168 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007169 if (!(priv->status & STATUS_INITIALIZED)) {
7170 err = -EIO;
7171 goto done;
7172 }
7173
7174 rate = 0;
7175
7176 if (target_rate == 1000000 ||
7177 (!wrqu->bitrate.fixed && target_rate > 1000000))
7178 rate |= TX_RATE_1_MBIT;
7179 if (target_rate == 2000000 ||
7180 (!wrqu->bitrate.fixed && target_rate > 2000000))
7181 rate |= TX_RATE_2_MBIT;
7182 if (target_rate == 5500000 ||
7183 (!wrqu->bitrate.fixed && target_rate > 5500000))
7184 rate |= TX_RATE_5_5_MBIT;
7185 if (target_rate == 11000000 ||
7186 (!wrqu->bitrate.fixed && target_rate > 11000000))
7187 rate |= TX_RATE_11_MBIT;
7188 if (rate == 0)
7189 rate = DEFAULT_TX_RATES;
7190
7191 err = ipw2100_set_tx_rates(priv, rate, 0);
7192
Frans Pop9fd1ea42010-03-24 19:46:31 +01007193 IPW_DEBUG_WX("SET Rate -> %04X\n", rate);
James Ketrenosee8e3652005-09-14 09:47:29 -05007194 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08007195 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007196 return err;
7197}
7198
James Ketrenos2c86c272005-03-23 17:32:29 -06007199static int ipw2100_wx_get_rate(struct net_device *dev,
7200 struct iw_request_info *info,
7201 union iwreq_data *wrqu, char *extra)
7202{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007203 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06007204 int val;
Hannes Ederb9da9e92009-02-14 11:50:26 +00007205 unsigned int len = sizeof(val);
James Ketrenos2c86c272005-03-23 17:32:29 -06007206 int err = 0;
7207
7208 if (!(priv->status & STATUS_ENABLED) ||
7209 priv->status & STATUS_RF_KILL_MASK ||
7210 !(priv->status & STATUS_ASSOCIATED)) {
7211 wrqu->bitrate.value = 0;
7212 return 0;
7213 }
7214
Ingo Molnar752e3772006-02-28 07:20:54 +08007215 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007216 if (!(priv->status & STATUS_INITIALIZED)) {
7217 err = -EIO;
7218 goto done;
7219 }
7220
7221 err = ipw2100_get_ordinal(priv, IPW_ORD_CURRENT_TX_RATE, &val, &len);
7222 if (err) {
7223 IPW_DEBUG_WX("failed querying ordinals.\n");
Julia Lawall80c42af2008-07-21 09:58:11 +02007224 goto done;
James Ketrenos2c86c272005-03-23 17:32:29 -06007225 }
7226
7227 switch (val & TX_RATE_MASK) {
7228 case TX_RATE_1_MBIT:
7229 wrqu->bitrate.value = 1000000;
7230 break;
7231 case TX_RATE_2_MBIT:
7232 wrqu->bitrate.value = 2000000;
7233 break;
7234 case TX_RATE_5_5_MBIT:
7235 wrqu->bitrate.value = 5500000;
7236 break;
7237 case TX_RATE_11_MBIT:
7238 wrqu->bitrate.value = 11000000;
7239 break;
7240 default:
7241 wrqu->bitrate.value = 0;
7242 }
7243
Frans Pop9fd1ea42010-03-24 19:46:31 +01007244 IPW_DEBUG_WX("GET Rate -> %d\n", wrqu->bitrate.value);
James Ketrenos2c86c272005-03-23 17:32:29 -06007245
James Ketrenosee8e3652005-09-14 09:47:29 -05007246 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08007247 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007248 return err;
7249}
7250
7251static int ipw2100_wx_set_rts(struct net_device *dev,
7252 struct iw_request_info *info,
7253 union iwreq_data *wrqu, char *extra)
7254{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007255 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06007256 int value, err;
7257
7258 /* Auto RTS not yet supported */
7259 if (wrqu->rts.fixed == 0)
7260 return -EINVAL;
7261
Ingo Molnar752e3772006-02-28 07:20:54 +08007262 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007263 if (!(priv->status & STATUS_INITIALIZED)) {
7264 err = -EIO;
7265 goto done;
7266 }
7267
7268 if (wrqu->rts.disabled)
7269 value = priv->rts_threshold | RTS_DISABLED;
7270 else {
James Ketrenosee8e3652005-09-14 09:47:29 -05007271 if (wrqu->rts.value < 1 || wrqu->rts.value > 2304) {
James Ketrenos2c86c272005-03-23 17:32:29 -06007272 err = -EINVAL;
7273 goto done;
7274 }
7275 value = wrqu->rts.value;
7276 }
7277
7278 err = ipw2100_set_rts_threshold(priv, value);
7279
Frans Pop9fd1ea42010-03-24 19:46:31 +01007280 IPW_DEBUG_WX("SET RTS Threshold -> 0x%08X\n", value);
James Ketrenosee8e3652005-09-14 09:47:29 -05007281 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08007282 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007283 return err;
7284}
7285
7286static int ipw2100_wx_get_rts(struct net_device *dev,
7287 struct iw_request_info *info,
7288 union iwreq_data *wrqu, char *extra)
7289{
7290 /*
7291 * This can be called at any time. No action lock required
7292 */
7293
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007294 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06007295
7296 wrqu->rts.value = priv->rts_threshold & ~RTS_DISABLED;
James Ketrenosee8e3652005-09-14 09:47:29 -05007297 wrqu->rts.fixed = 1; /* no auto select */
James Ketrenos2c86c272005-03-23 17:32:29 -06007298
7299 /* If RTS is set to the default value, then it is disabled */
7300 wrqu->rts.disabled = (priv->rts_threshold & RTS_DISABLED) ? 1 : 0;
7301
Frans Pop9fd1ea42010-03-24 19:46:31 +01007302 IPW_DEBUG_WX("GET RTS Threshold -> 0x%08X\n", wrqu->rts.value);
James Ketrenos2c86c272005-03-23 17:32:29 -06007303
7304 return 0;
7305}
7306
7307static int ipw2100_wx_set_txpow(struct net_device *dev,
7308 struct iw_request_info *info,
7309 union iwreq_data *wrqu, char *extra)
7310{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007311 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06007312 int err = 0, value;
Zhu Yib6e4da72006-01-24 13:49:32 +08007313
7314 if (ipw_radio_kill_sw(priv, wrqu->txpower.disabled))
7315 return -EINPROGRESS;
James Ketrenos2c86c272005-03-23 17:32:29 -06007316
7317 if (priv->ieee->iw_mode != IW_MODE_ADHOC)
Zhu Yib6e4da72006-01-24 13:49:32 +08007318 return 0;
7319
7320 if ((wrqu->txpower.flags & IW_TXPOW_TYPE) != IW_TXPOW_DBM)
James Ketrenos2c86c272005-03-23 17:32:29 -06007321 return -EINVAL;
7322
Zhu Yib6e4da72006-01-24 13:49:32 +08007323 if (wrqu->txpower.fixed == 0)
James Ketrenos2c86c272005-03-23 17:32:29 -06007324 value = IPW_TX_POWER_DEFAULT;
7325 else {
7326 if (wrqu->txpower.value < IPW_TX_POWER_MIN_DBM ||
7327 wrqu->txpower.value > IPW_TX_POWER_MAX_DBM)
7328 return -EINVAL;
7329
Liu Hongf75459e2005-07-13 12:29:21 -05007330 value = wrqu->txpower.value;
James Ketrenos2c86c272005-03-23 17:32:29 -06007331 }
7332
Ingo Molnar752e3772006-02-28 07:20:54 +08007333 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007334 if (!(priv->status & STATUS_INITIALIZED)) {
7335 err = -EIO;
7336 goto done;
7337 }
7338
7339 err = ipw2100_set_tx_power(priv, value);
7340
Frans Pop9fd1ea42010-03-24 19:46:31 +01007341 IPW_DEBUG_WX("SET TX Power -> %d\n", value);
James Ketrenos2c86c272005-03-23 17:32:29 -06007342
James Ketrenosee8e3652005-09-14 09:47:29 -05007343 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08007344 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007345 return err;
7346}
7347
7348static int ipw2100_wx_get_txpow(struct net_device *dev,
7349 struct iw_request_info *info,
7350 union iwreq_data *wrqu, char *extra)
7351{
7352 /*
7353 * This can be called at any time. No action lock required
7354 */
7355
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007356 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06007357
Zhu Yib6e4da72006-01-24 13:49:32 +08007358 wrqu->txpower.disabled = (priv->status & STATUS_RF_KILL_MASK) ? 1 : 0;
James Ketrenos2c86c272005-03-23 17:32:29 -06007359
7360 if (priv->tx_power == IPW_TX_POWER_DEFAULT) {
Zhu Yib6e4da72006-01-24 13:49:32 +08007361 wrqu->txpower.fixed = 0;
7362 wrqu->txpower.value = IPW_TX_POWER_MAX_DBM;
James Ketrenos2c86c272005-03-23 17:32:29 -06007363 } else {
Zhu Yib6e4da72006-01-24 13:49:32 +08007364 wrqu->txpower.fixed = 1;
7365 wrqu->txpower.value = priv->tx_power;
James Ketrenos2c86c272005-03-23 17:32:29 -06007366 }
7367
Zhu Yib6e4da72006-01-24 13:49:32 +08007368 wrqu->txpower.flags = IW_TXPOW_DBM;
James Ketrenos2c86c272005-03-23 17:32:29 -06007369
Frans Pop9fd1ea42010-03-24 19:46:31 +01007370 IPW_DEBUG_WX("GET TX Power -> %d\n", wrqu->txpower.value);
James Ketrenos2c86c272005-03-23 17:32:29 -06007371
7372 return 0;
7373}
7374
7375static int ipw2100_wx_set_frag(struct net_device *dev,
7376 struct iw_request_info *info,
7377 union iwreq_data *wrqu, char *extra)
7378{
7379 /*
7380 * This can be called at any time. No action lock required
7381 */
7382
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007383 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06007384
7385 if (!wrqu->frag.fixed)
7386 return -EINVAL;
7387
7388 if (wrqu->frag.disabled) {
7389 priv->frag_threshold |= FRAG_DISABLED;
7390 priv->ieee->fts = DEFAULT_FTS;
7391 } else {
7392 if (wrqu->frag.value < MIN_FRAG_THRESHOLD ||
7393 wrqu->frag.value > MAX_FRAG_THRESHOLD)
7394 return -EINVAL;
7395
7396 priv->ieee->fts = wrqu->frag.value & ~0x1;
7397 priv->frag_threshold = priv->ieee->fts;
7398 }
7399
Frans Pop9fd1ea42010-03-24 19:46:31 +01007400 IPW_DEBUG_WX("SET Frag Threshold -> %d\n", priv->ieee->fts);
James Ketrenos2c86c272005-03-23 17:32:29 -06007401
7402 return 0;
7403}
7404
7405static int ipw2100_wx_get_frag(struct net_device *dev,
7406 struct iw_request_info *info,
7407 union iwreq_data *wrqu, char *extra)
7408{
7409 /*
7410 * This can be called at any time. No action lock required
7411 */
7412
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007413 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06007414 wrqu->frag.value = priv->frag_threshold & ~FRAG_DISABLED;
7415 wrqu->frag.fixed = 0; /* no auto select */
7416 wrqu->frag.disabled = (priv->frag_threshold & FRAG_DISABLED) ? 1 : 0;
7417
Frans Pop9fd1ea42010-03-24 19:46:31 +01007418 IPW_DEBUG_WX("GET Frag Threshold -> %d\n", wrqu->frag.value);
James Ketrenos2c86c272005-03-23 17:32:29 -06007419
7420 return 0;
7421}
7422
7423static int ipw2100_wx_set_retry(struct net_device *dev,
7424 struct iw_request_info *info,
7425 union iwreq_data *wrqu, char *extra)
7426{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007427 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06007428 int err = 0;
7429
James Ketrenosee8e3652005-09-14 09:47:29 -05007430 if (wrqu->retry.flags & IW_RETRY_LIFETIME || wrqu->retry.disabled)
James Ketrenos2c86c272005-03-23 17:32:29 -06007431 return -EINVAL;
7432
7433 if (!(wrqu->retry.flags & IW_RETRY_LIMIT))
7434 return 0;
7435
Ingo Molnar752e3772006-02-28 07:20:54 +08007436 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007437 if (!(priv->status & STATUS_INITIALIZED)) {
7438 err = -EIO;
7439 goto done;
7440 }
7441
Jean Tourrilhes5b63bae2006-08-29 18:00:48 -07007442 if (wrqu->retry.flags & IW_RETRY_SHORT) {
James Ketrenos2c86c272005-03-23 17:32:29 -06007443 err = ipw2100_set_short_retry(priv, wrqu->retry.value);
Frans Pop9fd1ea42010-03-24 19:46:31 +01007444 IPW_DEBUG_WX("SET Short Retry Limit -> %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05007445 wrqu->retry.value);
James Ketrenos2c86c272005-03-23 17:32:29 -06007446 goto done;
7447 }
7448
Jean Tourrilhes5b63bae2006-08-29 18:00:48 -07007449 if (wrqu->retry.flags & IW_RETRY_LONG) {
James Ketrenos2c86c272005-03-23 17:32:29 -06007450 err = ipw2100_set_long_retry(priv, wrqu->retry.value);
Frans Pop9fd1ea42010-03-24 19:46:31 +01007451 IPW_DEBUG_WX("SET Long Retry Limit -> %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05007452 wrqu->retry.value);
James Ketrenos2c86c272005-03-23 17:32:29 -06007453 goto done;
7454 }
7455
7456 err = ipw2100_set_short_retry(priv, wrqu->retry.value);
7457 if (!err)
7458 err = ipw2100_set_long_retry(priv, wrqu->retry.value);
7459
Frans Pop9fd1ea42010-03-24 19:46:31 +01007460 IPW_DEBUG_WX("SET Both Retry Limits -> %d\n", wrqu->retry.value);
James Ketrenos2c86c272005-03-23 17:32:29 -06007461
James Ketrenosee8e3652005-09-14 09:47:29 -05007462 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08007463 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007464 return err;
7465}
7466
7467static int ipw2100_wx_get_retry(struct net_device *dev,
7468 struct iw_request_info *info,
7469 union iwreq_data *wrqu, char *extra)
7470{
7471 /*
7472 * This can be called at any time. No action lock required
7473 */
7474
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007475 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06007476
James Ketrenosee8e3652005-09-14 09:47:29 -05007477 wrqu->retry.disabled = 0; /* can't be disabled */
James Ketrenos2c86c272005-03-23 17:32:29 -06007478
James Ketrenosee8e3652005-09-14 09:47:29 -05007479 if ((wrqu->retry.flags & IW_RETRY_TYPE) == IW_RETRY_LIFETIME)
James Ketrenos2c86c272005-03-23 17:32:29 -06007480 return -EINVAL;
7481
Jean Tourrilhes5b63bae2006-08-29 18:00:48 -07007482 if (wrqu->retry.flags & IW_RETRY_LONG) {
7483 wrqu->retry.flags = IW_RETRY_LIMIT | IW_RETRY_LONG;
James Ketrenos2c86c272005-03-23 17:32:29 -06007484 wrqu->retry.value = priv->long_retry_limit;
7485 } else {
7486 wrqu->retry.flags =
7487 (priv->short_retry_limit !=
7488 priv->long_retry_limit) ?
Jean Tourrilhes5b63bae2006-08-29 18:00:48 -07007489 IW_RETRY_LIMIT | IW_RETRY_SHORT : IW_RETRY_LIMIT;
James Ketrenos2c86c272005-03-23 17:32:29 -06007490
7491 wrqu->retry.value = priv->short_retry_limit;
7492 }
7493
Frans Pop9fd1ea42010-03-24 19:46:31 +01007494 IPW_DEBUG_WX("GET Retry -> %d\n", wrqu->retry.value);
James Ketrenos2c86c272005-03-23 17:32:29 -06007495
7496 return 0;
7497}
7498
7499static int ipw2100_wx_set_scan(struct net_device *dev,
7500 struct iw_request_info *info,
7501 union iwreq_data *wrqu, char *extra)
7502{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007503 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06007504 int err = 0;
7505
Ingo Molnar752e3772006-02-28 07:20:54 +08007506 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007507 if (!(priv->status & STATUS_INITIALIZED)) {
7508 err = -EIO;
7509 goto done;
7510 }
7511
7512 IPW_DEBUG_WX("Initiating scan...\n");
Dan Williamsd20c6782007-10-10 12:28:07 -04007513
7514 priv->user_requested_scan = 1;
James Ketrenosee8e3652005-09-14 09:47:29 -05007515 if (ipw2100_set_scan_options(priv) || ipw2100_start_scan(priv)) {
James Ketrenos2c86c272005-03-23 17:32:29 -06007516 IPW_DEBUG_WX("Start scan failed.\n");
7517
7518 /* TODO: Mark a scan as pending so when hardware initialized
7519 * a scan starts */
7520 }
7521
James Ketrenosee8e3652005-09-14 09:47:29 -05007522 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08007523 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007524 return err;
7525}
7526
7527static int ipw2100_wx_get_scan(struct net_device *dev,
7528 struct iw_request_info *info,
7529 union iwreq_data *wrqu, char *extra)
7530{
7531 /*
7532 * This can be called at any time. No action lock required
7533 */
7534
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007535 struct ipw2100_priv *priv = libipw_priv(dev);
7536 return libipw_wx_get_scan(priv->ieee, info, wrqu, extra);
James Ketrenos2c86c272005-03-23 17:32:29 -06007537}
7538
James Ketrenos2c86c272005-03-23 17:32:29 -06007539/*
7540 * Implementation based on code in hostap-driver v0.1.3 hostap_ioctl.c
7541 */
7542static int ipw2100_wx_set_encode(struct net_device *dev,
7543 struct iw_request_info *info,
7544 union iwreq_data *wrqu, char *key)
7545{
7546 /*
7547 * No check of STATUS_INITIALIZED required
7548 */
7549
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007550 struct ipw2100_priv *priv = libipw_priv(dev);
7551 return libipw_wx_set_encode(priv->ieee, info, wrqu, key);
James Ketrenos2c86c272005-03-23 17:32:29 -06007552}
7553
7554static int ipw2100_wx_get_encode(struct net_device *dev,
7555 struct iw_request_info *info,
7556 union iwreq_data *wrqu, char *key)
7557{
7558 /*
7559 * This can be called at any time. No action lock required
7560 */
7561
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007562 struct ipw2100_priv *priv = libipw_priv(dev);
7563 return libipw_wx_get_encode(priv->ieee, info, wrqu, key);
James Ketrenos2c86c272005-03-23 17:32:29 -06007564}
7565
7566static int ipw2100_wx_set_power(struct net_device *dev,
James Ketrenosee8e3652005-09-14 09:47:29 -05007567 struct iw_request_info *info,
7568 union iwreq_data *wrqu, char *extra)
James Ketrenos2c86c272005-03-23 17:32:29 -06007569{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007570 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06007571 int err = 0;
7572
Ingo Molnar752e3772006-02-28 07:20:54 +08007573 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007574 if (!(priv->status & STATUS_INITIALIZED)) {
7575 err = -EIO;
7576 goto done;
7577 }
7578
7579 if (wrqu->power.disabled) {
7580 priv->power_mode = IPW_POWER_LEVEL(priv->power_mode);
7581 err = ipw2100_set_power_mode(priv, IPW_POWER_MODE_CAM);
7582 IPW_DEBUG_WX("SET Power Management Mode -> off\n");
7583 goto done;
7584 }
7585
7586 switch (wrqu->power.flags & IW_POWER_MODE) {
James Ketrenosee8e3652005-09-14 09:47:29 -05007587 case IW_POWER_ON: /* If not specified */
7588 case IW_POWER_MODE: /* If set all mask */
Jean Delvarec03983a2007-10-19 23:22:55 +02007589 case IW_POWER_ALL_R: /* If explicitly state all */
James Ketrenos2c86c272005-03-23 17:32:29 -06007590 break;
James Ketrenosee8e3652005-09-14 09:47:29 -05007591 default: /* Otherwise we don't support it */
James Ketrenos2c86c272005-03-23 17:32:29 -06007592 IPW_DEBUG_WX("SET PM Mode: %X not supported.\n",
7593 wrqu->power.flags);
7594 err = -EOPNOTSUPP;
7595 goto done;
7596 }
7597
7598 /* If the user hasn't specified a power management mode yet, default
7599 * to BATTERY */
7600 priv->power_mode = IPW_POWER_ENABLED | priv->power_mode;
7601 err = ipw2100_set_power_mode(priv, IPW_POWER_LEVEL(priv->power_mode));
7602
James Ketrenosee8e3652005-09-14 09:47:29 -05007603 IPW_DEBUG_WX("SET Power Management Mode -> 0x%02X\n", priv->power_mode);
James Ketrenos2c86c272005-03-23 17:32:29 -06007604
James Ketrenosee8e3652005-09-14 09:47:29 -05007605 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08007606 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007607 return err;
7608
7609}
7610
7611static int ipw2100_wx_get_power(struct net_device *dev,
James Ketrenosee8e3652005-09-14 09:47:29 -05007612 struct iw_request_info *info,
7613 union iwreq_data *wrqu, char *extra)
James Ketrenos2c86c272005-03-23 17:32:29 -06007614{
7615 /*
7616 * This can be called at any time. No action lock required
7617 */
7618
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007619 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06007620
James Ketrenos82328352005-08-24 22:33:31 -05007621 if (!(priv->power_mode & IPW_POWER_ENABLED))
James Ketrenos2c86c272005-03-23 17:32:29 -06007622 wrqu->power.disabled = 1;
James Ketrenos82328352005-08-24 22:33:31 -05007623 else {
James Ketrenos2c86c272005-03-23 17:32:29 -06007624 wrqu->power.disabled = 0;
7625 wrqu->power.flags = 0;
7626 }
7627
7628 IPW_DEBUG_WX("GET Power Management Mode -> %02X\n", priv->power_mode);
7629
7630 return 0;
7631}
7632
James Ketrenos82328352005-08-24 22:33:31 -05007633/*
7634 * WE-18 WPA support
7635 */
7636
7637/* SIOCSIWGENIE */
7638static int ipw2100_wx_set_genie(struct net_device *dev,
7639 struct iw_request_info *info,
7640 union iwreq_data *wrqu, char *extra)
7641{
7642
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007643 struct ipw2100_priv *priv = libipw_priv(dev);
7644 struct libipw_device *ieee = priv->ieee;
James Ketrenos82328352005-08-24 22:33:31 -05007645 u8 *buf;
7646
7647 if (!ieee->wpa_enabled)
7648 return -EOPNOTSUPP;
7649
7650 if (wrqu->data.length > MAX_WPA_IE_LEN ||
7651 (wrqu->data.length && extra == NULL))
7652 return -EINVAL;
7653
7654 if (wrqu->data.length) {
Eric Sesterhennc3a9392e2006-10-23 22:20:15 +02007655 buf = kmemdup(extra, wrqu->data.length, GFP_KERNEL);
James Ketrenos82328352005-08-24 22:33:31 -05007656 if (buf == NULL)
7657 return -ENOMEM;
7658
James Ketrenos82328352005-08-24 22:33:31 -05007659 kfree(ieee->wpa_ie);
7660 ieee->wpa_ie = buf;
7661 ieee->wpa_ie_len = wrqu->data.length;
7662 } else {
7663 kfree(ieee->wpa_ie);
7664 ieee->wpa_ie = NULL;
7665 ieee->wpa_ie_len = 0;
7666 }
7667
7668 ipw2100_wpa_assoc_frame(priv, ieee->wpa_ie, ieee->wpa_ie_len);
7669
7670 return 0;
7671}
7672
7673/* SIOCGIWGENIE */
7674static int ipw2100_wx_get_genie(struct net_device *dev,
7675 struct iw_request_info *info,
7676 union iwreq_data *wrqu, char *extra)
7677{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007678 struct ipw2100_priv *priv = libipw_priv(dev);
7679 struct libipw_device *ieee = priv->ieee;
James Ketrenos82328352005-08-24 22:33:31 -05007680
7681 if (ieee->wpa_ie_len == 0 || ieee->wpa_ie == NULL) {
7682 wrqu->data.length = 0;
7683 return 0;
7684 }
7685
7686 if (wrqu->data.length < ieee->wpa_ie_len)
7687 return -E2BIG;
7688
7689 wrqu->data.length = ieee->wpa_ie_len;
7690 memcpy(extra, ieee->wpa_ie, ieee->wpa_ie_len);
7691
7692 return 0;
7693}
7694
7695/* SIOCSIWAUTH */
7696static int ipw2100_wx_set_auth(struct net_device *dev,
7697 struct iw_request_info *info,
7698 union iwreq_data *wrqu, char *extra)
7699{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007700 struct ipw2100_priv *priv = libipw_priv(dev);
7701 struct libipw_device *ieee = priv->ieee;
James Ketrenos82328352005-08-24 22:33:31 -05007702 struct iw_param *param = &wrqu->param;
John W. Linville274bfb82008-10-29 11:35:05 -04007703 struct lib80211_crypt_data *crypt;
James Ketrenos82328352005-08-24 22:33:31 -05007704 unsigned long flags;
7705 int ret = 0;
7706
7707 switch (param->flags & IW_AUTH_INDEX) {
7708 case IW_AUTH_WPA_VERSION:
7709 case IW_AUTH_CIPHER_PAIRWISE:
7710 case IW_AUTH_CIPHER_GROUP:
7711 case IW_AUTH_KEY_MGMT:
7712 /*
7713 * ipw2200 does not use these parameters
7714 */
7715 break;
7716
7717 case IW_AUTH_TKIP_COUNTERMEASURES:
John W. Linville274bfb82008-10-29 11:35:05 -04007718 crypt = priv->ieee->crypt_info.crypt[priv->ieee->crypt_info.tx_keyidx];
James Ketrenos991d1cc2005-10-13 09:26:48 +00007719 if (!crypt || !crypt->ops->set_flags || !crypt->ops->get_flags)
James Ketrenos82328352005-08-24 22:33:31 -05007720 break;
James Ketrenos82328352005-08-24 22:33:31 -05007721
7722 flags = crypt->ops->get_flags(crypt->priv);
7723
7724 if (param->value)
7725 flags |= IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
7726 else
7727 flags &= ~IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
7728
7729 crypt->ops->set_flags(flags, crypt->priv);
7730
7731 break;
7732
7733 case IW_AUTH_DROP_UNENCRYPTED:{
7734 /* HACK:
7735 *
7736 * wpa_supplicant calls set_wpa_enabled when the driver
7737 * is loaded and unloaded, regardless of if WPA is being
7738 * used. No other calls are made which can be used to
7739 * determine if encryption will be used or not prior to
7740 * association being expected. If encryption is not being
7741 * used, drop_unencrypted is set to false, else true -- we
7742 * can use this to determine if the CAP_PRIVACY_ON bit should
7743 * be set.
7744 */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007745 struct libipw_security sec = {
James Ketrenos82328352005-08-24 22:33:31 -05007746 .flags = SEC_ENABLED,
7747 .enabled = param->value,
7748 };
7749 priv->ieee->drop_unencrypted = param->value;
7750 /* We only change SEC_LEVEL for open mode. Others
7751 * are set by ipw_wpa_set_encryption.
7752 */
7753 if (!param->value) {
7754 sec.flags |= SEC_LEVEL;
7755 sec.level = SEC_LEVEL_0;
7756 } else {
7757 sec.flags |= SEC_LEVEL;
7758 sec.level = SEC_LEVEL_1;
7759 }
7760 if (priv->ieee->set_security)
7761 priv->ieee->set_security(priv->ieee->dev, &sec);
7762 break;
7763 }
7764
7765 case IW_AUTH_80211_AUTH_ALG:
7766 ret = ipw2100_wpa_set_auth_algs(priv, param->value);
7767 break;
7768
7769 case IW_AUTH_WPA_ENABLED:
7770 ret = ipw2100_wpa_enable(priv, param->value);
7771 break;
7772
7773 case IW_AUTH_RX_UNENCRYPTED_EAPOL:
7774 ieee->ieee802_1x = param->value;
7775 break;
7776
7777 //case IW_AUTH_ROAMING_CONTROL:
7778 case IW_AUTH_PRIVACY_INVOKED:
7779 ieee->privacy_invoked = param->value;
7780 break;
7781
7782 default:
7783 return -EOPNOTSUPP;
7784 }
7785 return ret;
7786}
7787
7788/* SIOCGIWAUTH */
7789static int ipw2100_wx_get_auth(struct net_device *dev,
7790 struct iw_request_info *info,
7791 union iwreq_data *wrqu, char *extra)
7792{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007793 struct ipw2100_priv *priv = libipw_priv(dev);
7794 struct libipw_device *ieee = priv->ieee;
John W. Linville274bfb82008-10-29 11:35:05 -04007795 struct lib80211_crypt_data *crypt;
James Ketrenos82328352005-08-24 22:33:31 -05007796 struct iw_param *param = &wrqu->param;
7797 int ret = 0;
7798
7799 switch (param->flags & IW_AUTH_INDEX) {
7800 case IW_AUTH_WPA_VERSION:
7801 case IW_AUTH_CIPHER_PAIRWISE:
7802 case IW_AUTH_CIPHER_GROUP:
7803 case IW_AUTH_KEY_MGMT:
7804 /*
7805 * wpa_supplicant will control these internally
7806 */
7807 ret = -EOPNOTSUPP;
7808 break;
7809
7810 case IW_AUTH_TKIP_COUNTERMEASURES:
John W. Linville274bfb82008-10-29 11:35:05 -04007811 crypt = priv->ieee->crypt_info.crypt[priv->ieee->crypt_info.tx_keyidx];
James Ketrenos82328352005-08-24 22:33:31 -05007812 if (!crypt || !crypt->ops->get_flags) {
7813 IPW_DEBUG_WARNING("Can't get TKIP countermeasures: "
7814 "crypt not set!\n");
7815 break;
7816 }
7817
7818 param->value = (crypt->ops->get_flags(crypt->priv) &
7819 IEEE80211_CRYPTO_TKIP_COUNTERMEASURES) ? 1 : 0;
7820
7821 break;
7822
7823 case IW_AUTH_DROP_UNENCRYPTED:
7824 param->value = ieee->drop_unencrypted;
7825 break;
7826
7827 case IW_AUTH_80211_AUTH_ALG:
25b645b2005-07-12 15:45:30 -05007828 param->value = priv->ieee->sec.auth_mode;
James Ketrenos82328352005-08-24 22:33:31 -05007829 break;
7830
7831 case IW_AUTH_WPA_ENABLED:
7832 param->value = ieee->wpa_enabled;
7833 break;
7834
7835 case IW_AUTH_RX_UNENCRYPTED_EAPOL:
7836 param->value = ieee->ieee802_1x;
7837 break;
7838
7839 case IW_AUTH_ROAMING_CONTROL:
7840 case IW_AUTH_PRIVACY_INVOKED:
7841 param->value = ieee->privacy_invoked;
7842 break;
7843
7844 default:
7845 return -EOPNOTSUPP;
7846 }
7847 return 0;
7848}
7849
7850/* SIOCSIWENCODEEXT */
7851static int ipw2100_wx_set_encodeext(struct net_device *dev,
7852 struct iw_request_info *info,
7853 union iwreq_data *wrqu, char *extra)
7854{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007855 struct ipw2100_priv *priv = libipw_priv(dev);
7856 return libipw_wx_set_encodeext(priv->ieee, info, wrqu, extra);
James Ketrenos82328352005-08-24 22:33:31 -05007857}
7858
7859/* SIOCGIWENCODEEXT */
7860static int ipw2100_wx_get_encodeext(struct net_device *dev,
7861 struct iw_request_info *info,
7862 union iwreq_data *wrqu, char *extra)
7863{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007864 struct ipw2100_priv *priv = libipw_priv(dev);
7865 return libipw_wx_get_encodeext(priv->ieee, info, wrqu, extra);
James Ketrenos82328352005-08-24 22:33:31 -05007866}
7867
7868/* SIOCSIWMLME */
7869static int ipw2100_wx_set_mlme(struct net_device *dev,
7870 struct iw_request_info *info,
7871 union iwreq_data *wrqu, char *extra)
7872{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007873 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos82328352005-08-24 22:33:31 -05007874 struct iw_mlme *mlme = (struct iw_mlme *)extra;
Al Viro1edd3a52007-12-21 00:15:18 -05007875 __le16 reason;
James Ketrenos82328352005-08-24 22:33:31 -05007876
7877 reason = cpu_to_le16(mlme->reason_code);
7878
7879 switch (mlme->cmd) {
7880 case IW_MLME_DEAUTH:
7881 // silently ignore
7882 break;
7883
7884 case IW_MLME_DISASSOC:
7885 ipw2100_disassociate_bssid(priv);
7886 break;
7887
7888 default:
7889 return -EOPNOTSUPP;
7890 }
7891 return 0;
7892}
James Ketrenos2c86c272005-03-23 17:32:29 -06007893
7894/*
7895 *
7896 * IWPRIV handlers
7897 *
7898 */
7899#ifdef CONFIG_IPW2100_MONITOR
7900static int ipw2100_wx_set_promisc(struct net_device *dev,
7901 struct iw_request_info *info,
7902 union iwreq_data *wrqu, char *extra)
7903{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007904 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06007905 int *parms = (int *)extra;
7906 int enable = (parms[0] > 0);
7907 int err = 0;
7908
Ingo Molnar752e3772006-02-28 07:20:54 +08007909 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007910 if (!(priv->status & STATUS_INITIALIZED)) {
7911 err = -EIO;
7912 goto done;
7913 }
7914
7915 if (enable) {
7916 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
7917 err = ipw2100_set_channel(priv, parms[1], 0);
7918 goto done;
7919 }
7920 priv->channel = parms[1];
7921 err = ipw2100_switch_mode(priv, IW_MODE_MONITOR);
7922 } else {
7923 if (priv->ieee->iw_mode == IW_MODE_MONITOR)
7924 err = ipw2100_switch_mode(priv, priv->last_mode);
7925 }
James Ketrenosee8e3652005-09-14 09:47:29 -05007926 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08007927 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007928 return err;
7929}
7930
7931static int ipw2100_wx_reset(struct net_device *dev,
7932 struct iw_request_info *info,
7933 union iwreq_data *wrqu, char *extra)
7934{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007935 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06007936 if (priv->status & STATUS_INITIALIZED)
7937 schedule_reset(priv);
7938 return 0;
7939}
7940
7941#endif
7942
7943static int ipw2100_wx_set_powermode(struct net_device *dev,
7944 struct iw_request_info *info,
7945 union iwreq_data *wrqu, char *extra)
7946{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007947 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06007948 int err = 0, mode = *(int *)extra;
7949
Ingo Molnar752e3772006-02-28 07:20:54 +08007950 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007951 if (!(priv->status & STATUS_INITIALIZED)) {
7952 err = -EIO;
7953 goto done;
7954 }
7955
Zhu Yi9f3b2412007-07-12 16:09:24 +08007956 if ((mode < 0) || (mode > POWER_MODES))
James Ketrenos2c86c272005-03-23 17:32:29 -06007957 mode = IPW_POWER_AUTO;
7958
Zhu Yi9f3b2412007-07-12 16:09:24 +08007959 if (IPW_POWER_LEVEL(priv->power_mode) != mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06007960 err = ipw2100_set_power_mode(priv, mode);
James Ketrenosee8e3652005-09-14 09:47:29 -05007961 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08007962 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007963 return err;
7964}
7965
7966#define MAX_POWER_STRING 80
7967static int ipw2100_wx_get_powermode(struct net_device *dev,
7968 struct iw_request_info *info,
7969 union iwreq_data *wrqu, char *extra)
7970{
7971 /*
7972 * This can be called at any time. No action lock required
7973 */
7974
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007975 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06007976 int level = IPW_POWER_LEVEL(priv->power_mode);
7977 s32 timeout, period;
7978
7979 if (!(priv->power_mode & IPW_POWER_ENABLED)) {
7980 snprintf(extra, MAX_POWER_STRING,
7981 "Power save level: %d (Off)", level);
7982 } else {
7983 switch (level) {
7984 case IPW_POWER_MODE_CAM:
7985 snprintf(extra, MAX_POWER_STRING,
7986 "Power save level: %d (None)", level);
7987 break;
7988 case IPW_POWER_AUTO:
James Ketrenosee8e3652005-09-14 09:47:29 -05007989 snprintf(extra, MAX_POWER_STRING,
Zhu Yi9f3b2412007-07-12 16:09:24 +08007990 "Power save level: %d (Auto)", level);
James Ketrenos2c86c272005-03-23 17:32:29 -06007991 break;
7992 default:
7993 timeout = timeout_duration[level - 1] / 1000;
7994 period = period_duration[level - 1] / 1000;
7995 snprintf(extra, MAX_POWER_STRING,
7996 "Power save level: %d "
7997 "(Timeout %dms, Period %dms)",
7998 level, timeout, period);
7999 }
8000 }
8001
8002 wrqu->data.length = strlen(extra) + 1;
8003
8004 return 0;
8005}
8006
James Ketrenos2c86c272005-03-23 17:32:29 -06008007static int ipw2100_wx_set_preamble(struct net_device *dev,
8008 struct iw_request_info *info,
8009 union iwreq_data *wrqu, char *extra)
8010{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008011 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06008012 int err, mode = *(int *)extra;
8013
Ingo Molnar752e3772006-02-28 07:20:54 +08008014 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06008015 if (!(priv->status & STATUS_INITIALIZED)) {
8016 err = -EIO;
8017 goto done;
8018 }
8019
8020 if (mode == 1)
8021 priv->config |= CFG_LONG_PREAMBLE;
8022 else if (mode == 0)
8023 priv->config &= ~CFG_LONG_PREAMBLE;
8024 else {
8025 err = -EINVAL;
8026 goto done;
8027 }
8028
8029 err = ipw2100_system_config(priv, 0);
8030
James Ketrenosee8e3652005-09-14 09:47:29 -05008031 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08008032 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06008033 return err;
8034}
8035
8036static int ipw2100_wx_get_preamble(struct net_device *dev,
James Ketrenosee8e3652005-09-14 09:47:29 -05008037 struct iw_request_info *info,
8038 union iwreq_data *wrqu, char *extra)
James Ketrenos2c86c272005-03-23 17:32:29 -06008039{
8040 /*
8041 * This can be called at any time. No action lock required
8042 */
8043
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008044 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06008045
8046 if (priv->config & CFG_LONG_PREAMBLE)
8047 snprintf(wrqu->name, IFNAMSIZ, "long (1)");
8048 else
8049 snprintf(wrqu->name, IFNAMSIZ, "auto (0)");
8050
8051 return 0;
8052}
8053
James Ketrenos82328352005-08-24 22:33:31 -05008054#ifdef CONFIG_IPW2100_MONITOR
8055static int ipw2100_wx_set_crc_check(struct net_device *dev,
8056 struct iw_request_info *info,
8057 union iwreq_data *wrqu, char *extra)
James Ketrenos2c86c272005-03-23 17:32:29 -06008058{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008059 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos82328352005-08-24 22:33:31 -05008060 int err, mode = *(int *)extra;
8061
Ingo Molnar752e3772006-02-28 07:20:54 +08008062 mutex_lock(&priv->action_mutex);
James Ketrenos82328352005-08-24 22:33:31 -05008063 if (!(priv->status & STATUS_INITIALIZED)) {
8064 err = -EIO;
8065 goto done;
8066 }
8067
8068 if (mode == 1)
8069 priv->config |= CFG_CRC_CHECK;
8070 else if (mode == 0)
8071 priv->config &= ~CFG_CRC_CHECK;
8072 else {
8073 err = -EINVAL;
8074 goto done;
8075 }
8076 err = 0;
8077
8078 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08008079 mutex_unlock(&priv->action_mutex);
James Ketrenos82328352005-08-24 22:33:31 -05008080 return err;
8081}
8082
8083static int ipw2100_wx_get_crc_check(struct net_device *dev,
8084 struct iw_request_info *info,
8085 union iwreq_data *wrqu, char *extra)
8086{
8087 /*
8088 * This can be called at any time. No action lock required
8089 */
8090
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008091 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos82328352005-08-24 22:33:31 -05008092
8093 if (priv->config & CFG_CRC_CHECK)
8094 snprintf(wrqu->name, IFNAMSIZ, "CRC checked (1)");
8095 else
8096 snprintf(wrqu->name, IFNAMSIZ, "CRC ignored (0)");
8097
8098 return 0;
8099}
8100#endif /* CONFIG_IPW2100_MONITOR */
8101
James Ketrenosee8e3652005-09-14 09:47:29 -05008102static iw_handler ipw2100_wx_handlers[] = {
8103 NULL, /* SIOCSIWCOMMIT */
8104 ipw2100_wx_get_name, /* SIOCGIWNAME */
8105 NULL, /* SIOCSIWNWID */
8106 NULL, /* SIOCGIWNWID */
8107 ipw2100_wx_set_freq, /* SIOCSIWFREQ */
8108 ipw2100_wx_get_freq, /* SIOCGIWFREQ */
8109 ipw2100_wx_set_mode, /* SIOCSIWMODE */
8110 ipw2100_wx_get_mode, /* SIOCGIWMODE */
8111 NULL, /* SIOCSIWSENS */
8112 NULL, /* SIOCGIWSENS */
8113 NULL, /* SIOCSIWRANGE */
8114 ipw2100_wx_get_range, /* SIOCGIWRANGE */
8115 NULL, /* SIOCSIWPRIV */
8116 NULL, /* SIOCGIWPRIV */
8117 NULL, /* SIOCSIWSTATS */
8118 NULL, /* SIOCGIWSTATS */
8119 NULL, /* SIOCSIWSPY */
8120 NULL, /* SIOCGIWSPY */
8121 NULL, /* SIOCGIWTHRSPY */
8122 NULL, /* SIOCWIWTHRSPY */
8123 ipw2100_wx_set_wap, /* SIOCSIWAP */
8124 ipw2100_wx_get_wap, /* SIOCGIWAP */
James Ketrenos82328352005-08-24 22:33:31 -05008125 ipw2100_wx_set_mlme, /* SIOCSIWMLME */
James Ketrenosee8e3652005-09-14 09:47:29 -05008126 NULL, /* SIOCGIWAPLIST -- deprecated */
8127 ipw2100_wx_set_scan, /* SIOCSIWSCAN */
8128 ipw2100_wx_get_scan, /* SIOCGIWSCAN */
8129 ipw2100_wx_set_essid, /* SIOCSIWESSID */
8130 ipw2100_wx_get_essid, /* SIOCGIWESSID */
8131 ipw2100_wx_set_nick, /* SIOCSIWNICKN */
8132 ipw2100_wx_get_nick, /* SIOCGIWNICKN */
8133 NULL, /* -- hole -- */
8134 NULL, /* -- hole -- */
8135 ipw2100_wx_set_rate, /* SIOCSIWRATE */
8136 ipw2100_wx_get_rate, /* SIOCGIWRATE */
8137 ipw2100_wx_set_rts, /* SIOCSIWRTS */
8138 ipw2100_wx_get_rts, /* SIOCGIWRTS */
8139 ipw2100_wx_set_frag, /* SIOCSIWFRAG */
8140 ipw2100_wx_get_frag, /* SIOCGIWFRAG */
8141 ipw2100_wx_set_txpow, /* SIOCSIWTXPOW */
8142 ipw2100_wx_get_txpow, /* SIOCGIWTXPOW */
8143 ipw2100_wx_set_retry, /* SIOCSIWRETRY */
8144 ipw2100_wx_get_retry, /* SIOCGIWRETRY */
8145 ipw2100_wx_set_encode, /* SIOCSIWENCODE */
8146 ipw2100_wx_get_encode, /* SIOCGIWENCODE */
8147 ipw2100_wx_set_power, /* SIOCSIWPOWER */
8148 ipw2100_wx_get_power, /* SIOCGIWPOWER */
James Ketrenos82328352005-08-24 22:33:31 -05008149 NULL, /* -- hole -- */
8150 NULL, /* -- hole -- */
8151 ipw2100_wx_set_genie, /* SIOCSIWGENIE */
8152 ipw2100_wx_get_genie, /* SIOCGIWGENIE */
8153 ipw2100_wx_set_auth, /* SIOCSIWAUTH */
8154 ipw2100_wx_get_auth, /* SIOCGIWAUTH */
8155 ipw2100_wx_set_encodeext, /* SIOCSIWENCODEEXT */
8156 ipw2100_wx_get_encodeext, /* SIOCGIWENCODEEXT */
8157 NULL, /* SIOCSIWPMKSA */
James Ketrenos2c86c272005-03-23 17:32:29 -06008158};
8159
8160#define IPW2100_PRIV_SET_MONITOR SIOCIWFIRSTPRIV
8161#define IPW2100_PRIV_RESET SIOCIWFIRSTPRIV+1
8162#define IPW2100_PRIV_SET_POWER SIOCIWFIRSTPRIV+2
8163#define IPW2100_PRIV_GET_POWER SIOCIWFIRSTPRIV+3
8164#define IPW2100_PRIV_SET_LONGPREAMBLE SIOCIWFIRSTPRIV+4
8165#define IPW2100_PRIV_GET_LONGPREAMBLE SIOCIWFIRSTPRIV+5
James Ketrenos82328352005-08-24 22:33:31 -05008166#define IPW2100_PRIV_SET_CRC_CHECK SIOCIWFIRSTPRIV+6
8167#define IPW2100_PRIV_GET_CRC_CHECK SIOCIWFIRSTPRIV+7
James Ketrenos2c86c272005-03-23 17:32:29 -06008168
8169static const struct iw_priv_args ipw2100_private_args[] = {
8170
8171#ifdef CONFIG_IPW2100_MONITOR
8172 {
James Ketrenosee8e3652005-09-14 09:47:29 -05008173 IPW2100_PRIV_SET_MONITOR,
8174 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 2, 0, "monitor"},
James Ketrenos2c86c272005-03-23 17:32:29 -06008175 {
James Ketrenosee8e3652005-09-14 09:47:29 -05008176 IPW2100_PRIV_RESET,
8177 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 0, 0, "reset"},
8178#endif /* CONFIG_IPW2100_MONITOR */
James Ketrenos2c86c272005-03-23 17:32:29 -06008179
8180 {
James Ketrenosee8e3652005-09-14 09:47:29 -05008181 IPW2100_PRIV_SET_POWER,
8182 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1, 0, "set_power"},
James Ketrenos2c86c272005-03-23 17:32:29 -06008183 {
James Ketrenosee8e3652005-09-14 09:47:29 -05008184 IPW2100_PRIV_GET_POWER,
8185 0, IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | MAX_POWER_STRING,
8186 "get_power"},
James Ketrenos2c86c272005-03-23 17:32:29 -06008187 {
James Ketrenosee8e3652005-09-14 09:47:29 -05008188 IPW2100_PRIV_SET_LONGPREAMBLE,
8189 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1, 0, "set_preamble"},
James Ketrenos2c86c272005-03-23 17:32:29 -06008190 {
James Ketrenosee8e3652005-09-14 09:47:29 -05008191 IPW2100_PRIV_GET_LONGPREAMBLE,
8192 0, IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | IFNAMSIZ, "get_preamble"},
James Ketrenos82328352005-08-24 22:33:31 -05008193#ifdef CONFIG_IPW2100_MONITOR
8194 {
8195 IPW2100_PRIV_SET_CRC_CHECK,
8196 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1, 0, "set_crc_check"},
8197 {
8198 IPW2100_PRIV_GET_CRC_CHECK,
8199 0, IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | IFNAMSIZ, "get_crc_check"},
8200#endif /* CONFIG_IPW2100_MONITOR */
James Ketrenos2c86c272005-03-23 17:32:29 -06008201};
8202
8203static iw_handler ipw2100_private_handler[] = {
8204#ifdef CONFIG_IPW2100_MONITOR
8205 ipw2100_wx_set_promisc,
8206 ipw2100_wx_reset,
James Ketrenosee8e3652005-09-14 09:47:29 -05008207#else /* CONFIG_IPW2100_MONITOR */
James Ketrenos2c86c272005-03-23 17:32:29 -06008208 NULL,
8209 NULL,
James Ketrenosee8e3652005-09-14 09:47:29 -05008210#endif /* CONFIG_IPW2100_MONITOR */
James Ketrenos2c86c272005-03-23 17:32:29 -06008211 ipw2100_wx_set_powermode,
8212 ipw2100_wx_get_powermode,
8213 ipw2100_wx_set_preamble,
8214 ipw2100_wx_get_preamble,
James Ketrenos82328352005-08-24 22:33:31 -05008215#ifdef CONFIG_IPW2100_MONITOR
8216 ipw2100_wx_set_crc_check,
8217 ipw2100_wx_get_crc_check,
8218#else /* CONFIG_IPW2100_MONITOR */
8219 NULL,
8220 NULL,
8221#endif /* CONFIG_IPW2100_MONITOR */
James Ketrenos2c86c272005-03-23 17:32:29 -06008222};
8223
James Ketrenos2c86c272005-03-23 17:32:29 -06008224/*
8225 * Get wireless statistics.
8226 * Called by /proc/net/wireless
8227 * Also called by SIOCGIWSTATS
8228 */
James Ketrenosee8e3652005-09-14 09:47:29 -05008229static struct iw_statistics *ipw2100_wx_wireless_stats(struct net_device *dev)
James Ketrenos2c86c272005-03-23 17:32:29 -06008230{
8231 enum {
8232 POOR = 30,
8233 FAIR = 60,
8234 GOOD = 80,
8235 VERY_GOOD = 90,
8236 EXCELLENT = 95,
8237 PERFECT = 100
8238 };
8239 int rssi_qual;
8240 int tx_qual;
8241 int beacon_qual;
Reinette Chatre21f8a732009-08-18 10:25:05 -07008242 int quality;
James Ketrenos2c86c272005-03-23 17:32:29 -06008243
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008244 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06008245 struct iw_statistics *wstats;
Reinette Chatre21f8a732009-08-18 10:25:05 -07008246 u32 rssi, tx_retries, missed_beacons, tx_failures;
James Ketrenos2c86c272005-03-23 17:32:29 -06008247 u32 ord_len = sizeof(u32);
8248
8249 if (!priv)
James Ketrenosee8e3652005-09-14 09:47:29 -05008250 return (struct iw_statistics *)NULL;
James Ketrenos2c86c272005-03-23 17:32:29 -06008251
8252 wstats = &priv->wstats;
8253
8254 /* if hw is disabled, then ipw2100_get_ordinal() can't be called.
8255 * ipw2100_wx_wireless_stats seems to be called before fw is
8256 * initialized. STATUS_ASSOCIATED will only be set if the hw is up
8257 * and associated; if not associcated, the values are all meaningless
8258 * anyway, so set them all to NULL and INVALID */
8259 if (!(priv->status & STATUS_ASSOCIATED)) {
8260 wstats->miss.beacon = 0;
8261 wstats->discard.retries = 0;
8262 wstats->qual.qual = 0;
8263 wstats->qual.level = 0;
8264 wstats->qual.noise = 0;
8265 wstats->qual.updated = 7;
8266 wstats->qual.updated |= IW_QUAL_NOISE_INVALID |
James Ketrenosee8e3652005-09-14 09:47:29 -05008267 IW_QUAL_QUAL_INVALID | IW_QUAL_LEVEL_INVALID;
James Ketrenos2c86c272005-03-23 17:32:29 -06008268 return wstats;
8269 }
8270
8271 if (ipw2100_get_ordinal(priv, IPW_ORD_STAT_PERCENT_MISSED_BCNS,
8272 &missed_beacons, &ord_len))
8273 goto fail_get_ordinal;
8274
James Ketrenosee8e3652005-09-14 09:47:29 -05008275 /* If we don't have a connection the quality and level is 0 */
James Ketrenos2c86c272005-03-23 17:32:29 -06008276 if (!(priv->status & STATUS_ASSOCIATED)) {
8277 wstats->qual.qual = 0;
8278 wstats->qual.level = 0;
8279 } else {
8280 if (ipw2100_get_ordinal(priv, IPW_ORD_RSSI_AVG_CURR,
8281 &rssi, &ord_len))
8282 goto fail_get_ordinal;
8283 wstats->qual.level = rssi + IPW2100_RSSI_TO_DBM;
8284 if (rssi < 10)
8285 rssi_qual = rssi * POOR / 10;
8286 else if (rssi < 15)
8287 rssi_qual = (rssi - 10) * (FAIR - POOR) / 5 + POOR;
8288 else if (rssi < 20)
8289 rssi_qual = (rssi - 15) * (GOOD - FAIR) / 5 + FAIR;
8290 else if (rssi < 30)
8291 rssi_qual = (rssi - 20) * (VERY_GOOD - GOOD) /
James Ketrenosee8e3652005-09-14 09:47:29 -05008292 10 + GOOD;
James Ketrenos2c86c272005-03-23 17:32:29 -06008293 else
8294 rssi_qual = (rssi - 30) * (PERFECT - VERY_GOOD) /
James Ketrenosee8e3652005-09-14 09:47:29 -05008295 10 + VERY_GOOD;
James Ketrenos2c86c272005-03-23 17:32:29 -06008296
8297 if (ipw2100_get_ordinal(priv, IPW_ORD_STAT_PERCENT_RETRIES,
8298 &tx_retries, &ord_len))
8299 goto fail_get_ordinal;
8300
8301 if (tx_retries > 75)
8302 tx_qual = (90 - tx_retries) * POOR / 15;
8303 else if (tx_retries > 70)
8304 tx_qual = (75 - tx_retries) * (FAIR - POOR) / 5 + POOR;
8305 else if (tx_retries > 65)
8306 tx_qual = (70 - tx_retries) * (GOOD - FAIR) / 5 + FAIR;
8307 else if (tx_retries > 50)
8308 tx_qual = (65 - tx_retries) * (VERY_GOOD - GOOD) /
James Ketrenosee8e3652005-09-14 09:47:29 -05008309 15 + GOOD;
James Ketrenos2c86c272005-03-23 17:32:29 -06008310 else
8311 tx_qual = (50 - tx_retries) *
James Ketrenosee8e3652005-09-14 09:47:29 -05008312 (PERFECT - VERY_GOOD) / 50 + VERY_GOOD;
James Ketrenos2c86c272005-03-23 17:32:29 -06008313
8314 if (missed_beacons > 50)
8315 beacon_qual = (60 - missed_beacons) * POOR / 10;
8316 else if (missed_beacons > 40)
8317 beacon_qual = (50 - missed_beacons) * (FAIR - POOR) /
James Ketrenosee8e3652005-09-14 09:47:29 -05008318 10 + POOR;
James Ketrenos2c86c272005-03-23 17:32:29 -06008319 else if (missed_beacons > 32)
8320 beacon_qual = (40 - missed_beacons) * (GOOD - FAIR) /
James Ketrenosee8e3652005-09-14 09:47:29 -05008321 18 + FAIR;
James Ketrenos2c86c272005-03-23 17:32:29 -06008322 else if (missed_beacons > 20)
8323 beacon_qual = (32 - missed_beacons) *
James Ketrenosee8e3652005-09-14 09:47:29 -05008324 (VERY_GOOD - GOOD) / 20 + GOOD;
James Ketrenos2c86c272005-03-23 17:32:29 -06008325 else
8326 beacon_qual = (20 - missed_beacons) *
James Ketrenosee8e3652005-09-14 09:47:29 -05008327 (PERFECT - VERY_GOOD) / 20 + VERY_GOOD;
James Ketrenos2c86c272005-03-23 17:32:29 -06008328
Reinette Chatre21f8a732009-08-18 10:25:05 -07008329 quality = min(tx_qual, rssi_qual);
8330 quality = min(beacon_qual, quality);
James Ketrenos2c86c272005-03-23 17:32:29 -06008331
Brice Goglin0f52bf92005-12-01 01:41:46 -08008332#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06008333 if (beacon_qual == quality)
8334 IPW_DEBUG_WX("Quality clamped by Missed Beacons\n");
8335 else if (tx_qual == quality)
8336 IPW_DEBUG_WX("Quality clamped by Tx Retries\n");
8337 else if (quality != 100)
8338 IPW_DEBUG_WX("Quality clamped by Signal Strength\n");
8339 else
8340 IPW_DEBUG_WX("Quality not clamped.\n");
8341#endif
8342
8343 wstats->qual.qual = quality;
8344 wstats->qual.level = rssi + IPW2100_RSSI_TO_DBM;
8345 }
8346
8347 wstats->qual.noise = 0;
8348 wstats->qual.updated = 7;
8349 wstats->qual.updated |= IW_QUAL_NOISE_INVALID;
8350
James Ketrenosee8e3652005-09-14 09:47:29 -05008351 /* FIXME: this is percent and not a # */
James Ketrenos2c86c272005-03-23 17:32:29 -06008352 wstats->miss.beacon = missed_beacons;
8353
8354 if (ipw2100_get_ordinal(priv, IPW_ORD_STAT_TX_FAILURES,
8355 &tx_failures, &ord_len))
8356 goto fail_get_ordinal;
8357 wstats->discard.retries = tx_failures;
8358
8359 return wstats;
8360
James Ketrenosee8e3652005-09-14 09:47:29 -05008361 fail_get_ordinal:
James Ketrenos2c86c272005-03-23 17:32:29 -06008362 IPW_DEBUG_WX("failed querying ordinals.\n");
8363
James Ketrenosee8e3652005-09-14 09:47:29 -05008364 return (struct iw_statistics *)NULL;
James Ketrenos2c86c272005-03-23 17:32:29 -06008365}
8366
James Ketrenoseaf8f532005-11-12 12:50:12 -06008367static struct iw_handler_def ipw2100_wx_handler_def = {
8368 .standard = ipw2100_wx_handlers,
Denis Chengff8ac602007-09-02 18:30:18 +08008369 .num_standard = ARRAY_SIZE(ipw2100_wx_handlers),
8370 .num_private = ARRAY_SIZE(ipw2100_private_handler),
8371 .num_private_args = ARRAY_SIZE(ipw2100_private_args),
James Ketrenoseaf8f532005-11-12 12:50:12 -06008372 .private = (iw_handler *) ipw2100_private_handler,
8373 .private_args = (struct iw_priv_args *)ipw2100_private_args,
8374 .get_wireless_stats = ipw2100_wx_wireless_stats,
8375};
8376
David Howellsc4028952006-11-22 14:57:56 +00008377static void ipw2100_wx_event_work(struct work_struct *work)
James Ketrenos2c86c272005-03-23 17:32:29 -06008378{
David Howellsc4028952006-11-22 14:57:56 +00008379 struct ipw2100_priv *priv =
8380 container_of(work, struct ipw2100_priv, wx_event_work.work);
James Ketrenos2c86c272005-03-23 17:32:29 -06008381 union iwreq_data wrqu;
Hannes Ederb9da9e92009-02-14 11:50:26 +00008382 unsigned int len = ETH_ALEN;
James Ketrenos2c86c272005-03-23 17:32:29 -06008383
8384 if (priv->status & STATUS_STOPPING)
8385 return;
8386
Ingo Molnar752e3772006-02-28 07:20:54 +08008387 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06008388
8389 IPW_DEBUG_WX("enter\n");
8390
Ingo Molnar752e3772006-02-28 07:20:54 +08008391 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06008392
8393 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
8394
8395 /* Fetch BSSID from the hardware */
8396 if (!(priv->status & (STATUS_ASSOCIATING | STATUS_ASSOCIATED)) ||
8397 priv->status & STATUS_RF_KILL_MASK ||
8398 ipw2100_get_ordinal(priv, IPW_ORD_STAT_ASSN_AP_BSSID,
James Ketrenosee8e3652005-09-14 09:47:29 -05008399 &priv->bssid, &len)) {
James Ketrenos2c86c272005-03-23 17:32:29 -06008400 memset(wrqu.ap_addr.sa_data, 0, ETH_ALEN);
8401 } else {
8402 /* We now have the BSSID, so can finish setting to the full
8403 * associated state */
8404 memcpy(wrqu.ap_addr.sa_data, priv->bssid, ETH_ALEN);
James Ketrenos82328352005-08-24 22:33:31 -05008405 memcpy(priv->ieee->bssid, priv->bssid, ETH_ALEN);
James Ketrenos2c86c272005-03-23 17:32:29 -06008406 priv->status &= ~STATUS_ASSOCIATING;
8407 priv->status |= STATUS_ASSOCIATED;
8408 netif_carrier_on(priv->net_dev);
James Ketrenos82328352005-08-24 22:33:31 -05008409 netif_wake_queue(priv->net_dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06008410 }
8411
8412 if (!(priv->status & STATUS_ASSOCIATED)) {
8413 IPW_DEBUG_WX("Configuring ESSID\n");
Ingo Molnar752e3772006-02-28 07:20:54 +08008414 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06008415 /* This is a disassociation event, so kick the firmware to
8416 * look for another AP */
8417 if (priv->config & CFG_STATIC_ESSID)
James Ketrenosee8e3652005-09-14 09:47:29 -05008418 ipw2100_set_essid(priv, priv->essid, priv->essid_len,
8419 0);
James Ketrenos2c86c272005-03-23 17:32:29 -06008420 else
8421 ipw2100_set_essid(priv, NULL, 0, 0);
Ingo Molnar752e3772006-02-28 07:20:54 +08008422 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06008423 }
8424
8425 wireless_send_event(priv->net_dev, SIOCGIWAP, &wrqu, NULL);
8426}
8427
8428#define IPW2100_FW_MAJOR_VERSION 1
8429#define IPW2100_FW_MINOR_VERSION 3
8430
8431#define IPW2100_FW_MINOR(x) ((x & 0xff) >> 8)
8432#define IPW2100_FW_MAJOR(x) (x & 0xff)
8433
8434#define IPW2100_FW_VERSION ((IPW2100_FW_MINOR_VERSION << 8) | \
8435 IPW2100_FW_MAJOR_VERSION)
8436
8437#define IPW2100_FW_PREFIX "ipw2100-" __stringify(IPW2100_FW_MAJOR_VERSION) \
8438"." __stringify(IPW2100_FW_MINOR_VERSION)
8439
8440#define IPW2100_FW_NAME(x) IPW2100_FW_PREFIX "" x ".fw"
8441
James Ketrenos2c86c272005-03-23 17:32:29 -06008442/*
8443
8444BINARY FIRMWARE HEADER FORMAT
8445
8446offset length desc
84470 2 version
84482 2 mode == 0:BSS,1:IBSS,2:MONITOR
84494 4 fw_len
84508 4 uc_len
8451C fw_len firmware data
845212 + fw_len uc_len microcode data
8453
8454*/
8455
8456struct ipw2100_fw_header {
8457 short version;
8458 short mode;
8459 unsigned int fw_size;
8460 unsigned int uc_size;
Eric Dumazetba2d3582010-06-02 18:10:09 +00008461} __packed;
James Ketrenos2c86c272005-03-23 17:32:29 -06008462
James Ketrenos2c86c272005-03-23 17:32:29 -06008463static int ipw2100_mod_firmware_load(struct ipw2100_fw *fw)
8464{
8465 struct ipw2100_fw_header *h =
James Ketrenosee8e3652005-09-14 09:47:29 -05008466 (struct ipw2100_fw_header *)fw->fw_entry->data;
James Ketrenos2c86c272005-03-23 17:32:29 -06008467
8468 if (IPW2100_FW_MAJOR(h->version) != IPW2100_FW_MAJOR_VERSION) {
Jiri Benc797b4f72005-08-25 20:03:27 -04008469 printk(KERN_WARNING DRV_NAME ": Firmware image not compatible "
James Ketrenos2c86c272005-03-23 17:32:29 -06008470 "(detected version id of %u). "
8471 "See Documentation/networking/README.ipw2100\n",
8472 h->version);
8473 return 1;
8474 }
8475
8476 fw->version = h->version;
8477 fw->fw.data = fw->fw_entry->data + sizeof(struct ipw2100_fw_header);
8478 fw->fw.size = h->fw_size;
8479 fw->uc.data = fw->fw.data + h->fw_size;
8480 fw->uc.size = h->uc_size;
8481
8482 return 0;
8483}
8484
Jiri Bencc4aee8c2005-08-25 20:04:43 -04008485static int ipw2100_get_firmware(struct ipw2100_priv *priv,
8486 struct ipw2100_fw *fw)
James Ketrenos2c86c272005-03-23 17:32:29 -06008487{
8488 char *fw_name;
8489 int rc;
8490
8491 IPW_DEBUG_INFO("%s: Using hotplug firmware load.\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05008492 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06008493
8494 switch (priv->ieee->iw_mode) {
8495 case IW_MODE_ADHOC:
8496 fw_name = IPW2100_FW_NAME("-i");
8497 break;
8498#ifdef CONFIG_IPW2100_MONITOR
8499 case IW_MODE_MONITOR:
8500 fw_name = IPW2100_FW_NAME("-p");
8501 break;
8502#endif
8503 case IW_MODE_INFRA:
8504 default:
8505 fw_name = IPW2100_FW_NAME("");
8506 break;
8507 }
8508
8509 rc = request_firmware(&fw->fw_entry, fw_name, &priv->pci_dev->dev);
8510
8511 if (rc < 0) {
Jiri Benc797b4f72005-08-25 20:03:27 -04008512 printk(KERN_ERR DRV_NAME ": "
James Ketrenos2c86c272005-03-23 17:32:29 -06008513 "%s: Firmware '%s' not available or load failed.\n",
8514 priv->net_dev->name, fw_name);
8515 return rc;
8516 }
Jiri Bencaaa4d302005-06-07 14:58:41 +02008517 IPW_DEBUG_INFO("firmware data %p size %zd\n", fw->fw_entry->data,
James Ketrenosee8e3652005-09-14 09:47:29 -05008518 fw->fw_entry->size);
James Ketrenos2c86c272005-03-23 17:32:29 -06008519
8520 ipw2100_mod_firmware_load(fw);
8521
8522 return 0;
8523}
8524
Ben Hutchingsa278ea32009-11-07 21:58:47 +00008525MODULE_FIRMWARE(IPW2100_FW_NAME("-i"));
8526#ifdef CONFIG_IPW2100_MONITOR
8527MODULE_FIRMWARE(IPW2100_FW_NAME("-p"));
8528#endif
8529MODULE_FIRMWARE(IPW2100_FW_NAME(""));
8530
Jiri Bencc4aee8c2005-08-25 20:04:43 -04008531static void ipw2100_release_firmware(struct ipw2100_priv *priv,
8532 struct ipw2100_fw *fw)
James Ketrenos2c86c272005-03-23 17:32:29 -06008533{
8534 fw->version = 0;
8535 if (fw->fw_entry)
8536 release_firmware(fw->fw_entry);
8537 fw->fw_entry = NULL;
8538}
8539
Jiri Bencc4aee8c2005-08-25 20:04:43 -04008540static int ipw2100_get_fwversion(struct ipw2100_priv *priv, char *buf,
8541 size_t max)
James Ketrenos2c86c272005-03-23 17:32:29 -06008542{
8543 char ver[MAX_FW_VERSION_LEN];
8544 u32 len = MAX_FW_VERSION_LEN;
8545 u32 tmp;
8546 int i;
8547 /* firmware version is an ascii string (max len of 14) */
James Ketrenosee8e3652005-09-14 09:47:29 -05008548 if (ipw2100_get_ordinal(priv, IPW_ORD_STAT_FW_VER_NUM, ver, &len))
James Ketrenos2c86c272005-03-23 17:32:29 -06008549 return -EIO;
8550 tmp = max;
8551 if (len >= max)
8552 len = max - 1;
8553 for (i = 0; i < len; i++)
8554 buf[i] = ver[i];
8555 buf[i] = '\0';
8556 return tmp;
8557}
8558
Jiri Bencc4aee8c2005-08-25 20:04:43 -04008559static int ipw2100_get_ucodeversion(struct ipw2100_priv *priv, char *buf,
8560 size_t max)
James Ketrenos2c86c272005-03-23 17:32:29 -06008561{
8562 u32 ver;
8563 u32 len = sizeof(ver);
8564 /* microcode version is a 32 bit integer */
James Ketrenosee8e3652005-09-14 09:47:29 -05008565 if (ipw2100_get_ordinal(priv, IPW_ORD_UCODE_VERSION, &ver, &len))
James Ketrenos2c86c272005-03-23 17:32:29 -06008566 return -EIO;
8567 return snprintf(buf, max, "%08X", ver);
8568}
8569
8570/*
8571 * On exit, the firmware will have been freed from the fw list
8572 */
James Ketrenosee8e3652005-09-14 09:47:29 -05008573static int ipw2100_fw_download(struct ipw2100_priv *priv, struct ipw2100_fw *fw)
James Ketrenos2c86c272005-03-23 17:32:29 -06008574{
8575 /* firmware is constructed of N contiguous entries, each entry is
8576 * structured as:
8577 *
8578 * offset sie desc
8579 * 0 4 address to write to
8580 * 4 2 length of data run
James Ketrenosee8e3652005-09-14 09:47:29 -05008581 * 6 length data
James Ketrenos2c86c272005-03-23 17:32:29 -06008582 */
8583 unsigned int addr;
8584 unsigned short len;
8585
8586 const unsigned char *firmware_data = fw->fw.data;
8587 unsigned int firmware_data_left = fw->fw.size;
8588
8589 while (firmware_data_left > 0) {
James Ketrenosee8e3652005-09-14 09:47:29 -05008590 addr = *(u32 *) (firmware_data);
8591 firmware_data += 4;
James Ketrenos2c86c272005-03-23 17:32:29 -06008592 firmware_data_left -= 4;
8593
James Ketrenosee8e3652005-09-14 09:47:29 -05008594 len = *(u16 *) (firmware_data);
8595 firmware_data += 2;
James Ketrenos2c86c272005-03-23 17:32:29 -06008596 firmware_data_left -= 2;
8597
8598 if (len > 32) {
Jiri Benc797b4f72005-08-25 20:03:27 -04008599 printk(KERN_ERR DRV_NAME ": "
James Ketrenos2c86c272005-03-23 17:32:29 -06008600 "Invalid firmware run-length of %d bytes\n",
8601 len);
8602 return -EINVAL;
8603 }
8604
8605 write_nic_memory(priv->net_dev, addr, len, firmware_data);
James Ketrenosee8e3652005-09-14 09:47:29 -05008606 firmware_data += len;
James Ketrenos2c86c272005-03-23 17:32:29 -06008607 firmware_data_left -= len;
8608 }
8609
8610 return 0;
8611}
8612
8613struct symbol_alive_response {
8614 u8 cmd_id;
8615 u8 seq_num;
8616 u8 ucode_rev;
8617 u8 eeprom_valid;
8618 u16 valid_flags;
8619 u8 IEEE_addr[6];
8620 u16 flags;
8621 u16 pcb_rev;
8622 u16 clock_settle_time; // 1us LSB
8623 u16 powerup_settle_time; // 1us LSB
8624 u16 hop_settle_time; // 1us LSB
8625 u8 date[3]; // month, day, year
8626 u8 time[2]; // hours, minutes
8627 u8 ucode_valid;
8628};
8629
Jiri Bencc4aee8c2005-08-25 20:04:43 -04008630static int ipw2100_ucode_download(struct ipw2100_priv *priv,
8631 struct ipw2100_fw *fw)
James Ketrenos2c86c272005-03-23 17:32:29 -06008632{
8633 struct net_device *dev = priv->net_dev;
8634 const unsigned char *microcode_data = fw->uc.data;
8635 unsigned int microcode_data_left = fw->uc.size;
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008636 void __iomem *reg = (void __iomem *)dev->base_addr;
James Ketrenos2c86c272005-03-23 17:32:29 -06008637
8638 struct symbol_alive_response response;
8639 int i, j;
8640 u8 data;
8641
8642 /* Symbol control */
8643 write_nic_word(dev, IPW2100_CONTROL_REG, 0x703);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008644 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008645 write_nic_word(dev, IPW2100_CONTROL_REG, 0x707);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008646 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008647
8648 /* HW config */
8649 write_nic_byte(dev, 0x210014, 0x72); /* fifo width =16 */
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008650 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008651 write_nic_byte(dev, 0x210014, 0x72); /* fifo width =16 */
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008652 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008653
8654 /* EN_CS_ACCESS bit to reset control store pointer */
8655 write_nic_byte(dev, 0x210000, 0x40);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008656 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008657 write_nic_byte(dev, 0x210000, 0x0);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008658 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008659 write_nic_byte(dev, 0x210000, 0x40);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008660 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008661
8662 /* copy microcode from buffer into Symbol */
8663
8664 while (microcode_data_left > 0) {
8665 write_nic_byte(dev, 0x210010, *microcode_data++);
8666 write_nic_byte(dev, 0x210010, *microcode_data++);
8667 microcode_data_left -= 2;
8668 }
8669
8670 /* EN_CS_ACCESS bit to reset the control store pointer */
8671 write_nic_byte(dev, 0x210000, 0x0);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008672 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008673
8674 /* Enable System (Reg 0)
8675 * first enable causes garbage in RX FIFO */
8676 write_nic_byte(dev, 0x210000, 0x0);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008677 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008678 write_nic_byte(dev, 0x210000, 0x80);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008679 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008680
8681 /* Reset External Baseband Reg */
8682 write_nic_word(dev, IPW2100_CONTROL_REG, 0x703);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008683 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008684 write_nic_word(dev, IPW2100_CONTROL_REG, 0x707);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008685 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008686
8687 /* HW Config (Reg 5) */
8688 write_nic_byte(dev, 0x210014, 0x72); // fifo width =16
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008689 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008690 write_nic_byte(dev, 0x210014, 0x72); // fifo width =16
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008691 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008692
8693 /* Enable System (Reg 0)
8694 * second enable should be OK */
8695 write_nic_byte(dev, 0x210000, 0x00); // clear enable system
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008696 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008697 write_nic_byte(dev, 0x210000, 0x80); // set enable system
8698
8699 /* check Symbol is enabled - upped this from 5 as it wasn't always
8700 * catching the update */
8701 for (i = 0; i < 10; i++) {
8702 udelay(10);
8703
8704 /* check Dino is enabled bit */
8705 read_nic_byte(dev, 0x210000, &data);
8706 if (data & 0x1)
8707 break;
8708 }
8709
8710 if (i == 10) {
Jiri Benc797b4f72005-08-25 20:03:27 -04008711 printk(KERN_ERR DRV_NAME ": %s: Error initializing Symbol\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06008712 dev->name);
8713 return -EIO;
8714 }
8715
8716 /* Get Symbol alive response */
8717 for (i = 0; i < 30; i++) {
8718 /* Read alive response structure */
8719 for (j = 0;
James Ketrenosee8e3652005-09-14 09:47:29 -05008720 j < (sizeof(struct symbol_alive_response) >> 1); j++)
8721 read_nic_word(dev, 0x210004, ((u16 *) & response) + j);
James Ketrenos2c86c272005-03-23 17:32:29 -06008722
James Ketrenosee8e3652005-09-14 09:47:29 -05008723 if ((response.cmd_id == 1) && (response.ucode_valid == 0x1))
James Ketrenos2c86c272005-03-23 17:32:29 -06008724 break;
8725 udelay(10);
8726 }
8727
8728 if (i == 30) {
James Ketrenosee8e3652005-09-14 09:47:29 -05008729 printk(KERN_ERR DRV_NAME
8730 ": %s: No response from Symbol - hw not alive\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06008731 dev->name);
James Ketrenosee8e3652005-09-14 09:47:29 -05008732 printk_buf(IPW_DL_ERROR, (u8 *) & response, sizeof(response));
James Ketrenos2c86c272005-03-23 17:32:29 -06008733 return -EIO;
8734 }
8735
8736 return 0;
8737}