blob: a2e6214169e914ba6e79b4d8bfe631a730449633 [file] [log] [blame]
James Ketrenos2c86c272005-03-23 17:32:29 -06001/******************************************************************************
2
3 Copyright(c) 2003 - 2005 Intel Corporation. All rights reserved.
4
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:
22 James P. Ketrenos <ipw2100-admin@linux.intel.com>
23 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
31 <jkmaline@cc.hut.fi>
32 Copyright (c) 2002-2003, Jouni Malinen <jkmaline@cc.hut.fi>
33
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
66of fragments, etc. The next TBD then referrs to the actual packet location.
67
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>
137#include <linux/config.h>
138#include <linux/errno.h>
139#include <linux/if_arp.h>
140#include <linux/in6.h>
141#include <linux/in.h>
142#include <linux/ip.h>
143#include <linux/kernel.h>
144#include <linux/kmod.h>
145#include <linux/module.h>
146#include <linux/netdevice.h>
147#include <linux/ethtool.h>
148#include <linux/pci.h>
Tobias Klauser05743d12005-06-20 14:28:40 -0700149#include <linux/dma-mapping.h>
James Ketrenos2c86c272005-03-23 17:32:29 -0600150#include <linux/proc_fs.h>
151#include <linux/skbuff.h>
152#include <asm/uaccess.h>
153#include <asm/io.h>
154#define __KERNEL_SYSCALLS__
155#include <linux/fs.h>
156#include <linux/mm.h>
157#include <linux/slab.h>
158#include <linux/unistd.h>
159#include <linux/stringify.h>
160#include <linux/tcp.h>
161#include <linux/types.h>
162#include <linux/version.h>
163#include <linux/time.h>
164#include <linux/firmware.h>
165#include <linux/acpi.h>
166#include <linux/ctype.h>
167
168#include "ipw2100.h"
169
James Ketrenos9ef539d2005-09-15 00:42:42 -0500170#define IPW2100_VERSION "1.1.3"
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"
James Ketrenos82328352005-08-24 22:33:31 -0500175#define DRV_COPYRIGHT "Copyright(c) 2003-2005 Intel Corporation"
James Ketrenos2c86c272005-03-23 17:32:29 -0600176
177/* Debugging stuff */
178#ifdef CONFIG_IPW_DEBUG
James Ketrenosee8e3652005-09-14 09:47:29 -0500179#define CONFIG_IPW2100_RX_DEBUG /* Reception debugging */
James Ketrenos2c86c272005-03-23 17:32:29 -0600180#endif
181
182MODULE_DESCRIPTION(DRV_DESCRIPTION);
183MODULE_VERSION(DRV_VERSION);
184MODULE_AUTHOR(DRV_COPYRIGHT);
185MODULE_LICENSE("GPL");
186
187static int debug = 0;
188static int mode = 0;
189static int channel = 0;
190static int associate = 1;
191static int disable = 0;
192#ifdef CONFIG_PM
193static struct ipw2100_fw ipw2100_firmware;
194#endif
195
196#include <linux/moduleparam.h>
197module_param(debug, int, 0444);
198module_param(mode, int, 0444);
199module_param(channel, int, 0444);
200module_param(associate, int, 0444);
201module_param(disable, int, 0444);
202
203MODULE_PARM_DESC(debug, "debug level");
204MODULE_PARM_DESC(mode, "network mode (0=BSS,1=IBSS,2=Monitor)");
205MODULE_PARM_DESC(channel, "channel");
206MODULE_PARM_DESC(associate, "auto associate when scanning (default on)");
207MODULE_PARM_DESC(disable, "manually disable the radio (default 0 [radio on])");
208
Jiri Bencc4aee8c2005-08-25 20:04:43 -0400209static u32 ipw2100_debug_level = IPW_DL_NONE;
210
211#ifdef CONFIG_IPW_DEBUG
212#define IPW_DEBUG(level, message...) \
213do { \
214 if (ipw2100_debug_level & (level)) { \
215 printk(KERN_DEBUG "ipw2100: %c %s ", \
216 in_interrupt() ? 'I' : 'U', __FUNCTION__); \
217 printk(message); \
218 } \
219} while (0)
220#else
221#define IPW_DEBUG(level, message...) do {} while (0)
James Ketrenosee8e3652005-09-14 09:47:29 -0500222#endif /* CONFIG_IPW_DEBUG */
James Ketrenos2c86c272005-03-23 17:32:29 -0600223
224#ifdef CONFIG_IPW_DEBUG
225static const char *command_types[] = {
226 "undefined",
James Ketrenosee8e3652005-09-14 09:47:29 -0500227 "unused", /* HOST_ATTENTION */
James Ketrenos2c86c272005-03-23 17:32:29 -0600228 "HOST_COMPLETE",
James Ketrenosee8e3652005-09-14 09:47:29 -0500229 "unused", /* SLEEP */
230 "unused", /* HOST_POWER_DOWN */
James Ketrenos2c86c272005-03-23 17:32:29 -0600231 "unused",
232 "SYSTEM_CONFIG",
James Ketrenosee8e3652005-09-14 09:47:29 -0500233 "unused", /* SET_IMR */
James Ketrenos2c86c272005-03-23 17:32:29 -0600234 "SSID",
235 "MANDATORY_BSSID",
236 "AUTHENTICATION_TYPE",
237 "ADAPTER_ADDRESS",
238 "PORT_TYPE",
239 "INTERNATIONAL_MODE",
240 "CHANNEL",
241 "RTS_THRESHOLD",
242 "FRAG_THRESHOLD",
243 "POWER_MODE",
244 "TX_RATES",
245 "BASIC_TX_RATES",
246 "WEP_KEY_INFO",
247 "unused",
248 "unused",
249 "unused",
250 "unused",
251 "WEP_KEY_INDEX",
252 "WEP_FLAGS",
253 "ADD_MULTICAST",
254 "CLEAR_ALL_MULTICAST",
255 "BEACON_INTERVAL",
256 "ATIM_WINDOW",
257 "CLEAR_STATISTICS",
258 "undefined",
259 "undefined",
260 "undefined",
261 "undefined",
262 "TX_POWER_INDEX",
263 "undefined",
264 "undefined",
265 "undefined",
266 "undefined",
267 "undefined",
268 "undefined",
269 "BROADCAST_SCAN",
270 "CARD_DISABLE",
271 "PREFERRED_BSSID",
272 "SET_SCAN_OPTIONS",
273 "SCAN_DWELL_TIME",
274 "SWEEP_TABLE",
275 "AP_OR_STATION_TABLE",
276 "GROUP_ORDINALS",
277 "SHORT_RETRY_LIMIT",
278 "LONG_RETRY_LIMIT",
James Ketrenosee8e3652005-09-14 09:47:29 -0500279 "unused", /* SAVE_CALIBRATION */
280 "unused", /* RESTORE_CALIBRATION */
James Ketrenos2c86c272005-03-23 17:32:29 -0600281 "undefined",
282 "undefined",
283 "undefined",
284 "HOST_PRE_POWER_DOWN",
James Ketrenosee8e3652005-09-14 09:47:29 -0500285 "unused", /* HOST_INTERRUPT_COALESCING */
James Ketrenos2c86c272005-03-23 17:32:29 -0600286 "undefined",
287 "CARD_DISABLE_PHY_OFF",
James Ketrenosee8e3652005-09-14 09:47:29 -0500288 "MSDU_TX_RATES" "undefined",
James Ketrenos2c86c272005-03-23 17:32:29 -0600289 "undefined",
290 "SET_STATION_STAT_BITS",
291 "CLEAR_STATIONS_STAT_BITS",
292 "LEAP_ROGUE_MODE",
293 "SET_SECURITY_INFORMATION",
294 "DISASSOCIATION_BSSID",
295 "SET_WPA_ASS_IE"
296};
297#endif
298
James Ketrenos2c86c272005-03-23 17:32:29 -0600299/* Pre-decl until we get the code solid and then we can clean it up */
Jiri Benc19f7f742005-08-25 20:02:10 -0400300static void ipw2100_tx_send_commands(struct ipw2100_priv *priv);
301static void ipw2100_tx_send_data(struct ipw2100_priv *priv);
James Ketrenos2c86c272005-03-23 17:32:29 -0600302static int ipw2100_adapter_setup(struct ipw2100_priv *priv);
303
304static void ipw2100_queues_initialize(struct ipw2100_priv *priv);
305static void ipw2100_queues_free(struct ipw2100_priv *priv);
306static int ipw2100_queues_allocate(struct ipw2100_priv *priv);
307
Jiri Bencc4aee8c2005-08-25 20:04:43 -0400308static int ipw2100_fw_download(struct ipw2100_priv *priv,
309 struct ipw2100_fw *fw);
310static int ipw2100_get_firmware(struct ipw2100_priv *priv,
311 struct ipw2100_fw *fw);
312static int ipw2100_get_fwversion(struct ipw2100_priv *priv, char *buf,
313 size_t max);
314static int ipw2100_get_ucodeversion(struct ipw2100_priv *priv, char *buf,
315 size_t max);
316static void ipw2100_release_firmware(struct ipw2100_priv *priv,
317 struct ipw2100_fw *fw);
318static int ipw2100_ucode_download(struct ipw2100_priv *priv,
319 struct ipw2100_fw *fw);
320static void ipw2100_wx_event_work(struct ipw2100_priv *priv);
James Ketrenosee8e3652005-09-14 09:47:29 -0500321static struct iw_statistics *ipw2100_wx_wireless_stats(struct net_device *dev);
Jiri Bencc4aee8c2005-08-25 20:04:43 -0400322static struct iw_handler_def ipw2100_wx_handler_def;
323
James Ketrenosee8e3652005-09-14 09:47:29 -0500324static inline void read_register(struct net_device *dev, u32 reg, u32 * val)
James Ketrenos2c86c272005-03-23 17:32:29 -0600325{
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +0100326 *val = readl((void __iomem *)(dev->base_addr + reg));
James Ketrenos2c86c272005-03-23 17:32:29 -0600327 IPW_DEBUG_IO("r: 0x%08X => 0x%08X\n", reg, *val);
328}
329
330static inline void write_register(struct net_device *dev, u32 reg, u32 val)
331{
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +0100332 writel(val, (void __iomem *)(dev->base_addr + reg));
James Ketrenos2c86c272005-03-23 17:32:29 -0600333 IPW_DEBUG_IO("w: 0x%08X <= 0x%08X\n", reg, val);
334}
335
James Ketrenosee8e3652005-09-14 09:47:29 -0500336static inline void read_register_word(struct net_device *dev, u32 reg,
337 u16 * val)
James Ketrenos2c86c272005-03-23 17:32:29 -0600338{
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +0100339 *val = readw((void __iomem *)(dev->base_addr + reg));
James Ketrenos2c86c272005-03-23 17:32:29 -0600340 IPW_DEBUG_IO("r: 0x%08X => %04X\n", reg, *val);
341}
342
James Ketrenosee8e3652005-09-14 09:47:29 -0500343static inline void read_register_byte(struct net_device *dev, u32 reg, u8 * val)
James Ketrenos2c86c272005-03-23 17:32:29 -0600344{
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +0100345 *val = readb((void __iomem *)(dev->base_addr + reg));
James Ketrenos2c86c272005-03-23 17:32:29 -0600346 IPW_DEBUG_IO("r: 0x%08X => %02X\n", reg, *val);
347}
348
349static inline void write_register_word(struct net_device *dev, u32 reg, u16 val)
350{
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +0100351 writew(val, (void __iomem *)(dev->base_addr + reg));
James Ketrenos2c86c272005-03-23 17:32:29 -0600352 IPW_DEBUG_IO("w: 0x%08X <= %04X\n", reg, val);
353}
354
James Ketrenos2c86c272005-03-23 17:32:29 -0600355static inline void write_register_byte(struct net_device *dev, u32 reg, u8 val)
356{
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +0100357 writeb(val, (void __iomem *)(dev->base_addr + reg));
James Ketrenos2c86c272005-03-23 17:32:29 -0600358 IPW_DEBUG_IO("w: 0x%08X =< %02X\n", reg, val);
359}
360
James Ketrenosee8e3652005-09-14 09:47:29 -0500361static inline void read_nic_dword(struct net_device *dev, u32 addr, u32 * val)
James Ketrenos2c86c272005-03-23 17:32:29 -0600362{
363 write_register(dev, IPW_REG_INDIRECT_ACCESS_ADDRESS,
364 addr & IPW_REG_INDIRECT_ADDR_MASK);
365 read_register(dev, IPW_REG_INDIRECT_ACCESS_DATA, val);
366}
367
368static inline void write_nic_dword(struct net_device *dev, u32 addr, u32 val)
369{
370 write_register(dev, IPW_REG_INDIRECT_ACCESS_ADDRESS,
371 addr & IPW_REG_INDIRECT_ADDR_MASK);
372 write_register(dev, IPW_REG_INDIRECT_ACCESS_DATA, val);
373}
374
James Ketrenosee8e3652005-09-14 09:47:29 -0500375static inline void read_nic_word(struct net_device *dev, u32 addr, u16 * val)
James Ketrenos2c86c272005-03-23 17:32:29 -0600376{
377 write_register(dev, IPW_REG_INDIRECT_ACCESS_ADDRESS,
378 addr & IPW_REG_INDIRECT_ADDR_MASK);
379 read_register_word(dev, IPW_REG_INDIRECT_ACCESS_DATA, val);
380}
381
382static inline void write_nic_word(struct net_device *dev, u32 addr, u16 val)
383{
384 write_register(dev, IPW_REG_INDIRECT_ACCESS_ADDRESS,
385 addr & IPW_REG_INDIRECT_ADDR_MASK);
386 write_register_word(dev, IPW_REG_INDIRECT_ACCESS_DATA, val);
387}
388
James Ketrenosee8e3652005-09-14 09:47:29 -0500389static inline void read_nic_byte(struct net_device *dev, u32 addr, u8 * val)
James Ketrenos2c86c272005-03-23 17:32:29 -0600390{
391 write_register(dev, IPW_REG_INDIRECT_ACCESS_ADDRESS,
392 addr & IPW_REG_INDIRECT_ADDR_MASK);
393 read_register_byte(dev, IPW_REG_INDIRECT_ACCESS_DATA, val);
394}
395
396static inline void write_nic_byte(struct net_device *dev, u32 addr, u8 val)
397{
398 write_register(dev, IPW_REG_INDIRECT_ACCESS_ADDRESS,
399 addr & IPW_REG_INDIRECT_ADDR_MASK);
400 write_register_byte(dev, IPW_REG_INDIRECT_ACCESS_DATA, val);
401}
402
403static inline void write_nic_auto_inc_address(struct net_device *dev, u32 addr)
404{
405 write_register(dev, IPW_REG_AUTOINCREMENT_ADDRESS,
406 addr & IPW_REG_INDIRECT_ADDR_MASK);
407}
408
409static inline void write_nic_dword_auto_inc(struct net_device *dev, u32 val)
410{
411 write_register(dev, IPW_REG_AUTOINCREMENT_DATA, val);
412}
413
414static inline void write_nic_memory(struct net_device *dev, u32 addr, u32 len,
James Ketrenosee8e3652005-09-14 09:47:29 -0500415 const u8 * buf)
James Ketrenos2c86c272005-03-23 17:32:29 -0600416{
417 u32 aligned_addr;
418 u32 aligned_len;
419 u32 dif_len;
420 u32 i;
421
422 /* read first nibble byte by byte */
423 aligned_addr = addr & (~0x3);
424 dif_len = addr - aligned_addr;
425 if (dif_len) {
426 /* Start reading at aligned_addr + dif_len */
427 write_register(dev, IPW_REG_INDIRECT_ACCESS_ADDRESS,
428 aligned_addr);
429 for (i = dif_len; i < 4; i++, buf++)
James Ketrenosee8e3652005-09-14 09:47:29 -0500430 write_register_byte(dev,
431 IPW_REG_INDIRECT_ACCESS_DATA + i,
432 *buf);
James Ketrenos2c86c272005-03-23 17:32:29 -0600433
434 len -= dif_len;
435 aligned_addr += 4;
436 }
437
438 /* read DWs through autoincrement registers */
James Ketrenosee8e3652005-09-14 09:47:29 -0500439 write_register(dev, IPW_REG_AUTOINCREMENT_ADDRESS, aligned_addr);
James Ketrenos2c86c272005-03-23 17:32:29 -0600440 aligned_len = len & (~0x3);
441 for (i = 0; i < aligned_len; i += 4, buf += 4, aligned_addr += 4)
James Ketrenosee8e3652005-09-14 09:47:29 -0500442 write_register(dev, IPW_REG_AUTOINCREMENT_DATA, *(u32 *) buf);
James Ketrenos2c86c272005-03-23 17:32:29 -0600443
444 /* copy the last nibble */
445 dif_len = len - aligned_len;
446 write_register(dev, IPW_REG_INDIRECT_ACCESS_ADDRESS, aligned_addr);
447 for (i = 0; i < dif_len; i++, buf++)
James Ketrenosee8e3652005-09-14 09:47:29 -0500448 write_register_byte(dev, IPW_REG_INDIRECT_ACCESS_DATA + i,
449 *buf);
James Ketrenos2c86c272005-03-23 17:32:29 -0600450}
451
452static inline void read_nic_memory(struct net_device *dev, u32 addr, u32 len,
James Ketrenosee8e3652005-09-14 09:47:29 -0500453 u8 * buf)
James Ketrenos2c86c272005-03-23 17:32:29 -0600454{
455 u32 aligned_addr;
456 u32 aligned_len;
457 u32 dif_len;
458 u32 i;
459
460 /* read first nibble byte by byte */
461 aligned_addr = addr & (~0x3);
462 dif_len = addr - aligned_addr;
463 if (dif_len) {
464 /* Start reading at aligned_addr + dif_len */
465 write_register(dev, IPW_REG_INDIRECT_ACCESS_ADDRESS,
466 aligned_addr);
467 for (i = dif_len; i < 4; i++, buf++)
James Ketrenosee8e3652005-09-14 09:47:29 -0500468 read_register_byte(dev,
469 IPW_REG_INDIRECT_ACCESS_DATA + i,
470 buf);
James Ketrenos2c86c272005-03-23 17:32:29 -0600471
472 len -= dif_len;
473 aligned_addr += 4;
474 }
475
476 /* read DWs through autoincrement registers */
James Ketrenosee8e3652005-09-14 09:47:29 -0500477 write_register(dev, IPW_REG_AUTOINCREMENT_ADDRESS, aligned_addr);
James Ketrenos2c86c272005-03-23 17:32:29 -0600478 aligned_len = len & (~0x3);
479 for (i = 0; i < aligned_len; i += 4, buf += 4, aligned_addr += 4)
James Ketrenosee8e3652005-09-14 09:47:29 -0500480 read_register(dev, IPW_REG_AUTOINCREMENT_DATA, (u32 *) buf);
James Ketrenos2c86c272005-03-23 17:32:29 -0600481
482 /* copy the last nibble */
483 dif_len = len - aligned_len;
James Ketrenosee8e3652005-09-14 09:47:29 -0500484 write_register(dev, IPW_REG_INDIRECT_ACCESS_ADDRESS, aligned_addr);
James Ketrenos2c86c272005-03-23 17:32:29 -0600485 for (i = 0; i < dif_len; i++, buf++)
James Ketrenosee8e3652005-09-14 09:47:29 -0500486 read_register_byte(dev, IPW_REG_INDIRECT_ACCESS_DATA + i, buf);
James Ketrenos2c86c272005-03-23 17:32:29 -0600487}
488
489static inline int ipw2100_hw_is_adapter_in_system(struct net_device *dev)
490{
491 return (dev->base_addr &&
James Ketrenosee8e3652005-09-14 09:47:29 -0500492 (readl
493 ((void __iomem *)(dev->base_addr +
494 IPW_REG_DOA_DEBUG_AREA_START))
James Ketrenos2c86c272005-03-23 17:32:29 -0600495 == IPW_DATA_DOA_DEBUG_VALUE));
496}
497
Jiri Bencc4aee8c2005-08-25 20:04:43 -0400498static int ipw2100_get_ordinal(struct ipw2100_priv *priv, u32 ord,
James Ketrenosee8e3652005-09-14 09:47:29 -0500499 void *val, u32 * len)
James Ketrenos2c86c272005-03-23 17:32:29 -0600500{
501 struct ipw2100_ordinals *ordinals = &priv->ordinals;
502 u32 addr;
503 u32 field_info;
504 u16 field_len;
505 u16 field_count;
506 u32 total_length;
507
508 if (ordinals->table1_addr == 0) {
Jiri Benc797b4f72005-08-25 20:03:27 -0400509 printk(KERN_WARNING DRV_NAME ": attempt to use fw ordinals "
James Ketrenos2c86c272005-03-23 17:32:29 -0600510 "before they have been loaded.\n");
511 return -EINVAL;
512 }
513
514 if (IS_ORDINAL_TABLE_ONE(ordinals, ord)) {
515 if (*len < IPW_ORD_TAB_1_ENTRY_SIZE) {
516 *len = IPW_ORD_TAB_1_ENTRY_SIZE;
517
Jiri Benc797b4f72005-08-25 20:03:27 -0400518 printk(KERN_WARNING DRV_NAME
Jiri Bencaaa4d302005-06-07 14:58:41 +0200519 ": ordinal buffer length too small, need %zd\n",
James Ketrenos2c86c272005-03-23 17:32:29 -0600520 IPW_ORD_TAB_1_ENTRY_SIZE);
521
522 return -EINVAL;
523 }
524
James Ketrenosee8e3652005-09-14 09:47:29 -0500525 read_nic_dword(priv->net_dev,
526 ordinals->table1_addr + (ord << 2), &addr);
James Ketrenos2c86c272005-03-23 17:32:29 -0600527 read_nic_dword(priv->net_dev, addr, val);
528
529 *len = IPW_ORD_TAB_1_ENTRY_SIZE;
530
531 return 0;
532 }
533
534 if (IS_ORDINAL_TABLE_TWO(ordinals, ord)) {
535
536 ord -= IPW_START_ORD_TAB_2;
537
538 /* get the address of statistic */
James Ketrenosee8e3652005-09-14 09:47:29 -0500539 read_nic_dword(priv->net_dev,
540 ordinals->table2_addr + (ord << 3), &addr);
James Ketrenos2c86c272005-03-23 17:32:29 -0600541
542 /* get the second DW of statistics ;
543 * two 16-bit words - first is length, second is count */
544 read_nic_dword(priv->net_dev,
545 ordinals->table2_addr + (ord << 3) + sizeof(u32),
546 &field_info);
547
548 /* get each entry length */
James Ketrenosee8e3652005-09-14 09:47:29 -0500549 field_len = *((u16 *) & field_info);
James Ketrenos2c86c272005-03-23 17:32:29 -0600550
551 /* get number of entries */
James Ketrenosee8e3652005-09-14 09:47:29 -0500552 field_count = *(((u16 *) & field_info) + 1);
James Ketrenos2c86c272005-03-23 17:32:29 -0600553
554 /* abort if no enought memory */
555 total_length = field_len * field_count;
556 if (total_length > *len) {
557 *len = total_length;
558 return -EINVAL;
559 }
560
561 *len = total_length;
562 if (!total_length)
563 return 0;
564
565 /* read the ordinal data from the SRAM */
566 read_nic_memory(priv->net_dev, addr, total_length, val);
567
568 return 0;
569 }
570
Jiri Benc797b4f72005-08-25 20:03:27 -0400571 printk(KERN_WARNING DRV_NAME ": ordinal %d neither in table 1 nor "
James Ketrenos2c86c272005-03-23 17:32:29 -0600572 "in table 2\n", ord);
573
574 return -EINVAL;
575}
576
James Ketrenosee8e3652005-09-14 09:47:29 -0500577static int ipw2100_set_ordinal(struct ipw2100_priv *priv, u32 ord, u32 * val,
578 u32 * len)
James Ketrenos2c86c272005-03-23 17:32:29 -0600579{
580 struct ipw2100_ordinals *ordinals = &priv->ordinals;
581 u32 addr;
582
583 if (IS_ORDINAL_TABLE_ONE(ordinals, ord)) {
584 if (*len != IPW_ORD_TAB_1_ENTRY_SIZE) {
585 *len = IPW_ORD_TAB_1_ENTRY_SIZE;
586 IPW_DEBUG_INFO("wrong size\n");
587 return -EINVAL;
588 }
589
James Ketrenosee8e3652005-09-14 09:47:29 -0500590 read_nic_dword(priv->net_dev,
591 ordinals->table1_addr + (ord << 2), &addr);
James Ketrenos2c86c272005-03-23 17:32:29 -0600592
593 write_nic_dword(priv->net_dev, addr, *val);
594
595 *len = IPW_ORD_TAB_1_ENTRY_SIZE;
596
597 return 0;
598 }
599
600 IPW_DEBUG_INFO("wrong table\n");
601 if (IS_ORDINAL_TABLE_TWO(ordinals, ord))
602 return -EINVAL;
603
604 return -EINVAL;
605}
606
607static char *snprint_line(char *buf, size_t count,
James Ketrenosee8e3652005-09-14 09:47:29 -0500608 const u8 * data, u32 len, u32 ofs)
James Ketrenos2c86c272005-03-23 17:32:29 -0600609{
610 int out, i, j, l;
611 char c;
612
613 out = snprintf(buf, count, "%08X", ofs);
614
615 for (l = 0, i = 0; i < 2; i++) {
616 out += snprintf(buf + out, count - out, " ");
617 for (j = 0; j < 8 && l < len; j++, l++)
618 out += snprintf(buf + out, count - out, "%02X ",
619 data[(i * 8 + j)]);
620 for (; j < 8; j++)
621 out += snprintf(buf + out, count - out, " ");
622 }
623
624 out += snprintf(buf + out, count - out, " ");
625 for (l = 0, i = 0; i < 2; i++) {
626 out += snprintf(buf + out, count - out, " ");
627 for (j = 0; j < 8 && l < len; j++, l++) {
628 c = data[(i * 8 + j)];
629 if (!isascii(c) || !isprint(c))
630 c = '.';
631
632 out += snprintf(buf + out, count - out, "%c", c);
633 }
634
635 for (; j < 8; j++)
636 out += snprintf(buf + out, count - out, " ");
637 }
638
639 return buf;
640}
641
James Ketrenosee8e3652005-09-14 09:47:29 -0500642static void printk_buf(int level, const u8 * data, u32 len)
James Ketrenos2c86c272005-03-23 17:32:29 -0600643{
644 char line[81];
645 u32 ofs = 0;
646 if (!(ipw2100_debug_level & level))
647 return;
648
649 while (len) {
650 printk(KERN_DEBUG "%s\n",
651 snprint_line(line, sizeof(line), &data[ofs],
652 min(len, 16U), ofs));
653 ofs += 16;
654 len -= min(len, 16U);
655 }
656}
657
James Ketrenos2c86c272005-03-23 17:32:29 -0600658#define MAX_RESET_BACKOFF 10
659
660static inline void schedule_reset(struct ipw2100_priv *priv)
661{
662 unsigned long now = get_seconds();
663
664 /* If we haven't received a reset request within the backoff period,
665 * then we can reset the backoff interval so this reset occurs
666 * immediately */
667 if (priv->reset_backoff &&
668 (now - priv->last_reset > priv->reset_backoff))
669 priv->reset_backoff = 0;
670
671 priv->last_reset = get_seconds();
672
673 if (!(priv->status & STATUS_RESET_PENDING)) {
674 IPW_DEBUG_INFO("%s: Scheduling firmware restart (%ds).\n",
675 priv->net_dev->name, priv->reset_backoff);
676 netif_carrier_off(priv->net_dev);
677 netif_stop_queue(priv->net_dev);
678 priv->status |= STATUS_RESET_PENDING;
679 if (priv->reset_backoff)
680 queue_delayed_work(priv->workqueue, &priv->reset_work,
681 priv->reset_backoff * HZ);
682 else
683 queue_work(priv->workqueue, &priv->reset_work);
684
685 if (priv->reset_backoff < MAX_RESET_BACKOFF)
686 priv->reset_backoff++;
687
688 wake_up_interruptible(&priv->wait_command_queue);
689 } else
690 IPW_DEBUG_INFO("%s: Firmware restart already in progress.\n",
691 priv->net_dev->name);
692
693}
694
695#define HOST_COMPLETE_TIMEOUT (2 * HZ)
696static int ipw2100_hw_send_command(struct ipw2100_priv *priv,
James Ketrenosee8e3652005-09-14 09:47:29 -0500697 struct host_command *cmd)
James Ketrenos2c86c272005-03-23 17:32:29 -0600698{
699 struct list_head *element;
700 struct ipw2100_tx_packet *packet;
701 unsigned long flags;
702 int err = 0;
703
704 IPW_DEBUG_HC("Sending %s command (#%d), %d bytes\n",
705 command_types[cmd->host_command], cmd->host_command,
706 cmd->host_command_length);
James Ketrenosee8e3652005-09-14 09:47:29 -0500707 printk_buf(IPW_DL_HC, (u8 *) cmd->host_command_parameters,
James Ketrenos2c86c272005-03-23 17:32:29 -0600708 cmd->host_command_length);
709
710 spin_lock_irqsave(&priv->low_lock, flags);
711
712 if (priv->fatal_error) {
James Ketrenosee8e3652005-09-14 09:47:29 -0500713 IPW_DEBUG_INFO
714 ("Attempt to send command while hardware in fatal error condition.\n");
James Ketrenos2c86c272005-03-23 17:32:29 -0600715 err = -EIO;
716 goto fail_unlock;
717 }
718
719 if (!(priv->status & STATUS_RUNNING)) {
James Ketrenosee8e3652005-09-14 09:47:29 -0500720 IPW_DEBUG_INFO
721 ("Attempt to send command while hardware is not running.\n");
James Ketrenos2c86c272005-03-23 17:32:29 -0600722 err = -EIO;
723 goto fail_unlock;
724 }
725
726 if (priv->status & STATUS_CMD_ACTIVE) {
James Ketrenosee8e3652005-09-14 09:47:29 -0500727 IPW_DEBUG_INFO
728 ("Attempt to send command while another command is pending.\n");
James Ketrenos2c86c272005-03-23 17:32:29 -0600729 err = -EBUSY;
730 goto fail_unlock;
731 }
732
733 if (list_empty(&priv->msg_free_list)) {
734 IPW_DEBUG_INFO("no available msg buffers\n");
735 goto fail_unlock;
736 }
737
738 priv->status |= STATUS_CMD_ACTIVE;
739 priv->messages_sent++;
740
741 element = priv->msg_free_list.next;
742
743 packet = list_entry(element, struct ipw2100_tx_packet, list);
744 packet->jiffy_start = jiffies;
745
746 /* initialize the firmware command packet */
747 packet->info.c_struct.cmd->host_command_reg = cmd->host_command;
748 packet->info.c_struct.cmd->host_command_reg1 = cmd->host_command1;
James Ketrenosee8e3652005-09-14 09:47:29 -0500749 packet->info.c_struct.cmd->host_command_len_reg =
750 cmd->host_command_length;
James Ketrenos2c86c272005-03-23 17:32:29 -0600751 packet->info.c_struct.cmd->sequence = cmd->host_command_sequence;
752
753 memcpy(packet->info.c_struct.cmd->host_command_params_reg,
754 cmd->host_command_parameters,
755 sizeof(packet->info.c_struct.cmd->host_command_params_reg));
756
757 list_del(element);
758 DEC_STAT(&priv->msg_free_stat);
759
760 list_add_tail(element, &priv->msg_pend_list);
761 INC_STAT(&priv->msg_pend_stat);
762
Jiri Benc19f7f742005-08-25 20:02:10 -0400763 ipw2100_tx_send_commands(priv);
764 ipw2100_tx_send_data(priv);
James Ketrenos2c86c272005-03-23 17:32:29 -0600765
766 spin_unlock_irqrestore(&priv->low_lock, flags);
767
768 /*
769 * We must wait for this command to complete before another
770 * command can be sent... but if we wait more than 3 seconds
771 * then there is a problem.
772 */
773
James Ketrenosee8e3652005-09-14 09:47:29 -0500774 err =
775 wait_event_interruptible_timeout(priv->wait_command_queue,
776 !(priv->
777 status & STATUS_CMD_ACTIVE),
778 HOST_COMPLETE_TIMEOUT);
James Ketrenos2c86c272005-03-23 17:32:29 -0600779
780 if (err == 0) {
781 IPW_DEBUG_INFO("Command completion failed out after %dms.\n",
James Ketrenos82328352005-08-24 22:33:31 -0500782 1000 * (HOST_COMPLETE_TIMEOUT / HZ));
James Ketrenos2c86c272005-03-23 17:32:29 -0600783 priv->fatal_error = IPW2100_ERR_MSG_TIMEOUT;
784 priv->status &= ~STATUS_CMD_ACTIVE;
785 schedule_reset(priv);
786 return -EIO;
787 }
788
789 if (priv->fatal_error) {
Jiri Benc797b4f72005-08-25 20:03:27 -0400790 printk(KERN_WARNING DRV_NAME ": %s: firmware fatal error\n",
James Ketrenos2c86c272005-03-23 17:32:29 -0600791 priv->net_dev->name);
792 return -EIO;
793 }
794
795 /* !!!!! HACK TEST !!!!!
796 * When lots of debug trace statements are enabled, the driver
797 * doesn't seem to have as many firmware restart cycles...
798 *
799 * As a test, we're sticking in a 1/100s delay here */
Nishanth Aravamudan3173c892005-09-11 02:09:55 -0700800 schedule_timeout_uninterruptible(msecs_to_jiffies(10));
James Ketrenos2c86c272005-03-23 17:32:29 -0600801
802 return 0;
803
James Ketrenosee8e3652005-09-14 09:47:29 -0500804 fail_unlock:
James Ketrenos2c86c272005-03-23 17:32:29 -0600805 spin_unlock_irqrestore(&priv->low_lock, flags);
806
807 return err;
808}
809
James Ketrenos2c86c272005-03-23 17:32:29 -0600810/*
811 * Verify the values and data access of the hardware
812 * No locks needed or used. No functions called.
813 */
814static int ipw2100_verify(struct ipw2100_priv *priv)
815{
816 u32 data1, data2;
817 u32 address;
818
819 u32 val1 = 0x76543210;
820 u32 val2 = 0xFEDCBA98;
821
822 /* Domain 0 check - all values should be DOA_DEBUG */
823 for (address = IPW_REG_DOA_DEBUG_AREA_START;
James Ketrenosee8e3652005-09-14 09:47:29 -0500824 address < IPW_REG_DOA_DEBUG_AREA_END; address += sizeof(u32)) {
James Ketrenos2c86c272005-03-23 17:32:29 -0600825 read_register(priv->net_dev, address, &data1);
826 if (data1 != IPW_DATA_DOA_DEBUG_VALUE)
827 return -EIO;
828 }
829
830 /* Domain 1 check - use arbitrary read/write compare */
831 for (address = 0; address < 5; address++) {
832 /* The memory area is not used now */
833 write_register(priv->net_dev, IPW_REG_DOMAIN_1_OFFSET + 0x32,
834 val1);
835 write_register(priv->net_dev, IPW_REG_DOMAIN_1_OFFSET + 0x36,
836 val2);
837 read_register(priv->net_dev, IPW_REG_DOMAIN_1_OFFSET + 0x32,
838 &data1);
839 read_register(priv->net_dev, IPW_REG_DOMAIN_1_OFFSET + 0x36,
840 &data2);
841 if (val1 == data1 && val2 == data2)
842 return 0;
843 }
844
845 return -EIO;
846}
847
848/*
849 *
850 * Loop until the CARD_DISABLED bit is the same value as the
851 * supplied parameter
852 *
853 * TODO: See if it would be more efficient to do a wait/wake
854 * cycle and have the completion event trigger the wakeup
855 *
856 */
857#define IPW_CARD_DISABLE_COMPLETE_WAIT 100 // 100 milli
858static int ipw2100_wait_for_card_state(struct ipw2100_priv *priv, int state)
859{
860 int i;
861 u32 card_state;
862 u32 len = sizeof(card_state);
863 int err;
864
865 for (i = 0; i <= IPW_CARD_DISABLE_COMPLETE_WAIT * 1000; i += 50) {
866 err = ipw2100_get_ordinal(priv, IPW_ORD_CARD_DISABLED,
867 &card_state, &len);
868 if (err) {
869 IPW_DEBUG_INFO("Query of CARD_DISABLED ordinal "
870 "failed.\n");
871 return 0;
872 }
873
874 /* We'll break out if either the HW state says it is
875 * in the state we want, or if HOST_COMPLETE command
876 * finishes */
877 if ((card_state == state) ||
878 ((priv->status & STATUS_ENABLED) ?
879 IPW_HW_STATE_ENABLED : IPW_HW_STATE_DISABLED) == state) {
880 if (state == IPW_HW_STATE_ENABLED)
881 priv->status |= STATUS_ENABLED;
882 else
883 priv->status &= ~STATUS_ENABLED;
884
885 return 0;
886 }
887
888 udelay(50);
889 }
890
891 IPW_DEBUG_INFO("ipw2100_wait_for_card_state to %s state timed out\n",
892 state ? "DISABLED" : "ENABLED");
893 return -EIO;
894}
895
James Ketrenos2c86c272005-03-23 17:32:29 -0600896/*********************************************************************
897 Procedure : sw_reset_and_clock
898 Purpose : Asserts s/w reset, asserts clock initialization
899 and waits for clock stabilization
900 ********************************************************************/
901static int sw_reset_and_clock(struct ipw2100_priv *priv)
902{
903 int i;
904 u32 r;
905
906 // assert s/w reset
907 write_register(priv->net_dev, IPW_REG_RESET_REG,
908 IPW_AUX_HOST_RESET_REG_SW_RESET);
909
910 // wait for clock stabilization
911 for (i = 0; i < 1000; i++) {
912 udelay(IPW_WAIT_RESET_ARC_COMPLETE_DELAY);
913
914 // check clock ready bit
915 read_register(priv->net_dev, IPW_REG_RESET_REG, &r);
916 if (r & IPW_AUX_HOST_RESET_REG_PRINCETON_RESET)
917 break;
918 }
919
920 if (i == 1000)
921 return -EIO; // TODO: better error value
922
923 /* set "initialization complete" bit to move adapter to
924 * D0 state */
925 write_register(priv->net_dev, IPW_REG_GP_CNTRL,
926 IPW_AUX_HOST_GP_CNTRL_BIT_INIT_DONE);
927
928 /* wait for clock stabilization */
929 for (i = 0; i < 10000; i++) {
930 udelay(IPW_WAIT_CLOCK_STABILIZATION_DELAY * 4);
931
932 /* check clock ready bit */
933 read_register(priv->net_dev, IPW_REG_GP_CNTRL, &r);
934 if (r & IPW_AUX_HOST_GP_CNTRL_BIT_CLOCK_READY)
935 break;
936 }
937
938 if (i == 10000)
939 return -EIO; /* TODO: better error value */
940
James Ketrenos2c86c272005-03-23 17:32:29 -0600941 /* set D0 standby bit */
942 read_register(priv->net_dev, IPW_REG_GP_CNTRL, &r);
943 write_register(priv->net_dev, IPW_REG_GP_CNTRL,
944 r | IPW_AUX_HOST_GP_CNTRL_BIT_HOST_ALLOWS_STANDBY);
James Ketrenos2c86c272005-03-23 17:32:29 -0600945
946 return 0;
947}
948
949/*********************************************************************
Pavel Machek8724a112005-06-20 14:28:43 -0700950 Procedure : ipw2100_download_firmware
James Ketrenos2c86c272005-03-23 17:32:29 -0600951 Purpose : Initiaze adapter after power on.
952 The sequence is:
953 1. assert s/w reset first!
954 2. awake clocks & wait for clock stabilization
955 3. hold ARC (don't ask me why...)
956 4. load Dino ucode and reset/clock init again
957 5. zero-out shared mem
958 6. download f/w
959 *******************************************************************/
960static int ipw2100_download_firmware(struct ipw2100_priv *priv)
961{
962 u32 address;
963 int err;
964
965#ifndef CONFIG_PM
966 /* Fetch the firmware and microcode */
967 struct ipw2100_fw ipw2100_firmware;
968#endif
969
970 if (priv->fatal_error) {
971 IPW_DEBUG_ERROR("%s: ipw2100_download_firmware called after "
James Ketrenosee8e3652005-09-14 09:47:29 -0500972 "fatal error %d. Interface must be brought down.\n",
973 priv->net_dev->name, priv->fatal_error);
James Ketrenos2c86c272005-03-23 17:32:29 -0600974 return -EINVAL;
975 }
James Ketrenos2c86c272005-03-23 17:32:29 -0600976#ifdef CONFIG_PM
977 if (!ipw2100_firmware.version) {
978 err = ipw2100_get_firmware(priv, &ipw2100_firmware);
979 if (err) {
980 IPW_DEBUG_ERROR("%s: ipw2100_get_firmware failed: %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -0500981 priv->net_dev->name, err);
James Ketrenos2c86c272005-03-23 17:32:29 -0600982 priv->fatal_error = IPW2100_ERR_FW_LOAD;
983 goto fail;
984 }
985 }
986#else
987 err = ipw2100_get_firmware(priv, &ipw2100_firmware);
988 if (err) {
989 IPW_DEBUG_ERROR("%s: ipw2100_get_firmware failed: %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -0500990 priv->net_dev->name, err);
James Ketrenos2c86c272005-03-23 17:32:29 -0600991 priv->fatal_error = IPW2100_ERR_FW_LOAD;
992 goto fail;
993 }
994#endif
995 priv->firmware_version = ipw2100_firmware.version;
996
997 /* s/w reset and clock stabilization */
998 err = sw_reset_and_clock(priv);
999 if (err) {
1000 IPW_DEBUG_ERROR("%s: sw_reset_and_clock failed: %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05001001 priv->net_dev->name, err);
James Ketrenos2c86c272005-03-23 17:32:29 -06001002 goto fail;
1003 }
1004
1005 err = ipw2100_verify(priv);
1006 if (err) {
1007 IPW_DEBUG_ERROR("%s: ipw2100_verify failed: %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05001008 priv->net_dev->name, err);
James Ketrenos2c86c272005-03-23 17:32:29 -06001009 goto fail;
1010 }
1011
1012 /* Hold ARC */
1013 write_nic_dword(priv->net_dev,
James Ketrenosee8e3652005-09-14 09:47:29 -05001014 IPW_INTERNAL_REGISTER_HALT_AND_RESET, 0x80000000);
James Ketrenos2c86c272005-03-23 17:32:29 -06001015
1016 /* allow ARC to run */
1017 write_register(priv->net_dev, IPW_REG_RESET_REG, 0);
1018
1019 /* load microcode */
1020 err = ipw2100_ucode_download(priv, &ipw2100_firmware);
1021 if (err) {
Jiri Benc797b4f72005-08-25 20:03:27 -04001022 printk(KERN_ERR DRV_NAME ": %s: Error loading microcode: %d\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06001023 priv->net_dev->name, err);
1024 goto fail;
1025 }
1026
1027 /* release ARC */
1028 write_nic_dword(priv->net_dev,
James Ketrenosee8e3652005-09-14 09:47:29 -05001029 IPW_INTERNAL_REGISTER_HALT_AND_RESET, 0x00000000);
James Ketrenos2c86c272005-03-23 17:32:29 -06001030
1031 /* s/w reset and clock stabilization (again!!!) */
1032 err = sw_reset_and_clock(priv);
1033 if (err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001034 printk(KERN_ERR DRV_NAME
1035 ": %s: sw_reset_and_clock failed: %d\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06001036 priv->net_dev->name, err);
1037 goto fail;
1038 }
1039
1040 /* load f/w */
1041 err = ipw2100_fw_download(priv, &ipw2100_firmware);
1042 if (err) {
1043 IPW_DEBUG_ERROR("%s: Error loading firmware: %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05001044 priv->net_dev->name, err);
James Ketrenos2c86c272005-03-23 17:32:29 -06001045 goto fail;
1046 }
James Ketrenos2c86c272005-03-23 17:32:29 -06001047#ifndef CONFIG_PM
1048 /*
1049 * When the .resume method of the driver is called, the other
1050 * part of the system, i.e. the ide driver could still stay in
1051 * the suspend stage. This prevents us from loading the firmware
1052 * from the disk. --YZ
1053 */
1054
1055 /* free any storage allocated for firmware image */
1056 ipw2100_release_firmware(priv, &ipw2100_firmware);
1057#endif
1058
1059 /* zero out Domain 1 area indirectly (Si requirement) */
1060 for (address = IPW_HOST_FW_SHARED_AREA0;
1061 address < IPW_HOST_FW_SHARED_AREA0_END; address += 4)
1062 write_nic_dword(priv->net_dev, address, 0);
1063 for (address = IPW_HOST_FW_SHARED_AREA1;
1064 address < IPW_HOST_FW_SHARED_AREA1_END; address += 4)
1065 write_nic_dword(priv->net_dev, address, 0);
1066 for (address = IPW_HOST_FW_SHARED_AREA2;
1067 address < IPW_HOST_FW_SHARED_AREA2_END; address += 4)
1068 write_nic_dword(priv->net_dev, address, 0);
1069 for (address = IPW_HOST_FW_SHARED_AREA3;
1070 address < IPW_HOST_FW_SHARED_AREA3_END; address += 4)
1071 write_nic_dword(priv->net_dev, address, 0);
1072 for (address = IPW_HOST_FW_INTERRUPT_AREA;
1073 address < IPW_HOST_FW_INTERRUPT_AREA_END; address += 4)
1074 write_nic_dword(priv->net_dev, address, 0);
1075
1076 return 0;
1077
James Ketrenosee8e3652005-09-14 09:47:29 -05001078 fail:
James Ketrenos2c86c272005-03-23 17:32:29 -06001079 ipw2100_release_firmware(priv, &ipw2100_firmware);
1080 return err;
1081}
1082
1083static inline void ipw2100_enable_interrupts(struct ipw2100_priv *priv)
1084{
1085 if (priv->status & STATUS_INT_ENABLED)
1086 return;
1087 priv->status |= STATUS_INT_ENABLED;
1088 write_register(priv->net_dev, IPW_REG_INTA_MASK, IPW_INTERRUPT_MASK);
1089}
1090
1091static inline void ipw2100_disable_interrupts(struct ipw2100_priv *priv)
1092{
1093 if (!(priv->status & STATUS_INT_ENABLED))
1094 return;
1095 priv->status &= ~STATUS_INT_ENABLED;
1096 write_register(priv->net_dev, IPW_REG_INTA_MASK, 0x0);
1097}
1098
James Ketrenos2c86c272005-03-23 17:32:29 -06001099static void ipw2100_initialize_ordinals(struct ipw2100_priv *priv)
1100{
1101 struct ipw2100_ordinals *ord = &priv->ordinals;
1102
1103 IPW_DEBUG_INFO("enter\n");
1104
1105 read_register(priv->net_dev, IPW_MEM_HOST_SHARED_ORDINALS_TABLE_1,
1106 &ord->table1_addr);
1107
1108 read_register(priv->net_dev, IPW_MEM_HOST_SHARED_ORDINALS_TABLE_2,
1109 &ord->table2_addr);
1110
1111 read_nic_dword(priv->net_dev, ord->table1_addr, &ord->table1_size);
1112 read_nic_dword(priv->net_dev, ord->table2_addr, &ord->table2_size);
1113
1114 ord->table2_size &= 0x0000FFFF;
1115
1116 IPW_DEBUG_INFO("table 1 size: %d\n", ord->table1_size);
1117 IPW_DEBUG_INFO("table 2 size: %d\n", ord->table2_size);
1118 IPW_DEBUG_INFO("exit\n");
1119}
1120
1121static inline void ipw2100_hw_set_gpio(struct ipw2100_priv *priv)
1122{
1123 u32 reg = 0;
1124 /*
1125 * Set GPIO 3 writable by FW; GPIO 1 writable
1126 * by driver and enable clock
1127 */
1128 reg = (IPW_BIT_GPIO_GPIO3_MASK | IPW_BIT_GPIO_GPIO1_ENABLE |
1129 IPW_BIT_GPIO_LED_OFF);
1130 write_register(priv->net_dev, IPW_REG_GPIO, reg);
1131}
1132
1133static inline int rf_kill_active(struct ipw2100_priv *priv)
1134{
1135#define MAX_RF_KILL_CHECKS 5
1136#define RF_KILL_CHECK_DELAY 40
James Ketrenos2c86c272005-03-23 17:32:29 -06001137
1138 unsigned short value = 0;
1139 u32 reg = 0;
1140 int i;
1141
1142 if (!(priv->hw_features & HW_FEATURE_RFKILL)) {
1143 priv->status &= ~STATUS_RF_KILL_HW;
1144 return 0;
1145 }
1146
1147 for (i = 0; i < MAX_RF_KILL_CHECKS; i++) {
1148 udelay(RF_KILL_CHECK_DELAY);
1149 read_register(priv->net_dev, IPW_REG_GPIO, &reg);
1150 value = (value << 1) | ((reg & IPW_BIT_GPIO_RF_KILL) ? 0 : 1);
1151 }
1152
1153 if (value == 0)
1154 priv->status |= STATUS_RF_KILL_HW;
1155 else
1156 priv->status &= ~STATUS_RF_KILL_HW;
1157
1158 return (value == 0);
1159}
1160
1161static int ipw2100_get_hw_features(struct ipw2100_priv *priv)
1162{
1163 u32 addr, len;
1164 u32 val;
1165
1166 /*
1167 * EEPROM_SRAM_DB_START_ADDRESS using ordinal in ordinal table 1
1168 */
1169 len = sizeof(addr);
James Ketrenosee8e3652005-09-14 09:47:29 -05001170 if (ipw2100_get_ordinal
1171 (priv, IPW_ORD_EEPROM_SRAM_DB_BLOCK_START_ADDRESS, &addr, &len)) {
James Ketrenos2c86c272005-03-23 17:32:29 -06001172 IPW_DEBUG_INFO("failed querying ordinals at line %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05001173 __LINE__);
James Ketrenos2c86c272005-03-23 17:32:29 -06001174 return -EIO;
1175 }
1176
1177 IPW_DEBUG_INFO("EEPROM address: %08X\n", addr);
1178
1179 /*
1180 * EEPROM version is the byte at offset 0xfd in firmware
1181 * We read 4 bytes, then shift out the byte we actually want */
1182 read_nic_dword(priv->net_dev, addr + 0xFC, &val);
1183 priv->eeprom_version = (val >> 24) & 0xFF;
1184 IPW_DEBUG_INFO("EEPROM version: %d\n", priv->eeprom_version);
1185
James Ketrenosee8e3652005-09-14 09:47:29 -05001186 /*
James Ketrenos2c86c272005-03-23 17:32:29 -06001187 * HW RF Kill enable is bit 0 in byte at offset 0x21 in firmware
1188 *
1189 * notice that the EEPROM bit is reverse polarity, i.e.
1190 * bit = 0 signifies HW RF kill switch is supported
1191 * bit = 1 signifies HW RF kill switch is NOT supported
1192 */
1193 read_nic_dword(priv->net_dev, addr + 0x20, &val);
1194 if (!((val >> 24) & 0x01))
1195 priv->hw_features |= HW_FEATURE_RFKILL;
1196
1197 IPW_DEBUG_INFO("HW RF Kill: %ssupported.\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05001198 (priv->hw_features & HW_FEATURE_RFKILL) ? "" : "not ");
James Ketrenos2c86c272005-03-23 17:32:29 -06001199
1200 return 0;
1201}
1202
1203/*
1204 * Start firmware execution after power on and intialization
1205 * The sequence is:
1206 * 1. Release ARC
1207 * 2. Wait for f/w initialization completes;
1208 */
1209static int ipw2100_start_adapter(struct ipw2100_priv *priv)
1210{
James Ketrenos2c86c272005-03-23 17:32:29 -06001211 int i;
1212 u32 inta, inta_mask, gpio;
1213
1214 IPW_DEBUG_INFO("enter\n");
1215
1216 if (priv->status & STATUS_RUNNING)
1217 return 0;
1218
1219 /*
1220 * Initialize the hw - drive adapter to DO state by setting
1221 * init_done bit. Wait for clk_ready bit and Download
1222 * fw & dino ucode
1223 */
1224 if (ipw2100_download_firmware(priv)) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001225 printk(KERN_ERR DRV_NAME
1226 ": %s: Failed to power on the adapter.\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06001227 priv->net_dev->name);
1228 return -EIO;
1229 }
1230
1231 /* Clear the Tx, Rx and Msg queues and the r/w indexes
1232 * in the firmware RBD and TBD ring queue */
1233 ipw2100_queues_initialize(priv);
1234
1235 ipw2100_hw_set_gpio(priv);
1236
1237 /* TODO -- Look at disabling interrupts here to make sure none
1238 * get fired during FW initialization */
1239
1240 /* Release ARC - clear reset bit */
1241 write_register(priv->net_dev, IPW_REG_RESET_REG, 0);
1242
1243 /* wait for f/w intialization complete */
1244 IPW_DEBUG_FW("Waiting for f/w initialization to complete...\n");
1245 i = 5000;
1246 do {
Nishanth Aravamudan3173c892005-09-11 02:09:55 -07001247 schedule_timeout_uninterruptible(msecs_to_jiffies(40));
James Ketrenos2c86c272005-03-23 17:32:29 -06001248 /* Todo... wait for sync command ... */
1249
1250 read_register(priv->net_dev, IPW_REG_INTA, &inta);
1251
1252 /* check "init done" bit */
1253 if (inta & IPW2100_INTA_FW_INIT_DONE) {
1254 /* reset "init done" bit */
1255 write_register(priv->net_dev, IPW_REG_INTA,
1256 IPW2100_INTA_FW_INIT_DONE);
1257 break;
1258 }
1259
1260 /* check error conditions : we check these after the firmware
1261 * check so that if there is an error, the interrupt handler
1262 * will see it and the adapter will be reset */
1263 if (inta &
1264 (IPW2100_INTA_FATAL_ERROR | IPW2100_INTA_PARITY_ERROR)) {
1265 /* clear error conditions */
1266 write_register(priv->net_dev, IPW_REG_INTA,
1267 IPW2100_INTA_FATAL_ERROR |
1268 IPW2100_INTA_PARITY_ERROR);
1269 }
1270 } while (i--);
1271
1272 /* Clear out any pending INTAs since we aren't supposed to have
1273 * interrupts enabled at this point... */
1274 read_register(priv->net_dev, IPW_REG_INTA, &inta);
1275 read_register(priv->net_dev, IPW_REG_INTA_MASK, &inta_mask);
1276 inta &= IPW_INTERRUPT_MASK;
1277 /* Clear out any pending interrupts */
1278 if (inta & inta_mask)
1279 write_register(priv->net_dev, IPW_REG_INTA, inta);
1280
1281 IPW_DEBUG_FW("f/w initialization complete: %s\n",
1282 i ? "SUCCESS" : "FAILED");
1283
1284 if (!i) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001285 printk(KERN_WARNING DRV_NAME
1286 ": %s: Firmware did not initialize.\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06001287 priv->net_dev->name);
1288 return -EIO;
1289 }
1290
1291 /* allow firmware to write to GPIO1 & GPIO3 */
1292 read_register(priv->net_dev, IPW_REG_GPIO, &gpio);
1293
1294 gpio |= (IPW_BIT_GPIO_GPIO1_MASK | IPW_BIT_GPIO_GPIO3_MASK);
1295
1296 write_register(priv->net_dev, IPW_REG_GPIO, gpio);
1297
1298 /* Ready to receive commands */
1299 priv->status |= STATUS_RUNNING;
1300
1301 /* The adapter has been reset; we are not associated */
1302 priv->status &= ~(STATUS_ASSOCIATING | STATUS_ASSOCIATED);
1303
1304 IPW_DEBUG_INFO("exit\n");
1305
1306 return 0;
1307}
1308
1309static inline void ipw2100_reset_fatalerror(struct ipw2100_priv *priv)
1310{
1311 if (!priv->fatal_error)
1312 return;
1313
1314 priv->fatal_errors[priv->fatal_index++] = priv->fatal_error;
1315 priv->fatal_index %= IPW2100_ERROR_QUEUE;
1316 priv->fatal_error = 0;
1317}
1318
James Ketrenos2c86c272005-03-23 17:32:29 -06001319/* NOTE: Our interrupt is disabled when this method is called */
1320static int ipw2100_power_cycle_adapter(struct ipw2100_priv *priv)
1321{
1322 u32 reg;
1323 int i;
1324
1325 IPW_DEBUG_INFO("Power cycling the hardware.\n");
1326
1327 ipw2100_hw_set_gpio(priv);
1328
1329 /* Step 1. Stop Master Assert */
1330 write_register(priv->net_dev, IPW_REG_RESET_REG,
1331 IPW_AUX_HOST_RESET_REG_STOP_MASTER);
1332
1333 /* Step 2. Wait for stop Master Assert
1334 * (not more then 50us, otherwise ret error */
1335 i = 5;
1336 do {
1337 udelay(IPW_WAIT_RESET_MASTER_ASSERT_COMPLETE_DELAY);
1338 read_register(priv->net_dev, IPW_REG_RESET_REG, &reg);
1339
1340 if (reg & IPW_AUX_HOST_RESET_REG_MASTER_DISABLED)
1341 break;
James Ketrenosee8e3652005-09-14 09:47:29 -05001342 } while (i--);
James Ketrenos2c86c272005-03-23 17:32:29 -06001343
1344 priv->status &= ~STATUS_RESET_PENDING;
1345
1346 if (!i) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001347 IPW_DEBUG_INFO
1348 ("exit - waited too long for master assert stop\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06001349 return -EIO;
1350 }
1351
1352 write_register(priv->net_dev, IPW_REG_RESET_REG,
1353 IPW_AUX_HOST_RESET_REG_SW_RESET);
1354
James Ketrenos2c86c272005-03-23 17:32:29 -06001355 /* Reset any fatal_error conditions */
1356 ipw2100_reset_fatalerror(priv);
1357
1358 /* At this point, the adapter is now stopped and disabled */
1359 priv->status &= ~(STATUS_RUNNING | STATUS_ASSOCIATING |
1360 STATUS_ASSOCIATED | STATUS_ENABLED);
1361
1362 return 0;
1363}
1364
1365/*
1366 * Send the CARD_DISABLE_PHY_OFF comamnd to the card to disable it
1367 *
1368 * After disabling, if the card was associated, a STATUS_ASSN_LOST will be sent.
1369 *
1370 * STATUS_CARD_DISABLE_NOTIFICATION will be sent regardless of
1371 * if STATUS_ASSN_LOST is sent.
1372 */
1373static int ipw2100_hw_phy_off(struct ipw2100_priv *priv)
1374{
1375
1376#define HW_PHY_OFF_LOOP_DELAY (HZ / 5000)
1377
1378 struct host_command cmd = {
1379 .host_command = CARD_DISABLE_PHY_OFF,
1380 .host_command_sequence = 0,
1381 .host_command_length = 0,
1382 };
1383 int err, i;
1384 u32 val1, val2;
1385
1386 IPW_DEBUG_HC("CARD_DISABLE_PHY_OFF\n");
1387
1388 /* Turn off the radio */
1389 err = ipw2100_hw_send_command(priv, &cmd);
1390 if (err)
1391 return err;
1392
1393 for (i = 0; i < 2500; i++) {
1394 read_nic_dword(priv->net_dev, IPW2100_CONTROL_REG, &val1);
1395 read_nic_dword(priv->net_dev, IPW2100_COMMAND, &val2);
1396
1397 if ((val1 & IPW2100_CONTROL_PHY_OFF) &&
1398 (val2 & IPW2100_COMMAND_PHY_OFF))
1399 return 0;
1400
Nishanth Aravamudan3173c892005-09-11 02:09:55 -07001401 schedule_timeout_uninterruptible(HW_PHY_OFF_LOOP_DELAY);
James Ketrenos2c86c272005-03-23 17:32:29 -06001402 }
1403
1404 return -EIO;
1405}
1406
James Ketrenos2c86c272005-03-23 17:32:29 -06001407static int ipw2100_enable_adapter(struct ipw2100_priv *priv)
1408{
1409 struct host_command cmd = {
1410 .host_command = HOST_COMPLETE,
1411 .host_command_sequence = 0,
1412 .host_command_length = 0
1413 };
1414 int err = 0;
1415
1416 IPW_DEBUG_HC("HOST_COMPLETE\n");
1417
1418 if (priv->status & STATUS_ENABLED)
1419 return 0;
1420
1421 down(&priv->adapter_sem);
1422
1423 if (rf_kill_active(priv)) {
1424 IPW_DEBUG_HC("Command aborted due to RF kill active.\n");
1425 goto fail_up;
1426 }
1427
1428 err = ipw2100_hw_send_command(priv, &cmd);
1429 if (err) {
1430 IPW_DEBUG_INFO("Failed to send HOST_COMPLETE command\n");
1431 goto fail_up;
1432 }
1433
1434 err = ipw2100_wait_for_card_state(priv, IPW_HW_STATE_ENABLED);
1435 if (err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001436 IPW_DEBUG_INFO("%s: card not responding to init command.\n",
1437 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06001438 goto fail_up;
1439 }
1440
1441 if (priv->stop_hang_check) {
1442 priv->stop_hang_check = 0;
1443 queue_delayed_work(priv->workqueue, &priv->hang_check, HZ / 2);
1444 }
1445
James Ketrenosee8e3652005-09-14 09:47:29 -05001446 fail_up:
James Ketrenos2c86c272005-03-23 17:32:29 -06001447 up(&priv->adapter_sem);
1448 return err;
1449}
1450
1451static int ipw2100_hw_stop_adapter(struct ipw2100_priv *priv)
1452{
Nishanth Aravamudan3173c892005-09-11 02:09:55 -07001453#define HW_POWER_DOWN_DELAY (msecs_to_jiffies(100))
James Ketrenos2c86c272005-03-23 17:32:29 -06001454
1455 struct host_command cmd = {
1456 .host_command = HOST_PRE_POWER_DOWN,
1457 .host_command_sequence = 0,
1458 .host_command_length = 0,
1459 };
1460 int err, i;
1461 u32 reg;
1462
1463 if (!(priv->status & STATUS_RUNNING))
1464 return 0;
1465
1466 priv->status |= STATUS_STOPPING;
1467
1468 /* We can only shut down the card if the firmware is operational. So,
1469 * if we haven't reset since a fatal_error, then we can not send the
1470 * shutdown commands. */
1471 if (!priv->fatal_error) {
1472 /* First, make sure the adapter is enabled so that the PHY_OFF
1473 * command can shut it down */
1474 ipw2100_enable_adapter(priv);
1475
1476 err = ipw2100_hw_phy_off(priv);
1477 if (err)
James Ketrenosee8e3652005-09-14 09:47:29 -05001478 printk(KERN_WARNING DRV_NAME
1479 ": Error disabling radio %d\n", err);
James Ketrenos2c86c272005-03-23 17:32:29 -06001480
1481 /*
1482 * If in D0-standby mode going directly to D3 may cause a
1483 * PCI bus violation. Therefore we must change out of the D0
1484 * state.
1485 *
1486 * Sending the PREPARE_FOR_POWER_DOWN will restrict the
1487 * hardware from going into standby mode and will transition
1488 * out of D0-standy if it is already in that state.
1489 *
1490 * STATUS_PREPARE_POWER_DOWN_COMPLETE will be sent by the
1491 * driver upon completion. Once received, the driver can
1492 * proceed to the D3 state.
1493 *
1494 * Prepare for power down command to fw. This command would
1495 * take HW out of D0-standby and prepare it for D3 state.
1496 *
1497 * Currently FW does not support event notification for this
1498 * event. Therefore, skip waiting for it. Just wait a fixed
1499 * 100ms
1500 */
1501 IPW_DEBUG_HC("HOST_PRE_POWER_DOWN\n");
1502
1503 err = ipw2100_hw_send_command(priv, &cmd);
1504 if (err)
Jiri Benc797b4f72005-08-25 20:03:27 -04001505 printk(KERN_WARNING DRV_NAME ": "
James Ketrenos2c86c272005-03-23 17:32:29 -06001506 "%s: Power down command failed: Error %d\n",
1507 priv->net_dev->name, err);
Nishanth Aravamudan3173c892005-09-11 02:09:55 -07001508 else
1509 schedule_timeout_uninterruptible(HW_POWER_DOWN_DELAY);
James Ketrenos2c86c272005-03-23 17:32:29 -06001510 }
1511
1512 priv->status &= ~STATUS_ENABLED;
1513
1514 /*
1515 * Set GPIO 3 writable by FW; GPIO 1 writable
1516 * by driver and enable clock
1517 */
1518 ipw2100_hw_set_gpio(priv);
1519
1520 /*
1521 * Power down adapter. Sequence:
1522 * 1. Stop master assert (RESET_REG[9]=1)
1523 * 2. Wait for stop master (RESET_REG[8]==1)
1524 * 3. S/w reset assert (RESET_REG[7] = 1)
1525 */
1526
1527 /* Stop master assert */
1528 write_register(priv->net_dev, IPW_REG_RESET_REG,
1529 IPW_AUX_HOST_RESET_REG_STOP_MASTER);
1530
1531 /* wait stop master not more than 50 usec.
1532 * Otherwise return error. */
1533 for (i = 5; i > 0; i--) {
1534 udelay(10);
1535
1536 /* Check master stop bit */
1537 read_register(priv->net_dev, IPW_REG_RESET_REG, &reg);
1538
1539 if (reg & IPW_AUX_HOST_RESET_REG_MASTER_DISABLED)
1540 break;
1541 }
1542
1543 if (i == 0)
Jiri Benc797b4f72005-08-25 20:03:27 -04001544 printk(KERN_WARNING DRV_NAME
James Ketrenos2c86c272005-03-23 17:32:29 -06001545 ": %s: Could now power down adapter.\n",
1546 priv->net_dev->name);
1547
1548 /* assert s/w reset */
1549 write_register(priv->net_dev, IPW_REG_RESET_REG,
1550 IPW_AUX_HOST_RESET_REG_SW_RESET);
1551
1552 priv->status &= ~(STATUS_RUNNING | STATUS_STOPPING);
1553
1554 return 0;
1555}
1556
James Ketrenos2c86c272005-03-23 17:32:29 -06001557static int ipw2100_disable_adapter(struct ipw2100_priv *priv)
1558{
1559 struct host_command cmd = {
1560 .host_command = CARD_DISABLE,
1561 .host_command_sequence = 0,
1562 .host_command_length = 0
1563 };
1564 int err = 0;
1565
1566 IPW_DEBUG_HC("CARD_DISABLE\n");
1567
1568 if (!(priv->status & STATUS_ENABLED))
1569 return 0;
1570
1571 /* Make sure we clear the associated state */
1572 priv->status &= ~(STATUS_ASSOCIATED | STATUS_ASSOCIATING);
1573
1574 if (!priv->stop_hang_check) {
1575 priv->stop_hang_check = 1;
1576 cancel_delayed_work(&priv->hang_check);
1577 }
1578
1579 down(&priv->adapter_sem);
1580
1581 err = ipw2100_hw_send_command(priv, &cmd);
1582 if (err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001583 printk(KERN_WARNING DRV_NAME
1584 ": exit - failed to send CARD_DISABLE command\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06001585 goto fail_up;
1586 }
1587
1588 err = ipw2100_wait_for_card_state(priv, IPW_HW_STATE_DISABLED);
1589 if (err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001590 printk(KERN_WARNING DRV_NAME
1591 ": exit - card failed to change to DISABLED\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06001592 goto fail_up;
1593 }
1594
1595 IPW_DEBUG_INFO("TODO: implement scan state machine\n");
1596
James Ketrenosee8e3652005-09-14 09:47:29 -05001597 fail_up:
James Ketrenos2c86c272005-03-23 17:32:29 -06001598 up(&priv->adapter_sem);
1599 return err;
1600}
1601
Jiri Bencc4aee8c2005-08-25 20:04:43 -04001602static int ipw2100_set_scan_options(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06001603{
1604 struct host_command cmd = {
1605 .host_command = SET_SCAN_OPTIONS,
1606 .host_command_sequence = 0,
1607 .host_command_length = 8
1608 };
1609 int err;
1610
1611 IPW_DEBUG_INFO("enter\n");
1612
1613 IPW_DEBUG_SCAN("setting scan options\n");
1614
1615 cmd.host_command_parameters[0] = 0;
1616
1617 if (!(priv->config & CFG_ASSOCIATE))
1618 cmd.host_command_parameters[0] |= IPW_SCAN_NOASSOCIATE;
25b645b2005-07-12 15:45:30 -05001619 if ((priv->ieee->sec.flags & SEC_ENABLED) && priv->ieee->sec.enabled)
James Ketrenos2c86c272005-03-23 17:32:29 -06001620 cmd.host_command_parameters[0] |= IPW_SCAN_MIXED_CELL;
1621 if (priv->config & CFG_PASSIVE_SCAN)
1622 cmd.host_command_parameters[0] |= IPW_SCAN_PASSIVE;
1623
1624 cmd.host_command_parameters[1] = priv->channel_mask;
1625
1626 err = ipw2100_hw_send_command(priv, &cmd);
1627
1628 IPW_DEBUG_HC("SET_SCAN_OPTIONS 0x%04X\n",
1629 cmd.host_command_parameters[0]);
1630
1631 return err;
1632}
1633
Jiri Bencc4aee8c2005-08-25 20:04:43 -04001634static int ipw2100_start_scan(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06001635{
1636 struct host_command cmd = {
1637 .host_command = BROADCAST_SCAN,
1638 .host_command_sequence = 0,
1639 .host_command_length = 4
1640 };
1641 int err;
1642
1643 IPW_DEBUG_HC("START_SCAN\n");
1644
1645 cmd.host_command_parameters[0] = 0;
1646
1647 /* No scanning if in monitor mode */
1648 if (priv->ieee->iw_mode == IW_MODE_MONITOR)
1649 return 1;
1650
1651 if (priv->status & STATUS_SCANNING) {
1652 IPW_DEBUG_SCAN("Scan requested while already in scan...\n");
1653 return 0;
1654 }
1655
1656 IPW_DEBUG_INFO("enter\n");
1657
1658 /* Not clearing here; doing so makes iwlist always return nothing...
1659 *
1660 * We should modify the table logic to use aging tables vs. clearing
1661 * the table on each scan start.
1662 */
1663 IPW_DEBUG_SCAN("starting scan\n");
1664
1665 priv->status |= STATUS_SCANNING;
1666 err = ipw2100_hw_send_command(priv, &cmd);
1667 if (err)
1668 priv->status &= ~STATUS_SCANNING;
1669
1670 IPW_DEBUG_INFO("exit\n");
1671
1672 return err;
1673}
1674
1675static int ipw2100_up(struct ipw2100_priv *priv, int deferred)
1676{
1677 unsigned long flags;
1678 int rc = 0;
1679 u32 lock;
1680 u32 ord_len = sizeof(lock);
1681
1682 /* Quite if manually disabled. */
1683 if (priv->status & STATUS_RF_KILL_SW) {
1684 IPW_DEBUG_INFO("%s: Radio is disabled by Manual Disable "
1685 "switch\n", priv->net_dev->name);
1686 return 0;
1687 }
1688
1689 /* If the interrupt is enabled, turn it off... */
1690 spin_lock_irqsave(&priv->low_lock, flags);
1691 ipw2100_disable_interrupts(priv);
1692
1693 /* Reset any fatal_error conditions */
1694 ipw2100_reset_fatalerror(priv);
1695 spin_unlock_irqrestore(&priv->low_lock, flags);
1696
1697 if (priv->status & STATUS_POWERED ||
1698 (priv->status & STATUS_RESET_PENDING)) {
1699 /* Power cycle the card ... */
1700 if (ipw2100_power_cycle_adapter(priv)) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001701 printk(KERN_WARNING DRV_NAME
1702 ": %s: Could not cycle adapter.\n",
1703 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06001704 rc = 1;
1705 goto exit;
1706 }
1707 } else
1708 priv->status |= STATUS_POWERED;
1709
Pavel Machek8724a112005-06-20 14:28:43 -07001710 /* Load the firmware, start the clocks, etc. */
James Ketrenos2c86c272005-03-23 17:32:29 -06001711 if (ipw2100_start_adapter(priv)) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001712 printk(KERN_ERR DRV_NAME
1713 ": %s: Failed to start the firmware.\n",
1714 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06001715 rc = 1;
1716 goto exit;
1717 }
1718
1719 ipw2100_initialize_ordinals(priv);
1720
1721 /* Determine capabilities of this particular HW configuration */
1722 if (ipw2100_get_hw_features(priv)) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001723 printk(KERN_ERR DRV_NAME
1724 ": %s: Failed to determine HW features.\n",
1725 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06001726 rc = 1;
1727 goto exit;
1728 }
1729
1730 lock = LOCK_NONE;
1731 if (ipw2100_set_ordinal(priv, IPW_ORD_PERS_DB_LOCK, &lock, &ord_len)) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001732 printk(KERN_ERR DRV_NAME
1733 ": %s: Failed to clear ordinal lock.\n",
1734 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06001735 rc = 1;
1736 goto exit;
1737 }
1738
1739 priv->status &= ~STATUS_SCANNING;
1740
1741 if (rf_kill_active(priv)) {
1742 printk(KERN_INFO "%s: Radio is disabled by RF switch.\n",
1743 priv->net_dev->name);
1744
1745 if (priv->stop_rf_kill) {
1746 priv->stop_rf_kill = 0;
1747 queue_delayed_work(priv->workqueue, &priv->rf_kill, HZ);
1748 }
1749
1750 deferred = 1;
1751 }
1752
1753 /* Turn on the interrupt so that commands can be processed */
1754 ipw2100_enable_interrupts(priv);
1755
1756 /* Send all of the commands that must be sent prior to
1757 * HOST_COMPLETE */
1758 if (ipw2100_adapter_setup(priv)) {
Jiri Benc797b4f72005-08-25 20:03:27 -04001759 printk(KERN_ERR DRV_NAME ": %s: Failed to start the card.\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05001760 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06001761 rc = 1;
1762 goto exit;
1763 }
1764
1765 if (!deferred) {
1766 /* Enable the adapter - sends HOST_COMPLETE */
1767 if (ipw2100_enable_adapter(priv)) {
Jiri Benc797b4f72005-08-25 20:03:27 -04001768 printk(KERN_ERR DRV_NAME ": "
James Ketrenosee8e3652005-09-14 09:47:29 -05001769 "%s: failed in call to enable adapter.\n",
1770 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06001771 ipw2100_hw_stop_adapter(priv);
1772 rc = 1;
1773 goto exit;
1774 }
1775
James Ketrenos2c86c272005-03-23 17:32:29 -06001776 /* Start a scan . . . */
1777 ipw2100_set_scan_options(priv);
1778 ipw2100_start_scan(priv);
1779 }
1780
James Ketrenosee8e3652005-09-14 09:47:29 -05001781 exit:
James Ketrenos2c86c272005-03-23 17:32:29 -06001782 return rc;
1783}
1784
1785/* Called by register_netdev() */
1786static int ipw2100_net_init(struct net_device *dev)
1787{
1788 struct ipw2100_priv *priv = ieee80211_priv(dev);
1789 return ipw2100_up(priv, 1);
1790}
1791
1792static void ipw2100_down(struct ipw2100_priv *priv)
1793{
1794 unsigned long flags;
1795 union iwreq_data wrqu = {
1796 .ap_addr = {
James Ketrenosee8e3652005-09-14 09:47:29 -05001797 .sa_family = ARPHRD_ETHER}
James Ketrenos2c86c272005-03-23 17:32:29 -06001798 };
1799 int associated = priv->status & STATUS_ASSOCIATED;
1800
1801 /* Kill the RF switch timer */
1802 if (!priv->stop_rf_kill) {
1803 priv->stop_rf_kill = 1;
1804 cancel_delayed_work(&priv->rf_kill);
1805 }
1806
1807 /* Kill the firmare hang check timer */
1808 if (!priv->stop_hang_check) {
1809 priv->stop_hang_check = 1;
1810 cancel_delayed_work(&priv->hang_check);
1811 }
1812
1813 /* Kill any pending resets */
1814 if (priv->status & STATUS_RESET_PENDING)
1815 cancel_delayed_work(&priv->reset_work);
1816
1817 /* Make sure the interrupt is on so that FW commands will be
1818 * processed correctly */
1819 spin_lock_irqsave(&priv->low_lock, flags);
1820 ipw2100_enable_interrupts(priv);
1821 spin_unlock_irqrestore(&priv->low_lock, flags);
1822
1823 if (ipw2100_hw_stop_adapter(priv))
Jiri Benc797b4f72005-08-25 20:03:27 -04001824 printk(KERN_ERR DRV_NAME ": %s: Error stopping adapter.\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06001825 priv->net_dev->name);
1826
1827 /* Do not disable the interrupt until _after_ we disable
1828 * the adaptor. Otherwise the CARD_DISABLE command will never
1829 * be ack'd by the firmware */
1830 spin_lock_irqsave(&priv->low_lock, flags);
1831 ipw2100_disable_interrupts(priv);
1832 spin_unlock_irqrestore(&priv->low_lock, flags);
1833
1834#ifdef ACPI_CSTATE_LIMIT_DEFINED
1835 if (priv->config & CFG_C3_DISABLED) {
Zhu Yia1e695a2005-07-04 14:06:00 +08001836 IPW_DEBUG_INFO(": Resetting C3 transitions.\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06001837 acpi_set_cstate_limit(priv->cstate_limit);
1838 priv->config &= ~CFG_C3_DISABLED;
1839 }
1840#endif
1841
1842 /* We have to signal any supplicant if we are disassociating */
1843 if (associated)
1844 wireless_send_event(priv->net_dev, SIOCGIWAP, &wrqu, NULL);
1845
1846 priv->status &= ~(STATUS_ASSOCIATED | STATUS_ASSOCIATING);
1847 netif_carrier_off(priv->net_dev);
1848 netif_stop_queue(priv->net_dev);
1849}
1850
Jiri Bencc4aee8c2005-08-25 20:04:43 -04001851static void ipw2100_reset_adapter(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06001852{
1853 unsigned long flags;
1854 union iwreq_data wrqu = {
1855 .ap_addr = {
James Ketrenosee8e3652005-09-14 09:47:29 -05001856 .sa_family = ARPHRD_ETHER}
James Ketrenos2c86c272005-03-23 17:32:29 -06001857 };
1858 int associated = priv->status & STATUS_ASSOCIATED;
1859
1860 spin_lock_irqsave(&priv->low_lock, flags);
Zhu Yia1e695a2005-07-04 14:06:00 +08001861 IPW_DEBUG_INFO(": %s: Restarting adapter.\n", priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06001862 priv->resets++;
1863 priv->status &= ~(STATUS_ASSOCIATED | STATUS_ASSOCIATING);
1864 priv->status |= STATUS_SECURITY_UPDATED;
1865
1866 /* Force a power cycle even if interface hasn't been opened
1867 * yet */
1868 cancel_delayed_work(&priv->reset_work);
1869 priv->status |= STATUS_RESET_PENDING;
1870 spin_unlock_irqrestore(&priv->low_lock, flags);
1871
1872 down(&priv->action_sem);
1873 /* stop timed checks so that they don't interfere with reset */
1874 priv->stop_hang_check = 1;
1875 cancel_delayed_work(&priv->hang_check);
1876
1877 /* We have to signal any supplicant if we are disassociating */
1878 if (associated)
1879 wireless_send_event(priv->net_dev, SIOCGIWAP, &wrqu, NULL);
1880
1881 ipw2100_up(priv, 0);
1882 up(&priv->action_sem);
1883
1884}
1885
James Ketrenos2c86c272005-03-23 17:32:29 -06001886static void isr_indicate_associated(struct ipw2100_priv *priv, u32 status)
1887{
1888
1889#define MAC_ASSOCIATION_READ_DELAY (HZ)
1890 int ret, len, essid_len;
1891 char essid[IW_ESSID_MAX_SIZE];
1892 u32 txrate;
1893 u32 chan;
1894 char *txratename;
James Ketrenosee8e3652005-09-14 09:47:29 -05001895 u8 bssid[ETH_ALEN];
James Ketrenos2c86c272005-03-23 17:32:29 -06001896
1897 /*
1898 * TBD: BSSID is usually 00:00:00:00:00:00 here and not
1899 * an actual MAC of the AP. Seems like FW sets this
1900 * address too late. Read it later and expose through
1901 * /proc or schedule a later task to query and update
1902 */
1903
1904 essid_len = IW_ESSID_MAX_SIZE;
1905 ret = ipw2100_get_ordinal(priv, IPW_ORD_STAT_ASSN_SSID,
1906 essid, &essid_len);
1907 if (ret) {
1908 IPW_DEBUG_INFO("failed querying ordinals at line %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05001909 __LINE__);
James Ketrenos2c86c272005-03-23 17:32:29 -06001910 return;
1911 }
1912
1913 len = sizeof(u32);
James Ketrenosee8e3652005-09-14 09:47:29 -05001914 ret = ipw2100_get_ordinal(priv, IPW_ORD_CURRENT_TX_RATE, &txrate, &len);
James Ketrenos2c86c272005-03-23 17:32:29 -06001915 if (ret) {
1916 IPW_DEBUG_INFO("failed querying ordinals at line %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05001917 __LINE__);
James Ketrenos2c86c272005-03-23 17:32:29 -06001918 return;
1919 }
1920
1921 len = sizeof(u32);
1922 ret = ipw2100_get_ordinal(priv, IPW_ORD_OUR_FREQ, &chan, &len);
1923 if (ret) {
1924 IPW_DEBUG_INFO("failed querying ordinals at line %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05001925 __LINE__);
James Ketrenos2c86c272005-03-23 17:32:29 -06001926 return;
1927 }
1928 len = ETH_ALEN;
James Ketrenosee8e3652005-09-14 09:47:29 -05001929 ipw2100_get_ordinal(priv, IPW_ORD_STAT_ASSN_AP_BSSID, &bssid, &len);
James Ketrenos2c86c272005-03-23 17:32:29 -06001930 if (ret) {
1931 IPW_DEBUG_INFO("failed querying ordinals at line %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05001932 __LINE__);
James Ketrenos2c86c272005-03-23 17:32:29 -06001933 return;
1934 }
1935 memcpy(priv->ieee->bssid, bssid, ETH_ALEN);
1936
James Ketrenos2c86c272005-03-23 17:32:29 -06001937 switch (txrate) {
1938 case TX_RATE_1_MBIT:
1939 txratename = "1Mbps";
1940 break;
1941 case TX_RATE_2_MBIT:
1942 txratename = "2Mbsp";
1943 break;
1944 case TX_RATE_5_5_MBIT:
1945 txratename = "5.5Mbps";
1946 break;
1947 case TX_RATE_11_MBIT:
1948 txratename = "11Mbps";
1949 break;
1950 default:
1951 IPW_DEBUG_INFO("Unknown rate: %d\n", txrate);
1952 txratename = "unknown rate";
1953 break;
1954 }
1955
1956 IPW_DEBUG_INFO("%s: Associated with '%s' at %s, channel %d (BSSID="
1957 MAC_FMT ")\n",
1958 priv->net_dev->name, escape_essid(essid, essid_len),
1959 txratename, chan, MAC_ARG(bssid));
1960
1961 /* now we copy read ssid into dev */
1962 if (!(priv->config & CFG_STATIC_ESSID)) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001963 priv->essid_len = min((u8) essid_len, (u8) IW_ESSID_MAX_SIZE);
James Ketrenos2c86c272005-03-23 17:32:29 -06001964 memcpy(priv->essid, essid, priv->essid_len);
1965 }
1966 priv->channel = chan;
1967 memcpy(priv->bssid, bssid, ETH_ALEN);
1968
1969 priv->status |= STATUS_ASSOCIATING;
1970 priv->connect_start = get_seconds();
1971
1972 queue_delayed_work(priv->workqueue, &priv->wx_event_work, HZ / 10);
1973}
1974
Jiri Bencc4aee8c2005-08-25 20:04:43 -04001975static int ipw2100_set_essid(struct ipw2100_priv *priv, char *essid,
1976 int length, int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06001977{
1978 int ssid_len = min(length, IW_ESSID_MAX_SIZE);
1979 struct host_command cmd = {
1980 .host_command = SSID,
1981 .host_command_sequence = 0,
1982 .host_command_length = ssid_len
1983 };
1984 int err;
1985
1986 IPW_DEBUG_HC("SSID: '%s'\n", escape_essid(essid, ssid_len));
1987
1988 if (ssid_len)
James Ketrenos82328352005-08-24 22:33:31 -05001989 memcpy(cmd.host_command_parameters, essid, ssid_len);
James Ketrenos2c86c272005-03-23 17:32:29 -06001990
1991 if (!batch_mode) {
1992 err = ipw2100_disable_adapter(priv);
1993 if (err)
1994 return err;
1995 }
1996
1997 /* Bug in FW currently doesn't honor bit 0 in SET_SCAN_OPTIONS to
1998 * disable auto association -- so we cheat by setting a bogus SSID */
1999 if (!ssid_len && !(priv->config & CFG_ASSOCIATE)) {
2000 int i;
James Ketrenosee8e3652005-09-14 09:47:29 -05002001 u8 *bogus = (u8 *) cmd.host_command_parameters;
James Ketrenos2c86c272005-03-23 17:32:29 -06002002 for (i = 0; i < IW_ESSID_MAX_SIZE; i++)
2003 bogus[i] = 0x18 + i;
2004 cmd.host_command_length = IW_ESSID_MAX_SIZE;
2005 }
2006
2007 /* NOTE: We always send the SSID command even if the provided ESSID is
2008 * the same as what we currently think is set. */
2009
2010 err = ipw2100_hw_send_command(priv, &cmd);
2011 if (!err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05002012 memset(priv->essid + ssid_len, 0, IW_ESSID_MAX_SIZE - ssid_len);
James Ketrenos2c86c272005-03-23 17:32:29 -06002013 memcpy(priv->essid, essid, ssid_len);
2014 priv->essid_len = ssid_len;
2015 }
2016
2017 if (!batch_mode) {
2018 if (ipw2100_enable_adapter(priv))
2019 err = -EIO;
2020 }
2021
2022 return err;
2023}
2024
2025static void isr_indicate_association_lost(struct ipw2100_priv *priv, u32 status)
2026{
2027 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE | IPW_DL_ASSOC,
2028 "disassociated: '%s' " MAC_FMT " \n",
2029 escape_essid(priv->essid, priv->essid_len),
2030 MAC_ARG(priv->bssid));
2031
2032 priv->status &= ~(STATUS_ASSOCIATED | STATUS_ASSOCIATING);
2033
2034 if (priv->status & STATUS_STOPPING) {
2035 IPW_DEBUG_INFO("Card is stopping itself, discard ASSN_LOST.\n");
2036 return;
2037 }
2038
2039 memset(priv->bssid, 0, ETH_ALEN);
2040 memset(priv->ieee->bssid, 0, ETH_ALEN);
2041
2042 netif_carrier_off(priv->net_dev);
2043 netif_stop_queue(priv->net_dev);
2044
2045 if (!(priv->status & STATUS_RUNNING))
2046 return;
2047
2048 if (priv->status & STATUS_SECURITY_UPDATED)
2049 queue_work(priv->workqueue, &priv->security_work);
2050
2051 queue_work(priv->workqueue, &priv->wx_event_work);
2052}
2053
2054static void isr_indicate_rf_kill(struct ipw2100_priv *priv, u32 status)
2055{
2056 IPW_DEBUG_INFO("%s: RF Kill state changed to radio OFF.\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05002057 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06002058
2059 /* RF_KILL is now enabled (else we wouldn't be here) */
2060 priv->status |= STATUS_RF_KILL_HW;
2061
2062#ifdef ACPI_CSTATE_LIMIT_DEFINED
2063 if (priv->config & CFG_C3_DISABLED) {
Zhu Yia1e695a2005-07-04 14:06:00 +08002064 IPW_DEBUG_INFO(": Resetting C3 transitions.\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06002065 acpi_set_cstate_limit(priv->cstate_limit);
2066 priv->config &= ~CFG_C3_DISABLED;
2067 }
2068#endif
2069
2070 /* Make sure the RF Kill check timer is running */
2071 priv->stop_rf_kill = 0;
2072 cancel_delayed_work(&priv->rf_kill);
2073 queue_delayed_work(priv->workqueue, &priv->rf_kill, HZ);
2074}
2075
2076static void isr_scan_complete(struct ipw2100_priv *priv, u32 status)
2077{
2078 IPW_DEBUG_SCAN("scan complete\n");
2079 /* Age the scan results... */
2080 priv->ieee->scans++;
2081 priv->status &= ~STATUS_SCANNING;
2082}
2083
2084#ifdef CONFIG_IPW_DEBUG
2085#define IPW2100_HANDLER(v, f) { v, f, # v }
2086struct ipw2100_status_indicator {
2087 int status;
James Ketrenosee8e3652005-09-14 09:47:29 -05002088 void (*cb) (struct ipw2100_priv * priv, u32 status);
James Ketrenos2c86c272005-03-23 17:32:29 -06002089 char *name;
2090};
2091#else
2092#define IPW2100_HANDLER(v, f) { v, f }
2093struct ipw2100_status_indicator {
2094 int status;
James Ketrenosee8e3652005-09-14 09:47:29 -05002095 void (*cb) (struct ipw2100_priv * priv, u32 status);
James Ketrenos2c86c272005-03-23 17:32:29 -06002096};
James Ketrenosee8e3652005-09-14 09:47:29 -05002097#endif /* CONFIG_IPW_DEBUG */
James Ketrenos2c86c272005-03-23 17:32:29 -06002098
2099static void isr_indicate_scanning(struct ipw2100_priv *priv, u32 status)
2100{
2101 IPW_DEBUG_SCAN("Scanning...\n");
2102 priv->status |= STATUS_SCANNING;
2103}
2104
Jiri Bencc4aee8c2005-08-25 20:04:43 -04002105static const struct ipw2100_status_indicator status_handlers[] = {
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01002106 IPW2100_HANDLER(IPW_STATE_INITIALIZED, NULL),
2107 IPW2100_HANDLER(IPW_STATE_COUNTRY_FOUND, NULL),
James Ketrenos2c86c272005-03-23 17:32:29 -06002108 IPW2100_HANDLER(IPW_STATE_ASSOCIATED, isr_indicate_associated),
2109 IPW2100_HANDLER(IPW_STATE_ASSN_LOST, isr_indicate_association_lost),
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01002110 IPW2100_HANDLER(IPW_STATE_ASSN_CHANGED, NULL),
James Ketrenos2c86c272005-03-23 17:32:29 -06002111 IPW2100_HANDLER(IPW_STATE_SCAN_COMPLETE, isr_scan_complete),
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01002112 IPW2100_HANDLER(IPW_STATE_ENTERED_PSP, NULL),
2113 IPW2100_HANDLER(IPW_STATE_LEFT_PSP, NULL),
James Ketrenos2c86c272005-03-23 17:32:29 -06002114 IPW2100_HANDLER(IPW_STATE_RF_KILL, isr_indicate_rf_kill),
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01002115 IPW2100_HANDLER(IPW_STATE_DISABLED, NULL),
2116 IPW2100_HANDLER(IPW_STATE_POWER_DOWN, NULL),
James Ketrenos2c86c272005-03-23 17:32:29 -06002117 IPW2100_HANDLER(IPW_STATE_SCANNING, isr_indicate_scanning),
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01002118 IPW2100_HANDLER(-1, NULL)
James Ketrenos2c86c272005-03-23 17:32:29 -06002119};
2120
James Ketrenos2c86c272005-03-23 17:32:29 -06002121static void isr_status_change(struct ipw2100_priv *priv, int status)
2122{
2123 int i;
2124
2125 if (status == IPW_STATE_SCANNING &&
2126 priv->status & STATUS_ASSOCIATED &&
2127 !(priv->status & STATUS_SCANNING)) {
2128 IPW_DEBUG_INFO("Scan detected while associated, with "
2129 "no scan request. Restarting firmware.\n");
2130
2131 /* Wake up any sleeping jobs */
2132 schedule_reset(priv);
2133 }
2134
2135 for (i = 0; status_handlers[i].status != -1; i++) {
2136 if (status == status_handlers[i].status) {
2137 IPW_DEBUG_NOTIF("Status change: %s\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05002138 status_handlers[i].name);
James Ketrenos2c86c272005-03-23 17:32:29 -06002139 if (status_handlers[i].cb)
2140 status_handlers[i].cb(priv, status);
2141 priv->wstats.status = status;
2142 return;
2143 }
2144 }
2145
2146 IPW_DEBUG_NOTIF("unknown status received: %04x\n", status);
2147}
2148
James Ketrenosee8e3652005-09-14 09:47:29 -05002149static void isr_rx_complete_command(struct ipw2100_priv *priv,
2150 struct ipw2100_cmd_header *cmd)
James Ketrenos2c86c272005-03-23 17:32:29 -06002151{
2152#ifdef CONFIG_IPW_DEBUG
2153 if (cmd->host_command_reg < ARRAY_SIZE(command_types)) {
2154 IPW_DEBUG_HC("Command completed '%s (%d)'\n",
2155 command_types[cmd->host_command_reg],
2156 cmd->host_command_reg);
2157 }
2158#endif
2159 if (cmd->host_command_reg == HOST_COMPLETE)
2160 priv->status |= STATUS_ENABLED;
2161
2162 if (cmd->host_command_reg == CARD_DISABLE)
2163 priv->status &= ~STATUS_ENABLED;
2164
2165 priv->status &= ~STATUS_CMD_ACTIVE;
2166
2167 wake_up_interruptible(&priv->wait_command_queue);
2168}
2169
2170#ifdef CONFIG_IPW_DEBUG
Jiri Bencc4aee8c2005-08-25 20:04:43 -04002171static const char *frame_types[] = {
James Ketrenos2c86c272005-03-23 17:32:29 -06002172 "COMMAND_STATUS_VAL",
2173 "STATUS_CHANGE_VAL",
2174 "P80211_DATA_VAL",
2175 "P8023_DATA_VAL",
2176 "HOST_NOTIFICATION_VAL"
2177};
2178#endif
2179
James Ketrenosee8e3652005-09-14 09:47:29 -05002180static inline int ipw2100_alloc_skb(struct ipw2100_priv *priv,
2181 struct ipw2100_rx_packet *packet)
James Ketrenos2c86c272005-03-23 17:32:29 -06002182{
2183 packet->skb = dev_alloc_skb(sizeof(struct ipw2100_rx));
2184 if (!packet->skb)
2185 return -ENOMEM;
2186
2187 packet->rxp = (struct ipw2100_rx *)packet->skb->data;
2188 packet->dma_addr = pci_map_single(priv->pci_dev, packet->skb->data,
2189 sizeof(struct ipw2100_rx),
2190 PCI_DMA_FROMDEVICE);
2191 /* NOTE: pci_map_single does not return an error code, and 0 is a valid
2192 * dma_addr */
2193
2194 return 0;
2195}
2196
James Ketrenos2c86c272005-03-23 17:32:29 -06002197#define SEARCH_ERROR 0xffffffff
2198#define SEARCH_FAIL 0xfffffffe
2199#define SEARCH_SUCCESS 0xfffffff0
2200#define SEARCH_DISCARD 0
2201#define SEARCH_SNAPSHOT 1
2202
2203#define SNAPSHOT_ADDR(ofs) (priv->snapshot[((ofs) >> 12) & 0xff] + ((ofs) & 0xfff))
2204static inline int ipw2100_snapshot_alloc(struct ipw2100_priv *priv)
2205{
2206 int i;
2207 if (priv->snapshot[0])
2208 return 1;
2209 for (i = 0; i < 0x30; i++) {
James Ketrenosee8e3652005-09-14 09:47:29 -05002210 priv->snapshot[i] = (u8 *) kmalloc(0x1000, GFP_ATOMIC);
James Ketrenos2c86c272005-03-23 17:32:29 -06002211 if (!priv->snapshot[i]) {
2212 IPW_DEBUG_INFO("%s: Error allocating snapshot "
James Ketrenosee8e3652005-09-14 09:47:29 -05002213 "buffer %d\n", priv->net_dev->name, i);
James Ketrenos2c86c272005-03-23 17:32:29 -06002214 while (i > 0)
2215 kfree(priv->snapshot[--i]);
2216 priv->snapshot[0] = NULL;
2217 return 0;
2218 }
2219 }
2220
2221 return 1;
2222}
2223
2224static inline void ipw2100_snapshot_free(struct ipw2100_priv *priv)
2225{
2226 int i;
2227 if (!priv->snapshot[0])
2228 return;
2229 for (i = 0; i < 0x30; i++)
2230 kfree(priv->snapshot[i]);
2231 priv->snapshot[0] = NULL;
2232}
2233
James Ketrenosee8e3652005-09-14 09:47:29 -05002234static inline u32 ipw2100_match_buf(struct ipw2100_priv *priv, u8 * in_buf,
James Ketrenos2c86c272005-03-23 17:32:29 -06002235 size_t len, int mode)
2236{
2237 u32 i, j;
2238 u32 tmp;
2239 u8 *s, *d;
2240 u32 ret;
2241
2242 s = in_buf;
2243 if (mode == SEARCH_SNAPSHOT) {
2244 if (!ipw2100_snapshot_alloc(priv))
2245 mode = SEARCH_DISCARD;
2246 }
2247
2248 for (ret = SEARCH_FAIL, i = 0; i < 0x30000; i += 4) {
2249 read_nic_dword(priv->net_dev, i, &tmp);
2250 if (mode == SEARCH_SNAPSHOT)
James Ketrenosee8e3652005-09-14 09:47:29 -05002251 *(u32 *) SNAPSHOT_ADDR(i) = tmp;
James Ketrenos2c86c272005-03-23 17:32:29 -06002252 if (ret == SEARCH_FAIL) {
James Ketrenosee8e3652005-09-14 09:47:29 -05002253 d = (u8 *) & tmp;
James Ketrenos2c86c272005-03-23 17:32:29 -06002254 for (j = 0; j < 4; j++) {
2255 if (*s != *d) {
2256 s = in_buf;
2257 continue;
2258 }
2259
2260 s++;
2261 d++;
2262
2263 if ((s - in_buf) == len)
2264 ret = (i + j) - len + 1;
2265 }
2266 } else if (mode == SEARCH_DISCARD)
2267 return ret;
2268 }
2269
2270 return ret;
2271}
2272
2273/*
2274 *
2275 * 0) Disconnect the SKB from the firmware (just unmap)
2276 * 1) Pack the ETH header into the SKB
2277 * 2) Pass the SKB to the network stack
2278 *
2279 * When packet is provided by the firmware, it contains the following:
2280 *
2281 * . ieee80211_hdr
2282 * . ieee80211_snap_hdr
2283 *
2284 * The size of the constructed ethernet
2285 *
2286 */
2287#ifdef CONFIG_IPW2100_RX_DEBUG
Jiri Bencc4aee8c2005-08-25 20:04:43 -04002288static u8 packet_data[IPW_RX_NIC_BUFFER_LENGTH];
James Ketrenos2c86c272005-03-23 17:32:29 -06002289#endif
2290
James Ketrenosee8e3652005-09-14 09:47:29 -05002291static inline void ipw2100_corruption_detected(struct ipw2100_priv *priv, int i)
James Ketrenos2c86c272005-03-23 17:32:29 -06002292{
2293#ifdef CONFIG_IPW_DEBUG_C3
2294 struct ipw2100_status *status = &priv->status_queue.drv[i];
2295 u32 match, reg;
2296 int j;
2297#endif
2298#ifdef ACPI_CSTATE_LIMIT_DEFINED
2299 int limit;
2300#endif
2301
Zhu Yia1e695a2005-07-04 14:06:00 +08002302 IPW_DEBUG_INFO(": PCI latency error detected at 0x%04zX.\n",
2303 i * sizeof(struct ipw2100_status));
James Ketrenos2c86c272005-03-23 17:32:29 -06002304
2305#ifdef ACPI_CSTATE_LIMIT_DEFINED
Zhu Yia1e695a2005-07-04 14:06:00 +08002306 IPW_DEBUG_INFO(": Disabling C3 transitions.\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06002307 limit = acpi_get_cstate_limit();
2308 if (limit > 2) {
2309 priv->cstate_limit = limit;
2310 acpi_set_cstate_limit(2);
2311 priv->config |= CFG_C3_DISABLED;
2312 }
2313#endif
2314
2315#ifdef CONFIG_IPW_DEBUG_C3
2316 /* Halt the fimrware so we can get a good image */
2317 write_register(priv->net_dev, IPW_REG_RESET_REG,
2318 IPW_AUX_HOST_RESET_REG_STOP_MASTER);
2319 j = 5;
2320 do {
2321 udelay(IPW_WAIT_RESET_MASTER_ASSERT_COMPLETE_DELAY);
2322 read_register(priv->net_dev, IPW_REG_RESET_REG, &reg);
2323
2324 if (reg & IPW_AUX_HOST_RESET_REG_MASTER_DISABLED)
2325 break;
James Ketrenosee8e3652005-09-14 09:47:29 -05002326 } while (j--);
James Ketrenos2c86c272005-03-23 17:32:29 -06002327
James Ketrenosee8e3652005-09-14 09:47:29 -05002328 match = ipw2100_match_buf(priv, (u8 *) status,
James Ketrenos2c86c272005-03-23 17:32:29 -06002329 sizeof(struct ipw2100_status),
2330 SEARCH_SNAPSHOT);
2331 if (match < SEARCH_SUCCESS)
2332 IPW_DEBUG_INFO("%s: DMA status match in Firmware at "
2333 "offset 0x%06X, length %d:\n",
2334 priv->net_dev->name, match,
2335 sizeof(struct ipw2100_status));
2336 else
2337 IPW_DEBUG_INFO("%s: No DMA status match in "
2338 "Firmware.\n", priv->net_dev->name);
2339
James Ketrenosee8e3652005-09-14 09:47:29 -05002340 printk_buf((u8 *) priv->status_queue.drv,
James Ketrenos2c86c272005-03-23 17:32:29 -06002341 sizeof(struct ipw2100_status) * RX_QUEUE_LENGTH);
2342#endif
2343
2344 priv->fatal_error = IPW2100_ERR_C3_CORRUPTION;
2345 priv->ieee->stats.rx_errors++;
2346 schedule_reset(priv);
2347}
2348
2349static inline void isr_rx(struct ipw2100_priv *priv, int i,
2350 struct ieee80211_rx_stats *stats)
2351{
2352 struct ipw2100_status *status = &priv->status_queue.drv[i];
2353 struct ipw2100_rx_packet *packet = &priv->rx_buffers[i];
2354
2355 IPW_DEBUG_RX("Handler...\n");
2356
2357 if (unlikely(status->frame_size > skb_tailroom(packet->skb))) {
2358 IPW_DEBUG_INFO("%s: frame_size (%u) > skb_tailroom (%u)!"
2359 " Dropping.\n",
2360 priv->net_dev->name,
2361 status->frame_size, skb_tailroom(packet->skb));
2362 priv->ieee->stats.rx_errors++;
2363 return;
2364 }
2365
2366 if (unlikely(!netif_running(priv->net_dev))) {
2367 priv->ieee->stats.rx_errors++;
2368 priv->wstats.discard.misc++;
2369 IPW_DEBUG_DROP("Dropping packet while interface is not up.\n");
2370 return;
2371 }
James Ketrenos82328352005-08-24 22:33:31 -05002372#ifdef CONFIG_IPW2100_MONITOR
James Ketrenos2c86c272005-03-23 17:32:29 -06002373 if (unlikely(priv->ieee->iw_mode == IW_MODE_MONITOR &&
James Ketrenos82328352005-08-24 22:33:31 -05002374 priv->config & CFG_CRC_CHECK &&
James Ketrenos2c86c272005-03-23 17:32:29 -06002375 status->flags & IPW_STATUS_FLAG_CRC_ERROR)) {
2376 IPW_DEBUG_RX("CRC error in packet. Dropping.\n");
2377 priv->ieee->stats.rx_errors++;
2378 return;
2379 }
James Ketrenos82328352005-08-24 22:33:31 -05002380#endif
James Ketrenos2c86c272005-03-23 17:32:29 -06002381
2382 if (unlikely(priv->ieee->iw_mode != IW_MODE_MONITOR &&
James Ketrenosee8e3652005-09-14 09:47:29 -05002383 !(priv->status & STATUS_ASSOCIATED))) {
James Ketrenos2c86c272005-03-23 17:32:29 -06002384 IPW_DEBUG_DROP("Dropping packet while not associated.\n");
2385 priv->wstats.discard.misc++;
2386 return;
2387 }
2388
James Ketrenos2c86c272005-03-23 17:32:29 -06002389 pci_unmap_single(priv->pci_dev,
2390 packet->dma_addr,
James Ketrenosee8e3652005-09-14 09:47:29 -05002391 sizeof(struct ipw2100_rx), PCI_DMA_FROMDEVICE);
James Ketrenos2c86c272005-03-23 17:32:29 -06002392
2393 skb_put(packet->skb, status->frame_size);
2394
2395#ifdef CONFIG_IPW2100_RX_DEBUG
2396 /* Make a copy of the frame so we can dump it to the logs if
2397 * ieee80211_rx fails */
2398 memcpy(packet_data, packet->skb->data,
Jiri Bencaaa4d302005-06-07 14:58:41 +02002399 min_t(u32, status->frame_size, IPW_RX_NIC_BUFFER_LENGTH));
James Ketrenos2c86c272005-03-23 17:32:29 -06002400#endif
2401
2402 if (!ieee80211_rx(priv->ieee, packet->skb, stats)) {
2403#ifdef CONFIG_IPW2100_RX_DEBUG
2404 IPW_DEBUG_DROP("%s: Non consumed packet:\n",
2405 priv->net_dev->name);
2406 printk_buf(IPW_DL_DROP, packet_data, status->frame_size);
2407#endif
2408 priv->ieee->stats.rx_errors++;
2409
2410 /* ieee80211_rx failed, so it didn't free the SKB */
2411 dev_kfree_skb_any(packet->skb);
2412 packet->skb = NULL;
2413 }
2414
2415 /* We need to allocate a new SKB and attach it to the RDB. */
2416 if (unlikely(ipw2100_alloc_skb(priv, packet))) {
Jiri Benc797b4f72005-08-25 20:03:27 -04002417 printk(KERN_WARNING DRV_NAME ": "
James Ketrenosee8e3652005-09-14 09:47:29 -05002418 "%s: Unable to allocate SKB onto RBD ring - disabling "
2419 "adapter.\n", priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06002420 /* TODO: schedule adapter shutdown */
2421 IPW_DEBUG_INFO("TODO: Shutdown adapter...\n");
2422 }
2423
2424 /* Update the RDB entry */
2425 priv->rx_queue.drv[i].host_addr = packet->dma_addr;
2426}
2427
2428static inline int ipw2100_corruption_check(struct ipw2100_priv *priv, int i)
2429{
2430 struct ipw2100_status *status = &priv->status_queue.drv[i];
2431 struct ipw2100_rx *u = priv->rx_buffers[i].rxp;
2432 u16 frame_type = status->status_fields & STATUS_TYPE_MASK;
2433
2434 switch (frame_type) {
2435 case COMMAND_STATUS_VAL:
2436 return (status->frame_size != sizeof(u->rx_data.command));
2437 case STATUS_CHANGE_VAL:
2438 return (status->frame_size != sizeof(u->rx_data.status));
2439 case HOST_NOTIFICATION_VAL:
2440 return (status->frame_size < sizeof(u->rx_data.notification));
2441 case P80211_DATA_VAL:
2442 case P8023_DATA_VAL:
2443#ifdef CONFIG_IPW2100_MONITOR
2444 return 0;
2445#else
2446 switch (WLAN_FC_GET_TYPE(u->rx_data.header.frame_ctl)) {
2447 case IEEE80211_FTYPE_MGMT:
2448 case IEEE80211_FTYPE_CTL:
2449 return 0;
2450 case IEEE80211_FTYPE_DATA:
2451 return (status->frame_size >
2452 IPW_MAX_802_11_PAYLOAD_LENGTH);
2453 }
2454#endif
2455 }
2456
2457 return 1;
2458}
2459
2460/*
2461 * ipw2100 interrupts are disabled at this point, and the ISR
2462 * is the only code that calls this method. So, we do not need
2463 * to play with any locks.
2464 *
2465 * RX Queue works as follows:
2466 *
2467 * Read index - firmware places packet in entry identified by the
2468 * Read index and advances Read index. In this manner,
2469 * Read index will always point to the next packet to
2470 * be filled--but not yet valid.
2471 *
2472 * Write index - driver fills this entry with an unused RBD entry.
2473 * This entry has not filled by the firmware yet.
2474 *
2475 * In between the W and R indexes are the RBDs that have been received
2476 * but not yet processed.
2477 *
2478 * The process of handling packets will start at WRITE + 1 and advance
2479 * until it reaches the READ index.
2480 *
2481 * The WRITE index is cached in the variable 'priv->rx_queue.next'.
2482 *
2483 */
2484static inline void __ipw2100_rx_process(struct ipw2100_priv *priv)
2485{
2486 struct ipw2100_bd_queue *rxq = &priv->rx_queue;
2487 struct ipw2100_status_queue *sq = &priv->status_queue;
2488 struct ipw2100_rx_packet *packet;
2489 u16 frame_type;
2490 u32 r, w, i, s;
2491 struct ipw2100_rx *u;
2492 struct ieee80211_rx_stats stats = {
2493 .mac_time = jiffies,
2494 };
2495
2496 read_register(priv->net_dev, IPW_MEM_HOST_SHARED_RX_READ_INDEX, &r);
2497 read_register(priv->net_dev, IPW_MEM_HOST_SHARED_RX_WRITE_INDEX, &w);
2498
2499 if (r >= rxq->entries) {
2500 IPW_DEBUG_RX("exit - bad read index\n");
2501 return;
2502 }
2503
2504 i = (rxq->next + 1) % rxq->entries;
2505 s = i;
2506 while (i != r) {
2507 /* IPW_DEBUG_RX("r = %d : w = %d : processing = %d\n",
2508 r, rxq->next, i); */
2509
2510 packet = &priv->rx_buffers[i];
2511
2512 /* Sync the DMA for the STATUS buffer so CPU is sure to get
2513 * the correct values */
James Ketrenosee8e3652005-09-14 09:47:29 -05002514 pci_dma_sync_single_for_cpu(priv->pci_dev,
2515 sq->nic +
2516 sizeof(struct ipw2100_status) * i,
2517 sizeof(struct ipw2100_status),
2518 PCI_DMA_FROMDEVICE);
James Ketrenos2c86c272005-03-23 17:32:29 -06002519
2520 /* Sync the DMA for the RX buffer so CPU is sure to get
2521 * the correct values */
2522 pci_dma_sync_single_for_cpu(priv->pci_dev, packet->dma_addr,
2523 sizeof(struct ipw2100_rx),
2524 PCI_DMA_FROMDEVICE);
2525
2526 if (unlikely(ipw2100_corruption_check(priv, i))) {
2527 ipw2100_corruption_detected(priv, i);
2528 goto increment;
2529 }
2530
2531 u = packet->rxp;
James Ketrenosee8e3652005-09-14 09:47:29 -05002532 frame_type = sq->drv[i].status_fields & STATUS_TYPE_MASK;
James Ketrenos2c86c272005-03-23 17:32:29 -06002533 stats.rssi = sq->drv[i].rssi + IPW2100_RSSI_TO_DBM;
2534 stats.len = sq->drv[i].frame_size;
2535
2536 stats.mask = 0;
2537 if (stats.rssi != 0)
2538 stats.mask |= IEEE80211_STATMASK_RSSI;
2539 stats.freq = IEEE80211_24GHZ_BAND;
2540
James Ketrenosee8e3652005-09-14 09:47:29 -05002541 IPW_DEBUG_RX("%s: '%s' frame type received (%d).\n",
2542 priv->net_dev->name, frame_types[frame_type],
2543 stats.len);
James Ketrenos2c86c272005-03-23 17:32:29 -06002544
2545 switch (frame_type) {
2546 case COMMAND_STATUS_VAL:
2547 /* Reset Rx watchdog */
James Ketrenosee8e3652005-09-14 09:47:29 -05002548 isr_rx_complete_command(priv, &u->rx_data.command);
James Ketrenos2c86c272005-03-23 17:32:29 -06002549 break;
2550
2551 case STATUS_CHANGE_VAL:
2552 isr_status_change(priv, u->rx_data.status);
2553 break;
2554
2555 case P80211_DATA_VAL:
2556 case P8023_DATA_VAL:
2557#ifdef CONFIG_IPW2100_MONITOR
2558 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
2559 isr_rx(priv, i, &stats);
2560 break;
2561 }
2562#endif
2563 if (stats.len < sizeof(u->rx_data.header))
2564 break;
James Ketrenosee8e3652005-09-14 09:47:29 -05002565 switch (WLAN_FC_GET_TYPE(u->rx_data.header.frame_ctl)) {
James Ketrenos2c86c272005-03-23 17:32:29 -06002566 case IEEE80211_FTYPE_MGMT:
2567 ieee80211_rx_mgt(priv->ieee,
James Ketrenosee8e3652005-09-14 09:47:29 -05002568 &u->rx_data.header, &stats);
James Ketrenos2c86c272005-03-23 17:32:29 -06002569 break;
2570
2571 case IEEE80211_FTYPE_CTL:
2572 break;
2573
2574 case IEEE80211_FTYPE_DATA:
2575 isr_rx(priv, i, &stats);
2576 break;
2577
2578 }
2579 break;
2580 }
2581
James Ketrenosee8e3652005-09-14 09:47:29 -05002582 increment:
James Ketrenos2c86c272005-03-23 17:32:29 -06002583 /* clear status field associated with this RBD */
2584 rxq->drv[i].status.info.field = 0;
2585
2586 i = (i + 1) % rxq->entries;
2587 }
2588
2589 if (i != s) {
2590 /* backtrack one entry, wrapping to end if at 0 */
2591 rxq->next = (i ? i : rxq->entries) - 1;
2592
2593 write_register(priv->net_dev,
James Ketrenosee8e3652005-09-14 09:47:29 -05002594 IPW_MEM_HOST_SHARED_RX_WRITE_INDEX, rxq->next);
James Ketrenos2c86c272005-03-23 17:32:29 -06002595 }
2596}
2597
James Ketrenos2c86c272005-03-23 17:32:29 -06002598/*
2599 * __ipw2100_tx_process
2600 *
2601 * This routine will determine whether the next packet on
2602 * the fw_pend_list has been processed by the firmware yet.
2603 *
2604 * If not, then it does nothing and returns.
2605 *
2606 * If so, then it removes the item from the fw_pend_list, frees
2607 * any associated storage, and places the item back on the
2608 * free list of its source (either msg_free_list or tx_free_list)
2609 *
2610 * TX Queue works as follows:
2611 *
2612 * Read index - points to the next TBD that the firmware will
2613 * process. The firmware will read the data, and once
2614 * done processing, it will advance the Read index.
2615 *
2616 * Write index - driver fills this entry with an constructed TBD
2617 * entry. The Write index is not advanced until the
2618 * packet has been configured.
2619 *
2620 * In between the W and R indexes are the TBDs that have NOT been
2621 * processed. Lagging behind the R index are packets that have
2622 * been processed but have not been freed by the driver.
2623 *
2624 * In order to free old storage, an internal index will be maintained
2625 * that points to the next packet to be freed. When all used
2626 * packets have been freed, the oldest index will be the same as the
2627 * firmware's read index.
2628 *
2629 * The OLDEST index is cached in the variable 'priv->tx_queue.oldest'
2630 *
2631 * Because the TBD structure can not contain arbitrary data, the
2632 * driver must keep an internal queue of cached allocations such that
2633 * it can put that data back into the tx_free_list and msg_free_list
2634 * for use by future command and data packets.
2635 *
2636 */
2637static inline int __ipw2100_tx_process(struct ipw2100_priv *priv)
2638{
2639 struct ipw2100_bd_queue *txq = &priv->tx_queue;
James Ketrenosee8e3652005-09-14 09:47:29 -05002640 struct ipw2100_bd *tbd;
James Ketrenos2c86c272005-03-23 17:32:29 -06002641 struct list_head *element;
2642 struct ipw2100_tx_packet *packet;
2643 int descriptors_used;
2644 int e, i;
2645 u32 r, w, frag_num = 0;
2646
2647 if (list_empty(&priv->fw_pend_list))
2648 return 0;
2649
2650 element = priv->fw_pend_list.next;
2651
2652 packet = list_entry(element, struct ipw2100_tx_packet, list);
James Ketrenosee8e3652005-09-14 09:47:29 -05002653 tbd = &txq->drv[packet->index];
James Ketrenos2c86c272005-03-23 17:32:29 -06002654
2655 /* Determine how many TBD entries must be finished... */
2656 switch (packet->type) {
2657 case COMMAND:
2658 /* COMMAND uses only one slot; don't advance */
2659 descriptors_used = 1;
2660 e = txq->oldest;
2661 break;
2662
2663 case DATA:
2664 /* DATA uses two slots; advance and loop position. */
2665 descriptors_used = tbd->num_fragments;
James Ketrenosee8e3652005-09-14 09:47:29 -05002666 frag_num = tbd->num_fragments - 1;
James Ketrenos2c86c272005-03-23 17:32:29 -06002667 e = txq->oldest + frag_num;
2668 e %= txq->entries;
2669 break;
2670
2671 default:
Jiri Benc797b4f72005-08-25 20:03:27 -04002672 printk(KERN_WARNING DRV_NAME ": %s: Bad fw_pend_list entry!\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05002673 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06002674 return 0;
2675 }
2676
2677 /* if the last TBD is not done by NIC yet, then packet is
2678 * not ready to be released.
2679 *
2680 */
2681 read_register(priv->net_dev, IPW_MEM_HOST_SHARED_TX_QUEUE_READ_INDEX,
2682 &r);
2683 read_register(priv->net_dev, IPW_MEM_HOST_SHARED_TX_QUEUE_WRITE_INDEX,
2684 &w);
2685 if (w != txq->next)
Jiri Benc797b4f72005-08-25 20:03:27 -04002686 printk(KERN_WARNING DRV_NAME ": %s: write index mismatch\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06002687 priv->net_dev->name);
2688
James Ketrenosee8e3652005-09-14 09:47:29 -05002689 /*
James Ketrenos2c86c272005-03-23 17:32:29 -06002690 * txq->next is the index of the last packet written txq->oldest is
2691 * the index of the r is the index of the next packet to be read by
2692 * firmware
2693 */
2694
James Ketrenos2c86c272005-03-23 17:32:29 -06002695 /*
2696 * Quick graphic to help you visualize the following
2697 * if / else statement
2698 *
2699 * ===>| s---->|===============
2700 * e>|
2701 * | a | b | c | d | e | f | g | h | i | j | k | l
2702 * r---->|
2703 * w
2704 *
2705 * w - updated by driver
2706 * r - updated by firmware
2707 * s - start of oldest BD entry (txq->oldest)
2708 * e - end of oldest BD entry
2709 *
2710 */
2711 if (!((r <= w && (e < r || e >= w)) || (e < r && e >= w))) {
2712 IPW_DEBUG_TX("exit - no processed packets ready to release.\n");
2713 return 0;
2714 }
2715
2716 list_del(element);
2717 DEC_STAT(&priv->fw_pend_stat);
2718
2719#ifdef CONFIG_IPW_DEBUG
2720 {
2721 int i = txq->oldest;
James Ketrenosee8e3652005-09-14 09:47:29 -05002722 IPW_DEBUG_TX("TX%d V=%p P=%04X T=%04X L=%d\n", i,
2723 &txq->drv[i],
2724 (u32) (txq->nic + i * sizeof(struct ipw2100_bd)),
2725 txq->drv[i].host_addr, txq->drv[i].buf_length);
James Ketrenos2c86c272005-03-23 17:32:29 -06002726
2727 if (packet->type == DATA) {
2728 i = (i + 1) % txq->entries;
2729
James Ketrenosee8e3652005-09-14 09:47:29 -05002730 IPW_DEBUG_TX("TX%d V=%p P=%04X T=%04X L=%d\n", i,
2731 &txq->drv[i],
2732 (u32) (txq->nic + i *
2733 sizeof(struct ipw2100_bd)),
2734 (u32) txq->drv[i].host_addr,
2735 txq->drv[i].buf_length);
James Ketrenos2c86c272005-03-23 17:32:29 -06002736 }
2737 }
2738#endif
2739
2740 switch (packet->type) {
2741 case DATA:
2742 if (txq->drv[txq->oldest].status.info.fields.txType != 0)
Jiri Benc797b4f72005-08-25 20:03:27 -04002743 printk(KERN_WARNING DRV_NAME ": %s: Queue mismatch. "
James Ketrenos2c86c272005-03-23 17:32:29 -06002744 "Expecting DATA TBD but pulled "
2745 "something else: ids %d=%d.\n",
2746 priv->net_dev->name, txq->oldest, packet->index);
2747
2748 /* DATA packet; we have to unmap and free the SKB */
James Ketrenos2c86c272005-03-23 17:32:29 -06002749 for (i = 0; i < frag_num; i++) {
James Ketrenosee8e3652005-09-14 09:47:29 -05002750 tbd = &txq->drv[(packet->index + 1 + i) % txq->entries];
James Ketrenos2c86c272005-03-23 17:32:29 -06002751
James Ketrenosee8e3652005-09-14 09:47:29 -05002752 IPW_DEBUG_TX("TX%d P=%08x L=%d\n",
2753 (packet->index + 1 + i) % txq->entries,
2754 tbd->host_addr, tbd->buf_length);
James Ketrenos2c86c272005-03-23 17:32:29 -06002755
2756 pci_unmap_single(priv->pci_dev,
2757 tbd->host_addr,
James Ketrenosee8e3652005-09-14 09:47:29 -05002758 tbd->buf_length, PCI_DMA_TODEVICE);
James Ketrenos2c86c272005-03-23 17:32:29 -06002759 }
2760
James Ketrenos2c86c272005-03-23 17:32:29 -06002761 ieee80211_txb_free(packet->info.d_struct.txb);
2762 packet->info.d_struct.txb = NULL;
2763
2764 list_add_tail(element, &priv->tx_free_list);
2765 INC_STAT(&priv->tx_free_stat);
2766
2767 /* We have a free slot in the Tx queue, so wake up the
2768 * transmit layer if it is stopped. */
James Ketrenos82328352005-08-24 22:33:31 -05002769 if (priv->status & STATUS_ASSOCIATED)
James Ketrenos2c86c272005-03-23 17:32:29 -06002770 netif_wake_queue(priv->net_dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06002771
2772 /* A packet was processed by the hardware, so update the
2773 * watchdog */
2774 priv->net_dev->trans_start = jiffies;
2775
2776 break;
2777
2778 case COMMAND:
2779 if (txq->drv[txq->oldest].status.info.fields.txType != 1)
Jiri Benc797b4f72005-08-25 20:03:27 -04002780 printk(KERN_WARNING DRV_NAME ": %s: Queue mismatch. "
James Ketrenos2c86c272005-03-23 17:32:29 -06002781 "Expecting COMMAND TBD but pulled "
2782 "something else: ids %d=%d.\n",
2783 priv->net_dev->name, txq->oldest, packet->index);
2784
2785#ifdef CONFIG_IPW_DEBUG
2786 if (packet->info.c_struct.cmd->host_command_reg <
2787 sizeof(command_types) / sizeof(*command_types))
James Ketrenosee8e3652005-09-14 09:47:29 -05002788 IPW_DEBUG_TX("Command '%s (%d)' processed: %d.\n",
2789 command_types[packet->info.c_struct.cmd->
2790 host_command_reg],
2791 packet->info.c_struct.cmd->
2792 host_command_reg,
2793 packet->info.c_struct.cmd->cmd_status_reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06002794#endif
2795
2796 list_add_tail(element, &priv->msg_free_list);
2797 INC_STAT(&priv->msg_free_stat);
2798 break;
2799 }
2800
2801 /* advance oldest used TBD pointer to start of next entry */
2802 txq->oldest = (e + 1) % txq->entries;
2803 /* increase available TBDs number */
2804 txq->available += descriptors_used;
2805 SET_STAT(&priv->txq_stat, txq->available);
2806
2807 IPW_DEBUG_TX("packet latency (send to process) %ld jiffies\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05002808 jiffies - packet->jiffy_start);
James Ketrenos2c86c272005-03-23 17:32:29 -06002809
2810 return (!list_empty(&priv->fw_pend_list));
2811}
2812
James Ketrenos2c86c272005-03-23 17:32:29 -06002813static inline void __ipw2100_tx_complete(struct ipw2100_priv *priv)
2814{
2815 int i = 0;
2816
James Ketrenosee8e3652005-09-14 09:47:29 -05002817 while (__ipw2100_tx_process(priv) && i < 200)
2818 i++;
James Ketrenos2c86c272005-03-23 17:32:29 -06002819
2820 if (i == 200) {
Jiri Benc19f7f742005-08-25 20:02:10 -04002821 printk(KERN_WARNING DRV_NAME ": "
James Ketrenos2c86c272005-03-23 17:32:29 -06002822 "%s: Driver is running slow (%d iters).\n",
2823 priv->net_dev->name, i);
2824 }
2825}
2826
Jiri Benc19f7f742005-08-25 20:02:10 -04002827static void ipw2100_tx_send_commands(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06002828{
2829 struct list_head *element;
2830 struct ipw2100_tx_packet *packet;
2831 struct ipw2100_bd_queue *txq = &priv->tx_queue;
2832 struct ipw2100_bd *tbd;
2833 int next = txq->next;
2834
2835 while (!list_empty(&priv->msg_pend_list)) {
2836 /* if there isn't enough space in TBD queue, then
2837 * don't stuff a new one in.
2838 * NOTE: 3 are needed as a command will take one,
2839 * and there is a minimum of 2 that must be
2840 * maintained between the r and w indexes
2841 */
2842 if (txq->available <= 3) {
2843 IPW_DEBUG_TX("no room in tx_queue\n");
2844 break;
2845 }
2846
2847 element = priv->msg_pend_list.next;
2848 list_del(element);
2849 DEC_STAT(&priv->msg_pend_stat);
2850
James Ketrenosee8e3652005-09-14 09:47:29 -05002851 packet = list_entry(element, struct ipw2100_tx_packet, list);
James Ketrenos2c86c272005-03-23 17:32:29 -06002852
2853 IPW_DEBUG_TX("using TBD at virt=%p, phys=%p\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05002854 &txq->drv[txq->next],
2855 (void *)(txq->nic + txq->next *
2856 sizeof(struct ipw2100_bd)));
James Ketrenos2c86c272005-03-23 17:32:29 -06002857
2858 packet->index = txq->next;
2859
2860 tbd = &txq->drv[txq->next];
2861
2862 /* initialize TBD */
2863 tbd->host_addr = packet->info.c_struct.cmd_phys;
2864 tbd->buf_length = sizeof(struct ipw2100_cmd_header);
2865 /* not marking number of fragments causes problems
2866 * with f/w debug version */
2867 tbd->num_fragments = 1;
2868 tbd->status.info.field =
James Ketrenosee8e3652005-09-14 09:47:29 -05002869 IPW_BD_STATUS_TX_FRAME_COMMAND |
2870 IPW_BD_STATUS_TX_INTERRUPT_ENABLE;
James Ketrenos2c86c272005-03-23 17:32:29 -06002871
2872 /* update TBD queue counters */
2873 txq->next++;
2874 txq->next %= txq->entries;
2875 txq->available--;
2876 DEC_STAT(&priv->txq_stat);
2877
2878 list_add_tail(element, &priv->fw_pend_list);
2879 INC_STAT(&priv->fw_pend_stat);
2880 }
2881
2882 if (txq->next != next) {
2883 /* kick off the DMA by notifying firmware the
2884 * write index has moved; make sure TBD stores are sync'd */
2885 wmb();
2886 write_register(priv->net_dev,
2887 IPW_MEM_HOST_SHARED_TX_QUEUE_WRITE_INDEX,
2888 txq->next);
2889 }
2890}
2891
James Ketrenos2c86c272005-03-23 17:32:29 -06002892/*
Jiri Benc19f7f742005-08-25 20:02:10 -04002893 * ipw2100_tx_send_data
James Ketrenos2c86c272005-03-23 17:32:29 -06002894 *
2895 */
Jiri Benc19f7f742005-08-25 20:02:10 -04002896static void ipw2100_tx_send_data(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06002897{
2898 struct list_head *element;
2899 struct ipw2100_tx_packet *packet;
2900 struct ipw2100_bd_queue *txq = &priv->tx_queue;
2901 struct ipw2100_bd *tbd;
2902 int next = txq->next;
James Ketrenosee8e3652005-09-14 09:47:29 -05002903 int i = 0;
James Ketrenos2c86c272005-03-23 17:32:29 -06002904 struct ipw2100_data_header *ipw_hdr;
James Ketrenos99a4b232005-09-21 12:23:25 -05002905 struct ieee80211_hdr_3addr *hdr;
James Ketrenos2c86c272005-03-23 17:32:29 -06002906
2907 while (!list_empty(&priv->tx_pend_list)) {
2908 /* if there isn't enough space in TBD queue, then
2909 * don't stuff a new one in.
2910 * NOTE: 4 are needed as a data will take two,
2911 * and there is a minimum of 2 that must be
2912 * maintained between the r and w indexes
2913 */
2914 element = priv->tx_pend_list.next;
James Ketrenosee8e3652005-09-14 09:47:29 -05002915 packet = list_entry(element, struct ipw2100_tx_packet, list);
James Ketrenos2c86c272005-03-23 17:32:29 -06002916
2917 if (unlikely(1 + packet->info.d_struct.txb->nr_frags >
2918 IPW_MAX_BDS)) {
2919 /* TODO: Support merging buffers if more than
2920 * IPW_MAX_BDS are used */
James Ketrenosee8e3652005-09-14 09:47:29 -05002921 IPW_DEBUG_INFO("%s: Maximum BD theshold exceeded. "
2922 "Increase fragmentation level.\n",
2923 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06002924 }
2925
James Ketrenosee8e3652005-09-14 09:47:29 -05002926 if (txq->available <= 3 + packet->info.d_struct.txb->nr_frags) {
James Ketrenos2c86c272005-03-23 17:32:29 -06002927 IPW_DEBUG_TX("no room in tx_queue\n");
2928 break;
2929 }
2930
2931 list_del(element);
2932 DEC_STAT(&priv->tx_pend_stat);
2933
2934 tbd = &txq->drv[txq->next];
2935
2936 packet->index = txq->next;
2937
2938 ipw_hdr = packet->info.d_struct.data;
James Ketrenos99a4b232005-09-21 12:23:25 -05002939 hdr = (struct ieee80211_hdr_3addr *)packet->info.d_struct.txb->
James Ketrenosee8e3652005-09-14 09:47:29 -05002940 fragments[0]->data;
James Ketrenos2c86c272005-03-23 17:32:29 -06002941
2942 if (priv->ieee->iw_mode == IW_MODE_INFRA) {
2943 /* To DS: Addr1 = BSSID, Addr2 = SA,
2944 Addr3 = DA */
2945 memcpy(ipw_hdr->src_addr, hdr->addr2, ETH_ALEN);
2946 memcpy(ipw_hdr->dst_addr, hdr->addr3, ETH_ALEN);
2947 } else if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
2948 /* not From/To DS: Addr1 = DA, Addr2 = SA,
2949 Addr3 = BSSID */
2950 memcpy(ipw_hdr->src_addr, hdr->addr2, ETH_ALEN);
2951 memcpy(ipw_hdr->dst_addr, hdr->addr1, ETH_ALEN);
2952 }
2953
2954 ipw_hdr->host_command_reg = SEND;
2955 ipw_hdr->host_command_reg1 = 0;
2956
2957 /* For now we only support host based encryption */
2958 ipw_hdr->needs_encryption = 0;
2959 ipw_hdr->encrypted = packet->info.d_struct.txb->encrypted;
2960 if (packet->info.d_struct.txb->nr_frags > 1)
2961 ipw_hdr->fragment_size =
James Ketrenosee8e3652005-09-14 09:47:29 -05002962 packet->info.d_struct.txb->frag_size -
2963 IEEE80211_3ADDR_LEN;
James Ketrenos2c86c272005-03-23 17:32:29 -06002964 else
2965 ipw_hdr->fragment_size = 0;
2966
2967 tbd->host_addr = packet->info.d_struct.data_phys;
2968 tbd->buf_length = sizeof(struct ipw2100_data_header);
2969 tbd->num_fragments = 1 + packet->info.d_struct.txb->nr_frags;
2970 tbd->status.info.field =
James Ketrenosee8e3652005-09-14 09:47:29 -05002971 IPW_BD_STATUS_TX_FRAME_802_3 |
2972 IPW_BD_STATUS_TX_FRAME_NOT_LAST_FRAGMENT;
James Ketrenos2c86c272005-03-23 17:32:29 -06002973 txq->next++;
2974 txq->next %= txq->entries;
2975
James Ketrenosee8e3652005-09-14 09:47:29 -05002976 IPW_DEBUG_TX("data header tbd TX%d P=%08x L=%d\n",
2977 packet->index, tbd->host_addr, tbd->buf_length);
James Ketrenos2c86c272005-03-23 17:32:29 -06002978#ifdef CONFIG_IPW_DEBUG
2979 if (packet->info.d_struct.txb->nr_frags > 1)
2980 IPW_DEBUG_FRAG("fragment Tx: %d frames\n",
2981 packet->info.d_struct.txb->nr_frags);
2982#endif
2983
James Ketrenosee8e3652005-09-14 09:47:29 -05002984 for (i = 0; i < packet->info.d_struct.txb->nr_frags; i++) {
2985 tbd = &txq->drv[txq->next];
James Ketrenos2c86c272005-03-23 17:32:29 -06002986 if (i == packet->info.d_struct.txb->nr_frags - 1)
2987 tbd->status.info.field =
James Ketrenosee8e3652005-09-14 09:47:29 -05002988 IPW_BD_STATUS_TX_FRAME_802_3 |
2989 IPW_BD_STATUS_TX_INTERRUPT_ENABLE;
James Ketrenos2c86c272005-03-23 17:32:29 -06002990 else
2991 tbd->status.info.field =
James Ketrenosee8e3652005-09-14 09:47:29 -05002992 IPW_BD_STATUS_TX_FRAME_802_3 |
2993 IPW_BD_STATUS_TX_FRAME_NOT_LAST_FRAGMENT;
James Ketrenos2c86c272005-03-23 17:32:29 -06002994
2995 tbd->buf_length = packet->info.d_struct.txb->
James Ketrenosee8e3652005-09-14 09:47:29 -05002996 fragments[i]->len - IEEE80211_3ADDR_LEN;
James Ketrenos2c86c272005-03-23 17:32:29 -06002997
James Ketrenosee8e3652005-09-14 09:47:29 -05002998 tbd->host_addr = pci_map_single(priv->pci_dev,
2999 packet->info.d_struct.
3000 txb->fragments[i]->
3001 data +
3002 IEEE80211_3ADDR_LEN,
3003 tbd->buf_length,
3004 PCI_DMA_TODEVICE);
James Ketrenos2c86c272005-03-23 17:32:29 -06003005
James Ketrenosee8e3652005-09-14 09:47:29 -05003006 IPW_DEBUG_TX("data frag tbd TX%d P=%08x L=%d\n",
3007 txq->next, tbd->host_addr,
3008 tbd->buf_length);
James Ketrenos2c86c272005-03-23 17:32:29 -06003009
James Ketrenosee8e3652005-09-14 09:47:29 -05003010 pci_dma_sync_single_for_device(priv->pci_dev,
3011 tbd->host_addr,
3012 tbd->buf_length,
3013 PCI_DMA_TODEVICE);
James Ketrenos2c86c272005-03-23 17:32:29 -06003014
3015 txq->next++;
3016 txq->next %= txq->entries;
James Ketrenosee8e3652005-09-14 09:47:29 -05003017 }
James Ketrenos2c86c272005-03-23 17:32:29 -06003018
3019 txq->available -= 1 + packet->info.d_struct.txb->nr_frags;
3020 SET_STAT(&priv->txq_stat, txq->available);
3021
3022 list_add_tail(element, &priv->fw_pend_list);
3023 INC_STAT(&priv->fw_pend_stat);
3024 }
3025
3026 if (txq->next != next) {
3027 /* kick off the DMA by notifying firmware the
3028 * write index has moved; make sure TBD stores are sync'd */
3029 write_register(priv->net_dev,
3030 IPW_MEM_HOST_SHARED_TX_QUEUE_WRITE_INDEX,
3031 txq->next);
3032 }
James Ketrenosee8e3652005-09-14 09:47:29 -05003033 return;
James Ketrenos2c86c272005-03-23 17:32:29 -06003034}
3035
3036static void ipw2100_irq_tasklet(struct ipw2100_priv *priv)
3037{
3038 struct net_device *dev = priv->net_dev;
3039 unsigned long flags;
3040 u32 inta, tmp;
3041
3042 spin_lock_irqsave(&priv->low_lock, flags);
3043 ipw2100_disable_interrupts(priv);
3044
3045 read_register(dev, IPW_REG_INTA, &inta);
3046
3047 IPW_DEBUG_ISR("enter - INTA: 0x%08lX\n",
3048 (unsigned long)inta & IPW_INTERRUPT_MASK);
3049
3050 priv->in_isr++;
3051 priv->interrupts++;
3052
3053 /* We do not loop and keep polling for more interrupts as this
3054 * is frowned upon and doesn't play nicely with other potentially
3055 * chained IRQs */
3056 IPW_DEBUG_ISR("INTA: 0x%08lX\n",
3057 (unsigned long)inta & IPW_INTERRUPT_MASK);
3058
3059 if (inta & IPW2100_INTA_FATAL_ERROR) {
Jiri Benc797b4f72005-08-25 20:03:27 -04003060 printk(KERN_WARNING DRV_NAME
James Ketrenosee8e3652005-09-14 09:47:29 -05003061 ": Fatal interrupt. Scheduling firmware restart.\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06003062 priv->inta_other++;
James Ketrenosee8e3652005-09-14 09:47:29 -05003063 write_register(dev, IPW_REG_INTA, IPW2100_INTA_FATAL_ERROR);
James Ketrenos2c86c272005-03-23 17:32:29 -06003064
3065 read_nic_dword(dev, IPW_NIC_FATAL_ERROR, &priv->fatal_error);
3066 IPW_DEBUG_INFO("%s: Fatal error value: 0x%08X\n",
3067 priv->net_dev->name, priv->fatal_error);
3068
3069 read_nic_dword(dev, IPW_ERROR_ADDR(priv->fatal_error), &tmp);
3070 IPW_DEBUG_INFO("%s: Fatal error address value: 0x%08X\n",
3071 priv->net_dev->name, tmp);
3072
3073 /* Wake up any sleeping jobs */
3074 schedule_reset(priv);
3075 }
3076
3077 if (inta & IPW2100_INTA_PARITY_ERROR) {
James Ketrenosee8e3652005-09-14 09:47:29 -05003078 printk(KERN_ERR DRV_NAME
3079 ": ***** PARITY ERROR INTERRUPT !!!! \n");
James Ketrenos2c86c272005-03-23 17:32:29 -06003080 priv->inta_other++;
James Ketrenosee8e3652005-09-14 09:47:29 -05003081 write_register(dev, IPW_REG_INTA, IPW2100_INTA_PARITY_ERROR);
James Ketrenos2c86c272005-03-23 17:32:29 -06003082 }
3083
3084 if (inta & IPW2100_INTA_RX_TRANSFER) {
3085 IPW_DEBUG_ISR("RX interrupt\n");
3086
3087 priv->rx_interrupts++;
3088
James Ketrenosee8e3652005-09-14 09:47:29 -05003089 write_register(dev, IPW_REG_INTA, IPW2100_INTA_RX_TRANSFER);
James Ketrenos2c86c272005-03-23 17:32:29 -06003090
3091 __ipw2100_rx_process(priv);
3092 __ipw2100_tx_complete(priv);
3093 }
3094
3095 if (inta & IPW2100_INTA_TX_TRANSFER) {
3096 IPW_DEBUG_ISR("TX interrupt\n");
3097
3098 priv->tx_interrupts++;
3099
James Ketrenosee8e3652005-09-14 09:47:29 -05003100 write_register(dev, IPW_REG_INTA, IPW2100_INTA_TX_TRANSFER);
James Ketrenos2c86c272005-03-23 17:32:29 -06003101
3102 __ipw2100_tx_complete(priv);
Jiri Benc19f7f742005-08-25 20:02:10 -04003103 ipw2100_tx_send_commands(priv);
3104 ipw2100_tx_send_data(priv);
James Ketrenos2c86c272005-03-23 17:32:29 -06003105 }
3106
3107 if (inta & IPW2100_INTA_TX_COMPLETE) {
3108 IPW_DEBUG_ISR("TX complete\n");
3109 priv->inta_other++;
James Ketrenosee8e3652005-09-14 09:47:29 -05003110 write_register(dev, IPW_REG_INTA, IPW2100_INTA_TX_COMPLETE);
James Ketrenos2c86c272005-03-23 17:32:29 -06003111
3112 __ipw2100_tx_complete(priv);
3113 }
3114
3115 if (inta & IPW2100_INTA_EVENT_INTERRUPT) {
3116 /* ipw2100_handle_event(dev); */
3117 priv->inta_other++;
James Ketrenosee8e3652005-09-14 09:47:29 -05003118 write_register(dev, IPW_REG_INTA, IPW2100_INTA_EVENT_INTERRUPT);
James Ketrenos2c86c272005-03-23 17:32:29 -06003119 }
3120
3121 if (inta & IPW2100_INTA_FW_INIT_DONE) {
3122 IPW_DEBUG_ISR("FW init done interrupt\n");
3123 priv->inta_other++;
3124
3125 read_register(dev, IPW_REG_INTA, &tmp);
3126 if (tmp & (IPW2100_INTA_FATAL_ERROR |
3127 IPW2100_INTA_PARITY_ERROR)) {
James Ketrenosee8e3652005-09-14 09:47:29 -05003128 write_register(dev, IPW_REG_INTA,
3129 IPW2100_INTA_FATAL_ERROR |
3130 IPW2100_INTA_PARITY_ERROR);
James Ketrenos2c86c272005-03-23 17:32:29 -06003131 }
3132
James Ketrenosee8e3652005-09-14 09:47:29 -05003133 write_register(dev, IPW_REG_INTA, IPW2100_INTA_FW_INIT_DONE);
James Ketrenos2c86c272005-03-23 17:32:29 -06003134 }
3135
3136 if (inta & IPW2100_INTA_STATUS_CHANGE) {
3137 IPW_DEBUG_ISR("Status change interrupt\n");
3138 priv->inta_other++;
James Ketrenosee8e3652005-09-14 09:47:29 -05003139 write_register(dev, IPW_REG_INTA, IPW2100_INTA_STATUS_CHANGE);
James Ketrenos2c86c272005-03-23 17:32:29 -06003140 }
3141
3142 if (inta & IPW2100_INTA_SLAVE_MODE_HOST_COMMAND_DONE) {
3143 IPW_DEBUG_ISR("slave host mode interrupt\n");
3144 priv->inta_other++;
James Ketrenosee8e3652005-09-14 09:47:29 -05003145 write_register(dev, IPW_REG_INTA,
3146 IPW2100_INTA_SLAVE_MODE_HOST_COMMAND_DONE);
James Ketrenos2c86c272005-03-23 17:32:29 -06003147 }
3148
3149 priv->in_isr--;
3150 ipw2100_enable_interrupts(priv);
3151
3152 spin_unlock_irqrestore(&priv->low_lock, flags);
3153
3154 IPW_DEBUG_ISR("exit\n");
3155}
3156
James Ketrenosee8e3652005-09-14 09:47:29 -05003157static irqreturn_t ipw2100_interrupt(int irq, void *data, struct pt_regs *regs)
James Ketrenos2c86c272005-03-23 17:32:29 -06003158{
3159 struct ipw2100_priv *priv = data;
3160 u32 inta, inta_mask;
3161
3162 if (!data)
3163 return IRQ_NONE;
3164
James Ketrenosee8e3652005-09-14 09:47:29 -05003165 spin_lock(&priv->low_lock);
James Ketrenos2c86c272005-03-23 17:32:29 -06003166
3167 /* We check to see if we should be ignoring interrupts before
3168 * we touch the hardware. During ucode load if we try and handle
3169 * an interrupt we can cause keyboard problems as well as cause
3170 * the ucode to fail to initialize */
3171 if (!(priv->status & STATUS_INT_ENABLED)) {
3172 /* Shared IRQ */
3173 goto none;
3174 }
3175
3176 read_register(priv->net_dev, IPW_REG_INTA_MASK, &inta_mask);
3177 read_register(priv->net_dev, IPW_REG_INTA, &inta);
3178
3179 if (inta == 0xFFFFFFFF) {
3180 /* Hardware disappeared */
Jiri Benc797b4f72005-08-25 20:03:27 -04003181 printk(KERN_WARNING DRV_NAME ": IRQ INTA == 0xFFFFFFFF\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06003182 goto none;
3183 }
3184
3185 inta &= IPW_INTERRUPT_MASK;
3186
3187 if (!(inta & inta_mask)) {
3188 /* Shared interrupt */
3189 goto none;
3190 }
3191
3192 /* We disable the hardware interrupt here just to prevent unneeded
3193 * calls to be made. We disable this again within the actual
3194 * work tasklet, so if another part of the code re-enables the
3195 * interrupt, that is fine */
3196 ipw2100_disable_interrupts(priv);
3197
3198 tasklet_schedule(&priv->irq_tasklet);
James Ketrenosee8e3652005-09-14 09:47:29 -05003199 spin_unlock(&priv->low_lock);
James Ketrenos2c86c272005-03-23 17:32:29 -06003200
3201 return IRQ_HANDLED;
James Ketrenosee8e3652005-09-14 09:47:29 -05003202 none:
James Ketrenos2c86c272005-03-23 17:32:29 -06003203 spin_unlock(&priv->low_lock);
3204 return IRQ_NONE;
3205}
3206
James Ketrenos3a5becf2005-09-21 12:23:37 -05003207static int ipw2100_tx(struct ieee80211_txb *txb, struct net_device *dev,
3208 int pri)
James Ketrenos2c86c272005-03-23 17:32:29 -06003209{
3210 struct ipw2100_priv *priv = ieee80211_priv(dev);
3211 struct list_head *element;
3212 struct ipw2100_tx_packet *packet;
3213 unsigned long flags;
3214
3215 spin_lock_irqsave(&priv->low_lock, flags);
3216
3217 if (!(priv->status & STATUS_ASSOCIATED)) {
3218 IPW_DEBUG_INFO("Can not transmit when not connected.\n");
3219 priv->ieee->stats.tx_carrier_errors++;
3220 netif_stop_queue(dev);
3221 goto fail_unlock;
3222 }
3223
3224 if (list_empty(&priv->tx_free_list))
3225 goto fail_unlock;
3226
3227 element = priv->tx_free_list.next;
3228 packet = list_entry(element, struct ipw2100_tx_packet, list);
3229
3230 packet->info.d_struct.txb = txb;
3231
James Ketrenosee8e3652005-09-14 09:47:29 -05003232 IPW_DEBUG_TX("Sending fragment (%d bytes):\n", txb->fragments[0]->len);
3233 printk_buf(IPW_DL_TX, txb->fragments[0]->data, txb->fragments[0]->len);
James Ketrenos2c86c272005-03-23 17:32:29 -06003234
3235 packet->jiffy_start = jiffies;
3236
3237 list_del(element);
3238 DEC_STAT(&priv->tx_free_stat);
3239
3240 list_add_tail(element, &priv->tx_pend_list);
3241 INC_STAT(&priv->tx_pend_stat);
3242
Jiri Benc19f7f742005-08-25 20:02:10 -04003243 ipw2100_tx_send_data(priv);
James Ketrenos2c86c272005-03-23 17:32:29 -06003244
3245 spin_unlock_irqrestore(&priv->low_lock, flags);
3246 return 0;
3247
James Ketrenosee8e3652005-09-14 09:47:29 -05003248 fail_unlock:
James Ketrenos2c86c272005-03-23 17:32:29 -06003249 netif_stop_queue(dev);
3250 spin_unlock_irqrestore(&priv->low_lock, flags);
3251 return 1;
3252}
3253
James Ketrenos2c86c272005-03-23 17:32:29 -06003254static int ipw2100_msg_allocate(struct ipw2100_priv *priv)
3255{
3256 int i, j, err = -EINVAL;
3257 void *v;
3258 dma_addr_t p;
3259
James Ketrenosee8e3652005-09-14 09:47:29 -05003260 priv->msg_buffers =
3261 (struct ipw2100_tx_packet *)kmalloc(IPW_COMMAND_POOL_SIZE *
3262 sizeof(struct
3263 ipw2100_tx_packet),
3264 GFP_KERNEL);
James Ketrenos2c86c272005-03-23 17:32:29 -06003265 if (!priv->msg_buffers) {
Jiri Benc797b4f72005-08-25 20:03:27 -04003266 printk(KERN_ERR DRV_NAME ": %s: PCI alloc failed for msg "
James Ketrenos2c86c272005-03-23 17:32:29 -06003267 "buffers.\n", priv->net_dev->name);
3268 return -ENOMEM;
3269 }
3270
3271 for (i = 0; i < IPW_COMMAND_POOL_SIZE; i++) {
James Ketrenosee8e3652005-09-14 09:47:29 -05003272 v = pci_alloc_consistent(priv->pci_dev,
3273 sizeof(struct ipw2100_cmd_header), &p);
James Ketrenos2c86c272005-03-23 17:32:29 -06003274 if (!v) {
Jiri Benc797b4f72005-08-25 20:03:27 -04003275 printk(KERN_ERR DRV_NAME ": "
James Ketrenos2c86c272005-03-23 17:32:29 -06003276 "%s: PCI alloc failed for msg "
James Ketrenosee8e3652005-09-14 09:47:29 -05003277 "buffers.\n", priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06003278 err = -ENOMEM;
3279 break;
3280 }
3281
3282 memset(v, 0, sizeof(struct ipw2100_cmd_header));
3283
3284 priv->msg_buffers[i].type = COMMAND;
3285 priv->msg_buffers[i].info.c_struct.cmd =
James Ketrenosee8e3652005-09-14 09:47:29 -05003286 (struct ipw2100_cmd_header *)v;
James Ketrenos2c86c272005-03-23 17:32:29 -06003287 priv->msg_buffers[i].info.c_struct.cmd_phys = p;
3288 }
3289
3290 if (i == IPW_COMMAND_POOL_SIZE)
3291 return 0;
3292
3293 for (j = 0; j < i; j++) {
James Ketrenosee8e3652005-09-14 09:47:29 -05003294 pci_free_consistent(priv->pci_dev,
3295 sizeof(struct ipw2100_cmd_header),
3296 priv->msg_buffers[j].info.c_struct.cmd,
3297 priv->msg_buffers[j].info.c_struct.
3298 cmd_phys);
James Ketrenos2c86c272005-03-23 17:32:29 -06003299 }
3300
3301 kfree(priv->msg_buffers);
3302 priv->msg_buffers = NULL;
3303
3304 return err;
3305}
3306
3307static int ipw2100_msg_initialize(struct ipw2100_priv *priv)
3308{
3309 int i;
3310
3311 INIT_LIST_HEAD(&priv->msg_free_list);
3312 INIT_LIST_HEAD(&priv->msg_pend_list);
3313
3314 for (i = 0; i < IPW_COMMAND_POOL_SIZE; i++)
3315 list_add_tail(&priv->msg_buffers[i].list, &priv->msg_free_list);
3316 SET_STAT(&priv->msg_free_stat, i);
3317
3318 return 0;
3319}
3320
3321static void ipw2100_msg_free(struct ipw2100_priv *priv)
3322{
3323 int i;
3324
3325 if (!priv->msg_buffers)
3326 return;
3327
3328 for (i = 0; i < IPW_COMMAND_POOL_SIZE; i++) {
3329 pci_free_consistent(priv->pci_dev,
3330 sizeof(struct ipw2100_cmd_header),
3331 priv->msg_buffers[i].info.c_struct.cmd,
James Ketrenosee8e3652005-09-14 09:47:29 -05003332 priv->msg_buffers[i].info.c_struct.
3333 cmd_phys);
James Ketrenos2c86c272005-03-23 17:32:29 -06003334 }
3335
3336 kfree(priv->msg_buffers);
3337 priv->msg_buffers = NULL;
3338}
3339
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003340static ssize_t show_pci(struct device *d, struct device_attribute *attr,
3341 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003342{
3343 struct pci_dev *pci_dev = container_of(d, struct pci_dev, dev);
3344 char *out = buf;
3345 int i, j;
3346 u32 val;
3347
3348 for (i = 0; i < 16; i++) {
3349 out += sprintf(out, "[%08X] ", i * 16);
3350 for (j = 0; j < 16; j += 4) {
3351 pci_read_config_dword(pci_dev, i * 16 + j, &val);
3352 out += sprintf(out, "%08X ", val);
3353 }
3354 out += sprintf(out, "\n");
3355 }
3356
3357 return out - buf;
3358}
James Ketrenosee8e3652005-09-14 09:47:29 -05003359
James Ketrenos2c86c272005-03-23 17:32:29 -06003360static DEVICE_ATTR(pci, S_IRUGO, show_pci, NULL);
3361
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003362static ssize_t show_cfg(struct device *d, struct device_attribute *attr,
3363 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003364{
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003365 struct ipw2100_priv *p = d->driver_data;
James Ketrenos2c86c272005-03-23 17:32:29 -06003366 return sprintf(buf, "0x%08x\n", (int)p->config);
3367}
James Ketrenosee8e3652005-09-14 09:47:29 -05003368
James Ketrenos2c86c272005-03-23 17:32:29 -06003369static DEVICE_ATTR(cfg, S_IRUGO, show_cfg, NULL);
3370
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003371static ssize_t show_status(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003372 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003373{
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003374 struct ipw2100_priv *p = d->driver_data;
James Ketrenos2c86c272005-03-23 17:32:29 -06003375 return sprintf(buf, "0x%08x\n", (int)p->status);
3376}
James Ketrenosee8e3652005-09-14 09:47:29 -05003377
James Ketrenos2c86c272005-03-23 17:32:29 -06003378static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
3379
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003380static ssize_t show_capability(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003381 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003382{
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003383 struct ipw2100_priv *p = d->driver_data;
James Ketrenos2c86c272005-03-23 17:32:29 -06003384 return sprintf(buf, "0x%08x\n", (int)p->capability);
3385}
James Ketrenos2c86c272005-03-23 17:32:29 -06003386
James Ketrenosee8e3652005-09-14 09:47:29 -05003387static DEVICE_ATTR(capability, S_IRUGO, show_capability, NULL);
James Ketrenos2c86c272005-03-23 17:32:29 -06003388
3389#define IPW2100_REG(x) { IPW_ ##x, #x }
Jiri Bencc4aee8c2005-08-25 20:04:43 -04003390static const struct {
James Ketrenos2c86c272005-03-23 17:32:29 -06003391 u32 addr;
3392 const char *name;
3393} hw_data[] = {
James Ketrenosee8e3652005-09-14 09:47:29 -05003394IPW2100_REG(REG_GP_CNTRL),
3395 IPW2100_REG(REG_GPIO),
3396 IPW2100_REG(REG_INTA),
3397 IPW2100_REG(REG_INTA_MASK), IPW2100_REG(REG_RESET_REG),};
James Ketrenos2c86c272005-03-23 17:32:29 -06003398#define IPW2100_NIC(x, s) { x, #x, s }
Jiri Bencc4aee8c2005-08-25 20:04:43 -04003399static const struct {
James Ketrenos2c86c272005-03-23 17:32:29 -06003400 u32 addr;
3401 const char *name;
3402 size_t size;
3403} nic_data[] = {
James Ketrenosee8e3652005-09-14 09:47:29 -05003404IPW2100_NIC(IPW2100_CONTROL_REG, 2),
3405 IPW2100_NIC(0x210014, 1), IPW2100_NIC(0x210000, 1),};
James Ketrenos2c86c272005-03-23 17:32:29 -06003406#define IPW2100_ORD(x, d) { IPW_ORD_ ##x, #x, d }
Jiri Bencc4aee8c2005-08-25 20:04:43 -04003407static const struct {
James Ketrenos2c86c272005-03-23 17:32:29 -06003408 u8 index;
3409 const char *name;
3410 const char *desc;
3411} ord_data[] = {
James Ketrenosee8e3652005-09-14 09:47:29 -05003412IPW2100_ORD(STAT_TX_HOST_REQUESTS, "requested Host Tx's (MSDU)"),
3413 IPW2100_ORD(STAT_TX_HOST_COMPLETE,
3414 "successful Host Tx's (MSDU)"),
3415 IPW2100_ORD(STAT_TX_DIR_DATA,
3416 "successful Directed Tx's (MSDU)"),
3417 IPW2100_ORD(STAT_TX_DIR_DATA1,
3418 "successful Directed Tx's (MSDU) @ 1MB"),
3419 IPW2100_ORD(STAT_TX_DIR_DATA2,
3420 "successful Directed Tx's (MSDU) @ 2MB"),
3421 IPW2100_ORD(STAT_TX_DIR_DATA5_5,
3422 "successful Directed Tx's (MSDU) @ 5_5MB"),
3423 IPW2100_ORD(STAT_TX_DIR_DATA11,
3424 "successful Directed Tx's (MSDU) @ 11MB"),
3425 IPW2100_ORD(STAT_TX_NODIR_DATA1,
3426 "successful Non_Directed Tx's (MSDU) @ 1MB"),
3427 IPW2100_ORD(STAT_TX_NODIR_DATA2,
3428 "successful Non_Directed Tx's (MSDU) @ 2MB"),
3429 IPW2100_ORD(STAT_TX_NODIR_DATA5_5,
3430 "successful Non_Directed Tx's (MSDU) @ 5.5MB"),
3431 IPW2100_ORD(STAT_TX_NODIR_DATA11,
3432 "successful Non_Directed Tx's (MSDU) @ 11MB"),
3433 IPW2100_ORD(STAT_NULL_DATA, "successful NULL data Tx's"),
3434 IPW2100_ORD(STAT_TX_RTS, "successful Tx RTS"),
3435 IPW2100_ORD(STAT_TX_CTS, "successful Tx CTS"),
3436 IPW2100_ORD(STAT_TX_ACK, "successful Tx ACK"),
3437 IPW2100_ORD(STAT_TX_ASSN, "successful Association Tx's"),
3438 IPW2100_ORD(STAT_TX_ASSN_RESP,
3439 "successful Association response Tx's"),
3440 IPW2100_ORD(STAT_TX_REASSN,
3441 "successful Reassociation Tx's"),
3442 IPW2100_ORD(STAT_TX_REASSN_RESP,
3443 "successful Reassociation response Tx's"),
3444 IPW2100_ORD(STAT_TX_PROBE,
3445 "probes successfully transmitted"),
3446 IPW2100_ORD(STAT_TX_PROBE_RESP,
3447 "probe responses successfully transmitted"),
3448 IPW2100_ORD(STAT_TX_BEACON, "tx beacon"),
3449 IPW2100_ORD(STAT_TX_ATIM, "Tx ATIM"),
3450 IPW2100_ORD(STAT_TX_DISASSN,
3451 "successful Disassociation TX"),
3452 IPW2100_ORD(STAT_TX_AUTH, "successful Authentication Tx"),
3453 IPW2100_ORD(STAT_TX_DEAUTH,
3454 "successful Deauthentication TX"),
3455 IPW2100_ORD(STAT_TX_TOTAL_BYTES,
3456 "Total successful Tx data bytes"),
3457 IPW2100_ORD(STAT_TX_RETRIES, "Tx retries"),
3458 IPW2100_ORD(STAT_TX_RETRY1, "Tx retries at 1MBPS"),
3459 IPW2100_ORD(STAT_TX_RETRY2, "Tx retries at 2MBPS"),
3460 IPW2100_ORD(STAT_TX_RETRY5_5, "Tx retries at 5.5MBPS"),
3461 IPW2100_ORD(STAT_TX_RETRY11, "Tx retries at 11MBPS"),
3462 IPW2100_ORD(STAT_TX_FAILURES, "Tx Failures"),
3463 IPW2100_ORD(STAT_TX_MAX_TRIES_IN_HOP,
3464 "times max tries in a hop failed"),
3465 IPW2100_ORD(STAT_TX_DISASSN_FAIL,
3466 "times disassociation failed"),
3467 IPW2100_ORD(STAT_TX_ERR_CTS, "missed/bad CTS frames"),
3468 IPW2100_ORD(STAT_TX_ERR_ACK, "tx err due to acks"),
3469 IPW2100_ORD(STAT_RX_HOST, "packets passed to host"),
3470 IPW2100_ORD(STAT_RX_DIR_DATA, "directed packets"),
3471 IPW2100_ORD(STAT_RX_DIR_DATA1, "directed packets at 1MB"),
3472 IPW2100_ORD(STAT_RX_DIR_DATA2, "directed packets at 2MB"),
3473 IPW2100_ORD(STAT_RX_DIR_DATA5_5,
3474 "directed packets at 5.5MB"),
3475 IPW2100_ORD(STAT_RX_DIR_DATA11, "directed packets at 11MB"),
3476 IPW2100_ORD(STAT_RX_NODIR_DATA, "nondirected packets"),
3477 IPW2100_ORD(STAT_RX_NODIR_DATA1,
3478 "nondirected packets at 1MB"),
3479 IPW2100_ORD(STAT_RX_NODIR_DATA2,
3480 "nondirected packets at 2MB"),
3481 IPW2100_ORD(STAT_RX_NODIR_DATA5_5,
3482 "nondirected packets at 5.5MB"),
3483 IPW2100_ORD(STAT_RX_NODIR_DATA11,
3484 "nondirected packets at 11MB"),
3485 IPW2100_ORD(STAT_RX_NULL_DATA, "null data rx's"),
3486 IPW2100_ORD(STAT_RX_RTS, "Rx RTS"), IPW2100_ORD(STAT_RX_CTS,
3487 "Rx CTS"),
3488 IPW2100_ORD(STAT_RX_ACK, "Rx ACK"),
3489 IPW2100_ORD(STAT_RX_CFEND, "Rx CF End"),
3490 IPW2100_ORD(STAT_RX_CFEND_ACK, "Rx CF End + CF Ack"),
3491 IPW2100_ORD(STAT_RX_ASSN, "Association Rx's"),
3492 IPW2100_ORD(STAT_RX_ASSN_RESP, "Association response Rx's"),
3493 IPW2100_ORD(STAT_RX_REASSN, "Reassociation Rx's"),
3494 IPW2100_ORD(STAT_RX_REASSN_RESP,
3495 "Reassociation response Rx's"),
3496 IPW2100_ORD(STAT_RX_PROBE, "probe Rx's"),
3497 IPW2100_ORD(STAT_RX_PROBE_RESP, "probe response Rx's"),
3498 IPW2100_ORD(STAT_RX_BEACON, "Rx beacon"),
3499 IPW2100_ORD(STAT_RX_ATIM, "Rx ATIM"),
3500 IPW2100_ORD(STAT_RX_DISASSN, "disassociation Rx"),
3501 IPW2100_ORD(STAT_RX_AUTH, "authentication Rx"),
3502 IPW2100_ORD(STAT_RX_DEAUTH, "deauthentication Rx"),
3503 IPW2100_ORD(STAT_RX_TOTAL_BYTES,
3504 "Total rx data bytes received"),
3505 IPW2100_ORD(STAT_RX_ERR_CRC, "packets with Rx CRC error"),
3506 IPW2100_ORD(STAT_RX_ERR_CRC1, "Rx CRC errors at 1MB"),
3507 IPW2100_ORD(STAT_RX_ERR_CRC2, "Rx CRC errors at 2MB"),
3508 IPW2100_ORD(STAT_RX_ERR_CRC5_5, "Rx CRC errors at 5.5MB"),
3509 IPW2100_ORD(STAT_RX_ERR_CRC11, "Rx CRC errors at 11MB"),
3510 IPW2100_ORD(STAT_RX_DUPLICATE1,
3511 "duplicate rx packets at 1MB"),
3512 IPW2100_ORD(STAT_RX_DUPLICATE2,
3513 "duplicate rx packets at 2MB"),
3514 IPW2100_ORD(STAT_RX_DUPLICATE5_5,
3515 "duplicate rx packets at 5.5MB"),
3516 IPW2100_ORD(STAT_RX_DUPLICATE11,
3517 "duplicate rx packets at 11MB"),
3518 IPW2100_ORD(STAT_RX_DUPLICATE, "duplicate rx packets"),
3519 IPW2100_ORD(PERS_DB_LOCK, "locking fw permanent db"),
3520 IPW2100_ORD(PERS_DB_SIZE, "size of fw permanent db"),
3521 IPW2100_ORD(PERS_DB_ADDR, "address of fw permanent db"),
3522 IPW2100_ORD(STAT_RX_INVALID_PROTOCOL,
3523 "rx frames with invalid protocol"),
3524 IPW2100_ORD(SYS_BOOT_TIME, "Boot time"),
3525 IPW2100_ORD(STAT_RX_NO_BUFFER,
3526 "rx frames rejected due to no buffer"),
3527 IPW2100_ORD(STAT_RX_MISSING_FRAG,
3528 "rx frames dropped due to missing fragment"),
3529 IPW2100_ORD(STAT_RX_ORPHAN_FRAG,
3530 "rx frames dropped due to non-sequential fragment"),
3531 IPW2100_ORD(STAT_RX_ORPHAN_FRAME,
3532 "rx frames dropped due to unmatched 1st frame"),
3533 IPW2100_ORD(STAT_RX_FRAG_AGEOUT,
3534 "rx frames dropped due to uncompleted frame"),
3535 IPW2100_ORD(STAT_RX_ICV_ERRORS,
3536 "ICV errors during decryption"),
3537 IPW2100_ORD(STAT_PSP_SUSPENSION, "times adapter suspended"),
3538 IPW2100_ORD(STAT_PSP_BCN_TIMEOUT, "beacon timeout"),
3539 IPW2100_ORD(STAT_PSP_POLL_TIMEOUT,
3540 "poll response timeouts"),
3541 IPW2100_ORD(STAT_PSP_NONDIR_TIMEOUT,
3542 "timeouts waiting for last {broad,multi}cast pkt"),
3543 IPW2100_ORD(STAT_PSP_RX_DTIMS, "PSP DTIMs received"),
3544 IPW2100_ORD(STAT_PSP_RX_TIMS, "PSP TIMs received"),
3545 IPW2100_ORD(STAT_PSP_STATION_ID, "PSP Station ID"),
3546 IPW2100_ORD(LAST_ASSN_TIME, "RTC time of last association"),
3547 IPW2100_ORD(STAT_PERCENT_MISSED_BCNS,
3548 "current calculation of % missed beacons"),
3549 IPW2100_ORD(STAT_PERCENT_RETRIES,
3550 "current calculation of % missed tx retries"),
3551 IPW2100_ORD(ASSOCIATED_AP_PTR,
3552 "0 if not associated, else pointer to AP table entry"),
3553 IPW2100_ORD(AVAILABLE_AP_CNT,
3554 "AP's decsribed in the AP table"),
3555 IPW2100_ORD(AP_LIST_PTR, "Ptr to list of available APs"),
3556 IPW2100_ORD(STAT_AP_ASSNS, "associations"),
3557 IPW2100_ORD(STAT_ASSN_FAIL, "association failures"),
3558 IPW2100_ORD(STAT_ASSN_RESP_FAIL,
3559 "failures due to response fail"),
3560 IPW2100_ORD(STAT_FULL_SCANS, "full scans"),
3561 IPW2100_ORD(CARD_DISABLED, "Card Disabled"),
3562 IPW2100_ORD(STAT_ROAM_INHIBIT,
3563 "times roaming was inhibited due to activity"),
3564 IPW2100_ORD(RSSI_AT_ASSN,
3565 "RSSI of associated AP at time of association"),
3566 IPW2100_ORD(STAT_ASSN_CAUSE1,
3567 "reassociation: no probe response or TX on hop"),
3568 IPW2100_ORD(STAT_ASSN_CAUSE2,
3569 "reassociation: poor tx/rx quality"),
3570 IPW2100_ORD(STAT_ASSN_CAUSE3,
3571 "reassociation: tx/rx quality (excessive AP load"),
3572 IPW2100_ORD(STAT_ASSN_CAUSE4,
3573 "reassociation: AP RSSI level"),
3574 IPW2100_ORD(STAT_ASSN_CAUSE5,
3575 "reassociations due to load leveling"),
3576 IPW2100_ORD(STAT_AUTH_FAIL, "times authentication failed"),
3577 IPW2100_ORD(STAT_AUTH_RESP_FAIL,
3578 "times authentication response failed"),
3579 IPW2100_ORD(STATION_TABLE_CNT,
3580 "entries in association table"),
3581 IPW2100_ORD(RSSI_AVG_CURR, "Current avg RSSI"),
3582 IPW2100_ORD(POWER_MGMT_MODE, "Power mode - 0=CAM, 1=PSP"),
3583 IPW2100_ORD(COUNTRY_CODE,
3584 "IEEE country code as recv'd from beacon"),
3585 IPW2100_ORD(COUNTRY_CHANNELS,
3586 "channels suported by country"),
3587 IPW2100_ORD(RESET_CNT, "adapter resets (warm)"),
3588 IPW2100_ORD(BEACON_INTERVAL, "Beacon interval"),
3589 IPW2100_ORD(ANTENNA_DIVERSITY,
3590 "TRUE if antenna diversity is disabled"),
3591 IPW2100_ORD(DTIM_PERIOD, "beacon intervals between DTIMs"),
3592 IPW2100_ORD(OUR_FREQ,
3593 "current radio freq lower digits - channel ID"),
3594 IPW2100_ORD(RTC_TIME, "current RTC time"),
3595 IPW2100_ORD(PORT_TYPE, "operating mode"),
3596 IPW2100_ORD(CURRENT_TX_RATE, "current tx rate"),
3597 IPW2100_ORD(SUPPORTED_RATES, "supported tx rates"),
3598 IPW2100_ORD(ATIM_WINDOW, "current ATIM Window"),
3599 IPW2100_ORD(BASIC_RATES, "basic tx rates"),
3600 IPW2100_ORD(NIC_HIGHEST_RATE, "NIC highest tx rate"),
3601 IPW2100_ORD(AP_HIGHEST_RATE, "AP highest tx rate"),
3602 IPW2100_ORD(CAPABILITIES,
3603 "Management frame capability field"),
3604 IPW2100_ORD(AUTH_TYPE, "Type of authentication"),
3605 IPW2100_ORD(RADIO_TYPE, "Adapter card platform type"),
3606 IPW2100_ORD(RTS_THRESHOLD,
3607 "Min packet length for RTS handshaking"),
3608 IPW2100_ORD(INT_MODE, "International mode"),
3609 IPW2100_ORD(FRAGMENTATION_THRESHOLD,
3610 "protocol frag threshold"),
3611 IPW2100_ORD(EEPROM_SRAM_DB_BLOCK_START_ADDRESS,
3612 "EEPROM offset in SRAM"),
3613 IPW2100_ORD(EEPROM_SRAM_DB_BLOCK_SIZE,
3614 "EEPROM size in SRAM"),
3615 IPW2100_ORD(EEPROM_SKU_CAPABILITY, "EEPROM SKU Capability"),
3616 IPW2100_ORD(EEPROM_IBSS_11B_CHANNELS,
3617 "EEPROM IBSS 11b channel set"),
3618 IPW2100_ORD(MAC_VERSION, "MAC Version"),
3619 IPW2100_ORD(MAC_REVISION, "MAC Revision"),
3620 IPW2100_ORD(RADIO_VERSION, "Radio Version"),
3621 IPW2100_ORD(NIC_MANF_DATE_TIME, "MANF Date/Time STAMP"),
3622 IPW2100_ORD(UCODE_VERSION, "Ucode Version"),};
James Ketrenos2c86c272005-03-23 17:32:29 -06003623
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003624static ssize_t show_registers(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003625 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003626{
3627 int i;
3628 struct ipw2100_priv *priv = dev_get_drvdata(d);
3629 struct net_device *dev = priv->net_dev;
James Ketrenosee8e3652005-09-14 09:47:29 -05003630 char *out = buf;
James Ketrenos2c86c272005-03-23 17:32:29 -06003631 u32 val = 0;
3632
3633 out += sprintf(out, "%30s [Address ] : Hex\n", "Register");
3634
3635 for (i = 0; i < (sizeof(hw_data) / sizeof(*hw_data)); i++) {
3636 read_register(dev, hw_data[i].addr, &val);
3637 out += sprintf(out, "%30s [%08X] : %08X\n",
3638 hw_data[i].name, hw_data[i].addr, val);
3639 }
3640
3641 return out - buf;
3642}
James Ketrenosee8e3652005-09-14 09:47:29 -05003643
James Ketrenos2c86c272005-03-23 17:32:29 -06003644static DEVICE_ATTR(registers, S_IRUGO, show_registers, NULL);
3645
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003646static ssize_t show_hardware(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003647 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003648{
3649 struct ipw2100_priv *priv = dev_get_drvdata(d);
3650 struct net_device *dev = priv->net_dev;
James Ketrenosee8e3652005-09-14 09:47:29 -05003651 char *out = buf;
James Ketrenos2c86c272005-03-23 17:32:29 -06003652 int i;
3653
3654 out += sprintf(out, "%30s [Address ] : Hex\n", "NIC entry");
3655
3656 for (i = 0; i < (sizeof(nic_data) / sizeof(*nic_data)); i++) {
3657 u8 tmp8;
3658 u16 tmp16;
3659 u32 tmp32;
3660
3661 switch (nic_data[i].size) {
3662 case 1:
3663 read_nic_byte(dev, nic_data[i].addr, &tmp8);
3664 out += sprintf(out, "%30s [%08X] : %02X\n",
3665 nic_data[i].name, nic_data[i].addr,
3666 tmp8);
3667 break;
3668 case 2:
3669 read_nic_word(dev, nic_data[i].addr, &tmp16);
3670 out += sprintf(out, "%30s [%08X] : %04X\n",
3671 nic_data[i].name, nic_data[i].addr,
3672 tmp16);
3673 break;
3674 case 4:
3675 read_nic_dword(dev, nic_data[i].addr, &tmp32);
3676 out += sprintf(out, "%30s [%08X] : %08X\n",
3677 nic_data[i].name, nic_data[i].addr,
3678 tmp32);
3679 break;
3680 }
3681 }
3682 return out - buf;
3683}
James Ketrenosee8e3652005-09-14 09:47:29 -05003684
James Ketrenos2c86c272005-03-23 17:32:29 -06003685static DEVICE_ATTR(hardware, S_IRUGO, show_hardware, NULL);
3686
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003687static ssize_t show_memory(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003688 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003689{
3690 struct ipw2100_priv *priv = dev_get_drvdata(d);
3691 struct net_device *dev = priv->net_dev;
3692 static unsigned long loop = 0;
3693 int len = 0;
3694 u32 buffer[4];
3695 int i;
3696 char line[81];
3697
3698 if (loop >= 0x30000)
3699 loop = 0;
3700
3701 /* sysfs provides us PAGE_SIZE buffer */
3702 while (len < PAGE_SIZE - 128 && loop < 0x30000) {
3703
James Ketrenosee8e3652005-09-14 09:47:29 -05003704 if (priv->snapshot[0])
3705 for (i = 0; i < 4; i++)
3706 buffer[i] =
3707 *(u32 *) SNAPSHOT_ADDR(loop + i * 4);
3708 else
3709 for (i = 0; i < 4; i++)
3710 read_nic_dword(dev, loop + i * 4, &buffer[i]);
James Ketrenos2c86c272005-03-23 17:32:29 -06003711
3712 if (priv->dump_raw)
3713 len += sprintf(buf + len,
3714 "%c%c%c%c"
3715 "%c%c%c%c"
3716 "%c%c%c%c"
3717 "%c%c%c%c",
James Ketrenosee8e3652005-09-14 09:47:29 -05003718 ((u8 *) buffer)[0x0],
3719 ((u8 *) buffer)[0x1],
3720 ((u8 *) buffer)[0x2],
3721 ((u8 *) buffer)[0x3],
3722 ((u8 *) buffer)[0x4],
3723 ((u8 *) buffer)[0x5],
3724 ((u8 *) buffer)[0x6],
3725 ((u8 *) buffer)[0x7],
3726 ((u8 *) buffer)[0x8],
3727 ((u8 *) buffer)[0x9],
3728 ((u8 *) buffer)[0xa],
3729 ((u8 *) buffer)[0xb],
3730 ((u8 *) buffer)[0xc],
3731 ((u8 *) buffer)[0xd],
3732 ((u8 *) buffer)[0xe],
3733 ((u8 *) buffer)[0xf]);
James Ketrenos2c86c272005-03-23 17:32:29 -06003734 else
3735 len += sprintf(buf + len, "%s\n",
3736 snprint_line(line, sizeof(line),
James Ketrenosee8e3652005-09-14 09:47:29 -05003737 (u8 *) buffer, 16, loop));
James Ketrenos2c86c272005-03-23 17:32:29 -06003738 loop += 16;
3739 }
3740
3741 return len;
3742}
3743
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003744static ssize_t store_memory(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003745 const char *buf, size_t count)
James Ketrenos2c86c272005-03-23 17:32:29 -06003746{
3747 struct ipw2100_priv *priv = dev_get_drvdata(d);
3748 struct net_device *dev = priv->net_dev;
3749 const char *p = buf;
3750
Jeff Garzikc2a8fad2005-11-09 00:49:38 -05003751 (void) dev; /* kill unused-var warning for debug-only code */
3752
James Ketrenos2c86c272005-03-23 17:32:29 -06003753 if (count < 1)
3754 return count;
3755
3756 if (p[0] == '1' ||
3757 (count >= 2 && tolower(p[0]) == 'o' && tolower(p[1]) == 'n')) {
3758 IPW_DEBUG_INFO("%s: Setting memory dump to RAW mode.\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05003759 dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06003760 priv->dump_raw = 1;
3761
3762 } else if (p[0] == '0' || (count >= 2 && tolower(p[0]) == 'o' &&
James Ketrenosee8e3652005-09-14 09:47:29 -05003763 tolower(p[1]) == 'f')) {
James Ketrenos2c86c272005-03-23 17:32:29 -06003764 IPW_DEBUG_INFO("%s: Setting memory dump to HEX mode.\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05003765 dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06003766 priv->dump_raw = 0;
3767
3768 } else if (tolower(p[0]) == 'r') {
James Ketrenosee8e3652005-09-14 09:47:29 -05003769 IPW_DEBUG_INFO("%s: Resetting firmware snapshot.\n", dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06003770 ipw2100_snapshot_free(priv);
3771
3772 } else
3773 IPW_DEBUG_INFO("%s: Usage: 0|on = HEX, 1|off = RAW, "
James Ketrenosee8e3652005-09-14 09:47:29 -05003774 "reset = clear memory snapshot\n", dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06003775
3776 return count;
3777}
James Ketrenos2c86c272005-03-23 17:32:29 -06003778
James Ketrenosee8e3652005-09-14 09:47:29 -05003779static DEVICE_ATTR(memory, S_IWUSR | S_IRUGO, show_memory, store_memory);
James Ketrenos2c86c272005-03-23 17:32:29 -06003780
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003781static ssize_t show_ordinals(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003782 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003783{
3784 struct ipw2100_priv *priv = dev_get_drvdata(d);
3785 u32 val = 0;
3786 int len = 0;
3787 u32 val_len;
3788 static int loop = 0;
3789
James Ketrenos82328352005-08-24 22:33:31 -05003790 if (priv->status & STATUS_RF_KILL_MASK)
3791 return 0;
3792
James Ketrenos2c86c272005-03-23 17:32:29 -06003793 if (loop >= sizeof(ord_data) / sizeof(*ord_data))
3794 loop = 0;
3795
3796 /* sysfs provides us PAGE_SIZE buffer */
3797 while (len < PAGE_SIZE - 128 &&
3798 loop < (sizeof(ord_data) / sizeof(*ord_data))) {
3799
3800 val_len = sizeof(u32);
3801
3802 if (ipw2100_get_ordinal(priv, ord_data[loop].index, &val,
3803 &val_len))
3804 len += sprintf(buf + len, "[0x%02X] = ERROR %s\n",
3805 ord_data[loop].index,
3806 ord_data[loop].desc);
3807 else
3808 len += sprintf(buf + len, "[0x%02X] = 0x%08X %s\n",
3809 ord_data[loop].index, val,
3810 ord_data[loop].desc);
3811 loop++;
3812 }
3813
3814 return len;
3815}
James Ketrenosee8e3652005-09-14 09:47:29 -05003816
James Ketrenos2c86c272005-03-23 17:32:29 -06003817static DEVICE_ATTR(ordinals, S_IRUGO, show_ordinals, NULL);
3818
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003819static ssize_t show_stats(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003820 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003821{
3822 struct ipw2100_priv *priv = dev_get_drvdata(d);
James Ketrenosee8e3652005-09-14 09:47:29 -05003823 char *out = buf;
James Ketrenos2c86c272005-03-23 17:32:29 -06003824
3825 out += sprintf(out, "interrupts: %d {tx: %d, rx: %d, other: %d}\n",
3826 priv->interrupts, priv->tx_interrupts,
3827 priv->rx_interrupts, priv->inta_other);
3828 out += sprintf(out, "firmware resets: %d\n", priv->resets);
3829 out += sprintf(out, "firmware hangs: %d\n", priv->hangs);
3830#ifdef CONFIG_IPW_DEBUG
3831 out += sprintf(out, "packet mismatch image: %s\n",
3832 priv->snapshot[0] ? "YES" : "NO");
3833#endif
3834
3835 return out - buf;
3836}
James Ketrenos2c86c272005-03-23 17:32:29 -06003837
James Ketrenosee8e3652005-09-14 09:47:29 -05003838static DEVICE_ATTR(stats, S_IRUGO, show_stats, NULL);
James Ketrenos2c86c272005-03-23 17:32:29 -06003839
Jiri Bencc4aee8c2005-08-25 20:04:43 -04003840static int ipw2100_switch_mode(struct ipw2100_priv *priv, u32 mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06003841{
3842 int err;
3843
3844 if (mode == priv->ieee->iw_mode)
3845 return 0;
3846
3847 err = ipw2100_disable_adapter(priv);
3848 if (err) {
Jiri Benc797b4f72005-08-25 20:03:27 -04003849 printk(KERN_ERR DRV_NAME ": %s: Could not disable adapter %d\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06003850 priv->net_dev->name, err);
3851 return err;
3852 }
3853
3854 switch (mode) {
3855 case IW_MODE_INFRA:
3856 priv->net_dev->type = ARPHRD_ETHER;
3857 break;
3858 case IW_MODE_ADHOC:
3859 priv->net_dev->type = ARPHRD_ETHER;
3860 break;
3861#ifdef CONFIG_IPW2100_MONITOR
3862 case IW_MODE_MONITOR:
3863 priv->last_mode = priv->ieee->iw_mode;
3864 priv->net_dev->type = ARPHRD_IEEE80211;
3865 break;
James Ketrenosee8e3652005-09-14 09:47:29 -05003866#endif /* CONFIG_IPW2100_MONITOR */
James Ketrenos2c86c272005-03-23 17:32:29 -06003867 }
3868
3869 priv->ieee->iw_mode = mode;
3870
3871#ifdef CONFIG_PM
James Ketrenosee8e3652005-09-14 09:47:29 -05003872 /* Indicate ipw2100_download_firmware download firmware
James Ketrenos2c86c272005-03-23 17:32:29 -06003873 * from disk instead of memory. */
3874 ipw2100_firmware.version = 0;
3875#endif
3876
James Ketrenosee8e3652005-09-14 09:47:29 -05003877 printk(KERN_INFO "%s: Reseting on mode change.\n", priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06003878 priv->reset_backoff = 0;
3879 schedule_reset(priv);
3880
3881 return 0;
3882}
3883
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003884static ssize_t show_internals(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003885 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003886{
3887 struct ipw2100_priv *priv = dev_get_drvdata(d);
3888 int len = 0;
3889
James Ketrenosee8e3652005-09-14 09:47:29 -05003890#define DUMP_VAR(x,y) len += sprintf(buf + len, # x ": %" y "\n", priv-> x)
James Ketrenos2c86c272005-03-23 17:32:29 -06003891
3892 if (priv->status & STATUS_ASSOCIATED)
3893 len += sprintf(buf + len, "connected: %lu\n",
3894 get_seconds() - priv->connect_start);
3895 else
3896 len += sprintf(buf + len, "not connected\n");
3897
James Ketrenosee8e3652005-09-14 09:47:29 -05003898 DUMP_VAR(ieee->crypt[priv->ieee->tx_keyidx], "p");
3899 DUMP_VAR(status, "08lx");
3900 DUMP_VAR(config, "08lx");
3901 DUMP_VAR(capability, "08lx");
James Ketrenos2c86c272005-03-23 17:32:29 -06003902
James Ketrenosee8e3652005-09-14 09:47:29 -05003903 len +=
3904 sprintf(buf + len, "last_rtc: %lu\n",
3905 (unsigned long)priv->last_rtc);
James Ketrenos2c86c272005-03-23 17:32:29 -06003906
James Ketrenosee8e3652005-09-14 09:47:29 -05003907 DUMP_VAR(fatal_error, "d");
3908 DUMP_VAR(stop_hang_check, "d");
3909 DUMP_VAR(stop_rf_kill, "d");
3910 DUMP_VAR(messages_sent, "d");
James Ketrenos2c86c272005-03-23 17:32:29 -06003911
James Ketrenosee8e3652005-09-14 09:47:29 -05003912 DUMP_VAR(tx_pend_stat.value, "d");
3913 DUMP_VAR(tx_pend_stat.hi, "d");
James Ketrenos2c86c272005-03-23 17:32:29 -06003914
James Ketrenosee8e3652005-09-14 09:47:29 -05003915 DUMP_VAR(tx_free_stat.value, "d");
3916 DUMP_VAR(tx_free_stat.lo, "d");
James Ketrenos2c86c272005-03-23 17:32:29 -06003917
James Ketrenosee8e3652005-09-14 09:47:29 -05003918 DUMP_VAR(msg_free_stat.value, "d");
3919 DUMP_VAR(msg_free_stat.lo, "d");
James Ketrenos2c86c272005-03-23 17:32:29 -06003920
James Ketrenosee8e3652005-09-14 09:47:29 -05003921 DUMP_VAR(msg_pend_stat.value, "d");
3922 DUMP_VAR(msg_pend_stat.hi, "d");
James Ketrenos2c86c272005-03-23 17:32:29 -06003923
James Ketrenosee8e3652005-09-14 09:47:29 -05003924 DUMP_VAR(fw_pend_stat.value, "d");
3925 DUMP_VAR(fw_pend_stat.hi, "d");
James Ketrenos2c86c272005-03-23 17:32:29 -06003926
James Ketrenosee8e3652005-09-14 09:47:29 -05003927 DUMP_VAR(txq_stat.value, "d");
3928 DUMP_VAR(txq_stat.lo, "d");
James Ketrenos2c86c272005-03-23 17:32:29 -06003929
James Ketrenosee8e3652005-09-14 09:47:29 -05003930 DUMP_VAR(ieee->scans, "d");
3931 DUMP_VAR(reset_backoff, "d");
James Ketrenos2c86c272005-03-23 17:32:29 -06003932
3933 return len;
3934}
James Ketrenosee8e3652005-09-14 09:47:29 -05003935
James Ketrenos2c86c272005-03-23 17:32:29 -06003936static DEVICE_ATTR(internals, S_IRUGO, show_internals, NULL);
3937
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003938static ssize_t show_bssinfo(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003939 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003940{
3941 struct ipw2100_priv *priv = dev_get_drvdata(d);
3942 char essid[IW_ESSID_MAX_SIZE + 1];
3943 u8 bssid[ETH_ALEN];
3944 u32 chan = 0;
James Ketrenosee8e3652005-09-14 09:47:29 -05003945 char *out = buf;
James Ketrenos2c86c272005-03-23 17:32:29 -06003946 int length;
3947 int ret;
3948
James Ketrenos82328352005-08-24 22:33:31 -05003949 if (priv->status & STATUS_RF_KILL_MASK)
3950 return 0;
3951
James Ketrenos2c86c272005-03-23 17:32:29 -06003952 memset(essid, 0, sizeof(essid));
3953 memset(bssid, 0, sizeof(bssid));
3954
3955 length = IW_ESSID_MAX_SIZE;
3956 ret = ipw2100_get_ordinal(priv, IPW_ORD_STAT_ASSN_SSID, essid, &length);
3957 if (ret)
3958 IPW_DEBUG_INFO("failed querying ordinals at line %d\n",
3959 __LINE__);
3960
3961 length = sizeof(bssid);
3962 ret = ipw2100_get_ordinal(priv, IPW_ORD_STAT_ASSN_AP_BSSID,
3963 bssid, &length);
3964 if (ret)
3965 IPW_DEBUG_INFO("failed querying ordinals at line %d\n",
3966 __LINE__);
3967
3968 length = sizeof(u32);
3969 ret = ipw2100_get_ordinal(priv, IPW_ORD_OUR_FREQ, &chan, &length);
3970 if (ret)
3971 IPW_DEBUG_INFO("failed querying ordinals at line %d\n",
3972 __LINE__);
3973
3974 out += sprintf(out, "ESSID: %s\n", essid);
3975 out += sprintf(out, "BSSID: %02x:%02x:%02x:%02x:%02x:%02x\n",
3976 bssid[0], bssid[1], bssid[2],
3977 bssid[3], bssid[4], bssid[5]);
3978 out += sprintf(out, "Channel: %d\n", chan);
3979
3980 return out - buf;
3981}
James Ketrenos2c86c272005-03-23 17:32:29 -06003982
James Ketrenosee8e3652005-09-14 09:47:29 -05003983static DEVICE_ATTR(bssinfo, S_IRUGO, show_bssinfo, NULL);
James Ketrenos2c86c272005-03-23 17:32:29 -06003984
James Ketrenos2c86c272005-03-23 17:32:29 -06003985#ifdef CONFIG_IPW_DEBUG
3986static ssize_t show_debug_level(struct device_driver *d, char *buf)
3987{
3988 return sprintf(buf, "0x%08X\n", ipw2100_debug_level);
3989}
3990
James Ketrenos82328352005-08-24 22:33:31 -05003991static ssize_t store_debug_level(struct device_driver *d,
3992 const char *buf, size_t count)
James Ketrenos2c86c272005-03-23 17:32:29 -06003993{
3994 char *p = (char *)buf;
3995 u32 val;
3996
3997 if (p[1] == 'x' || p[1] == 'X' || p[0] == 'x' || p[0] == 'X') {
3998 p++;
3999 if (p[0] == 'x' || p[0] == 'X')
4000 p++;
4001 val = simple_strtoul(p, &p, 16);
4002 } else
4003 val = simple_strtoul(p, &p, 10);
4004 if (p == buf)
Zhu Yia1e695a2005-07-04 14:06:00 +08004005 IPW_DEBUG_INFO(": %s is not in hex or decimal form.\n", buf);
James Ketrenos2c86c272005-03-23 17:32:29 -06004006 else
4007 ipw2100_debug_level = val;
4008
4009 return strnlen(buf, count);
4010}
James Ketrenosee8e3652005-09-14 09:47:29 -05004011
James Ketrenos2c86c272005-03-23 17:32:29 -06004012static DRIVER_ATTR(debug_level, S_IWUSR | S_IRUGO, show_debug_level,
4013 store_debug_level);
James Ketrenosee8e3652005-09-14 09:47:29 -05004014#endif /* CONFIG_IPW_DEBUG */
James Ketrenos2c86c272005-03-23 17:32:29 -06004015
Andrew Mortonedfc43f2005-06-20 14:30:35 -07004016static ssize_t show_fatal_error(struct device *d,
James Ketrenosee8e3652005-09-14 09:47:29 -05004017 struct device_attribute *attr, char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06004018{
4019 struct ipw2100_priv *priv = dev_get_drvdata(d);
4020 char *out = buf;
4021 int i;
4022
4023 if (priv->fatal_error)
James Ketrenosee8e3652005-09-14 09:47:29 -05004024 out += sprintf(out, "0x%08X\n", priv->fatal_error);
James Ketrenos2c86c272005-03-23 17:32:29 -06004025 else
4026 out += sprintf(out, "0\n");
4027
4028 for (i = 1; i <= IPW2100_ERROR_QUEUE; i++) {
4029 if (!priv->fatal_errors[(priv->fatal_index - i) %
4030 IPW2100_ERROR_QUEUE])
4031 continue;
4032
4033 out += sprintf(out, "%d. 0x%08X\n", i,
4034 priv->fatal_errors[(priv->fatal_index - i) %
4035 IPW2100_ERROR_QUEUE]);
4036 }
4037
4038 return out - buf;
4039}
4040
Andrew Mortonedfc43f2005-06-20 14:30:35 -07004041static ssize_t store_fatal_error(struct device *d,
James Ketrenosee8e3652005-09-14 09:47:29 -05004042 struct device_attribute *attr, const char *buf,
4043 size_t count)
James Ketrenos2c86c272005-03-23 17:32:29 -06004044{
4045 struct ipw2100_priv *priv = dev_get_drvdata(d);
4046 schedule_reset(priv);
4047 return count;
4048}
James Ketrenos2c86c272005-03-23 17:32:29 -06004049
James Ketrenosee8e3652005-09-14 09:47:29 -05004050static DEVICE_ATTR(fatal_error, S_IWUSR | S_IRUGO, show_fatal_error,
4051 store_fatal_error);
James Ketrenos2c86c272005-03-23 17:32:29 -06004052
Andrew Mortonedfc43f2005-06-20 14:30:35 -07004053static ssize_t show_scan_age(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05004054 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06004055{
4056 struct ipw2100_priv *priv = dev_get_drvdata(d);
4057 return sprintf(buf, "%d\n", priv->ieee->scan_age);
4058}
4059
Andrew Mortonedfc43f2005-06-20 14:30:35 -07004060static ssize_t store_scan_age(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05004061 const char *buf, size_t count)
James Ketrenos2c86c272005-03-23 17:32:29 -06004062{
4063 struct ipw2100_priv *priv = dev_get_drvdata(d);
4064 struct net_device *dev = priv->net_dev;
4065 char buffer[] = "00000000";
4066 unsigned long len =
4067 (sizeof(buffer) - 1) > count ? count : sizeof(buffer) - 1;
4068 unsigned long val;
4069 char *p = buffer;
4070
Jeff Garzikc2a8fad2005-11-09 00:49:38 -05004071 (void) dev; /* kill unused-var warning for debug-only code */
4072
James Ketrenos2c86c272005-03-23 17:32:29 -06004073 IPW_DEBUG_INFO("enter\n");
4074
4075 strncpy(buffer, buf, len);
4076 buffer[len] = 0;
4077
4078 if (p[1] == 'x' || p[1] == 'X' || p[0] == 'x' || p[0] == 'X') {
4079 p++;
4080 if (p[0] == 'x' || p[0] == 'X')
4081 p++;
4082 val = simple_strtoul(p, &p, 16);
4083 } else
4084 val = simple_strtoul(p, &p, 10);
4085 if (p == buffer) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004086 IPW_DEBUG_INFO("%s: user supplied invalid value.\n", dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06004087 } else {
4088 priv->ieee->scan_age = val;
4089 IPW_DEBUG_INFO("set scan_age = %u\n", priv->ieee->scan_age);
4090 }
4091
4092 IPW_DEBUG_INFO("exit\n");
4093 return len;
4094}
James Ketrenosee8e3652005-09-14 09:47:29 -05004095
James Ketrenos2c86c272005-03-23 17:32:29 -06004096static DEVICE_ATTR(scan_age, S_IWUSR | S_IRUGO, show_scan_age, store_scan_age);
4097
Andrew Mortonedfc43f2005-06-20 14:30:35 -07004098static ssize_t show_rf_kill(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05004099 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06004100{
4101 /* 0 - RF kill not enabled
4102 1 - SW based RF kill active (sysfs)
4103 2 - HW based RF kill active
4104 3 - Both HW and SW baed RF kill active */
4105 struct ipw2100_priv *priv = (struct ipw2100_priv *)d->driver_data;
4106 int val = ((priv->status & STATUS_RF_KILL_SW) ? 0x1 : 0x0) |
James Ketrenosee8e3652005-09-14 09:47:29 -05004107 (rf_kill_active(priv) ? 0x2 : 0x0);
James Ketrenos2c86c272005-03-23 17:32:29 -06004108 return sprintf(buf, "%i\n", val);
4109}
4110
4111static int ipw_radio_kill_sw(struct ipw2100_priv *priv, int disable_radio)
4112{
4113 if ((disable_radio ? 1 : 0) ==
4114 (priv->status & STATUS_RF_KILL_SW ? 1 : 0))
James Ketrenosee8e3652005-09-14 09:47:29 -05004115 return 0;
James Ketrenos2c86c272005-03-23 17:32:29 -06004116
4117 IPW_DEBUG_RF_KILL("Manual SW RF Kill set to: RADIO %s\n",
4118 disable_radio ? "OFF" : "ON");
4119
4120 down(&priv->action_sem);
4121
4122 if (disable_radio) {
4123 priv->status |= STATUS_RF_KILL_SW;
4124 ipw2100_down(priv);
4125 } else {
4126 priv->status &= ~STATUS_RF_KILL_SW;
4127 if (rf_kill_active(priv)) {
4128 IPW_DEBUG_RF_KILL("Can not turn radio back on - "
4129 "disabled by HW switch\n");
4130 /* Make sure the RF_KILL check timer is running */
4131 priv->stop_rf_kill = 0;
4132 cancel_delayed_work(&priv->rf_kill);
James Ketrenosee8e3652005-09-14 09:47:29 -05004133 queue_delayed_work(priv->workqueue, &priv->rf_kill, HZ);
James Ketrenos2c86c272005-03-23 17:32:29 -06004134 } else
4135 schedule_reset(priv);
4136 }
4137
4138 up(&priv->action_sem);
4139 return 1;
4140}
4141
Andrew Mortonedfc43f2005-06-20 14:30:35 -07004142static ssize_t store_rf_kill(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05004143 const char *buf, size_t count)
James Ketrenos2c86c272005-03-23 17:32:29 -06004144{
4145 struct ipw2100_priv *priv = dev_get_drvdata(d);
4146 ipw_radio_kill_sw(priv, buf[0] == '1');
4147 return count;
4148}
James Ketrenos2c86c272005-03-23 17:32:29 -06004149
James Ketrenosee8e3652005-09-14 09:47:29 -05004150static DEVICE_ATTR(rf_kill, S_IWUSR | S_IRUGO, show_rf_kill, store_rf_kill);
James Ketrenos2c86c272005-03-23 17:32:29 -06004151
4152static struct attribute *ipw2100_sysfs_entries[] = {
4153 &dev_attr_hardware.attr,
4154 &dev_attr_registers.attr,
4155 &dev_attr_ordinals.attr,
4156 &dev_attr_pci.attr,
4157 &dev_attr_stats.attr,
4158 &dev_attr_internals.attr,
4159 &dev_attr_bssinfo.attr,
4160 &dev_attr_memory.attr,
4161 &dev_attr_scan_age.attr,
4162 &dev_attr_fatal_error.attr,
4163 &dev_attr_rf_kill.attr,
4164 &dev_attr_cfg.attr,
4165 &dev_attr_status.attr,
4166 &dev_attr_capability.attr,
4167 NULL,
4168};
4169
4170static struct attribute_group ipw2100_attribute_group = {
4171 .attrs = ipw2100_sysfs_entries,
4172};
4173
James Ketrenos2c86c272005-03-23 17:32:29 -06004174static int status_queue_allocate(struct ipw2100_priv *priv, int entries)
4175{
4176 struct ipw2100_status_queue *q = &priv->status_queue;
4177
4178 IPW_DEBUG_INFO("enter\n");
4179
4180 q->size = entries * sizeof(struct ipw2100_status);
James Ketrenosee8e3652005-09-14 09:47:29 -05004181 q->drv =
4182 (struct ipw2100_status *)pci_alloc_consistent(priv->pci_dev,
4183 q->size, &q->nic);
James Ketrenos2c86c272005-03-23 17:32:29 -06004184 if (!q->drv) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004185 IPW_DEBUG_WARNING("Can not allocate status queue.\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06004186 return -ENOMEM;
4187 }
4188
4189 memset(q->drv, 0, q->size);
4190
4191 IPW_DEBUG_INFO("exit\n");
4192
4193 return 0;
4194}
4195
4196static void status_queue_free(struct ipw2100_priv *priv)
4197{
4198 IPW_DEBUG_INFO("enter\n");
4199
4200 if (priv->status_queue.drv) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004201 pci_free_consistent(priv->pci_dev, priv->status_queue.size,
4202 priv->status_queue.drv,
4203 priv->status_queue.nic);
James Ketrenos2c86c272005-03-23 17:32:29 -06004204 priv->status_queue.drv = NULL;
4205 }
4206
4207 IPW_DEBUG_INFO("exit\n");
4208}
4209
4210static int bd_queue_allocate(struct ipw2100_priv *priv,
4211 struct ipw2100_bd_queue *q, int entries)
4212{
4213 IPW_DEBUG_INFO("enter\n");
4214
4215 memset(q, 0, sizeof(struct ipw2100_bd_queue));
4216
4217 q->entries = entries;
4218 q->size = entries * sizeof(struct ipw2100_bd);
4219 q->drv = pci_alloc_consistent(priv->pci_dev, q->size, &q->nic);
4220 if (!q->drv) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004221 IPW_DEBUG_INFO
4222 ("can't allocate shared memory for buffer descriptors\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06004223 return -ENOMEM;
4224 }
4225 memset(q->drv, 0, q->size);
4226
4227 IPW_DEBUG_INFO("exit\n");
4228
4229 return 0;
4230}
4231
James Ketrenosee8e3652005-09-14 09:47:29 -05004232static void bd_queue_free(struct ipw2100_priv *priv, struct ipw2100_bd_queue *q)
James Ketrenos2c86c272005-03-23 17:32:29 -06004233{
4234 IPW_DEBUG_INFO("enter\n");
4235
4236 if (!q)
4237 return;
4238
4239 if (q->drv) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004240 pci_free_consistent(priv->pci_dev, q->size, q->drv, q->nic);
James Ketrenos2c86c272005-03-23 17:32:29 -06004241 q->drv = NULL;
4242 }
4243
4244 IPW_DEBUG_INFO("exit\n");
4245}
4246
James Ketrenosee8e3652005-09-14 09:47:29 -05004247static void bd_queue_initialize(struct ipw2100_priv *priv,
4248 struct ipw2100_bd_queue *q, u32 base, u32 size,
4249 u32 r, u32 w)
James Ketrenos2c86c272005-03-23 17:32:29 -06004250{
4251 IPW_DEBUG_INFO("enter\n");
4252
James Ketrenosee8e3652005-09-14 09:47:29 -05004253 IPW_DEBUG_INFO("initializing bd queue at virt=%p, phys=%08x\n", q->drv,
4254 (u32) q->nic);
James Ketrenos2c86c272005-03-23 17:32:29 -06004255
4256 write_register(priv->net_dev, base, q->nic);
4257 write_register(priv->net_dev, size, q->entries);
4258 write_register(priv->net_dev, r, q->oldest);
4259 write_register(priv->net_dev, w, q->next);
4260
4261 IPW_DEBUG_INFO("exit\n");
4262}
4263
4264static void ipw2100_kill_workqueue(struct ipw2100_priv *priv)
4265{
4266 if (priv->workqueue) {
4267 priv->stop_rf_kill = 1;
4268 priv->stop_hang_check = 1;
4269 cancel_delayed_work(&priv->reset_work);
4270 cancel_delayed_work(&priv->security_work);
4271 cancel_delayed_work(&priv->wx_event_work);
4272 cancel_delayed_work(&priv->hang_check);
4273 cancel_delayed_work(&priv->rf_kill);
4274 destroy_workqueue(priv->workqueue);
4275 priv->workqueue = NULL;
4276 }
4277}
4278
4279static int ipw2100_tx_allocate(struct ipw2100_priv *priv)
4280{
4281 int i, j, err = -EINVAL;
4282 void *v;
4283 dma_addr_t p;
4284
4285 IPW_DEBUG_INFO("enter\n");
4286
4287 err = bd_queue_allocate(priv, &priv->tx_queue, TX_QUEUE_LENGTH);
4288 if (err) {
4289 IPW_DEBUG_ERROR("%s: failed bd_queue_allocate\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05004290 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06004291 return err;
4292 }
4293
James Ketrenosee8e3652005-09-14 09:47:29 -05004294 priv->tx_buffers =
4295 (struct ipw2100_tx_packet *)kmalloc(TX_PENDED_QUEUE_LENGTH *
4296 sizeof(struct
4297 ipw2100_tx_packet),
4298 GFP_ATOMIC);
James Ketrenos2c86c272005-03-23 17:32:29 -06004299 if (!priv->tx_buffers) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004300 printk(KERN_ERR DRV_NAME
4301 ": %s: alloc failed form tx buffers.\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06004302 priv->net_dev->name);
4303 bd_queue_free(priv, &priv->tx_queue);
4304 return -ENOMEM;
4305 }
4306
4307 for (i = 0; i < TX_PENDED_QUEUE_LENGTH; i++) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004308 v = pci_alloc_consistent(priv->pci_dev,
4309 sizeof(struct ipw2100_data_header),
4310 &p);
James Ketrenos2c86c272005-03-23 17:32:29 -06004311 if (!v) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004312 printk(KERN_ERR DRV_NAME
4313 ": %s: PCI alloc failed for tx " "buffers.\n",
4314 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06004315 err = -ENOMEM;
4316 break;
4317 }
4318
4319 priv->tx_buffers[i].type = DATA;
James Ketrenosee8e3652005-09-14 09:47:29 -05004320 priv->tx_buffers[i].info.d_struct.data =
4321 (struct ipw2100_data_header *)v;
James Ketrenos2c86c272005-03-23 17:32:29 -06004322 priv->tx_buffers[i].info.d_struct.data_phys = p;
4323 priv->tx_buffers[i].info.d_struct.txb = NULL;
4324 }
4325
4326 if (i == TX_PENDED_QUEUE_LENGTH)
4327 return 0;
4328
4329 for (j = 0; j < i; j++) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004330 pci_free_consistent(priv->pci_dev,
4331 sizeof(struct ipw2100_data_header),
4332 priv->tx_buffers[j].info.d_struct.data,
4333 priv->tx_buffers[j].info.d_struct.
4334 data_phys);
James Ketrenos2c86c272005-03-23 17:32:29 -06004335 }
4336
4337 kfree(priv->tx_buffers);
4338 priv->tx_buffers = NULL;
4339
4340 return err;
4341}
4342
4343static void ipw2100_tx_initialize(struct ipw2100_priv *priv)
4344{
4345 int i;
4346
4347 IPW_DEBUG_INFO("enter\n");
4348
4349 /*
4350 * reinitialize packet info lists
4351 */
4352 INIT_LIST_HEAD(&priv->fw_pend_list);
4353 INIT_STAT(&priv->fw_pend_stat);
4354
4355 /*
4356 * reinitialize lists
4357 */
4358 INIT_LIST_HEAD(&priv->tx_pend_list);
4359 INIT_LIST_HEAD(&priv->tx_free_list);
4360 INIT_STAT(&priv->tx_pend_stat);
4361 INIT_STAT(&priv->tx_free_stat);
4362
4363 for (i = 0; i < TX_PENDED_QUEUE_LENGTH; i++) {
4364 /* We simply drop any SKBs that have been queued for
4365 * transmit */
4366 if (priv->tx_buffers[i].info.d_struct.txb) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004367 ieee80211_txb_free(priv->tx_buffers[i].info.d_struct.
4368 txb);
James Ketrenos2c86c272005-03-23 17:32:29 -06004369 priv->tx_buffers[i].info.d_struct.txb = NULL;
4370 }
4371
4372 list_add_tail(&priv->tx_buffers[i].list, &priv->tx_free_list);
4373 }
4374
4375 SET_STAT(&priv->tx_free_stat, i);
4376
4377 priv->tx_queue.oldest = 0;
4378 priv->tx_queue.available = priv->tx_queue.entries;
4379 priv->tx_queue.next = 0;
4380 INIT_STAT(&priv->txq_stat);
4381 SET_STAT(&priv->txq_stat, priv->tx_queue.available);
4382
4383 bd_queue_initialize(priv, &priv->tx_queue,
4384 IPW_MEM_HOST_SHARED_TX_QUEUE_BD_BASE,
4385 IPW_MEM_HOST_SHARED_TX_QUEUE_BD_SIZE,
4386 IPW_MEM_HOST_SHARED_TX_QUEUE_READ_INDEX,
4387 IPW_MEM_HOST_SHARED_TX_QUEUE_WRITE_INDEX);
4388
4389 IPW_DEBUG_INFO("exit\n");
4390
4391}
4392
4393static void ipw2100_tx_free(struct ipw2100_priv *priv)
4394{
4395 int i;
4396
4397 IPW_DEBUG_INFO("enter\n");
4398
4399 bd_queue_free(priv, &priv->tx_queue);
4400
4401 if (!priv->tx_buffers)
4402 return;
4403
4404 for (i = 0; i < TX_PENDED_QUEUE_LENGTH; i++) {
4405 if (priv->tx_buffers[i].info.d_struct.txb) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004406 ieee80211_txb_free(priv->tx_buffers[i].info.d_struct.
4407 txb);
James Ketrenos2c86c272005-03-23 17:32:29 -06004408 priv->tx_buffers[i].info.d_struct.txb = NULL;
4409 }
4410 if (priv->tx_buffers[i].info.d_struct.data)
James Ketrenosee8e3652005-09-14 09:47:29 -05004411 pci_free_consistent(priv->pci_dev,
4412 sizeof(struct ipw2100_data_header),
4413 priv->tx_buffers[i].info.d_struct.
4414 data,
4415 priv->tx_buffers[i].info.d_struct.
4416 data_phys);
James Ketrenos2c86c272005-03-23 17:32:29 -06004417 }
4418
4419 kfree(priv->tx_buffers);
4420 priv->tx_buffers = NULL;
4421
4422 IPW_DEBUG_INFO("exit\n");
4423}
4424
James Ketrenos2c86c272005-03-23 17:32:29 -06004425static int ipw2100_rx_allocate(struct ipw2100_priv *priv)
4426{
4427 int i, j, err = -EINVAL;
4428
4429 IPW_DEBUG_INFO("enter\n");
4430
4431 err = bd_queue_allocate(priv, &priv->rx_queue, RX_QUEUE_LENGTH);
4432 if (err) {
4433 IPW_DEBUG_INFO("failed bd_queue_allocate\n");
4434 return err;
4435 }
4436
4437 err = status_queue_allocate(priv, RX_QUEUE_LENGTH);
4438 if (err) {
4439 IPW_DEBUG_INFO("failed status_queue_allocate\n");
4440 bd_queue_free(priv, &priv->rx_queue);
4441 return err;
4442 }
4443
4444 /*
4445 * allocate packets
4446 */
4447 priv->rx_buffers = (struct ipw2100_rx_packet *)
4448 kmalloc(RX_QUEUE_LENGTH * sizeof(struct ipw2100_rx_packet),
4449 GFP_KERNEL);
4450 if (!priv->rx_buffers) {
4451 IPW_DEBUG_INFO("can't allocate rx packet buffer table\n");
4452
4453 bd_queue_free(priv, &priv->rx_queue);
4454
4455 status_queue_free(priv);
4456
4457 return -ENOMEM;
4458 }
4459
4460 for (i = 0; i < RX_QUEUE_LENGTH; i++) {
4461 struct ipw2100_rx_packet *packet = &priv->rx_buffers[i];
4462
4463 err = ipw2100_alloc_skb(priv, packet);
4464 if (unlikely(err)) {
4465 err = -ENOMEM;
4466 break;
4467 }
4468
4469 /* The BD holds the cache aligned address */
4470 priv->rx_queue.drv[i].host_addr = packet->dma_addr;
4471 priv->rx_queue.drv[i].buf_length = IPW_RX_NIC_BUFFER_LENGTH;
4472 priv->status_queue.drv[i].status_fields = 0;
4473 }
4474
4475 if (i == RX_QUEUE_LENGTH)
4476 return 0;
4477
4478 for (j = 0; j < i; j++) {
4479 pci_unmap_single(priv->pci_dev, priv->rx_buffers[j].dma_addr,
4480 sizeof(struct ipw2100_rx_packet),
4481 PCI_DMA_FROMDEVICE);
4482 dev_kfree_skb(priv->rx_buffers[j].skb);
4483 }
4484
4485 kfree(priv->rx_buffers);
4486 priv->rx_buffers = NULL;
4487
4488 bd_queue_free(priv, &priv->rx_queue);
4489
4490 status_queue_free(priv);
4491
4492 return err;
4493}
4494
4495static void ipw2100_rx_initialize(struct ipw2100_priv *priv)
4496{
4497 IPW_DEBUG_INFO("enter\n");
4498
4499 priv->rx_queue.oldest = 0;
4500 priv->rx_queue.available = priv->rx_queue.entries - 1;
4501 priv->rx_queue.next = priv->rx_queue.entries - 1;
4502
4503 INIT_STAT(&priv->rxq_stat);
4504 SET_STAT(&priv->rxq_stat, priv->rx_queue.available);
4505
4506 bd_queue_initialize(priv, &priv->rx_queue,
4507 IPW_MEM_HOST_SHARED_RX_BD_BASE,
4508 IPW_MEM_HOST_SHARED_RX_BD_SIZE,
4509 IPW_MEM_HOST_SHARED_RX_READ_INDEX,
4510 IPW_MEM_HOST_SHARED_RX_WRITE_INDEX);
4511
4512 /* set up the status queue */
4513 write_register(priv->net_dev, IPW_MEM_HOST_SHARED_RX_STATUS_BASE,
4514 priv->status_queue.nic);
4515
4516 IPW_DEBUG_INFO("exit\n");
4517}
4518
4519static void ipw2100_rx_free(struct ipw2100_priv *priv)
4520{
4521 int i;
4522
4523 IPW_DEBUG_INFO("enter\n");
4524
4525 bd_queue_free(priv, &priv->rx_queue);
4526 status_queue_free(priv);
4527
4528 if (!priv->rx_buffers)
4529 return;
4530
4531 for (i = 0; i < RX_QUEUE_LENGTH; i++) {
4532 if (priv->rx_buffers[i].rxp) {
4533 pci_unmap_single(priv->pci_dev,
4534 priv->rx_buffers[i].dma_addr,
4535 sizeof(struct ipw2100_rx),
4536 PCI_DMA_FROMDEVICE);
4537 dev_kfree_skb(priv->rx_buffers[i].skb);
4538 }
4539 }
4540
4541 kfree(priv->rx_buffers);
4542 priv->rx_buffers = NULL;
4543
4544 IPW_DEBUG_INFO("exit\n");
4545}
4546
4547static int ipw2100_read_mac_address(struct ipw2100_priv *priv)
4548{
4549 u32 length = ETH_ALEN;
4550 u8 mac[ETH_ALEN];
4551
4552 int err;
4553
James Ketrenosee8e3652005-09-14 09:47:29 -05004554 err = ipw2100_get_ordinal(priv, IPW_ORD_STAT_ADAPTER_MAC, mac, &length);
James Ketrenos2c86c272005-03-23 17:32:29 -06004555 if (err) {
4556 IPW_DEBUG_INFO("MAC address read failed\n");
4557 return -EIO;
4558 }
4559 IPW_DEBUG_INFO("card MAC is %02X:%02X:%02X:%02X:%02X:%02X\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05004560 mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]);
James Ketrenos2c86c272005-03-23 17:32:29 -06004561
4562 memcpy(priv->net_dev->dev_addr, mac, ETH_ALEN);
4563
4564 return 0;
4565}
4566
4567/********************************************************************
4568 *
4569 * Firmware Commands
4570 *
4571 ********************************************************************/
4572
Jiri Bencc4aee8c2005-08-25 20:04:43 -04004573static int ipw2100_set_mac_address(struct ipw2100_priv *priv, int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06004574{
4575 struct host_command cmd = {
4576 .host_command = ADAPTER_ADDRESS,
4577 .host_command_sequence = 0,
4578 .host_command_length = ETH_ALEN
4579 };
4580 int err;
4581
4582 IPW_DEBUG_HC("SET_MAC_ADDRESS\n");
4583
4584 IPW_DEBUG_INFO("enter\n");
4585
4586 if (priv->config & CFG_CUSTOM_MAC) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004587 memcpy(cmd.host_command_parameters, priv->mac_addr, ETH_ALEN);
James Ketrenos2c86c272005-03-23 17:32:29 -06004588 memcpy(priv->net_dev->dev_addr, priv->mac_addr, ETH_ALEN);
4589 } else
4590 memcpy(cmd.host_command_parameters, priv->net_dev->dev_addr,
4591 ETH_ALEN);
4592
4593 err = ipw2100_hw_send_command(priv, &cmd);
4594
4595 IPW_DEBUG_INFO("exit\n");
4596 return err;
4597}
4598
Jiri Bencc4aee8c2005-08-25 20:04:43 -04004599static int ipw2100_set_port_type(struct ipw2100_priv *priv, u32 port_type,
James Ketrenos2c86c272005-03-23 17:32:29 -06004600 int batch_mode)
4601{
4602 struct host_command cmd = {
4603 .host_command = PORT_TYPE,
4604 .host_command_sequence = 0,
4605 .host_command_length = sizeof(u32)
4606 };
4607 int err;
4608
4609 switch (port_type) {
4610 case IW_MODE_INFRA:
4611 cmd.host_command_parameters[0] = IPW_BSS;
4612 break;
4613 case IW_MODE_ADHOC:
4614 cmd.host_command_parameters[0] = IPW_IBSS;
4615 break;
4616 }
4617
4618 IPW_DEBUG_HC("PORT_TYPE: %s\n",
4619 port_type == IPW_IBSS ? "Ad-Hoc" : "Managed");
4620
4621 if (!batch_mode) {
4622 err = ipw2100_disable_adapter(priv);
4623 if (err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004624 printk(KERN_ERR DRV_NAME
4625 ": %s: Could not disable adapter %d\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06004626 priv->net_dev->name, err);
4627 return err;
4628 }
4629 }
4630
4631 /* send cmd to firmware */
4632 err = ipw2100_hw_send_command(priv, &cmd);
4633
4634 if (!batch_mode)
4635 ipw2100_enable_adapter(priv);
4636
4637 return err;
4638}
4639
Jiri Bencc4aee8c2005-08-25 20:04:43 -04004640static int ipw2100_set_channel(struct ipw2100_priv *priv, u32 channel,
4641 int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06004642{
4643 struct host_command cmd = {
4644 .host_command = CHANNEL,
4645 .host_command_sequence = 0,
4646 .host_command_length = sizeof(u32)
4647 };
4648 int err;
4649
4650 cmd.host_command_parameters[0] = channel;
4651
4652 IPW_DEBUG_HC("CHANNEL: %d\n", channel);
4653
4654 /* If BSS then we don't support channel selection */
4655 if (priv->ieee->iw_mode == IW_MODE_INFRA)
4656 return 0;
4657
4658 if ((channel != 0) &&
4659 ((channel < REG_MIN_CHANNEL) || (channel > REG_MAX_CHANNEL)))
4660 return -EINVAL;
4661
4662 if (!batch_mode) {
4663 err = ipw2100_disable_adapter(priv);
4664 if (err)
4665 return err;
4666 }
4667
4668 err = ipw2100_hw_send_command(priv, &cmd);
4669 if (err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004670 IPW_DEBUG_INFO("Failed to set channel to %d", channel);
James Ketrenos2c86c272005-03-23 17:32:29 -06004671 return err;
4672 }
4673
4674 if (channel)
4675 priv->config |= CFG_STATIC_CHANNEL;
4676 else
4677 priv->config &= ~CFG_STATIC_CHANNEL;
4678
4679 priv->channel = channel;
4680
4681 if (!batch_mode) {
4682 err = ipw2100_enable_adapter(priv);
4683 if (err)
4684 return err;
4685 }
4686
4687 return 0;
4688}
4689
Jiri Bencc4aee8c2005-08-25 20:04:43 -04004690static int ipw2100_system_config(struct ipw2100_priv *priv, int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06004691{
4692 struct host_command cmd = {
4693 .host_command = SYSTEM_CONFIG,
4694 .host_command_sequence = 0,
4695 .host_command_length = 12,
4696 };
4697 u32 ibss_mask, len = sizeof(u32);
4698 int err;
4699
4700 /* Set system configuration */
4701
4702 if (!batch_mode) {
4703 err = ipw2100_disable_adapter(priv);
4704 if (err)
4705 return err;
4706 }
4707
4708 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
4709 cmd.host_command_parameters[0] |= IPW_CFG_IBSS_AUTO_START;
4710
4711 cmd.host_command_parameters[0] |= IPW_CFG_IBSS_MASK |
James Ketrenosee8e3652005-09-14 09:47:29 -05004712 IPW_CFG_BSS_MASK | IPW_CFG_802_1x_ENABLE;
James Ketrenos2c86c272005-03-23 17:32:29 -06004713
4714 if (!(priv->config & CFG_LONG_PREAMBLE))
4715 cmd.host_command_parameters[0] |= IPW_CFG_PREAMBLE_AUTO;
4716
4717 err = ipw2100_get_ordinal(priv,
4718 IPW_ORD_EEPROM_IBSS_11B_CHANNELS,
James Ketrenosee8e3652005-09-14 09:47:29 -05004719 &ibss_mask, &len);
James Ketrenos2c86c272005-03-23 17:32:29 -06004720 if (err)
4721 ibss_mask = IPW_IBSS_11B_DEFAULT_MASK;
4722
4723 cmd.host_command_parameters[1] = REG_CHANNEL_MASK;
4724 cmd.host_command_parameters[2] = REG_CHANNEL_MASK & ibss_mask;
4725
4726 /* 11b only */
James Ketrenosee8e3652005-09-14 09:47:29 -05004727 /*cmd.host_command_parameters[0] |= DIVERSITY_ANTENNA_A; */
James Ketrenos2c86c272005-03-23 17:32:29 -06004728
4729 err = ipw2100_hw_send_command(priv, &cmd);
4730 if (err)
4731 return err;
4732
4733/* If IPv6 is configured in the kernel then we don't want to filter out all
4734 * of the multicast packets as IPv6 needs some. */
4735#if !defined(CONFIG_IPV6) && !defined(CONFIG_IPV6_MODULE)
4736 cmd.host_command = ADD_MULTICAST;
4737 cmd.host_command_sequence = 0;
4738 cmd.host_command_length = 0;
4739
4740 ipw2100_hw_send_command(priv, &cmd);
4741#endif
4742 if (!batch_mode) {
4743 err = ipw2100_enable_adapter(priv);
4744 if (err)
4745 return err;
4746 }
4747
4748 return 0;
4749}
4750
Jiri Bencc4aee8c2005-08-25 20:04:43 -04004751static int ipw2100_set_tx_rates(struct ipw2100_priv *priv, u32 rate,
4752 int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06004753{
4754 struct host_command cmd = {
4755 .host_command = BASIC_TX_RATES,
4756 .host_command_sequence = 0,
4757 .host_command_length = 4
4758 };
4759 int err;
4760
4761 cmd.host_command_parameters[0] = rate & TX_RATE_MASK;
4762
4763 if (!batch_mode) {
4764 err = ipw2100_disable_adapter(priv);
4765 if (err)
4766 return err;
4767 }
4768
4769 /* Set BASIC TX Rate first */
4770 ipw2100_hw_send_command(priv, &cmd);
4771
4772 /* Set TX Rate */
4773 cmd.host_command = TX_RATES;
4774 ipw2100_hw_send_command(priv, &cmd);
4775
4776 /* Set MSDU TX Rate */
4777 cmd.host_command = MSDU_TX_RATES;
4778 ipw2100_hw_send_command(priv, &cmd);
4779
4780 if (!batch_mode) {
4781 err = ipw2100_enable_adapter(priv);
4782 if (err)
4783 return err;
4784 }
4785
4786 priv->tx_rates = rate;
4787
4788 return 0;
4789}
4790
James Ketrenosee8e3652005-09-14 09:47:29 -05004791static int ipw2100_set_power_mode(struct ipw2100_priv *priv, int power_level)
James Ketrenos2c86c272005-03-23 17:32:29 -06004792{
4793 struct host_command cmd = {
4794 .host_command = POWER_MODE,
4795 .host_command_sequence = 0,
4796 .host_command_length = 4
4797 };
4798 int err;
4799
4800 cmd.host_command_parameters[0] = power_level;
4801
4802 err = ipw2100_hw_send_command(priv, &cmd);
4803 if (err)
4804 return err;
4805
4806 if (power_level == IPW_POWER_MODE_CAM)
4807 priv->power_mode = IPW_POWER_LEVEL(priv->power_mode);
4808 else
4809 priv->power_mode = IPW_POWER_ENABLED | power_level;
4810
4811#ifdef CONFIG_IPW2100_TX_POWER
James Ketrenosee8e3652005-09-14 09:47:29 -05004812 if (priv->port_type == IBSS && priv->adhoc_power != DFTL_IBSS_TX_POWER) {
James Ketrenos2c86c272005-03-23 17:32:29 -06004813 /* Set beacon interval */
4814 cmd.host_command = TX_POWER_INDEX;
James Ketrenosee8e3652005-09-14 09:47:29 -05004815 cmd.host_command_parameters[0] = (u32) priv->adhoc_power;
James Ketrenos2c86c272005-03-23 17:32:29 -06004816
4817 err = ipw2100_hw_send_command(priv, &cmd);
4818 if (err)
4819 return err;
4820 }
4821#endif
4822
4823 return 0;
4824}
4825
Jiri Bencc4aee8c2005-08-25 20:04:43 -04004826static int ipw2100_set_rts_threshold(struct ipw2100_priv *priv, u32 threshold)
James Ketrenos2c86c272005-03-23 17:32:29 -06004827{
4828 struct host_command cmd = {
4829 .host_command = RTS_THRESHOLD,
4830 .host_command_sequence = 0,
4831 .host_command_length = 4
4832 };
4833 int err;
4834
4835 if (threshold & RTS_DISABLED)
4836 cmd.host_command_parameters[0] = MAX_RTS_THRESHOLD;
4837 else
4838 cmd.host_command_parameters[0] = threshold & ~RTS_DISABLED;
4839
4840 err = ipw2100_hw_send_command(priv, &cmd);
4841 if (err)
4842 return err;
4843
4844 priv->rts_threshold = threshold;
4845
4846 return 0;
4847}
4848
4849#if 0
4850int ipw2100_set_fragmentation_threshold(struct ipw2100_priv *priv,
4851 u32 threshold, int batch_mode)
4852{
4853 struct host_command cmd = {
4854 .host_command = FRAG_THRESHOLD,
4855 .host_command_sequence = 0,
4856 .host_command_length = 4,
4857 .host_command_parameters[0] = 0,
4858 };
4859 int err;
4860
4861 if (!batch_mode) {
4862 err = ipw2100_disable_adapter(priv);
4863 if (err)
4864 return err;
4865 }
4866
4867 if (threshold == 0)
4868 threshold = DEFAULT_FRAG_THRESHOLD;
4869 else {
4870 threshold = max(threshold, MIN_FRAG_THRESHOLD);
4871 threshold = min(threshold, MAX_FRAG_THRESHOLD);
4872 }
4873
4874 cmd.host_command_parameters[0] = threshold;
4875
4876 IPW_DEBUG_HC("FRAG_THRESHOLD: %u\n", threshold);
4877
4878 err = ipw2100_hw_send_command(priv, &cmd);
4879
4880 if (!batch_mode)
4881 ipw2100_enable_adapter(priv);
4882
4883 if (!err)
4884 priv->frag_threshold = threshold;
4885
4886 return err;
4887}
4888#endif
4889
Jiri Bencc4aee8c2005-08-25 20:04:43 -04004890static int ipw2100_set_short_retry(struct ipw2100_priv *priv, u32 retry)
James Ketrenos2c86c272005-03-23 17:32:29 -06004891{
4892 struct host_command cmd = {
4893 .host_command = SHORT_RETRY_LIMIT,
4894 .host_command_sequence = 0,
4895 .host_command_length = 4
4896 };
4897 int err;
4898
4899 cmd.host_command_parameters[0] = retry;
4900
4901 err = ipw2100_hw_send_command(priv, &cmd);
4902 if (err)
4903 return err;
4904
4905 priv->short_retry_limit = retry;
4906
4907 return 0;
4908}
4909
Jiri Bencc4aee8c2005-08-25 20:04:43 -04004910static int ipw2100_set_long_retry(struct ipw2100_priv *priv, u32 retry)
James Ketrenos2c86c272005-03-23 17:32:29 -06004911{
4912 struct host_command cmd = {
4913 .host_command = LONG_RETRY_LIMIT,
4914 .host_command_sequence = 0,
4915 .host_command_length = 4
4916 };
4917 int err;
4918
4919 cmd.host_command_parameters[0] = retry;
4920
4921 err = ipw2100_hw_send_command(priv, &cmd);
4922 if (err)
4923 return err;
4924
4925 priv->long_retry_limit = retry;
4926
4927 return 0;
4928}
4929
James Ketrenosee8e3652005-09-14 09:47:29 -05004930static int ipw2100_set_mandatory_bssid(struct ipw2100_priv *priv, u8 * bssid,
Jiri Bencc4aee8c2005-08-25 20:04:43 -04004931 int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06004932{
4933 struct host_command cmd = {
4934 .host_command = MANDATORY_BSSID,
4935 .host_command_sequence = 0,
4936 .host_command_length = (bssid == NULL) ? 0 : ETH_ALEN
4937 };
4938 int err;
4939
4940#ifdef CONFIG_IPW_DEBUG
4941 if (bssid != NULL)
James Ketrenosee8e3652005-09-14 09:47:29 -05004942 IPW_DEBUG_HC("MANDATORY_BSSID: %02X:%02X:%02X:%02X:%02X:%02X\n",
4943 bssid[0], bssid[1], bssid[2], bssid[3], bssid[4],
4944 bssid[5]);
James Ketrenos2c86c272005-03-23 17:32:29 -06004945 else
4946 IPW_DEBUG_HC("MANDATORY_BSSID: <clear>\n");
4947#endif
4948 /* if BSSID is empty then we disable mandatory bssid mode */
4949 if (bssid != NULL)
James Ketrenos82328352005-08-24 22:33:31 -05004950 memcpy(cmd.host_command_parameters, bssid, ETH_ALEN);
James Ketrenos2c86c272005-03-23 17:32:29 -06004951
4952 if (!batch_mode) {
4953 err = ipw2100_disable_adapter(priv);
4954 if (err)
4955 return err;
4956 }
4957
4958 err = ipw2100_hw_send_command(priv, &cmd);
4959
4960 if (!batch_mode)
4961 ipw2100_enable_adapter(priv);
4962
4963 return err;
4964}
4965
James Ketrenos2c86c272005-03-23 17:32:29 -06004966static int ipw2100_disassociate_bssid(struct ipw2100_priv *priv)
4967{
4968 struct host_command cmd = {
4969 .host_command = DISASSOCIATION_BSSID,
4970 .host_command_sequence = 0,
4971 .host_command_length = ETH_ALEN
4972 };
4973 int err;
4974 int len;
4975
4976 IPW_DEBUG_HC("DISASSOCIATION_BSSID\n");
4977
4978 len = ETH_ALEN;
4979 /* The Firmware currently ignores the BSSID and just disassociates from
4980 * the currently associated AP -- but in the off chance that a future
4981 * firmware does use the BSSID provided here, we go ahead and try and
4982 * set it to the currently associated AP's BSSID */
4983 memcpy(cmd.host_command_parameters, priv->bssid, ETH_ALEN);
4984
4985 err = ipw2100_hw_send_command(priv, &cmd);
4986
4987 return err;
4988}
James Ketrenos2c86c272005-03-23 17:32:29 -06004989
4990static int ipw2100_set_wpa_ie(struct ipw2100_priv *,
4991 struct ipw2100_wpa_assoc_frame *, int)
James Ketrenosee8e3652005-09-14 09:47:29 -05004992 __attribute__ ((unused));
James Ketrenos2c86c272005-03-23 17:32:29 -06004993
4994static int ipw2100_set_wpa_ie(struct ipw2100_priv *priv,
4995 struct ipw2100_wpa_assoc_frame *wpa_frame,
4996 int batch_mode)
4997{
4998 struct host_command cmd = {
4999 .host_command = SET_WPA_IE,
5000 .host_command_sequence = 0,
5001 .host_command_length = sizeof(struct ipw2100_wpa_assoc_frame),
5002 };
5003 int err;
5004
5005 IPW_DEBUG_HC("SET_WPA_IE\n");
5006
5007 if (!batch_mode) {
5008 err = ipw2100_disable_adapter(priv);
5009 if (err)
5010 return err;
5011 }
5012
5013 memcpy(cmd.host_command_parameters, wpa_frame,
5014 sizeof(struct ipw2100_wpa_assoc_frame));
5015
5016 err = ipw2100_hw_send_command(priv, &cmd);
5017
5018 if (!batch_mode) {
5019 if (ipw2100_enable_adapter(priv))
5020 err = -EIO;
5021 }
5022
5023 return err;
5024}
5025
5026struct security_info_params {
5027 u32 allowed_ciphers;
5028 u16 version;
5029 u8 auth_mode;
5030 u8 replay_counters_number;
5031 u8 unicast_using_group;
5032} __attribute__ ((packed));
5033
Jiri Bencc4aee8c2005-08-25 20:04:43 -04005034static int ipw2100_set_security_information(struct ipw2100_priv *priv,
5035 int auth_mode,
5036 int security_level,
5037 int unicast_using_group,
5038 int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06005039{
5040 struct host_command cmd = {
5041 .host_command = SET_SECURITY_INFORMATION,
5042 .host_command_sequence = 0,
5043 .host_command_length = sizeof(struct security_info_params)
5044 };
5045 struct security_info_params *security =
James Ketrenosee8e3652005-09-14 09:47:29 -05005046 (struct security_info_params *)&cmd.host_command_parameters;
James Ketrenos2c86c272005-03-23 17:32:29 -06005047 int err;
5048 memset(security, 0, sizeof(*security));
5049
5050 /* If shared key AP authentication is turned on, then we need to
5051 * configure the firmware to try and use it.
5052 *
5053 * Actual data encryption/decryption is handled by the host. */
5054 security->auth_mode = auth_mode;
5055 security->unicast_using_group = unicast_using_group;
5056
5057 switch (security_level) {
5058 default:
5059 case SEC_LEVEL_0:
5060 security->allowed_ciphers = IPW_NONE_CIPHER;
5061 break;
5062 case SEC_LEVEL_1:
5063 security->allowed_ciphers = IPW_WEP40_CIPHER |
James Ketrenosee8e3652005-09-14 09:47:29 -05005064 IPW_WEP104_CIPHER;
James Ketrenos2c86c272005-03-23 17:32:29 -06005065 break;
5066 case SEC_LEVEL_2:
5067 security->allowed_ciphers = IPW_WEP40_CIPHER |
James Ketrenosee8e3652005-09-14 09:47:29 -05005068 IPW_WEP104_CIPHER | IPW_TKIP_CIPHER;
James Ketrenos2c86c272005-03-23 17:32:29 -06005069 break;
5070 case SEC_LEVEL_2_CKIP:
5071 security->allowed_ciphers = IPW_WEP40_CIPHER |
James Ketrenosee8e3652005-09-14 09:47:29 -05005072 IPW_WEP104_CIPHER | IPW_CKIP_CIPHER;
James Ketrenos2c86c272005-03-23 17:32:29 -06005073 break;
5074 case SEC_LEVEL_3:
5075 security->allowed_ciphers = IPW_WEP40_CIPHER |
James Ketrenosee8e3652005-09-14 09:47:29 -05005076 IPW_WEP104_CIPHER | IPW_TKIP_CIPHER | IPW_CCMP_CIPHER;
James Ketrenos2c86c272005-03-23 17:32:29 -06005077 break;
5078 }
5079
James Ketrenosee8e3652005-09-14 09:47:29 -05005080 IPW_DEBUG_HC
5081 ("SET_SECURITY_INFORMATION: auth:%d cipher:0x%02X (level %d)\n",
5082 security->auth_mode, security->allowed_ciphers, security_level);
James Ketrenos2c86c272005-03-23 17:32:29 -06005083
5084 security->replay_counters_number = 0;
5085
5086 if (!batch_mode) {
5087 err = ipw2100_disable_adapter(priv);
5088 if (err)
5089 return err;
5090 }
5091
5092 err = ipw2100_hw_send_command(priv, &cmd);
5093
5094 if (!batch_mode)
5095 ipw2100_enable_adapter(priv);
5096
5097 return err;
5098}
5099
James Ketrenosee8e3652005-09-14 09:47:29 -05005100static int ipw2100_set_tx_power(struct ipw2100_priv *priv, u32 tx_power)
James Ketrenos2c86c272005-03-23 17:32:29 -06005101{
5102 struct host_command cmd = {
5103 .host_command = TX_POWER_INDEX,
5104 .host_command_sequence = 0,
5105 .host_command_length = 4
5106 };
5107 int err = 0;
5108
Liu Hongf75459e2005-07-13 12:29:21 -05005109 if (tx_power != IPW_TX_POWER_DEFAULT)
5110 tx_power = (tx_power - IPW_TX_POWER_MIN_DBM) * 16 /
5111 (IPW_TX_POWER_MAX_DBM - IPW_TX_POWER_MIN_DBM);
5112
James Ketrenos2c86c272005-03-23 17:32:29 -06005113 cmd.host_command_parameters[0] = tx_power;
5114
5115 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
5116 err = ipw2100_hw_send_command(priv, &cmd);
5117 if (!err)
5118 priv->tx_power = tx_power;
5119
5120 return 0;
5121}
5122
Jiri Bencc4aee8c2005-08-25 20:04:43 -04005123static int ipw2100_set_ibss_beacon_interval(struct ipw2100_priv *priv,
5124 u32 interval, int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06005125{
5126 struct host_command cmd = {
5127 .host_command = BEACON_INTERVAL,
5128 .host_command_sequence = 0,
5129 .host_command_length = 4
5130 };
5131 int err;
5132
5133 cmd.host_command_parameters[0] = interval;
5134
5135 IPW_DEBUG_INFO("enter\n");
5136
5137 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
5138 if (!batch_mode) {
5139 err = ipw2100_disable_adapter(priv);
5140 if (err)
5141 return err;
5142 }
5143
5144 ipw2100_hw_send_command(priv, &cmd);
5145
5146 if (!batch_mode) {
5147 err = ipw2100_enable_adapter(priv);
5148 if (err)
5149 return err;
5150 }
5151 }
5152
5153 IPW_DEBUG_INFO("exit\n");
5154
5155 return 0;
5156}
5157
James Ketrenos2c86c272005-03-23 17:32:29 -06005158void ipw2100_queues_initialize(struct ipw2100_priv *priv)
5159{
5160 ipw2100_tx_initialize(priv);
5161 ipw2100_rx_initialize(priv);
5162 ipw2100_msg_initialize(priv);
5163}
5164
5165void ipw2100_queues_free(struct ipw2100_priv *priv)
5166{
5167 ipw2100_tx_free(priv);
5168 ipw2100_rx_free(priv);
5169 ipw2100_msg_free(priv);
5170}
5171
5172int ipw2100_queues_allocate(struct ipw2100_priv *priv)
5173{
5174 if (ipw2100_tx_allocate(priv) ||
James Ketrenosee8e3652005-09-14 09:47:29 -05005175 ipw2100_rx_allocate(priv) || ipw2100_msg_allocate(priv))
James Ketrenos2c86c272005-03-23 17:32:29 -06005176 goto fail;
5177
5178 return 0;
5179
James Ketrenosee8e3652005-09-14 09:47:29 -05005180 fail:
James Ketrenos2c86c272005-03-23 17:32:29 -06005181 ipw2100_tx_free(priv);
5182 ipw2100_rx_free(priv);
5183 ipw2100_msg_free(priv);
5184 return -ENOMEM;
5185}
5186
5187#define IPW_PRIVACY_CAPABLE 0x0008
5188
5189static int ipw2100_set_wep_flags(struct ipw2100_priv *priv, u32 flags,
5190 int batch_mode)
5191{
5192 struct host_command cmd = {
5193 .host_command = WEP_FLAGS,
5194 .host_command_sequence = 0,
5195 .host_command_length = 4
5196 };
5197 int err;
5198
5199 cmd.host_command_parameters[0] = flags;
5200
5201 IPW_DEBUG_HC("WEP_FLAGS: flags = 0x%08X\n", flags);
5202
5203 if (!batch_mode) {
5204 err = ipw2100_disable_adapter(priv);
5205 if (err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05005206 printk(KERN_ERR DRV_NAME
5207 ": %s: Could not disable adapter %d\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06005208 priv->net_dev->name, err);
5209 return err;
5210 }
5211 }
5212
5213 /* send cmd to firmware */
5214 err = ipw2100_hw_send_command(priv, &cmd);
5215
5216 if (!batch_mode)
5217 ipw2100_enable_adapter(priv);
5218
5219 return err;
5220}
5221
5222struct ipw2100_wep_key {
5223 u8 idx;
5224 u8 len;
5225 u8 key[13];
5226};
5227
5228/* Macros to ease up priting WEP keys */
5229#define WEP_FMT_64 "%02X%02X%02X%02X-%02X"
5230#define WEP_FMT_128 "%02X%02X%02X%02X-%02X%02X%02X%02X-%02X%02X%02X"
5231#define WEP_STR_64(x) x[0],x[1],x[2],x[3],x[4]
5232#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]
5233
James Ketrenos2c86c272005-03-23 17:32:29 -06005234/**
5235 * Set a the wep key
5236 *
5237 * @priv: struct to work on
5238 * @idx: index of the key we want to set
5239 * @key: ptr to the key data to set
5240 * @len: length of the buffer at @key
5241 * @batch_mode: FIXME perform the operation in batch mode, not
5242 * disabling the device.
5243 *
5244 * @returns 0 if OK, < 0 errno code on error.
5245 *
5246 * Fill out a command structure with the new wep key, length an
5247 * index and send it down the wire.
5248 */
5249static int ipw2100_set_key(struct ipw2100_priv *priv,
5250 int idx, char *key, int len, int batch_mode)
5251{
5252 int keylen = len ? (len <= 5 ? 5 : 13) : 0;
5253 struct host_command cmd = {
5254 .host_command = WEP_KEY_INFO,
5255 .host_command_sequence = 0,
5256 .host_command_length = sizeof(struct ipw2100_wep_key),
5257 };
James Ketrenosee8e3652005-09-14 09:47:29 -05005258 struct ipw2100_wep_key *wep_key = (void *)cmd.host_command_parameters;
James Ketrenos2c86c272005-03-23 17:32:29 -06005259 int err;
5260
5261 IPW_DEBUG_HC("WEP_KEY_INFO: index = %d, len = %d/%d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05005262 idx, keylen, len);
James Ketrenos2c86c272005-03-23 17:32:29 -06005263
5264 /* NOTE: We don't check cached values in case the firmware was reset
5265 * or some other problem is occuring. If the user is setting the key,
5266 * then we push the change */
5267
5268 wep_key->idx = idx;
5269 wep_key->len = keylen;
5270
5271 if (keylen) {
5272 memcpy(wep_key->key, key, len);
5273 memset(wep_key->key + len, 0, keylen - len);
5274 }
5275
5276 /* Will be optimized out on debug not being configured in */
5277 if (keylen == 0)
5278 IPW_DEBUG_WEP("%s: Clearing key %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05005279 priv->net_dev->name, wep_key->idx);
James Ketrenos2c86c272005-03-23 17:32:29 -06005280 else if (keylen == 5)
5281 IPW_DEBUG_WEP("%s: idx: %d, len: %d key: " WEP_FMT_64 "\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05005282 priv->net_dev->name, wep_key->idx, wep_key->len,
5283 WEP_STR_64(wep_key->key));
James Ketrenos2c86c272005-03-23 17:32:29 -06005284 else
5285 IPW_DEBUG_WEP("%s: idx: %d, len: %d key: " WEP_FMT_128
James Ketrenosee8e3652005-09-14 09:47:29 -05005286 "\n",
5287 priv->net_dev->name, wep_key->idx, wep_key->len,
5288 WEP_STR_128(wep_key->key));
James Ketrenos2c86c272005-03-23 17:32:29 -06005289
5290 if (!batch_mode) {
5291 err = ipw2100_disable_adapter(priv);
5292 /* FIXME: IPG: shouldn't this prink be in _disable_adapter()? */
5293 if (err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05005294 printk(KERN_ERR DRV_NAME
5295 ": %s: Could not disable adapter %d\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06005296 priv->net_dev->name, err);
5297 return err;
5298 }
5299 }
5300
5301 /* send cmd to firmware */
5302 err = ipw2100_hw_send_command(priv, &cmd);
5303
5304 if (!batch_mode) {
5305 int err2 = ipw2100_enable_adapter(priv);
5306 if (err == 0)
5307 err = err2;
5308 }
5309 return err;
5310}
5311
5312static int ipw2100_set_key_index(struct ipw2100_priv *priv,
5313 int idx, int batch_mode)
5314{
5315 struct host_command cmd = {
5316 .host_command = WEP_KEY_INDEX,
5317 .host_command_sequence = 0,
5318 .host_command_length = 4,
James Ketrenosee8e3652005-09-14 09:47:29 -05005319 .host_command_parameters = {idx},
James Ketrenos2c86c272005-03-23 17:32:29 -06005320 };
5321 int err;
5322
5323 IPW_DEBUG_HC("WEP_KEY_INDEX: index = %d\n", idx);
5324
5325 if (idx < 0 || idx > 3)
5326 return -EINVAL;
5327
5328 if (!batch_mode) {
5329 err = ipw2100_disable_adapter(priv);
5330 if (err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05005331 printk(KERN_ERR DRV_NAME
5332 ": %s: Could not disable adapter %d\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06005333 priv->net_dev->name, err);
5334 return err;
5335 }
5336 }
5337
5338 /* send cmd to firmware */
5339 err = ipw2100_hw_send_command(priv, &cmd);
5340
5341 if (!batch_mode)
5342 ipw2100_enable_adapter(priv);
5343
5344 return err;
5345}
5346
James Ketrenosee8e3652005-09-14 09:47:29 -05005347static int ipw2100_configure_security(struct ipw2100_priv *priv, int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06005348{
5349 int i, err, auth_mode, sec_level, use_group;
5350
5351 if (!(priv->status & STATUS_RUNNING))
5352 return 0;
5353
5354 if (!batch_mode) {
5355 err = ipw2100_disable_adapter(priv);
5356 if (err)
5357 return err;
5358 }
5359
25b645b2005-07-12 15:45:30 -05005360 if (!priv->ieee->sec.enabled) {
James Ketrenosee8e3652005-09-14 09:47:29 -05005361 err =
5362 ipw2100_set_security_information(priv, IPW_AUTH_OPEN,
5363 SEC_LEVEL_0, 0, 1);
James Ketrenos2c86c272005-03-23 17:32:29 -06005364 } else {
5365 auth_mode = IPW_AUTH_OPEN;
25b645b2005-07-12 15:45:30 -05005366 if ((priv->ieee->sec.flags & SEC_AUTH_MODE) &&
5367 (priv->ieee->sec.auth_mode == WLAN_AUTH_SHARED_KEY))
James Ketrenos2c86c272005-03-23 17:32:29 -06005368 auth_mode = IPW_AUTH_SHARED;
5369
5370 sec_level = SEC_LEVEL_0;
25b645b2005-07-12 15:45:30 -05005371 if (priv->ieee->sec.flags & SEC_LEVEL)
5372 sec_level = priv->ieee->sec.level;
James Ketrenos2c86c272005-03-23 17:32:29 -06005373
5374 use_group = 0;
25b645b2005-07-12 15:45:30 -05005375 if (priv->ieee->sec.flags & SEC_UNICAST_GROUP)
5376 use_group = priv->ieee->sec.unicast_uses_group;
James Ketrenos2c86c272005-03-23 17:32:29 -06005377
James Ketrenosee8e3652005-09-14 09:47:29 -05005378 err =
5379 ipw2100_set_security_information(priv, auth_mode, sec_level,
5380 use_group, 1);
James Ketrenos2c86c272005-03-23 17:32:29 -06005381 }
5382
5383 if (err)
5384 goto exit;
5385
25b645b2005-07-12 15:45:30 -05005386 if (priv->ieee->sec.enabled) {
James Ketrenos2c86c272005-03-23 17:32:29 -06005387 for (i = 0; i < 4; i++) {
25b645b2005-07-12 15:45:30 -05005388 if (!(priv->ieee->sec.flags & (1 << i))) {
5389 memset(priv->ieee->sec.keys[i], 0, WEP_KEY_LEN);
5390 priv->ieee->sec.key_sizes[i] = 0;
James Ketrenos2c86c272005-03-23 17:32:29 -06005391 } else {
5392 err = ipw2100_set_key(priv, i,
25b645b2005-07-12 15:45:30 -05005393 priv->ieee->sec.keys[i],
5394 priv->ieee->sec.
5395 key_sizes[i], 1);
James Ketrenos2c86c272005-03-23 17:32:29 -06005396 if (err)
5397 goto exit;
5398 }
5399 }
5400
5401 ipw2100_set_key_index(priv, priv->ieee->tx_keyidx, 1);
5402 }
5403
5404 /* Always enable privacy so the Host can filter WEP packets if
5405 * encrypted data is sent up */
James Ketrenosee8e3652005-09-14 09:47:29 -05005406 err =
5407 ipw2100_set_wep_flags(priv,
25b645b2005-07-12 15:45:30 -05005408 priv->ieee->sec.
5409 enabled ? IPW_PRIVACY_CAPABLE : 0, 1);
James Ketrenos2c86c272005-03-23 17:32:29 -06005410 if (err)
5411 goto exit;
5412
5413 priv->status &= ~STATUS_SECURITY_UPDATED;
5414
James Ketrenosee8e3652005-09-14 09:47:29 -05005415 exit:
James Ketrenos2c86c272005-03-23 17:32:29 -06005416 if (!batch_mode)
5417 ipw2100_enable_adapter(priv);
5418
5419 return err;
5420}
5421
5422static void ipw2100_security_work(struct ipw2100_priv *priv)
5423{
5424 /* If we happen to have reconnected before we get a chance to
5425 * process this, then update the security settings--which causes
5426 * a disassociation to occur */
5427 if (!(priv->status & STATUS_ASSOCIATED) &&
5428 priv->status & STATUS_SECURITY_UPDATED)
5429 ipw2100_configure_security(priv, 0);
5430}
5431
5432static void shim__set_security(struct net_device *dev,
5433 struct ieee80211_security *sec)
5434{
5435 struct ipw2100_priv *priv = ieee80211_priv(dev);
5436 int i, force_update = 0;
5437
5438 down(&priv->action_sem);
5439 if (!(priv->status & STATUS_INITIALIZED))
5440 goto done;
5441
5442 for (i = 0; i < 4; i++) {
5443 if (sec->flags & (1 << i)) {
25b645b2005-07-12 15:45:30 -05005444 priv->ieee->sec.key_sizes[i] = sec->key_sizes[i];
James Ketrenos2c86c272005-03-23 17:32:29 -06005445 if (sec->key_sizes[i] == 0)
25b645b2005-07-12 15:45:30 -05005446 priv->ieee->sec.flags &= ~(1 << i);
James Ketrenos2c86c272005-03-23 17:32:29 -06005447 else
25b645b2005-07-12 15:45:30 -05005448 memcpy(priv->ieee->sec.keys[i], sec->keys[i],
James Ketrenos2c86c272005-03-23 17:32:29 -06005449 sec->key_sizes[i]);
Hong Liu054b08d2005-08-25 17:45:49 +08005450 if (sec->level == SEC_LEVEL_1) {
5451 priv->ieee->sec.flags |= (1 << i);
5452 priv->status |= STATUS_SECURITY_UPDATED;
5453 } else
5454 priv->ieee->sec.flags &= ~(1 << i);
James Ketrenos2c86c272005-03-23 17:32:29 -06005455 }
5456 }
5457
5458 if ((sec->flags & SEC_ACTIVE_KEY) &&
25b645b2005-07-12 15:45:30 -05005459 priv->ieee->sec.active_key != sec->active_key) {
James Ketrenos2c86c272005-03-23 17:32:29 -06005460 if (sec->active_key <= 3) {
25b645b2005-07-12 15:45:30 -05005461 priv->ieee->sec.active_key = sec->active_key;
5462 priv->ieee->sec.flags |= SEC_ACTIVE_KEY;
James Ketrenos2c86c272005-03-23 17:32:29 -06005463 } else
25b645b2005-07-12 15:45:30 -05005464 priv->ieee->sec.flags &= ~SEC_ACTIVE_KEY;
James Ketrenos2c86c272005-03-23 17:32:29 -06005465
5466 priv->status |= STATUS_SECURITY_UPDATED;
5467 }
5468
5469 if ((sec->flags & SEC_AUTH_MODE) &&
25b645b2005-07-12 15:45:30 -05005470 (priv->ieee->sec.auth_mode != sec->auth_mode)) {
5471 priv->ieee->sec.auth_mode = sec->auth_mode;
5472 priv->ieee->sec.flags |= SEC_AUTH_MODE;
James Ketrenos2c86c272005-03-23 17:32:29 -06005473 priv->status |= STATUS_SECURITY_UPDATED;
5474 }
5475
25b645b2005-07-12 15:45:30 -05005476 if (sec->flags & SEC_ENABLED && priv->ieee->sec.enabled != sec->enabled) {
5477 priv->ieee->sec.flags |= SEC_ENABLED;
5478 priv->ieee->sec.enabled = sec->enabled;
James Ketrenos2c86c272005-03-23 17:32:29 -06005479 priv->status |= STATUS_SECURITY_UPDATED;
5480 force_update = 1;
5481 }
5482
25b645b2005-07-12 15:45:30 -05005483 if (sec->flags & SEC_ENCRYPT)
5484 priv->ieee->sec.encrypt = sec->encrypt;
5485
5486 if (sec->flags & SEC_LEVEL && priv->ieee->sec.level != sec->level) {
5487 priv->ieee->sec.level = sec->level;
5488 priv->ieee->sec.flags |= SEC_LEVEL;
James Ketrenos2c86c272005-03-23 17:32:29 -06005489 priv->status |= STATUS_SECURITY_UPDATED;
5490 }
5491
5492 IPW_DEBUG_WEP("Security flags: %c %c%c%c%c %c%c%c%c\n",
25b645b2005-07-12 15:45:30 -05005493 priv->ieee->sec.flags & (1 << 8) ? '1' : '0',
5494 priv->ieee->sec.flags & (1 << 7) ? '1' : '0',
5495 priv->ieee->sec.flags & (1 << 6) ? '1' : '0',
5496 priv->ieee->sec.flags & (1 << 5) ? '1' : '0',
5497 priv->ieee->sec.flags & (1 << 4) ? '1' : '0',
5498 priv->ieee->sec.flags & (1 << 3) ? '1' : '0',
5499 priv->ieee->sec.flags & (1 << 2) ? '1' : '0',
5500 priv->ieee->sec.flags & (1 << 1) ? '1' : '0',
5501 priv->ieee->sec.flags & (1 << 0) ? '1' : '0');
James Ketrenos2c86c272005-03-23 17:32:29 -06005502
5503/* As a temporary work around to enable WPA until we figure out why
5504 * wpa_supplicant toggles the security capability of the driver, which
5505 * forces a disassocation with force_update...
5506 *
5507 * if (force_update || !(priv->status & STATUS_ASSOCIATED))*/
5508 if (!(priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)))
5509 ipw2100_configure_security(priv, 0);
James Ketrenosee8e3652005-09-14 09:47:29 -05005510 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06005511 up(&priv->action_sem);
5512}
5513
5514static int ipw2100_adapter_setup(struct ipw2100_priv *priv)
5515{
5516 int err;
5517 int batch_mode = 1;
5518 u8 *bssid;
5519
5520 IPW_DEBUG_INFO("enter\n");
5521
5522 err = ipw2100_disable_adapter(priv);
5523 if (err)
5524 return err;
5525#ifdef CONFIG_IPW2100_MONITOR
5526 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
5527 err = ipw2100_set_channel(priv, priv->channel, batch_mode);
5528 if (err)
5529 return err;
5530
5531 IPW_DEBUG_INFO("exit\n");
5532
5533 return 0;
5534 }
James Ketrenosee8e3652005-09-14 09:47:29 -05005535#endif /* CONFIG_IPW2100_MONITOR */
James Ketrenos2c86c272005-03-23 17:32:29 -06005536
5537 err = ipw2100_read_mac_address(priv);
5538 if (err)
5539 return -EIO;
5540
5541 err = ipw2100_set_mac_address(priv, batch_mode);
5542 if (err)
5543 return err;
5544
5545 err = ipw2100_set_port_type(priv, priv->ieee->iw_mode, batch_mode);
5546 if (err)
5547 return err;
5548
5549 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
5550 err = ipw2100_set_channel(priv, priv->channel, batch_mode);
5551 if (err)
5552 return err;
5553 }
5554
James Ketrenosee8e3652005-09-14 09:47:29 -05005555 err = ipw2100_system_config(priv, batch_mode);
James Ketrenos2c86c272005-03-23 17:32:29 -06005556 if (err)
5557 return err;
5558
5559 err = ipw2100_set_tx_rates(priv, priv->tx_rates, batch_mode);
5560 if (err)
5561 return err;
5562
5563 /* Default to power mode OFF */
5564 err = ipw2100_set_power_mode(priv, IPW_POWER_MODE_CAM);
5565 if (err)
5566 return err;
5567
5568 err = ipw2100_set_rts_threshold(priv, priv->rts_threshold);
5569 if (err)
5570 return err;
5571
5572 if (priv->config & CFG_STATIC_BSSID)
5573 bssid = priv->bssid;
5574 else
5575 bssid = NULL;
5576 err = ipw2100_set_mandatory_bssid(priv, bssid, batch_mode);
5577 if (err)
5578 return err;
5579
5580 if (priv->config & CFG_STATIC_ESSID)
5581 err = ipw2100_set_essid(priv, priv->essid, priv->essid_len,
5582 batch_mode);
5583 else
5584 err = ipw2100_set_essid(priv, NULL, 0, batch_mode);
5585 if (err)
5586 return err;
5587
5588 err = ipw2100_configure_security(priv, batch_mode);
5589 if (err)
5590 return err;
5591
5592 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
James Ketrenosee8e3652005-09-14 09:47:29 -05005593 err =
5594 ipw2100_set_ibss_beacon_interval(priv,
5595 priv->beacon_interval,
5596 batch_mode);
James Ketrenos2c86c272005-03-23 17:32:29 -06005597 if (err)
5598 return err;
5599
5600 err = ipw2100_set_tx_power(priv, priv->tx_power);
5601 if (err)
5602 return err;
5603 }
5604
5605 /*
James Ketrenosee8e3652005-09-14 09:47:29 -05005606 err = ipw2100_set_fragmentation_threshold(
5607 priv, priv->frag_threshold, batch_mode);
5608 if (err)
5609 return err;
5610 */
James Ketrenos2c86c272005-03-23 17:32:29 -06005611
5612 IPW_DEBUG_INFO("exit\n");
5613
5614 return 0;
5615}
5616
James Ketrenos2c86c272005-03-23 17:32:29 -06005617/*************************************************************************
5618 *
5619 * EXTERNALLY CALLED METHODS
5620 *
5621 *************************************************************************/
5622
5623/* This method is called by the network layer -- not to be confused with
5624 * ipw2100_set_mac_address() declared above called by this driver (and this
5625 * method as well) to talk to the firmware */
5626static int ipw2100_set_address(struct net_device *dev, void *p)
5627{
5628 struct ipw2100_priv *priv = ieee80211_priv(dev);
5629 struct sockaddr *addr = p;
5630 int err = 0;
5631
5632 if (!is_valid_ether_addr(addr->sa_data))
5633 return -EADDRNOTAVAIL;
5634
5635 down(&priv->action_sem);
5636
5637 priv->config |= CFG_CUSTOM_MAC;
5638 memcpy(priv->mac_addr, addr->sa_data, ETH_ALEN);
5639
5640 err = ipw2100_set_mac_address(priv, 0);
5641 if (err)
5642 goto done;
5643
5644 priv->reset_backoff = 0;
5645 up(&priv->action_sem);
5646 ipw2100_reset_adapter(priv);
5647 return 0;
5648
James Ketrenosee8e3652005-09-14 09:47:29 -05005649 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06005650 up(&priv->action_sem);
5651 return err;
5652}
5653
5654static int ipw2100_open(struct net_device *dev)
5655{
5656 struct ipw2100_priv *priv = ieee80211_priv(dev);
5657 unsigned long flags;
5658 IPW_DEBUG_INFO("dev->open\n");
5659
5660 spin_lock_irqsave(&priv->low_lock, flags);
Jiri Benc3ce329c2005-08-25 20:07:01 -04005661 if (priv->status & STATUS_ASSOCIATED) {
5662 netif_carrier_on(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06005663 netif_start_queue(dev);
Jiri Benc3ce329c2005-08-25 20:07:01 -04005664 }
James Ketrenos2c86c272005-03-23 17:32:29 -06005665 spin_unlock_irqrestore(&priv->low_lock, flags);
5666
5667 return 0;
5668}
5669
5670static int ipw2100_close(struct net_device *dev)
5671{
5672 struct ipw2100_priv *priv = ieee80211_priv(dev);
5673 unsigned long flags;
5674 struct list_head *element;
5675 struct ipw2100_tx_packet *packet;
5676
5677 IPW_DEBUG_INFO("enter\n");
5678
5679 spin_lock_irqsave(&priv->low_lock, flags);
5680
5681 if (priv->status & STATUS_ASSOCIATED)
5682 netif_carrier_off(dev);
5683 netif_stop_queue(dev);
5684
5685 /* Flush the TX queue ... */
5686 while (!list_empty(&priv->tx_pend_list)) {
5687 element = priv->tx_pend_list.next;
James Ketrenosee8e3652005-09-14 09:47:29 -05005688 packet = list_entry(element, struct ipw2100_tx_packet, list);
James Ketrenos2c86c272005-03-23 17:32:29 -06005689
5690 list_del(element);
5691 DEC_STAT(&priv->tx_pend_stat);
5692
5693 ieee80211_txb_free(packet->info.d_struct.txb);
5694 packet->info.d_struct.txb = NULL;
5695
5696 list_add_tail(element, &priv->tx_free_list);
5697 INC_STAT(&priv->tx_free_stat);
5698 }
5699 spin_unlock_irqrestore(&priv->low_lock, flags);
5700
5701 IPW_DEBUG_INFO("exit\n");
5702
5703 return 0;
5704}
5705
James Ketrenos2c86c272005-03-23 17:32:29 -06005706/*
5707 * TODO: Fix this function... its just wrong
5708 */
5709static void ipw2100_tx_timeout(struct net_device *dev)
5710{
5711 struct ipw2100_priv *priv = ieee80211_priv(dev);
5712
5713 priv->ieee->stats.tx_errors++;
5714
5715#ifdef CONFIG_IPW2100_MONITOR
5716 if (priv->ieee->iw_mode == IW_MODE_MONITOR)
5717 return;
5718#endif
5719
5720 IPW_DEBUG_INFO("%s: TX timed out. Scheduling firmware restart.\n",
5721 dev->name);
5722 schedule_reset(priv);
5723}
5724
James Ketrenos2c86c272005-03-23 17:32:29 -06005725/*
5726 * TODO: reimplement it so that it reads statistics
5727 * from the adapter using ordinal tables
5728 * instead of/in addition to collecting them
5729 * in the driver
5730 */
5731static struct net_device_stats *ipw2100_stats(struct net_device *dev)
5732{
5733 struct ipw2100_priv *priv = ieee80211_priv(dev);
5734
5735 return &priv->ieee->stats;
5736}
5737
James Ketrenos82328352005-08-24 22:33:31 -05005738#if WIRELESS_EXT < 18
5739/* Support for wpa_supplicant before WE-18, deprecated. */
James Ketrenos2c86c272005-03-23 17:32:29 -06005740
James Ketrenos82328352005-08-24 22:33:31 -05005741/* following definitions must match definitions in driver_ipw.c */
James Ketrenos2c86c272005-03-23 17:32:29 -06005742
5743#define IPW2100_IOCTL_WPA_SUPPLICANT SIOCIWFIRSTPRIV+30
5744
5745#define IPW2100_CMD_SET_WPA_PARAM 1
5746#define IPW2100_CMD_SET_WPA_IE 2
5747#define IPW2100_CMD_SET_ENCRYPTION 3
5748#define IPW2100_CMD_MLME 4
5749
5750#define IPW2100_PARAM_WPA_ENABLED 1
5751#define IPW2100_PARAM_TKIP_COUNTERMEASURES 2
5752#define IPW2100_PARAM_DROP_UNENCRYPTED 3
5753#define IPW2100_PARAM_PRIVACY_INVOKED 4
5754#define IPW2100_PARAM_AUTH_ALGS 5
5755#define IPW2100_PARAM_IEEE_802_1X 6
5756
5757#define IPW2100_MLME_STA_DEAUTH 1
5758#define IPW2100_MLME_STA_DISASSOC 2
5759
5760#define IPW2100_CRYPT_ERR_UNKNOWN_ALG 2
5761#define IPW2100_CRYPT_ERR_UNKNOWN_ADDR 3
5762#define IPW2100_CRYPT_ERR_CRYPT_INIT_FAILED 4
5763#define IPW2100_CRYPT_ERR_KEY_SET_FAILED 5
5764#define IPW2100_CRYPT_ERR_TX_KEY_SET_FAILED 6
5765#define IPW2100_CRYPT_ERR_CARD_CONF_FAILED 7
5766
5767#define IPW2100_CRYPT_ALG_NAME_LEN 16
5768
5769struct ipw2100_param {
5770 u32 cmd;
5771 u8 sta_addr[ETH_ALEN];
James Ketrenosee8e3652005-09-14 09:47:29 -05005772 union {
James Ketrenos2c86c272005-03-23 17:32:29 -06005773 struct {
5774 u8 name;
5775 u32 value;
5776 } wpa_param;
5777 struct {
5778 u32 len;
James Ketrenos82328352005-08-24 22:33:31 -05005779 u8 reserved[32];
5780 u8 data[0];
James Ketrenos2c86c272005-03-23 17:32:29 -06005781 } wpa_ie;
James Ketrenosee8e3652005-09-14 09:47:29 -05005782 struct {
James Ketrenos82328352005-08-24 22:33:31 -05005783 u32 command;
5784 u32 reason_code;
James Ketrenos2c86c272005-03-23 17:32:29 -06005785 } mlme;
5786 struct {
5787 u8 alg[IPW2100_CRYPT_ALG_NAME_LEN];
5788 u8 set_tx;
5789 u32 err;
5790 u8 idx;
James Ketrenosee8e3652005-09-14 09:47:29 -05005791 u8 seq[8]; /* sequence counter (set: RX, get: TX) */
James Ketrenos2c86c272005-03-23 17:32:29 -06005792 u16 key_len;
5793 u8 key[0];
5794 } crypt;
5795
5796 } u;
5797};
5798
James Ketrenos82328352005-08-24 22:33:31 -05005799/* end of driver_ipw.c code */
5800#endif /* WIRELESS_EXT < 18 */
James Ketrenos2c86c272005-03-23 17:32:29 -06005801
James Ketrenosee8e3652005-09-14 09:47:29 -05005802static int ipw2100_wpa_enable(struct ipw2100_priv *priv, int value)
5803{
James Ketrenos82328352005-08-24 22:33:31 -05005804 /* This is called when wpa_supplicant loads and closes the driver
5805 * interface. */
5806 priv->ieee->wpa_enabled = value;
5807 return 0;
James Ketrenos2c86c272005-03-23 17:32:29 -06005808}
5809
James Ketrenos82328352005-08-24 22:33:31 -05005810#if WIRELESS_EXT < 18
5811#define IW_AUTH_ALG_OPEN_SYSTEM 0x1
5812#define IW_AUTH_ALG_SHARED_KEY 0x2
5813#endif
James Ketrenos2c86c272005-03-23 17:32:29 -06005814
James Ketrenosee8e3652005-09-14 09:47:29 -05005815static int ipw2100_wpa_set_auth_algs(struct ipw2100_priv *priv, int value)
5816{
James Ketrenos2c86c272005-03-23 17:32:29 -06005817
5818 struct ieee80211_device *ieee = priv->ieee;
5819 struct ieee80211_security sec = {
5820 .flags = SEC_AUTH_MODE,
5821 };
5822 int ret = 0;
5823
James Ketrenos82328352005-08-24 22:33:31 -05005824 if (value & IW_AUTH_ALG_SHARED_KEY) {
James Ketrenos2c86c272005-03-23 17:32:29 -06005825 sec.auth_mode = WLAN_AUTH_SHARED_KEY;
5826 ieee->open_wep = 0;
James Ketrenos82328352005-08-24 22:33:31 -05005827 } else if (value & IW_AUTH_ALG_OPEN_SYSTEM) {
James Ketrenos2c86c272005-03-23 17:32:29 -06005828 sec.auth_mode = WLAN_AUTH_OPEN;
5829 ieee->open_wep = 1;
James Ketrenos82328352005-08-24 22:33:31 -05005830 } else
5831 return -EINVAL;
James Ketrenos2c86c272005-03-23 17:32:29 -06005832
5833 if (ieee->set_security)
5834 ieee->set_security(ieee->dev, &sec);
5835 else
5836 ret = -EOPNOTSUPP;
5837
5838 return ret;
5839}
5840
James Ketrenos2c86c272005-03-23 17:32:29 -06005841void ipw2100_wpa_assoc_frame(struct ipw2100_priv *priv,
James Ketrenos82328352005-08-24 22:33:31 -05005842 char *wpa_ie, int wpa_ie_len)
James Ketrenosee8e3652005-09-14 09:47:29 -05005843{
James Ketrenos2c86c272005-03-23 17:32:29 -06005844
5845 struct ipw2100_wpa_assoc_frame frame;
5846
5847 frame.fixed_ie_mask = 0;
5848
5849 /* copy WPA IE */
5850 memcpy(frame.var_ie, wpa_ie, wpa_ie_len);
5851 frame.var_ie_len = wpa_ie_len;
5852
5853 /* make sure WPA is enabled */
5854 ipw2100_wpa_enable(priv, 1);
5855 ipw2100_set_wpa_ie(priv, &frame, 0);
5856}
5857
James Ketrenos82328352005-08-24 22:33:31 -05005858#if WIRELESS_EXT < 18
5859static int ipw2100_wpa_set_param(struct net_device *dev, u8 name, u32 value)
5860{
James Ketrenos2c86c272005-03-23 17:32:29 -06005861 struct ipw2100_priv *priv = ieee80211_priv(dev);
James Ketrenos82328352005-08-24 22:33:31 -05005862 struct ieee80211_crypt_data *crypt;
5863 unsigned long flags;
James Ketrenosee8e3652005-09-14 09:47:29 -05005864 int ret = 0;
James Ketrenos2c86c272005-03-23 17:32:29 -06005865
James Ketrenosee8e3652005-09-14 09:47:29 -05005866 switch (name) {
5867 case IPW2100_PARAM_WPA_ENABLED:
5868 ret = ipw2100_wpa_enable(priv, value);
5869 break;
James Ketrenos2c86c272005-03-23 17:32:29 -06005870
James Ketrenosee8e3652005-09-14 09:47:29 -05005871 case IPW2100_PARAM_TKIP_COUNTERMEASURES:
James Ketrenos82328352005-08-24 22:33:31 -05005872 crypt = priv->ieee->crypt[priv->ieee->tx_keyidx];
James Ketrenos991d1cc2005-10-13 09:26:48 +00005873 if (!crypt || !crypt->ops->set_flags || !crypt->ops->get_flags)
James Ketrenos82328352005-08-24 22:33:31 -05005874 break;
James Ketrenos82328352005-08-24 22:33:31 -05005875
5876 flags = crypt->ops->get_flags(crypt->priv);
5877
5878 if (value)
5879 flags |= IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
5880 else
5881 flags &= ~IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
5882
5883 crypt->ops->set_flags(flags, crypt->priv);
5884
James Ketrenosee8e3652005-09-14 09:47:29 -05005885 break;
James Ketrenos2c86c272005-03-23 17:32:29 -06005886
Zhu Yie4cc2892005-07-13 12:30:34 -05005887 case IPW2100_PARAM_DROP_UNENCRYPTED:{
5888 /* See IW_AUTH_DROP_UNENCRYPTED handling for details */
5889 struct ieee80211_security sec = {
5890 .flags = SEC_ENABLED,
5891 .enabled = value,
5892 };
5893 priv->ieee->drop_unencrypted = value;
5894 /* We only change SEC_LEVEL for open mode. Others
5895 * are set by ipw_wpa_set_encryption.
5896 */
5897 if (!value) {
5898 sec.flags |= SEC_LEVEL;
5899 sec.level = SEC_LEVEL_0;
5900 } else {
5901 sec.flags |= SEC_LEVEL;
5902 sec.level = SEC_LEVEL_1;
5903 }
5904 if (priv->ieee->set_security)
5905 priv->ieee->set_security(priv->ieee->dev, &sec);
5906 break;
5907 }
James Ketrenos2c86c272005-03-23 17:32:29 -06005908
James Ketrenosee8e3652005-09-14 09:47:29 -05005909 case IPW2100_PARAM_PRIVACY_INVOKED:
5910 priv->ieee->privacy_invoked = value;
5911 break;
James Ketrenos2c86c272005-03-23 17:32:29 -06005912
James Ketrenosee8e3652005-09-14 09:47:29 -05005913 case IPW2100_PARAM_AUTH_ALGS:
5914 ret = ipw2100_wpa_set_auth_algs(priv, value);
5915 break;
James Ketrenos2c86c272005-03-23 17:32:29 -06005916
James Ketrenosee8e3652005-09-14 09:47:29 -05005917 case IPW2100_PARAM_IEEE_802_1X:
5918 priv->ieee->ieee802_1x = value;
5919 break;
James Ketrenos2c86c272005-03-23 17:32:29 -06005920
James Ketrenosee8e3652005-09-14 09:47:29 -05005921 default:
5922 printk(KERN_ERR DRV_NAME ": %s: Unknown WPA param: %d\n",
5923 dev->name, name);
5924 ret = -EOPNOTSUPP;
James Ketrenos2c86c272005-03-23 17:32:29 -06005925 }
5926
5927 return ret;
5928}
5929
James Ketrenosee8e3652005-09-14 09:47:29 -05005930static int ipw2100_wpa_mlme(struct net_device *dev, int command, int reason)
5931{
James Ketrenos2c86c272005-03-23 17:32:29 -06005932
5933 struct ipw2100_priv *priv = ieee80211_priv(dev);
James Ketrenosee8e3652005-09-14 09:47:29 -05005934 int ret = 0;
James Ketrenos2c86c272005-03-23 17:32:29 -06005935
James Ketrenosee8e3652005-09-14 09:47:29 -05005936 switch (command) {
5937 case IPW2100_MLME_STA_DEAUTH:
5938 // silently ignore
5939 break;
James Ketrenos2c86c272005-03-23 17:32:29 -06005940
James Ketrenosee8e3652005-09-14 09:47:29 -05005941 case IPW2100_MLME_STA_DISASSOC:
5942 ipw2100_disassociate_bssid(priv);
5943 break;
James Ketrenos2c86c272005-03-23 17:32:29 -06005944
James Ketrenosee8e3652005-09-14 09:47:29 -05005945 default:
5946 printk(KERN_ERR DRV_NAME ": %s: Unknown MLME request: %d\n",
5947 dev->name, command);
5948 ret = -EOPNOTSUPP;
James Ketrenos2c86c272005-03-23 17:32:29 -06005949 }
5950
5951 return ret;
5952}
James Ketrenos2c86c272005-03-23 17:32:29 -06005953
5954static int ipw2100_wpa_set_wpa_ie(struct net_device *dev,
James Ketrenosee8e3652005-09-14 09:47:29 -05005955 struct ipw2100_param *param, int plen)
5956{
James Ketrenos2c86c272005-03-23 17:32:29 -06005957
5958 struct ipw2100_priv *priv = ieee80211_priv(dev);
5959 struct ieee80211_device *ieee = priv->ieee;
5960 u8 *buf;
5961
James Ketrenosee8e3652005-09-14 09:47:29 -05005962 if (!ieee->wpa_enabled)
5963 return -EOPNOTSUPP;
James Ketrenos2c86c272005-03-23 17:32:29 -06005964
5965 if (param->u.wpa_ie.len > MAX_WPA_IE_LEN ||
James Ketrenosee8e3652005-09-14 09:47:29 -05005966 (param->u.wpa_ie.len && param->u.wpa_ie.data == NULL))
James Ketrenos2c86c272005-03-23 17:32:29 -06005967 return -EINVAL;
5968
James Ketrenosee8e3652005-09-14 09:47:29 -05005969 if (param->u.wpa_ie.len) {
James Ketrenos2c86c272005-03-23 17:32:29 -06005970 buf = kmalloc(param->u.wpa_ie.len, GFP_KERNEL);
5971 if (buf == NULL)
5972 return -ENOMEM;
5973
5974 memcpy(buf, param->u.wpa_ie.data, param->u.wpa_ie.len);
5975
5976 kfree(ieee->wpa_ie);
5977 ieee->wpa_ie = buf;
5978 ieee->wpa_ie_len = param->u.wpa_ie.len;
5979
5980 } else {
5981 kfree(ieee->wpa_ie);
5982 ieee->wpa_ie = NULL;
5983 ieee->wpa_ie_len = 0;
5984 }
5985
5986 ipw2100_wpa_assoc_frame(priv, ieee->wpa_ie, ieee->wpa_ie_len);
5987
5988 return 0;
5989}
5990
5991/* implementation borrowed from hostap driver */
5992
5993static int ipw2100_wpa_set_encryption(struct net_device *dev,
James Ketrenosee8e3652005-09-14 09:47:29 -05005994 struct ipw2100_param *param,
5995 int param_len)
5996{
James Ketrenos2c86c272005-03-23 17:32:29 -06005997 int ret = 0;
5998 struct ipw2100_priv *priv = ieee80211_priv(dev);
5999 struct ieee80211_device *ieee = priv->ieee;
6000 struct ieee80211_crypto_ops *ops;
6001 struct ieee80211_crypt_data **crypt;
6002
6003 struct ieee80211_security sec = {
6004 .flags = 0,
6005 };
6006
6007 param->u.crypt.err = 0;
6008 param->u.crypt.alg[IPW2100_CRYPT_ALG_NAME_LEN - 1] = '\0';
6009
6010 if (param_len !=
James Ketrenosee8e3652005-09-14 09:47:29 -05006011 (int)((char *)param->u.crypt.key - (char *)param) +
6012 param->u.crypt.key_len) {
6013 IPW_DEBUG_INFO("Len mismatch %d, %d\n", param_len,
6014 param->u.crypt.key_len);
James Ketrenos2c86c272005-03-23 17:32:29 -06006015 return -EINVAL;
6016 }
6017 if (param->sta_addr[0] == 0xff && param->sta_addr[1] == 0xff &&
6018 param->sta_addr[2] == 0xff && param->sta_addr[3] == 0xff &&
6019 param->sta_addr[4] == 0xff && param->sta_addr[5] == 0xff) {
6020 if (param->u.crypt.idx >= WEP_KEYS)
6021 return -EINVAL;
6022 crypt = &ieee->crypt[param->u.crypt.idx];
6023 } else {
6024 return -EINVAL;
6025 }
6026
25b645b2005-07-12 15:45:30 -05006027 sec.flags |= SEC_ENABLED | SEC_ENCRYPT;
James Ketrenos2c86c272005-03-23 17:32:29 -06006028 if (strcmp(param->u.crypt.alg, "none") == 0) {
James Ketrenosee8e3652005-09-14 09:47:29 -05006029 if (crypt) {
James Ketrenos2c86c272005-03-23 17:32:29 -06006030 sec.enabled = 0;
25b645b2005-07-12 15:45:30 -05006031 sec.encrypt = 0;
James Ketrenos2c86c272005-03-23 17:32:29 -06006032 sec.level = SEC_LEVEL_0;
25b645b2005-07-12 15:45:30 -05006033 sec.flags |= SEC_LEVEL;
James Ketrenos2c86c272005-03-23 17:32:29 -06006034 ieee80211_crypt_delayed_deinit(ieee, crypt);
6035 }
6036 goto done;
6037 }
6038 sec.enabled = 1;
25b645b2005-07-12 15:45:30 -05006039 sec.encrypt = 1;
James Ketrenos2c86c272005-03-23 17:32:29 -06006040
6041 ops = ieee80211_get_crypto_ops(param->u.crypt.alg);
6042 if (ops == NULL && strcmp(param->u.crypt.alg, "WEP") == 0) {
6043 request_module("ieee80211_crypt_wep");
6044 ops = ieee80211_get_crypto_ops(param->u.crypt.alg);
6045 } else if (ops == NULL && strcmp(param->u.crypt.alg, "TKIP") == 0) {
6046 request_module("ieee80211_crypt_tkip");
6047 ops = ieee80211_get_crypto_ops(param->u.crypt.alg);
6048 } else if (ops == NULL && strcmp(param->u.crypt.alg, "CCMP") == 0) {
6049 request_module("ieee80211_crypt_ccmp");
6050 ops = ieee80211_get_crypto_ops(param->u.crypt.alg);
6051 }
6052 if (ops == NULL) {
6053 IPW_DEBUG_INFO("%s: unknown crypto alg '%s'\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05006054 dev->name, param->u.crypt.alg);
James Ketrenos2c86c272005-03-23 17:32:29 -06006055 param->u.crypt.err = IPW2100_CRYPT_ERR_UNKNOWN_ALG;
6056 ret = -EINVAL;
6057 goto done;
6058 }
6059
6060 if (*crypt == NULL || (*crypt)->ops != ops) {
6061 struct ieee80211_crypt_data *new_crypt;
6062
6063 ieee80211_crypt_delayed_deinit(ieee, crypt);
6064
Panagiotis Issarisb69a3aa2005-11-08 00:03:15 +01006065 new_crypt = kzalloc(sizeof(struct ieee80211_crypt_data), GFP_KERNEL);
James Ketrenos2c86c272005-03-23 17:32:29 -06006066 if (new_crypt == NULL) {
6067 ret = -ENOMEM;
6068 goto done;
6069 }
James Ketrenos2c86c272005-03-23 17:32:29 -06006070 new_crypt->ops = ops;
6071 if (new_crypt->ops && try_module_get(new_crypt->ops->owner))
James Ketrenosee8e3652005-09-14 09:47:29 -05006072 new_crypt->priv =
6073 new_crypt->ops->init(param->u.crypt.idx);
James Ketrenos2c86c272005-03-23 17:32:29 -06006074
6075 if (new_crypt->priv == NULL) {
6076 kfree(new_crypt);
6077 param->u.crypt.err =
James Ketrenosee8e3652005-09-14 09:47:29 -05006078 IPW2100_CRYPT_ERR_CRYPT_INIT_FAILED;
James Ketrenos2c86c272005-03-23 17:32:29 -06006079 ret = -EINVAL;
6080 goto done;
6081 }
6082
6083 *crypt = new_crypt;
6084 }
6085
6086 if (param->u.crypt.key_len > 0 && (*crypt)->ops->set_key &&
6087 (*crypt)->ops->set_key(param->u.crypt.key,
6088 param->u.crypt.key_len, param->u.crypt.seq,
6089 (*crypt)->priv) < 0) {
James Ketrenosee8e3652005-09-14 09:47:29 -05006090 IPW_DEBUG_INFO("%s: key setting failed\n", dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06006091 param->u.crypt.err = IPW2100_CRYPT_ERR_KEY_SET_FAILED;
6092 ret = -EINVAL;
6093 goto done;
6094 }
6095
James Ketrenosee8e3652005-09-14 09:47:29 -05006096 if (param->u.crypt.set_tx) {
James Ketrenos2c86c272005-03-23 17:32:29 -06006097 ieee->tx_keyidx = param->u.crypt.idx;
6098 sec.active_key = param->u.crypt.idx;
6099 sec.flags |= SEC_ACTIVE_KEY;
6100 }
6101
James Ketrenosee8e3652005-09-14 09:47:29 -05006102 if (ops->name != NULL) {
James Ketrenos2c86c272005-03-23 17:32:29 -06006103
6104 if (strcmp(ops->name, "WEP") == 0) {
James Ketrenos82328352005-08-24 22:33:31 -05006105 memcpy(sec.keys[param->u.crypt.idx],
6106 param->u.crypt.key, param->u.crypt.key_len);
James Ketrenosee8e3652005-09-14 09:47:29 -05006107 sec.key_sizes[param->u.crypt.idx] =
6108 param->u.crypt.key_len;
James Ketrenos2c86c272005-03-23 17:32:29 -06006109 sec.flags |= (1 << param->u.crypt.idx);
6110 sec.flags |= SEC_LEVEL;
6111 sec.level = SEC_LEVEL_1;
6112 } else if (strcmp(ops->name, "TKIP") == 0) {
6113 sec.flags |= SEC_LEVEL;
6114 sec.level = SEC_LEVEL_2;
6115 } else if (strcmp(ops->name, "CCMP") == 0) {
6116 sec.flags |= SEC_LEVEL;
6117 sec.level = SEC_LEVEL_3;
6118 }
6119 }
James Ketrenosee8e3652005-09-14 09:47:29 -05006120 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06006121 if (ieee->set_security)
6122 ieee->set_security(ieee->dev, &sec);
6123
6124 /* Do not reset port if card is in Managed mode since resetting will
6125 * generate new IEEE 802.11 authentication which may end up in looping
6126 * with IEEE 802.1X. If your hardware requires a reset after WEP
6127 * configuration (for example... Prism2), implement the reset_port in
6128 * the callbacks structures used to initialize the 802.11 stack. */
6129 if (ieee->reset_on_keychange &&
6130 ieee->iw_mode != IW_MODE_INFRA &&
James Ketrenosee8e3652005-09-14 09:47:29 -05006131 ieee->reset_port && ieee->reset_port(dev)) {
James Ketrenos2c86c272005-03-23 17:32:29 -06006132 IPW_DEBUG_INFO("%s: reset_port failed\n", dev->name);
6133 param->u.crypt.err = IPW2100_CRYPT_ERR_CARD_CONF_FAILED;
6134 return -EINVAL;
6135 }
6136
6137 return ret;
6138}
6139
James Ketrenosee8e3652005-09-14 09:47:29 -05006140static int ipw2100_wpa_supplicant(struct net_device *dev, struct iw_point *p)
6141{
James Ketrenos2c86c272005-03-23 17:32:29 -06006142
6143 struct ipw2100_param *param;
James Ketrenosee8e3652005-09-14 09:47:29 -05006144 int ret = 0;
James Ketrenos2c86c272005-03-23 17:32:29 -06006145
6146 IPW_DEBUG_IOCTL("wpa_supplicant: len=%d\n", p->length);
6147
6148 if (p->length < sizeof(struct ipw2100_param) || !p->pointer)
6149 return -EINVAL;
6150
6151 param = (struct ipw2100_param *)kmalloc(p->length, GFP_KERNEL);
6152 if (param == NULL)
6153 return -ENOMEM;
6154
James Ketrenosee8e3652005-09-14 09:47:29 -05006155 if (copy_from_user(param, p->pointer, p->length)) {
James Ketrenos2c86c272005-03-23 17:32:29 -06006156 kfree(param);
6157 return -EFAULT;
6158 }
6159
James Ketrenosee8e3652005-09-14 09:47:29 -05006160 switch (param->cmd) {
James Ketrenos2c86c272005-03-23 17:32:29 -06006161
6162 case IPW2100_CMD_SET_WPA_PARAM:
6163 ret = ipw2100_wpa_set_param(dev, param->u.wpa_param.name,
6164 param->u.wpa_param.value);
6165 break;
6166
6167 case IPW2100_CMD_SET_WPA_IE:
6168 ret = ipw2100_wpa_set_wpa_ie(dev, param, p->length);
6169 break;
6170
6171 case IPW2100_CMD_SET_ENCRYPTION:
6172 ret = ipw2100_wpa_set_encryption(dev, param, p->length);
6173 break;
6174
6175 case IPW2100_CMD_MLME:
6176 ret = ipw2100_wpa_mlme(dev, param->u.mlme.command,
6177 param->u.mlme.reason_code);
6178 break;
6179
6180 default:
James Ketrenosee8e3652005-09-14 09:47:29 -05006181 printk(KERN_ERR DRV_NAME
6182 ": %s: Unknown WPA supplicant request: %d\n", dev->name,
6183 param->cmd);
James Ketrenos2c86c272005-03-23 17:32:29 -06006184 ret = -EOPNOTSUPP;
6185
6186 }
6187
6188 if (ret == 0 && copy_to_user(p->pointer, param, p->length))
6189 ret = -EFAULT;
6190
6191 kfree(param);
6192 return ret;
6193}
James Ketrenos2c86c272005-03-23 17:32:29 -06006194
6195static int ipw2100_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
6196{
James Ketrenosee8e3652005-09-14 09:47:29 -05006197 struct iwreq *wrq = (struct iwreq *)rq;
6198 int ret = -1;
6199 switch (cmd) {
6200 case IPW2100_IOCTL_WPA_SUPPLICANT:
James Ketrenos2c86c272005-03-23 17:32:29 -06006201 ret = ipw2100_wpa_supplicant(dev, &wrq->u.data);
6202 return ret;
6203
James Ketrenosee8e3652005-09-14 09:47:29 -05006204 default:
James Ketrenos2c86c272005-03-23 17:32:29 -06006205 return -EOPNOTSUPP;
6206 }
6207
James Ketrenos2c86c272005-03-23 17:32:29 -06006208 return -EOPNOTSUPP;
6209}
James Ketrenos82328352005-08-24 22:33:31 -05006210#endif /* WIRELESS_EXT < 18 */
James Ketrenos2c86c272005-03-23 17:32:29 -06006211
6212static void ipw_ethtool_get_drvinfo(struct net_device *dev,
6213 struct ethtool_drvinfo *info)
6214{
6215 struct ipw2100_priv *priv = ieee80211_priv(dev);
6216 char fw_ver[64], ucode_ver[64];
6217
6218 strcpy(info->driver, DRV_NAME);
6219 strcpy(info->version, DRV_VERSION);
6220
6221 ipw2100_get_fwversion(priv, fw_ver, sizeof(fw_ver));
6222 ipw2100_get_ucodeversion(priv, ucode_ver, sizeof(ucode_ver));
6223
6224 snprintf(info->fw_version, sizeof(info->fw_version), "%s:%d:%s",
6225 fw_ver, priv->eeprom_version, ucode_ver);
6226
6227 strcpy(info->bus_info, pci_name(priv->pci_dev));
6228}
6229
6230static u32 ipw2100_ethtool_get_link(struct net_device *dev)
6231{
James Ketrenosee8e3652005-09-14 09:47:29 -05006232 struct ipw2100_priv *priv = ieee80211_priv(dev);
6233 return (priv->status & STATUS_ASSOCIATED) ? 1 : 0;
James Ketrenos2c86c272005-03-23 17:32:29 -06006234}
6235
James Ketrenos2c86c272005-03-23 17:32:29 -06006236static struct ethtool_ops ipw2100_ethtool_ops = {
James Ketrenosee8e3652005-09-14 09:47:29 -05006237 .get_link = ipw2100_ethtool_get_link,
6238 .get_drvinfo = ipw_ethtool_get_drvinfo,
James Ketrenos2c86c272005-03-23 17:32:29 -06006239};
6240
6241static void ipw2100_hang_check(void *adapter)
6242{
6243 struct ipw2100_priv *priv = adapter;
6244 unsigned long flags;
6245 u32 rtc = 0xa5a5a5a5;
6246 u32 len = sizeof(rtc);
6247 int restart = 0;
6248
6249 spin_lock_irqsave(&priv->low_lock, flags);
6250
6251 if (priv->fatal_error != 0) {
6252 /* If fatal_error is set then we need to restart */
6253 IPW_DEBUG_INFO("%s: Hardware fatal error detected.\n",
6254 priv->net_dev->name);
6255
6256 restart = 1;
6257 } else if (ipw2100_get_ordinal(priv, IPW_ORD_RTC_TIME, &rtc, &len) ||
6258 (rtc == priv->last_rtc)) {
6259 /* Check if firmware is hung */
6260 IPW_DEBUG_INFO("%s: Firmware RTC stalled.\n",
6261 priv->net_dev->name);
6262
6263 restart = 1;
6264 }
6265
6266 if (restart) {
6267 /* Kill timer */
6268 priv->stop_hang_check = 1;
6269 priv->hangs++;
6270
6271 /* Restart the NIC */
6272 schedule_reset(priv);
6273 }
6274
6275 priv->last_rtc = rtc;
6276
6277 if (!priv->stop_hang_check)
6278 queue_delayed_work(priv->workqueue, &priv->hang_check, HZ / 2);
6279
6280 spin_unlock_irqrestore(&priv->low_lock, flags);
6281}
6282
James Ketrenos2c86c272005-03-23 17:32:29 -06006283static void ipw2100_rf_kill(void *adapter)
6284{
6285 struct ipw2100_priv *priv = adapter;
6286 unsigned long flags;
6287
6288 spin_lock_irqsave(&priv->low_lock, flags);
6289
6290 if (rf_kill_active(priv)) {
6291 IPW_DEBUG_RF_KILL("RF Kill active, rescheduling GPIO check\n");
6292 if (!priv->stop_rf_kill)
6293 queue_delayed_work(priv->workqueue, &priv->rf_kill, HZ);
6294 goto exit_unlock;
6295 }
6296
6297 /* RF Kill is now disabled, so bring the device back up */
6298
6299 if (!(priv->status & STATUS_RF_KILL_MASK)) {
6300 IPW_DEBUG_RF_KILL("HW RF Kill no longer active, restarting "
6301 "device\n");
6302 schedule_reset(priv);
6303 } else
6304 IPW_DEBUG_RF_KILL("HW RF Kill deactivated. SW RF Kill still "
6305 "enabled\n");
6306
James Ketrenosee8e3652005-09-14 09:47:29 -05006307 exit_unlock:
James Ketrenos2c86c272005-03-23 17:32:29 -06006308 spin_unlock_irqrestore(&priv->low_lock, flags);
6309}
6310
6311static void ipw2100_irq_tasklet(struct ipw2100_priv *priv);
6312
6313/* Look into using netdev destructor to shutdown ieee80211? */
6314
James Ketrenosee8e3652005-09-14 09:47:29 -05006315static struct net_device *ipw2100_alloc_device(struct pci_dev *pci_dev,
6316 void __iomem * base_addr,
6317 unsigned long mem_start,
6318 unsigned long mem_len)
James Ketrenos2c86c272005-03-23 17:32:29 -06006319{
6320 struct ipw2100_priv *priv;
6321 struct net_device *dev;
6322
6323 dev = alloc_ieee80211(sizeof(struct ipw2100_priv));
6324 if (!dev)
6325 return NULL;
6326 priv = ieee80211_priv(dev);
6327 priv->ieee = netdev_priv(dev);
6328 priv->pci_dev = pci_dev;
6329 priv->net_dev = dev;
6330
6331 priv->ieee->hard_start_xmit = ipw2100_tx;
6332 priv->ieee->set_security = shim__set_security;
6333
James Ketrenos82328352005-08-24 22:33:31 -05006334 priv->ieee->perfect_rssi = -20;
6335 priv->ieee->worst_rssi = -85;
6336
James Ketrenos2c86c272005-03-23 17:32:29 -06006337 dev->open = ipw2100_open;
6338 dev->stop = ipw2100_close;
6339 dev->init = ipw2100_net_init;
James Ketrenos82328352005-08-24 22:33:31 -05006340#if WIRELESS_EXT < 18
James Ketrenos2c86c272005-03-23 17:32:29 -06006341 dev->do_ioctl = ipw2100_ioctl;
James Ketrenos82328352005-08-24 22:33:31 -05006342#endif
James Ketrenos2c86c272005-03-23 17:32:29 -06006343 dev->get_stats = ipw2100_stats;
6344 dev->ethtool_ops = &ipw2100_ethtool_ops;
6345 dev->tx_timeout = ipw2100_tx_timeout;
6346 dev->wireless_handlers = &ipw2100_wx_handler_def;
6347 dev->get_wireless_stats = ipw2100_wx_wireless_stats;
6348 dev->set_mac_address = ipw2100_set_address;
James Ketrenosee8e3652005-09-14 09:47:29 -05006349 dev->watchdog_timeo = 3 * HZ;
James Ketrenos2c86c272005-03-23 17:32:29 -06006350 dev->irq = 0;
6351
6352 dev->base_addr = (unsigned long)base_addr;
6353 dev->mem_start = mem_start;
6354 dev->mem_end = dev->mem_start + mem_len - 1;
6355
6356 /* NOTE: We don't use the wireless_handlers hook
6357 * in dev as the system will start throwing WX requests
6358 * to us before we're actually initialized and it just
6359 * ends up causing problems. So, we just handle
6360 * the WX extensions through the ipw2100_ioctl interface */
6361
James Ketrenos2c86c272005-03-23 17:32:29 -06006362 /* memset() puts everything to 0, so we only have explicitely set
6363 * those values that need to be something else */
6364
6365 /* If power management is turned on, default to AUTO mode */
6366 priv->power_mode = IPW_POWER_AUTO;
6367
James Ketrenos82328352005-08-24 22:33:31 -05006368#ifdef CONFIG_IPW2100_MONITOR
6369 priv->config |= CFG_CRC_CHECK;
6370#endif
James Ketrenos2c86c272005-03-23 17:32:29 -06006371 priv->ieee->wpa_enabled = 0;
James Ketrenos2c86c272005-03-23 17:32:29 -06006372 priv->ieee->drop_unencrypted = 0;
6373 priv->ieee->privacy_invoked = 0;
6374 priv->ieee->ieee802_1x = 1;
James Ketrenos2c86c272005-03-23 17:32:29 -06006375
6376 /* Set module parameters */
6377 switch (mode) {
6378 case 1:
6379 priv->ieee->iw_mode = IW_MODE_ADHOC;
6380 break;
6381#ifdef CONFIG_IPW2100_MONITOR
6382 case 2:
6383 priv->ieee->iw_mode = IW_MODE_MONITOR;
6384 break;
6385#endif
6386 default:
6387 case 0:
6388 priv->ieee->iw_mode = IW_MODE_INFRA;
6389 break;
6390 }
6391
6392 if (disable == 1)
6393 priv->status |= STATUS_RF_KILL_SW;
6394
6395 if (channel != 0 &&
James Ketrenosee8e3652005-09-14 09:47:29 -05006396 ((channel >= REG_MIN_CHANNEL) && (channel <= REG_MAX_CHANNEL))) {
James Ketrenos2c86c272005-03-23 17:32:29 -06006397 priv->config |= CFG_STATIC_CHANNEL;
6398 priv->channel = channel;
6399 }
6400
6401 if (associate)
6402 priv->config |= CFG_ASSOCIATE;
6403
6404 priv->beacon_interval = DEFAULT_BEACON_INTERVAL;
6405 priv->short_retry_limit = DEFAULT_SHORT_RETRY_LIMIT;
6406 priv->long_retry_limit = DEFAULT_LONG_RETRY_LIMIT;
6407 priv->rts_threshold = DEFAULT_RTS_THRESHOLD | RTS_DISABLED;
6408 priv->frag_threshold = DEFAULT_FTS | FRAG_DISABLED;
6409 priv->tx_power = IPW_TX_POWER_DEFAULT;
6410 priv->tx_rates = DEFAULT_TX_RATES;
6411
6412 strcpy(priv->nick, "ipw2100");
6413
6414 spin_lock_init(&priv->low_lock);
6415 sema_init(&priv->action_sem, 1);
6416 sema_init(&priv->adapter_sem, 1);
6417
6418 init_waitqueue_head(&priv->wait_command_queue);
6419
6420 netif_carrier_off(dev);
6421
6422 INIT_LIST_HEAD(&priv->msg_free_list);
6423 INIT_LIST_HEAD(&priv->msg_pend_list);
6424 INIT_STAT(&priv->msg_free_stat);
6425 INIT_STAT(&priv->msg_pend_stat);
6426
6427 INIT_LIST_HEAD(&priv->tx_free_list);
6428 INIT_LIST_HEAD(&priv->tx_pend_list);
6429 INIT_STAT(&priv->tx_free_stat);
6430 INIT_STAT(&priv->tx_pend_stat);
6431
6432 INIT_LIST_HEAD(&priv->fw_pend_list);
6433 INIT_STAT(&priv->fw_pend_stat);
6434
James Ketrenos2c86c272005-03-23 17:32:29 -06006435 priv->workqueue = create_workqueue(DRV_NAME);
James Ketrenos392d0f62005-09-07 18:39:03 -05006436
James Ketrenos2c86c272005-03-23 17:32:29 -06006437 INIT_WORK(&priv->reset_work,
6438 (void (*)(void *))ipw2100_reset_adapter, priv);
6439 INIT_WORK(&priv->security_work,
6440 (void (*)(void *))ipw2100_security_work, priv);
6441 INIT_WORK(&priv->wx_event_work,
6442 (void (*)(void *))ipw2100_wx_event_work, priv);
6443 INIT_WORK(&priv->hang_check, ipw2100_hang_check, priv);
6444 INIT_WORK(&priv->rf_kill, ipw2100_rf_kill, priv);
6445
6446 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
6447 ipw2100_irq_tasklet, (unsigned long)priv);
6448
6449 /* NOTE: We do not start the deferred work for status checks yet */
6450 priv->stop_rf_kill = 1;
6451 priv->stop_hang_check = 1;
6452
6453 return dev;
6454}
6455
James Ketrenos2c86c272005-03-23 17:32:29 -06006456static int ipw2100_pci_init_one(struct pci_dev *pci_dev,
6457 const struct pci_device_id *ent)
6458{
6459 unsigned long mem_start, mem_len, mem_flags;
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01006460 void __iomem *base_addr = NULL;
James Ketrenos2c86c272005-03-23 17:32:29 -06006461 struct net_device *dev = NULL;
6462 struct ipw2100_priv *priv = NULL;
6463 int err = 0;
6464 int registered = 0;
6465 u32 val;
6466
6467 IPW_DEBUG_INFO("enter\n");
6468
6469 mem_start = pci_resource_start(pci_dev, 0);
6470 mem_len = pci_resource_len(pci_dev, 0);
6471 mem_flags = pci_resource_flags(pci_dev, 0);
6472
6473 if ((mem_flags & IORESOURCE_MEM) != IORESOURCE_MEM) {
6474 IPW_DEBUG_INFO("weird - resource type is not memory\n");
6475 err = -ENODEV;
6476 goto fail;
6477 }
6478
6479 base_addr = ioremap_nocache(mem_start, mem_len);
6480 if (!base_addr) {
6481 printk(KERN_WARNING DRV_NAME
6482 "Error calling ioremap_nocache.\n");
6483 err = -EIO;
6484 goto fail;
6485 }
6486
6487 /* allocate and initialize our net_device */
6488 dev = ipw2100_alloc_device(pci_dev, base_addr, mem_start, mem_len);
6489 if (!dev) {
6490 printk(KERN_WARNING DRV_NAME
6491 "Error calling ipw2100_alloc_device.\n");
6492 err = -ENOMEM;
6493 goto fail;
6494 }
6495
6496 /* set up PCI mappings for device */
6497 err = pci_enable_device(pci_dev);
6498 if (err) {
6499 printk(KERN_WARNING DRV_NAME
6500 "Error calling pci_enable_device.\n");
6501 return err;
6502 }
6503
6504 priv = ieee80211_priv(dev);
6505
6506 pci_set_master(pci_dev);
6507 pci_set_drvdata(pci_dev, priv);
6508
Tobias Klauser05743d12005-06-20 14:28:40 -07006509 err = pci_set_dma_mask(pci_dev, DMA_32BIT_MASK);
James Ketrenos2c86c272005-03-23 17:32:29 -06006510 if (err) {
6511 printk(KERN_WARNING DRV_NAME
6512 "Error calling pci_set_dma_mask.\n");
6513 pci_disable_device(pci_dev);
6514 return err;
6515 }
6516
6517 err = pci_request_regions(pci_dev, DRV_NAME);
6518 if (err) {
6519 printk(KERN_WARNING DRV_NAME
6520 "Error calling pci_request_regions.\n");
6521 pci_disable_device(pci_dev);
6522 return err;
6523 }
6524
James Ketrenosee8e3652005-09-14 09:47:29 -05006525 /* We disable the RETRY_TIMEOUT register (0x41) to keep
James Ketrenos2c86c272005-03-23 17:32:29 -06006526 * PCI Tx retries from interfering with C3 CPU state */
6527 pci_read_config_dword(pci_dev, 0x40, &val);
6528 if ((val & 0x0000ff00) != 0)
6529 pci_write_config_dword(pci_dev, 0x40, val & 0xffff00ff);
6530
Pavel Machek8724a112005-06-20 14:28:43 -07006531 pci_set_power_state(pci_dev, PCI_D0);
James Ketrenos2c86c272005-03-23 17:32:29 -06006532
6533 if (!ipw2100_hw_is_adapter_in_system(dev)) {
6534 printk(KERN_WARNING DRV_NAME
6535 "Device not found via register read.\n");
6536 err = -ENODEV;
6537 goto fail;
6538 }
6539
6540 SET_NETDEV_DEV(dev, &pci_dev->dev);
6541
6542 /* Force interrupts to be shut off on the device */
6543 priv->status |= STATUS_INT_ENABLED;
6544 ipw2100_disable_interrupts(priv);
6545
6546 /* Allocate and initialize the Tx/Rx queues and lists */
6547 if (ipw2100_queues_allocate(priv)) {
6548 printk(KERN_WARNING DRV_NAME
6549 "Error calilng ipw2100_queues_allocate.\n");
6550 err = -ENOMEM;
6551 goto fail;
6552 }
6553 ipw2100_queues_initialize(priv);
6554
6555 err = request_irq(pci_dev->irq,
James Ketrenosee8e3652005-09-14 09:47:29 -05006556 ipw2100_interrupt, SA_SHIRQ, dev->name, priv);
James Ketrenos2c86c272005-03-23 17:32:29 -06006557 if (err) {
6558 printk(KERN_WARNING DRV_NAME
James Ketrenosee8e3652005-09-14 09:47:29 -05006559 "Error calling request_irq: %d.\n", pci_dev->irq);
James Ketrenos2c86c272005-03-23 17:32:29 -06006560 goto fail;
6561 }
6562 dev->irq = pci_dev->irq;
6563
6564 IPW_DEBUG_INFO("Attempting to register device...\n");
6565
6566 SET_MODULE_OWNER(dev);
6567
6568 printk(KERN_INFO DRV_NAME
6569 ": Detected Intel PRO/Wireless 2100 Network Connection\n");
6570
6571 /* Bring up the interface. Pre 0.46, after we registered the
6572 * network device we would call ipw2100_up. This introduced a race
6573 * condition with newer hotplug configurations (network was coming
6574 * up and making calls before the device was initialized).
6575 *
6576 * If we called ipw2100_up before we registered the device, then the
6577 * device name wasn't registered. So, we instead use the net_dev->init
6578 * member to call a function that then just turns and calls ipw2100_up.
6579 * net_dev->init is called after name allocation but before the
6580 * notifier chain is called */
6581 down(&priv->action_sem);
6582 err = register_netdev(dev);
6583 if (err) {
6584 printk(KERN_WARNING DRV_NAME
6585 "Error calling register_netdev.\n");
6586 goto fail_unlock;
6587 }
6588 registered = 1;
6589
6590 IPW_DEBUG_INFO("%s: Bound to %s\n", dev->name, pci_name(pci_dev));
6591
6592 /* perform this after register_netdev so that dev->name is set */
6593 sysfs_create_group(&pci_dev->dev.kobj, &ipw2100_attribute_group);
James Ketrenos2c86c272005-03-23 17:32:29 -06006594
6595 /* If the RF Kill switch is disabled, go ahead and complete the
6596 * startup sequence */
6597 if (!(priv->status & STATUS_RF_KILL_MASK)) {
6598 /* Enable the adapter - sends HOST_COMPLETE */
6599 if (ipw2100_enable_adapter(priv)) {
6600 printk(KERN_WARNING DRV_NAME
6601 ": %s: failed in call to enable adapter.\n",
6602 priv->net_dev->name);
6603 ipw2100_hw_stop_adapter(priv);
6604 err = -EIO;
6605 goto fail_unlock;
6606 }
6607
6608 /* Start a scan . . . */
6609 ipw2100_set_scan_options(priv);
6610 ipw2100_start_scan(priv);
6611 }
6612
6613 IPW_DEBUG_INFO("exit\n");
6614
6615 priv->status |= STATUS_INITIALIZED;
6616
6617 up(&priv->action_sem);
6618
6619 return 0;
6620
James Ketrenosee8e3652005-09-14 09:47:29 -05006621 fail_unlock:
James Ketrenos2c86c272005-03-23 17:32:29 -06006622 up(&priv->action_sem);
6623
James Ketrenosee8e3652005-09-14 09:47:29 -05006624 fail:
James Ketrenos2c86c272005-03-23 17:32:29 -06006625 if (dev) {
6626 if (registered)
6627 unregister_netdev(dev);
6628
6629 ipw2100_hw_stop_adapter(priv);
6630
6631 ipw2100_disable_interrupts(priv);
6632
6633 if (dev->irq)
6634 free_irq(dev->irq, priv);
6635
6636 ipw2100_kill_workqueue(priv);
6637
6638 /* These are safe to call even if they weren't allocated */
6639 ipw2100_queues_free(priv);
James Ketrenosee8e3652005-09-14 09:47:29 -05006640 sysfs_remove_group(&pci_dev->dev.kobj,
6641 &ipw2100_attribute_group);
James Ketrenos2c86c272005-03-23 17:32:29 -06006642
6643 free_ieee80211(dev);
6644 pci_set_drvdata(pci_dev, NULL);
6645 }
6646
6647 if (base_addr)
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01006648 iounmap(base_addr);
James Ketrenos2c86c272005-03-23 17:32:29 -06006649
6650 pci_release_regions(pci_dev);
6651 pci_disable_device(pci_dev);
6652
6653 return err;
6654}
6655
6656static void __devexit ipw2100_pci_remove_one(struct pci_dev *pci_dev)
6657{
6658 struct ipw2100_priv *priv = pci_get_drvdata(pci_dev);
6659 struct net_device *dev;
6660
6661 if (priv) {
6662 down(&priv->action_sem);
6663
6664 priv->status &= ~STATUS_INITIALIZED;
6665
6666 dev = priv->net_dev;
James Ketrenosee8e3652005-09-14 09:47:29 -05006667 sysfs_remove_group(&pci_dev->dev.kobj,
6668 &ipw2100_attribute_group);
James Ketrenos2c86c272005-03-23 17:32:29 -06006669
6670#ifdef CONFIG_PM
6671 if (ipw2100_firmware.version)
6672 ipw2100_release_firmware(priv, &ipw2100_firmware);
6673#endif
6674 /* Take down the hardware */
6675 ipw2100_down(priv);
6676
6677 /* Release the semaphore so that the network subsystem can
6678 * complete any needed calls into the driver... */
6679 up(&priv->action_sem);
6680
6681 /* Unregister the device first - this results in close()
6682 * being called if the device is open. If we free storage
6683 * first, then close() will crash. */
6684 unregister_netdev(dev);
6685
6686 /* ipw2100_down will ensure that there is no more pending work
6687 * in the workqueue's, so we can safely remove them now. */
6688 ipw2100_kill_workqueue(priv);
6689
6690 ipw2100_queues_free(priv);
6691
6692 /* Free potential debugging firmware snapshot */
6693 ipw2100_snapshot_free(priv);
6694
6695 if (dev->irq)
6696 free_irq(dev->irq, priv);
6697
6698 if (dev->base_addr)
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01006699 iounmap((void __iomem *)dev->base_addr);
James Ketrenos2c86c272005-03-23 17:32:29 -06006700
6701 free_ieee80211(dev);
6702 }
6703
6704 pci_release_regions(pci_dev);
6705 pci_disable_device(pci_dev);
6706
6707 IPW_DEBUG_INFO("exit\n");
6708}
6709
James Ketrenos2c86c272005-03-23 17:32:29 -06006710#ifdef CONFIG_PM
James Ketrenos2c86c272005-03-23 17:32:29 -06006711static int ipw2100_suspend(struct pci_dev *pci_dev, pm_message_t state)
James Ketrenos2c86c272005-03-23 17:32:29 -06006712{
6713 struct ipw2100_priv *priv = pci_get_drvdata(pci_dev);
6714 struct net_device *dev = priv->net_dev;
6715
James Ketrenosee8e3652005-09-14 09:47:29 -05006716 IPW_DEBUG_INFO("%s: Going into suspend...\n", dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06006717
6718 down(&priv->action_sem);
6719 if (priv->status & STATUS_INITIALIZED) {
6720 /* Take down the device; powers it off, etc. */
6721 ipw2100_down(priv);
6722 }
6723
6724 /* Remove the PRESENT state of the device */
6725 netif_device_detach(dev);
6726
James Ketrenos2c86c272005-03-23 17:32:29 -06006727 pci_save_state(pci_dev);
James Ketrenosee8e3652005-09-14 09:47:29 -05006728 pci_disable_device(pci_dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06006729 pci_set_power_state(pci_dev, PCI_D3hot);
James Ketrenos2c86c272005-03-23 17:32:29 -06006730
6731 up(&priv->action_sem);
6732
6733 return 0;
6734}
6735
6736static int ipw2100_resume(struct pci_dev *pci_dev)
6737{
6738 struct ipw2100_priv *priv = pci_get_drvdata(pci_dev);
6739 struct net_device *dev = priv->net_dev;
6740 u32 val;
6741
6742 if (IPW2100_PM_DISABLED)
6743 return 0;
6744
6745 down(&priv->action_sem);
6746
James Ketrenosee8e3652005-09-14 09:47:29 -05006747 IPW_DEBUG_INFO("%s: Coming out of suspend...\n", dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06006748
James Ketrenos2c86c272005-03-23 17:32:29 -06006749 pci_set_power_state(pci_dev, PCI_D0);
James Ketrenos2c86c272005-03-23 17:32:29 -06006750 pci_enable_device(pci_dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06006751 pci_restore_state(pci_dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06006752
6753 /*
6754 * Suspend/Resume resets the PCI configuration space, so we have to
6755 * re-disable the RETRY_TIMEOUT register (0x41) to keep PCI Tx retries
6756 * from interfering with C3 CPU state. pci_restore_state won't help
6757 * here since it only restores the first 64 bytes pci config header.
6758 */
6759 pci_read_config_dword(pci_dev, 0x40, &val);
6760 if ((val & 0x0000ff00) != 0)
6761 pci_write_config_dword(pci_dev, 0x40, val & 0xffff00ff);
6762
6763 /* Set the device back into the PRESENT state; this will also wake
6764 * the queue of needed */
6765 netif_device_attach(dev);
6766
James Ketrenosee8e3652005-09-14 09:47:29 -05006767 /* Bring the device back up */
6768 if (!(priv->status & STATUS_RF_KILL_SW))
6769 ipw2100_up(priv, 0);
James Ketrenos2c86c272005-03-23 17:32:29 -06006770
6771 up(&priv->action_sem);
6772
6773 return 0;
6774}
6775#endif
6776
James Ketrenos2c86c272005-03-23 17:32:29 -06006777#define IPW2100_DEV_ID(x) { PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, x }
6778
6779static struct pci_device_id ipw2100_pci_id_table[] __devinitdata = {
James Ketrenosee8e3652005-09-14 09:47:29 -05006780 IPW2100_DEV_ID(0x2520), /* IN 2100A mPCI 3A */
6781 IPW2100_DEV_ID(0x2521), /* IN 2100A mPCI 3B */
6782 IPW2100_DEV_ID(0x2524), /* IN 2100A mPCI 3B */
6783 IPW2100_DEV_ID(0x2525), /* IN 2100A mPCI 3B */
6784 IPW2100_DEV_ID(0x2526), /* IN 2100A mPCI Gen A3 */
6785 IPW2100_DEV_ID(0x2522), /* IN 2100 mPCI 3B */
6786 IPW2100_DEV_ID(0x2523), /* IN 2100 mPCI 3A */
6787 IPW2100_DEV_ID(0x2527), /* IN 2100 mPCI 3B */
6788 IPW2100_DEV_ID(0x2528), /* IN 2100 mPCI 3B */
6789 IPW2100_DEV_ID(0x2529), /* IN 2100 mPCI 3B */
6790 IPW2100_DEV_ID(0x252B), /* IN 2100 mPCI 3A */
6791 IPW2100_DEV_ID(0x252C), /* IN 2100 mPCI 3A */
6792 IPW2100_DEV_ID(0x252D), /* IN 2100 mPCI 3A */
James Ketrenos2c86c272005-03-23 17:32:29 -06006793
James Ketrenosee8e3652005-09-14 09:47:29 -05006794 IPW2100_DEV_ID(0x2550), /* IB 2100A mPCI 3B */
6795 IPW2100_DEV_ID(0x2551), /* IB 2100 mPCI 3B */
6796 IPW2100_DEV_ID(0x2553), /* IB 2100 mPCI 3B */
6797 IPW2100_DEV_ID(0x2554), /* IB 2100 mPCI 3B */
6798 IPW2100_DEV_ID(0x2555), /* IB 2100 mPCI 3B */
James Ketrenos2c86c272005-03-23 17:32:29 -06006799
James Ketrenosee8e3652005-09-14 09:47:29 -05006800 IPW2100_DEV_ID(0x2560), /* DE 2100A mPCI 3A */
6801 IPW2100_DEV_ID(0x2562), /* DE 2100A mPCI 3A */
6802 IPW2100_DEV_ID(0x2563), /* DE 2100A mPCI 3A */
6803 IPW2100_DEV_ID(0x2561), /* DE 2100 mPCI 3A */
6804 IPW2100_DEV_ID(0x2565), /* DE 2100 mPCI 3A */
6805 IPW2100_DEV_ID(0x2566), /* DE 2100 mPCI 3A */
6806 IPW2100_DEV_ID(0x2567), /* DE 2100 mPCI 3A */
James Ketrenos2c86c272005-03-23 17:32:29 -06006807
James Ketrenosee8e3652005-09-14 09:47:29 -05006808 IPW2100_DEV_ID(0x2570), /* GA 2100 mPCI 3B */
James Ketrenos2c86c272005-03-23 17:32:29 -06006809
James Ketrenosee8e3652005-09-14 09:47:29 -05006810 IPW2100_DEV_ID(0x2580), /* TO 2100A mPCI 3B */
6811 IPW2100_DEV_ID(0x2582), /* TO 2100A mPCI 3B */
6812 IPW2100_DEV_ID(0x2583), /* TO 2100A mPCI 3B */
6813 IPW2100_DEV_ID(0x2581), /* TO 2100 mPCI 3B */
6814 IPW2100_DEV_ID(0x2585), /* TO 2100 mPCI 3B */
6815 IPW2100_DEV_ID(0x2586), /* TO 2100 mPCI 3B */
6816 IPW2100_DEV_ID(0x2587), /* TO 2100 mPCI 3B */
James Ketrenos2c86c272005-03-23 17:32:29 -06006817
James Ketrenosee8e3652005-09-14 09:47:29 -05006818 IPW2100_DEV_ID(0x2590), /* SO 2100A mPCI 3B */
6819 IPW2100_DEV_ID(0x2592), /* SO 2100A mPCI 3B */
6820 IPW2100_DEV_ID(0x2591), /* SO 2100 mPCI 3B */
6821 IPW2100_DEV_ID(0x2593), /* SO 2100 mPCI 3B */
6822 IPW2100_DEV_ID(0x2596), /* SO 2100 mPCI 3B */
6823 IPW2100_DEV_ID(0x2598), /* SO 2100 mPCI 3B */
James Ketrenos2c86c272005-03-23 17:32:29 -06006824
James Ketrenosee8e3652005-09-14 09:47:29 -05006825 IPW2100_DEV_ID(0x25A0), /* HP 2100 mPCI 3B */
James Ketrenos2c86c272005-03-23 17:32:29 -06006826 {0,},
6827};
6828
6829MODULE_DEVICE_TABLE(pci, ipw2100_pci_id_table);
6830
6831static struct pci_driver ipw2100_pci_driver = {
6832 .name = DRV_NAME,
6833 .id_table = ipw2100_pci_id_table,
6834 .probe = ipw2100_pci_init_one,
6835 .remove = __devexit_p(ipw2100_pci_remove_one),
6836#ifdef CONFIG_PM
6837 .suspend = ipw2100_suspend,
6838 .resume = ipw2100_resume,
6839#endif
6840};
6841
James Ketrenos2c86c272005-03-23 17:32:29 -06006842/**
6843 * Initialize the ipw2100 driver/module
6844 *
6845 * @returns 0 if ok, < 0 errno node con error.
6846 *
6847 * Note: we cannot init the /proc stuff until the PCI driver is there,
6848 * or we risk an unlikely race condition on someone accessing
6849 * uninitialized data in the PCI dev struct through /proc.
6850 */
6851static int __init ipw2100_init(void)
6852{
6853 int ret;
6854
6855 printk(KERN_INFO DRV_NAME ": %s, %s\n", DRV_DESCRIPTION, DRV_VERSION);
6856 printk(KERN_INFO DRV_NAME ": %s\n", DRV_COPYRIGHT);
6857
James Ketrenos2c86c272005-03-23 17:32:29 -06006858 ret = pci_module_init(&ipw2100_pci_driver);
6859
6860#ifdef CONFIG_IPW_DEBUG
6861 ipw2100_debug_level = debug;
6862 driver_create_file(&ipw2100_pci_driver.driver,
6863 &driver_attr_debug_level);
6864#endif
6865
6866 return ret;
6867}
6868
James Ketrenos2c86c272005-03-23 17:32:29 -06006869/**
6870 * Cleanup ipw2100 driver registration
6871 */
6872static void __exit ipw2100_exit(void)
6873{
6874 /* FIXME: IPG: check that we have no instances of the devices open */
6875#ifdef CONFIG_IPW_DEBUG
6876 driver_remove_file(&ipw2100_pci_driver.driver,
6877 &driver_attr_debug_level);
6878#endif
6879 pci_unregister_driver(&ipw2100_pci_driver);
6880}
6881
6882module_init(ipw2100_init);
6883module_exit(ipw2100_exit);
6884
6885#define WEXT_USECHANNELS 1
6886
Jiri Bencc4aee8c2005-08-25 20:04:43 -04006887static const long ipw2100_frequencies[] = {
James Ketrenos2c86c272005-03-23 17:32:29 -06006888 2412, 2417, 2422, 2427,
6889 2432, 2437, 2442, 2447,
6890 2452, 2457, 2462, 2467,
6891 2472, 2484
6892};
6893
6894#define FREQ_COUNT (sizeof(ipw2100_frequencies) / \
6895 sizeof(ipw2100_frequencies[0]))
6896
Jiri Bencc4aee8c2005-08-25 20:04:43 -04006897static const long ipw2100_rates_11b[] = {
James Ketrenos2c86c272005-03-23 17:32:29 -06006898 1000000,
6899 2000000,
6900 5500000,
6901 11000000
6902};
6903
6904#define RATE_COUNT (sizeof(ipw2100_rates_11b) / sizeof(ipw2100_rates_11b[0]))
6905
6906static int ipw2100_wx_get_name(struct net_device *dev,
6907 struct iw_request_info *info,
6908 union iwreq_data *wrqu, char *extra)
6909{
6910 /*
6911 * This can be called at any time. No action lock required
6912 */
6913
6914 struct ipw2100_priv *priv = ieee80211_priv(dev);
6915 if (!(priv->status & STATUS_ASSOCIATED))
6916 strcpy(wrqu->name, "unassociated");
6917 else
6918 snprintf(wrqu->name, IFNAMSIZ, "IEEE 802.11b");
6919
6920 IPW_DEBUG_WX("Name: %s\n", wrqu->name);
6921 return 0;
6922}
6923
James Ketrenos2c86c272005-03-23 17:32:29 -06006924static int ipw2100_wx_set_freq(struct net_device *dev,
6925 struct iw_request_info *info,
6926 union iwreq_data *wrqu, char *extra)
6927{
6928 struct ipw2100_priv *priv = ieee80211_priv(dev);
6929 struct iw_freq *fwrq = &wrqu->freq;
6930 int err = 0;
6931
6932 if (priv->ieee->iw_mode == IW_MODE_INFRA)
6933 return -EOPNOTSUPP;
6934
6935 down(&priv->action_sem);
6936 if (!(priv->status & STATUS_INITIALIZED)) {
6937 err = -EIO;
6938 goto done;
6939 }
6940
6941 /* if setting by freq convert to channel */
6942 if (fwrq->e == 1) {
James Ketrenosee8e3652005-09-14 09:47:29 -05006943 if ((fwrq->m >= (int)2.412e8 && fwrq->m <= (int)2.487e8)) {
James Ketrenos2c86c272005-03-23 17:32:29 -06006944 int f = fwrq->m / 100000;
6945 int c = 0;
6946
6947 while ((c < REG_MAX_CHANNEL) &&
6948 (f != ipw2100_frequencies[c]))
6949 c++;
6950
6951 /* hack to fall through */
6952 fwrq->e = 0;
6953 fwrq->m = c + 1;
6954 }
6955 }
6956
James Ketrenos82328352005-08-24 22:33:31 -05006957 if (fwrq->e > 0 || fwrq->m > 1000) {
6958 err = -EOPNOTSUPP;
6959 goto done;
6960 } else { /* Set the channel */
James Ketrenos2c86c272005-03-23 17:32:29 -06006961 IPW_DEBUG_WX("SET Freq/Channel -> %d \n", fwrq->m);
6962 err = ipw2100_set_channel(priv, fwrq->m, 0);
6963 }
6964
James Ketrenosee8e3652005-09-14 09:47:29 -05006965 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06006966 up(&priv->action_sem);
6967 return err;
6968}
6969
James Ketrenos2c86c272005-03-23 17:32:29 -06006970static int ipw2100_wx_get_freq(struct net_device *dev,
6971 struct iw_request_info *info,
6972 union iwreq_data *wrqu, char *extra)
6973{
6974 /*
6975 * This can be called at any time. No action lock required
6976 */
6977
6978 struct ipw2100_priv *priv = ieee80211_priv(dev);
6979
6980 wrqu->freq.e = 0;
6981
6982 /* If we are associated, trying to associate, or have a statically
6983 * configured CHANNEL then return that; otherwise return ANY */
6984 if (priv->config & CFG_STATIC_CHANNEL ||
6985 priv->status & STATUS_ASSOCIATED)
6986 wrqu->freq.m = priv->channel;
6987 else
6988 wrqu->freq.m = 0;
6989
6990 IPW_DEBUG_WX("GET Freq/Channel -> %d \n", priv->channel);
6991 return 0;
6992
6993}
6994
6995static int ipw2100_wx_set_mode(struct net_device *dev,
6996 struct iw_request_info *info,
6997 union iwreq_data *wrqu, char *extra)
6998{
6999 struct ipw2100_priv *priv = ieee80211_priv(dev);
7000 int err = 0;
7001
7002 IPW_DEBUG_WX("SET Mode -> %d \n", wrqu->mode);
7003
7004 if (wrqu->mode == priv->ieee->iw_mode)
7005 return 0;
7006
7007 down(&priv->action_sem);
7008 if (!(priv->status & STATUS_INITIALIZED)) {
7009 err = -EIO;
7010 goto done;
7011 }
7012
7013 switch (wrqu->mode) {
7014#ifdef CONFIG_IPW2100_MONITOR
7015 case IW_MODE_MONITOR:
7016 err = ipw2100_switch_mode(priv, IW_MODE_MONITOR);
7017 break;
James Ketrenosee8e3652005-09-14 09:47:29 -05007018#endif /* CONFIG_IPW2100_MONITOR */
James Ketrenos2c86c272005-03-23 17:32:29 -06007019 case IW_MODE_ADHOC:
7020 err = ipw2100_switch_mode(priv, IW_MODE_ADHOC);
7021 break;
7022 case IW_MODE_INFRA:
7023 case IW_MODE_AUTO:
7024 default:
7025 err = ipw2100_switch_mode(priv, IW_MODE_INFRA);
7026 break;
7027 }
7028
James Ketrenosee8e3652005-09-14 09:47:29 -05007029 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06007030 up(&priv->action_sem);
James Ketrenosee8e3652005-09-14 09:47:29 -05007031 return err;
James Ketrenos2c86c272005-03-23 17:32:29 -06007032}
7033
7034static int ipw2100_wx_get_mode(struct net_device *dev,
7035 struct iw_request_info *info,
7036 union iwreq_data *wrqu, char *extra)
7037{
7038 /*
7039 * This can be called at any time. No action lock required
7040 */
7041
7042 struct ipw2100_priv *priv = ieee80211_priv(dev);
7043
7044 wrqu->mode = priv->ieee->iw_mode;
7045 IPW_DEBUG_WX("GET Mode -> %d\n", wrqu->mode);
7046
7047 return 0;
7048}
7049
James Ketrenos2c86c272005-03-23 17:32:29 -06007050#define POWER_MODES 5
7051
7052/* Values are in microsecond */
Jiri Bencc4aee8c2005-08-25 20:04:43 -04007053static const s32 timeout_duration[POWER_MODES] = {
James Ketrenos2c86c272005-03-23 17:32:29 -06007054 350000,
7055 250000,
7056 75000,
7057 37000,
7058 25000,
7059};
7060
Jiri Bencc4aee8c2005-08-25 20:04:43 -04007061static const s32 period_duration[POWER_MODES] = {
James Ketrenos2c86c272005-03-23 17:32:29 -06007062 400000,
7063 700000,
7064 1000000,
7065 1000000,
7066 1000000
7067};
7068
7069static int ipw2100_wx_get_range(struct net_device *dev,
7070 struct iw_request_info *info,
7071 union iwreq_data *wrqu, char *extra)
7072{
7073 /*
7074 * This can be called at any time. No action lock required
7075 */
7076
7077 struct ipw2100_priv *priv = ieee80211_priv(dev);
7078 struct iw_range *range = (struct iw_range *)extra;
7079 u16 val;
7080 int i, level;
7081
7082 wrqu->data.length = sizeof(*range);
7083 memset(range, 0, sizeof(*range));
7084
7085 /* Let's try to keep this struct in the same order as in
7086 * linux/include/wireless.h
7087 */
7088
7089 /* TODO: See what values we can set, and remove the ones we can't
7090 * set, or fill them with some default data.
7091 */
7092
7093 /* ~5 Mb/s real (802.11b) */
7094 range->throughput = 5 * 1000 * 1000;
7095
James Ketrenosee8e3652005-09-14 09:47:29 -05007096// range->sensitivity; /* signal level threshold range */
James Ketrenos2c86c272005-03-23 17:32:29 -06007097
7098 range->max_qual.qual = 100;
7099 /* TODO: Find real max RSSI and stick here */
7100 range->max_qual.level = 0;
7101 range->max_qual.noise = 0;
James Ketrenosee8e3652005-09-14 09:47:29 -05007102 range->max_qual.updated = 7; /* Updated all three */
James Ketrenos2c86c272005-03-23 17:32:29 -06007103
James Ketrenosee8e3652005-09-14 09:47:29 -05007104 range->avg_qual.qual = 70; /* > 8% missed beacons is 'bad' */
James Ketrenos2c86c272005-03-23 17:32:29 -06007105 /* TODO: Find real 'good' to 'bad' threshol value for RSSI */
7106 range->avg_qual.level = 20 + IPW2100_RSSI_TO_DBM;
7107 range->avg_qual.noise = 0;
James Ketrenosee8e3652005-09-14 09:47:29 -05007108 range->avg_qual.updated = 7; /* Updated all three */
James Ketrenos2c86c272005-03-23 17:32:29 -06007109
7110 range->num_bitrates = RATE_COUNT;
7111
7112 for (i = 0; i < RATE_COUNT && i < IW_MAX_BITRATES; i++) {
7113 range->bitrate[i] = ipw2100_rates_11b[i];
7114 }
7115
7116 range->min_rts = MIN_RTS_THRESHOLD;
7117 range->max_rts = MAX_RTS_THRESHOLD;
7118 range->min_frag = MIN_FRAG_THRESHOLD;
7119 range->max_frag = MAX_FRAG_THRESHOLD;
7120
7121 range->min_pmp = period_duration[0]; /* Minimal PM period */
James Ketrenosee8e3652005-09-14 09:47:29 -05007122 range->max_pmp = period_duration[POWER_MODES - 1]; /* Maximal PM period */
7123 range->min_pmt = timeout_duration[POWER_MODES - 1]; /* Minimal PM timeout */
7124 range->max_pmt = timeout_duration[0]; /* Maximal PM timeout */
James Ketrenos2c86c272005-03-23 17:32:29 -06007125
James Ketrenosee8e3652005-09-14 09:47:29 -05007126 /* How to decode max/min PM period */
James Ketrenos2c86c272005-03-23 17:32:29 -06007127 range->pmp_flags = IW_POWER_PERIOD;
James Ketrenosee8e3652005-09-14 09:47:29 -05007128 /* How to decode max/min PM period */
James Ketrenos2c86c272005-03-23 17:32:29 -06007129 range->pmt_flags = IW_POWER_TIMEOUT;
7130 /* What PM options are supported */
7131 range->pm_capa = IW_POWER_TIMEOUT | IW_POWER_PERIOD;
7132
7133 range->encoding_size[0] = 5;
James Ketrenosee8e3652005-09-14 09:47:29 -05007134 range->encoding_size[1] = 13; /* Different token sizes */
7135 range->num_encoding_sizes = 2; /* Number of entry in the list */
7136 range->max_encoding_tokens = WEP_KEYS; /* Max number of tokens */
7137// range->encoding_login_index; /* token index for login token */
James Ketrenos2c86c272005-03-23 17:32:29 -06007138
7139 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
7140 range->txpower_capa = IW_TXPOW_DBM;
7141 range->num_txpower = IW_MAX_TXPOWER;
James Ketrenosee8e3652005-09-14 09:47:29 -05007142 for (i = 0, level = (IPW_TX_POWER_MAX_DBM * 16);
7143 i < IW_MAX_TXPOWER;
7144 i++, level -=
7145 ((IPW_TX_POWER_MAX_DBM -
7146 IPW_TX_POWER_MIN_DBM) * 16) / (IW_MAX_TXPOWER - 1))
James Ketrenos2c86c272005-03-23 17:32:29 -06007147 range->txpower[i] = level / 16;
7148 } else {
7149 range->txpower_capa = 0;
7150 range->num_txpower = 0;
7151 }
7152
James Ketrenos2c86c272005-03-23 17:32:29 -06007153 /* Set the Wireless Extension versions */
7154 range->we_version_compiled = WIRELESS_EXT;
7155 range->we_version_source = 16;
7156
James Ketrenosee8e3652005-09-14 09:47:29 -05007157// range->retry_capa; /* What retry options are supported */
7158// range->retry_flags; /* How to decode max/min retry limit */
7159// range->r_time_flags; /* How to decode max/min retry life */
7160// range->min_retry; /* Minimal number of retries */
7161// range->max_retry; /* Maximal number of retries */
7162// range->min_r_time; /* Minimal retry lifetime */
7163// range->max_r_time; /* Maximal retry lifetime */
James Ketrenos2c86c272005-03-23 17:32:29 -06007164
James Ketrenosee8e3652005-09-14 09:47:29 -05007165 range->num_channels = FREQ_COUNT;
James Ketrenos2c86c272005-03-23 17:32:29 -06007166
7167 val = 0;
7168 for (i = 0; i < FREQ_COUNT; i++) {
7169 // TODO: Include only legal frequencies for some countries
James Ketrenosee8e3652005-09-14 09:47:29 -05007170// if (local->channel_mask & (1 << i)) {
7171 range->freq[val].i = i + 1;
7172 range->freq[val].m = ipw2100_frequencies[i] * 100000;
7173 range->freq[val].e = 1;
7174 val++;
7175// }
James Ketrenos2c86c272005-03-23 17:32:29 -06007176 if (val == IW_MAX_FREQUENCIES)
James Ketrenosee8e3652005-09-14 09:47:29 -05007177 break;
James Ketrenos2c86c272005-03-23 17:32:29 -06007178 }
7179 range->num_frequency = val;
7180
7181 IPW_DEBUG_WX("GET Range\n");
7182
7183 return 0;
7184}
7185
7186static int ipw2100_wx_set_wap(struct net_device *dev,
7187 struct iw_request_info *info,
7188 union iwreq_data *wrqu, char *extra)
7189{
7190 struct ipw2100_priv *priv = ieee80211_priv(dev);
7191 int err = 0;
7192
7193 static const unsigned char any[] = {
7194 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
7195 };
7196 static const unsigned char off[] = {
7197 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
7198 };
7199
7200 // sanity checks
7201 if (wrqu->ap_addr.sa_family != ARPHRD_ETHER)
7202 return -EINVAL;
7203
7204 down(&priv->action_sem);
7205 if (!(priv->status & STATUS_INITIALIZED)) {
7206 err = -EIO;
7207 goto done;
7208 }
7209
7210 if (!memcmp(any, wrqu->ap_addr.sa_data, ETH_ALEN) ||
7211 !memcmp(off, wrqu->ap_addr.sa_data, ETH_ALEN)) {
7212 /* we disable mandatory BSSID association */
7213 IPW_DEBUG_WX("exit - disable mandatory BSSID\n");
7214 priv->config &= ~CFG_STATIC_BSSID;
7215 err = ipw2100_set_mandatory_bssid(priv, NULL, 0);
7216 goto done;
7217 }
7218
7219 priv->config |= CFG_STATIC_BSSID;
7220 memcpy(priv->mandatory_bssid_mac, wrqu->ap_addr.sa_data, ETH_ALEN);
7221
7222 err = ipw2100_set_mandatory_bssid(priv, wrqu->ap_addr.sa_data, 0);
7223
7224 IPW_DEBUG_WX("SET BSSID -> %02X:%02X:%02X:%02X:%02X:%02X\n",
7225 wrqu->ap_addr.sa_data[0] & 0xff,
7226 wrqu->ap_addr.sa_data[1] & 0xff,
7227 wrqu->ap_addr.sa_data[2] & 0xff,
7228 wrqu->ap_addr.sa_data[3] & 0xff,
7229 wrqu->ap_addr.sa_data[4] & 0xff,
7230 wrqu->ap_addr.sa_data[5] & 0xff);
7231
James Ketrenosee8e3652005-09-14 09:47:29 -05007232 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06007233 up(&priv->action_sem);
7234 return err;
7235}
7236
7237static int ipw2100_wx_get_wap(struct net_device *dev,
7238 struct iw_request_info *info,
7239 union iwreq_data *wrqu, char *extra)
7240{
7241 /*
7242 * This can be called at any time. No action lock required
7243 */
7244
7245 struct ipw2100_priv *priv = ieee80211_priv(dev);
7246
7247 /* If we are associated, trying to associate, or have a statically
7248 * configured BSSID then return that; otherwise return ANY */
James Ketrenosee8e3652005-09-14 09:47:29 -05007249 if (priv->config & CFG_STATIC_BSSID || priv->status & STATUS_ASSOCIATED) {
James Ketrenos2c86c272005-03-23 17:32:29 -06007250 wrqu->ap_addr.sa_family = ARPHRD_ETHER;
James Ketrenos82328352005-08-24 22:33:31 -05007251 memcpy(wrqu->ap_addr.sa_data, priv->bssid, ETH_ALEN);
James Ketrenos2c86c272005-03-23 17:32:29 -06007252 } else
7253 memset(wrqu->ap_addr.sa_data, 0, ETH_ALEN);
7254
7255 IPW_DEBUG_WX("Getting WAP BSSID: " MAC_FMT "\n",
7256 MAC_ARG(wrqu->ap_addr.sa_data));
7257 return 0;
7258}
7259
7260static int ipw2100_wx_set_essid(struct net_device *dev,
7261 struct iw_request_info *info,
7262 union iwreq_data *wrqu, char *extra)
7263{
7264 struct ipw2100_priv *priv = ieee80211_priv(dev);
James Ketrenosee8e3652005-09-14 09:47:29 -05007265 char *essid = ""; /* ANY */
James Ketrenos2c86c272005-03-23 17:32:29 -06007266 int length = 0;
7267 int err = 0;
7268
7269 down(&priv->action_sem);
7270 if (!(priv->status & STATUS_INITIALIZED)) {
7271 err = -EIO;
7272 goto done;
7273 }
7274
7275 if (wrqu->essid.flags && wrqu->essid.length) {
7276 length = wrqu->essid.length - 1;
7277 essid = extra;
7278 }
7279
7280 if (length == 0) {
7281 IPW_DEBUG_WX("Setting ESSID to ANY\n");
7282 priv->config &= ~CFG_STATIC_ESSID;
7283 err = ipw2100_set_essid(priv, NULL, 0, 0);
7284 goto done;
7285 }
7286
7287 length = min(length, IW_ESSID_MAX_SIZE);
7288
7289 priv->config |= CFG_STATIC_ESSID;
7290
7291 if (priv->essid_len == length && !memcmp(priv->essid, extra, length)) {
7292 IPW_DEBUG_WX("ESSID set to current ESSID.\n");
7293 err = 0;
7294 goto done;
7295 }
7296
7297 IPW_DEBUG_WX("Setting ESSID: '%s' (%d)\n", escape_essid(essid, length),
7298 length);
7299
7300 priv->essid_len = length;
7301 memcpy(priv->essid, essid, priv->essid_len);
7302
7303 err = ipw2100_set_essid(priv, essid, length, 0);
7304
James Ketrenosee8e3652005-09-14 09:47:29 -05007305 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06007306 up(&priv->action_sem);
7307 return err;
7308}
7309
7310static int ipw2100_wx_get_essid(struct net_device *dev,
7311 struct iw_request_info *info,
7312 union iwreq_data *wrqu, char *extra)
7313{
7314 /*
7315 * This can be called at any time. No action lock required
7316 */
7317
7318 struct ipw2100_priv *priv = ieee80211_priv(dev);
7319
7320 /* If we are associated, trying to associate, or have a statically
7321 * configured ESSID then return that; otherwise return ANY */
James Ketrenosee8e3652005-09-14 09:47:29 -05007322 if (priv->config & CFG_STATIC_ESSID || priv->status & STATUS_ASSOCIATED) {
James Ketrenos2c86c272005-03-23 17:32:29 -06007323 IPW_DEBUG_WX("Getting essid: '%s'\n",
7324 escape_essid(priv->essid, priv->essid_len));
7325 memcpy(extra, priv->essid, priv->essid_len);
7326 wrqu->essid.length = priv->essid_len;
James Ketrenosee8e3652005-09-14 09:47:29 -05007327 wrqu->essid.flags = 1; /* active */
James Ketrenos2c86c272005-03-23 17:32:29 -06007328 } else {
7329 IPW_DEBUG_WX("Getting essid: ANY\n");
7330 wrqu->essid.length = 0;
James Ketrenosee8e3652005-09-14 09:47:29 -05007331 wrqu->essid.flags = 0; /* active */
James Ketrenos2c86c272005-03-23 17:32:29 -06007332 }
7333
7334 return 0;
7335}
7336
7337static int ipw2100_wx_set_nick(struct net_device *dev,
7338 struct iw_request_info *info,
7339 union iwreq_data *wrqu, char *extra)
7340{
7341 /*
7342 * This can be called at any time. No action lock required
7343 */
7344
7345 struct ipw2100_priv *priv = ieee80211_priv(dev);
7346
7347 if (wrqu->data.length > IW_ESSID_MAX_SIZE)
7348 return -E2BIG;
7349
James Ketrenosee8e3652005-09-14 09:47:29 -05007350 wrqu->data.length = min((size_t) wrqu->data.length, sizeof(priv->nick));
James Ketrenos2c86c272005-03-23 17:32:29 -06007351 memset(priv->nick, 0, sizeof(priv->nick));
James Ketrenosee8e3652005-09-14 09:47:29 -05007352 memcpy(priv->nick, extra, wrqu->data.length);
James Ketrenos2c86c272005-03-23 17:32:29 -06007353
7354 IPW_DEBUG_WX("SET Nickname -> %s \n", priv->nick);
7355
7356 return 0;
7357}
7358
7359static int ipw2100_wx_get_nick(struct net_device *dev,
7360 struct iw_request_info *info,
7361 union iwreq_data *wrqu, char *extra)
7362{
7363 /*
7364 * This can be called at any time. No action lock required
7365 */
7366
7367 struct ipw2100_priv *priv = ieee80211_priv(dev);
7368
7369 wrqu->data.length = strlen(priv->nick) + 1;
7370 memcpy(extra, priv->nick, wrqu->data.length);
James Ketrenosee8e3652005-09-14 09:47:29 -05007371 wrqu->data.flags = 1; /* active */
James Ketrenos2c86c272005-03-23 17:32:29 -06007372
7373 IPW_DEBUG_WX("GET Nickname -> %s \n", extra);
7374
7375 return 0;
7376}
7377
7378static int ipw2100_wx_set_rate(struct net_device *dev,
7379 struct iw_request_info *info,
7380 union iwreq_data *wrqu, char *extra)
7381{
7382 struct ipw2100_priv *priv = ieee80211_priv(dev);
7383 u32 target_rate = wrqu->bitrate.value;
7384 u32 rate;
7385 int err = 0;
7386
7387 down(&priv->action_sem);
7388 if (!(priv->status & STATUS_INITIALIZED)) {
7389 err = -EIO;
7390 goto done;
7391 }
7392
7393 rate = 0;
7394
7395 if (target_rate == 1000000 ||
7396 (!wrqu->bitrate.fixed && target_rate > 1000000))
7397 rate |= TX_RATE_1_MBIT;
7398 if (target_rate == 2000000 ||
7399 (!wrqu->bitrate.fixed && target_rate > 2000000))
7400 rate |= TX_RATE_2_MBIT;
7401 if (target_rate == 5500000 ||
7402 (!wrqu->bitrate.fixed && target_rate > 5500000))
7403 rate |= TX_RATE_5_5_MBIT;
7404 if (target_rate == 11000000 ||
7405 (!wrqu->bitrate.fixed && target_rate > 11000000))
7406 rate |= TX_RATE_11_MBIT;
7407 if (rate == 0)
7408 rate = DEFAULT_TX_RATES;
7409
7410 err = ipw2100_set_tx_rates(priv, rate, 0);
7411
7412 IPW_DEBUG_WX("SET Rate -> %04X \n", rate);
James Ketrenosee8e3652005-09-14 09:47:29 -05007413 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06007414 up(&priv->action_sem);
7415 return err;
7416}
7417
James Ketrenos2c86c272005-03-23 17:32:29 -06007418static int ipw2100_wx_get_rate(struct net_device *dev,
7419 struct iw_request_info *info,
7420 union iwreq_data *wrqu, char *extra)
7421{
7422 struct ipw2100_priv *priv = ieee80211_priv(dev);
7423 int val;
7424 int len = sizeof(val);
7425 int err = 0;
7426
7427 if (!(priv->status & STATUS_ENABLED) ||
7428 priv->status & STATUS_RF_KILL_MASK ||
7429 !(priv->status & STATUS_ASSOCIATED)) {
7430 wrqu->bitrate.value = 0;
7431 return 0;
7432 }
7433
7434 down(&priv->action_sem);
7435 if (!(priv->status & STATUS_INITIALIZED)) {
7436 err = -EIO;
7437 goto done;
7438 }
7439
7440 err = ipw2100_get_ordinal(priv, IPW_ORD_CURRENT_TX_RATE, &val, &len);
7441 if (err) {
7442 IPW_DEBUG_WX("failed querying ordinals.\n");
7443 return err;
7444 }
7445
7446 switch (val & TX_RATE_MASK) {
7447 case TX_RATE_1_MBIT:
7448 wrqu->bitrate.value = 1000000;
7449 break;
7450 case TX_RATE_2_MBIT:
7451 wrqu->bitrate.value = 2000000;
7452 break;
7453 case TX_RATE_5_5_MBIT:
7454 wrqu->bitrate.value = 5500000;
7455 break;
7456 case TX_RATE_11_MBIT:
7457 wrqu->bitrate.value = 11000000;
7458 break;
7459 default:
7460 wrqu->bitrate.value = 0;
7461 }
7462
7463 IPW_DEBUG_WX("GET Rate -> %d \n", wrqu->bitrate.value);
7464
James Ketrenosee8e3652005-09-14 09:47:29 -05007465 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06007466 up(&priv->action_sem);
7467 return err;
7468}
7469
7470static int ipw2100_wx_set_rts(struct net_device *dev,
7471 struct iw_request_info *info,
7472 union iwreq_data *wrqu, char *extra)
7473{
7474 struct ipw2100_priv *priv = ieee80211_priv(dev);
7475 int value, err;
7476
7477 /* Auto RTS not yet supported */
7478 if (wrqu->rts.fixed == 0)
7479 return -EINVAL;
7480
7481 down(&priv->action_sem);
7482 if (!(priv->status & STATUS_INITIALIZED)) {
7483 err = -EIO;
7484 goto done;
7485 }
7486
7487 if (wrqu->rts.disabled)
7488 value = priv->rts_threshold | RTS_DISABLED;
7489 else {
James Ketrenosee8e3652005-09-14 09:47:29 -05007490 if (wrqu->rts.value < 1 || wrqu->rts.value > 2304) {
James Ketrenos2c86c272005-03-23 17:32:29 -06007491 err = -EINVAL;
7492 goto done;
7493 }
7494 value = wrqu->rts.value;
7495 }
7496
7497 err = ipw2100_set_rts_threshold(priv, value);
7498
7499 IPW_DEBUG_WX("SET RTS Threshold -> 0x%08X \n", value);
James Ketrenosee8e3652005-09-14 09:47:29 -05007500 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06007501 up(&priv->action_sem);
7502 return err;
7503}
7504
7505static int ipw2100_wx_get_rts(struct net_device *dev,
7506 struct iw_request_info *info,
7507 union iwreq_data *wrqu, char *extra)
7508{
7509 /*
7510 * This can be called at any time. No action lock required
7511 */
7512
7513 struct ipw2100_priv *priv = ieee80211_priv(dev);
7514
7515 wrqu->rts.value = priv->rts_threshold & ~RTS_DISABLED;
James Ketrenosee8e3652005-09-14 09:47:29 -05007516 wrqu->rts.fixed = 1; /* no auto select */
James Ketrenos2c86c272005-03-23 17:32:29 -06007517
7518 /* If RTS is set to the default value, then it is disabled */
7519 wrqu->rts.disabled = (priv->rts_threshold & RTS_DISABLED) ? 1 : 0;
7520
7521 IPW_DEBUG_WX("GET RTS Threshold -> 0x%08X \n", wrqu->rts.value);
7522
7523 return 0;
7524}
7525
7526static int ipw2100_wx_set_txpow(struct net_device *dev,
7527 struct iw_request_info *info,
7528 union iwreq_data *wrqu, char *extra)
7529{
7530 struct ipw2100_priv *priv = ieee80211_priv(dev);
7531 int err = 0, value;
7532
7533 if (priv->ieee->iw_mode != IW_MODE_ADHOC)
7534 return -EINVAL;
7535
7536 if (wrqu->txpower.disabled == 1 || wrqu->txpower.fixed == 0)
7537 value = IPW_TX_POWER_DEFAULT;
7538 else {
7539 if (wrqu->txpower.value < IPW_TX_POWER_MIN_DBM ||
7540 wrqu->txpower.value > IPW_TX_POWER_MAX_DBM)
7541 return -EINVAL;
7542
Liu Hongf75459e2005-07-13 12:29:21 -05007543 value = wrqu->txpower.value;
James Ketrenos2c86c272005-03-23 17:32:29 -06007544 }
7545
7546 down(&priv->action_sem);
7547 if (!(priv->status & STATUS_INITIALIZED)) {
7548 err = -EIO;
7549 goto done;
7550 }
7551
7552 err = ipw2100_set_tx_power(priv, value);
7553
7554 IPW_DEBUG_WX("SET TX Power -> %d \n", value);
7555
James Ketrenosee8e3652005-09-14 09:47:29 -05007556 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06007557 up(&priv->action_sem);
7558 return err;
7559}
7560
7561static int ipw2100_wx_get_txpow(struct net_device *dev,
7562 struct iw_request_info *info,
7563 union iwreq_data *wrqu, char *extra)
7564{
7565 /*
7566 * This can be called at any time. No action lock required
7567 */
7568
7569 struct ipw2100_priv *priv = ieee80211_priv(dev);
7570
7571 if (priv->ieee->iw_mode != IW_MODE_ADHOC) {
7572 wrqu->power.disabled = 1;
7573 return 0;
7574 }
7575
7576 if (priv->tx_power == IPW_TX_POWER_DEFAULT) {
7577 wrqu->power.fixed = 0;
7578 wrqu->power.value = IPW_TX_POWER_MAX_DBM;
7579 wrqu->power.disabled = 1;
7580 } else {
7581 wrqu->power.disabled = 0;
7582 wrqu->power.fixed = 1;
Liu Hongf75459e2005-07-13 12:29:21 -05007583 wrqu->power.value = priv->tx_power;
James Ketrenos2c86c272005-03-23 17:32:29 -06007584 }
7585
7586 wrqu->power.flags = IW_TXPOW_DBM;
7587
7588 IPW_DEBUG_WX("GET TX Power -> %d \n", wrqu->power.value);
7589
7590 return 0;
7591}
7592
7593static int ipw2100_wx_set_frag(struct net_device *dev,
7594 struct iw_request_info *info,
7595 union iwreq_data *wrqu, char *extra)
7596{
7597 /*
7598 * This can be called at any time. No action lock required
7599 */
7600
7601 struct ipw2100_priv *priv = ieee80211_priv(dev);
7602
7603 if (!wrqu->frag.fixed)
7604 return -EINVAL;
7605
7606 if (wrqu->frag.disabled) {
7607 priv->frag_threshold |= FRAG_DISABLED;
7608 priv->ieee->fts = DEFAULT_FTS;
7609 } else {
7610 if (wrqu->frag.value < MIN_FRAG_THRESHOLD ||
7611 wrqu->frag.value > MAX_FRAG_THRESHOLD)
7612 return -EINVAL;
7613
7614 priv->ieee->fts = wrqu->frag.value & ~0x1;
7615 priv->frag_threshold = priv->ieee->fts;
7616 }
7617
7618 IPW_DEBUG_WX("SET Frag Threshold -> %d \n", priv->ieee->fts);
7619
7620 return 0;
7621}
7622
7623static int ipw2100_wx_get_frag(struct net_device *dev,
7624 struct iw_request_info *info,
7625 union iwreq_data *wrqu, char *extra)
7626{
7627 /*
7628 * This can be called at any time. No action lock required
7629 */
7630
7631 struct ipw2100_priv *priv = ieee80211_priv(dev);
7632 wrqu->frag.value = priv->frag_threshold & ~FRAG_DISABLED;
7633 wrqu->frag.fixed = 0; /* no auto select */
7634 wrqu->frag.disabled = (priv->frag_threshold & FRAG_DISABLED) ? 1 : 0;
7635
7636 IPW_DEBUG_WX("GET Frag Threshold -> %d \n", wrqu->frag.value);
7637
7638 return 0;
7639}
7640
7641static int ipw2100_wx_set_retry(struct net_device *dev,
7642 struct iw_request_info *info,
7643 union iwreq_data *wrqu, char *extra)
7644{
7645 struct ipw2100_priv *priv = ieee80211_priv(dev);
7646 int err = 0;
7647
James Ketrenosee8e3652005-09-14 09:47:29 -05007648 if (wrqu->retry.flags & IW_RETRY_LIFETIME || wrqu->retry.disabled)
James Ketrenos2c86c272005-03-23 17:32:29 -06007649 return -EINVAL;
7650
7651 if (!(wrqu->retry.flags & IW_RETRY_LIMIT))
7652 return 0;
7653
7654 down(&priv->action_sem);
7655 if (!(priv->status & STATUS_INITIALIZED)) {
7656 err = -EIO;
7657 goto done;
7658 }
7659
7660 if (wrqu->retry.flags & IW_RETRY_MIN) {
7661 err = ipw2100_set_short_retry(priv, wrqu->retry.value);
7662 IPW_DEBUG_WX("SET Short Retry Limit -> %d \n",
James Ketrenosee8e3652005-09-14 09:47:29 -05007663 wrqu->retry.value);
James Ketrenos2c86c272005-03-23 17:32:29 -06007664 goto done;
7665 }
7666
7667 if (wrqu->retry.flags & IW_RETRY_MAX) {
7668 err = ipw2100_set_long_retry(priv, wrqu->retry.value);
7669 IPW_DEBUG_WX("SET Long Retry Limit -> %d \n",
James Ketrenosee8e3652005-09-14 09:47:29 -05007670 wrqu->retry.value);
James Ketrenos2c86c272005-03-23 17:32:29 -06007671 goto done;
7672 }
7673
7674 err = ipw2100_set_short_retry(priv, wrqu->retry.value);
7675 if (!err)
7676 err = ipw2100_set_long_retry(priv, wrqu->retry.value);
7677
7678 IPW_DEBUG_WX("SET Both Retry Limits -> %d \n", wrqu->retry.value);
7679
James Ketrenosee8e3652005-09-14 09:47:29 -05007680 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06007681 up(&priv->action_sem);
7682 return err;
7683}
7684
7685static int ipw2100_wx_get_retry(struct net_device *dev,
7686 struct iw_request_info *info,
7687 union iwreq_data *wrqu, char *extra)
7688{
7689 /*
7690 * This can be called at any time. No action lock required
7691 */
7692
7693 struct ipw2100_priv *priv = ieee80211_priv(dev);
7694
James Ketrenosee8e3652005-09-14 09:47:29 -05007695 wrqu->retry.disabled = 0; /* can't be disabled */
James Ketrenos2c86c272005-03-23 17:32:29 -06007696
James Ketrenosee8e3652005-09-14 09:47:29 -05007697 if ((wrqu->retry.flags & IW_RETRY_TYPE) == IW_RETRY_LIFETIME)
James Ketrenos2c86c272005-03-23 17:32:29 -06007698 return -EINVAL;
7699
7700 if (wrqu->retry.flags & IW_RETRY_MAX) {
James Ketrenos82328352005-08-24 22:33:31 -05007701 wrqu->retry.flags = IW_RETRY_LIMIT | IW_RETRY_MAX;
James Ketrenos2c86c272005-03-23 17:32:29 -06007702 wrqu->retry.value = priv->long_retry_limit;
7703 } else {
7704 wrqu->retry.flags =
7705 (priv->short_retry_limit !=
7706 priv->long_retry_limit) ?
James Ketrenos82328352005-08-24 22:33:31 -05007707 IW_RETRY_LIMIT | IW_RETRY_MIN : IW_RETRY_LIMIT;
James Ketrenos2c86c272005-03-23 17:32:29 -06007708
7709 wrqu->retry.value = priv->short_retry_limit;
7710 }
7711
7712 IPW_DEBUG_WX("GET Retry -> %d \n", wrqu->retry.value);
7713
7714 return 0;
7715}
7716
7717static int ipw2100_wx_set_scan(struct net_device *dev,
7718 struct iw_request_info *info,
7719 union iwreq_data *wrqu, char *extra)
7720{
7721 struct ipw2100_priv *priv = ieee80211_priv(dev);
7722 int err = 0;
7723
7724 down(&priv->action_sem);
7725 if (!(priv->status & STATUS_INITIALIZED)) {
7726 err = -EIO;
7727 goto done;
7728 }
7729
7730 IPW_DEBUG_WX("Initiating scan...\n");
James Ketrenosee8e3652005-09-14 09:47:29 -05007731 if (ipw2100_set_scan_options(priv) || ipw2100_start_scan(priv)) {
James Ketrenos2c86c272005-03-23 17:32:29 -06007732 IPW_DEBUG_WX("Start scan failed.\n");
7733
7734 /* TODO: Mark a scan as pending so when hardware initialized
7735 * a scan starts */
7736 }
7737
James Ketrenosee8e3652005-09-14 09:47:29 -05007738 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06007739 up(&priv->action_sem);
7740 return err;
7741}
7742
7743static int ipw2100_wx_get_scan(struct net_device *dev,
7744 struct iw_request_info *info,
7745 union iwreq_data *wrqu, char *extra)
7746{
7747 /*
7748 * This can be called at any time. No action lock required
7749 */
7750
7751 struct ipw2100_priv *priv = ieee80211_priv(dev);
7752 return ieee80211_wx_get_scan(priv->ieee, info, wrqu, extra);
7753}
7754
James Ketrenos2c86c272005-03-23 17:32:29 -06007755/*
7756 * Implementation based on code in hostap-driver v0.1.3 hostap_ioctl.c
7757 */
7758static int ipw2100_wx_set_encode(struct net_device *dev,
7759 struct iw_request_info *info,
7760 union iwreq_data *wrqu, char *key)
7761{
7762 /*
7763 * No check of STATUS_INITIALIZED required
7764 */
7765
7766 struct ipw2100_priv *priv = ieee80211_priv(dev);
7767 return ieee80211_wx_set_encode(priv->ieee, info, wrqu, key);
7768}
7769
7770static int ipw2100_wx_get_encode(struct net_device *dev,
7771 struct iw_request_info *info,
7772 union iwreq_data *wrqu, char *key)
7773{
7774 /*
7775 * This can be called at any time. No action lock required
7776 */
7777
7778 struct ipw2100_priv *priv = ieee80211_priv(dev);
7779 return ieee80211_wx_get_encode(priv->ieee, info, wrqu, key);
7780}
7781
7782static int ipw2100_wx_set_power(struct net_device *dev,
James Ketrenosee8e3652005-09-14 09:47:29 -05007783 struct iw_request_info *info,
7784 union iwreq_data *wrqu, char *extra)
James Ketrenos2c86c272005-03-23 17:32:29 -06007785{
7786 struct ipw2100_priv *priv = ieee80211_priv(dev);
7787 int err = 0;
7788
7789 down(&priv->action_sem);
7790 if (!(priv->status & STATUS_INITIALIZED)) {
7791 err = -EIO;
7792 goto done;
7793 }
7794
7795 if (wrqu->power.disabled) {
7796 priv->power_mode = IPW_POWER_LEVEL(priv->power_mode);
7797 err = ipw2100_set_power_mode(priv, IPW_POWER_MODE_CAM);
7798 IPW_DEBUG_WX("SET Power Management Mode -> off\n");
7799 goto done;
7800 }
7801
7802 switch (wrqu->power.flags & IW_POWER_MODE) {
James Ketrenosee8e3652005-09-14 09:47:29 -05007803 case IW_POWER_ON: /* If not specified */
7804 case IW_POWER_MODE: /* If set all mask */
7805 case IW_POWER_ALL_R: /* If explicitely state all */
James Ketrenos2c86c272005-03-23 17:32:29 -06007806 break;
James Ketrenosee8e3652005-09-14 09:47:29 -05007807 default: /* Otherwise we don't support it */
James Ketrenos2c86c272005-03-23 17:32:29 -06007808 IPW_DEBUG_WX("SET PM Mode: %X not supported.\n",
7809 wrqu->power.flags);
7810 err = -EOPNOTSUPP;
7811 goto done;
7812 }
7813
7814 /* If the user hasn't specified a power management mode yet, default
7815 * to BATTERY */
7816 priv->power_mode = IPW_POWER_ENABLED | priv->power_mode;
7817 err = ipw2100_set_power_mode(priv, IPW_POWER_LEVEL(priv->power_mode));
7818
James Ketrenosee8e3652005-09-14 09:47:29 -05007819 IPW_DEBUG_WX("SET Power Management Mode -> 0x%02X\n", priv->power_mode);
James Ketrenos2c86c272005-03-23 17:32:29 -06007820
James Ketrenosee8e3652005-09-14 09:47:29 -05007821 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06007822 up(&priv->action_sem);
7823 return err;
7824
7825}
7826
7827static int ipw2100_wx_get_power(struct net_device *dev,
James Ketrenosee8e3652005-09-14 09:47:29 -05007828 struct iw_request_info *info,
7829 union iwreq_data *wrqu, char *extra)
James Ketrenos2c86c272005-03-23 17:32:29 -06007830{
7831 /*
7832 * This can be called at any time. No action lock required
7833 */
7834
7835 struct ipw2100_priv *priv = ieee80211_priv(dev);
7836
James Ketrenos82328352005-08-24 22:33:31 -05007837 if (!(priv->power_mode & IPW_POWER_ENABLED))
James Ketrenos2c86c272005-03-23 17:32:29 -06007838 wrqu->power.disabled = 1;
James Ketrenos82328352005-08-24 22:33:31 -05007839 else {
James Ketrenos2c86c272005-03-23 17:32:29 -06007840 wrqu->power.disabled = 0;
7841 wrqu->power.flags = 0;
7842 }
7843
7844 IPW_DEBUG_WX("GET Power Management Mode -> %02X\n", priv->power_mode);
7845
7846 return 0;
7847}
7848
James Ketrenos82328352005-08-24 22:33:31 -05007849#if WIRELESS_EXT > 17
7850/*
7851 * WE-18 WPA support
7852 */
7853
7854/* SIOCSIWGENIE */
7855static int ipw2100_wx_set_genie(struct net_device *dev,
7856 struct iw_request_info *info,
7857 union iwreq_data *wrqu, char *extra)
7858{
7859
7860 struct ipw2100_priv *priv = ieee80211_priv(dev);
7861 struct ieee80211_device *ieee = priv->ieee;
7862 u8 *buf;
7863
7864 if (!ieee->wpa_enabled)
7865 return -EOPNOTSUPP;
7866
7867 if (wrqu->data.length > MAX_WPA_IE_LEN ||
7868 (wrqu->data.length && extra == NULL))
7869 return -EINVAL;
7870
7871 if (wrqu->data.length) {
7872 buf = kmalloc(wrqu->data.length, GFP_KERNEL);
7873 if (buf == NULL)
7874 return -ENOMEM;
7875
7876 memcpy(buf, extra, wrqu->data.length);
7877 kfree(ieee->wpa_ie);
7878 ieee->wpa_ie = buf;
7879 ieee->wpa_ie_len = wrqu->data.length;
7880 } else {
7881 kfree(ieee->wpa_ie);
7882 ieee->wpa_ie = NULL;
7883 ieee->wpa_ie_len = 0;
7884 }
7885
7886 ipw2100_wpa_assoc_frame(priv, ieee->wpa_ie, ieee->wpa_ie_len);
7887
7888 return 0;
7889}
7890
7891/* SIOCGIWGENIE */
7892static int ipw2100_wx_get_genie(struct net_device *dev,
7893 struct iw_request_info *info,
7894 union iwreq_data *wrqu, char *extra)
7895{
7896 struct ipw2100_priv *priv = ieee80211_priv(dev);
7897 struct ieee80211_device *ieee = priv->ieee;
7898
7899 if (ieee->wpa_ie_len == 0 || ieee->wpa_ie == NULL) {
7900 wrqu->data.length = 0;
7901 return 0;
7902 }
7903
7904 if (wrqu->data.length < ieee->wpa_ie_len)
7905 return -E2BIG;
7906
7907 wrqu->data.length = ieee->wpa_ie_len;
7908 memcpy(extra, ieee->wpa_ie, ieee->wpa_ie_len);
7909
7910 return 0;
7911}
7912
7913/* SIOCSIWAUTH */
7914static int ipw2100_wx_set_auth(struct net_device *dev,
7915 struct iw_request_info *info,
7916 union iwreq_data *wrqu, char *extra)
7917{
7918 struct ipw2100_priv *priv = ieee80211_priv(dev);
7919 struct ieee80211_device *ieee = priv->ieee;
7920 struct iw_param *param = &wrqu->param;
7921 struct ieee80211_crypt_data *crypt;
7922 unsigned long flags;
7923 int ret = 0;
7924
7925 switch (param->flags & IW_AUTH_INDEX) {
7926 case IW_AUTH_WPA_VERSION:
7927 case IW_AUTH_CIPHER_PAIRWISE:
7928 case IW_AUTH_CIPHER_GROUP:
7929 case IW_AUTH_KEY_MGMT:
7930 /*
7931 * ipw2200 does not use these parameters
7932 */
7933 break;
7934
7935 case IW_AUTH_TKIP_COUNTERMEASURES:
7936 crypt = priv->ieee->crypt[priv->ieee->tx_keyidx];
James Ketrenos991d1cc2005-10-13 09:26:48 +00007937 if (!crypt || !crypt->ops->set_flags || !crypt->ops->get_flags)
James Ketrenos82328352005-08-24 22:33:31 -05007938 break;
James Ketrenos82328352005-08-24 22:33:31 -05007939
7940 flags = crypt->ops->get_flags(crypt->priv);
7941
7942 if (param->value)
7943 flags |= IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
7944 else
7945 flags &= ~IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
7946
7947 crypt->ops->set_flags(flags, crypt->priv);
7948
7949 break;
7950
7951 case IW_AUTH_DROP_UNENCRYPTED:{
7952 /* HACK:
7953 *
7954 * wpa_supplicant calls set_wpa_enabled when the driver
7955 * is loaded and unloaded, regardless of if WPA is being
7956 * used. No other calls are made which can be used to
7957 * determine if encryption will be used or not prior to
7958 * association being expected. If encryption is not being
7959 * used, drop_unencrypted is set to false, else true -- we
7960 * can use this to determine if the CAP_PRIVACY_ON bit should
7961 * be set.
7962 */
7963 struct ieee80211_security sec = {
7964 .flags = SEC_ENABLED,
7965 .enabled = param->value,
7966 };
7967 priv->ieee->drop_unencrypted = param->value;
7968 /* We only change SEC_LEVEL for open mode. Others
7969 * are set by ipw_wpa_set_encryption.
7970 */
7971 if (!param->value) {
7972 sec.flags |= SEC_LEVEL;
7973 sec.level = SEC_LEVEL_0;
7974 } else {
7975 sec.flags |= SEC_LEVEL;
7976 sec.level = SEC_LEVEL_1;
7977 }
7978 if (priv->ieee->set_security)
7979 priv->ieee->set_security(priv->ieee->dev, &sec);
7980 break;
7981 }
7982
7983 case IW_AUTH_80211_AUTH_ALG:
7984 ret = ipw2100_wpa_set_auth_algs(priv, param->value);
7985 break;
7986
7987 case IW_AUTH_WPA_ENABLED:
7988 ret = ipw2100_wpa_enable(priv, param->value);
7989 break;
7990
7991 case IW_AUTH_RX_UNENCRYPTED_EAPOL:
7992 ieee->ieee802_1x = param->value;
7993 break;
7994
7995 //case IW_AUTH_ROAMING_CONTROL:
7996 case IW_AUTH_PRIVACY_INVOKED:
7997 ieee->privacy_invoked = param->value;
7998 break;
7999
8000 default:
8001 return -EOPNOTSUPP;
8002 }
8003 return ret;
8004}
8005
8006/* SIOCGIWAUTH */
8007static int ipw2100_wx_get_auth(struct net_device *dev,
8008 struct iw_request_info *info,
8009 union iwreq_data *wrqu, char *extra)
8010{
8011 struct ipw2100_priv *priv = ieee80211_priv(dev);
8012 struct ieee80211_device *ieee = priv->ieee;
8013 struct ieee80211_crypt_data *crypt;
8014 struct iw_param *param = &wrqu->param;
8015 int ret = 0;
8016
8017 switch (param->flags & IW_AUTH_INDEX) {
8018 case IW_AUTH_WPA_VERSION:
8019 case IW_AUTH_CIPHER_PAIRWISE:
8020 case IW_AUTH_CIPHER_GROUP:
8021 case IW_AUTH_KEY_MGMT:
8022 /*
8023 * wpa_supplicant will control these internally
8024 */
8025 ret = -EOPNOTSUPP;
8026 break;
8027
8028 case IW_AUTH_TKIP_COUNTERMEASURES:
8029 crypt = priv->ieee->crypt[priv->ieee->tx_keyidx];
8030 if (!crypt || !crypt->ops->get_flags) {
8031 IPW_DEBUG_WARNING("Can't get TKIP countermeasures: "
8032 "crypt not set!\n");
8033 break;
8034 }
8035
8036 param->value = (crypt->ops->get_flags(crypt->priv) &
8037 IEEE80211_CRYPTO_TKIP_COUNTERMEASURES) ? 1 : 0;
8038
8039 break;
8040
8041 case IW_AUTH_DROP_UNENCRYPTED:
8042 param->value = ieee->drop_unencrypted;
8043 break;
8044
8045 case IW_AUTH_80211_AUTH_ALG:
25b645b2005-07-12 15:45:30 -05008046 param->value = priv->ieee->sec.auth_mode;
James Ketrenos82328352005-08-24 22:33:31 -05008047 break;
8048
8049 case IW_AUTH_WPA_ENABLED:
8050 param->value = ieee->wpa_enabled;
8051 break;
8052
8053 case IW_AUTH_RX_UNENCRYPTED_EAPOL:
8054 param->value = ieee->ieee802_1x;
8055 break;
8056
8057 case IW_AUTH_ROAMING_CONTROL:
8058 case IW_AUTH_PRIVACY_INVOKED:
8059 param->value = ieee->privacy_invoked;
8060 break;
8061
8062 default:
8063 return -EOPNOTSUPP;
8064 }
8065 return 0;
8066}
8067
8068/* SIOCSIWENCODEEXT */
8069static int ipw2100_wx_set_encodeext(struct net_device *dev,
8070 struct iw_request_info *info,
8071 union iwreq_data *wrqu, char *extra)
8072{
8073 struct ipw2100_priv *priv = ieee80211_priv(dev);
8074 return ieee80211_wx_set_encodeext(priv->ieee, info, wrqu, extra);
8075}
8076
8077/* SIOCGIWENCODEEXT */
8078static int ipw2100_wx_get_encodeext(struct net_device *dev,
8079 struct iw_request_info *info,
8080 union iwreq_data *wrqu, char *extra)
8081{
8082 struct ipw2100_priv *priv = ieee80211_priv(dev);
8083 return ieee80211_wx_get_encodeext(priv->ieee, info, wrqu, extra);
8084}
8085
8086/* SIOCSIWMLME */
8087static int ipw2100_wx_set_mlme(struct net_device *dev,
8088 struct iw_request_info *info,
8089 union iwreq_data *wrqu, char *extra)
8090{
8091 struct ipw2100_priv *priv = ieee80211_priv(dev);
8092 struct iw_mlme *mlme = (struct iw_mlme *)extra;
8093 u16 reason;
8094
8095 reason = cpu_to_le16(mlme->reason_code);
8096
8097 switch (mlme->cmd) {
8098 case IW_MLME_DEAUTH:
8099 // silently ignore
8100 break;
8101
8102 case IW_MLME_DISASSOC:
8103 ipw2100_disassociate_bssid(priv);
8104 break;
8105
8106 default:
8107 return -EOPNOTSUPP;
8108 }
8109 return 0;
8110}
8111#endif /* WIRELESS_EXT > 17 */
James Ketrenos2c86c272005-03-23 17:32:29 -06008112
8113/*
8114 *
8115 * IWPRIV handlers
8116 *
8117 */
8118#ifdef CONFIG_IPW2100_MONITOR
8119static int ipw2100_wx_set_promisc(struct net_device *dev,
8120 struct iw_request_info *info,
8121 union iwreq_data *wrqu, char *extra)
8122{
8123 struct ipw2100_priv *priv = ieee80211_priv(dev);
8124 int *parms = (int *)extra;
8125 int enable = (parms[0] > 0);
8126 int err = 0;
8127
8128 down(&priv->action_sem);
8129 if (!(priv->status & STATUS_INITIALIZED)) {
8130 err = -EIO;
8131 goto done;
8132 }
8133
8134 if (enable) {
8135 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
8136 err = ipw2100_set_channel(priv, parms[1], 0);
8137 goto done;
8138 }
8139 priv->channel = parms[1];
8140 err = ipw2100_switch_mode(priv, IW_MODE_MONITOR);
8141 } else {
8142 if (priv->ieee->iw_mode == IW_MODE_MONITOR)
8143 err = ipw2100_switch_mode(priv, priv->last_mode);
8144 }
James Ketrenosee8e3652005-09-14 09:47:29 -05008145 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06008146 up(&priv->action_sem);
8147 return err;
8148}
8149
8150static int ipw2100_wx_reset(struct net_device *dev,
8151 struct iw_request_info *info,
8152 union iwreq_data *wrqu, char *extra)
8153{
8154 struct ipw2100_priv *priv = ieee80211_priv(dev);
8155 if (priv->status & STATUS_INITIALIZED)
8156 schedule_reset(priv);
8157 return 0;
8158}
8159
8160#endif
8161
8162static int ipw2100_wx_set_powermode(struct net_device *dev,
8163 struct iw_request_info *info,
8164 union iwreq_data *wrqu, char *extra)
8165{
8166 struct ipw2100_priv *priv = ieee80211_priv(dev);
8167 int err = 0, mode = *(int *)extra;
8168
8169 down(&priv->action_sem);
8170 if (!(priv->status & STATUS_INITIALIZED)) {
8171 err = -EIO;
8172 goto done;
8173 }
8174
8175 if ((mode < 1) || (mode > POWER_MODES))
8176 mode = IPW_POWER_AUTO;
8177
8178 if (priv->power_mode != mode)
8179 err = ipw2100_set_power_mode(priv, mode);
James Ketrenosee8e3652005-09-14 09:47:29 -05008180 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06008181 up(&priv->action_sem);
8182 return err;
8183}
8184
8185#define MAX_POWER_STRING 80
8186static int ipw2100_wx_get_powermode(struct net_device *dev,
8187 struct iw_request_info *info,
8188 union iwreq_data *wrqu, char *extra)
8189{
8190 /*
8191 * This can be called at any time. No action lock required
8192 */
8193
8194 struct ipw2100_priv *priv = ieee80211_priv(dev);
8195 int level = IPW_POWER_LEVEL(priv->power_mode);
8196 s32 timeout, period;
8197
8198 if (!(priv->power_mode & IPW_POWER_ENABLED)) {
8199 snprintf(extra, MAX_POWER_STRING,
8200 "Power save level: %d (Off)", level);
8201 } else {
8202 switch (level) {
8203 case IPW_POWER_MODE_CAM:
8204 snprintf(extra, MAX_POWER_STRING,
8205 "Power save level: %d (None)", level);
8206 break;
8207 case IPW_POWER_AUTO:
James Ketrenosee8e3652005-09-14 09:47:29 -05008208 snprintf(extra, MAX_POWER_STRING,
8209 "Power save level: %d (Auto)", 0);
James Ketrenos2c86c272005-03-23 17:32:29 -06008210 break;
8211 default:
8212 timeout = timeout_duration[level - 1] / 1000;
8213 period = period_duration[level - 1] / 1000;
8214 snprintf(extra, MAX_POWER_STRING,
8215 "Power save level: %d "
8216 "(Timeout %dms, Period %dms)",
8217 level, timeout, period);
8218 }
8219 }
8220
8221 wrqu->data.length = strlen(extra) + 1;
8222
8223 return 0;
8224}
8225
James Ketrenos2c86c272005-03-23 17:32:29 -06008226static int ipw2100_wx_set_preamble(struct net_device *dev,
8227 struct iw_request_info *info,
8228 union iwreq_data *wrqu, char *extra)
8229{
8230 struct ipw2100_priv *priv = ieee80211_priv(dev);
8231 int err, mode = *(int *)extra;
8232
8233 down(&priv->action_sem);
8234 if (!(priv->status & STATUS_INITIALIZED)) {
8235 err = -EIO;
8236 goto done;
8237 }
8238
8239 if (mode == 1)
8240 priv->config |= CFG_LONG_PREAMBLE;
8241 else if (mode == 0)
8242 priv->config &= ~CFG_LONG_PREAMBLE;
8243 else {
8244 err = -EINVAL;
8245 goto done;
8246 }
8247
8248 err = ipw2100_system_config(priv, 0);
8249
James Ketrenosee8e3652005-09-14 09:47:29 -05008250 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06008251 up(&priv->action_sem);
8252 return err;
8253}
8254
8255static int ipw2100_wx_get_preamble(struct net_device *dev,
James Ketrenosee8e3652005-09-14 09:47:29 -05008256 struct iw_request_info *info,
8257 union iwreq_data *wrqu, char *extra)
James Ketrenos2c86c272005-03-23 17:32:29 -06008258{
8259 /*
8260 * This can be called at any time. No action lock required
8261 */
8262
8263 struct ipw2100_priv *priv = ieee80211_priv(dev);
8264
8265 if (priv->config & CFG_LONG_PREAMBLE)
8266 snprintf(wrqu->name, IFNAMSIZ, "long (1)");
8267 else
8268 snprintf(wrqu->name, IFNAMSIZ, "auto (0)");
8269
8270 return 0;
8271}
8272
James Ketrenos82328352005-08-24 22:33:31 -05008273#ifdef CONFIG_IPW2100_MONITOR
8274static int ipw2100_wx_set_crc_check(struct net_device *dev,
8275 struct iw_request_info *info,
8276 union iwreq_data *wrqu, char *extra)
James Ketrenos2c86c272005-03-23 17:32:29 -06008277{
James Ketrenos82328352005-08-24 22:33:31 -05008278 struct ipw2100_priv *priv = ieee80211_priv(dev);
8279 int err, mode = *(int *)extra;
8280
8281 down(&priv->action_sem);
8282 if (!(priv->status & STATUS_INITIALIZED)) {
8283 err = -EIO;
8284 goto done;
8285 }
8286
8287 if (mode == 1)
8288 priv->config |= CFG_CRC_CHECK;
8289 else if (mode == 0)
8290 priv->config &= ~CFG_CRC_CHECK;
8291 else {
8292 err = -EINVAL;
8293 goto done;
8294 }
8295 err = 0;
8296
8297 done:
8298 up(&priv->action_sem);
8299 return err;
8300}
8301
8302static int ipw2100_wx_get_crc_check(struct net_device *dev,
8303 struct iw_request_info *info,
8304 union iwreq_data *wrqu, char *extra)
8305{
8306 /*
8307 * This can be called at any time. No action lock required
8308 */
8309
8310 struct ipw2100_priv *priv = ieee80211_priv(dev);
8311
8312 if (priv->config & CFG_CRC_CHECK)
8313 snprintf(wrqu->name, IFNAMSIZ, "CRC checked (1)");
8314 else
8315 snprintf(wrqu->name, IFNAMSIZ, "CRC ignored (0)");
8316
8317 return 0;
8318}
8319#endif /* CONFIG_IPW2100_MONITOR */
8320
James Ketrenosee8e3652005-09-14 09:47:29 -05008321static iw_handler ipw2100_wx_handlers[] = {
8322 NULL, /* SIOCSIWCOMMIT */
8323 ipw2100_wx_get_name, /* SIOCGIWNAME */
8324 NULL, /* SIOCSIWNWID */
8325 NULL, /* SIOCGIWNWID */
8326 ipw2100_wx_set_freq, /* SIOCSIWFREQ */
8327 ipw2100_wx_get_freq, /* SIOCGIWFREQ */
8328 ipw2100_wx_set_mode, /* SIOCSIWMODE */
8329 ipw2100_wx_get_mode, /* SIOCGIWMODE */
8330 NULL, /* SIOCSIWSENS */
8331 NULL, /* SIOCGIWSENS */
8332 NULL, /* SIOCSIWRANGE */
8333 ipw2100_wx_get_range, /* SIOCGIWRANGE */
8334 NULL, /* SIOCSIWPRIV */
8335 NULL, /* SIOCGIWPRIV */
8336 NULL, /* SIOCSIWSTATS */
8337 NULL, /* SIOCGIWSTATS */
8338 NULL, /* SIOCSIWSPY */
8339 NULL, /* SIOCGIWSPY */
8340 NULL, /* SIOCGIWTHRSPY */
8341 NULL, /* SIOCWIWTHRSPY */
8342 ipw2100_wx_set_wap, /* SIOCSIWAP */
8343 ipw2100_wx_get_wap, /* SIOCGIWAP */
James Ketrenos82328352005-08-24 22:33:31 -05008344#if WIRELESS_EXT > 17
8345 ipw2100_wx_set_mlme, /* SIOCSIWMLME */
8346#else
James Ketrenosee8e3652005-09-14 09:47:29 -05008347 NULL, /* -- hole -- */
James Ketrenos82328352005-08-24 22:33:31 -05008348#endif
James Ketrenosee8e3652005-09-14 09:47:29 -05008349 NULL, /* SIOCGIWAPLIST -- deprecated */
8350 ipw2100_wx_set_scan, /* SIOCSIWSCAN */
8351 ipw2100_wx_get_scan, /* SIOCGIWSCAN */
8352 ipw2100_wx_set_essid, /* SIOCSIWESSID */
8353 ipw2100_wx_get_essid, /* SIOCGIWESSID */
8354 ipw2100_wx_set_nick, /* SIOCSIWNICKN */
8355 ipw2100_wx_get_nick, /* SIOCGIWNICKN */
8356 NULL, /* -- hole -- */
8357 NULL, /* -- hole -- */
8358 ipw2100_wx_set_rate, /* SIOCSIWRATE */
8359 ipw2100_wx_get_rate, /* SIOCGIWRATE */
8360 ipw2100_wx_set_rts, /* SIOCSIWRTS */
8361 ipw2100_wx_get_rts, /* SIOCGIWRTS */
8362 ipw2100_wx_set_frag, /* SIOCSIWFRAG */
8363 ipw2100_wx_get_frag, /* SIOCGIWFRAG */
8364 ipw2100_wx_set_txpow, /* SIOCSIWTXPOW */
8365 ipw2100_wx_get_txpow, /* SIOCGIWTXPOW */
8366 ipw2100_wx_set_retry, /* SIOCSIWRETRY */
8367 ipw2100_wx_get_retry, /* SIOCGIWRETRY */
8368 ipw2100_wx_set_encode, /* SIOCSIWENCODE */
8369 ipw2100_wx_get_encode, /* SIOCGIWENCODE */
8370 ipw2100_wx_set_power, /* SIOCSIWPOWER */
8371 ipw2100_wx_get_power, /* SIOCGIWPOWER */
James Ketrenos82328352005-08-24 22:33:31 -05008372#if WIRELESS_EXT > 17
8373 NULL, /* -- hole -- */
8374 NULL, /* -- hole -- */
8375 ipw2100_wx_set_genie, /* SIOCSIWGENIE */
8376 ipw2100_wx_get_genie, /* SIOCGIWGENIE */
8377 ipw2100_wx_set_auth, /* SIOCSIWAUTH */
8378 ipw2100_wx_get_auth, /* SIOCGIWAUTH */
8379 ipw2100_wx_set_encodeext, /* SIOCSIWENCODEEXT */
8380 ipw2100_wx_get_encodeext, /* SIOCGIWENCODEEXT */
8381 NULL, /* SIOCSIWPMKSA */
8382#endif
James Ketrenos2c86c272005-03-23 17:32:29 -06008383};
8384
8385#define IPW2100_PRIV_SET_MONITOR SIOCIWFIRSTPRIV
8386#define IPW2100_PRIV_RESET SIOCIWFIRSTPRIV+1
8387#define IPW2100_PRIV_SET_POWER SIOCIWFIRSTPRIV+2
8388#define IPW2100_PRIV_GET_POWER SIOCIWFIRSTPRIV+3
8389#define IPW2100_PRIV_SET_LONGPREAMBLE SIOCIWFIRSTPRIV+4
8390#define IPW2100_PRIV_GET_LONGPREAMBLE SIOCIWFIRSTPRIV+5
James Ketrenos82328352005-08-24 22:33:31 -05008391#define IPW2100_PRIV_SET_CRC_CHECK SIOCIWFIRSTPRIV+6
8392#define IPW2100_PRIV_GET_CRC_CHECK SIOCIWFIRSTPRIV+7
James Ketrenos2c86c272005-03-23 17:32:29 -06008393
8394static const struct iw_priv_args ipw2100_private_args[] = {
8395
8396#ifdef CONFIG_IPW2100_MONITOR
8397 {
James Ketrenosee8e3652005-09-14 09:47:29 -05008398 IPW2100_PRIV_SET_MONITOR,
8399 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 2, 0, "monitor"},
James Ketrenos2c86c272005-03-23 17:32:29 -06008400 {
James Ketrenosee8e3652005-09-14 09:47:29 -05008401 IPW2100_PRIV_RESET,
8402 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 0, 0, "reset"},
8403#endif /* CONFIG_IPW2100_MONITOR */
James Ketrenos2c86c272005-03-23 17:32:29 -06008404
8405 {
James Ketrenosee8e3652005-09-14 09:47:29 -05008406 IPW2100_PRIV_SET_POWER,
8407 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1, 0, "set_power"},
James Ketrenos2c86c272005-03-23 17:32:29 -06008408 {
James Ketrenosee8e3652005-09-14 09:47:29 -05008409 IPW2100_PRIV_GET_POWER,
8410 0, IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | MAX_POWER_STRING,
8411 "get_power"},
James Ketrenos2c86c272005-03-23 17:32:29 -06008412 {
James Ketrenosee8e3652005-09-14 09:47:29 -05008413 IPW2100_PRIV_SET_LONGPREAMBLE,
8414 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1, 0, "set_preamble"},
James Ketrenos2c86c272005-03-23 17:32:29 -06008415 {
James Ketrenosee8e3652005-09-14 09:47:29 -05008416 IPW2100_PRIV_GET_LONGPREAMBLE,
8417 0, IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | IFNAMSIZ, "get_preamble"},
James Ketrenos82328352005-08-24 22:33:31 -05008418#ifdef CONFIG_IPW2100_MONITOR
8419 {
8420 IPW2100_PRIV_SET_CRC_CHECK,
8421 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1, 0, "set_crc_check"},
8422 {
8423 IPW2100_PRIV_GET_CRC_CHECK,
8424 0, IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | IFNAMSIZ, "get_crc_check"},
8425#endif /* CONFIG_IPW2100_MONITOR */
James Ketrenos2c86c272005-03-23 17:32:29 -06008426};
8427
8428static iw_handler ipw2100_private_handler[] = {
8429#ifdef CONFIG_IPW2100_MONITOR
8430 ipw2100_wx_set_promisc,
8431 ipw2100_wx_reset,
James Ketrenosee8e3652005-09-14 09:47:29 -05008432#else /* CONFIG_IPW2100_MONITOR */
James Ketrenos2c86c272005-03-23 17:32:29 -06008433 NULL,
8434 NULL,
James Ketrenosee8e3652005-09-14 09:47:29 -05008435#endif /* CONFIG_IPW2100_MONITOR */
James Ketrenos2c86c272005-03-23 17:32:29 -06008436 ipw2100_wx_set_powermode,
8437 ipw2100_wx_get_powermode,
8438 ipw2100_wx_set_preamble,
8439 ipw2100_wx_get_preamble,
James Ketrenos82328352005-08-24 22:33:31 -05008440#ifdef CONFIG_IPW2100_MONITOR
8441 ipw2100_wx_set_crc_check,
8442 ipw2100_wx_get_crc_check,
8443#else /* CONFIG_IPW2100_MONITOR */
8444 NULL,
8445 NULL,
8446#endif /* CONFIG_IPW2100_MONITOR */
James Ketrenos2c86c272005-03-23 17:32:29 -06008447};
8448
James Ketrenosee8e3652005-09-14 09:47:29 -05008449static struct iw_handler_def ipw2100_wx_handler_def = {
James Ketrenos2c86c272005-03-23 17:32:29 -06008450 .standard = ipw2100_wx_handlers,
8451 .num_standard = sizeof(ipw2100_wx_handlers) / sizeof(iw_handler),
8452 .num_private = sizeof(ipw2100_private_handler) / sizeof(iw_handler),
James Ketrenosee8e3652005-09-14 09:47:29 -05008453 .num_private_args = sizeof(ipw2100_private_args) /
8454 sizeof(struct iw_priv_args),
8455 .private = (iw_handler *) ipw2100_private_handler,
James Ketrenos2c86c272005-03-23 17:32:29 -06008456 .private_args = (struct iw_priv_args *)ipw2100_private_args,
8457};
8458
8459/*
8460 * Get wireless statistics.
8461 * Called by /proc/net/wireless
8462 * Also called by SIOCGIWSTATS
8463 */
James Ketrenosee8e3652005-09-14 09:47:29 -05008464static struct iw_statistics *ipw2100_wx_wireless_stats(struct net_device *dev)
James Ketrenos2c86c272005-03-23 17:32:29 -06008465{
8466 enum {
8467 POOR = 30,
8468 FAIR = 60,
8469 GOOD = 80,
8470 VERY_GOOD = 90,
8471 EXCELLENT = 95,
8472 PERFECT = 100
8473 };
8474 int rssi_qual;
8475 int tx_qual;
8476 int beacon_qual;
8477
8478 struct ipw2100_priv *priv = ieee80211_priv(dev);
8479 struct iw_statistics *wstats;
8480 u32 rssi, quality, tx_retries, missed_beacons, tx_failures;
8481 u32 ord_len = sizeof(u32);
8482
8483 if (!priv)
James Ketrenosee8e3652005-09-14 09:47:29 -05008484 return (struct iw_statistics *)NULL;
James Ketrenos2c86c272005-03-23 17:32:29 -06008485
8486 wstats = &priv->wstats;
8487
8488 /* if hw is disabled, then ipw2100_get_ordinal() can't be called.
8489 * ipw2100_wx_wireless_stats seems to be called before fw is
8490 * initialized. STATUS_ASSOCIATED will only be set if the hw is up
8491 * and associated; if not associcated, the values are all meaningless
8492 * anyway, so set them all to NULL and INVALID */
8493 if (!(priv->status & STATUS_ASSOCIATED)) {
8494 wstats->miss.beacon = 0;
8495 wstats->discard.retries = 0;
8496 wstats->qual.qual = 0;
8497 wstats->qual.level = 0;
8498 wstats->qual.noise = 0;
8499 wstats->qual.updated = 7;
8500 wstats->qual.updated |= IW_QUAL_NOISE_INVALID |
James Ketrenosee8e3652005-09-14 09:47:29 -05008501 IW_QUAL_QUAL_INVALID | IW_QUAL_LEVEL_INVALID;
James Ketrenos2c86c272005-03-23 17:32:29 -06008502 return wstats;
8503 }
8504
8505 if (ipw2100_get_ordinal(priv, IPW_ORD_STAT_PERCENT_MISSED_BCNS,
8506 &missed_beacons, &ord_len))
8507 goto fail_get_ordinal;
8508
James Ketrenosee8e3652005-09-14 09:47:29 -05008509 /* If we don't have a connection the quality and level is 0 */
James Ketrenos2c86c272005-03-23 17:32:29 -06008510 if (!(priv->status & STATUS_ASSOCIATED)) {
8511 wstats->qual.qual = 0;
8512 wstats->qual.level = 0;
8513 } else {
8514 if (ipw2100_get_ordinal(priv, IPW_ORD_RSSI_AVG_CURR,
8515 &rssi, &ord_len))
8516 goto fail_get_ordinal;
8517 wstats->qual.level = rssi + IPW2100_RSSI_TO_DBM;
8518 if (rssi < 10)
8519 rssi_qual = rssi * POOR / 10;
8520 else if (rssi < 15)
8521 rssi_qual = (rssi - 10) * (FAIR - POOR) / 5 + POOR;
8522 else if (rssi < 20)
8523 rssi_qual = (rssi - 15) * (GOOD - FAIR) / 5 + FAIR;
8524 else if (rssi < 30)
8525 rssi_qual = (rssi - 20) * (VERY_GOOD - GOOD) /
James Ketrenosee8e3652005-09-14 09:47:29 -05008526 10 + GOOD;
James Ketrenos2c86c272005-03-23 17:32:29 -06008527 else
8528 rssi_qual = (rssi - 30) * (PERFECT - VERY_GOOD) /
James Ketrenosee8e3652005-09-14 09:47:29 -05008529 10 + VERY_GOOD;
James Ketrenos2c86c272005-03-23 17:32:29 -06008530
8531 if (ipw2100_get_ordinal(priv, IPW_ORD_STAT_PERCENT_RETRIES,
8532 &tx_retries, &ord_len))
8533 goto fail_get_ordinal;
8534
8535 if (tx_retries > 75)
8536 tx_qual = (90 - tx_retries) * POOR / 15;
8537 else if (tx_retries > 70)
8538 tx_qual = (75 - tx_retries) * (FAIR - POOR) / 5 + POOR;
8539 else if (tx_retries > 65)
8540 tx_qual = (70 - tx_retries) * (GOOD - FAIR) / 5 + FAIR;
8541 else if (tx_retries > 50)
8542 tx_qual = (65 - tx_retries) * (VERY_GOOD - GOOD) /
James Ketrenosee8e3652005-09-14 09:47:29 -05008543 15 + GOOD;
James Ketrenos2c86c272005-03-23 17:32:29 -06008544 else
8545 tx_qual = (50 - tx_retries) *
James Ketrenosee8e3652005-09-14 09:47:29 -05008546 (PERFECT - VERY_GOOD) / 50 + VERY_GOOD;
James Ketrenos2c86c272005-03-23 17:32:29 -06008547
8548 if (missed_beacons > 50)
8549 beacon_qual = (60 - missed_beacons) * POOR / 10;
8550 else if (missed_beacons > 40)
8551 beacon_qual = (50 - missed_beacons) * (FAIR - POOR) /
James Ketrenosee8e3652005-09-14 09:47:29 -05008552 10 + POOR;
James Ketrenos2c86c272005-03-23 17:32:29 -06008553 else if (missed_beacons > 32)
8554 beacon_qual = (40 - missed_beacons) * (GOOD - FAIR) /
James Ketrenosee8e3652005-09-14 09:47:29 -05008555 18 + FAIR;
James Ketrenos2c86c272005-03-23 17:32:29 -06008556 else if (missed_beacons > 20)
8557 beacon_qual = (32 - missed_beacons) *
James Ketrenosee8e3652005-09-14 09:47:29 -05008558 (VERY_GOOD - GOOD) / 20 + GOOD;
James Ketrenos2c86c272005-03-23 17:32:29 -06008559 else
8560 beacon_qual = (20 - missed_beacons) *
James Ketrenosee8e3652005-09-14 09:47:29 -05008561 (PERFECT - VERY_GOOD) / 20 + VERY_GOOD;
James Ketrenos2c86c272005-03-23 17:32:29 -06008562
8563 quality = min(beacon_qual, min(tx_qual, rssi_qual));
8564
8565#ifdef CONFIG_IPW_DEBUG
8566 if (beacon_qual == quality)
8567 IPW_DEBUG_WX("Quality clamped by Missed Beacons\n");
8568 else if (tx_qual == quality)
8569 IPW_DEBUG_WX("Quality clamped by Tx Retries\n");
8570 else if (quality != 100)
8571 IPW_DEBUG_WX("Quality clamped by Signal Strength\n");
8572 else
8573 IPW_DEBUG_WX("Quality not clamped.\n");
8574#endif
8575
8576 wstats->qual.qual = quality;
8577 wstats->qual.level = rssi + IPW2100_RSSI_TO_DBM;
8578 }
8579
8580 wstats->qual.noise = 0;
8581 wstats->qual.updated = 7;
8582 wstats->qual.updated |= IW_QUAL_NOISE_INVALID;
8583
James Ketrenosee8e3652005-09-14 09:47:29 -05008584 /* FIXME: this is percent and not a # */
James Ketrenos2c86c272005-03-23 17:32:29 -06008585 wstats->miss.beacon = missed_beacons;
8586
8587 if (ipw2100_get_ordinal(priv, IPW_ORD_STAT_TX_FAILURES,
8588 &tx_failures, &ord_len))
8589 goto fail_get_ordinal;
8590 wstats->discard.retries = tx_failures;
8591
8592 return wstats;
8593
James Ketrenosee8e3652005-09-14 09:47:29 -05008594 fail_get_ordinal:
James Ketrenos2c86c272005-03-23 17:32:29 -06008595 IPW_DEBUG_WX("failed querying ordinals.\n");
8596
James Ketrenosee8e3652005-09-14 09:47:29 -05008597 return (struct iw_statistics *)NULL;
James Ketrenos2c86c272005-03-23 17:32:29 -06008598}
8599
Jiri Bencc4aee8c2005-08-25 20:04:43 -04008600static void ipw2100_wx_event_work(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06008601{
8602 union iwreq_data wrqu;
8603 int len = ETH_ALEN;
8604
8605 if (priv->status & STATUS_STOPPING)
8606 return;
8607
8608 down(&priv->action_sem);
8609
8610 IPW_DEBUG_WX("enter\n");
8611
8612 up(&priv->action_sem);
8613
8614 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
8615
8616 /* Fetch BSSID from the hardware */
8617 if (!(priv->status & (STATUS_ASSOCIATING | STATUS_ASSOCIATED)) ||
8618 priv->status & STATUS_RF_KILL_MASK ||
8619 ipw2100_get_ordinal(priv, IPW_ORD_STAT_ASSN_AP_BSSID,
James Ketrenosee8e3652005-09-14 09:47:29 -05008620 &priv->bssid, &len)) {
James Ketrenos2c86c272005-03-23 17:32:29 -06008621 memset(wrqu.ap_addr.sa_data, 0, ETH_ALEN);
8622 } else {
8623 /* We now have the BSSID, so can finish setting to the full
8624 * associated state */
8625 memcpy(wrqu.ap_addr.sa_data, priv->bssid, ETH_ALEN);
James Ketrenos82328352005-08-24 22:33:31 -05008626 memcpy(priv->ieee->bssid, priv->bssid, ETH_ALEN);
James Ketrenos2c86c272005-03-23 17:32:29 -06008627 priv->status &= ~STATUS_ASSOCIATING;
8628 priv->status |= STATUS_ASSOCIATED;
8629 netif_carrier_on(priv->net_dev);
James Ketrenos82328352005-08-24 22:33:31 -05008630 netif_wake_queue(priv->net_dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06008631 }
8632
8633 if (!(priv->status & STATUS_ASSOCIATED)) {
8634 IPW_DEBUG_WX("Configuring ESSID\n");
8635 down(&priv->action_sem);
8636 /* This is a disassociation event, so kick the firmware to
8637 * look for another AP */
8638 if (priv->config & CFG_STATIC_ESSID)
James Ketrenosee8e3652005-09-14 09:47:29 -05008639 ipw2100_set_essid(priv, priv->essid, priv->essid_len,
8640 0);
James Ketrenos2c86c272005-03-23 17:32:29 -06008641 else
8642 ipw2100_set_essid(priv, NULL, 0, 0);
8643 up(&priv->action_sem);
8644 }
8645
8646 wireless_send_event(priv->net_dev, SIOCGIWAP, &wrqu, NULL);
8647}
8648
8649#define IPW2100_FW_MAJOR_VERSION 1
8650#define IPW2100_FW_MINOR_VERSION 3
8651
8652#define IPW2100_FW_MINOR(x) ((x & 0xff) >> 8)
8653#define IPW2100_FW_MAJOR(x) (x & 0xff)
8654
8655#define IPW2100_FW_VERSION ((IPW2100_FW_MINOR_VERSION << 8) | \
8656 IPW2100_FW_MAJOR_VERSION)
8657
8658#define IPW2100_FW_PREFIX "ipw2100-" __stringify(IPW2100_FW_MAJOR_VERSION) \
8659"." __stringify(IPW2100_FW_MINOR_VERSION)
8660
8661#define IPW2100_FW_NAME(x) IPW2100_FW_PREFIX "" x ".fw"
8662
James Ketrenos2c86c272005-03-23 17:32:29 -06008663/*
8664
8665BINARY FIRMWARE HEADER FORMAT
8666
8667offset length desc
86680 2 version
86692 2 mode == 0:BSS,1:IBSS,2:MONITOR
86704 4 fw_len
86718 4 uc_len
8672C fw_len firmware data
867312 + fw_len uc_len microcode data
8674
8675*/
8676
8677struct ipw2100_fw_header {
8678 short version;
8679 short mode;
8680 unsigned int fw_size;
8681 unsigned int uc_size;
8682} __attribute__ ((packed));
8683
James Ketrenos2c86c272005-03-23 17:32:29 -06008684static int ipw2100_mod_firmware_load(struct ipw2100_fw *fw)
8685{
8686 struct ipw2100_fw_header *h =
James Ketrenosee8e3652005-09-14 09:47:29 -05008687 (struct ipw2100_fw_header *)fw->fw_entry->data;
James Ketrenos2c86c272005-03-23 17:32:29 -06008688
8689 if (IPW2100_FW_MAJOR(h->version) != IPW2100_FW_MAJOR_VERSION) {
Jiri Benc797b4f72005-08-25 20:03:27 -04008690 printk(KERN_WARNING DRV_NAME ": Firmware image not compatible "
James Ketrenos2c86c272005-03-23 17:32:29 -06008691 "(detected version id of %u). "
8692 "See Documentation/networking/README.ipw2100\n",
8693 h->version);
8694 return 1;
8695 }
8696
8697 fw->version = h->version;
8698 fw->fw.data = fw->fw_entry->data + sizeof(struct ipw2100_fw_header);
8699 fw->fw.size = h->fw_size;
8700 fw->uc.data = fw->fw.data + h->fw_size;
8701 fw->uc.size = h->uc_size;
8702
8703 return 0;
8704}
8705
Jiri Bencc4aee8c2005-08-25 20:04:43 -04008706static int ipw2100_get_firmware(struct ipw2100_priv *priv,
8707 struct ipw2100_fw *fw)
James Ketrenos2c86c272005-03-23 17:32:29 -06008708{
8709 char *fw_name;
8710 int rc;
8711
8712 IPW_DEBUG_INFO("%s: Using hotplug firmware load.\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05008713 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06008714
8715 switch (priv->ieee->iw_mode) {
8716 case IW_MODE_ADHOC:
8717 fw_name = IPW2100_FW_NAME("-i");
8718 break;
8719#ifdef CONFIG_IPW2100_MONITOR
8720 case IW_MODE_MONITOR:
8721 fw_name = IPW2100_FW_NAME("-p");
8722 break;
8723#endif
8724 case IW_MODE_INFRA:
8725 default:
8726 fw_name = IPW2100_FW_NAME("");
8727 break;
8728 }
8729
8730 rc = request_firmware(&fw->fw_entry, fw_name, &priv->pci_dev->dev);
8731
8732 if (rc < 0) {
Jiri Benc797b4f72005-08-25 20:03:27 -04008733 printk(KERN_ERR DRV_NAME ": "
James Ketrenos2c86c272005-03-23 17:32:29 -06008734 "%s: Firmware '%s' not available or load failed.\n",
8735 priv->net_dev->name, fw_name);
8736 return rc;
8737 }
Jiri Bencaaa4d302005-06-07 14:58:41 +02008738 IPW_DEBUG_INFO("firmware data %p size %zd\n", fw->fw_entry->data,
James Ketrenosee8e3652005-09-14 09:47:29 -05008739 fw->fw_entry->size);
James Ketrenos2c86c272005-03-23 17:32:29 -06008740
8741 ipw2100_mod_firmware_load(fw);
8742
8743 return 0;
8744}
8745
Jiri Bencc4aee8c2005-08-25 20:04:43 -04008746static void ipw2100_release_firmware(struct ipw2100_priv *priv,
8747 struct ipw2100_fw *fw)
James Ketrenos2c86c272005-03-23 17:32:29 -06008748{
8749 fw->version = 0;
8750 if (fw->fw_entry)
8751 release_firmware(fw->fw_entry);
8752 fw->fw_entry = NULL;
8753}
8754
Jiri Bencc4aee8c2005-08-25 20:04:43 -04008755static int ipw2100_get_fwversion(struct ipw2100_priv *priv, char *buf,
8756 size_t max)
James Ketrenos2c86c272005-03-23 17:32:29 -06008757{
8758 char ver[MAX_FW_VERSION_LEN];
8759 u32 len = MAX_FW_VERSION_LEN;
8760 u32 tmp;
8761 int i;
8762 /* firmware version is an ascii string (max len of 14) */
James Ketrenosee8e3652005-09-14 09:47:29 -05008763 if (ipw2100_get_ordinal(priv, IPW_ORD_STAT_FW_VER_NUM, ver, &len))
James Ketrenos2c86c272005-03-23 17:32:29 -06008764 return -EIO;
8765 tmp = max;
8766 if (len >= max)
8767 len = max - 1;
8768 for (i = 0; i < len; i++)
8769 buf[i] = ver[i];
8770 buf[i] = '\0';
8771 return tmp;
8772}
8773
Jiri Bencc4aee8c2005-08-25 20:04:43 -04008774static int ipw2100_get_ucodeversion(struct ipw2100_priv *priv, char *buf,
8775 size_t max)
James Ketrenos2c86c272005-03-23 17:32:29 -06008776{
8777 u32 ver;
8778 u32 len = sizeof(ver);
8779 /* microcode version is a 32 bit integer */
James Ketrenosee8e3652005-09-14 09:47:29 -05008780 if (ipw2100_get_ordinal(priv, IPW_ORD_UCODE_VERSION, &ver, &len))
James Ketrenos2c86c272005-03-23 17:32:29 -06008781 return -EIO;
8782 return snprintf(buf, max, "%08X", ver);
8783}
8784
8785/*
8786 * On exit, the firmware will have been freed from the fw list
8787 */
James Ketrenosee8e3652005-09-14 09:47:29 -05008788static int ipw2100_fw_download(struct ipw2100_priv *priv, struct ipw2100_fw *fw)
James Ketrenos2c86c272005-03-23 17:32:29 -06008789{
8790 /* firmware is constructed of N contiguous entries, each entry is
8791 * structured as:
8792 *
8793 * offset sie desc
8794 * 0 4 address to write to
8795 * 4 2 length of data run
James Ketrenosee8e3652005-09-14 09:47:29 -05008796 * 6 length data
James Ketrenos2c86c272005-03-23 17:32:29 -06008797 */
8798 unsigned int addr;
8799 unsigned short len;
8800
8801 const unsigned char *firmware_data = fw->fw.data;
8802 unsigned int firmware_data_left = fw->fw.size;
8803
8804 while (firmware_data_left > 0) {
James Ketrenosee8e3652005-09-14 09:47:29 -05008805 addr = *(u32 *) (firmware_data);
8806 firmware_data += 4;
James Ketrenos2c86c272005-03-23 17:32:29 -06008807 firmware_data_left -= 4;
8808
James Ketrenosee8e3652005-09-14 09:47:29 -05008809 len = *(u16 *) (firmware_data);
8810 firmware_data += 2;
James Ketrenos2c86c272005-03-23 17:32:29 -06008811 firmware_data_left -= 2;
8812
8813 if (len > 32) {
Jiri Benc797b4f72005-08-25 20:03:27 -04008814 printk(KERN_ERR DRV_NAME ": "
James Ketrenos2c86c272005-03-23 17:32:29 -06008815 "Invalid firmware run-length of %d bytes\n",
8816 len);
8817 return -EINVAL;
8818 }
8819
8820 write_nic_memory(priv->net_dev, addr, len, firmware_data);
James Ketrenosee8e3652005-09-14 09:47:29 -05008821 firmware_data += len;
James Ketrenos2c86c272005-03-23 17:32:29 -06008822 firmware_data_left -= len;
8823 }
8824
8825 return 0;
8826}
8827
8828struct symbol_alive_response {
8829 u8 cmd_id;
8830 u8 seq_num;
8831 u8 ucode_rev;
8832 u8 eeprom_valid;
8833 u16 valid_flags;
8834 u8 IEEE_addr[6];
8835 u16 flags;
8836 u16 pcb_rev;
8837 u16 clock_settle_time; // 1us LSB
8838 u16 powerup_settle_time; // 1us LSB
8839 u16 hop_settle_time; // 1us LSB
8840 u8 date[3]; // month, day, year
8841 u8 time[2]; // hours, minutes
8842 u8 ucode_valid;
8843};
8844
Jiri Bencc4aee8c2005-08-25 20:04:43 -04008845static int ipw2100_ucode_download(struct ipw2100_priv *priv,
8846 struct ipw2100_fw *fw)
James Ketrenos2c86c272005-03-23 17:32:29 -06008847{
8848 struct net_device *dev = priv->net_dev;
8849 const unsigned char *microcode_data = fw->uc.data;
8850 unsigned int microcode_data_left = fw->uc.size;
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008851 void __iomem *reg = (void __iomem *)dev->base_addr;
James Ketrenos2c86c272005-03-23 17:32:29 -06008852
8853 struct symbol_alive_response response;
8854 int i, j;
8855 u8 data;
8856
8857 /* Symbol control */
8858 write_nic_word(dev, IPW2100_CONTROL_REG, 0x703);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008859 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008860 write_nic_word(dev, IPW2100_CONTROL_REG, 0x707);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008861 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008862
8863 /* HW config */
8864 write_nic_byte(dev, 0x210014, 0x72); /* fifo width =16 */
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008865 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008866 write_nic_byte(dev, 0x210014, 0x72); /* fifo width =16 */
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008867 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008868
8869 /* EN_CS_ACCESS bit to reset control store pointer */
8870 write_nic_byte(dev, 0x210000, 0x40);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008871 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008872 write_nic_byte(dev, 0x210000, 0x0);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008873 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008874 write_nic_byte(dev, 0x210000, 0x40);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008875 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008876
8877 /* copy microcode from buffer into Symbol */
8878
8879 while (microcode_data_left > 0) {
8880 write_nic_byte(dev, 0x210010, *microcode_data++);
8881 write_nic_byte(dev, 0x210010, *microcode_data++);
8882 microcode_data_left -= 2;
8883 }
8884
8885 /* EN_CS_ACCESS bit to reset the control store pointer */
8886 write_nic_byte(dev, 0x210000, 0x0);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008887 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008888
8889 /* Enable System (Reg 0)
8890 * first enable causes garbage in RX FIFO */
8891 write_nic_byte(dev, 0x210000, 0x0);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008892 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008893 write_nic_byte(dev, 0x210000, 0x80);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008894 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008895
8896 /* Reset External Baseband Reg */
8897 write_nic_word(dev, IPW2100_CONTROL_REG, 0x703);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008898 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008899 write_nic_word(dev, IPW2100_CONTROL_REG, 0x707);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008900 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008901
8902 /* HW Config (Reg 5) */
8903 write_nic_byte(dev, 0x210014, 0x72); // fifo width =16
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008904 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008905 write_nic_byte(dev, 0x210014, 0x72); // fifo width =16
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008906 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008907
8908 /* Enable System (Reg 0)
8909 * second enable should be OK */
8910 write_nic_byte(dev, 0x210000, 0x00); // clear enable system
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008911 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008912 write_nic_byte(dev, 0x210000, 0x80); // set enable system
8913
8914 /* check Symbol is enabled - upped this from 5 as it wasn't always
8915 * catching the update */
8916 for (i = 0; i < 10; i++) {
8917 udelay(10);
8918
8919 /* check Dino is enabled bit */
8920 read_nic_byte(dev, 0x210000, &data);
8921 if (data & 0x1)
8922 break;
8923 }
8924
8925 if (i == 10) {
Jiri Benc797b4f72005-08-25 20:03:27 -04008926 printk(KERN_ERR DRV_NAME ": %s: Error initializing Symbol\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06008927 dev->name);
8928 return -EIO;
8929 }
8930
8931 /* Get Symbol alive response */
8932 for (i = 0; i < 30; i++) {
8933 /* Read alive response structure */
8934 for (j = 0;
James Ketrenosee8e3652005-09-14 09:47:29 -05008935 j < (sizeof(struct symbol_alive_response) >> 1); j++)
8936 read_nic_word(dev, 0x210004, ((u16 *) & response) + j);
James Ketrenos2c86c272005-03-23 17:32:29 -06008937
James Ketrenosee8e3652005-09-14 09:47:29 -05008938 if ((response.cmd_id == 1) && (response.ucode_valid == 0x1))
James Ketrenos2c86c272005-03-23 17:32:29 -06008939 break;
8940 udelay(10);
8941 }
8942
8943 if (i == 30) {
James Ketrenosee8e3652005-09-14 09:47:29 -05008944 printk(KERN_ERR DRV_NAME
8945 ": %s: No response from Symbol - hw not alive\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06008946 dev->name);
James Ketrenosee8e3652005-09-14 09:47:29 -05008947 printk_buf(IPW_DL_ERROR, (u8 *) & response, sizeof(response));
James Ketrenos2c86c272005-03-23 17:32:29 -06008948 return -EIO;
8949 }
8950
8951 return 0;
8952}