blob: a15eef1c2a6277f0ec76c0c26ca459f49ecc006c [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
170#define IPW2100_VERSION "1.1.0"
171
172#define DRV_NAME "ipw2100"
173#define DRV_VERSION IPW2100_VERSION
174#define DRV_DESCRIPTION "Intel(R) PRO/Wireless 2100 Network Driver"
175#define DRV_COPYRIGHT "Copyright(c) 2003-2004 Intel Corporation"
176
James Ketrenos2c86c272005-03-23 17:32:29 -0600177/* 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",
782 HOST_COMPLETE_TIMEOUT / (HZ / 100));
783 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;
1619 if ((priv->sec.flags & SEC_ENABLED) && priv->sec.enabled)
1620 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) {
1836 IPW_DEBUG_INFO(DRV_NAME ": Resetting C3 transitions.\n");
1837 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);
1861 IPW_DEBUG_INFO(DRV_NAME ": %s: Restarting adapter.\n",
1862 priv->net_dev->name);
1863 priv->resets++;
1864 priv->status &= ~(STATUS_ASSOCIATED | STATUS_ASSOCIATING);
1865 priv->status |= STATUS_SECURITY_UPDATED;
1866
1867 /* Force a power cycle even if interface hasn't been opened
1868 * yet */
1869 cancel_delayed_work(&priv->reset_work);
1870 priv->status |= STATUS_RESET_PENDING;
1871 spin_unlock_irqrestore(&priv->low_lock, flags);
1872
1873 down(&priv->action_sem);
1874 /* stop timed checks so that they don't interfere with reset */
1875 priv->stop_hang_check = 1;
1876 cancel_delayed_work(&priv->hang_check);
1877
1878 /* We have to signal any supplicant if we are disassociating */
1879 if (associated)
1880 wireless_send_event(priv->net_dev, SIOCGIWAP, &wrqu, NULL);
1881
1882 ipw2100_up(priv, 0);
1883 up(&priv->action_sem);
1884
1885}
1886
James Ketrenos2c86c272005-03-23 17:32:29 -06001887static void isr_indicate_associated(struct ipw2100_priv *priv, u32 status)
1888{
1889
1890#define MAC_ASSOCIATION_READ_DELAY (HZ)
1891 int ret, len, essid_len;
1892 char essid[IW_ESSID_MAX_SIZE];
1893 u32 txrate;
1894 u32 chan;
1895 char *txratename;
James Ketrenosee8e3652005-09-14 09:47:29 -05001896 u8 bssid[ETH_ALEN];
James Ketrenos2c86c272005-03-23 17:32:29 -06001897
1898 /*
1899 * TBD: BSSID is usually 00:00:00:00:00:00 here and not
1900 * an actual MAC of the AP. Seems like FW sets this
1901 * address too late. Read it later and expose through
1902 * /proc or schedule a later task to query and update
1903 */
1904
1905 essid_len = IW_ESSID_MAX_SIZE;
1906 ret = ipw2100_get_ordinal(priv, IPW_ORD_STAT_ASSN_SSID,
1907 essid, &essid_len);
1908 if (ret) {
1909 IPW_DEBUG_INFO("failed querying ordinals at line %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05001910 __LINE__);
James Ketrenos2c86c272005-03-23 17:32:29 -06001911 return;
1912 }
1913
1914 len = sizeof(u32);
James Ketrenosee8e3652005-09-14 09:47:29 -05001915 ret = ipw2100_get_ordinal(priv, IPW_ORD_CURRENT_TX_RATE, &txrate, &len);
James Ketrenos2c86c272005-03-23 17:32:29 -06001916 if (ret) {
1917 IPW_DEBUG_INFO("failed querying ordinals at line %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05001918 __LINE__);
James Ketrenos2c86c272005-03-23 17:32:29 -06001919 return;
1920 }
1921
1922 len = sizeof(u32);
1923 ret = ipw2100_get_ordinal(priv, IPW_ORD_OUR_FREQ, &chan, &len);
1924 if (ret) {
1925 IPW_DEBUG_INFO("failed querying ordinals at line %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05001926 __LINE__);
James Ketrenos2c86c272005-03-23 17:32:29 -06001927 return;
1928 }
1929 len = ETH_ALEN;
James Ketrenosee8e3652005-09-14 09:47:29 -05001930 ipw2100_get_ordinal(priv, IPW_ORD_STAT_ASSN_AP_BSSID, &bssid, &len);
James Ketrenos2c86c272005-03-23 17:32:29 -06001931 if (ret) {
1932 IPW_DEBUG_INFO("failed querying ordinals at line %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05001933 __LINE__);
James Ketrenos2c86c272005-03-23 17:32:29 -06001934 return;
1935 }
1936 memcpy(priv->ieee->bssid, bssid, ETH_ALEN);
1937
James Ketrenos2c86c272005-03-23 17:32:29 -06001938 switch (txrate) {
1939 case TX_RATE_1_MBIT:
1940 txratename = "1Mbps";
1941 break;
1942 case TX_RATE_2_MBIT:
1943 txratename = "2Mbsp";
1944 break;
1945 case TX_RATE_5_5_MBIT:
1946 txratename = "5.5Mbps";
1947 break;
1948 case TX_RATE_11_MBIT:
1949 txratename = "11Mbps";
1950 break;
1951 default:
1952 IPW_DEBUG_INFO("Unknown rate: %d\n", txrate);
1953 txratename = "unknown rate";
1954 break;
1955 }
1956
1957 IPW_DEBUG_INFO("%s: Associated with '%s' at %s, channel %d (BSSID="
1958 MAC_FMT ")\n",
1959 priv->net_dev->name, escape_essid(essid, essid_len),
1960 txratename, chan, MAC_ARG(bssid));
1961
1962 /* now we copy read ssid into dev */
1963 if (!(priv->config & CFG_STATIC_ESSID)) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001964 priv->essid_len = min((u8) essid_len, (u8) IW_ESSID_MAX_SIZE);
James Ketrenos2c86c272005-03-23 17:32:29 -06001965 memcpy(priv->essid, essid, priv->essid_len);
1966 }
1967 priv->channel = chan;
1968 memcpy(priv->bssid, bssid, ETH_ALEN);
1969
1970 priv->status |= STATUS_ASSOCIATING;
1971 priv->connect_start = get_seconds();
1972
1973 queue_delayed_work(priv->workqueue, &priv->wx_event_work, HZ / 10);
1974}
1975
Jiri Bencc4aee8c2005-08-25 20:04:43 -04001976static int ipw2100_set_essid(struct ipw2100_priv *priv, char *essid,
1977 int length, int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06001978{
1979 int ssid_len = min(length, IW_ESSID_MAX_SIZE);
1980 struct host_command cmd = {
1981 .host_command = SSID,
1982 .host_command_sequence = 0,
1983 .host_command_length = ssid_len
1984 };
1985 int err;
1986
1987 IPW_DEBUG_HC("SSID: '%s'\n", escape_essid(essid, ssid_len));
1988
1989 if (ssid_len)
James Ketrenosee8e3652005-09-14 09:47:29 -05001990 memcpy((char *)cmd.host_command_parameters, essid, ssid_len);
James Ketrenos2c86c272005-03-23 17:32:29 -06001991
1992 if (!batch_mode) {
1993 err = ipw2100_disable_adapter(priv);
1994 if (err)
1995 return err;
1996 }
1997
1998 /* Bug in FW currently doesn't honor bit 0 in SET_SCAN_OPTIONS to
1999 * disable auto association -- so we cheat by setting a bogus SSID */
2000 if (!ssid_len && !(priv->config & CFG_ASSOCIATE)) {
2001 int i;
James Ketrenosee8e3652005-09-14 09:47:29 -05002002 u8 *bogus = (u8 *) cmd.host_command_parameters;
James Ketrenos2c86c272005-03-23 17:32:29 -06002003 for (i = 0; i < IW_ESSID_MAX_SIZE; i++)
2004 bogus[i] = 0x18 + i;
2005 cmd.host_command_length = IW_ESSID_MAX_SIZE;
2006 }
2007
2008 /* NOTE: We always send the SSID command even if the provided ESSID is
2009 * the same as what we currently think is set. */
2010
2011 err = ipw2100_hw_send_command(priv, &cmd);
2012 if (!err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05002013 memset(priv->essid + ssid_len, 0, IW_ESSID_MAX_SIZE - ssid_len);
James Ketrenos2c86c272005-03-23 17:32:29 -06002014 memcpy(priv->essid, essid, ssid_len);
2015 priv->essid_len = ssid_len;
2016 }
2017
2018 if (!batch_mode) {
2019 if (ipw2100_enable_adapter(priv))
2020 err = -EIO;
2021 }
2022
2023 return err;
2024}
2025
2026static void isr_indicate_association_lost(struct ipw2100_priv *priv, u32 status)
2027{
2028 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE | IPW_DL_ASSOC,
2029 "disassociated: '%s' " MAC_FMT " \n",
2030 escape_essid(priv->essid, priv->essid_len),
2031 MAC_ARG(priv->bssid));
2032
2033 priv->status &= ~(STATUS_ASSOCIATED | STATUS_ASSOCIATING);
2034
2035 if (priv->status & STATUS_STOPPING) {
2036 IPW_DEBUG_INFO("Card is stopping itself, discard ASSN_LOST.\n");
2037 return;
2038 }
2039
2040 memset(priv->bssid, 0, ETH_ALEN);
2041 memset(priv->ieee->bssid, 0, ETH_ALEN);
2042
2043 netif_carrier_off(priv->net_dev);
2044 netif_stop_queue(priv->net_dev);
2045
2046 if (!(priv->status & STATUS_RUNNING))
2047 return;
2048
2049 if (priv->status & STATUS_SECURITY_UPDATED)
2050 queue_work(priv->workqueue, &priv->security_work);
2051
2052 queue_work(priv->workqueue, &priv->wx_event_work);
2053}
2054
2055static void isr_indicate_rf_kill(struct ipw2100_priv *priv, u32 status)
2056{
2057 IPW_DEBUG_INFO("%s: RF Kill state changed to radio OFF.\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05002058 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06002059
2060 /* RF_KILL is now enabled (else we wouldn't be here) */
2061 priv->status |= STATUS_RF_KILL_HW;
2062
2063#ifdef ACPI_CSTATE_LIMIT_DEFINED
2064 if (priv->config & CFG_C3_DISABLED) {
2065 IPW_DEBUG_INFO(DRV_NAME ": Resetting C3 transitions.\n");
2066 acpi_set_cstate_limit(priv->cstate_limit);
2067 priv->config &= ~CFG_C3_DISABLED;
2068 }
2069#endif
2070
2071 /* Make sure the RF Kill check timer is running */
2072 priv->stop_rf_kill = 0;
2073 cancel_delayed_work(&priv->rf_kill);
2074 queue_delayed_work(priv->workqueue, &priv->rf_kill, HZ);
2075}
2076
2077static void isr_scan_complete(struct ipw2100_priv *priv, u32 status)
2078{
2079 IPW_DEBUG_SCAN("scan complete\n");
2080 /* Age the scan results... */
2081 priv->ieee->scans++;
2082 priv->status &= ~STATUS_SCANNING;
2083}
2084
2085#ifdef CONFIG_IPW_DEBUG
2086#define IPW2100_HANDLER(v, f) { v, f, # v }
2087struct ipw2100_status_indicator {
2088 int status;
James Ketrenosee8e3652005-09-14 09:47:29 -05002089 void (*cb) (struct ipw2100_priv * priv, u32 status);
James Ketrenos2c86c272005-03-23 17:32:29 -06002090 char *name;
2091};
2092#else
2093#define IPW2100_HANDLER(v, f) { v, f }
2094struct ipw2100_status_indicator {
2095 int status;
James Ketrenosee8e3652005-09-14 09:47:29 -05002096 void (*cb) (struct ipw2100_priv * priv, u32 status);
James Ketrenos2c86c272005-03-23 17:32:29 -06002097};
James Ketrenosee8e3652005-09-14 09:47:29 -05002098#endif /* CONFIG_IPW_DEBUG */
James Ketrenos2c86c272005-03-23 17:32:29 -06002099
2100static void isr_indicate_scanning(struct ipw2100_priv *priv, u32 status)
2101{
2102 IPW_DEBUG_SCAN("Scanning...\n");
2103 priv->status |= STATUS_SCANNING;
2104}
2105
Jiri Bencc4aee8c2005-08-25 20:04:43 -04002106static const struct ipw2100_status_indicator status_handlers[] = {
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01002107 IPW2100_HANDLER(IPW_STATE_INITIALIZED, NULL),
2108 IPW2100_HANDLER(IPW_STATE_COUNTRY_FOUND, NULL),
James Ketrenos2c86c272005-03-23 17:32:29 -06002109 IPW2100_HANDLER(IPW_STATE_ASSOCIATED, isr_indicate_associated),
2110 IPW2100_HANDLER(IPW_STATE_ASSN_LOST, isr_indicate_association_lost),
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01002111 IPW2100_HANDLER(IPW_STATE_ASSN_CHANGED, NULL),
James Ketrenos2c86c272005-03-23 17:32:29 -06002112 IPW2100_HANDLER(IPW_STATE_SCAN_COMPLETE, isr_scan_complete),
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01002113 IPW2100_HANDLER(IPW_STATE_ENTERED_PSP, NULL),
2114 IPW2100_HANDLER(IPW_STATE_LEFT_PSP, NULL),
James Ketrenos2c86c272005-03-23 17:32:29 -06002115 IPW2100_HANDLER(IPW_STATE_RF_KILL, isr_indicate_rf_kill),
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01002116 IPW2100_HANDLER(IPW_STATE_DISABLED, NULL),
2117 IPW2100_HANDLER(IPW_STATE_POWER_DOWN, NULL),
James Ketrenos2c86c272005-03-23 17:32:29 -06002118 IPW2100_HANDLER(IPW_STATE_SCANNING, isr_indicate_scanning),
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01002119 IPW2100_HANDLER(-1, NULL)
James Ketrenos2c86c272005-03-23 17:32:29 -06002120};
2121
James Ketrenos2c86c272005-03-23 17:32:29 -06002122static void isr_status_change(struct ipw2100_priv *priv, int status)
2123{
2124 int i;
2125
2126 if (status == IPW_STATE_SCANNING &&
2127 priv->status & STATUS_ASSOCIATED &&
2128 !(priv->status & STATUS_SCANNING)) {
2129 IPW_DEBUG_INFO("Scan detected while associated, with "
2130 "no scan request. Restarting firmware.\n");
2131
2132 /* Wake up any sleeping jobs */
2133 schedule_reset(priv);
2134 }
2135
2136 for (i = 0; status_handlers[i].status != -1; i++) {
2137 if (status == status_handlers[i].status) {
2138 IPW_DEBUG_NOTIF("Status change: %s\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05002139 status_handlers[i].name);
James Ketrenos2c86c272005-03-23 17:32:29 -06002140 if (status_handlers[i].cb)
2141 status_handlers[i].cb(priv, status);
2142 priv->wstats.status = status;
2143 return;
2144 }
2145 }
2146
2147 IPW_DEBUG_NOTIF("unknown status received: %04x\n", status);
2148}
2149
James Ketrenosee8e3652005-09-14 09:47:29 -05002150static void isr_rx_complete_command(struct ipw2100_priv *priv,
2151 struct ipw2100_cmd_header *cmd)
James Ketrenos2c86c272005-03-23 17:32:29 -06002152{
2153#ifdef CONFIG_IPW_DEBUG
2154 if (cmd->host_command_reg < ARRAY_SIZE(command_types)) {
2155 IPW_DEBUG_HC("Command completed '%s (%d)'\n",
2156 command_types[cmd->host_command_reg],
2157 cmd->host_command_reg);
2158 }
2159#endif
2160 if (cmd->host_command_reg == HOST_COMPLETE)
2161 priv->status |= STATUS_ENABLED;
2162
2163 if (cmd->host_command_reg == CARD_DISABLE)
2164 priv->status &= ~STATUS_ENABLED;
2165
2166 priv->status &= ~STATUS_CMD_ACTIVE;
2167
2168 wake_up_interruptible(&priv->wait_command_queue);
2169}
2170
2171#ifdef CONFIG_IPW_DEBUG
Jiri Bencc4aee8c2005-08-25 20:04:43 -04002172static const char *frame_types[] = {
James Ketrenos2c86c272005-03-23 17:32:29 -06002173 "COMMAND_STATUS_VAL",
2174 "STATUS_CHANGE_VAL",
2175 "P80211_DATA_VAL",
2176 "P8023_DATA_VAL",
2177 "HOST_NOTIFICATION_VAL"
2178};
2179#endif
2180
James Ketrenosee8e3652005-09-14 09:47:29 -05002181static inline int ipw2100_alloc_skb(struct ipw2100_priv *priv,
2182 struct ipw2100_rx_packet *packet)
James Ketrenos2c86c272005-03-23 17:32:29 -06002183{
2184 packet->skb = dev_alloc_skb(sizeof(struct ipw2100_rx));
2185 if (!packet->skb)
2186 return -ENOMEM;
2187
2188 packet->rxp = (struct ipw2100_rx *)packet->skb->data;
2189 packet->dma_addr = pci_map_single(priv->pci_dev, packet->skb->data,
2190 sizeof(struct ipw2100_rx),
2191 PCI_DMA_FROMDEVICE);
2192 /* NOTE: pci_map_single does not return an error code, and 0 is a valid
2193 * dma_addr */
2194
2195 return 0;
2196}
2197
James Ketrenos2c86c272005-03-23 17:32:29 -06002198#define SEARCH_ERROR 0xffffffff
2199#define SEARCH_FAIL 0xfffffffe
2200#define SEARCH_SUCCESS 0xfffffff0
2201#define SEARCH_DISCARD 0
2202#define SEARCH_SNAPSHOT 1
2203
2204#define SNAPSHOT_ADDR(ofs) (priv->snapshot[((ofs) >> 12) & 0xff] + ((ofs) & 0xfff))
2205static inline int ipw2100_snapshot_alloc(struct ipw2100_priv *priv)
2206{
2207 int i;
2208 if (priv->snapshot[0])
2209 return 1;
2210 for (i = 0; i < 0x30; i++) {
James Ketrenosee8e3652005-09-14 09:47:29 -05002211 priv->snapshot[i] = (u8 *) kmalloc(0x1000, GFP_ATOMIC);
James Ketrenos2c86c272005-03-23 17:32:29 -06002212 if (!priv->snapshot[i]) {
2213 IPW_DEBUG_INFO("%s: Error allocating snapshot "
James Ketrenosee8e3652005-09-14 09:47:29 -05002214 "buffer %d\n", priv->net_dev->name, i);
James Ketrenos2c86c272005-03-23 17:32:29 -06002215 while (i > 0)
2216 kfree(priv->snapshot[--i]);
2217 priv->snapshot[0] = NULL;
2218 return 0;
2219 }
2220 }
2221
2222 return 1;
2223}
2224
2225static inline void ipw2100_snapshot_free(struct ipw2100_priv *priv)
2226{
2227 int i;
2228 if (!priv->snapshot[0])
2229 return;
2230 for (i = 0; i < 0x30; i++)
2231 kfree(priv->snapshot[i]);
2232 priv->snapshot[0] = NULL;
2233}
2234
James Ketrenosee8e3652005-09-14 09:47:29 -05002235static inline u32 ipw2100_match_buf(struct ipw2100_priv *priv, u8 * in_buf,
James Ketrenos2c86c272005-03-23 17:32:29 -06002236 size_t len, int mode)
2237{
2238 u32 i, j;
2239 u32 tmp;
2240 u8 *s, *d;
2241 u32 ret;
2242
2243 s = in_buf;
2244 if (mode == SEARCH_SNAPSHOT) {
2245 if (!ipw2100_snapshot_alloc(priv))
2246 mode = SEARCH_DISCARD;
2247 }
2248
2249 for (ret = SEARCH_FAIL, i = 0; i < 0x30000; i += 4) {
2250 read_nic_dword(priv->net_dev, i, &tmp);
2251 if (mode == SEARCH_SNAPSHOT)
James Ketrenosee8e3652005-09-14 09:47:29 -05002252 *(u32 *) SNAPSHOT_ADDR(i) = tmp;
James Ketrenos2c86c272005-03-23 17:32:29 -06002253 if (ret == SEARCH_FAIL) {
James Ketrenosee8e3652005-09-14 09:47:29 -05002254 d = (u8 *) & tmp;
James Ketrenos2c86c272005-03-23 17:32:29 -06002255 for (j = 0; j < 4; j++) {
2256 if (*s != *d) {
2257 s = in_buf;
2258 continue;
2259 }
2260
2261 s++;
2262 d++;
2263
2264 if ((s - in_buf) == len)
2265 ret = (i + j) - len + 1;
2266 }
2267 } else if (mode == SEARCH_DISCARD)
2268 return ret;
2269 }
2270
2271 return ret;
2272}
2273
2274/*
2275 *
2276 * 0) Disconnect the SKB from the firmware (just unmap)
2277 * 1) Pack the ETH header into the SKB
2278 * 2) Pass the SKB to the network stack
2279 *
2280 * When packet is provided by the firmware, it contains the following:
2281 *
2282 * . ieee80211_hdr
2283 * . ieee80211_snap_hdr
2284 *
2285 * The size of the constructed ethernet
2286 *
2287 */
2288#ifdef CONFIG_IPW2100_RX_DEBUG
Jiri Bencc4aee8c2005-08-25 20:04:43 -04002289static u8 packet_data[IPW_RX_NIC_BUFFER_LENGTH];
James Ketrenos2c86c272005-03-23 17:32:29 -06002290#endif
2291
James Ketrenosee8e3652005-09-14 09:47:29 -05002292static inline void ipw2100_corruption_detected(struct ipw2100_priv *priv, int i)
James Ketrenos2c86c272005-03-23 17:32:29 -06002293{
2294#ifdef CONFIG_IPW_DEBUG_C3
2295 struct ipw2100_status *status = &priv->status_queue.drv[i];
2296 u32 match, reg;
2297 int j;
2298#endif
2299#ifdef ACPI_CSTATE_LIMIT_DEFINED
2300 int limit;
2301#endif
2302
2303 IPW_DEBUG_INFO(DRV_NAME ": PCI latency error detected at "
Jiri Bencaaa4d302005-06-07 14:58:41 +02002304 "0x%04zX.\n", i * sizeof(struct ipw2100_status));
James Ketrenos2c86c272005-03-23 17:32:29 -06002305
2306#ifdef ACPI_CSTATE_LIMIT_DEFINED
2307 IPW_DEBUG_INFO(DRV_NAME ": Disabling C3 transitions.\n");
2308 limit = acpi_get_cstate_limit();
2309 if (limit > 2) {
2310 priv->cstate_limit = limit;
2311 acpi_set_cstate_limit(2);
2312 priv->config |= CFG_C3_DISABLED;
2313 }
2314#endif
2315
2316#ifdef CONFIG_IPW_DEBUG_C3
2317 /* Halt the fimrware so we can get a good image */
2318 write_register(priv->net_dev, IPW_REG_RESET_REG,
2319 IPW_AUX_HOST_RESET_REG_STOP_MASTER);
2320 j = 5;
2321 do {
2322 udelay(IPW_WAIT_RESET_MASTER_ASSERT_COMPLETE_DELAY);
2323 read_register(priv->net_dev, IPW_REG_RESET_REG, &reg);
2324
2325 if (reg & IPW_AUX_HOST_RESET_REG_MASTER_DISABLED)
2326 break;
James Ketrenosee8e3652005-09-14 09:47:29 -05002327 } while (j--);
James Ketrenos2c86c272005-03-23 17:32:29 -06002328
James Ketrenosee8e3652005-09-14 09:47:29 -05002329 match = ipw2100_match_buf(priv, (u8 *) status,
James Ketrenos2c86c272005-03-23 17:32:29 -06002330 sizeof(struct ipw2100_status),
2331 SEARCH_SNAPSHOT);
2332 if (match < SEARCH_SUCCESS)
2333 IPW_DEBUG_INFO("%s: DMA status match in Firmware at "
2334 "offset 0x%06X, length %d:\n",
2335 priv->net_dev->name, match,
2336 sizeof(struct ipw2100_status));
2337 else
2338 IPW_DEBUG_INFO("%s: No DMA status match in "
2339 "Firmware.\n", priv->net_dev->name);
2340
James Ketrenosee8e3652005-09-14 09:47:29 -05002341 printk_buf((u8 *) priv->status_queue.drv,
James Ketrenos2c86c272005-03-23 17:32:29 -06002342 sizeof(struct ipw2100_status) * RX_QUEUE_LENGTH);
2343#endif
2344
2345 priv->fatal_error = IPW2100_ERR_C3_CORRUPTION;
2346 priv->ieee->stats.rx_errors++;
2347 schedule_reset(priv);
2348}
2349
2350static inline void isr_rx(struct ipw2100_priv *priv, int i,
2351 struct ieee80211_rx_stats *stats)
2352{
2353 struct ipw2100_status *status = &priv->status_queue.drv[i];
2354 struct ipw2100_rx_packet *packet = &priv->rx_buffers[i];
2355
2356 IPW_DEBUG_RX("Handler...\n");
2357
2358 if (unlikely(status->frame_size > skb_tailroom(packet->skb))) {
2359 IPW_DEBUG_INFO("%s: frame_size (%u) > skb_tailroom (%u)!"
2360 " Dropping.\n",
2361 priv->net_dev->name,
2362 status->frame_size, skb_tailroom(packet->skb));
2363 priv->ieee->stats.rx_errors++;
2364 return;
2365 }
2366
2367 if (unlikely(!netif_running(priv->net_dev))) {
2368 priv->ieee->stats.rx_errors++;
2369 priv->wstats.discard.misc++;
2370 IPW_DEBUG_DROP("Dropping packet while interface is not up.\n");
2371 return;
2372 }
2373
2374 if (unlikely(priv->ieee->iw_mode == IW_MODE_MONITOR &&
2375 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 }
2380
2381 if (unlikely(priv->ieee->iw_mode != IW_MODE_MONITOR &&
James Ketrenosee8e3652005-09-14 09:47:29 -05002382 !(priv->status & STATUS_ASSOCIATED))) {
James Ketrenos2c86c272005-03-23 17:32:29 -06002383 IPW_DEBUG_DROP("Dropping packet while not associated.\n");
2384 priv->wstats.discard.misc++;
2385 return;
2386 }
2387
James Ketrenos2c86c272005-03-23 17:32:29 -06002388 pci_unmap_single(priv->pci_dev,
2389 packet->dma_addr,
James Ketrenosee8e3652005-09-14 09:47:29 -05002390 sizeof(struct ipw2100_rx), PCI_DMA_FROMDEVICE);
James Ketrenos2c86c272005-03-23 17:32:29 -06002391
2392 skb_put(packet->skb, status->frame_size);
2393
2394#ifdef CONFIG_IPW2100_RX_DEBUG
2395 /* Make a copy of the frame so we can dump it to the logs if
2396 * ieee80211_rx fails */
2397 memcpy(packet_data, packet->skb->data,
Jiri Bencaaa4d302005-06-07 14:58:41 +02002398 min_t(u32, status->frame_size, IPW_RX_NIC_BUFFER_LENGTH));
James Ketrenos2c86c272005-03-23 17:32:29 -06002399#endif
2400
2401 if (!ieee80211_rx(priv->ieee, packet->skb, stats)) {
2402#ifdef CONFIG_IPW2100_RX_DEBUG
2403 IPW_DEBUG_DROP("%s: Non consumed packet:\n",
2404 priv->net_dev->name);
2405 printk_buf(IPW_DL_DROP, packet_data, status->frame_size);
2406#endif
2407 priv->ieee->stats.rx_errors++;
2408
2409 /* ieee80211_rx failed, so it didn't free the SKB */
2410 dev_kfree_skb_any(packet->skb);
2411 packet->skb = NULL;
2412 }
2413
2414 /* We need to allocate a new SKB and attach it to the RDB. */
2415 if (unlikely(ipw2100_alloc_skb(priv, packet))) {
Jiri Benc797b4f72005-08-25 20:03:27 -04002416 printk(KERN_WARNING DRV_NAME ": "
James Ketrenosee8e3652005-09-14 09:47:29 -05002417 "%s: Unable to allocate SKB onto RBD ring - disabling "
2418 "adapter.\n", priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06002419 /* TODO: schedule adapter shutdown */
2420 IPW_DEBUG_INFO("TODO: Shutdown adapter...\n");
2421 }
2422
2423 /* Update the RDB entry */
2424 priv->rx_queue.drv[i].host_addr = packet->dma_addr;
2425}
2426
2427static inline int ipw2100_corruption_check(struct ipw2100_priv *priv, int i)
2428{
2429 struct ipw2100_status *status = &priv->status_queue.drv[i];
2430 struct ipw2100_rx *u = priv->rx_buffers[i].rxp;
2431 u16 frame_type = status->status_fields & STATUS_TYPE_MASK;
2432
2433 switch (frame_type) {
2434 case COMMAND_STATUS_VAL:
2435 return (status->frame_size != sizeof(u->rx_data.command));
2436 case STATUS_CHANGE_VAL:
2437 return (status->frame_size != sizeof(u->rx_data.status));
2438 case HOST_NOTIFICATION_VAL:
2439 return (status->frame_size < sizeof(u->rx_data.notification));
2440 case P80211_DATA_VAL:
2441 case P8023_DATA_VAL:
2442#ifdef CONFIG_IPW2100_MONITOR
2443 return 0;
2444#else
2445 switch (WLAN_FC_GET_TYPE(u->rx_data.header.frame_ctl)) {
2446 case IEEE80211_FTYPE_MGMT:
2447 case IEEE80211_FTYPE_CTL:
2448 return 0;
2449 case IEEE80211_FTYPE_DATA:
2450 return (status->frame_size >
2451 IPW_MAX_802_11_PAYLOAD_LENGTH);
2452 }
2453#endif
2454 }
2455
2456 return 1;
2457}
2458
2459/*
2460 * ipw2100 interrupts are disabled at this point, and the ISR
2461 * is the only code that calls this method. So, we do not need
2462 * to play with any locks.
2463 *
2464 * RX Queue works as follows:
2465 *
2466 * Read index - firmware places packet in entry identified by the
2467 * Read index and advances Read index. In this manner,
2468 * Read index will always point to the next packet to
2469 * be filled--but not yet valid.
2470 *
2471 * Write index - driver fills this entry with an unused RBD entry.
2472 * This entry has not filled by the firmware yet.
2473 *
2474 * In between the W and R indexes are the RBDs that have been received
2475 * but not yet processed.
2476 *
2477 * The process of handling packets will start at WRITE + 1 and advance
2478 * until it reaches the READ index.
2479 *
2480 * The WRITE index is cached in the variable 'priv->rx_queue.next'.
2481 *
2482 */
2483static inline void __ipw2100_rx_process(struct ipw2100_priv *priv)
2484{
2485 struct ipw2100_bd_queue *rxq = &priv->rx_queue;
2486 struct ipw2100_status_queue *sq = &priv->status_queue;
2487 struct ipw2100_rx_packet *packet;
2488 u16 frame_type;
2489 u32 r, w, i, s;
2490 struct ipw2100_rx *u;
2491 struct ieee80211_rx_stats stats = {
2492 .mac_time = jiffies,
2493 };
2494
2495 read_register(priv->net_dev, IPW_MEM_HOST_SHARED_RX_READ_INDEX, &r);
2496 read_register(priv->net_dev, IPW_MEM_HOST_SHARED_RX_WRITE_INDEX, &w);
2497
2498 if (r >= rxq->entries) {
2499 IPW_DEBUG_RX("exit - bad read index\n");
2500 return;
2501 }
2502
2503 i = (rxq->next + 1) % rxq->entries;
2504 s = i;
2505 while (i != r) {
2506 /* IPW_DEBUG_RX("r = %d : w = %d : processing = %d\n",
2507 r, rxq->next, i); */
2508
2509 packet = &priv->rx_buffers[i];
2510
2511 /* Sync the DMA for the STATUS buffer so CPU is sure to get
2512 * the correct values */
James Ketrenosee8e3652005-09-14 09:47:29 -05002513 pci_dma_sync_single_for_cpu(priv->pci_dev,
2514 sq->nic +
2515 sizeof(struct ipw2100_status) * i,
2516 sizeof(struct ipw2100_status),
2517 PCI_DMA_FROMDEVICE);
James Ketrenos2c86c272005-03-23 17:32:29 -06002518
2519 /* Sync the DMA for the RX buffer so CPU is sure to get
2520 * the correct values */
2521 pci_dma_sync_single_for_cpu(priv->pci_dev, packet->dma_addr,
2522 sizeof(struct ipw2100_rx),
2523 PCI_DMA_FROMDEVICE);
2524
2525 if (unlikely(ipw2100_corruption_check(priv, i))) {
2526 ipw2100_corruption_detected(priv, i);
2527 goto increment;
2528 }
2529
2530 u = packet->rxp;
James Ketrenosee8e3652005-09-14 09:47:29 -05002531 frame_type = sq->drv[i].status_fields & STATUS_TYPE_MASK;
James Ketrenos2c86c272005-03-23 17:32:29 -06002532 stats.rssi = sq->drv[i].rssi + IPW2100_RSSI_TO_DBM;
2533 stats.len = sq->drv[i].frame_size;
2534
2535 stats.mask = 0;
2536 if (stats.rssi != 0)
2537 stats.mask |= IEEE80211_STATMASK_RSSI;
2538 stats.freq = IEEE80211_24GHZ_BAND;
2539
James Ketrenosee8e3652005-09-14 09:47:29 -05002540 IPW_DEBUG_RX("%s: '%s' frame type received (%d).\n",
2541 priv->net_dev->name, frame_types[frame_type],
2542 stats.len);
James Ketrenos2c86c272005-03-23 17:32:29 -06002543
2544 switch (frame_type) {
2545 case COMMAND_STATUS_VAL:
2546 /* Reset Rx watchdog */
James Ketrenosee8e3652005-09-14 09:47:29 -05002547 isr_rx_complete_command(priv, &u->rx_data.command);
James Ketrenos2c86c272005-03-23 17:32:29 -06002548 break;
2549
2550 case STATUS_CHANGE_VAL:
2551 isr_status_change(priv, u->rx_data.status);
2552 break;
2553
2554 case P80211_DATA_VAL:
2555 case P8023_DATA_VAL:
2556#ifdef CONFIG_IPW2100_MONITOR
2557 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
2558 isr_rx(priv, i, &stats);
2559 break;
2560 }
2561#endif
2562 if (stats.len < sizeof(u->rx_data.header))
2563 break;
James Ketrenosee8e3652005-09-14 09:47:29 -05002564 switch (WLAN_FC_GET_TYPE(u->rx_data.header.frame_ctl)) {
James Ketrenos2c86c272005-03-23 17:32:29 -06002565 case IEEE80211_FTYPE_MGMT:
2566 ieee80211_rx_mgt(priv->ieee,
James Ketrenosee8e3652005-09-14 09:47:29 -05002567 &u->rx_data.header, &stats);
James Ketrenos2c86c272005-03-23 17:32:29 -06002568 break;
2569
2570 case IEEE80211_FTYPE_CTL:
2571 break;
2572
2573 case IEEE80211_FTYPE_DATA:
2574 isr_rx(priv, i, &stats);
2575 break;
2576
2577 }
2578 break;
2579 }
2580
James Ketrenosee8e3652005-09-14 09:47:29 -05002581 increment:
James Ketrenos2c86c272005-03-23 17:32:29 -06002582 /* clear status field associated with this RBD */
2583 rxq->drv[i].status.info.field = 0;
2584
2585 i = (i + 1) % rxq->entries;
2586 }
2587
2588 if (i != s) {
2589 /* backtrack one entry, wrapping to end if at 0 */
2590 rxq->next = (i ? i : rxq->entries) - 1;
2591
2592 write_register(priv->net_dev,
James Ketrenosee8e3652005-09-14 09:47:29 -05002593 IPW_MEM_HOST_SHARED_RX_WRITE_INDEX, rxq->next);
James Ketrenos2c86c272005-03-23 17:32:29 -06002594 }
2595}
2596
James Ketrenos2c86c272005-03-23 17:32:29 -06002597/*
2598 * __ipw2100_tx_process
2599 *
2600 * This routine will determine whether the next packet on
2601 * the fw_pend_list has been processed by the firmware yet.
2602 *
2603 * If not, then it does nothing and returns.
2604 *
2605 * If so, then it removes the item from the fw_pend_list, frees
2606 * any associated storage, and places the item back on the
2607 * free list of its source (either msg_free_list or tx_free_list)
2608 *
2609 * TX Queue works as follows:
2610 *
2611 * Read index - points to the next TBD that the firmware will
2612 * process. The firmware will read the data, and once
2613 * done processing, it will advance the Read index.
2614 *
2615 * Write index - driver fills this entry with an constructed TBD
2616 * entry. The Write index is not advanced until the
2617 * packet has been configured.
2618 *
2619 * In between the W and R indexes are the TBDs that have NOT been
2620 * processed. Lagging behind the R index are packets that have
2621 * been processed but have not been freed by the driver.
2622 *
2623 * In order to free old storage, an internal index will be maintained
2624 * that points to the next packet to be freed. When all used
2625 * packets have been freed, the oldest index will be the same as the
2626 * firmware's read index.
2627 *
2628 * The OLDEST index is cached in the variable 'priv->tx_queue.oldest'
2629 *
2630 * Because the TBD structure can not contain arbitrary data, the
2631 * driver must keep an internal queue of cached allocations such that
2632 * it can put that data back into the tx_free_list and msg_free_list
2633 * for use by future command and data packets.
2634 *
2635 */
2636static inline int __ipw2100_tx_process(struct ipw2100_priv *priv)
2637{
2638 struct ipw2100_bd_queue *txq = &priv->tx_queue;
James Ketrenosee8e3652005-09-14 09:47:29 -05002639 struct ipw2100_bd *tbd;
James Ketrenos2c86c272005-03-23 17:32:29 -06002640 struct list_head *element;
2641 struct ipw2100_tx_packet *packet;
2642 int descriptors_used;
2643 int e, i;
2644 u32 r, w, frag_num = 0;
2645
2646 if (list_empty(&priv->fw_pend_list))
2647 return 0;
2648
2649 element = priv->fw_pend_list.next;
2650
2651 packet = list_entry(element, struct ipw2100_tx_packet, list);
James Ketrenosee8e3652005-09-14 09:47:29 -05002652 tbd = &txq->drv[packet->index];
James Ketrenos2c86c272005-03-23 17:32:29 -06002653
2654 /* Determine how many TBD entries must be finished... */
2655 switch (packet->type) {
2656 case COMMAND:
2657 /* COMMAND uses only one slot; don't advance */
2658 descriptors_used = 1;
2659 e = txq->oldest;
2660 break;
2661
2662 case DATA:
2663 /* DATA uses two slots; advance and loop position. */
2664 descriptors_used = tbd->num_fragments;
James Ketrenosee8e3652005-09-14 09:47:29 -05002665 frag_num = tbd->num_fragments - 1;
James Ketrenos2c86c272005-03-23 17:32:29 -06002666 e = txq->oldest + frag_num;
2667 e %= txq->entries;
2668 break;
2669
2670 default:
Jiri Benc797b4f72005-08-25 20:03:27 -04002671 printk(KERN_WARNING DRV_NAME ": %s: Bad fw_pend_list entry!\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05002672 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06002673 return 0;
2674 }
2675
2676 /* if the last TBD is not done by NIC yet, then packet is
2677 * not ready to be released.
2678 *
2679 */
2680 read_register(priv->net_dev, IPW_MEM_HOST_SHARED_TX_QUEUE_READ_INDEX,
2681 &r);
2682 read_register(priv->net_dev, IPW_MEM_HOST_SHARED_TX_QUEUE_WRITE_INDEX,
2683 &w);
2684 if (w != txq->next)
Jiri Benc797b4f72005-08-25 20:03:27 -04002685 printk(KERN_WARNING DRV_NAME ": %s: write index mismatch\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06002686 priv->net_dev->name);
2687
James Ketrenosee8e3652005-09-14 09:47:29 -05002688 /*
James Ketrenos2c86c272005-03-23 17:32:29 -06002689 * txq->next is the index of the last packet written txq->oldest is
2690 * the index of the r is the index of the next packet to be read by
2691 * firmware
2692 */
2693
James Ketrenos2c86c272005-03-23 17:32:29 -06002694 /*
2695 * Quick graphic to help you visualize the following
2696 * if / else statement
2697 *
2698 * ===>| s---->|===============
2699 * e>|
2700 * | a | b | c | d | e | f | g | h | i | j | k | l
2701 * r---->|
2702 * w
2703 *
2704 * w - updated by driver
2705 * r - updated by firmware
2706 * s - start of oldest BD entry (txq->oldest)
2707 * e - end of oldest BD entry
2708 *
2709 */
2710 if (!((r <= w && (e < r || e >= w)) || (e < r && e >= w))) {
2711 IPW_DEBUG_TX("exit - no processed packets ready to release.\n");
2712 return 0;
2713 }
2714
2715 list_del(element);
2716 DEC_STAT(&priv->fw_pend_stat);
2717
2718#ifdef CONFIG_IPW_DEBUG
2719 {
2720 int i = txq->oldest;
James Ketrenosee8e3652005-09-14 09:47:29 -05002721 IPW_DEBUG_TX("TX%d V=%p P=%04X T=%04X L=%d\n", i,
2722 &txq->drv[i],
2723 (u32) (txq->nic + i * sizeof(struct ipw2100_bd)),
2724 txq->drv[i].host_addr, txq->drv[i].buf_length);
James Ketrenos2c86c272005-03-23 17:32:29 -06002725
2726 if (packet->type == DATA) {
2727 i = (i + 1) % txq->entries;
2728
James Ketrenosee8e3652005-09-14 09:47:29 -05002729 IPW_DEBUG_TX("TX%d V=%p P=%04X T=%04X L=%d\n", i,
2730 &txq->drv[i],
2731 (u32) (txq->nic + i *
2732 sizeof(struct ipw2100_bd)),
2733 (u32) txq->drv[i].host_addr,
2734 txq->drv[i].buf_length);
James Ketrenos2c86c272005-03-23 17:32:29 -06002735 }
2736 }
2737#endif
2738
2739 switch (packet->type) {
2740 case DATA:
2741 if (txq->drv[txq->oldest].status.info.fields.txType != 0)
Jiri Benc797b4f72005-08-25 20:03:27 -04002742 printk(KERN_WARNING DRV_NAME ": %s: Queue mismatch. "
James Ketrenos2c86c272005-03-23 17:32:29 -06002743 "Expecting DATA TBD but pulled "
2744 "something else: ids %d=%d.\n",
2745 priv->net_dev->name, txq->oldest, packet->index);
2746
2747 /* DATA packet; we have to unmap and free the SKB */
2748 priv->ieee->stats.tx_packets++;
2749 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 Ketrenosee8e3652005-09-14 09:47:29 -05002761 priv->ieee->stats.tx_bytes +=
2762 packet->info.d_struct.txb->payload_size;
James Ketrenos2c86c272005-03-23 17:32:29 -06002763 ieee80211_txb_free(packet->info.d_struct.txb);
2764 packet->info.d_struct.txb = NULL;
2765
2766 list_add_tail(element, &priv->tx_free_list);
2767 INC_STAT(&priv->tx_free_stat);
2768
2769 /* We have a free slot in the Tx queue, so wake up the
2770 * transmit layer if it is stopped. */
2771 if (priv->status & STATUS_ASSOCIATED &&
2772 netif_queue_stopped(priv->net_dev)) {
2773 IPW_DEBUG_INFO(KERN_INFO
James Ketrenosee8e3652005-09-14 09:47:29 -05002774 "%s: Waking net queue.\n",
2775 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06002776 netif_wake_queue(priv->net_dev);
2777 }
2778
2779 /* A packet was processed by the hardware, so update the
2780 * watchdog */
2781 priv->net_dev->trans_start = jiffies;
2782
2783 break;
2784
2785 case COMMAND:
2786 if (txq->drv[txq->oldest].status.info.fields.txType != 1)
Jiri Benc797b4f72005-08-25 20:03:27 -04002787 printk(KERN_WARNING DRV_NAME ": %s: Queue mismatch. "
James Ketrenos2c86c272005-03-23 17:32:29 -06002788 "Expecting COMMAND TBD but pulled "
2789 "something else: ids %d=%d.\n",
2790 priv->net_dev->name, txq->oldest, packet->index);
2791
2792#ifdef CONFIG_IPW_DEBUG
2793 if (packet->info.c_struct.cmd->host_command_reg <
2794 sizeof(command_types) / sizeof(*command_types))
James Ketrenosee8e3652005-09-14 09:47:29 -05002795 IPW_DEBUG_TX("Command '%s (%d)' processed: %d.\n",
2796 command_types[packet->info.c_struct.cmd->
2797 host_command_reg],
2798 packet->info.c_struct.cmd->
2799 host_command_reg,
2800 packet->info.c_struct.cmd->cmd_status_reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06002801#endif
2802
2803 list_add_tail(element, &priv->msg_free_list);
2804 INC_STAT(&priv->msg_free_stat);
2805 break;
2806 }
2807
2808 /* advance oldest used TBD pointer to start of next entry */
2809 txq->oldest = (e + 1) % txq->entries;
2810 /* increase available TBDs number */
2811 txq->available += descriptors_used;
2812 SET_STAT(&priv->txq_stat, txq->available);
2813
2814 IPW_DEBUG_TX("packet latency (send to process) %ld jiffies\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05002815 jiffies - packet->jiffy_start);
James Ketrenos2c86c272005-03-23 17:32:29 -06002816
2817 return (!list_empty(&priv->fw_pend_list));
2818}
2819
James Ketrenos2c86c272005-03-23 17:32:29 -06002820static inline void __ipw2100_tx_complete(struct ipw2100_priv *priv)
2821{
2822 int i = 0;
2823
James Ketrenosee8e3652005-09-14 09:47:29 -05002824 while (__ipw2100_tx_process(priv) && i < 200)
2825 i++;
James Ketrenos2c86c272005-03-23 17:32:29 -06002826
2827 if (i == 200) {
Jiri Benc19f7f742005-08-25 20:02:10 -04002828 printk(KERN_WARNING DRV_NAME ": "
James Ketrenos2c86c272005-03-23 17:32:29 -06002829 "%s: Driver is running slow (%d iters).\n",
2830 priv->net_dev->name, i);
2831 }
2832}
2833
Jiri Benc19f7f742005-08-25 20:02:10 -04002834static void ipw2100_tx_send_commands(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06002835{
2836 struct list_head *element;
2837 struct ipw2100_tx_packet *packet;
2838 struct ipw2100_bd_queue *txq = &priv->tx_queue;
2839 struct ipw2100_bd *tbd;
2840 int next = txq->next;
2841
2842 while (!list_empty(&priv->msg_pend_list)) {
2843 /* if there isn't enough space in TBD queue, then
2844 * don't stuff a new one in.
2845 * NOTE: 3 are needed as a command will take one,
2846 * and there is a minimum of 2 that must be
2847 * maintained between the r and w indexes
2848 */
2849 if (txq->available <= 3) {
2850 IPW_DEBUG_TX("no room in tx_queue\n");
2851 break;
2852 }
2853
2854 element = priv->msg_pend_list.next;
2855 list_del(element);
2856 DEC_STAT(&priv->msg_pend_stat);
2857
James Ketrenosee8e3652005-09-14 09:47:29 -05002858 packet = list_entry(element, struct ipw2100_tx_packet, list);
James Ketrenos2c86c272005-03-23 17:32:29 -06002859
2860 IPW_DEBUG_TX("using TBD at virt=%p, phys=%p\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05002861 &txq->drv[txq->next],
2862 (void *)(txq->nic + txq->next *
2863 sizeof(struct ipw2100_bd)));
James Ketrenos2c86c272005-03-23 17:32:29 -06002864
2865 packet->index = txq->next;
2866
2867 tbd = &txq->drv[txq->next];
2868
2869 /* initialize TBD */
2870 tbd->host_addr = packet->info.c_struct.cmd_phys;
2871 tbd->buf_length = sizeof(struct ipw2100_cmd_header);
2872 /* not marking number of fragments causes problems
2873 * with f/w debug version */
2874 tbd->num_fragments = 1;
2875 tbd->status.info.field =
James Ketrenosee8e3652005-09-14 09:47:29 -05002876 IPW_BD_STATUS_TX_FRAME_COMMAND |
2877 IPW_BD_STATUS_TX_INTERRUPT_ENABLE;
James Ketrenos2c86c272005-03-23 17:32:29 -06002878
2879 /* update TBD queue counters */
2880 txq->next++;
2881 txq->next %= txq->entries;
2882 txq->available--;
2883 DEC_STAT(&priv->txq_stat);
2884
2885 list_add_tail(element, &priv->fw_pend_list);
2886 INC_STAT(&priv->fw_pend_stat);
2887 }
2888
2889 if (txq->next != next) {
2890 /* kick off the DMA by notifying firmware the
2891 * write index has moved; make sure TBD stores are sync'd */
2892 wmb();
2893 write_register(priv->net_dev,
2894 IPW_MEM_HOST_SHARED_TX_QUEUE_WRITE_INDEX,
2895 txq->next);
2896 }
2897}
2898
James Ketrenos2c86c272005-03-23 17:32:29 -06002899/*
Jiri Benc19f7f742005-08-25 20:02:10 -04002900 * ipw2100_tx_send_data
James Ketrenos2c86c272005-03-23 17:32:29 -06002901 *
2902 */
Jiri Benc19f7f742005-08-25 20:02:10 -04002903static void ipw2100_tx_send_data(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06002904{
2905 struct list_head *element;
2906 struct ipw2100_tx_packet *packet;
2907 struct ipw2100_bd_queue *txq = &priv->tx_queue;
2908 struct ipw2100_bd *tbd;
2909 int next = txq->next;
James Ketrenosee8e3652005-09-14 09:47:29 -05002910 int i = 0;
James Ketrenos2c86c272005-03-23 17:32:29 -06002911 struct ipw2100_data_header *ipw_hdr;
James Ketrenos99a4b232005-09-21 12:23:25 -05002912 struct ieee80211_hdr_3addr *hdr;
James Ketrenos2c86c272005-03-23 17:32:29 -06002913
2914 while (!list_empty(&priv->tx_pend_list)) {
2915 /* if there isn't enough space in TBD queue, then
2916 * don't stuff a new one in.
2917 * NOTE: 4 are needed as a data will take two,
2918 * and there is a minimum of 2 that must be
2919 * maintained between the r and w indexes
2920 */
2921 element = priv->tx_pend_list.next;
James Ketrenosee8e3652005-09-14 09:47:29 -05002922 packet = list_entry(element, struct ipw2100_tx_packet, list);
James Ketrenos2c86c272005-03-23 17:32:29 -06002923
2924 if (unlikely(1 + packet->info.d_struct.txb->nr_frags >
2925 IPW_MAX_BDS)) {
2926 /* TODO: Support merging buffers if more than
2927 * IPW_MAX_BDS are used */
James Ketrenosee8e3652005-09-14 09:47:29 -05002928 IPW_DEBUG_INFO("%s: Maximum BD theshold exceeded. "
2929 "Increase fragmentation level.\n",
2930 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06002931 }
2932
James Ketrenosee8e3652005-09-14 09:47:29 -05002933 if (txq->available <= 3 + packet->info.d_struct.txb->nr_frags) {
James Ketrenos2c86c272005-03-23 17:32:29 -06002934 IPW_DEBUG_TX("no room in tx_queue\n");
2935 break;
2936 }
2937
2938 list_del(element);
2939 DEC_STAT(&priv->tx_pend_stat);
2940
2941 tbd = &txq->drv[txq->next];
2942
2943 packet->index = txq->next;
2944
2945 ipw_hdr = packet->info.d_struct.data;
James Ketrenos99a4b232005-09-21 12:23:25 -05002946 hdr = (struct ieee80211_hdr_3addr *)packet->info.d_struct.txb->
James Ketrenosee8e3652005-09-14 09:47:29 -05002947 fragments[0]->data;
James Ketrenos2c86c272005-03-23 17:32:29 -06002948
2949 if (priv->ieee->iw_mode == IW_MODE_INFRA) {
2950 /* To DS: Addr1 = BSSID, Addr2 = SA,
2951 Addr3 = DA */
2952 memcpy(ipw_hdr->src_addr, hdr->addr2, ETH_ALEN);
2953 memcpy(ipw_hdr->dst_addr, hdr->addr3, ETH_ALEN);
2954 } else if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
2955 /* not From/To DS: Addr1 = DA, Addr2 = SA,
2956 Addr3 = BSSID */
2957 memcpy(ipw_hdr->src_addr, hdr->addr2, ETH_ALEN);
2958 memcpy(ipw_hdr->dst_addr, hdr->addr1, ETH_ALEN);
2959 }
2960
2961 ipw_hdr->host_command_reg = SEND;
2962 ipw_hdr->host_command_reg1 = 0;
2963
2964 /* For now we only support host based encryption */
2965 ipw_hdr->needs_encryption = 0;
2966 ipw_hdr->encrypted = packet->info.d_struct.txb->encrypted;
2967 if (packet->info.d_struct.txb->nr_frags > 1)
2968 ipw_hdr->fragment_size =
James Ketrenosee8e3652005-09-14 09:47:29 -05002969 packet->info.d_struct.txb->frag_size -
2970 IEEE80211_3ADDR_LEN;
James Ketrenos2c86c272005-03-23 17:32:29 -06002971 else
2972 ipw_hdr->fragment_size = 0;
2973
2974 tbd->host_addr = packet->info.d_struct.data_phys;
2975 tbd->buf_length = sizeof(struct ipw2100_data_header);
2976 tbd->num_fragments = 1 + packet->info.d_struct.txb->nr_frags;
2977 tbd->status.info.field =
James Ketrenosee8e3652005-09-14 09:47:29 -05002978 IPW_BD_STATUS_TX_FRAME_802_3 |
2979 IPW_BD_STATUS_TX_FRAME_NOT_LAST_FRAGMENT;
James Ketrenos2c86c272005-03-23 17:32:29 -06002980 txq->next++;
2981 txq->next %= txq->entries;
2982
James Ketrenosee8e3652005-09-14 09:47:29 -05002983 IPW_DEBUG_TX("data header tbd TX%d P=%08x L=%d\n",
2984 packet->index, tbd->host_addr, tbd->buf_length);
James Ketrenos2c86c272005-03-23 17:32:29 -06002985#ifdef CONFIG_IPW_DEBUG
2986 if (packet->info.d_struct.txb->nr_frags > 1)
2987 IPW_DEBUG_FRAG("fragment Tx: %d frames\n",
2988 packet->info.d_struct.txb->nr_frags);
2989#endif
2990
James Ketrenosee8e3652005-09-14 09:47:29 -05002991 for (i = 0; i < packet->info.d_struct.txb->nr_frags; i++) {
2992 tbd = &txq->drv[txq->next];
James Ketrenos2c86c272005-03-23 17:32:29 -06002993 if (i == packet->info.d_struct.txb->nr_frags - 1)
2994 tbd->status.info.field =
James Ketrenosee8e3652005-09-14 09:47:29 -05002995 IPW_BD_STATUS_TX_FRAME_802_3 |
2996 IPW_BD_STATUS_TX_INTERRUPT_ENABLE;
James Ketrenos2c86c272005-03-23 17:32:29 -06002997 else
2998 tbd->status.info.field =
James Ketrenosee8e3652005-09-14 09:47:29 -05002999 IPW_BD_STATUS_TX_FRAME_802_3 |
3000 IPW_BD_STATUS_TX_FRAME_NOT_LAST_FRAGMENT;
James Ketrenos2c86c272005-03-23 17:32:29 -06003001
3002 tbd->buf_length = packet->info.d_struct.txb->
James Ketrenosee8e3652005-09-14 09:47:29 -05003003 fragments[i]->len - IEEE80211_3ADDR_LEN;
James Ketrenos2c86c272005-03-23 17:32:29 -06003004
James Ketrenosee8e3652005-09-14 09:47:29 -05003005 tbd->host_addr = pci_map_single(priv->pci_dev,
3006 packet->info.d_struct.
3007 txb->fragments[i]->
3008 data +
3009 IEEE80211_3ADDR_LEN,
3010 tbd->buf_length,
3011 PCI_DMA_TODEVICE);
James Ketrenos2c86c272005-03-23 17:32:29 -06003012
James Ketrenosee8e3652005-09-14 09:47:29 -05003013 IPW_DEBUG_TX("data frag tbd TX%d P=%08x L=%d\n",
3014 txq->next, tbd->host_addr,
3015 tbd->buf_length);
James Ketrenos2c86c272005-03-23 17:32:29 -06003016
James Ketrenosee8e3652005-09-14 09:47:29 -05003017 pci_dma_sync_single_for_device(priv->pci_dev,
3018 tbd->host_addr,
3019 tbd->buf_length,
3020 PCI_DMA_TODEVICE);
James Ketrenos2c86c272005-03-23 17:32:29 -06003021
3022 txq->next++;
3023 txq->next %= txq->entries;
James Ketrenosee8e3652005-09-14 09:47:29 -05003024 }
James Ketrenos2c86c272005-03-23 17:32:29 -06003025
3026 txq->available -= 1 + packet->info.d_struct.txb->nr_frags;
3027 SET_STAT(&priv->txq_stat, txq->available);
3028
3029 list_add_tail(element, &priv->fw_pend_list);
3030 INC_STAT(&priv->fw_pend_stat);
3031 }
3032
3033 if (txq->next != next) {
3034 /* kick off the DMA by notifying firmware the
3035 * write index has moved; make sure TBD stores are sync'd */
3036 write_register(priv->net_dev,
3037 IPW_MEM_HOST_SHARED_TX_QUEUE_WRITE_INDEX,
3038 txq->next);
3039 }
James Ketrenosee8e3652005-09-14 09:47:29 -05003040 return;
James Ketrenos2c86c272005-03-23 17:32:29 -06003041}
3042
3043static void ipw2100_irq_tasklet(struct ipw2100_priv *priv)
3044{
3045 struct net_device *dev = priv->net_dev;
3046 unsigned long flags;
3047 u32 inta, tmp;
3048
3049 spin_lock_irqsave(&priv->low_lock, flags);
3050 ipw2100_disable_interrupts(priv);
3051
3052 read_register(dev, IPW_REG_INTA, &inta);
3053
3054 IPW_DEBUG_ISR("enter - INTA: 0x%08lX\n",
3055 (unsigned long)inta & IPW_INTERRUPT_MASK);
3056
3057 priv->in_isr++;
3058 priv->interrupts++;
3059
3060 /* We do not loop and keep polling for more interrupts as this
3061 * is frowned upon and doesn't play nicely with other potentially
3062 * chained IRQs */
3063 IPW_DEBUG_ISR("INTA: 0x%08lX\n",
3064 (unsigned long)inta & IPW_INTERRUPT_MASK);
3065
3066 if (inta & IPW2100_INTA_FATAL_ERROR) {
Jiri Benc797b4f72005-08-25 20:03:27 -04003067 printk(KERN_WARNING DRV_NAME
James Ketrenosee8e3652005-09-14 09:47:29 -05003068 ": Fatal interrupt. Scheduling firmware restart.\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06003069 priv->inta_other++;
James Ketrenosee8e3652005-09-14 09:47:29 -05003070 write_register(dev, IPW_REG_INTA, IPW2100_INTA_FATAL_ERROR);
James Ketrenos2c86c272005-03-23 17:32:29 -06003071
3072 read_nic_dword(dev, IPW_NIC_FATAL_ERROR, &priv->fatal_error);
3073 IPW_DEBUG_INFO("%s: Fatal error value: 0x%08X\n",
3074 priv->net_dev->name, priv->fatal_error);
3075
3076 read_nic_dword(dev, IPW_ERROR_ADDR(priv->fatal_error), &tmp);
3077 IPW_DEBUG_INFO("%s: Fatal error address value: 0x%08X\n",
3078 priv->net_dev->name, tmp);
3079
3080 /* Wake up any sleeping jobs */
3081 schedule_reset(priv);
3082 }
3083
3084 if (inta & IPW2100_INTA_PARITY_ERROR) {
James Ketrenosee8e3652005-09-14 09:47:29 -05003085 printk(KERN_ERR DRV_NAME
3086 ": ***** PARITY ERROR INTERRUPT !!!! \n");
James Ketrenos2c86c272005-03-23 17:32:29 -06003087 priv->inta_other++;
James Ketrenosee8e3652005-09-14 09:47:29 -05003088 write_register(dev, IPW_REG_INTA, IPW2100_INTA_PARITY_ERROR);
James Ketrenos2c86c272005-03-23 17:32:29 -06003089 }
3090
3091 if (inta & IPW2100_INTA_RX_TRANSFER) {
3092 IPW_DEBUG_ISR("RX interrupt\n");
3093
3094 priv->rx_interrupts++;
3095
James Ketrenosee8e3652005-09-14 09:47:29 -05003096 write_register(dev, IPW_REG_INTA, IPW2100_INTA_RX_TRANSFER);
James Ketrenos2c86c272005-03-23 17:32:29 -06003097
3098 __ipw2100_rx_process(priv);
3099 __ipw2100_tx_complete(priv);
3100 }
3101
3102 if (inta & IPW2100_INTA_TX_TRANSFER) {
3103 IPW_DEBUG_ISR("TX interrupt\n");
3104
3105 priv->tx_interrupts++;
3106
James Ketrenosee8e3652005-09-14 09:47:29 -05003107 write_register(dev, IPW_REG_INTA, IPW2100_INTA_TX_TRANSFER);
James Ketrenos2c86c272005-03-23 17:32:29 -06003108
3109 __ipw2100_tx_complete(priv);
Jiri Benc19f7f742005-08-25 20:02:10 -04003110 ipw2100_tx_send_commands(priv);
3111 ipw2100_tx_send_data(priv);
James Ketrenos2c86c272005-03-23 17:32:29 -06003112 }
3113
3114 if (inta & IPW2100_INTA_TX_COMPLETE) {
3115 IPW_DEBUG_ISR("TX complete\n");
3116 priv->inta_other++;
James Ketrenosee8e3652005-09-14 09:47:29 -05003117 write_register(dev, IPW_REG_INTA, IPW2100_INTA_TX_COMPLETE);
James Ketrenos2c86c272005-03-23 17:32:29 -06003118
3119 __ipw2100_tx_complete(priv);
3120 }
3121
3122 if (inta & IPW2100_INTA_EVENT_INTERRUPT) {
3123 /* ipw2100_handle_event(dev); */
3124 priv->inta_other++;
James Ketrenosee8e3652005-09-14 09:47:29 -05003125 write_register(dev, IPW_REG_INTA, IPW2100_INTA_EVENT_INTERRUPT);
James Ketrenos2c86c272005-03-23 17:32:29 -06003126 }
3127
3128 if (inta & IPW2100_INTA_FW_INIT_DONE) {
3129 IPW_DEBUG_ISR("FW init done interrupt\n");
3130 priv->inta_other++;
3131
3132 read_register(dev, IPW_REG_INTA, &tmp);
3133 if (tmp & (IPW2100_INTA_FATAL_ERROR |
3134 IPW2100_INTA_PARITY_ERROR)) {
James Ketrenosee8e3652005-09-14 09:47:29 -05003135 write_register(dev, IPW_REG_INTA,
3136 IPW2100_INTA_FATAL_ERROR |
3137 IPW2100_INTA_PARITY_ERROR);
James Ketrenos2c86c272005-03-23 17:32:29 -06003138 }
3139
James Ketrenosee8e3652005-09-14 09:47:29 -05003140 write_register(dev, IPW_REG_INTA, IPW2100_INTA_FW_INIT_DONE);
James Ketrenos2c86c272005-03-23 17:32:29 -06003141 }
3142
3143 if (inta & IPW2100_INTA_STATUS_CHANGE) {
3144 IPW_DEBUG_ISR("Status change interrupt\n");
3145 priv->inta_other++;
James Ketrenosee8e3652005-09-14 09:47:29 -05003146 write_register(dev, IPW_REG_INTA, IPW2100_INTA_STATUS_CHANGE);
James Ketrenos2c86c272005-03-23 17:32:29 -06003147 }
3148
3149 if (inta & IPW2100_INTA_SLAVE_MODE_HOST_COMMAND_DONE) {
3150 IPW_DEBUG_ISR("slave host mode interrupt\n");
3151 priv->inta_other++;
James Ketrenosee8e3652005-09-14 09:47:29 -05003152 write_register(dev, IPW_REG_INTA,
3153 IPW2100_INTA_SLAVE_MODE_HOST_COMMAND_DONE);
James Ketrenos2c86c272005-03-23 17:32:29 -06003154 }
3155
3156 priv->in_isr--;
3157 ipw2100_enable_interrupts(priv);
3158
3159 spin_unlock_irqrestore(&priv->low_lock, flags);
3160
3161 IPW_DEBUG_ISR("exit\n");
3162}
3163
James Ketrenosee8e3652005-09-14 09:47:29 -05003164static irqreturn_t ipw2100_interrupt(int irq, void *data, struct pt_regs *regs)
James Ketrenos2c86c272005-03-23 17:32:29 -06003165{
3166 struct ipw2100_priv *priv = data;
3167 u32 inta, inta_mask;
3168
3169 if (!data)
3170 return IRQ_NONE;
3171
James Ketrenosee8e3652005-09-14 09:47:29 -05003172 spin_lock(&priv->low_lock);
James Ketrenos2c86c272005-03-23 17:32:29 -06003173
3174 /* We check to see if we should be ignoring interrupts before
3175 * we touch the hardware. During ucode load if we try and handle
3176 * an interrupt we can cause keyboard problems as well as cause
3177 * the ucode to fail to initialize */
3178 if (!(priv->status & STATUS_INT_ENABLED)) {
3179 /* Shared IRQ */
3180 goto none;
3181 }
3182
3183 read_register(priv->net_dev, IPW_REG_INTA_MASK, &inta_mask);
3184 read_register(priv->net_dev, IPW_REG_INTA, &inta);
3185
3186 if (inta == 0xFFFFFFFF) {
3187 /* Hardware disappeared */
Jiri Benc797b4f72005-08-25 20:03:27 -04003188 printk(KERN_WARNING DRV_NAME ": IRQ INTA == 0xFFFFFFFF\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06003189 goto none;
3190 }
3191
3192 inta &= IPW_INTERRUPT_MASK;
3193
3194 if (!(inta & inta_mask)) {
3195 /* Shared interrupt */
3196 goto none;
3197 }
3198
3199 /* We disable the hardware interrupt here just to prevent unneeded
3200 * calls to be made. We disable this again within the actual
3201 * work tasklet, so if another part of the code re-enables the
3202 * interrupt, that is fine */
3203 ipw2100_disable_interrupts(priv);
3204
3205 tasklet_schedule(&priv->irq_tasklet);
James Ketrenosee8e3652005-09-14 09:47:29 -05003206 spin_unlock(&priv->low_lock);
James Ketrenos2c86c272005-03-23 17:32:29 -06003207
3208 return IRQ_HANDLED;
James Ketrenosee8e3652005-09-14 09:47:29 -05003209 none:
James Ketrenos2c86c272005-03-23 17:32:29 -06003210 spin_unlock(&priv->low_lock);
3211 return IRQ_NONE;
3212}
3213
James Ketrenos3a5becf2005-09-21 12:23:37 -05003214static int ipw2100_tx(struct ieee80211_txb *txb, struct net_device *dev,
3215 int pri)
James Ketrenos2c86c272005-03-23 17:32:29 -06003216{
3217 struct ipw2100_priv *priv = ieee80211_priv(dev);
3218 struct list_head *element;
3219 struct ipw2100_tx_packet *packet;
3220 unsigned long flags;
3221
3222 spin_lock_irqsave(&priv->low_lock, flags);
3223
3224 if (!(priv->status & STATUS_ASSOCIATED)) {
3225 IPW_DEBUG_INFO("Can not transmit when not connected.\n");
3226 priv->ieee->stats.tx_carrier_errors++;
3227 netif_stop_queue(dev);
3228 goto fail_unlock;
3229 }
3230
3231 if (list_empty(&priv->tx_free_list))
3232 goto fail_unlock;
3233
3234 element = priv->tx_free_list.next;
3235 packet = list_entry(element, struct ipw2100_tx_packet, list);
3236
3237 packet->info.d_struct.txb = txb;
3238
James Ketrenosee8e3652005-09-14 09:47:29 -05003239 IPW_DEBUG_TX("Sending fragment (%d bytes):\n", txb->fragments[0]->len);
3240 printk_buf(IPW_DL_TX, txb->fragments[0]->data, txb->fragments[0]->len);
James Ketrenos2c86c272005-03-23 17:32:29 -06003241
3242 packet->jiffy_start = jiffies;
3243
3244 list_del(element);
3245 DEC_STAT(&priv->tx_free_stat);
3246
3247 list_add_tail(element, &priv->tx_pend_list);
3248 INC_STAT(&priv->tx_pend_stat);
3249
Jiri Benc19f7f742005-08-25 20:02:10 -04003250 ipw2100_tx_send_data(priv);
James Ketrenos2c86c272005-03-23 17:32:29 -06003251
3252 spin_unlock_irqrestore(&priv->low_lock, flags);
3253 return 0;
3254
James Ketrenosee8e3652005-09-14 09:47:29 -05003255 fail_unlock:
James Ketrenos2c86c272005-03-23 17:32:29 -06003256 netif_stop_queue(dev);
3257 spin_unlock_irqrestore(&priv->low_lock, flags);
3258 return 1;
3259}
3260
James Ketrenos2c86c272005-03-23 17:32:29 -06003261static int ipw2100_msg_allocate(struct ipw2100_priv *priv)
3262{
3263 int i, j, err = -EINVAL;
3264 void *v;
3265 dma_addr_t p;
3266
James Ketrenosee8e3652005-09-14 09:47:29 -05003267 priv->msg_buffers =
3268 (struct ipw2100_tx_packet *)kmalloc(IPW_COMMAND_POOL_SIZE *
3269 sizeof(struct
3270 ipw2100_tx_packet),
3271 GFP_KERNEL);
James Ketrenos2c86c272005-03-23 17:32:29 -06003272 if (!priv->msg_buffers) {
Jiri Benc797b4f72005-08-25 20:03:27 -04003273 printk(KERN_ERR DRV_NAME ": %s: PCI alloc failed for msg "
James Ketrenos2c86c272005-03-23 17:32:29 -06003274 "buffers.\n", priv->net_dev->name);
3275 return -ENOMEM;
3276 }
3277
3278 for (i = 0; i < IPW_COMMAND_POOL_SIZE; i++) {
James Ketrenosee8e3652005-09-14 09:47:29 -05003279 v = pci_alloc_consistent(priv->pci_dev,
3280 sizeof(struct ipw2100_cmd_header), &p);
James Ketrenos2c86c272005-03-23 17:32:29 -06003281 if (!v) {
Jiri Benc797b4f72005-08-25 20:03:27 -04003282 printk(KERN_ERR DRV_NAME ": "
James Ketrenos2c86c272005-03-23 17:32:29 -06003283 "%s: PCI alloc failed for msg "
James Ketrenosee8e3652005-09-14 09:47:29 -05003284 "buffers.\n", priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06003285 err = -ENOMEM;
3286 break;
3287 }
3288
3289 memset(v, 0, sizeof(struct ipw2100_cmd_header));
3290
3291 priv->msg_buffers[i].type = COMMAND;
3292 priv->msg_buffers[i].info.c_struct.cmd =
James Ketrenosee8e3652005-09-14 09:47:29 -05003293 (struct ipw2100_cmd_header *)v;
James Ketrenos2c86c272005-03-23 17:32:29 -06003294 priv->msg_buffers[i].info.c_struct.cmd_phys = p;
3295 }
3296
3297 if (i == IPW_COMMAND_POOL_SIZE)
3298 return 0;
3299
3300 for (j = 0; j < i; j++) {
James Ketrenosee8e3652005-09-14 09:47:29 -05003301 pci_free_consistent(priv->pci_dev,
3302 sizeof(struct ipw2100_cmd_header),
3303 priv->msg_buffers[j].info.c_struct.cmd,
3304 priv->msg_buffers[j].info.c_struct.
3305 cmd_phys);
James Ketrenos2c86c272005-03-23 17:32:29 -06003306 }
3307
3308 kfree(priv->msg_buffers);
3309 priv->msg_buffers = NULL;
3310
3311 return err;
3312}
3313
3314static int ipw2100_msg_initialize(struct ipw2100_priv *priv)
3315{
3316 int i;
3317
3318 INIT_LIST_HEAD(&priv->msg_free_list);
3319 INIT_LIST_HEAD(&priv->msg_pend_list);
3320
3321 for (i = 0; i < IPW_COMMAND_POOL_SIZE; i++)
3322 list_add_tail(&priv->msg_buffers[i].list, &priv->msg_free_list);
3323 SET_STAT(&priv->msg_free_stat, i);
3324
3325 return 0;
3326}
3327
3328static void ipw2100_msg_free(struct ipw2100_priv *priv)
3329{
3330 int i;
3331
3332 if (!priv->msg_buffers)
3333 return;
3334
3335 for (i = 0; i < IPW_COMMAND_POOL_SIZE; i++) {
3336 pci_free_consistent(priv->pci_dev,
3337 sizeof(struct ipw2100_cmd_header),
3338 priv->msg_buffers[i].info.c_struct.cmd,
James Ketrenosee8e3652005-09-14 09:47:29 -05003339 priv->msg_buffers[i].info.c_struct.
3340 cmd_phys);
James Ketrenos2c86c272005-03-23 17:32:29 -06003341 }
3342
3343 kfree(priv->msg_buffers);
3344 priv->msg_buffers = NULL;
3345}
3346
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003347static ssize_t show_pci(struct device *d, struct device_attribute *attr,
3348 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003349{
3350 struct pci_dev *pci_dev = container_of(d, struct pci_dev, dev);
3351 char *out = buf;
3352 int i, j;
3353 u32 val;
3354
3355 for (i = 0; i < 16; i++) {
3356 out += sprintf(out, "[%08X] ", i * 16);
3357 for (j = 0; j < 16; j += 4) {
3358 pci_read_config_dword(pci_dev, i * 16 + j, &val);
3359 out += sprintf(out, "%08X ", val);
3360 }
3361 out += sprintf(out, "\n");
3362 }
3363
3364 return out - buf;
3365}
James Ketrenosee8e3652005-09-14 09:47:29 -05003366
James Ketrenos2c86c272005-03-23 17:32:29 -06003367static DEVICE_ATTR(pci, S_IRUGO, show_pci, NULL);
3368
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003369static ssize_t show_cfg(struct device *d, struct device_attribute *attr,
3370 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003371{
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003372 struct ipw2100_priv *p = d->driver_data;
James Ketrenos2c86c272005-03-23 17:32:29 -06003373 return sprintf(buf, "0x%08x\n", (int)p->config);
3374}
James Ketrenosee8e3652005-09-14 09:47:29 -05003375
James Ketrenos2c86c272005-03-23 17:32:29 -06003376static DEVICE_ATTR(cfg, S_IRUGO, show_cfg, NULL);
3377
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003378static ssize_t show_status(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003379 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003380{
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003381 struct ipw2100_priv *p = d->driver_data;
James Ketrenos2c86c272005-03-23 17:32:29 -06003382 return sprintf(buf, "0x%08x\n", (int)p->status);
3383}
James Ketrenosee8e3652005-09-14 09:47:29 -05003384
James Ketrenos2c86c272005-03-23 17:32:29 -06003385static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
3386
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003387static ssize_t show_capability(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003388 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003389{
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003390 struct ipw2100_priv *p = d->driver_data;
James Ketrenos2c86c272005-03-23 17:32:29 -06003391 return sprintf(buf, "0x%08x\n", (int)p->capability);
3392}
James Ketrenos2c86c272005-03-23 17:32:29 -06003393
James Ketrenosee8e3652005-09-14 09:47:29 -05003394static DEVICE_ATTR(capability, S_IRUGO, show_capability, NULL);
James Ketrenos2c86c272005-03-23 17:32:29 -06003395
3396#define IPW2100_REG(x) { IPW_ ##x, #x }
Jiri Bencc4aee8c2005-08-25 20:04:43 -04003397static const struct {
James Ketrenos2c86c272005-03-23 17:32:29 -06003398 u32 addr;
3399 const char *name;
3400} hw_data[] = {
James Ketrenosee8e3652005-09-14 09:47:29 -05003401IPW2100_REG(REG_GP_CNTRL),
3402 IPW2100_REG(REG_GPIO),
3403 IPW2100_REG(REG_INTA),
3404 IPW2100_REG(REG_INTA_MASK), IPW2100_REG(REG_RESET_REG),};
James Ketrenos2c86c272005-03-23 17:32:29 -06003405#define IPW2100_NIC(x, s) { x, #x, s }
Jiri Bencc4aee8c2005-08-25 20:04:43 -04003406static const struct {
James Ketrenos2c86c272005-03-23 17:32:29 -06003407 u32 addr;
3408 const char *name;
3409 size_t size;
3410} nic_data[] = {
James Ketrenosee8e3652005-09-14 09:47:29 -05003411IPW2100_NIC(IPW2100_CONTROL_REG, 2),
3412 IPW2100_NIC(0x210014, 1), IPW2100_NIC(0x210000, 1),};
James Ketrenos2c86c272005-03-23 17:32:29 -06003413#define IPW2100_ORD(x, d) { IPW_ORD_ ##x, #x, d }
Jiri Bencc4aee8c2005-08-25 20:04:43 -04003414static const struct {
James Ketrenos2c86c272005-03-23 17:32:29 -06003415 u8 index;
3416 const char *name;
3417 const char *desc;
3418} ord_data[] = {
James Ketrenosee8e3652005-09-14 09:47:29 -05003419IPW2100_ORD(STAT_TX_HOST_REQUESTS, "requested Host Tx's (MSDU)"),
3420 IPW2100_ORD(STAT_TX_HOST_COMPLETE,
3421 "successful Host Tx's (MSDU)"),
3422 IPW2100_ORD(STAT_TX_DIR_DATA,
3423 "successful Directed Tx's (MSDU)"),
3424 IPW2100_ORD(STAT_TX_DIR_DATA1,
3425 "successful Directed Tx's (MSDU) @ 1MB"),
3426 IPW2100_ORD(STAT_TX_DIR_DATA2,
3427 "successful Directed Tx's (MSDU) @ 2MB"),
3428 IPW2100_ORD(STAT_TX_DIR_DATA5_5,
3429 "successful Directed Tx's (MSDU) @ 5_5MB"),
3430 IPW2100_ORD(STAT_TX_DIR_DATA11,
3431 "successful Directed Tx's (MSDU) @ 11MB"),
3432 IPW2100_ORD(STAT_TX_NODIR_DATA1,
3433 "successful Non_Directed Tx's (MSDU) @ 1MB"),
3434 IPW2100_ORD(STAT_TX_NODIR_DATA2,
3435 "successful Non_Directed Tx's (MSDU) @ 2MB"),
3436 IPW2100_ORD(STAT_TX_NODIR_DATA5_5,
3437 "successful Non_Directed Tx's (MSDU) @ 5.5MB"),
3438 IPW2100_ORD(STAT_TX_NODIR_DATA11,
3439 "successful Non_Directed Tx's (MSDU) @ 11MB"),
3440 IPW2100_ORD(STAT_NULL_DATA, "successful NULL data Tx's"),
3441 IPW2100_ORD(STAT_TX_RTS, "successful Tx RTS"),
3442 IPW2100_ORD(STAT_TX_CTS, "successful Tx CTS"),
3443 IPW2100_ORD(STAT_TX_ACK, "successful Tx ACK"),
3444 IPW2100_ORD(STAT_TX_ASSN, "successful Association Tx's"),
3445 IPW2100_ORD(STAT_TX_ASSN_RESP,
3446 "successful Association response Tx's"),
3447 IPW2100_ORD(STAT_TX_REASSN,
3448 "successful Reassociation Tx's"),
3449 IPW2100_ORD(STAT_TX_REASSN_RESP,
3450 "successful Reassociation response Tx's"),
3451 IPW2100_ORD(STAT_TX_PROBE,
3452 "probes successfully transmitted"),
3453 IPW2100_ORD(STAT_TX_PROBE_RESP,
3454 "probe responses successfully transmitted"),
3455 IPW2100_ORD(STAT_TX_BEACON, "tx beacon"),
3456 IPW2100_ORD(STAT_TX_ATIM, "Tx ATIM"),
3457 IPW2100_ORD(STAT_TX_DISASSN,
3458 "successful Disassociation TX"),
3459 IPW2100_ORD(STAT_TX_AUTH, "successful Authentication Tx"),
3460 IPW2100_ORD(STAT_TX_DEAUTH,
3461 "successful Deauthentication TX"),
3462 IPW2100_ORD(STAT_TX_TOTAL_BYTES,
3463 "Total successful Tx data bytes"),
3464 IPW2100_ORD(STAT_TX_RETRIES, "Tx retries"),
3465 IPW2100_ORD(STAT_TX_RETRY1, "Tx retries at 1MBPS"),
3466 IPW2100_ORD(STAT_TX_RETRY2, "Tx retries at 2MBPS"),
3467 IPW2100_ORD(STAT_TX_RETRY5_5, "Tx retries at 5.5MBPS"),
3468 IPW2100_ORD(STAT_TX_RETRY11, "Tx retries at 11MBPS"),
3469 IPW2100_ORD(STAT_TX_FAILURES, "Tx Failures"),
3470 IPW2100_ORD(STAT_TX_MAX_TRIES_IN_HOP,
3471 "times max tries in a hop failed"),
3472 IPW2100_ORD(STAT_TX_DISASSN_FAIL,
3473 "times disassociation failed"),
3474 IPW2100_ORD(STAT_TX_ERR_CTS, "missed/bad CTS frames"),
3475 IPW2100_ORD(STAT_TX_ERR_ACK, "tx err due to acks"),
3476 IPW2100_ORD(STAT_RX_HOST, "packets passed to host"),
3477 IPW2100_ORD(STAT_RX_DIR_DATA, "directed packets"),
3478 IPW2100_ORD(STAT_RX_DIR_DATA1, "directed packets at 1MB"),
3479 IPW2100_ORD(STAT_RX_DIR_DATA2, "directed packets at 2MB"),
3480 IPW2100_ORD(STAT_RX_DIR_DATA5_5,
3481 "directed packets at 5.5MB"),
3482 IPW2100_ORD(STAT_RX_DIR_DATA11, "directed packets at 11MB"),
3483 IPW2100_ORD(STAT_RX_NODIR_DATA, "nondirected packets"),
3484 IPW2100_ORD(STAT_RX_NODIR_DATA1,
3485 "nondirected packets at 1MB"),
3486 IPW2100_ORD(STAT_RX_NODIR_DATA2,
3487 "nondirected packets at 2MB"),
3488 IPW2100_ORD(STAT_RX_NODIR_DATA5_5,
3489 "nondirected packets at 5.5MB"),
3490 IPW2100_ORD(STAT_RX_NODIR_DATA11,
3491 "nondirected packets at 11MB"),
3492 IPW2100_ORD(STAT_RX_NULL_DATA, "null data rx's"),
3493 IPW2100_ORD(STAT_RX_RTS, "Rx RTS"), IPW2100_ORD(STAT_RX_CTS,
3494 "Rx CTS"),
3495 IPW2100_ORD(STAT_RX_ACK, "Rx ACK"),
3496 IPW2100_ORD(STAT_RX_CFEND, "Rx CF End"),
3497 IPW2100_ORD(STAT_RX_CFEND_ACK, "Rx CF End + CF Ack"),
3498 IPW2100_ORD(STAT_RX_ASSN, "Association Rx's"),
3499 IPW2100_ORD(STAT_RX_ASSN_RESP, "Association response Rx's"),
3500 IPW2100_ORD(STAT_RX_REASSN, "Reassociation Rx's"),
3501 IPW2100_ORD(STAT_RX_REASSN_RESP,
3502 "Reassociation response Rx's"),
3503 IPW2100_ORD(STAT_RX_PROBE, "probe Rx's"),
3504 IPW2100_ORD(STAT_RX_PROBE_RESP, "probe response Rx's"),
3505 IPW2100_ORD(STAT_RX_BEACON, "Rx beacon"),
3506 IPW2100_ORD(STAT_RX_ATIM, "Rx ATIM"),
3507 IPW2100_ORD(STAT_RX_DISASSN, "disassociation Rx"),
3508 IPW2100_ORD(STAT_RX_AUTH, "authentication Rx"),
3509 IPW2100_ORD(STAT_RX_DEAUTH, "deauthentication Rx"),
3510 IPW2100_ORD(STAT_RX_TOTAL_BYTES,
3511 "Total rx data bytes received"),
3512 IPW2100_ORD(STAT_RX_ERR_CRC, "packets with Rx CRC error"),
3513 IPW2100_ORD(STAT_RX_ERR_CRC1, "Rx CRC errors at 1MB"),
3514 IPW2100_ORD(STAT_RX_ERR_CRC2, "Rx CRC errors at 2MB"),
3515 IPW2100_ORD(STAT_RX_ERR_CRC5_5, "Rx CRC errors at 5.5MB"),
3516 IPW2100_ORD(STAT_RX_ERR_CRC11, "Rx CRC errors at 11MB"),
3517 IPW2100_ORD(STAT_RX_DUPLICATE1,
3518 "duplicate rx packets at 1MB"),
3519 IPW2100_ORD(STAT_RX_DUPLICATE2,
3520 "duplicate rx packets at 2MB"),
3521 IPW2100_ORD(STAT_RX_DUPLICATE5_5,
3522 "duplicate rx packets at 5.5MB"),
3523 IPW2100_ORD(STAT_RX_DUPLICATE11,
3524 "duplicate rx packets at 11MB"),
3525 IPW2100_ORD(STAT_RX_DUPLICATE, "duplicate rx packets"),
3526 IPW2100_ORD(PERS_DB_LOCK, "locking fw permanent db"),
3527 IPW2100_ORD(PERS_DB_SIZE, "size of fw permanent db"),
3528 IPW2100_ORD(PERS_DB_ADDR, "address of fw permanent db"),
3529 IPW2100_ORD(STAT_RX_INVALID_PROTOCOL,
3530 "rx frames with invalid protocol"),
3531 IPW2100_ORD(SYS_BOOT_TIME, "Boot time"),
3532 IPW2100_ORD(STAT_RX_NO_BUFFER,
3533 "rx frames rejected due to no buffer"),
3534 IPW2100_ORD(STAT_RX_MISSING_FRAG,
3535 "rx frames dropped due to missing fragment"),
3536 IPW2100_ORD(STAT_RX_ORPHAN_FRAG,
3537 "rx frames dropped due to non-sequential fragment"),
3538 IPW2100_ORD(STAT_RX_ORPHAN_FRAME,
3539 "rx frames dropped due to unmatched 1st frame"),
3540 IPW2100_ORD(STAT_RX_FRAG_AGEOUT,
3541 "rx frames dropped due to uncompleted frame"),
3542 IPW2100_ORD(STAT_RX_ICV_ERRORS,
3543 "ICV errors during decryption"),
3544 IPW2100_ORD(STAT_PSP_SUSPENSION, "times adapter suspended"),
3545 IPW2100_ORD(STAT_PSP_BCN_TIMEOUT, "beacon timeout"),
3546 IPW2100_ORD(STAT_PSP_POLL_TIMEOUT,
3547 "poll response timeouts"),
3548 IPW2100_ORD(STAT_PSP_NONDIR_TIMEOUT,
3549 "timeouts waiting for last {broad,multi}cast pkt"),
3550 IPW2100_ORD(STAT_PSP_RX_DTIMS, "PSP DTIMs received"),
3551 IPW2100_ORD(STAT_PSP_RX_TIMS, "PSP TIMs received"),
3552 IPW2100_ORD(STAT_PSP_STATION_ID, "PSP Station ID"),
3553 IPW2100_ORD(LAST_ASSN_TIME, "RTC time of last association"),
3554 IPW2100_ORD(STAT_PERCENT_MISSED_BCNS,
3555 "current calculation of % missed beacons"),
3556 IPW2100_ORD(STAT_PERCENT_RETRIES,
3557 "current calculation of % missed tx retries"),
3558 IPW2100_ORD(ASSOCIATED_AP_PTR,
3559 "0 if not associated, else pointer to AP table entry"),
3560 IPW2100_ORD(AVAILABLE_AP_CNT,
3561 "AP's decsribed in the AP table"),
3562 IPW2100_ORD(AP_LIST_PTR, "Ptr to list of available APs"),
3563 IPW2100_ORD(STAT_AP_ASSNS, "associations"),
3564 IPW2100_ORD(STAT_ASSN_FAIL, "association failures"),
3565 IPW2100_ORD(STAT_ASSN_RESP_FAIL,
3566 "failures due to response fail"),
3567 IPW2100_ORD(STAT_FULL_SCANS, "full scans"),
3568 IPW2100_ORD(CARD_DISABLED, "Card Disabled"),
3569 IPW2100_ORD(STAT_ROAM_INHIBIT,
3570 "times roaming was inhibited due to activity"),
3571 IPW2100_ORD(RSSI_AT_ASSN,
3572 "RSSI of associated AP at time of association"),
3573 IPW2100_ORD(STAT_ASSN_CAUSE1,
3574 "reassociation: no probe response or TX on hop"),
3575 IPW2100_ORD(STAT_ASSN_CAUSE2,
3576 "reassociation: poor tx/rx quality"),
3577 IPW2100_ORD(STAT_ASSN_CAUSE3,
3578 "reassociation: tx/rx quality (excessive AP load"),
3579 IPW2100_ORD(STAT_ASSN_CAUSE4,
3580 "reassociation: AP RSSI level"),
3581 IPW2100_ORD(STAT_ASSN_CAUSE5,
3582 "reassociations due to load leveling"),
3583 IPW2100_ORD(STAT_AUTH_FAIL, "times authentication failed"),
3584 IPW2100_ORD(STAT_AUTH_RESP_FAIL,
3585 "times authentication response failed"),
3586 IPW2100_ORD(STATION_TABLE_CNT,
3587 "entries in association table"),
3588 IPW2100_ORD(RSSI_AVG_CURR, "Current avg RSSI"),
3589 IPW2100_ORD(POWER_MGMT_MODE, "Power mode - 0=CAM, 1=PSP"),
3590 IPW2100_ORD(COUNTRY_CODE,
3591 "IEEE country code as recv'd from beacon"),
3592 IPW2100_ORD(COUNTRY_CHANNELS,
3593 "channels suported by country"),
3594 IPW2100_ORD(RESET_CNT, "adapter resets (warm)"),
3595 IPW2100_ORD(BEACON_INTERVAL, "Beacon interval"),
3596 IPW2100_ORD(ANTENNA_DIVERSITY,
3597 "TRUE if antenna diversity is disabled"),
3598 IPW2100_ORD(DTIM_PERIOD, "beacon intervals between DTIMs"),
3599 IPW2100_ORD(OUR_FREQ,
3600 "current radio freq lower digits - channel ID"),
3601 IPW2100_ORD(RTC_TIME, "current RTC time"),
3602 IPW2100_ORD(PORT_TYPE, "operating mode"),
3603 IPW2100_ORD(CURRENT_TX_RATE, "current tx rate"),
3604 IPW2100_ORD(SUPPORTED_RATES, "supported tx rates"),
3605 IPW2100_ORD(ATIM_WINDOW, "current ATIM Window"),
3606 IPW2100_ORD(BASIC_RATES, "basic tx rates"),
3607 IPW2100_ORD(NIC_HIGHEST_RATE, "NIC highest tx rate"),
3608 IPW2100_ORD(AP_HIGHEST_RATE, "AP highest tx rate"),
3609 IPW2100_ORD(CAPABILITIES,
3610 "Management frame capability field"),
3611 IPW2100_ORD(AUTH_TYPE, "Type of authentication"),
3612 IPW2100_ORD(RADIO_TYPE, "Adapter card platform type"),
3613 IPW2100_ORD(RTS_THRESHOLD,
3614 "Min packet length for RTS handshaking"),
3615 IPW2100_ORD(INT_MODE, "International mode"),
3616 IPW2100_ORD(FRAGMENTATION_THRESHOLD,
3617 "protocol frag threshold"),
3618 IPW2100_ORD(EEPROM_SRAM_DB_BLOCK_START_ADDRESS,
3619 "EEPROM offset in SRAM"),
3620 IPW2100_ORD(EEPROM_SRAM_DB_BLOCK_SIZE,
3621 "EEPROM size in SRAM"),
3622 IPW2100_ORD(EEPROM_SKU_CAPABILITY, "EEPROM SKU Capability"),
3623 IPW2100_ORD(EEPROM_IBSS_11B_CHANNELS,
3624 "EEPROM IBSS 11b channel set"),
3625 IPW2100_ORD(MAC_VERSION, "MAC Version"),
3626 IPW2100_ORD(MAC_REVISION, "MAC Revision"),
3627 IPW2100_ORD(RADIO_VERSION, "Radio Version"),
3628 IPW2100_ORD(NIC_MANF_DATE_TIME, "MANF Date/Time STAMP"),
3629 IPW2100_ORD(UCODE_VERSION, "Ucode Version"),};
James Ketrenos2c86c272005-03-23 17:32:29 -06003630
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003631static ssize_t show_registers(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003632 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003633{
3634 int i;
3635 struct ipw2100_priv *priv = dev_get_drvdata(d);
3636 struct net_device *dev = priv->net_dev;
James Ketrenosee8e3652005-09-14 09:47:29 -05003637 char *out = buf;
James Ketrenos2c86c272005-03-23 17:32:29 -06003638 u32 val = 0;
3639
3640 out += sprintf(out, "%30s [Address ] : Hex\n", "Register");
3641
3642 for (i = 0; i < (sizeof(hw_data) / sizeof(*hw_data)); i++) {
3643 read_register(dev, hw_data[i].addr, &val);
3644 out += sprintf(out, "%30s [%08X] : %08X\n",
3645 hw_data[i].name, hw_data[i].addr, val);
3646 }
3647
3648 return out - buf;
3649}
James Ketrenosee8e3652005-09-14 09:47:29 -05003650
James Ketrenos2c86c272005-03-23 17:32:29 -06003651static DEVICE_ATTR(registers, S_IRUGO, show_registers, NULL);
3652
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003653static ssize_t show_hardware(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003654 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003655{
3656 struct ipw2100_priv *priv = dev_get_drvdata(d);
3657 struct net_device *dev = priv->net_dev;
James Ketrenosee8e3652005-09-14 09:47:29 -05003658 char *out = buf;
James Ketrenos2c86c272005-03-23 17:32:29 -06003659 int i;
3660
3661 out += sprintf(out, "%30s [Address ] : Hex\n", "NIC entry");
3662
3663 for (i = 0; i < (sizeof(nic_data) / sizeof(*nic_data)); i++) {
3664 u8 tmp8;
3665 u16 tmp16;
3666 u32 tmp32;
3667
3668 switch (nic_data[i].size) {
3669 case 1:
3670 read_nic_byte(dev, nic_data[i].addr, &tmp8);
3671 out += sprintf(out, "%30s [%08X] : %02X\n",
3672 nic_data[i].name, nic_data[i].addr,
3673 tmp8);
3674 break;
3675 case 2:
3676 read_nic_word(dev, nic_data[i].addr, &tmp16);
3677 out += sprintf(out, "%30s [%08X] : %04X\n",
3678 nic_data[i].name, nic_data[i].addr,
3679 tmp16);
3680 break;
3681 case 4:
3682 read_nic_dword(dev, nic_data[i].addr, &tmp32);
3683 out += sprintf(out, "%30s [%08X] : %08X\n",
3684 nic_data[i].name, nic_data[i].addr,
3685 tmp32);
3686 break;
3687 }
3688 }
3689 return out - buf;
3690}
James Ketrenosee8e3652005-09-14 09:47:29 -05003691
James Ketrenos2c86c272005-03-23 17:32:29 -06003692static DEVICE_ATTR(hardware, S_IRUGO, show_hardware, NULL);
3693
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003694static ssize_t show_memory(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003695 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003696{
3697 struct ipw2100_priv *priv = dev_get_drvdata(d);
3698 struct net_device *dev = priv->net_dev;
3699 static unsigned long loop = 0;
3700 int len = 0;
3701 u32 buffer[4];
3702 int i;
3703 char line[81];
3704
3705 if (loop >= 0x30000)
3706 loop = 0;
3707
3708 /* sysfs provides us PAGE_SIZE buffer */
3709 while (len < PAGE_SIZE - 128 && loop < 0x30000) {
3710
James Ketrenosee8e3652005-09-14 09:47:29 -05003711 if (priv->snapshot[0])
3712 for (i = 0; i < 4; i++)
3713 buffer[i] =
3714 *(u32 *) SNAPSHOT_ADDR(loop + i * 4);
3715 else
3716 for (i = 0; i < 4; i++)
3717 read_nic_dword(dev, loop + i * 4, &buffer[i]);
James Ketrenos2c86c272005-03-23 17:32:29 -06003718
3719 if (priv->dump_raw)
3720 len += sprintf(buf + len,
3721 "%c%c%c%c"
3722 "%c%c%c%c"
3723 "%c%c%c%c"
3724 "%c%c%c%c",
James Ketrenosee8e3652005-09-14 09:47:29 -05003725 ((u8 *) buffer)[0x0],
3726 ((u8 *) buffer)[0x1],
3727 ((u8 *) buffer)[0x2],
3728 ((u8 *) buffer)[0x3],
3729 ((u8 *) buffer)[0x4],
3730 ((u8 *) buffer)[0x5],
3731 ((u8 *) buffer)[0x6],
3732 ((u8 *) buffer)[0x7],
3733 ((u8 *) buffer)[0x8],
3734 ((u8 *) buffer)[0x9],
3735 ((u8 *) buffer)[0xa],
3736 ((u8 *) buffer)[0xb],
3737 ((u8 *) buffer)[0xc],
3738 ((u8 *) buffer)[0xd],
3739 ((u8 *) buffer)[0xe],
3740 ((u8 *) buffer)[0xf]);
James Ketrenos2c86c272005-03-23 17:32:29 -06003741 else
3742 len += sprintf(buf + len, "%s\n",
3743 snprint_line(line, sizeof(line),
James Ketrenosee8e3652005-09-14 09:47:29 -05003744 (u8 *) buffer, 16, loop));
James Ketrenos2c86c272005-03-23 17:32:29 -06003745 loop += 16;
3746 }
3747
3748 return len;
3749}
3750
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003751static ssize_t store_memory(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003752 const char *buf, size_t count)
James Ketrenos2c86c272005-03-23 17:32:29 -06003753{
3754 struct ipw2100_priv *priv = dev_get_drvdata(d);
3755 struct net_device *dev = priv->net_dev;
3756 const char *p = buf;
3757
3758 if (count < 1)
3759 return count;
3760
3761 if (p[0] == '1' ||
3762 (count >= 2 && tolower(p[0]) == 'o' && tolower(p[1]) == 'n')) {
3763 IPW_DEBUG_INFO("%s: Setting memory dump to RAW mode.\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05003764 dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06003765 priv->dump_raw = 1;
3766
3767 } else if (p[0] == '0' || (count >= 2 && tolower(p[0]) == 'o' &&
James Ketrenosee8e3652005-09-14 09:47:29 -05003768 tolower(p[1]) == 'f')) {
James Ketrenos2c86c272005-03-23 17:32:29 -06003769 IPW_DEBUG_INFO("%s: Setting memory dump to HEX mode.\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05003770 dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06003771 priv->dump_raw = 0;
3772
3773 } else if (tolower(p[0]) == 'r') {
James Ketrenosee8e3652005-09-14 09:47:29 -05003774 IPW_DEBUG_INFO("%s: Resetting firmware snapshot.\n", dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06003775 ipw2100_snapshot_free(priv);
3776
3777 } else
3778 IPW_DEBUG_INFO("%s: Usage: 0|on = HEX, 1|off = RAW, "
James Ketrenosee8e3652005-09-14 09:47:29 -05003779 "reset = clear memory snapshot\n", dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06003780
3781 return count;
3782}
James Ketrenos2c86c272005-03-23 17:32:29 -06003783
James Ketrenosee8e3652005-09-14 09:47:29 -05003784static DEVICE_ATTR(memory, S_IWUSR | S_IRUGO, show_memory, store_memory);
James Ketrenos2c86c272005-03-23 17:32:29 -06003785
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003786static ssize_t show_ordinals(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003787 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003788{
3789 struct ipw2100_priv *priv = dev_get_drvdata(d);
3790 u32 val = 0;
3791 int len = 0;
3792 u32 val_len;
3793 static int loop = 0;
3794
3795 if (loop >= sizeof(ord_data) / sizeof(*ord_data))
3796 loop = 0;
3797
3798 /* sysfs provides us PAGE_SIZE buffer */
3799 while (len < PAGE_SIZE - 128 &&
3800 loop < (sizeof(ord_data) / sizeof(*ord_data))) {
3801
3802 val_len = sizeof(u32);
3803
3804 if (ipw2100_get_ordinal(priv, ord_data[loop].index, &val,
3805 &val_len))
3806 len += sprintf(buf + len, "[0x%02X] = ERROR %s\n",
3807 ord_data[loop].index,
3808 ord_data[loop].desc);
3809 else
3810 len += sprintf(buf + len, "[0x%02X] = 0x%08X %s\n",
3811 ord_data[loop].index, val,
3812 ord_data[loop].desc);
3813 loop++;
3814 }
3815
3816 return len;
3817}
James Ketrenosee8e3652005-09-14 09:47:29 -05003818
James Ketrenos2c86c272005-03-23 17:32:29 -06003819static DEVICE_ATTR(ordinals, S_IRUGO, show_ordinals, NULL);
3820
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003821static ssize_t show_stats(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003822 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003823{
3824 struct ipw2100_priv *priv = dev_get_drvdata(d);
James Ketrenosee8e3652005-09-14 09:47:29 -05003825 char *out = buf;
James Ketrenos2c86c272005-03-23 17:32:29 -06003826
3827 out += sprintf(out, "interrupts: %d {tx: %d, rx: %d, other: %d}\n",
3828 priv->interrupts, priv->tx_interrupts,
3829 priv->rx_interrupts, priv->inta_other);
3830 out += sprintf(out, "firmware resets: %d\n", priv->resets);
3831 out += sprintf(out, "firmware hangs: %d\n", priv->hangs);
3832#ifdef CONFIG_IPW_DEBUG
3833 out += sprintf(out, "packet mismatch image: %s\n",
3834 priv->snapshot[0] ? "YES" : "NO");
3835#endif
3836
3837 return out - buf;
3838}
James Ketrenos2c86c272005-03-23 17:32:29 -06003839
James Ketrenosee8e3652005-09-14 09:47:29 -05003840static DEVICE_ATTR(stats, S_IRUGO, show_stats, NULL);
James Ketrenos2c86c272005-03-23 17:32:29 -06003841
Jiri Bencc4aee8c2005-08-25 20:04:43 -04003842static int ipw2100_switch_mode(struct ipw2100_priv *priv, u32 mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06003843{
3844 int err;
3845
3846 if (mode == priv->ieee->iw_mode)
3847 return 0;
3848
3849 err = ipw2100_disable_adapter(priv);
3850 if (err) {
Jiri Benc797b4f72005-08-25 20:03:27 -04003851 printk(KERN_ERR DRV_NAME ": %s: Could not disable adapter %d\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06003852 priv->net_dev->name, err);
3853 return err;
3854 }
3855
3856 switch (mode) {
3857 case IW_MODE_INFRA:
3858 priv->net_dev->type = ARPHRD_ETHER;
3859 break;
3860 case IW_MODE_ADHOC:
3861 priv->net_dev->type = ARPHRD_ETHER;
3862 break;
3863#ifdef CONFIG_IPW2100_MONITOR
3864 case IW_MODE_MONITOR:
3865 priv->last_mode = priv->ieee->iw_mode;
3866 priv->net_dev->type = ARPHRD_IEEE80211;
3867 break;
James Ketrenosee8e3652005-09-14 09:47:29 -05003868#endif /* CONFIG_IPW2100_MONITOR */
James Ketrenos2c86c272005-03-23 17:32:29 -06003869 }
3870
3871 priv->ieee->iw_mode = mode;
3872
3873#ifdef CONFIG_PM
James Ketrenosee8e3652005-09-14 09:47:29 -05003874 /* Indicate ipw2100_download_firmware download firmware
James Ketrenos2c86c272005-03-23 17:32:29 -06003875 * from disk instead of memory. */
3876 ipw2100_firmware.version = 0;
3877#endif
3878
James Ketrenosee8e3652005-09-14 09:47:29 -05003879 printk(KERN_INFO "%s: Reseting on mode change.\n", priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06003880 priv->reset_backoff = 0;
3881 schedule_reset(priv);
3882
3883 return 0;
3884}
3885
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003886static ssize_t show_internals(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003887 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003888{
3889 struct ipw2100_priv *priv = dev_get_drvdata(d);
3890 int len = 0;
3891
James Ketrenosee8e3652005-09-14 09:47:29 -05003892#define DUMP_VAR(x,y) len += sprintf(buf + len, # x ": %" y "\n", priv-> x)
James Ketrenos2c86c272005-03-23 17:32:29 -06003893
3894 if (priv->status & STATUS_ASSOCIATED)
3895 len += sprintf(buf + len, "connected: %lu\n",
3896 get_seconds() - priv->connect_start);
3897 else
3898 len += sprintf(buf + len, "not connected\n");
3899
James Ketrenosee8e3652005-09-14 09:47:29 -05003900 DUMP_VAR(ieee->crypt[priv->ieee->tx_keyidx], "p");
3901 DUMP_VAR(status, "08lx");
3902 DUMP_VAR(config, "08lx");
3903 DUMP_VAR(capability, "08lx");
James Ketrenos2c86c272005-03-23 17:32:29 -06003904
James Ketrenosee8e3652005-09-14 09:47:29 -05003905 len +=
3906 sprintf(buf + len, "last_rtc: %lu\n",
3907 (unsigned long)priv->last_rtc);
James Ketrenos2c86c272005-03-23 17:32:29 -06003908
James Ketrenosee8e3652005-09-14 09:47:29 -05003909 DUMP_VAR(fatal_error, "d");
3910 DUMP_VAR(stop_hang_check, "d");
3911 DUMP_VAR(stop_rf_kill, "d");
3912 DUMP_VAR(messages_sent, "d");
James Ketrenos2c86c272005-03-23 17:32:29 -06003913
James Ketrenosee8e3652005-09-14 09:47:29 -05003914 DUMP_VAR(tx_pend_stat.value, "d");
3915 DUMP_VAR(tx_pend_stat.hi, "d");
James Ketrenos2c86c272005-03-23 17:32:29 -06003916
James Ketrenosee8e3652005-09-14 09:47:29 -05003917 DUMP_VAR(tx_free_stat.value, "d");
3918 DUMP_VAR(tx_free_stat.lo, "d");
James Ketrenos2c86c272005-03-23 17:32:29 -06003919
James Ketrenosee8e3652005-09-14 09:47:29 -05003920 DUMP_VAR(msg_free_stat.value, "d");
3921 DUMP_VAR(msg_free_stat.lo, "d");
James Ketrenos2c86c272005-03-23 17:32:29 -06003922
James Ketrenosee8e3652005-09-14 09:47:29 -05003923 DUMP_VAR(msg_pend_stat.value, "d");
3924 DUMP_VAR(msg_pend_stat.hi, "d");
James Ketrenos2c86c272005-03-23 17:32:29 -06003925
James Ketrenosee8e3652005-09-14 09:47:29 -05003926 DUMP_VAR(fw_pend_stat.value, "d");
3927 DUMP_VAR(fw_pend_stat.hi, "d");
James Ketrenos2c86c272005-03-23 17:32:29 -06003928
James Ketrenosee8e3652005-09-14 09:47:29 -05003929 DUMP_VAR(txq_stat.value, "d");
3930 DUMP_VAR(txq_stat.lo, "d");
James Ketrenos2c86c272005-03-23 17:32:29 -06003931
James Ketrenosee8e3652005-09-14 09:47:29 -05003932 DUMP_VAR(ieee->scans, "d");
3933 DUMP_VAR(reset_backoff, "d");
James Ketrenos2c86c272005-03-23 17:32:29 -06003934
3935 return len;
3936}
James Ketrenosee8e3652005-09-14 09:47:29 -05003937
James Ketrenos2c86c272005-03-23 17:32:29 -06003938static DEVICE_ATTR(internals, S_IRUGO, show_internals, NULL);
3939
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003940static ssize_t show_bssinfo(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003941 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003942{
3943 struct ipw2100_priv *priv = dev_get_drvdata(d);
3944 char essid[IW_ESSID_MAX_SIZE + 1];
3945 u8 bssid[ETH_ALEN];
3946 u32 chan = 0;
James Ketrenosee8e3652005-09-14 09:47:29 -05003947 char *out = buf;
James Ketrenos2c86c272005-03-23 17:32:29 -06003948 int length;
3949 int ret;
3950
3951 memset(essid, 0, sizeof(essid));
3952 memset(bssid, 0, sizeof(bssid));
3953
3954 length = IW_ESSID_MAX_SIZE;
3955 ret = ipw2100_get_ordinal(priv, IPW_ORD_STAT_ASSN_SSID, essid, &length);
3956 if (ret)
3957 IPW_DEBUG_INFO("failed querying ordinals at line %d\n",
3958 __LINE__);
3959
3960 length = sizeof(bssid);
3961 ret = ipw2100_get_ordinal(priv, IPW_ORD_STAT_ASSN_AP_BSSID,
3962 bssid, &length);
3963 if (ret)
3964 IPW_DEBUG_INFO("failed querying ordinals at line %d\n",
3965 __LINE__);
3966
3967 length = sizeof(u32);
3968 ret = ipw2100_get_ordinal(priv, IPW_ORD_OUR_FREQ, &chan, &length);
3969 if (ret)
3970 IPW_DEBUG_INFO("failed querying ordinals at line %d\n",
3971 __LINE__);
3972
3973 out += sprintf(out, "ESSID: %s\n", essid);
3974 out += sprintf(out, "BSSID: %02x:%02x:%02x:%02x:%02x:%02x\n",
3975 bssid[0], bssid[1], bssid[2],
3976 bssid[3], bssid[4], bssid[5]);
3977 out += sprintf(out, "Channel: %d\n", chan);
3978
3979 return out - buf;
3980}
James Ketrenos2c86c272005-03-23 17:32:29 -06003981
James Ketrenosee8e3652005-09-14 09:47:29 -05003982static DEVICE_ATTR(bssinfo, S_IRUGO, show_bssinfo, NULL);
James Ketrenos2c86c272005-03-23 17:32:29 -06003983
James Ketrenos2c86c272005-03-23 17:32:29 -06003984#ifdef CONFIG_IPW_DEBUG
3985static ssize_t show_debug_level(struct device_driver *d, char *buf)
3986{
3987 return sprintf(buf, "0x%08X\n", ipw2100_debug_level);
3988}
3989
3990static ssize_t store_debug_level(struct device_driver *d, const char *buf,
3991 size_t count)
3992{
3993 char *p = (char *)buf;
3994 u32 val;
3995
3996 if (p[1] == 'x' || p[1] == 'X' || p[0] == 'x' || p[0] == 'X') {
3997 p++;
3998 if (p[0] == 'x' || p[0] == 'X')
3999 p++;
4000 val = simple_strtoul(p, &p, 16);
4001 } else
4002 val = simple_strtoul(p, &p, 10);
4003 if (p == buf)
4004 IPW_DEBUG_INFO(DRV_NAME
James Ketrenosee8e3652005-09-14 09:47:29 -05004005 ": %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
4071 IPW_DEBUG_INFO("enter\n");
4072
4073 strncpy(buffer, buf, len);
4074 buffer[len] = 0;
4075
4076 if (p[1] == 'x' || p[1] == 'X' || p[0] == 'x' || p[0] == 'X') {
4077 p++;
4078 if (p[0] == 'x' || p[0] == 'X')
4079 p++;
4080 val = simple_strtoul(p, &p, 16);
4081 } else
4082 val = simple_strtoul(p, &p, 10);
4083 if (p == buffer) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004084 IPW_DEBUG_INFO("%s: user supplied invalid value.\n", dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06004085 } else {
4086 priv->ieee->scan_age = val;
4087 IPW_DEBUG_INFO("set scan_age = %u\n", priv->ieee->scan_age);
4088 }
4089
4090 IPW_DEBUG_INFO("exit\n");
4091 return len;
4092}
James Ketrenosee8e3652005-09-14 09:47:29 -05004093
James Ketrenos2c86c272005-03-23 17:32:29 -06004094static DEVICE_ATTR(scan_age, S_IWUSR | S_IRUGO, show_scan_age, store_scan_age);
4095
Andrew Mortonedfc43f2005-06-20 14:30:35 -07004096static ssize_t show_rf_kill(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05004097 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06004098{
4099 /* 0 - RF kill not enabled
4100 1 - SW based RF kill active (sysfs)
4101 2 - HW based RF kill active
4102 3 - Both HW and SW baed RF kill active */
4103 struct ipw2100_priv *priv = (struct ipw2100_priv *)d->driver_data;
4104 int val = ((priv->status & STATUS_RF_KILL_SW) ? 0x1 : 0x0) |
James Ketrenosee8e3652005-09-14 09:47:29 -05004105 (rf_kill_active(priv) ? 0x2 : 0x0);
James Ketrenos2c86c272005-03-23 17:32:29 -06004106 return sprintf(buf, "%i\n", val);
4107}
4108
4109static int ipw_radio_kill_sw(struct ipw2100_priv *priv, int disable_radio)
4110{
4111 if ((disable_radio ? 1 : 0) ==
4112 (priv->status & STATUS_RF_KILL_SW ? 1 : 0))
James Ketrenosee8e3652005-09-14 09:47:29 -05004113 return 0;
James Ketrenos2c86c272005-03-23 17:32:29 -06004114
4115 IPW_DEBUG_RF_KILL("Manual SW RF Kill set to: RADIO %s\n",
4116 disable_radio ? "OFF" : "ON");
4117
4118 down(&priv->action_sem);
4119
4120 if (disable_radio) {
4121 priv->status |= STATUS_RF_KILL_SW;
4122 ipw2100_down(priv);
4123 } else {
4124 priv->status &= ~STATUS_RF_KILL_SW;
4125 if (rf_kill_active(priv)) {
4126 IPW_DEBUG_RF_KILL("Can not turn radio back on - "
4127 "disabled by HW switch\n");
4128 /* Make sure the RF_KILL check timer is running */
4129 priv->stop_rf_kill = 0;
4130 cancel_delayed_work(&priv->rf_kill);
James Ketrenosee8e3652005-09-14 09:47:29 -05004131 queue_delayed_work(priv->workqueue, &priv->rf_kill, HZ);
James Ketrenos2c86c272005-03-23 17:32:29 -06004132 } else
4133 schedule_reset(priv);
4134 }
4135
4136 up(&priv->action_sem);
4137 return 1;
4138}
4139
Andrew Mortonedfc43f2005-06-20 14:30:35 -07004140static ssize_t store_rf_kill(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05004141 const char *buf, size_t count)
James Ketrenos2c86c272005-03-23 17:32:29 -06004142{
4143 struct ipw2100_priv *priv = dev_get_drvdata(d);
4144 ipw_radio_kill_sw(priv, buf[0] == '1');
4145 return count;
4146}
James Ketrenos2c86c272005-03-23 17:32:29 -06004147
James Ketrenosee8e3652005-09-14 09:47:29 -05004148static DEVICE_ATTR(rf_kill, S_IWUSR | S_IRUGO, show_rf_kill, store_rf_kill);
James Ketrenos2c86c272005-03-23 17:32:29 -06004149
4150static struct attribute *ipw2100_sysfs_entries[] = {
4151 &dev_attr_hardware.attr,
4152 &dev_attr_registers.attr,
4153 &dev_attr_ordinals.attr,
4154 &dev_attr_pci.attr,
4155 &dev_attr_stats.attr,
4156 &dev_attr_internals.attr,
4157 &dev_attr_bssinfo.attr,
4158 &dev_attr_memory.attr,
4159 &dev_attr_scan_age.attr,
4160 &dev_attr_fatal_error.attr,
4161 &dev_attr_rf_kill.attr,
4162 &dev_attr_cfg.attr,
4163 &dev_attr_status.attr,
4164 &dev_attr_capability.attr,
4165 NULL,
4166};
4167
4168static struct attribute_group ipw2100_attribute_group = {
4169 .attrs = ipw2100_sysfs_entries,
4170};
4171
James Ketrenos2c86c272005-03-23 17:32:29 -06004172static int status_queue_allocate(struct ipw2100_priv *priv, int entries)
4173{
4174 struct ipw2100_status_queue *q = &priv->status_queue;
4175
4176 IPW_DEBUG_INFO("enter\n");
4177
4178 q->size = entries * sizeof(struct ipw2100_status);
James Ketrenosee8e3652005-09-14 09:47:29 -05004179 q->drv =
4180 (struct ipw2100_status *)pci_alloc_consistent(priv->pci_dev,
4181 q->size, &q->nic);
James Ketrenos2c86c272005-03-23 17:32:29 -06004182 if (!q->drv) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004183 IPW_DEBUG_WARNING("Can not allocate status queue.\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06004184 return -ENOMEM;
4185 }
4186
4187 memset(q->drv, 0, q->size);
4188
4189 IPW_DEBUG_INFO("exit\n");
4190
4191 return 0;
4192}
4193
4194static void status_queue_free(struct ipw2100_priv *priv)
4195{
4196 IPW_DEBUG_INFO("enter\n");
4197
4198 if (priv->status_queue.drv) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004199 pci_free_consistent(priv->pci_dev, priv->status_queue.size,
4200 priv->status_queue.drv,
4201 priv->status_queue.nic);
James Ketrenos2c86c272005-03-23 17:32:29 -06004202 priv->status_queue.drv = NULL;
4203 }
4204
4205 IPW_DEBUG_INFO("exit\n");
4206}
4207
4208static int bd_queue_allocate(struct ipw2100_priv *priv,
4209 struct ipw2100_bd_queue *q, int entries)
4210{
4211 IPW_DEBUG_INFO("enter\n");
4212
4213 memset(q, 0, sizeof(struct ipw2100_bd_queue));
4214
4215 q->entries = entries;
4216 q->size = entries * sizeof(struct ipw2100_bd);
4217 q->drv = pci_alloc_consistent(priv->pci_dev, q->size, &q->nic);
4218 if (!q->drv) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004219 IPW_DEBUG_INFO
4220 ("can't allocate shared memory for buffer descriptors\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06004221 return -ENOMEM;
4222 }
4223 memset(q->drv, 0, q->size);
4224
4225 IPW_DEBUG_INFO("exit\n");
4226
4227 return 0;
4228}
4229
James Ketrenosee8e3652005-09-14 09:47:29 -05004230static void bd_queue_free(struct ipw2100_priv *priv, struct ipw2100_bd_queue *q)
James Ketrenos2c86c272005-03-23 17:32:29 -06004231{
4232 IPW_DEBUG_INFO("enter\n");
4233
4234 if (!q)
4235 return;
4236
4237 if (q->drv) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004238 pci_free_consistent(priv->pci_dev, q->size, q->drv, q->nic);
James Ketrenos2c86c272005-03-23 17:32:29 -06004239 q->drv = NULL;
4240 }
4241
4242 IPW_DEBUG_INFO("exit\n");
4243}
4244
James Ketrenosee8e3652005-09-14 09:47:29 -05004245static void bd_queue_initialize(struct ipw2100_priv *priv,
4246 struct ipw2100_bd_queue *q, u32 base, u32 size,
4247 u32 r, u32 w)
James Ketrenos2c86c272005-03-23 17:32:29 -06004248{
4249 IPW_DEBUG_INFO("enter\n");
4250
James Ketrenosee8e3652005-09-14 09:47:29 -05004251 IPW_DEBUG_INFO("initializing bd queue at virt=%p, phys=%08x\n", q->drv,
4252 (u32) q->nic);
James Ketrenos2c86c272005-03-23 17:32:29 -06004253
4254 write_register(priv->net_dev, base, q->nic);
4255 write_register(priv->net_dev, size, q->entries);
4256 write_register(priv->net_dev, r, q->oldest);
4257 write_register(priv->net_dev, w, q->next);
4258
4259 IPW_DEBUG_INFO("exit\n");
4260}
4261
4262static void ipw2100_kill_workqueue(struct ipw2100_priv *priv)
4263{
4264 if (priv->workqueue) {
4265 priv->stop_rf_kill = 1;
4266 priv->stop_hang_check = 1;
4267 cancel_delayed_work(&priv->reset_work);
4268 cancel_delayed_work(&priv->security_work);
4269 cancel_delayed_work(&priv->wx_event_work);
4270 cancel_delayed_work(&priv->hang_check);
4271 cancel_delayed_work(&priv->rf_kill);
4272 destroy_workqueue(priv->workqueue);
4273 priv->workqueue = NULL;
4274 }
4275}
4276
4277static int ipw2100_tx_allocate(struct ipw2100_priv *priv)
4278{
4279 int i, j, err = -EINVAL;
4280 void *v;
4281 dma_addr_t p;
4282
4283 IPW_DEBUG_INFO("enter\n");
4284
4285 err = bd_queue_allocate(priv, &priv->tx_queue, TX_QUEUE_LENGTH);
4286 if (err) {
4287 IPW_DEBUG_ERROR("%s: failed bd_queue_allocate\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05004288 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06004289 return err;
4290 }
4291
James Ketrenosee8e3652005-09-14 09:47:29 -05004292 priv->tx_buffers =
4293 (struct ipw2100_tx_packet *)kmalloc(TX_PENDED_QUEUE_LENGTH *
4294 sizeof(struct
4295 ipw2100_tx_packet),
4296 GFP_ATOMIC);
James Ketrenos2c86c272005-03-23 17:32:29 -06004297 if (!priv->tx_buffers) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004298 printk(KERN_ERR DRV_NAME
4299 ": %s: alloc failed form tx buffers.\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06004300 priv->net_dev->name);
4301 bd_queue_free(priv, &priv->tx_queue);
4302 return -ENOMEM;
4303 }
4304
4305 for (i = 0; i < TX_PENDED_QUEUE_LENGTH; i++) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004306 v = pci_alloc_consistent(priv->pci_dev,
4307 sizeof(struct ipw2100_data_header),
4308 &p);
James Ketrenos2c86c272005-03-23 17:32:29 -06004309 if (!v) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004310 printk(KERN_ERR DRV_NAME
4311 ": %s: PCI alloc failed for tx " "buffers.\n",
4312 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06004313 err = -ENOMEM;
4314 break;
4315 }
4316
4317 priv->tx_buffers[i].type = DATA;
James Ketrenosee8e3652005-09-14 09:47:29 -05004318 priv->tx_buffers[i].info.d_struct.data =
4319 (struct ipw2100_data_header *)v;
James Ketrenos2c86c272005-03-23 17:32:29 -06004320 priv->tx_buffers[i].info.d_struct.data_phys = p;
4321 priv->tx_buffers[i].info.d_struct.txb = NULL;
4322 }
4323
4324 if (i == TX_PENDED_QUEUE_LENGTH)
4325 return 0;
4326
4327 for (j = 0; j < i; j++) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004328 pci_free_consistent(priv->pci_dev,
4329 sizeof(struct ipw2100_data_header),
4330 priv->tx_buffers[j].info.d_struct.data,
4331 priv->tx_buffers[j].info.d_struct.
4332 data_phys);
James Ketrenos2c86c272005-03-23 17:32:29 -06004333 }
4334
4335 kfree(priv->tx_buffers);
4336 priv->tx_buffers = NULL;
4337
4338 return err;
4339}
4340
4341static void ipw2100_tx_initialize(struct ipw2100_priv *priv)
4342{
4343 int i;
4344
4345 IPW_DEBUG_INFO("enter\n");
4346
4347 /*
4348 * reinitialize packet info lists
4349 */
4350 INIT_LIST_HEAD(&priv->fw_pend_list);
4351 INIT_STAT(&priv->fw_pend_stat);
4352
4353 /*
4354 * reinitialize lists
4355 */
4356 INIT_LIST_HEAD(&priv->tx_pend_list);
4357 INIT_LIST_HEAD(&priv->tx_free_list);
4358 INIT_STAT(&priv->tx_pend_stat);
4359 INIT_STAT(&priv->tx_free_stat);
4360
4361 for (i = 0; i < TX_PENDED_QUEUE_LENGTH; i++) {
4362 /* We simply drop any SKBs that have been queued for
4363 * transmit */
4364 if (priv->tx_buffers[i].info.d_struct.txb) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004365 ieee80211_txb_free(priv->tx_buffers[i].info.d_struct.
4366 txb);
James Ketrenos2c86c272005-03-23 17:32:29 -06004367 priv->tx_buffers[i].info.d_struct.txb = NULL;
4368 }
4369
4370 list_add_tail(&priv->tx_buffers[i].list, &priv->tx_free_list);
4371 }
4372
4373 SET_STAT(&priv->tx_free_stat, i);
4374
4375 priv->tx_queue.oldest = 0;
4376 priv->tx_queue.available = priv->tx_queue.entries;
4377 priv->tx_queue.next = 0;
4378 INIT_STAT(&priv->txq_stat);
4379 SET_STAT(&priv->txq_stat, priv->tx_queue.available);
4380
4381 bd_queue_initialize(priv, &priv->tx_queue,
4382 IPW_MEM_HOST_SHARED_TX_QUEUE_BD_BASE,
4383 IPW_MEM_HOST_SHARED_TX_QUEUE_BD_SIZE,
4384 IPW_MEM_HOST_SHARED_TX_QUEUE_READ_INDEX,
4385 IPW_MEM_HOST_SHARED_TX_QUEUE_WRITE_INDEX);
4386
4387 IPW_DEBUG_INFO("exit\n");
4388
4389}
4390
4391static void ipw2100_tx_free(struct ipw2100_priv *priv)
4392{
4393 int i;
4394
4395 IPW_DEBUG_INFO("enter\n");
4396
4397 bd_queue_free(priv, &priv->tx_queue);
4398
4399 if (!priv->tx_buffers)
4400 return;
4401
4402 for (i = 0; i < TX_PENDED_QUEUE_LENGTH; i++) {
4403 if (priv->tx_buffers[i].info.d_struct.txb) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004404 ieee80211_txb_free(priv->tx_buffers[i].info.d_struct.
4405 txb);
James Ketrenos2c86c272005-03-23 17:32:29 -06004406 priv->tx_buffers[i].info.d_struct.txb = NULL;
4407 }
4408 if (priv->tx_buffers[i].info.d_struct.data)
James Ketrenosee8e3652005-09-14 09:47:29 -05004409 pci_free_consistent(priv->pci_dev,
4410 sizeof(struct ipw2100_data_header),
4411 priv->tx_buffers[i].info.d_struct.
4412 data,
4413 priv->tx_buffers[i].info.d_struct.
4414 data_phys);
James Ketrenos2c86c272005-03-23 17:32:29 -06004415 }
4416
4417 kfree(priv->tx_buffers);
4418 priv->tx_buffers = NULL;
4419
4420 IPW_DEBUG_INFO("exit\n");
4421}
4422
James Ketrenos2c86c272005-03-23 17:32:29 -06004423static int ipw2100_rx_allocate(struct ipw2100_priv *priv)
4424{
4425 int i, j, err = -EINVAL;
4426
4427 IPW_DEBUG_INFO("enter\n");
4428
4429 err = bd_queue_allocate(priv, &priv->rx_queue, RX_QUEUE_LENGTH);
4430 if (err) {
4431 IPW_DEBUG_INFO("failed bd_queue_allocate\n");
4432 return err;
4433 }
4434
4435 err = status_queue_allocate(priv, RX_QUEUE_LENGTH);
4436 if (err) {
4437 IPW_DEBUG_INFO("failed status_queue_allocate\n");
4438 bd_queue_free(priv, &priv->rx_queue);
4439 return err;
4440 }
4441
4442 /*
4443 * allocate packets
4444 */
4445 priv->rx_buffers = (struct ipw2100_rx_packet *)
4446 kmalloc(RX_QUEUE_LENGTH * sizeof(struct ipw2100_rx_packet),
4447 GFP_KERNEL);
4448 if (!priv->rx_buffers) {
4449 IPW_DEBUG_INFO("can't allocate rx packet buffer table\n");
4450
4451 bd_queue_free(priv, &priv->rx_queue);
4452
4453 status_queue_free(priv);
4454
4455 return -ENOMEM;
4456 }
4457
4458 for (i = 0; i < RX_QUEUE_LENGTH; i++) {
4459 struct ipw2100_rx_packet *packet = &priv->rx_buffers[i];
4460
4461 err = ipw2100_alloc_skb(priv, packet);
4462 if (unlikely(err)) {
4463 err = -ENOMEM;
4464 break;
4465 }
4466
4467 /* The BD holds the cache aligned address */
4468 priv->rx_queue.drv[i].host_addr = packet->dma_addr;
4469 priv->rx_queue.drv[i].buf_length = IPW_RX_NIC_BUFFER_LENGTH;
4470 priv->status_queue.drv[i].status_fields = 0;
4471 }
4472
4473 if (i == RX_QUEUE_LENGTH)
4474 return 0;
4475
4476 for (j = 0; j < i; j++) {
4477 pci_unmap_single(priv->pci_dev, priv->rx_buffers[j].dma_addr,
4478 sizeof(struct ipw2100_rx_packet),
4479 PCI_DMA_FROMDEVICE);
4480 dev_kfree_skb(priv->rx_buffers[j].skb);
4481 }
4482
4483 kfree(priv->rx_buffers);
4484 priv->rx_buffers = NULL;
4485
4486 bd_queue_free(priv, &priv->rx_queue);
4487
4488 status_queue_free(priv);
4489
4490 return err;
4491}
4492
4493static void ipw2100_rx_initialize(struct ipw2100_priv *priv)
4494{
4495 IPW_DEBUG_INFO("enter\n");
4496
4497 priv->rx_queue.oldest = 0;
4498 priv->rx_queue.available = priv->rx_queue.entries - 1;
4499 priv->rx_queue.next = priv->rx_queue.entries - 1;
4500
4501 INIT_STAT(&priv->rxq_stat);
4502 SET_STAT(&priv->rxq_stat, priv->rx_queue.available);
4503
4504 bd_queue_initialize(priv, &priv->rx_queue,
4505 IPW_MEM_HOST_SHARED_RX_BD_BASE,
4506 IPW_MEM_HOST_SHARED_RX_BD_SIZE,
4507 IPW_MEM_HOST_SHARED_RX_READ_INDEX,
4508 IPW_MEM_HOST_SHARED_RX_WRITE_INDEX);
4509
4510 /* set up the status queue */
4511 write_register(priv->net_dev, IPW_MEM_HOST_SHARED_RX_STATUS_BASE,
4512 priv->status_queue.nic);
4513
4514 IPW_DEBUG_INFO("exit\n");
4515}
4516
4517static void ipw2100_rx_free(struct ipw2100_priv *priv)
4518{
4519 int i;
4520
4521 IPW_DEBUG_INFO("enter\n");
4522
4523 bd_queue_free(priv, &priv->rx_queue);
4524 status_queue_free(priv);
4525
4526 if (!priv->rx_buffers)
4527 return;
4528
4529 for (i = 0; i < RX_QUEUE_LENGTH; i++) {
4530 if (priv->rx_buffers[i].rxp) {
4531 pci_unmap_single(priv->pci_dev,
4532 priv->rx_buffers[i].dma_addr,
4533 sizeof(struct ipw2100_rx),
4534 PCI_DMA_FROMDEVICE);
4535 dev_kfree_skb(priv->rx_buffers[i].skb);
4536 }
4537 }
4538
4539 kfree(priv->rx_buffers);
4540 priv->rx_buffers = NULL;
4541
4542 IPW_DEBUG_INFO("exit\n");
4543}
4544
4545static int ipw2100_read_mac_address(struct ipw2100_priv *priv)
4546{
4547 u32 length = ETH_ALEN;
4548 u8 mac[ETH_ALEN];
4549
4550 int err;
4551
James Ketrenosee8e3652005-09-14 09:47:29 -05004552 err = ipw2100_get_ordinal(priv, IPW_ORD_STAT_ADAPTER_MAC, mac, &length);
James Ketrenos2c86c272005-03-23 17:32:29 -06004553 if (err) {
4554 IPW_DEBUG_INFO("MAC address read failed\n");
4555 return -EIO;
4556 }
4557 IPW_DEBUG_INFO("card MAC is %02X:%02X:%02X:%02X:%02X:%02X\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05004558 mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]);
James Ketrenos2c86c272005-03-23 17:32:29 -06004559
4560 memcpy(priv->net_dev->dev_addr, mac, ETH_ALEN);
4561
4562 return 0;
4563}
4564
4565/********************************************************************
4566 *
4567 * Firmware Commands
4568 *
4569 ********************************************************************/
4570
Jiri Bencc4aee8c2005-08-25 20:04:43 -04004571static int ipw2100_set_mac_address(struct ipw2100_priv *priv, int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06004572{
4573 struct host_command cmd = {
4574 .host_command = ADAPTER_ADDRESS,
4575 .host_command_sequence = 0,
4576 .host_command_length = ETH_ALEN
4577 };
4578 int err;
4579
4580 IPW_DEBUG_HC("SET_MAC_ADDRESS\n");
4581
4582 IPW_DEBUG_INFO("enter\n");
4583
4584 if (priv->config & CFG_CUSTOM_MAC) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004585 memcpy(cmd.host_command_parameters, priv->mac_addr, ETH_ALEN);
James Ketrenos2c86c272005-03-23 17:32:29 -06004586 memcpy(priv->net_dev->dev_addr, priv->mac_addr, ETH_ALEN);
4587 } else
4588 memcpy(cmd.host_command_parameters, priv->net_dev->dev_addr,
4589 ETH_ALEN);
4590
4591 err = ipw2100_hw_send_command(priv, &cmd);
4592
4593 IPW_DEBUG_INFO("exit\n");
4594 return err;
4595}
4596
Jiri Bencc4aee8c2005-08-25 20:04:43 -04004597static int ipw2100_set_port_type(struct ipw2100_priv *priv, u32 port_type,
James Ketrenos2c86c272005-03-23 17:32:29 -06004598 int batch_mode)
4599{
4600 struct host_command cmd = {
4601 .host_command = PORT_TYPE,
4602 .host_command_sequence = 0,
4603 .host_command_length = sizeof(u32)
4604 };
4605 int err;
4606
4607 switch (port_type) {
4608 case IW_MODE_INFRA:
4609 cmd.host_command_parameters[0] = IPW_BSS;
4610 break;
4611 case IW_MODE_ADHOC:
4612 cmd.host_command_parameters[0] = IPW_IBSS;
4613 break;
4614 }
4615
4616 IPW_DEBUG_HC("PORT_TYPE: %s\n",
4617 port_type == IPW_IBSS ? "Ad-Hoc" : "Managed");
4618
4619 if (!batch_mode) {
4620 err = ipw2100_disable_adapter(priv);
4621 if (err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004622 printk(KERN_ERR DRV_NAME
4623 ": %s: Could not disable adapter %d\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06004624 priv->net_dev->name, err);
4625 return err;
4626 }
4627 }
4628
4629 /* send cmd to firmware */
4630 err = ipw2100_hw_send_command(priv, &cmd);
4631
4632 if (!batch_mode)
4633 ipw2100_enable_adapter(priv);
4634
4635 return err;
4636}
4637
Jiri Bencc4aee8c2005-08-25 20:04:43 -04004638static int ipw2100_set_channel(struct ipw2100_priv *priv, u32 channel,
4639 int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06004640{
4641 struct host_command cmd = {
4642 .host_command = CHANNEL,
4643 .host_command_sequence = 0,
4644 .host_command_length = sizeof(u32)
4645 };
4646 int err;
4647
4648 cmd.host_command_parameters[0] = channel;
4649
4650 IPW_DEBUG_HC("CHANNEL: %d\n", channel);
4651
4652 /* If BSS then we don't support channel selection */
4653 if (priv->ieee->iw_mode == IW_MODE_INFRA)
4654 return 0;
4655
4656 if ((channel != 0) &&
4657 ((channel < REG_MIN_CHANNEL) || (channel > REG_MAX_CHANNEL)))
4658 return -EINVAL;
4659
4660 if (!batch_mode) {
4661 err = ipw2100_disable_adapter(priv);
4662 if (err)
4663 return err;
4664 }
4665
4666 err = ipw2100_hw_send_command(priv, &cmd);
4667 if (err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004668 IPW_DEBUG_INFO("Failed to set channel to %d", channel);
James Ketrenos2c86c272005-03-23 17:32:29 -06004669 return err;
4670 }
4671
4672 if (channel)
4673 priv->config |= CFG_STATIC_CHANNEL;
4674 else
4675 priv->config &= ~CFG_STATIC_CHANNEL;
4676
4677 priv->channel = channel;
4678
4679 if (!batch_mode) {
4680 err = ipw2100_enable_adapter(priv);
4681 if (err)
4682 return err;
4683 }
4684
4685 return 0;
4686}
4687
Jiri Bencc4aee8c2005-08-25 20:04:43 -04004688static int ipw2100_system_config(struct ipw2100_priv *priv, int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06004689{
4690 struct host_command cmd = {
4691 .host_command = SYSTEM_CONFIG,
4692 .host_command_sequence = 0,
4693 .host_command_length = 12,
4694 };
4695 u32 ibss_mask, len = sizeof(u32);
4696 int err;
4697
4698 /* Set system configuration */
4699
4700 if (!batch_mode) {
4701 err = ipw2100_disable_adapter(priv);
4702 if (err)
4703 return err;
4704 }
4705
4706 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
4707 cmd.host_command_parameters[0] |= IPW_CFG_IBSS_AUTO_START;
4708
4709 cmd.host_command_parameters[0] |= IPW_CFG_IBSS_MASK |
James Ketrenosee8e3652005-09-14 09:47:29 -05004710 IPW_CFG_BSS_MASK | IPW_CFG_802_1x_ENABLE;
James Ketrenos2c86c272005-03-23 17:32:29 -06004711
4712 if (!(priv->config & CFG_LONG_PREAMBLE))
4713 cmd.host_command_parameters[0] |= IPW_CFG_PREAMBLE_AUTO;
4714
4715 err = ipw2100_get_ordinal(priv,
4716 IPW_ORD_EEPROM_IBSS_11B_CHANNELS,
James Ketrenosee8e3652005-09-14 09:47:29 -05004717 &ibss_mask, &len);
James Ketrenos2c86c272005-03-23 17:32:29 -06004718 if (err)
4719 ibss_mask = IPW_IBSS_11B_DEFAULT_MASK;
4720
4721 cmd.host_command_parameters[1] = REG_CHANNEL_MASK;
4722 cmd.host_command_parameters[2] = REG_CHANNEL_MASK & ibss_mask;
4723
4724 /* 11b only */
James Ketrenosee8e3652005-09-14 09:47:29 -05004725 /*cmd.host_command_parameters[0] |= DIVERSITY_ANTENNA_A; */
James Ketrenos2c86c272005-03-23 17:32:29 -06004726
4727 err = ipw2100_hw_send_command(priv, &cmd);
4728 if (err)
4729 return err;
4730
4731/* If IPv6 is configured in the kernel then we don't want to filter out all
4732 * of the multicast packets as IPv6 needs some. */
4733#if !defined(CONFIG_IPV6) && !defined(CONFIG_IPV6_MODULE)
4734 cmd.host_command = ADD_MULTICAST;
4735 cmd.host_command_sequence = 0;
4736 cmd.host_command_length = 0;
4737
4738 ipw2100_hw_send_command(priv, &cmd);
4739#endif
4740 if (!batch_mode) {
4741 err = ipw2100_enable_adapter(priv);
4742 if (err)
4743 return err;
4744 }
4745
4746 return 0;
4747}
4748
Jiri Bencc4aee8c2005-08-25 20:04:43 -04004749static int ipw2100_set_tx_rates(struct ipw2100_priv *priv, u32 rate,
4750 int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06004751{
4752 struct host_command cmd = {
4753 .host_command = BASIC_TX_RATES,
4754 .host_command_sequence = 0,
4755 .host_command_length = 4
4756 };
4757 int err;
4758
4759 cmd.host_command_parameters[0] = rate & TX_RATE_MASK;
4760
4761 if (!batch_mode) {
4762 err = ipw2100_disable_adapter(priv);
4763 if (err)
4764 return err;
4765 }
4766
4767 /* Set BASIC TX Rate first */
4768 ipw2100_hw_send_command(priv, &cmd);
4769
4770 /* Set TX Rate */
4771 cmd.host_command = TX_RATES;
4772 ipw2100_hw_send_command(priv, &cmd);
4773
4774 /* Set MSDU TX Rate */
4775 cmd.host_command = MSDU_TX_RATES;
4776 ipw2100_hw_send_command(priv, &cmd);
4777
4778 if (!batch_mode) {
4779 err = ipw2100_enable_adapter(priv);
4780 if (err)
4781 return err;
4782 }
4783
4784 priv->tx_rates = rate;
4785
4786 return 0;
4787}
4788
James Ketrenosee8e3652005-09-14 09:47:29 -05004789static int ipw2100_set_power_mode(struct ipw2100_priv *priv, int power_level)
James Ketrenos2c86c272005-03-23 17:32:29 -06004790{
4791 struct host_command cmd = {
4792 .host_command = POWER_MODE,
4793 .host_command_sequence = 0,
4794 .host_command_length = 4
4795 };
4796 int err;
4797
4798 cmd.host_command_parameters[0] = power_level;
4799
4800 err = ipw2100_hw_send_command(priv, &cmd);
4801 if (err)
4802 return err;
4803
4804 if (power_level == IPW_POWER_MODE_CAM)
4805 priv->power_mode = IPW_POWER_LEVEL(priv->power_mode);
4806 else
4807 priv->power_mode = IPW_POWER_ENABLED | power_level;
4808
4809#ifdef CONFIG_IPW2100_TX_POWER
James Ketrenosee8e3652005-09-14 09:47:29 -05004810 if (priv->port_type == IBSS && priv->adhoc_power != DFTL_IBSS_TX_POWER) {
James Ketrenos2c86c272005-03-23 17:32:29 -06004811 /* Set beacon interval */
4812 cmd.host_command = TX_POWER_INDEX;
James Ketrenosee8e3652005-09-14 09:47:29 -05004813 cmd.host_command_parameters[0] = (u32) priv->adhoc_power;
James Ketrenos2c86c272005-03-23 17:32:29 -06004814
4815 err = ipw2100_hw_send_command(priv, &cmd);
4816 if (err)
4817 return err;
4818 }
4819#endif
4820
4821 return 0;
4822}
4823
Jiri Bencc4aee8c2005-08-25 20:04:43 -04004824static int ipw2100_set_rts_threshold(struct ipw2100_priv *priv, u32 threshold)
James Ketrenos2c86c272005-03-23 17:32:29 -06004825{
4826 struct host_command cmd = {
4827 .host_command = RTS_THRESHOLD,
4828 .host_command_sequence = 0,
4829 .host_command_length = 4
4830 };
4831 int err;
4832
4833 if (threshold & RTS_DISABLED)
4834 cmd.host_command_parameters[0] = MAX_RTS_THRESHOLD;
4835 else
4836 cmd.host_command_parameters[0] = threshold & ~RTS_DISABLED;
4837
4838 err = ipw2100_hw_send_command(priv, &cmd);
4839 if (err)
4840 return err;
4841
4842 priv->rts_threshold = threshold;
4843
4844 return 0;
4845}
4846
4847#if 0
4848int ipw2100_set_fragmentation_threshold(struct ipw2100_priv *priv,
4849 u32 threshold, int batch_mode)
4850{
4851 struct host_command cmd = {
4852 .host_command = FRAG_THRESHOLD,
4853 .host_command_sequence = 0,
4854 .host_command_length = 4,
4855 .host_command_parameters[0] = 0,
4856 };
4857 int err;
4858
4859 if (!batch_mode) {
4860 err = ipw2100_disable_adapter(priv);
4861 if (err)
4862 return err;
4863 }
4864
4865 if (threshold == 0)
4866 threshold = DEFAULT_FRAG_THRESHOLD;
4867 else {
4868 threshold = max(threshold, MIN_FRAG_THRESHOLD);
4869 threshold = min(threshold, MAX_FRAG_THRESHOLD);
4870 }
4871
4872 cmd.host_command_parameters[0] = threshold;
4873
4874 IPW_DEBUG_HC("FRAG_THRESHOLD: %u\n", threshold);
4875
4876 err = ipw2100_hw_send_command(priv, &cmd);
4877
4878 if (!batch_mode)
4879 ipw2100_enable_adapter(priv);
4880
4881 if (!err)
4882 priv->frag_threshold = threshold;
4883
4884 return err;
4885}
4886#endif
4887
Jiri Bencc4aee8c2005-08-25 20:04:43 -04004888static int ipw2100_set_short_retry(struct ipw2100_priv *priv, u32 retry)
James Ketrenos2c86c272005-03-23 17:32:29 -06004889{
4890 struct host_command cmd = {
4891 .host_command = SHORT_RETRY_LIMIT,
4892 .host_command_sequence = 0,
4893 .host_command_length = 4
4894 };
4895 int err;
4896
4897 cmd.host_command_parameters[0] = retry;
4898
4899 err = ipw2100_hw_send_command(priv, &cmd);
4900 if (err)
4901 return err;
4902
4903 priv->short_retry_limit = retry;
4904
4905 return 0;
4906}
4907
Jiri Bencc4aee8c2005-08-25 20:04:43 -04004908static int ipw2100_set_long_retry(struct ipw2100_priv *priv, u32 retry)
James Ketrenos2c86c272005-03-23 17:32:29 -06004909{
4910 struct host_command cmd = {
4911 .host_command = LONG_RETRY_LIMIT,
4912 .host_command_sequence = 0,
4913 .host_command_length = 4
4914 };
4915 int err;
4916
4917 cmd.host_command_parameters[0] = retry;
4918
4919 err = ipw2100_hw_send_command(priv, &cmd);
4920 if (err)
4921 return err;
4922
4923 priv->long_retry_limit = retry;
4924
4925 return 0;
4926}
4927
James Ketrenosee8e3652005-09-14 09:47:29 -05004928static int ipw2100_set_mandatory_bssid(struct ipw2100_priv *priv, u8 * bssid,
Jiri Bencc4aee8c2005-08-25 20:04:43 -04004929 int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06004930{
4931 struct host_command cmd = {
4932 .host_command = MANDATORY_BSSID,
4933 .host_command_sequence = 0,
4934 .host_command_length = (bssid == NULL) ? 0 : ETH_ALEN
4935 };
4936 int err;
4937
4938#ifdef CONFIG_IPW_DEBUG
4939 if (bssid != NULL)
James Ketrenosee8e3652005-09-14 09:47:29 -05004940 IPW_DEBUG_HC("MANDATORY_BSSID: %02X:%02X:%02X:%02X:%02X:%02X\n",
4941 bssid[0], bssid[1], bssid[2], bssid[3], bssid[4],
4942 bssid[5]);
James Ketrenos2c86c272005-03-23 17:32:29 -06004943 else
4944 IPW_DEBUG_HC("MANDATORY_BSSID: <clear>\n");
4945#endif
4946 /* if BSSID is empty then we disable mandatory bssid mode */
4947 if (bssid != NULL)
James Ketrenosee8e3652005-09-14 09:47:29 -05004948 memcpy((u8 *) cmd.host_command_parameters, bssid, ETH_ALEN);
James Ketrenos2c86c272005-03-23 17:32:29 -06004949
4950 if (!batch_mode) {
4951 err = ipw2100_disable_adapter(priv);
4952 if (err)
4953 return err;
4954 }
4955
4956 err = ipw2100_hw_send_command(priv, &cmd);
4957
4958 if (!batch_mode)
4959 ipw2100_enable_adapter(priv);
4960
4961 return err;
4962}
4963
4964#ifdef CONFIG_IEEE80211_WPA
4965static int ipw2100_disassociate_bssid(struct ipw2100_priv *priv)
4966{
4967 struct host_command cmd = {
4968 .host_command = DISASSOCIATION_BSSID,
4969 .host_command_sequence = 0,
4970 .host_command_length = ETH_ALEN
4971 };
4972 int err;
4973 int len;
4974
4975 IPW_DEBUG_HC("DISASSOCIATION_BSSID\n");
4976
4977 len = ETH_ALEN;
4978 /* The Firmware currently ignores the BSSID and just disassociates from
4979 * the currently associated AP -- but in the off chance that a future
4980 * firmware does use the BSSID provided here, we go ahead and try and
4981 * set it to the currently associated AP's BSSID */
4982 memcpy(cmd.host_command_parameters, priv->bssid, ETH_ALEN);
4983
4984 err = ipw2100_hw_send_command(priv, &cmd);
4985
4986 return err;
4987}
4988#endif
4989
4990/*
4991 * Pseudo code for setting up wpa_frame:
4992 */
4993#if 0
4994void x(struct ieee80211_assoc_frame *wpa_assoc)
4995{
4996 struct ipw2100_wpa_assoc_frame frame;
4997 frame->fixed_ie_mask = IPW_WPA_CAPABILTIES |
James Ketrenosee8e3652005-09-14 09:47:29 -05004998 IPW_WPA_LISTENINTERVAL | IPW_WPA_AP_ADDRESS;
James Ketrenos2c86c272005-03-23 17:32:29 -06004999 frame->capab_info = wpa_assoc->capab_info;
5000 frame->lisen_interval = wpa_assoc->listent_interval;
5001 memcpy(frame->current_ap, wpa_assoc->current_ap, ETH_ALEN);
5002
5003 /* UNKNOWN -- I'm not postivive about this part; don't have any WPA
5004 * setup here to test it with.
5005 *
5006 * Walk the IEs in the wpa_assoc and figure out the total size of all
5007 * that data. Stick that into frame->var_ie_len. Then memcpy() all of
5008 * the IEs from wpa_frame into frame.
5009 */
5010 frame->var_ie_len = calculate_ie_len(wpa_assoc);
James Ketrenosee8e3652005-09-14 09:47:29 -05005011 memcpy(frame->var_ie, wpa_assoc->variable, frame->var_ie_len);
James Ketrenos2c86c272005-03-23 17:32:29 -06005012
5013 ipw2100_set_wpa_ie(priv, &frame, 0);
5014}
5015#endif
5016
James Ketrenos2c86c272005-03-23 17:32:29 -06005017static int ipw2100_set_wpa_ie(struct ipw2100_priv *,
5018 struct ipw2100_wpa_assoc_frame *, int)
James Ketrenosee8e3652005-09-14 09:47:29 -05005019 __attribute__ ((unused));
James Ketrenos2c86c272005-03-23 17:32:29 -06005020
5021static int ipw2100_set_wpa_ie(struct ipw2100_priv *priv,
5022 struct ipw2100_wpa_assoc_frame *wpa_frame,
5023 int batch_mode)
5024{
5025 struct host_command cmd = {
5026 .host_command = SET_WPA_IE,
5027 .host_command_sequence = 0,
5028 .host_command_length = sizeof(struct ipw2100_wpa_assoc_frame),
5029 };
5030 int err;
5031
5032 IPW_DEBUG_HC("SET_WPA_IE\n");
5033
5034 if (!batch_mode) {
5035 err = ipw2100_disable_adapter(priv);
5036 if (err)
5037 return err;
5038 }
5039
5040 memcpy(cmd.host_command_parameters, wpa_frame,
5041 sizeof(struct ipw2100_wpa_assoc_frame));
5042
5043 err = ipw2100_hw_send_command(priv, &cmd);
5044
5045 if (!batch_mode) {
5046 if (ipw2100_enable_adapter(priv))
5047 err = -EIO;
5048 }
5049
5050 return err;
5051}
5052
5053struct security_info_params {
5054 u32 allowed_ciphers;
5055 u16 version;
5056 u8 auth_mode;
5057 u8 replay_counters_number;
5058 u8 unicast_using_group;
5059} __attribute__ ((packed));
5060
Jiri Bencc4aee8c2005-08-25 20:04:43 -04005061static int ipw2100_set_security_information(struct ipw2100_priv *priv,
5062 int auth_mode,
5063 int security_level,
5064 int unicast_using_group,
5065 int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06005066{
5067 struct host_command cmd = {
5068 .host_command = SET_SECURITY_INFORMATION,
5069 .host_command_sequence = 0,
5070 .host_command_length = sizeof(struct security_info_params)
5071 };
5072 struct security_info_params *security =
James Ketrenosee8e3652005-09-14 09:47:29 -05005073 (struct security_info_params *)&cmd.host_command_parameters;
James Ketrenos2c86c272005-03-23 17:32:29 -06005074 int err;
5075 memset(security, 0, sizeof(*security));
5076
5077 /* If shared key AP authentication is turned on, then we need to
5078 * configure the firmware to try and use it.
5079 *
5080 * Actual data encryption/decryption is handled by the host. */
5081 security->auth_mode = auth_mode;
5082 security->unicast_using_group = unicast_using_group;
5083
5084 switch (security_level) {
5085 default:
5086 case SEC_LEVEL_0:
5087 security->allowed_ciphers = IPW_NONE_CIPHER;
5088 break;
5089 case SEC_LEVEL_1:
5090 security->allowed_ciphers = IPW_WEP40_CIPHER |
James Ketrenosee8e3652005-09-14 09:47:29 -05005091 IPW_WEP104_CIPHER;
James Ketrenos2c86c272005-03-23 17:32:29 -06005092 break;
5093 case SEC_LEVEL_2:
5094 security->allowed_ciphers = IPW_WEP40_CIPHER |
James Ketrenosee8e3652005-09-14 09:47:29 -05005095 IPW_WEP104_CIPHER | IPW_TKIP_CIPHER;
James Ketrenos2c86c272005-03-23 17:32:29 -06005096 break;
5097 case SEC_LEVEL_2_CKIP:
5098 security->allowed_ciphers = IPW_WEP40_CIPHER |
James Ketrenosee8e3652005-09-14 09:47:29 -05005099 IPW_WEP104_CIPHER | IPW_CKIP_CIPHER;
James Ketrenos2c86c272005-03-23 17:32:29 -06005100 break;
5101 case SEC_LEVEL_3:
5102 security->allowed_ciphers = IPW_WEP40_CIPHER |
James Ketrenosee8e3652005-09-14 09:47:29 -05005103 IPW_WEP104_CIPHER | IPW_TKIP_CIPHER | IPW_CCMP_CIPHER;
James Ketrenos2c86c272005-03-23 17:32:29 -06005104 break;
5105 }
5106
James Ketrenosee8e3652005-09-14 09:47:29 -05005107 IPW_DEBUG_HC
5108 ("SET_SECURITY_INFORMATION: auth:%d cipher:0x%02X (level %d)\n",
5109 security->auth_mode, security->allowed_ciphers, security_level);
James Ketrenos2c86c272005-03-23 17:32:29 -06005110
5111 security->replay_counters_number = 0;
5112
5113 if (!batch_mode) {
5114 err = ipw2100_disable_adapter(priv);
5115 if (err)
5116 return err;
5117 }
5118
5119 err = ipw2100_hw_send_command(priv, &cmd);
5120
5121 if (!batch_mode)
5122 ipw2100_enable_adapter(priv);
5123
5124 return err;
5125}
5126
James Ketrenosee8e3652005-09-14 09:47:29 -05005127static int ipw2100_set_tx_power(struct ipw2100_priv *priv, u32 tx_power)
James Ketrenos2c86c272005-03-23 17:32:29 -06005128{
5129 struct host_command cmd = {
5130 .host_command = TX_POWER_INDEX,
5131 .host_command_sequence = 0,
5132 .host_command_length = 4
5133 };
5134 int err = 0;
5135
5136 cmd.host_command_parameters[0] = tx_power;
5137
5138 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
5139 err = ipw2100_hw_send_command(priv, &cmd);
5140 if (!err)
5141 priv->tx_power = tx_power;
5142
5143 return 0;
5144}
5145
Jiri Bencc4aee8c2005-08-25 20:04:43 -04005146static int ipw2100_set_ibss_beacon_interval(struct ipw2100_priv *priv,
5147 u32 interval, int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06005148{
5149 struct host_command cmd = {
5150 .host_command = BEACON_INTERVAL,
5151 .host_command_sequence = 0,
5152 .host_command_length = 4
5153 };
5154 int err;
5155
5156 cmd.host_command_parameters[0] = interval;
5157
5158 IPW_DEBUG_INFO("enter\n");
5159
5160 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
5161 if (!batch_mode) {
5162 err = ipw2100_disable_adapter(priv);
5163 if (err)
5164 return err;
5165 }
5166
5167 ipw2100_hw_send_command(priv, &cmd);
5168
5169 if (!batch_mode) {
5170 err = ipw2100_enable_adapter(priv);
5171 if (err)
5172 return err;
5173 }
5174 }
5175
5176 IPW_DEBUG_INFO("exit\n");
5177
5178 return 0;
5179}
5180
James Ketrenos2c86c272005-03-23 17:32:29 -06005181void ipw2100_queues_initialize(struct ipw2100_priv *priv)
5182{
5183 ipw2100_tx_initialize(priv);
5184 ipw2100_rx_initialize(priv);
5185 ipw2100_msg_initialize(priv);
5186}
5187
5188void ipw2100_queues_free(struct ipw2100_priv *priv)
5189{
5190 ipw2100_tx_free(priv);
5191 ipw2100_rx_free(priv);
5192 ipw2100_msg_free(priv);
5193}
5194
5195int ipw2100_queues_allocate(struct ipw2100_priv *priv)
5196{
5197 if (ipw2100_tx_allocate(priv) ||
James Ketrenosee8e3652005-09-14 09:47:29 -05005198 ipw2100_rx_allocate(priv) || ipw2100_msg_allocate(priv))
James Ketrenos2c86c272005-03-23 17:32:29 -06005199 goto fail;
5200
5201 return 0;
5202
James Ketrenosee8e3652005-09-14 09:47:29 -05005203 fail:
James Ketrenos2c86c272005-03-23 17:32:29 -06005204 ipw2100_tx_free(priv);
5205 ipw2100_rx_free(priv);
5206 ipw2100_msg_free(priv);
5207 return -ENOMEM;
5208}
5209
5210#define IPW_PRIVACY_CAPABLE 0x0008
5211
5212static int ipw2100_set_wep_flags(struct ipw2100_priv *priv, u32 flags,
5213 int batch_mode)
5214{
5215 struct host_command cmd = {
5216 .host_command = WEP_FLAGS,
5217 .host_command_sequence = 0,
5218 .host_command_length = 4
5219 };
5220 int err;
5221
5222 cmd.host_command_parameters[0] = flags;
5223
5224 IPW_DEBUG_HC("WEP_FLAGS: flags = 0x%08X\n", flags);
5225
5226 if (!batch_mode) {
5227 err = ipw2100_disable_adapter(priv);
5228 if (err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05005229 printk(KERN_ERR DRV_NAME
5230 ": %s: Could not disable adapter %d\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06005231 priv->net_dev->name, err);
5232 return err;
5233 }
5234 }
5235
5236 /* send cmd to firmware */
5237 err = ipw2100_hw_send_command(priv, &cmd);
5238
5239 if (!batch_mode)
5240 ipw2100_enable_adapter(priv);
5241
5242 return err;
5243}
5244
5245struct ipw2100_wep_key {
5246 u8 idx;
5247 u8 len;
5248 u8 key[13];
5249};
5250
5251/* Macros to ease up priting WEP keys */
5252#define WEP_FMT_64 "%02X%02X%02X%02X-%02X"
5253#define WEP_FMT_128 "%02X%02X%02X%02X-%02X%02X%02X%02X-%02X%02X%02X"
5254#define WEP_STR_64(x) x[0],x[1],x[2],x[3],x[4]
5255#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]
5256
James Ketrenos2c86c272005-03-23 17:32:29 -06005257/**
5258 * Set a the wep key
5259 *
5260 * @priv: struct to work on
5261 * @idx: index of the key we want to set
5262 * @key: ptr to the key data to set
5263 * @len: length of the buffer at @key
5264 * @batch_mode: FIXME perform the operation in batch mode, not
5265 * disabling the device.
5266 *
5267 * @returns 0 if OK, < 0 errno code on error.
5268 *
5269 * Fill out a command structure with the new wep key, length an
5270 * index and send it down the wire.
5271 */
5272static int ipw2100_set_key(struct ipw2100_priv *priv,
5273 int idx, char *key, int len, int batch_mode)
5274{
5275 int keylen = len ? (len <= 5 ? 5 : 13) : 0;
5276 struct host_command cmd = {
5277 .host_command = WEP_KEY_INFO,
5278 .host_command_sequence = 0,
5279 .host_command_length = sizeof(struct ipw2100_wep_key),
5280 };
James Ketrenosee8e3652005-09-14 09:47:29 -05005281 struct ipw2100_wep_key *wep_key = (void *)cmd.host_command_parameters;
James Ketrenos2c86c272005-03-23 17:32:29 -06005282 int err;
5283
5284 IPW_DEBUG_HC("WEP_KEY_INFO: index = %d, len = %d/%d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05005285 idx, keylen, len);
James Ketrenos2c86c272005-03-23 17:32:29 -06005286
5287 /* NOTE: We don't check cached values in case the firmware was reset
5288 * or some other problem is occuring. If the user is setting the key,
5289 * then we push the change */
5290
5291 wep_key->idx = idx;
5292 wep_key->len = keylen;
5293
5294 if (keylen) {
5295 memcpy(wep_key->key, key, len);
5296 memset(wep_key->key + len, 0, keylen - len);
5297 }
5298
5299 /* Will be optimized out on debug not being configured in */
5300 if (keylen == 0)
5301 IPW_DEBUG_WEP("%s: Clearing key %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05005302 priv->net_dev->name, wep_key->idx);
James Ketrenos2c86c272005-03-23 17:32:29 -06005303 else if (keylen == 5)
5304 IPW_DEBUG_WEP("%s: idx: %d, len: %d key: " WEP_FMT_64 "\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05005305 priv->net_dev->name, wep_key->idx, wep_key->len,
5306 WEP_STR_64(wep_key->key));
James Ketrenos2c86c272005-03-23 17:32:29 -06005307 else
5308 IPW_DEBUG_WEP("%s: idx: %d, len: %d key: " WEP_FMT_128
James Ketrenosee8e3652005-09-14 09:47:29 -05005309 "\n",
5310 priv->net_dev->name, wep_key->idx, wep_key->len,
5311 WEP_STR_128(wep_key->key));
James Ketrenos2c86c272005-03-23 17:32:29 -06005312
5313 if (!batch_mode) {
5314 err = ipw2100_disable_adapter(priv);
5315 /* FIXME: IPG: shouldn't this prink be in _disable_adapter()? */
5316 if (err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05005317 printk(KERN_ERR DRV_NAME
5318 ": %s: Could not disable adapter %d\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06005319 priv->net_dev->name, err);
5320 return err;
5321 }
5322 }
5323
5324 /* send cmd to firmware */
5325 err = ipw2100_hw_send_command(priv, &cmd);
5326
5327 if (!batch_mode) {
5328 int err2 = ipw2100_enable_adapter(priv);
5329 if (err == 0)
5330 err = err2;
5331 }
5332 return err;
5333}
5334
5335static int ipw2100_set_key_index(struct ipw2100_priv *priv,
5336 int idx, int batch_mode)
5337{
5338 struct host_command cmd = {
5339 .host_command = WEP_KEY_INDEX,
5340 .host_command_sequence = 0,
5341 .host_command_length = 4,
James Ketrenosee8e3652005-09-14 09:47:29 -05005342 .host_command_parameters = {idx},
James Ketrenos2c86c272005-03-23 17:32:29 -06005343 };
5344 int err;
5345
5346 IPW_DEBUG_HC("WEP_KEY_INDEX: index = %d\n", idx);
5347
5348 if (idx < 0 || idx > 3)
5349 return -EINVAL;
5350
5351 if (!batch_mode) {
5352 err = ipw2100_disable_adapter(priv);
5353 if (err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05005354 printk(KERN_ERR DRV_NAME
5355 ": %s: Could not disable adapter %d\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06005356 priv->net_dev->name, err);
5357 return err;
5358 }
5359 }
5360
5361 /* send cmd to firmware */
5362 err = ipw2100_hw_send_command(priv, &cmd);
5363
5364 if (!batch_mode)
5365 ipw2100_enable_adapter(priv);
5366
5367 return err;
5368}
5369
James Ketrenosee8e3652005-09-14 09:47:29 -05005370static int ipw2100_configure_security(struct ipw2100_priv *priv, int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06005371{
5372 int i, err, auth_mode, sec_level, use_group;
5373
5374 if (!(priv->status & STATUS_RUNNING))
5375 return 0;
5376
5377 if (!batch_mode) {
5378 err = ipw2100_disable_adapter(priv);
5379 if (err)
5380 return err;
5381 }
5382
5383 if (!priv->sec.enabled) {
James Ketrenosee8e3652005-09-14 09:47:29 -05005384 err =
5385 ipw2100_set_security_information(priv, IPW_AUTH_OPEN,
5386 SEC_LEVEL_0, 0, 1);
James Ketrenos2c86c272005-03-23 17:32:29 -06005387 } else {
5388 auth_mode = IPW_AUTH_OPEN;
5389 if ((priv->sec.flags & SEC_AUTH_MODE) &&
5390 (priv->sec.auth_mode == WLAN_AUTH_SHARED_KEY))
5391 auth_mode = IPW_AUTH_SHARED;
5392
5393 sec_level = SEC_LEVEL_0;
5394 if (priv->sec.flags & SEC_LEVEL)
5395 sec_level = priv->sec.level;
5396
5397 use_group = 0;
5398 if (priv->sec.flags & SEC_UNICAST_GROUP)
5399 use_group = priv->sec.unicast_uses_group;
5400
James Ketrenosee8e3652005-09-14 09:47:29 -05005401 err =
5402 ipw2100_set_security_information(priv, auth_mode, sec_level,
5403 use_group, 1);
James Ketrenos2c86c272005-03-23 17:32:29 -06005404 }
5405
5406 if (err)
5407 goto exit;
5408
5409 if (priv->sec.enabled) {
5410 for (i = 0; i < 4; i++) {
5411 if (!(priv->sec.flags & (1 << i))) {
5412 memset(priv->sec.keys[i], 0, WEP_KEY_LEN);
5413 priv->sec.key_sizes[i] = 0;
5414 } else {
5415 err = ipw2100_set_key(priv, i,
5416 priv->sec.keys[i],
5417 priv->sec.key_sizes[i],
5418 1);
5419 if (err)
5420 goto exit;
5421 }
5422 }
5423
5424 ipw2100_set_key_index(priv, priv->ieee->tx_keyidx, 1);
5425 }
5426
5427 /* Always enable privacy so the Host can filter WEP packets if
5428 * encrypted data is sent up */
James Ketrenosee8e3652005-09-14 09:47:29 -05005429 err =
5430 ipw2100_set_wep_flags(priv,
5431 priv->sec.enabled ? IPW_PRIVACY_CAPABLE : 0,
5432 1);
James Ketrenos2c86c272005-03-23 17:32:29 -06005433 if (err)
5434 goto exit;
5435
5436 priv->status &= ~STATUS_SECURITY_UPDATED;
5437
James Ketrenosee8e3652005-09-14 09:47:29 -05005438 exit:
James Ketrenos2c86c272005-03-23 17:32:29 -06005439 if (!batch_mode)
5440 ipw2100_enable_adapter(priv);
5441
5442 return err;
5443}
5444
5445static void ipw2100_security_work(struct ipw2100_priv *priv)
5446{
5447 /* If we happen to have reconnected before we get a chance to
5448 * process this, then update the security settings--which causes
5449 * a disassociation to occur */
5450 if (!(priv->status & STATUS_ASSOCIATED) &&
5451 priv->status & STATUS_SECURITY_UPDATED)
5452 ipw2100_configure_security(priv, 0);
5453}
5454
5455static void shim__set_security(struct net_device *dev,
5456 struct ieee80211_security *sec)
5457{
5458 struct ipw2100_priv *priv = ieee80211_priv(dev);
5459 int i, force_update = 0;
5460
5461 down(&priv->action_sem);
5462 if (!(priv->status & STATUS_INITIALIZED))
5463 goto done;
5464
5465 for (i = 0; i < 4; i++) {
5466 if (sec->flags & (1 << i)) {
5467 priv->sec.key_sizes[i] = sec->key_sizes[i];
5468 if (sec->key_sizes[i] == 0)
5469 priv->sec.flags &= ~(1 << i);
5470 else
5471 memcpy(priv->sec.keys[i], sec->keys[i],
5472 sec->key_sizes[i]);
5473 priv->sec.flags |= (1 << i);
5474 priv->status |= STATUS_SECURITY_UPDATED;
5475 }
5476 }
5477
5478 if ((sec->flags & SEC_ACTIVE_KEY) &&
5479 priv->sec.active_key != sec->active_key) {
5480 if (sec->active_key <= 3) {
5481 priv->sec.active_key = sec->active_key;
5482 priv->sec.flags |= SEC_ACTIVE_KEY;
5483 } else
5484 priv->sec.flags &= ~SEC_ACTIVE_KEY;
5485
5486 priv->status |= STATUS_SECURITY_UPDATED;
5487 }
5488
5489 if ((sec->flags & SEC_AUTH_MODE) &&
5490 (priv->sec.auth_mode != sec->auth_mode)) {
5491 priv->sec.auth_mode = sec->auth_mode;
5492 priv->sec.flags |= SEC_AUTH_MODE;
5493 priv->status |= STATUS_SECURITY_UPDATED;
5494 }
5495
James Ketrenosee8e3652005-09-14 09:47:29 -05005496 if (sec->flags & SEC_ENABLED && priv->sec.enabled != sec->enabled) {
James Ketrenos2c86c272005-03-23 17:32:29 -06005497 priv->sec.flags |= SEC_ENABLED;
5498 priv->sec.enabled = sec->enabled;
5499 priv->status |= STATUS_SECURITY_UPDATED;
5500 force_update = 1;
5501 }
5502
James Ketrenosee8e3652005-09-14 09:47:29 -05005503 if (sec->flags & SEC_LEVEL && priv->sec.level != sec->level) {
James Ketrenos2c86c272005-03-23 17:32:29 -06005504 priv->sec.level = sec->level;
5505 priv->sec.flags |= SEC_LEVEL;
5506 priv->status |= STATUS_SECURITY_UPDATED;
5507 }
5508
5509 IPW_DEBUG_WEP("Security flags: %c %c%c%c%c %c%c%c%c\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05005510 priv->sec.flags & (1 << 8) ? '1' : '0',
5511 priv->sec.flags & (1 << 7) ? '1' : '0',
5512 priv->sec.flags & (1 << 6) ? '1' : '0',
5513 priv->sec.flags & (1 << 5) ? '1' : '0',
5514 priv->sec.flags & (1 << 4) ? '1' : '0',
5515 priv->sec.flags & (1 << 3) ? '1' : '0',
5516 priv->sec.flags & (1 << 2) ? '1' : '0',
5517 priv->sec.flags & (1 << 1) ? '1' : '0',
5518 priv->sec.flags & (1 << 0) ? '1' : '0');
James Ketrenos2c86c272005-03-23 17:32:29 -06005519
5520/* As a temporary work around to enable WPA until we figure out why
5521 * wpa_supplicant toggles the security capability of the driver, which
5522 * forces a disassocation with force_update...
5523 *
5524 * if (force_update || !(priv->status & STATUS_ASSOCIATED))*/
5525 if (!(priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)))
5526 ipw2100_configure_security(priv, 0);
James Ketrenosee8e3652005-09-14 09:47:29 -05005527 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06005528 up(&priv->action_sem);
5529}
5530
5531static int ipw2100_adapter_setup(struct ipw2100_priv *priv)
5532{
5533 int err;
5534 int batch_mode = 1;
5535 u8 *bssid;
5536
5537 IPW_DEBUG_INFO("enter\n");
5538
5539 err = ipw2100_disable_adapter(priv);
5540 if (err)
5541 return err;
5542#ifdef CONFIG_IPW2100_MONITOR
5543 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
5544 err = ipw2100_set_channel(priv, priv->channel, batch_mode);
5545 if (err)
5546 return err;
5547
5548 IPW_DEBUG_INFO("exit\n");
5549
5550 return 0;
5551 }
James Ketrenosee8e3652005-09-14 09:47:29 -05005552#endif /* CONFIG_IPW2100_MONITOR */
James Ketrenos2c86c272005-03-23 17:32:29 -06005553
5554 err = ipw2100_read_mac_address(priv);
5555 if (err)
5556 return -EIO;
5557
5558 err = ipw2100_set_mac_address(priv, batch_mode);
5559 if (err)
5560 return err;
5561
5562 err = ipw2100_set_port_type(priv, priv->ieee->iw_mode, batch_mode);
5563 if (err)
5564 return err;
5565
5566 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
5567 err = ipw2100_set_channel(priv, priv->channel, batch_mode);
5568 if (err)
5569 return err;
5570 }
5571
James Ketrenosee8e3652005-09-14 09:47:29 -05005572 err = ipw2100_system_config(priv, batch_mode);
James Ketrenos2c86c272005-03-23 17:32:29 -06005573 if (err)
5574 return err;
5575
5576 err = ipw2100_set_tx_rates(priv, priv->tx_rates, batch_mode);
5577 if (err)
5578 return err;
5579
5580 /* Default to power mode OFF */
5581 err = ipw2100_set_power_mode(priv, IPW_POWER_MODE_CAM);
5582 if (err)
5583 return err;
5584
5585 err = ipw2100_set_rts_threshold(priv, priv->rts_threshold);
5586 if (err)
5587 return err;
5588
5589 if (priv->config & CFG_STATIC_BSSID)
5590 bssid = priv->bssid;
5591 else
5592 bssid = NULL;
5593 err = ipw2100_set_mandatory_bssid(priv, bssid, batch_mode);
5594 if (err)
5595 return err;
5596
5597 if (priv->config & CFG_STATIC_ESSID)
5598 err = ipw2100_set_essid(priv, priv->essid, priv->essid_len,
5599 batch_mode);
5600 else
5601 err = ipw2100_set_essid(priv, NULL, 0, batch_mode);
5602 if (err)
5603 return err;
5604
5605 err = ipw2100_configure_security(priv, batch_mode);
5606 if (err)
5607 return err;
5608
5609 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
James Ketrenosee8e3652005-09-14 09:47:29 -05005610 err =
5611 ipw2100_set_ibss_beacon_interval(priv,
5612 priv->beacon_interval,
5613 batch_mode);
James Ketrenos2c86c272005-03-23 17:32:29 -06005614 if (err)
5615 return err;
5616
5617 err = ipw2100_set_tx_power(priv, priv->tx_power);
5618 if (err)
5619 return err;
5620 }
5621
5622 /*
James Ketrenosee8e3652005-09-14 09:47:29 -05005623 err = ipw2100_set_fragmentation_threshold(
5624 priv, priv->frag_threshold, batch_mode);
5625 if (err)
5626 return err;
5627 */
James Ketrenos2c86c272005-03-23 17:32:29 -06005628
5629 IPW_DEBUG_INFO("exit\n");
5630
5631 return 0;
5632}
5633
James Ketrenos2c86c272005-03-23 17:32:29 -06005634/*************************************************************************
5635 *
5636 * EXTERNALLY CALLED METHODS
5637 *
5638 *************************************************************************/
5639
5640/* This method is called by the network layer -- not to be confused with
5641 * ipw2100_set_mac_address() declared above called by this driver (and this
5642 * method as well) to talk to the firmware */
5643static int ipw2100_set_address(struct net_device *dev, void *p)
5644{
5645 struct ipw2100_priv *priv = ieee80211_priv(dev);
5646 struct sockaddr *addr = p;
5647 int err = 0;
5648
5649 if (!is_valid_ether_addr(addr->sa_data))
5650 return -EADDRNOTAVAIL;
5651
5652 down(&priv->action_sem);
5653
5654 priv->config |= CFG_CUSTOM_MAC;
5655 memcpy(priv->mac_addr, addr->sa_data, ETH_ALEN);
5656
5657 err = ipw2100_set_mac_address(priv, 0);
5658 if (err)
5659 goto done;
5660
5661 priv->reset_backoff = 0;
5662 up(&priv->action_sem);
5663 ipw2100_reset_adapter(priv);
5664 return 0;
5665
James Ketrenosee8e3652005-09-14 09:47:29 -05005666 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06005667 up(&priv->action_sem);
5668 return err;
5669}
5670
5671static int ipw2100_open(struct net_device *dev)
5672{
5673 struct ipw2100_priv *priv = ieee80211_priv(dev);
5674 unsigned long flags;
5675 IPW_DEBUG_INFO("dev->open\n");
5676
5677 spin_lock_irqsave(&priv->low_lock, flags);
Jiri Benc3ce329c2005-08-25 20:07:01 -04005678 if (priv->status & STATUS_ASSOCIATED) {
5679 netif_carrier_on(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06005680 netif_start_queue(dev);
Jiri Benc3ce329c2005-08-25 20:07:01 -04005681 }
James Ketrenos2c86c272005-03-23 17:32:29 -06005682 spin_unlock_irqrestore(&priv->low_lock, flags);
5683
5684 return 0;
5685}
5686
5687static int ipw2100_close(struct net_device *dev)
5688{
5689 struct ipw2100_priv *priv = ieee80211_priv(dev);
5690 unsigned long flags;
5691 struct list_head *element;
5692 struct ipw2100_tx_packet *packet;
5693
5694 IPW_DEBUG_INFO("enter\n");
5695
5696 spin_lock_irqsave(&priv->low_lock, flags);
5697
5698 if (priv->status & STATUS_ASSOCIATED)
5699 netif_carrier_off(dev);
5700 netif_stop_queue(dev);
5701
5702 /* Flush the TX queue ... */
5703 while (!list_empty(&priv->tx_pend_list)) {
5704 element = priv->tx_pend_list.next;
James Ketrenosee8e3652005-09-14 09:47:29 -05005705 packet = list_entry(element, struct ipw2100_tx_packet, list);
James Ketrenos2c86c272005-03-23 17:32:29 -06005706
5707 list_del(element);
5708 DEC_STAT(&priv->tx_pend_stat);
5709
5710 ieee80211_txb_free(packet->info.d_struct.txb);
5711 packet->info.d_struct.txb = NULL;
5712
5713 list_add_tail(element, &priv->tx_free_list);
5714 INC_STAT(&priv->tx_free_stat);
5715 }
5716 spin_unlock_irqrestore(&priv->low_lock, flags);
5717
5718 IPW_DEBUG_INFO("exit\n");
5719
5720 return 0;
5721}
5722
James Ketrenos2c86c272005-03-23 17:32:29 -06005723/*
5724 * TODO: Fix this function... its just wrong
5725 */
5726static void ipw2100_tx_timeout(struct net_device *dev)
5727{
5728 struct ipw2100_priv *priv = ieee80211_priv(dev);
5729
5730 priv->ieee->stats.tx_errors++;
5731
5732#ifdef CONFIG_IPW2100_MONITOR
5733 if (priv->ieee->iw_mode == IW_MODE_MONITOR)
5734 return;
5735#endif
5736
5737 IPW_DEBUG_INFO("%s: TX timed out. Scheduling firmware restart.\n",
5738 dev->name);
5739 schedule_reset(priv);
5740}
5741
James Ketrenos2c86c272005-03-23 17:32:29 -06005742/*
5743 * TODO: reimplement it so that it reads statistics
5744 * from the adapter using ordinal tables
5745 * instead of/in addition to collecting them
5746 * in the driver
5747 */
5748static struct net_device_stats *ipw2100_stats(struct net_device *dev)
5749{
5750 struct ipw2100_priv *priv = ieee80211_priv(dev);
5751
5752 return &priv->ieee->stats;
5753}
5754
5755/* Support for wpa_supplicant. Will be replaced with WEXT once
5756 * they get WPA support. */
5757#ifdef CONFIG_IEEE80211_WPA
5758
5759/* following definitions must match definitions in driver_ipw2100.c */
5760
5761#define IPW2100_IOCTL_WPA_SUPPLICANT SIOCIWFIRSTPRIV+30
5762
5763#define IPW2100_CMD_SET_WPA_PARAM 1
5764#define IPW2100_CMD_SET_WPA_IE 2
5765#define IPW2100_CMD_SET_ENCRYPTION 3
5766#define IPW2100_CMD_MLME 4
5767
5768#define IPW2100_PARAM_WPA_ENABLED 1
5769#define IPW2100_PARAM_TKIP_COUNTERMEASURES 2
5770#define IPW2100_PARAM_DROP_UNENCRYPTED 3
5771#define IPW2100_PARAM_PRIVACY_INVOKED 4
5772#define IPW2100_PARAM_AUTH_ALGS 5
5773#define IPW2100_PARAM_IEEE_802_1X 6
5774
5775#define IPW2100_MLME_STA_DEAUTH 1
5776#define IPW2100_MLME_STA_DISASSOC 2
5777
5778#define IPW2100_CRYPT_ERR_UNKNOWN_ALG 2
5779#define IPW2100_CRYPT_ERR_UNKNOWN_ADDR 3
5780#define IPW2100_CRYPT_ERR_CRYPT_INIT_FAILED 4
5781#define IPW2100_CRYPT_ERR_KEY_SET_FAILED 5
5782#define IPW2100_CRYPT_ERR_TX_KEY_SET_FAILED 6
5783#define IPW2100_CRYPT_ERR_CARD_CONF_FAILED 7
5784
5785#define IPW2100_CRYPT_ALG_NAME_LEN 16
5786
5787struct ipw2100_param {
5788 u32 cmd;
5789 u8 sta_addr[ETH_ALEN];
James Ketrenosee8e3652005-09-14 09:47:29 -05005790 union {
James Ketrenos2c86c272005-03-23 17:32:29 -06005791 struct {
5792 u8 name;
5793 u32 value;
5794 } wpa_param;
5795 struct {
5796 u32 len;
5797 u8 *data;
5798 } wpa_ie;
James Ketrenosee8e3652005-09-14 09:47:29 -05005799 struct {
James Ketrenos2c86c272005-03-23 17:32:29 -06005800 int command;
James Ketrenosee8e3652005-09-14 09:47:29 -05005801 int reason_code;
James Ketrenos2c86c272005-03-23 17:32:29 -06005802 } mlme;
5803 struct {
5804 u8 alg[IPW2100_CRYPT_ALG_NAME_LEN];
5805 u8 set_tx;
5806 u32 err;
5807 u8 idx;
James Ketrenosee8e3652005-09-14 09:47:29 -05005808 u8 seq[8]; /* sequence counter (set: RX, get: TX) */
James Ketrenos2c86c272005-03-23 17:32:29 -06005809 u16 key_len;
5810 u8 key[0];
5811 } crypt;
5812
5813 } u;
5814};
5815
5816/* end of driver_ipw2100.c code */
5817
James Ketrenosee8e3652005-09-14 09:47:29 -05005818static int ipw2100_wpa_enable(struct ipw2100_priv *priv, int value)
5819{
James Ketrenos2c86c272005-03-23 17:32:29 -06005820
5821 struct ieee80211_device *ieee = priv->ieee;
5822 struct ieee80211_security sec = {
5823 .flags = SEC_LEVEL | SEC_ENABLED,
5824 };
5825 int ret = 0;
5826
5827 ieee->wpa_enabled = value;
5828
James Ketrenosee8e3652005-09-14 09:47:29 -05005829 if (value) {
James Ketrenos2c86c272005-03-23 17:32:29 -06005830 sec.level = SEC_LEVEL_3;
5831 sec.enabled = 1;
5832 } else {
5833 sec.level = SEC_LEVEL_0;
5834 sec.enabled = 0;
5835 }
5836
5837 if (ieee->set_security)
5838 ieee->set_security(ieee->dev, &sec);
5839 else
5840 ret = -EOPNOTSUPP;
5841
5842 return ret;
5843}
5844
5845#define AUTH_ALG_OPEN_SYSTEM 0x1
5846#define AUTH_ALG_SHARED_KEY 0x2
5847
James Ketrenosee8e3652005-09-14 09:47:29 -05005848static int ipw2100_wpa_set_auth_algs(struct ipw2100_priv *priv, int value)
5849{
James Ketrenos2c86c272005-03-23 17:32:29 -06005850
5851 struct ieee80211_device *ieee = priv->ieee;
5852 struct ieee80211_security sec = {
5853 .flags = SEC_AUTH_MODE,
5854 };
5855 int ret = 0;
5856
James Ketrenosee8e3652005-09-14 09:47:29 -05005857 if (value & AUTH_ALG_SHARED_KEY) {
James Ketrenos2c86c272005-03-23 17:32:29 -06005858 sec.auth_mode = WLAN_AUTH_SHARED_KEY;
5859 ieee->open_wep = 0;
5860 } else {
5861 sec.auth_mode = WLAN_AUTH_OPEN;
5862 ieee->open_wep = 1;
5863 }
5864
5865 if (ieee->set_security)
5866 ieee->set_security(ieee->dev, &sec);
5867 else
5868 ret = -EOPNOTSUPP;
5869
5870 return ret;
5871}
5872
James Ketrenosee8e3652005-09-14 09:47:29 -05005873static int ipw2100_wpa_set_param(struct net_device *dev, u8 name, u32 value)
5874{
James Ketrenos2c86c272005-03-23 17:32:29 -06005875
5876 struct ipw2100_priv *priv = ieee80211_priv(dev);
James Ketrenosee8e3652005-09-14 09:47:29 -05005877 int ret = 0;
James Ketrenos2c86c272005-03-23 17:32:29 -06005878
James Ketrenosee8e3652005-09-14 09:47:29 -05005879 switch (name) {
5880 case IPW2100_PARAM_WPA_ENABLED:
5881 ret = ipw2100_wpa_enable(priv, value);
5882 break;
James Ketrenos2c86c272005-03-23 17:32:29 -06005883
James Ketrenosee8e3652005-09-14 09:47:29 -05005884 case IPW2100_PARAM_TKIP_COUNTERMEASURES:
5885 priv->ieee->tkip_countermeasures = value;
5886 break;
James Ketrenos2c86c272005-03-23 17:32:29 -06005887
James Ketrenosee8e3652005-09-14 09:47:29 -05005888 case IPW2100_PARAM_DROP_UNENCRYPTED:
5889 priv->ieee->drop_unencrypted = value;
5890 break;
James Ketrenos2c86c272005-03-23 17:32:29 -06005891
James Ketrenosee8e3652005-09-14 09:47:29 -05005892 case IPW2100_PARAM_PRIVACY_INVOKED:
5893 priv->ieee->privacy_invoked = value;
5894 break;
James Ketrenos2c86c272005-03-23 17:32:29 -06005895
James Ketrenosee8e3652005-09-14 09:47:29 -05005896 case IPW2100_PARAM_AUTH_ALGS:
5897 ret = ipw2100_wpa_set_auth_algs(priv, value);
5898 break;
James Ketrenos2c86c272005-03-23 17:32:29 -06005899
James Ketrenosee8e3652005-09-14 09:47:29 -05005900 case IPW2100_PARAM_IEEE_802_1X:
5901 priv->ieee->ieee802_1x = value;
5902 break;
James Ketrenos2c86c272005-03-23 17:32:29 -06005903
James Ketrenosee8e3652005-09-14 09:47:29 -05005904 default:
5905 printk(KERN_ERR DRV_NAME ": %s: Unknown WPA param: %d\n",
5906 dev->name, name);
5907 ret = -EOPNOTSUPP;
James Ketrenos2c86c272005-03-23 17:32:29 -06005908 }
5909
5910 return ret;
5911}
5912
James Ketrenosee8e3652005-09-14 09:47:29 -05005913static int ipw2100_wpa_mlme(struct net_device *dev, int command, int reason)
5914{
James Ketrenos2c86c272005-03-23 17:32:29 -06005915
5916 struct ipw2100_priv *priv = ieee80211_priv(dev);
James Ketrenosee8e3652005-09-14 09:47:29 -05005917 int ret = 0;
James Ketrenos2c86c272005-03-23 17:32:29 -06005918
James Ketrenosee8e3652005-09-14 09:47:29 -05005919 switch (command) {
5920 case IPW2100_MLME_STA_DEAUTH:
5921 // silently ignore
5922 break;
James Ketrenos2c86c272005-03-23 17:32:29 -06005923
James Ketrenosee8e3652005-09-14 09:47:29 -05005924 case IPW2100_MLME_STA_DISASSOC:
5925 ipw2100_disassociate_bssid(priv);
5926 break;
James Ketrenos2c86c272005-03-23 17:32:29 -06005927
James Ketrenosee8e3652005-09-14 09:47:29 -05005928 default:
5929 printk(KERN_ERR DRV_NAME ": %s: Unknown MLME request: %d\n",
5930 dev->name, command);
5931 ret = -EOPNOTSUPP;
James Ketrenos2c86c272005-03-23 17:32:29 -06005932 }
5933
5934 return ret;
5935}
5936
James Ketrenos2c86c272005-03-23 17:32:29 -06005937void ipw2100_wpa_assoc_frame(struct ipw2100_priv *priv,
James Ketrenosee8e3652005-09-14 09:47:29 -05005938 char *wpa_ie, int wpa_ie_len)
5939{
James Ketrenos2c86c272005-03-23 17:32:29 -06005940
5941 struct ipw2100_wpa_assoc_frame frame;
5942
5943 frame.fixed_ie_mask = 0;
5944
5945 /* copy WPA IE */
5946 memcpy(frame.var_ie, wpa_ie, wpa_ie_len);
5947 frame.var_ie_len = wpa_ie_len;
5948
5949 /* make sure WPA is enabled */
5950 ipw2100_wpa_enable(priv, 1);
5951 ipw2100_set_wpa_ie(priv, &frame, 0);
5952}
5953
James Ketrenos2c86c272005-03-23 17:32:29 -06005954static 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
5998 int ret = 0;
5999 struct ipw2100_priv *priv = ieee80211_priv(dev);
6000 struct ieee80211_device *ieee = priv->ieee;
6001 struct ieee80211_crypto_ops *ops;
6002 struct ieee80211_crypt_data **crypt;
6003
6004 struct ieee80211_security sec = {
6005 .flags = 0,
6006 };
6007
6008 param->u.crypt.err = 0;
6009 param->u.crypt.alg[IPW2100_CRYPT_ALG_NAME_LEN - 1] = '\0';
6010
6011 if (param_len !=
James Ketrenosee8e3652005-09-14 09:47:29 -05006012 (int)((char *)param->u.crypt.key - (char *)param) +
6013 param->u.crypt.key_len) {
6014 IPW_DEBUG_INFO("Len mismatch %d, %d\n", param_len,
6015 param->u.crypt.key_len);
James Ketrenos2c86c272005-03-23 17:32:29 -06006016 return -EINVAL;
6017 }
6018 if (param->sta_addr[0] == 0xff && param->sta_addr[1] == 0xff &&
6019 param->sta_addr[2] == 0xff && param->sta_addr[3] == 0xff &&
6020 param->sta_addr[4] == 0xff && param->sta_addr[5] == 0xff) {
6021 if (param->u.crypt.idx >= WEP_KEYS)
6022 return -EINVAL;
6023 crypt = &ieee->crypt[param->u.crypt.idx];
6024 } else {
6025 return -EINVAL;
6026 }
6027
6028 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;
6031 sec.level = SEC_LEVEL_0;
6032 sec.flags |= SEC_ENABLED | SEC_LEVEL;
6033 ieee80211_crypt_delayed_deinit(ieee, crypt);
6034 }
6035 goto done;
6036 }
6037 sec.enabled = 1;
6038 sec.flags |= SEC_ENABLED;
6039
6040 ops = ieee80211_get_crypto_ops(param->u.crypt.alg);
6041 if (ops == NULL && strcmp(param->u.crypt.alg, "WEP") == 0) {
6042 request_module("ieee80211_crypt_wep");
6043 ops = ieee80211_get_crypto_ops(param->u.crypt.alg);
6044 } else if (ops == NULL && strcmp(param->u.crypt.alg, "TKIP") == 0) {
6045 request_module("ieee80211_crypt_tkip");
6046 ops = ieee80211_get_crypto_ops(param->u.crypt.alg);
6047 } else if (ops == NULL && strcmp(param->u.crypt.alg, "CCMP") == 0) {
6048 request_module("ieee80211_crypt_ccmp");
6049 ops = ieee80211_get_crypto_ops(param->u.crypt.alg);
6050 }
6051 if (ops == NULL) {
6052 IPW_DEBUG_INFO("%s: unknown crypto alg '%s'\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05006053 dev->name, param->u.crypt.alg);
James Ketrenos2c86c272005-03-23 17:32:29 -06006054 param->u.crypt.err = IPW2100_CRYPT_ERR_UNKNOWN_ALG;
6055 ret = -EINVAL;
6056 goto done;
6057 }
6058
6059 if (*crypt == NULL || (*crypt)->ops != ops) {
6060 struct ieee80211_crypt_data *new_crypt;
6061
6062 ieee80211_crypt_delayed_deinit(ieee, crypt);
6063
6064 new_crypt = (struct ieee80211_crypt_data *)
James Ketrenosee8e3652005-09-14 09:47:29 -05006065 kmalloc(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 }
6070 memset(new_crypt, 0, sizeof(struct ieee80211_crypt_data));
6071 new_crypt->ops = ops;
6072 if (new_crypt->ops && try_module_get(new_crypt->ops->owner))
James Ketrenosee8e3652005-09-14 09:47:29 -05006073 new_crypt->priv =
6074 new_crypt->ops->init(param->u.crypt.idx);
James Ketrenos2c86c272005-03-23 17:32:29 -06006075
6076 if (new_crypt->priv == NULL) {
6077 kfree(new_crypt);
6078 param->u.crypt.err =
James Ketrenosee8e3652005-09-14 09:47:29 -05006079 IPW2100_CRYPT_ERR_CRYPT_INIT_FAILED;
James Ketrenos2c86c272005-03-23 17:32:29 -06006080 ret = -EINVAL;
6081 goto done;
6082 }
6083
6084 *crypt = new_crypt;
6085 }
6086
6087 if (param->u.crypt.key_len > 0 && (*crypt)->ops->set_key &&
6088 (*crypt)->ops->set_key(param->u.crypt.key,
6089 param->u.crypt.key_len, param->u.crypt.seq,
6090 (*crypt)->priv) < 0) {
James Ketrenosee8e3652005-09-14 09:47:29 -05006091 IPW_DEBUG_INFO("%s: key setting failed\n", dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06006092 param->u.crypt.err = IPW2100_CRYPT_ERR_KEY_SET_FAILED;
6093 ret = -EINVAL;
6094 goto done;
6095 }
6096
James Ketrenosee8e3652005-09-14 09:47:29 -05006097 if (param->u.crypt.set_tx) {
James Ketrenos2c86c272005-03-23 17:32:29 -06006098 ieee->tx_keyidx = param->u.crypt.idx;
6099 sec.active_key = param->u.crypt.idx;
6100 sec.flags |= SEC_ACTIVE_KEY;
6101 }
6102
James Ketrenosee8e3652005-09-14 09:47:29 -05006103 if (ops->name != NULL) {
James Ketrenos2c86c272005-03-23 17:32:29 -06006104
6105 if (strcmp(ops->name, "WEP") == 0) {
James Ketrenosee8e3652005-09-14 09:47:29 -05006106 memcpy(sec.keys[param->u.crypt.idx], param->u.crypt.key,
6107 param->u.crypt.key_len);
6108 sec.key_sizes[param->u.crypt.idx] =
6109 param->u.crypt.key_len;
James Ketrenos2c86c272005-03-23 17:32:29 -06006110 sec.flags |= (1 << param->u.crypt.idx);
6111 sec.flags |= SEC_LEVEL;
6112 sec.level = SEC_LEVEL_1;
6113 } else if (strcmp(ops->name, "TKIP") == 0) {
6114 sec.flags |= SEC_LEVEL;
6115 sec.level = SEC_LEVEL_2;
6116 } else if (strcmp(ops->name, "CCMP") == 0) {
6117 sec.flags |= SEC_LEVEL;
6118 sec.level = SEC_LEVEL_3;
6119 }
6120 }
James Ketrenosee8e3652005-09-14 09:47:29 -05006121 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06006122 if (ieee->set_security)
6123 ieee->set_security(ieee->dev, &sec);
6124
6125 /* Do not reset port if card is in Managed mode since resetting will
6126 * generate new IEEE 802.11 authentication which may end up in looping
6127 * with IEEE 802.1X. If your hardware requires a reset after WEP
6128 * configuration (for example... Prism2), implement the reset_port in
6129 * the callbacks structures used to initialize the 802.11 stack. */
6130 if (ieee->reset_on_keychange &&
6131 ieee->iw_mode != IW_MODE_INFRA &&
James Ketrenosee8e3652005-09-14 09:47:29 -05006132 ieee->reset_port && ieee->reset_port(dev)) {
James Ketrenos2c86c272005-03-23 17:32:29 -06006133 IPW_DEBUG_INFO("%s: reset_port failed\n", dev->name);
6134 param->u.crypt.err = IPW2100_CRYPT_ERR_CARD_CONF_FAILED;
6135 return -EINVAL;
6136 }
6137
6138 return ret;
6139}
6140
James Ketrenosee8e3652005-09-14 09:47:29 -05006141static int ipw2100_wpa_supplicant(struct net_device *dev, struct iw_point *p)
6142{
James Ketrenos2c86c272005-03-23 17:32:29 -06006143
6144 struct ipw2100_param *param;
James Ketrenosee8e3652005-09-14 09:47:29 -05006145 int ret = 0;
James Ketrenos2c86c272005-03-23 17:32:29 -06006146
6147 IPW_DEBUG_IOCTL("wpa_supplicant: len=%d\n", p->length);
6148
6149 if (p->length < sizeof(struct ipw2100_param) || !p->pointer)
6150 return -EINVAL;
6151
6152 param = (struct ipw2100_param *)kmalloc(p->length, GFP_KERNEL);
6153 if (param == NULL)
6154 return -ENOMEM;
6155
James Ketrenosee8e3652005-09-14 09:47:29 -05006156 if (copy_from_user(param, p->pointer, p->length)) {
James Ketrenos2c86c272005-03-23 17:32:29 -06006157 kfree(param);
6158 return -EFAULT;
6159 }
6160
James Ketrenosee8e3652005-09-14 09:47:29 -05006161 switch (param->cmd) {
James Ketrenos2c86c272005-03-23 17:32:29 -06006162
6163 case IPW2100_CMD_SET_WPA_PARAM:
6164 ret = ipw2100_wpa_set_param(dev, param->u.wpa_param.name,
6165 param->u.wpa_param.value);
6166 break;
6167
6168 case IPW2100_CMD_SET_WPA_IE:
6169 ret = ipw2100_wpa_set_wpa_ie(dev, param, p->length);
6170 break;
6171
6172 case IPW2100_CMD_SET_ENCRYPTION:
6173 ret = ipw2100_wpa_set_encryption(dev, param, p->length);
6174 break;
6175
6176 case IPW2100_CMD_MLME:
6177 ret = ipw2100_wpa_mlme(dev, param->u.mlme.command,
6178 param->u.mlme.reason_code);
6179 break;
6180
6181 default:
James Ketrenosee8e3652005-09-14 09:47:29 -05006182 printk(KERN_ERR DRV_NAME
6183 ": %s: Unknown WPA supplicant request: %d\n", dev->name,
6184 param->cmd);
James Ketrenos2c86c272005-03-23 17:32:29 -06006185 ret = -EOPNOTSUPP;
6186
6187 }
6188
6189 if (ret == 0 && copy_to_user(p->pointer, param, p->length))
6190 ret = -EFAULT;
6191
6192 kfree(param);
6193 return ret;
6194}
James Ketrenosee8e3652005-09-14 09:47:29 -05006195#endif /* CONFIG_IEEE80211_WPA */
James Ketrenos2c86c272005-03-23 17:32:29 -06006196
6197static int ipw2100_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
6198{
6199#ifdef CONFIG_IEEE80211_WPA
James Ketrenosee8e3652005-09-14 09:47:29 -05006200 struct iwreq *wrq = (struct iwreq *)rq;
6201 int ret = -1;
6202 switch (cmd) {
6203 case IPW2100_IOCTL_WPA_SUPPLICANT:
James Ketrenos2c86c272005-03-23 17:32:29 -06006204 ret = ipw2100_wpa_supplicant(dev, &wrq->u.data);
6205 return ret;
6206
James Ketrenosee8e3652005-09-14 09:47:29 -05006207 default:
James Ketrenos2c86c272005-03-23 17:32:29 -06006208 return -EOPNOTSUPP;
6209 }
6210
James Ketrenosee8e3652005-09-14 09:47:29 -05006211#endif /* CONFIG_IEEE80211_WPA */
James Ketrenos2c86c272005-03-23 17:32:29 -06006212
6213 return -EOPNOTSUPP;
6214}
6215
James Ketrenos2c86c272005-03-23 17:32:29 -06006216static void ipw_ethtool_get_drvinfo(struct net_device *dev,
6217 struct ethtool_drvinfo *info)
6218{
6219 struct ipw2100_priv *priv = ieee80211_priv(dev);
6220 char fw_ver[64], ucode_ver[64];
6221
6222 strcpy(info->driver, DRV_NAME);
6223 strcpy(info->version, DRV_VERSION);
6224
6225 ipw2100_get_fwversion(priv, fw_ver, sizeof(fw_ver));
6226 ipw2100_get_ucodeversion(priv, ucode_ver, sizeof(ucode_ver));
6227
6228 snprintf(info->fw_version, sizeof(info->fw_version), "%s:%d:%s",
6229 fw_ver, priv->eeprom_version, ucode_ver);
6230
6231 strcpy(info->bus_info, pci_name(priv->pci_dev));
6232}
6233
6234static u32 ipw2100_ethtool_get_link(struct net_device *dev)
6235{
James Ketrenosee8e3652005-09-14 09:47:29 -05006236 struct ipw2100_priv *priv = ieee80211_priv(dev);
6237 return (priv->status & STATUS_ASSOCIATED) ? 1 : 0;
James Ketrenos2c86c272005-03-23 17:32:29 -06006238}
6239
James Ketrenos2c86c272005-03-23 17:32:29 -06006240static struct ethtool_ops ipw2100_ethtool_ops = {
James Ketrenosee8e3652005-09-14 09:47:29 -05006241 .get_link = ipw2100_ethtool_get_link,
6242 .get_drvinfo = ipw_ethtool_get_drvinfo,
James Ketrenos2c86c272005-03-23 17:32:29 -06006243};
6244
6245static void ipw2100_hang_check(void *adapter)
6246{
6247 struct ipw2100_priv *priv = adapter;
6248 unsigned long flags;
6249 u32 rtc = 0xa5a5a5a5;
6250 u32 len = sizeof(rtc);
6251 int restart = 0;
6252
6253 spin_lock_irqsave(&priv->low_lock, flags);
6254
6255 if (priv->fatal_error != 0) {
6256 /* If fatal_error is set then we need to restart */
6257 IPW_DEBUG_INFO("%s: Hardware fatal error detected.\n",
6258 priv->net_dev->name);
6259
6260 restart = 1;
6261 } else if (ipw2100_get_ordinal(priv, IPW_ORD_RTC_TIME, &rtc, &len) ||
6262 (rtc == priv->last_rtc)) {
6263 /* Check if firmware is hung */
6264 IPW_DEBUG_INFO("%s: Firmware RTC stalled.\n",
6265 priv->net_dev->name);
6266
6267 restart = 1;
6268 }
6269
6270 if (restart) {
6271 /* Kill timer */
6272 priv->stop_hang_check = 1;
6273 priv->hangs++;
6274
6275 /* Restart the NIC */
6276 schedule_reset(priv);
6277 }
6278
6279 priv->last_rtc = rtc;
6280
6281 if (!priv->stop_hang_check)
6282 queue_delayed_work(priv->workqueue, &priv->hang_check, HZ / 2);
6283
6284 spin_unlock_irqrestore(&priv->low_lock, flags);
6285}
6286
James Ketrenos2c86c272005-03-23 17:32:29 -06006287static void ipw2100_rf_kill(void *adapter)
6288{
6289 struct ipw2100_priv *priv = adapter;
6290 unsigned long flags;
6291
6292 spin_lock_irqsave(&priv->low_lock, flags);
6293
6294 if (rf_kill_active(priv)) {
6295 IPW_DEBUG_RF_KILL("RF Kill active, rescheduling GPIO check\n");
6296 if (!priv->stop_rf_kill)
6297 queue_delayed_work(priv->workqueue, &priv->rf_kill, HZ);
6298 goto exit_unlock;
6299 }
6300
6301 /* RF Kill is now disabled, so bring the device back up */
6302
6303 if (!(priv->status & STATUS_RF_KILL_MASK)) {
6304 IPW_DEBUG_RF_KILL("HW RF Kill no longer active, restarting "
6305 "device\n");
6306 schedule_reset(priv);
6307 } else
6308 IPW_DEBUG_RF_KILL("HW RF Kill deactivated. SW RF Kill still "
6309 "enabled\n");
6310
James Ketrenosee8e3652005-09-14 09:47:29 -05006311 exit_unlock:
James Ketrenos2c86c272005-03-23 17:32:29 -06006312 spin_unlock_irqrestore(&priv->low_lock, flags);
6313}
6314
6315static void ipw2100_irq_tasklet(struct ipw2100_priv *priv);
6316
6317/* Look into using netdev destructor to shutdown ieee80211? */
6318
James Ketrenosee8e3652005-09-14 09:47:29 -05006319static struct net_device *ipw2100_alloc_device(struct pci_dev *pci_dev,
6320 void __iomem * base_addr,
6321 unsigned long mem_start,
6322 unsigned long mem_len)
James Ketrenos2c86c272005-03-23 17:32:29 -06006323{
6324 struct ipw2100_priv *priv;
6325 struct net_device *dev;
6326
6327 dev = alloc_ieee80211(sizeof(struct ipw2100_priv));
6328 if (!dev)
6329 return NULL;
6330 priv = ieee80211_priv(dev);
6331 priv->ieee = netdev_priv(dev);
6332 priv->pci_dev = pci_dev;
6333 priv->net_dev = dev;
6334
6335 priv->ieee->hard_start_xmit = ipw2100_tx;
6336 priv->ieee->set_security = shim__set_security;
6337
6338 dev->open = ipw2100_open;
6339 dev->stop = ipw2100_close;
6340 dev->init = ipw2100_net_init;
6341 dev->do_ioctl = ipw2100_ioctl;
6342 dev->get_stats = ipw2100_stats;
6343 dev->ethtool_ops = &ipw2100_ethtool_ops;
6344 dev->tx_timeout = ipw2100_tx_timeout;
6345 dev->wireless_handlers = &ipw2100_wx_handler_def;
6346 dev->get_wireless_stats = ipw2100_wx_wireless_stats;
6347 dev->set_mac_address = ipw2100_set_address;
James Ketrenosee8e3652005-09-14 09:47:29 -05006348 dev->watchdog_timeo = 3 * HZ;
James Ketrenos2c86c272005-03-23 17:32:29 -06006349 dev->irq = 0;
6350
6351 dev->base_addr = (unsigned long)base_addr;
6352 dev->mem_start = mem_start;
6353 dev->mem_end = dev->mem_start + mem_len - 1;
6354
6355 /* NOTE: We don't use the wireless_handlers hook
6356 * in dev as the system will start throwing WX requests
6357 * to us before we're actually initialized and it just
6358 * ends up causing problems. So, we just handle
6359 * the WX extensions through the ipw2100_ioctl interface */
6360
James Ketrenos2c86c272005-03-23 17:32:29 -06006361 /* memset() puts everything to 0, so we only have explicitely set
6362 * those values that need to be something else */
6363
6364 /* If power management is turned on, default to AUTO mode */
6365 priv->power_mode = IPW_POWER_AUTO;
6366
James Ketrenos2c86c272005-03-23 17:32:29 -06006367#ifdef CONFIG_IEEE80211_WPA
6368 priv->ieee->wpa_enabled = 0;
6369 priv->ieee->tkip_countermeasures = 0;
6370 priv->ieee->drop_unencrypted = 0;
6371 priv->ieee->privacy_invoked = 0;
6372 priv->ieee->ieee802_1x = 1;
James Ketrenosee8e3652005-09-14 09:47:29 -05006373#endif /* CONFIG_IEEE80211_WPA */
James Ketrenos2c86c272005-03-23 17:32:29 -06006374
6375 /* Set module parameters */
6376 switch (mode) {
6377 case 1:
6378 priv->ieee->iw_mode = IW_MODE_ADHOC;
6379 break;
6380#ifdef CONFIG_IPW2100_MONITOR
6381 case 2:
6382 priv->ieee->iw_mode = IW_MODE_MONITOR;
6383 break;
6384#endif
6385 default:
6386 case 0:
6387 priv->ieee->iw_mode = IW_MODE_INFRA;
6388 break;
6389 }
6390
6391 if (disable == 1)
6392 priv->status |= STATUS_RF_KILL_SW;
6393
6394 if (channel != 0 &&
James Ketrenosee8e3652005-09-14 09:47:29 -05006395 ((channel >= REG_MIN_CHANNEL) && (channel <= REG_MAX_CHANNEL))) {
James Ketrenos2c86c272005-03-23 17:32:29 -06006396 priv->config |= CFG_STATIC_CHANNEL;
6397 priv->channel = channel;
6398 }
6399
6400 if (associate)
6401 priv->config |= CFG_ASSOCIATE;
6402
6403 priv->beacon_interval = DEFAULT_BEACON_INTERVAL;
6404 priv->short_retry_limit = DEFAULT_SHORT_RETRY_LIMIT;
6405 priv->long_retry_limit = DEFAULT_LONG_RETRY_LIMIT;
6406 priv->rts_threshold = DEFAULT_RTS_THRESHOLD | RTS_DISABLED;
6407 priv->frag_threshold = DEFAULT_FTS | FRAG_DISABLED;
6408 priv->tx_power = IPW_TX_POWER_DEFAULT;
6409 priv->tx_rates = DEFAULT_TX_RATES;
6410
6411 strcpy(priv->nick, "ipw2100");
6412
6413 spin_lock_init(&priv->low_lock);
6414 sema_init(&priv->action_sem, 1);
6415 sema_init(&priv->adapter_sem, 1);
6416
6417 init_waitqueue_head(&priv->wait_command_queue);
6418
6419 netif_carrier_off(dev);
6420
6421 INIT_LIST_HEAD(&priv->msg_free_list);
6422 INIT_LIST_HEAD(&priv->msg_pend_list);
6423 INIT_STAT(&priv->msg_free_stat);
6424 INIT_STAT(&priv->msg_pend_stat);
6425
6426 INIT_LIST_HEAD(&priv->tx_free_list);
6427 INIT_LIST_HEAD(&priv->tx_pend_list);
6428 INIT_STAT(&priv->tx_free_stat);
6429 INIT_STAT(&priv->tx_pend_stat);
6430
6431 INIT_LIST_HEAD(&priv->fw_pend_list);
6432 INIT_STAT(&priv->fw_pend_stat);
6433
James Ketrenos2c86c272005-03-23 17:32:29 -06006434#ifdef CONFIG_SOFTWARE_SUSPEND2
6435 priv->workqueue = create_workqueue(DRV_NAME, 0);
6436#else
6437 priv->workqueue = create_workqueue(DRV_NAME);
6438#endif
6439 INIT_WORK(&priv->reset_work,
6440 (void (*)(void *))ipw2100_reset_adapter, priv);
6441 INIT_WORK(&priv->security_work,
6442 (void (*)(void *))ipw2100_security_work, priv);
6443 INIT_WORK(&priv->wx_event_work,
6444 (void (*)(void *))ipw2100_wx_event_work, priv);
6445 INIT_WORK(&priv->hang_check, ipw2100_hang_check, priv);
6446 INIT_WORK(&priv->rf_kill, ipw2100_rf_kill, priv);
6447
6448 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
6449 ipw2100_irq_tasklet, (unsigned long)priv);
6450
6451 /* NOTE: We do not start the deferred work for status checks yet */
6452 priv->stop_rf_kill = 1;
6453 priv->stop_hang_check = 1;
6454
6455 return dev;
6456}
6457
James Ketrenos2c86c272005-03-23 17:32:29 -06006458static int ipw2100_pci_init_one(struct pci_dev *pci_dev,
6459 const struct pci_device_id *ent)
6460{
6461 unsigned long mem_start, mem_len, mem_flags;
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01006462 void __iomem *base_addr = NULL;
James Ketrenos2c86c272005-03-23 17:32:29 -06006463 struct net_device *dev = NULL;
6464 struct ipw2100_priv *priv = NULL;
6465 int err = 0;
6466 int registered = 0;
6467 u32 val;
6468
6469 IPW_DEBUG_INFO("enter\n");
6470
6471 mem_start = pci_resource_start(pci_dev, 0);
6472 mem_len = pci_resource_len(pci_dev, 0);
6473 mem_flags = pci_resource_flags(pci_dev, 0);
6474
6475 if ((mem_flags & IORESOURCE_MEM) != IORESOURCE_MEM) {
6476 IPW_DEBUG_INFO("weird - resource type is not memory\n");
6477 err = -ENODEV;
6478 goto fail;
6479 }
6480
6481 base_addr = ioremap_nocache(mem_start, mem_len);
6482 if (!base_addr) {
6483 printk(KERN_WARNING DRV_NAME
6484 "Error calling ioremap_nocache.\n");
6485 err = -EIO;
6486 goto fail;
6487 }
6488
6489 /* allocate and initialize our net_device */
6490 dev = ipw2100_alloc_device(pci_dev, base_addr, mem_start, mem_len);
6491 if (!dev) {
6492 printk(KERN_WARNING DRV_NAME
6493 "Error calling ipw2100_alloc_device.\n");
6494 err = -ENOMEM;
6495 goto fail;
6496 }
6497
6498 /* set up PCI mappings for device */
6499 err = pci_enable_device(pci_dev);
6500 if (err) {
6501 printk(KERN_WARNING DRV_NAME
6502 "Error calling pci_enable_device.\n");
6503 return err;
6504 }
6505
6506 priv = ieee80211_priv(dev);
6507
6508 pci_set_master(pci_dev);
6509 pci_set_drvdata(pci_dev, priv);
6510
Tobias Klauser05743d12005-06-20 14:28:40 -07006511 err = pci_set_dma_mask(pci_dev, DMA_32BIT_MASK);
James Ketrenos2c86c272005-03-23 17:32:29 -06006512 if (err) {
6513 printk(KERN_WARNING DRV_NAME
6514 "Error calling pci_set_dma_mask.\n");
6515 pci_disable_device(pci_dev);
6516 return err;
6517 }
6518
6519 err = pci_request_regions(pci_dev, DRV_NAME);
6520 if (err) {
6521 printk(KERN_WARNING DRV_NAME
6522 "Error calling pci_request_regions.\n");
6523 pci_disable_device(pci_dev);
6524 return err;
6525 }
6526
James Ketrenosee8e3652005-09-14 09:47:29 -05006527 /* We disable the RETRY_TIMEOUT register (0x41) to keep
James Ketrenos2c86c272005-03-23 17:32:29 -06006528 * PCI Tx retries from interfering with C3 CPU state */
6529 pci_read_config_dword(pci_dev, 0x40, &val);
6530 if ((val & 0x0000ff00) != 0)
6531 pci_write_config_dword(pci_dev, 0x40, val & 0xffff00ff);
6532
Pavel Machek8724a112005-06-20 14:28:43 -07006533 pci_set_power_state(pci_dev, PCI_D0);
James Ketrenos2c86c272005-03-23 17:32:29 -06006534
6535 if (!ipw2100_hw_is_adapter_in_system(dev)) {
6536 printk(KERN_WARNING DRV_NAME
6537 "Device not found via register read.\n");
6538 err = -ENODEV;
6539 goto fail;
6540 }
6541
6542 SET_NETDEV_DEV(dev, &pci_dev->dev);
6543
6544 /* Force interrupts to be shut off on the device */
6545 priv->status |= STATUS_INT_ENABLED;
6546 ipw2100_disable_interrupts(priv);
6547
6548 /* Allocate and initialize the Tx/Rx queues and lists */
6549 if (ipw2100_queues_allocate(priv)) {
6550 printk(KERN_WARNING DRV_NAME
6551 "Error calilng ipw2100_queues_allocate.\n");
6552 err = -ENOMEM;
6553 goto fail;
6554 }
6555 ipw2100_queues_initialize(priv);
6556
6557 err = request_irq(pci_dev->irq,
James Ketrenosee8e3652005-09-14 09:47:29 -05006558 ipw2100_interrupt, SA_SHIRQ, dev->name, priv);
James Ketrenos2c86c272005-03-23 17:32:29 -06006559 if (err) {
6560 printk(KERN_WARNING DRV_NAME
James Ketrenosee8e3652005-09-14 09:47:29 -05006561 "Error calling request_irq: %d.\n", pci_dev->irq);
James Ketrenos2c86c272005-03-23 17:32:29 -06006562 goto fail;
6563 }
6564 dev->irq = pci_dev->irq;
6565
6566 IPW_DEBUG_INFO("Attempting to register device...\n");
6567
6568 SET_MODULE_OWNER(dev);
6569
6570 printk(KERN_INFO DRV_NAME
6571 ": Detected Intel PRO/Wireless 2100 Network Connection\n");
6572
6573 /* Bring up the interface. Pre 0.46, after we registered the
6574 * network device we would call ipw2100_up. This introduced a race
6575 * condition with newer hotplug configurations (network was coming
6576 * up and making calls before the device was initialized).
6577 *
6578 * If we called ipw2100_up before we registered the device, then the
6579 * device name wasn't registered. So, we instead use the net_dev->init
6580 * member to call a function that then just turns and calls ipw2100_up.
6581 * net_dev->init is called after name allocation but before the
6582 * notifier chain is called */
6583 down(&priv->action_sem);
6584 err = register_netdev(dev);
6585 if (err) {
6586 printk(KERN_WARNING DRV_NAME
6587 "Error calling register_netdev.\n");
6588 goto fail_unlock;
6589 }
6590 registered = 1;
6591
6592 IPW_DEBUG_INFO("%s: Bound to %s\n", dev->name, pci_name(pci_dev));
6593
6594 /* perform this after register_netdev so that dev->name is set */
6595 sysfs_create_group(&pci_dev->dev.kobj, &ipw2100_attribute_group);
6596 netif_carrier_off(dev);
6597
6598 /* If the RF Kill switch is disabled, go ahead and complete the
6599 * startup sequence */
6600 if (!(priv->status & STATUS_RF_KILL_MASK)) {
6601 /* Enable the adapter - sends HOST_COMPLETE */
6602 if (ipw2100_enable_adapter(priv)) {
6603 printk(KERN_WARNING DRV_NAME
6604 ": %s: failed in call to enable adapter.\n",
6605 priv->net_dev->name);
6606 ipw2100_hw_stop_adapter(priv);
6607 err = -EIO;
6608 goto fail_unlock;
6609 }
6610
6611 /* Start a scan . . . */
6612 ipw2100_set_scan_options(priv);
6613 ipw2100_start_scan(priv);
6614 }
6615
6616 IPW_DEBUG_INFO("exit\n");
6617
6618 priv->status |= STATUS_INITIALIZED;
6619
6620 up(&priv->action_sem);
6621
6622 return 0;
6623
James Ketrenosee8e3652005-09-14 09:47:29 -05006624 fail_unlock:
James Ketrenos2c86c272005-03-23 17:32:29 -06006625 up(&priv->action_sem);
6626
James Ketrenosee8e3652005-09-14 09:47:29 -05006627 fail:
James Ketrenos2c86c272005-03-23 17:32:29 -06006628 if (dev) {
6629 if (registered)
6630 unregister_netdev(dev);
6631
6632 ipw2100_hw_stop_adapter(priv);
6633
6634 ipw2100_disable_interrupts(priv);
6635
6636 if (dev->irq)
6637 free_irq(dev->irq, priv);
6638
6639 ipw2100_kill_workqueue(priv);
6640
6641 /* These are safe to call even if they weren't allocated */
6642 ipw2100_queues_free(priv);
James Ketrenosee8e3652005-09-14 09:47:29 -05006643 sysfs_remove_group(&pci_dev->dev.kobj,
6644 &ipw2100_attribute_group);
James Ketrenos2c86c272005-03-23 17:32:29 -06006645
6646 free_ieee80211(dev);
6647 pci_set_drvdata(pci_dev, NULL);
6648 }
6649
6650 if (base_addr)
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01006651 iounmap(base_addr);
James Ketrenos2c86c272005-03-23 17:32:29 -06006652
6653 pci_release_regions(pci_dev);
6654 pci_disable_device(pci_dev);
6655
6656 return err;
6657}
6658
6659static void __devexit ipw2100_pci_remove_one(struct pci_dev *pci_dev)
6660{
6661 struct ipw2100_priv *priv = pci_get_drvdata(pci_dev);
6662 struct net_device *dev;
6663
6664 if (priv) {
6665 down(&priv->action_sem);
6666
6667 priv->status &= ~STATUS_INITIALIZED;
6668
6669 dev = priv->net_dev;
James Ketrenosee8e3652005-09-14 09:47:29 -05006670 sysfs_remove_group(&pci_dev->dev.kobj,
6671 &ipw2100_attribute_group);
James Ketrenos2c86c272005-03-23 17:32:29 -06006672
6673#ifdef CONFIG_PM
6674 if (ipw2100_firmware.version)
6675 ipw2100_release_firmware(priv, &ipw2100_firmware);
6676#endif
6677 /* Take down the hardware */
6678 ipw2100_down(priv);
6679
6680 /* Release the semaphore so that the network subsystem can
6681 * complete any needed calls into the driver... */
6682 up(&priv->action_sem);
6683
6684 /* Unregister the device first - this results in close()
6685 * being called if the device is open. If we free storage
6686 * first, then close() will crash. */
6687 unregister_netdev(dev);
6688
6689 /* ipw2100_down will ensure that there is no more pending work
6690 * in the workqueue's, so we can safely remove them now. */
6691 ipw2100_kill_workqueue(priv);
6692
6693 ipw2100_queues_free(priv);
6694
6695 /* Free potential debugging firmware snapshot */
6696 ipw2100_snapshot_free(priv);
6697
6698 if (dev->irq)
6699 free_irq(dev->irq, priv);
6700
6701 if (dev->base_addr)
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01006702 iounmap((void __iomem *)dev->base_addr);
James Ketrenos2c86c272005-03-23 17:32:29 -06006703
6704 free_ieee80211(dev);
6705 }
6706
6707 pci_release_regions(pci_dev);
6708 pci_disable_device(pci_dev);
6709
6710 IPW_DEBUG_INFO("exit\n");
6711}
6712
James Ketrenos2c86c272005-03-23 17:32:29 -06006713#ifdef CONFIG_PM
6714#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,11)
6715static int ipw2100_suspend(struct pci_dev *pci_dev, u32 state)
6716#else
6717static int ipw2100_suspend(struct pci_dev *pci_dev, pm_message_t state)
6718#endif
6719{
6720 struct ipw2100_priv *priv = pci_get_drvdata(pci_dev);
6721 struct net_device *dev = priv->net_dev;
6722
James Ketrenosee8e3652005-09-14 09:47:29 -05006723 IPW_DEBUG_INFO("%s: Going into suspend...\n", dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06006724
6725 down(&priv->action_sem);
6726 if (priv->status & STATUS_INITIALIZED) {
6727 /* Take down the device; powers it off, etc. */
6728 ipw2100_down(priv);
6729 }
6730
6731 /* Remove the PRESENT state of the device */
6732 netif_device_detach(dev);
6733
James Ketrenos2c86c272005-03-23 17:32:29 -06006734 pci_save_state(pci_dev);
James Ketrenosee8e3652005-09-14 09:47:29 -05006735 pci_disable_device(pci_dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06006736 pci_set_power_state(pci_dev, PCI_D3hot);
James Ketrenos2c86c272005-03-23 17:32:29 -06006737
6738 up(&priv->action_sem);
6739
6740 return 0;
6741}
6742
6743static int ipw2100_resume(struct pci_dev *pci_dev)
6744{
6745 struct ipw2100_priv *priv = pci_get_drvdata(pci_dev);
6746 struct net_device *dev = priv->net_dev;
6747 u32 val;
6748
6749 if (IPW2100_PM_DISABLED)
6750 return 0;
6751
6752 down(&priv->action_sem);
6753
James Ketrenosee8e3652005-09-14 09:47:29 -05006754 IPW_DEBUG_INFO("%s: Coming out of suspend...\n", dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06006755
James Ketrenos2c86c272005-03-23 17:32:29 -06006756 pci_set_power_state(pci_dev, PCI_D0);
James Ketrenos2c86c272005-03-23 17:32:29 -06006757 pci_enable_device(pci_dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06006758 pci_restore_state(pci_dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06006759
6760 /*
6761 * Suspend/Resume resets the PCI configuration space, so we have to
6762 * re-disable the RETRY_TIMEOUT register (0x41) to keep PCI Tx retries
6763 * from interfering with C3 CPU state. pci_restore_state won't help
6764 * here since it only restores the first 64 bytes pci config header.
6765 */
6766 pci_read_config_dword(pci_dev, 0x40, &val);
6767 if ((val & 0x0000ff00) != 0)
6768 pci_write_config_dword(pci_dev, 0x40, val & 0xffff00ff);
6769
6770 /* Set the device back into the PRESENT state; this will also wake
6771 * the queue of needed */
6772 netif_device_attach(dev);
6773
James Ketrenosee8e3652005-09-14 09:47:29 -05006774 /* Bring the device back up */
6775 if (!(priv->status & STATUS_RF_KILL_SW))
6776 ipw2100_up(priv, 0);
James Ketrenos2c86c272005-03-23 17:32:29 -06006777
6778 up(&priv->action_sem);
6779
6780 return 0;
6781}
6782#endif
6783
James Ketrenos2c86c272005-03-23 17:32:29 -06006784#define IPW2100_DEV_ID(x) { PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, x }
6785
6786static struct pci_device_id ipw2100_pci_id_table[] __devinitdata = {
James Ketrenosee8e3652005-09-14 09:47:29 -05006787 IPW2100_DEV_ID(0x2520), /* IN 2100A mPCI 3A */
6788 IPW2100_DEV_ID(0x2521), /* IN 2100A mPCI 3B */
6789 IPW2100_DEV_ID(0x2524), /* IN 2100A mPCI 3B */
6790 IPW2100_DEV_ID(0x2525), /* IN 2100A mPCI 3B */
6791 IPW2100_DEV_ID(0x2526), /* IN 2100A mPCI Gen A3 */
6792 IPW2100_DEV_ID(0x2522), /* IN 2100 mPCI 3B */
6793 IPW2100_DEV_ID(0x2523), /* IN 2100 mPCI 3A */
6794 IPW2100_DEV_ID(0x2527), /* IN 2100 mPCI 3B */
6795 IPW2100_DEV_ID(0x2528), /* IN 2100 mPCI 3B */
6796 IPW2100_DEV_ID(0x2529), /* IN 2100 mPCI 3B */
6797 IPW2100_DEV_ID(0x252B), /* IN 2100 mPCI 3A */
6798 IPW2100_DEV_ID(0x252C), /* IN 2100 mPCI 3A */
6799 IPW2100_DEV_ID(0x252D), /* IN 2100 mPCI 3A */
James Ketrenos2c86c272005-03-23 17:32:29 -06006800
James Ketrenosee8e3652005-09-14 09:47:29 -05006801 IPW2100_DEV_ID(0x2550), /* IB 2100A mPCI 3B */
6802 IPW2100_DEV_ID(0x2551), /* IB 2100 mPCI 3B */
6803 IPW2100_DEV_ID(0x2553), /* IB 2100 mPCI 3B */
6804 IPW2100_DEV_ID(0x2554), /* IB 2100 mPCI 3B */
6805 IPW2100_DEV_ID(0x2555), /* IB 2100 mPCI 3B */
James Ketrenos2c86c272005-03-23 17:32:29 -06006806
James Ketrenosee8e3652005-09-14 09:47:29 -05006807 IPW2100_DEV_ID(0x2560), /* DE 2100A mPCI 3A */
6808 IPW2100_DEV_ID(0x2562), /* DE 2100A mPCI 3A */
6809 IPW2100_DEV_ID(0x2563), /* DE 2100A mPCI 3A */
6810 IPW2100_DEV_ID(0x2561), /* DE 2100 mPCI 3A */
6811 IPW2100_DEV_ID(0x2565), /* DE 2100 mPCI 3A */
6812 IPW2100_DEV_ID(0x2566), /* DE 2100 mPCI 3A */
6813 IPW2100_DEV_ID(0x2567), /* DE 2100 mPCI 3A */
James Ketrenos2c86c272005-03-23 17:32:29 -06006814
James Ketrenosee8e3652005-09-14 09:47:29 -05006815 IPW2100_DEV_ID(0x2570), /* GA 2100 mPCI 3B */
James Ketrenos2c86c272005-03-23 17:32:29 -06006816
James Ketrenosee8e3652005-09-14 09:47:29 -05006817 IPW2100_DEV_ID(0x2580), /* TO 2100A mPCI 3B */
6818 IPW2100_DEV_ID(0x2582), /* TO 2100A mPCI 3B */
6819 IPW2100_DEV_ID(0x2583), /* TO 2100A mPCI 3B */
6820 IPW2100_DEV_ID(0x2581), /* TO 2100 mPCI 3B */
6821 IPW2100_DEV_ID(0x2585), /* TO 2100 mPCI 3B */
6822 IPW2100_DEV_ID(0x2586), /* TO 2100 mPCI 3B */
6823 IPW2100_DEV_ID(0x2587), /* TO 2100 mPCI 3B */
James Ketrenos2c86c272005-03-23 17:32:29 -06006824
James Ketrenosee8e3652005-09-14 09:47:29 -05006825 IPW2100_DEV_ID(0x2590), /* SO 2100A mPCI 3B */
6826 IPW2100_DEV_ID(0x2592), /* SO 2100A mPCI 3B */
6827 IPW2100_DEV_ID(0x2591), /* SO 2100 mPCI 3B */
6828 IPW2100_DEV_ID(0x2593), /* SO 2100 mPCI 3B */
6829 IPW2100_DEV_ID(0x2596), /* SO 2100 mPCI 3B */
6830 IPW2100_DEV_ID(0x2598), /* SO 2100 mPCI 3B */
James Ketrenos2c86c272005-03-23 17:32:29 -06006831
James Ketrenosee8e3652005-09-14 09:47:29 -05006832 IPW2100_DEV_ID(0x25A0), /* HP 2100 mPCI 3B */
James Ketrenos2c86c272005-03-23 17:32:29 -06006833 {0,},
6834};
6835
6836MODULE_DEVICE_TABLE(pci, ipw2100_pci_id_table);
6837
6838static struct pci_driver ipw2100_pci_driver = {
6839 .name = DRV_NAME,
6840 .id_table = ipw2100_pci_id_table,
6841 .probe = ipw2100_pci_init_one,
6842 .remove = __devexit_p(ipw2100_pci_remove_one),
6843#ifdef CONFIG_PM
6844 .suspend = ipw2100_suspend,
6845 .resume = ipw2100_resume,
6846#endif
6847};
6848
James Ketrenos2c86c272005-03-23 17:32:29 -06006849/**
6850 * Initialize the ipw2100 driver/module
6851 *
6852 * @returns 0 if ok, < 0 errno node con error.
6853 *
6854 * Note: we cannot init the /proc stuff until the PCI driver is there,
6855 * or we risk an unlikely race condition on someone accessing
6856 * uninitialized data in the PCI dev struct through /proc.
6857 */
6858static int __init ipw2100_init(void)
6859{
6860 int ret;
6861
6862 printk(KERN_INFO DRV_NAME ": %s, %s\n", DRV_DESCRIPTION, DRV_VERSION);
6863 printk(KERN_INFO DRV_NAME ": %s\n", DRV_COPYRIGHT);
6864
6865#ifdef CONFIG_IEEE80211_NOWEP
6866 IPW_DEBUG_INFO(DRV_NAME ": Compiled with WEP disabled.\n");
6867#endif
6868
6869 ret = pci_module_init(&ipw2100_pci_driver);
6870
6871#ifdef CONFIG_IPW_DEBUG
6872 ipw2100_debug_level = debug;
6873 driver_create_file(&ipw2100_pci_driver.driver,
6874 &driver_attr_debug_level);
6875#endif
6876
6877 return ret;
6878}
6879
James Ketrenos2c86c272005-03-23 17:32:29 -06006880/**
6881 * Cleanup ipw2100 driver registration
6882 */
6883static void __exit ipw2100_exit(void)
6884{
6885 /* FIXME: IPG: check that we have no instances of the devices open */
6886#ifdef CONFIG_IPW_DEBUG
6887 driver_remove_file(&ipw2100_pci_driver.driver,
6888 &driver_attr_debug_level);
6889#endif
6890 pci_unregister_driver(&ipw2100_pci_driver);
6891}
6892
6893module_init(ipw2100_init);
6894module_exit(ipw2100_exit);
6895
6896#define WEXT_USECHANNELS 1
6897
Jiri Bencc4aee8c2005-08-25 20:04:43 -04006898static const long ipw2100_frequencies[] = {
James Ketrenos2c86c272005-03-23 17:32:29 -06006899 2412, 2417, 2422, 2427,
6900 2432, 2437, 2442, 2447,
6901 2452, 2457, 2462, 2467,
6902 2472, 2484
6903};
6904
6905#define FREQ_COUNT (sizeof(ipw2100_frequencies) / \
6906 sizeof(ipw2100_frequencies[0]))
6907
Jiri Bencc4aee8c2005-08-25 20:04:43 -04006908static const long ipw2100_rates_11b[] = {
James Ketrenos2c86c272005-03-23 17:32:29 -06006909 1000000,
6910 2000000,
6911 5500000,
6912 11000000
6913};
6914
6915#define RATE_COUNT (sizeof(ipw2100_rates_11b) / sizeof(ipw2100_rates_11b[0]))
6916
6917static int ipw2100_wx_get_name(struct net_device *dev,
6918 struct iw_request_info *info,
6919 union iwreq_data *wrqu, char *extra)
6920{
6921 /*
6922 * This can be called at any time. No action lock required
6923 */
6924
6925 struct ipw2100_priv *priv = ieee80211_priv(dev);
6926 if (!(priv->status & STATUS_ASSOCIATED))
6927 strcpy(wrqu->name, "unassociated");
6928 else
6929 snprintf(wrqu->name, IFNAMSIZ, "IEEE 802.11b");
6930
6931 IPW_DEBUG_WX("Name: %s\n", wrqu->name);
6932 return 0;
6933}
6934
James Ketrenos2c86c272005-03-23 17:32:29 -06006935static int ipw2100_wx_set_freq(struct net_device *dev,
6936 struct iw_request_info *info,
6937 union iwreq_data *wrqu, char *extra)
6938{
6939 struct ipw2100_priv *priv = ieee80211_priv(dev);
6940 struct iw_freq *fwrq = &wrqu->freq;
6941 int err = 0;
6942
6943 if (priv->ieee->iw_mode == IW_MODE_INFRA)
6944 return -EOPNOTSUPP;
6945
6946 down(&priv->action_sem);
6947 if (!(priv->status & STATUS_INITIALIZED)) {
6948 err = -EIO;
6949 goto done;
6950 }
6951
6952 /* if setting by freq convert to channel */
6953 if (fwrq->e == 1) {
James Ketrenosee8e3652005-09-14 09:47:29 -05006954 if ((fwrq->m >= (int)2.412e8 && fwrq->m <= (int)2.487e8)) {
James Ketrenos2c86c272005-03-23 17:32:29 -06006955 int f = fwrq->m / 100000;
6956 int c = 0;
6957
6958 while ((c < REG_MAX_CHANNEL) &&
6959 (f != ipw2100_frequencies[c]))
6960 c++;
6961
6962 /* hack to fall through */
6963 fwrq->e = 0;
6964 fwrq->m = c + 1;
6965 }
6966 }
6967
6968 if (fwrq->e > 0 || fwrq->m > 1000)
6969 return -EOPNOTSUPP;
James Ketrenosee8e3652005-09-14 09:47:29 -05006970 else { /* Set the channel */
James Ketrenos2c86c272005-03-23 17:32:29 -06006971 IPW_DEBUG_WX("SET Freq/Channel -> %d \n", fwrq->m);
6972 err = ipw2100_set_channel(priv, fwrq->m, 0);
6973 }
6974
James Ketrenosee8e3652005-09-14 09:47:29 -05006975 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06006976 up(&priv->action_sem);
6977 return err;
6978}
6979
James Ketrenos2c86c272005-03-23 17:32:29 -06006980static int ipw2100_wx_get_freq(struct net_device *dev,
6981 struct iw_request_info *info,
6982 union iwreq_data *wrqu, char *extra)
6983{
6984 /*
6985 * This can be called at any time. No action lock required
6986 */
6987
6988 struct ipw2100_priv *priv = ieee80211_priv(dev);
6989
6990 wrqu->freq.e = 0;
6991
6992 /* If we are associated, trying to associate, or have a statically
6993 * configured CHANNEL then return that; otherwise return ANY */
6994 if (priv->config & CFG_STATIC_CHANNEL ||
6995 priv->status & STATUS_ASSOCIATED)
6996 wrqu->freq.m = priv->channel;
6997 else
6998 wrqu->freq.m = 0;
6999
7000 IPW_DEBUG_WX("GET Freq/Channel -> %d \n", priv->channel);
7001 return 0;
7002
7003}
7004
7005static int ipw2100_wx_set_mode(struct net_device *dev,
7006 struct iw_request_info *info,
7007 union iwreq_data *wrqu, char *extra)
7008{
7009 struct ipw2100_priv *priv = ieee80211_priv(dev);
7010 int err = 0;
7011
7012 IPW_DEBUG_WX("SET Mode -> %d \n", wrqu->mode);
7013
7014 if (wrqu->mode == priv->ieee->iw_mode)
7015 return 0;
7016
7017 down(&priv->action_sem);
7018 if (!(priv->status & STATUS_INITIALIZED)) {
7019 err = -EIO;
7020 goto done;
7021 }
7022
7023 switch (wrqu->mode) {
7024#ifdef CONFIG_IPW2100_MONITOR
7025 case IW_MODE_MONITOR:
7026 err = ipw2100_switch_mode(priv, IW_MODE_MONITOR);
7027 break;
James Ketrenosee8e3652005-09-14 09:47:29 -05007028#endif /* CONFIG_IPW2100_MONITOR */
James Ketrenos2c86c272005-03-23 17:32:29 -06007029 case IW_MODE_ADHOC:
7030 err = ipw2100_switch_mode(priv, IW_MODE_ADHOC);
7031 break;
7032 case IW_MODE_INFRA:
7033 case IW_MODE_AUTO:
7034 default:
7035 err = ipw2100_switch_mode(priv, IW_MODE_INFRA);
7036 break;
7037 }
7038
James Ketrenosee8e3652005-09-14 09:47:29 -05007039 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06007040 up(&priv->action_sem);
James Ketrenosee8e3652005-09-14 09:47:29 -05007041 return err;
James Ketrenos2c86c272005-03-23 17:32:29 -06007042}
7043
7044static int ipw2100_wx_get_mode(struct net_device *dev,
7045 struct iw_request_info *info,
7046 union iwreq_data *wrqu, char *extra)
7047{
7048 /*
7049 * This can be called at any time. No action lock required
7050 */
7051
7052 struct ipw2100_priv *priv = ieee80211_priv(dev);
7053
7054 wrqu->mode = priv->ieee->iw_mode;
7055 IPW_DEBUG_WX("GET Mode -> %d\n", wrqu->mode);
7056
7057 return 0;
7058}
7059
James Ketrenos2c86c272005-03-23 17:32:29 -06007060#define POWER_MODES 5
7061
7062/* Values are in microsecond */
Jiri Bencc4aee8c2005-08-25 20:04:43 -04007063static const s32 timeout_duration[POWER_MODES] = {
James Ketrenos2c86c272005-03-23 17:32:29 -06007064 350000,
7065 250000,
7066 75000,
7067 37000,
7068 25000,
7069};
7070
Jiri Bencc4aee8c2005-08-25 20:04:43 -04007071static const s32 period_duration[POWER_MODES] = {
James Ketrenos2c86c272005-03-23 17:32:29 -06007072 400000,
7073 700000,
7074 1000000,
7075 1000000,
7076 1000000
7077};
7078
7079static int ipw2100_wx_get_range(struct net_device *dev,
7080 struct iw_request_info *info,
7081 union iwreq_data *wrqu, char *extra)
7082{
7083 /*
7084 * This can be called at any time. No action lock required
7085 */
7086
7087 struct ipw2100_priv *priv = ieee80211_priv(dev);
7088 struct iw_range *range = (struct iw_range *)extra;
7089 u16 val;
7090 int i, level;
7091
7092 wrqu->data.length = sizeof(*range);
7093 memset(range, 0, sizeof(*range));
7094
7095 /* Let's try to keep this struct in the same order as in
7096 * linux/include/wireless.h
7097 */
7098
7099 /* TODO: See what values we can set, and remove the ones we can't
7100 * set, or fill them with some default data.
7101 */
7102
7103 /* ~5 Mb/s real (802.11b) */
7104 range->throughput = 5 * 1000 * 1000;
7105
James Ketrenosee8e3652005-09-14 09:47:29 -05007106// range->sensitivity; /* signal level threshold range */
James Ketrenos2c86c272005-03-23 17:32:29 -06007107
7108 range->max_qual.qual = 100;
7109 /* TODO: Find real max RSSI and stick here */
7110 range->max_qual.level = 0;
7111 range->max_qual.noise = 0;
James Ketrenosee8e3652005-09-14 09:47:29 -05007112 range->max_qual.updated = 7; /* Updated all three */
James Ketrenos2c86c272005-03-23 17:32:29 -06007113
James Ketrenosee8e3652005-09-14 09:47:29 -05007114 range->avg_qual.qual = 70; /* > 8% missed beacons is 'bad' */
James Ketrenos2c86c272005-03-23 17:32:29 -06007115 /* TODO: Find real 'good' to 'bad' threshol value for RSSI */
7116 range->avg_qual.level = 20 + IPW2100_RSSI_TO_DBM;
7117 range->avg_qual.noise = 0;
James Ketrenosee8e3652005-09-14 09:47:29 -05007118 range->avg_qual.updated = 7; /* Updated all three */
James Ketrenos2c86c272005-03-23 17:32:29 -06007119
7120 range->num_bitrates = RATE_COUNT;
7121
7122 for (i = 0; i < RATE_COUNT && i < IW_MAX_BITRATES; i++) {
7123 range->bitrate[i] = ipw2100_rates_11b[i];
7124 }
7125
7126 range->min_rts = MIN_RTS_THRESHOLD;
7127 range->max_rts = MAX_RTS_THRESHOLD;
7128 range->min_frag = MIN_FRAG_THRESHOLD;
7129 range->max_frag = MAX_FRAG_THRESHOLD;
7130
7131 range->min_pmp = period_duration[0]; /* Minimal PM period */
James Ketrenosee8e3652005-09-14 09:47:29 -05007132 range->max_pmp = period_duration[POWER_MODES - 1]; /* Maximal PM period */
7133 range->min_pmt = timeout_duration[POWER_MODES - 1]; /* Minimal PM timeout */
7134 range->max_pmt = timeout_duration[0]; /* Maximal PM timeout */
James Ketrenos2c86c272005-03-23 17:32:29 -06007135
James Ketrenosee8e3652005-09-14 09:47:29 -05007136 /* How to decode max/min PM period */
James Ketrenos2c86c272005-03-23 17:32:29 -06007137 range->pmp_flags = IW_POWER_PERIOD;
James Ketrenosee8e3652005-09-14 09:47:29 -05007138 /* How to decode max/min PM period */
James Ketrenos2c86c272005-03-23 17:32:29 -06007139 range->pmt_flags = IW_POWER_TIMEOUT;
7140 /* What PM options are supported */
7141 range->pm_capa = IW_POWER_TIMEOUT | IW_POWER_PERIOD;
7142
7143 range->encoding_size[0] = 5;
James Ketrenosee8e3652005-09-14 09:47:29 -05007144 range->encoding_size[1] = 13; /* Different token sizes */
7145 range->num_encoding_sizes = 2; /* Number of entry in the list */
7146 range->max_encoding_tokens = WEP_KEYS; /* Max number of tokens */
7147// range->encoding_login_index; /* token index for login token */
James Ketrenos2c86c272005-03-23 17:32:29 -06007148
7149 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
7150 range->txpower_capa = IW_TXPOW_DBM;
7151 range->num_txpower = IW_MAX_TXPOWER;
James Ketrenosee8e3652005-09-14 09:47:29 -05007152 for (i = 0, level = (IPW_TX_POWER_MAX_DBM * 16);
7153 i < IW_MAX_TXPOWER;
7154 i++, level -=
7155 ((IPW_TX_POWER_MAX_DBM -
7156 IPW_TX_POWER_MIN_DBM) * 16) / (IW_MAX_TXPOWER - 1))
James Ketrenos2c86c272005-03-23 17:32:29 -06007157 range->txpower[i] = level / 16;
7158 } else {
7159 range->txpower_capa = 0;
7160 range->num_txpower = 0;
7161 }
7162
James Ketrenos2c86c272005-03-23 17:32:29 -06007163 /* Set the Wireless Extension versions */
7164 range->we_version_compiled = WIRELESS_EXT;
7165 range->we_version_source = 16;
7166
James Ketrenosee8e3652005-09-14 09:47:29 -05007167// range->retry_capa; /* What retry options are supported */
7168// range->retry_flags; /* How to decode max/min retry limit */
7169// range->r_time_flags; /* How to decode max/min retry life */
7170// range->min_retry; /* Minimal number of retries */
7171// range->max_retry; /* Maximal number of retries */
7172// range->min_r_time; /* Minimal retry lifetime */
7173// range->max_r_time; /* Maximal retry lifetime */
James Ketrenos2c86c272005-03-23 17:32:29 -06007174
James Ketrenosee8e3652005-09-14 09:47:29 -05007175 range->num_channels = FREQ_COUNT;
James Ketrenos2c86c272005-03-23 17:32:29 -06007176
7177 val = 0;
7178 for (i = 0; i < FREQ_COUNT; i++) {
7179 // TODO: Include only legal frequencies for some countries
James Ketrenosee8e3652005-09-14 09:47:29 -05007180// if (local->channel_mask & (1 << i)) {
7181 range->freq[val].i = i + 1;
7182 range->freq[val].m = ipw2100_frequencies[i] * 100000;
7183 range->freq[val].e = 1;
7184 val++;
7185// }
James Ketrenos2c86c272005-03-23 17:32:29 -06007186 if (val == IW_MAX_FREQUENCIES)
James Ketrenosee8e3652005-09-14 09:47:29 -05007187 break;
James Ketrenos2c86c272005-03-23 17:32:29 -06007188 }
7189 range->num_frequency = val;
7190
7191 IPW_DEBUG_WX("GET Range\n");
7192
7193 return 0;
7194}
7195
7196static int ipw2100_wx_set_wap(struct net_device *dev,
7197 struct iw_request_info *info,
7198 union iwreq_data *wrqu, char *extra)
7199{
7200 struct ipw2100_priv *priv = ieee80211_priv(dev);
7201 int err = 0;
7202
7203 static const unsigned char any[] = {
7204 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
7205 };
7206 static const unsigned char off[] = {
7207 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
7208 };
7209
7210 // sanity checks
7211 if (wrqu->ap_addr.sa_family != ARPHRD_ETHER)
7212 return -EINVAL;
7213
7214 down(&priv->action_sem);
7215 if (!(priv->status & STATUS_INITIALIZED)) {
7216 err = -EIO;
7217 goto done;
7218 }
7219
7220 if (!memcmp(any, wrqu->ap_addr.sa_data, ETH_ALEN) ||
7221 !memcmp(off, wrqu->ap_addr.sa_data, ETH_ALEN)) {
7222 /* we disable mandatory BSSID association */
7223 IPW_DEBUG_WX("exit - disable mandatory BSSID\n");
7224 priv->config &= ~CFG_STATIC_BSSID;
7225 err = ipw2100_set_mandatory_bssid(priv, NULL, 0);
7226 goto done;
7227 }
7228
7229 priv->config |= CFG_STATIC_BSSID;
7230 memcpy(priv->mandatory_bssid_mac, wrqu->ap_addr.sa_data, ETH_ALEN);
7231
7232 err = ipw2100_set_mandatory_bssid(priv, wrqu->ap_addr.sa_data, 0);
7233
7234 IPW_DEBUG_WX("SET BSSID -> %02X:%02X:%02X:%02X:%02X:%02X\n",
7235 wrqu->ap_addr.sa_data[0] & 0xff,
7236 wrqu->ap_addr.sa_data[1] & 0xff,
7237 wrqu->ap_addr.sa_data[2] & 0xff,
7238 wrqu->ap_addr.sa_data[3] & 0xff,
7239 wrqu->ap_addr.sa_data[4] & 0xff,
7240 wrqu->ap_addr.sa_data[5] & 0xff);
7241
James Ketrenosee8e3652005-09-14 09:47:29 -05007242 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06007243 up(&priv->action_sem);
7244 return err;
7245}
7246
7247static int ipw2100_wx_get_wap(struct net_device *dev,
7248 struct iw_request_info *info,
7249 union iwreq_data *wrqu, char *extra)
7250{
7251 /*
7252 * This can be called at any time. No action lock required
7253 */
7254
7255 struct ipw2100_priv *priv = ieee80211_priv(dev);
7256
7257 /* If we are associated, trying to associate, or have a statically
7258 * configured BSSID then return that; otherwise return ANY */
James Ketrenosee8e3652005-09-14 09:47:29 -05007259 if (priv->config & CFG_STATIC_BSSID || priv->status & STATUS_ASSOCIATED) {
James Ketrenos2c86c272005-03-23 17:32:29 -06007260 wrqu->ap_addr.sa_family = ARPHRD_ETHER;
7261 memcpy(wrqu->ap_addr.sa_data, &priv->bssid, ETH_ALEN);
7262 } else
7263 memset(wrqu->ap_addr.sa_data, 0, ETH_ALEN);
7264
7265 IPW_DEBUG_WX("Getting WAP BSSID: " MAC_FMT "\n",
7266 MAC_ARG(wrqu->ap_addr.sa_data));
7267 return 0;
7268}
7269
7270static int ipw2100_wx_set_essid(struct net_device *dev,
7271 struct iw_request_info *info,
7272 union iwreq_data *wrqu, char *extra)
7273{
7274 struct ipw2100_priv *priv = ieee80211_priv(dev);
James Ketrenosee8e3652005-09-14 09:47:29 -05007275 char *essid = ""; /* ANY */
James Ketrenos2c86c272005-03-23 17:32:29 -06007276 int length = 0;
7277 int err = 0;
7278
7279 down(&priv->action_sem);
7280 if (!(priv->status & STATUS_INITIALIZED)) {
7281 err = -EIO;
7282 goto done;
7283 }
7284
7285 if (wrqu->essid.flags && wrqu->essid.length) {
7286 length = wrqu->essid.length - 1;
7287 essid = extra;
7288 }
7289
7290 if (length == 0) {
7291 IPW_DEBUG_WX("Setting ESSID to ANY\n");
7292 priv->config &= ~CFG_STATIC_ESSID;
7293 err = ipw2100_set_essid(priv, NULL, 0, 0);
7294 goto done;
7295 }
7296
7297 length = min(length, IW_ESSID_MAX_SIZE);
7298
7299 priv->config |= CFG_STATIC_ESSID;
7300
7301 if (priv->essid_len == length && !memcmp(priv->essid, extra, length)) {
7302 IPW_DEBUG_WX("ESSID set to current ESSID.\n");
7303 err = 0;
7304 goto done;
7305 }
7306
7307 IPW_DEBUG_WX("Setting ESSID: '%s' (%d)\n", escape_essid(essid, length),
7308 length);
7309
7310 priv->essid_len = length;
7311 memcpy(priv->essid, essid, priv->essid_len);
7312
7313 err = ipw2100_set_essid(priv, essid, length, 0);
7314
James Ketrenosee8e3652005-09-14 09:47:29 -05007315 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06007316 up(&priv->action_sem);
7317 return err;
7318}
7319
7320static int ipw2100_wx_get_essid(struct net_device *dev,
7321 struct iw_request_info *info,
7322 union iwreq_data *wrqu, char *extra)
7323{
7324 /*
7325 * This can be called at any time. No action lock required
7326 */
7327
7328 struct ipw2100_priv *priv = ieee80211_priv(dev);
7329
7330 /* If we are associated, trying to associate, or have a statically
7331 * configured ESSID then return that; otherwise return ANY */
James Ketrenosee8e3652005-09-14 09:47:29 -05007332 if (priv->config & CFG_STATIC_ESSID || priv->status & STATUS_ASSOCIATED) {
James Ketrenos2c86c272005-03-23 17:32:29 -06007333 IPW_DEBUG_WX("Getting essid: '%s'\n",
7334 escape_essid(priv->essid, priv->essid_len));
7335 memcpy(extra, priv->essid, priv->essid_len);
7336 wrqu->essid.length = priv->essid_len;
James Ketrenosee8e3652005-09-14 09:47:29 -05007337 wrqu->essid.flags = 1; /* active */
James Ketrenos2c86c272005-03-23 17:32:29 -06007338 } else {
7339 IPW_DEBUG_WX("Getting essid: ANY\n");
7340 wrqu->essid.length = 0;
James Ketrenosee8e3652005-09-14 09:47:29 -05007341 wrqu->essid.flags = 0; /* active */
James Ketrenos2c86c272005-03-23 17:32:29 -06007342 }
7343
7344 return 0;
7345}
7346
7347static int ipw2100_wx_set_nick(struct net_device *dev,
7348 struct iw_request_info *info,
7349 union iwreq_data *wrqu, char *extra)
7350{
7351 /*
7352 * This can be called at any time. No action lock required
7353 */
7354
7355 struct ipw2100_priv *priv = ieee80211_priv(dev);
7356
7357 if (wrqu->data.length > IW_ESSID_MAX_SIZE)
7358 return -E2BIG;
7359
James Ketrenosee8e3652005-09-14 09:47:29 -05007360 wrqu->data.length = min((size_t) wrqu->data.length, sizeof(priv->nick));
James Ketrenos2c86c272005-03-23 17:32:29 -06007361 memset(priv->nick, 0, sizeof(priv->nick));
James Ketrenosee8e3652005-09-14 09:47:29 -05007362 memcpy(priv->nick, extra, wrqu->data.length);
James Ketrenos2c86c272005-03-23 17:32:29 -06007363
7364 IPW_DEBUG_WX("SET Nickname -> %s \n", priv->nick);
7365
7366 return 0;
7367}
7368
7369static int ipw2100_wx_get_nick(struct net_device *dev,
7370 struct iw_request_info *info,
7371 union iwreq_data *wrqu, char *extra)
7372{
7373 /*
7374 * This can be called at any time. No action lock required
7375 */
7376
7377 struct ipw2100_priv *priv = ieee80211_priv(dev);
7378
7379 wrqu->data.length = strlen(priv->nick) + 1;
7380 memcpy(extra, priv->nick, wrqu->data.length);
James Ketrenosee8e3652005-09-14 09:47:29 -05007381 wrqu->data.flags = 1; /* active */
James Ketrenos2c86c272005-03-23 17:32:29 -06007382
7383 IPW_DEBUG_WX("GET Nickname -> %s \n", extra);
7384
7385 return 0;
7386}
7387
7388static int ipw2100_wx_set_rate(struct net_device *dev,
7389 struct iw_request_info *info,
7390 union iwreq_data *wrqu, char *extra)
7391{
7392 struct ipw2100_priv *priv = ieee80211_priv(dev);
7393 u32 target_rate = wrqu->bitrate.value;
7394 u32 rate;
7395 int err = 0;
7396
7397 down(&priv->action_sem);
7398 if (!(priv->status & STATUS_INITIALIZED)) {
7399 err = -EIO;
7400 goto done;
7401 }
7402
7403 rate = 0;
7404
7405 if (target_rate == 1000000 ||
7406 (!wrqu->bitrate.fixed && target_rate > 1000000))
7407 rate |= TX_RATE_1_MBIT;
7408 if (target_rate == 2000000 ||
7409 (!wrqu->bitrate.fixed && target_rate > 2000000))
7410 rate |= TX_RATE_2_MBIT;
7411 if (target_rate == 5500000 ||
7412 (!wrqu->bitrate.fixed && target_rate > 5500000))
7413 rate |= TX_RATE_5_5_MBIT;
7414 if (target_rate == 11000000 ||
7415 (!wrqu->bitrate.fixed && target_rate > 11000000))
7416 rate |= TX_RATE_11_MBIT;
7417 if (rate == 0)
7418 rate = DEFAULT_TX_RATES;
7419
7420 err = ipw2100_set_tx_rates(priv, rate, 0);
7421
7422 IPW_DEBUG_WX("SET Rate -> %04X \n", rate);
James Ketrenosee8e3652005-09-14 09:47:29 -05007423 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06007424 up(&priv->action_sem);
7425 return err;
7426}
7427
James Ketrenos2c86c272005-03-23 17:32:29 -06007428static int ipw2100_wx_get_rate(struct net_device *dev,
7429 struct iw_request_info *info,
7430 union iwreq_data *wrqu, char *extra)
7431{
7432 struct ipw2100_priv *priv = ieee80211_priv(dev);
7433 int val;
7434 int len = sizeof(val);
7435 int err = 0;
7436
7437 if (!(priv->status & STATUS_ENABLED) ||
7438 priv->status & STATUS_RF_KILL_MASK ||
7439 !(priv->status & STATUS_ASSOCIATED)) {
7440 wrqu->bitrate.value = 0;
7441 return 0;
7442 }
7443
7444 down(&priv->action_sem);
7445 if (!(priv->status & STATUS_INITIALIZED)) {
7446 err = -EIO;
7447 goto done;
7448 }
7449
7450 err = ipw2100_get_ordinal(priv, IPW_ORD_CURRENT_TX_RATE, &val, &len);
7451 if (err) {
7452 IPW_DEBUG_WX("failed querying ordinals.\n");
7453 return err;
7454 }
7455
7456 switch (val & TX_RATE_MASK) {
7457 case TX_RATE_1_MBIT:
7458 wrqu->bitrate.value = 1000000;
7459 break;
7460 case TX_RATE_2_MBIT:
7461 wrqu->bitrate.value = 2000000;
7462 break;
7463 case TX_RATE_5_5_MBIT:
7464 wrqu->bitrate.value = 5500000;
7465 break;
7466 case TX_RATE_11_MBIT:
7467 wrqu->bitrate.value = 11000000;
7468 break;
7469 default:
7470 wrqu->bitrate.value = 0;
7471 }
7472
7473 IPW_DEBUG_WX("GET Rate -> %d \n", wrqu->bitrate.value);
7474
James Ketrenosee8e3652005-09-14 09:47:29 -05007475 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06007476 up(&priv->action_sem);
7477 return err;
7478}
7479
7480static int ipw2100_wx_set_rts(struct net_device *dev,
7481 struct iw_request_info *info,
7482 union iwreq_data *wrqu, char *extra)
7483{
7484 struct ipw2100_priv *priv = ieee80211_priv(dev);
7485 int value, err;
7486
7487 /* Auto RTS not yet supported */
7488 if (wrqu->rts.fixed == 0)
7489 return -EINVAL;
7490
7491 down(&priv->action_sem);
7492 if (!(priv->status & STATUS_INITIALIZED)) {
7493 err = -EIO;
7494 goto done;
7495 }
7496
7497 if (wrqu->rts.disabled)
7498 value = priv->rts_threshold | RTS_DISABLED;
7499 else {
James Ketrenosee8e3652005-09-14 09:47:29 -05007500 if (wrqu->rts.value < 1 || wrqu->rts.value > 2304) {
James Ketrenos2c86c272005-03-23 17:32:29 -06007501 err = -EINVAL;
7502 goto done;
7503 }
7504 value = wrqu->rts.value;
7505 }
7506
7507 err = ipw2100_set_rts_threshold(priv, value);
7508
7509 IPW_DEBUG_WX("SET RTS Threshold -> 0x%08X \n", value);
James Ketrenosee8e3652005-09-14 09:47:29 -05007510 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06007511 up(&priv->action_sem);
7512 return err;
7513}
7514
7515static int ipw2100_wx_get_rts(struct net_device *dev,
7516 struct iw_request_info *info,
7517 union iwreq_data *wrqu, char *extra)
7518{
7519 /*
7520 * This can be called at any time. No action lock required
7521 */
7522
7523 struct ipw2100_priv *priv = ieee80211_priv(dev);
7524
7525 wrqu->rts.value = priv->rts_threshold & ~RTS_DISABLED;
James Ketrenosee8e3652005-09-14 09:47:29 -05007526 wrqu->rts.fixed = 1; /* no auto select */
James Ketrenos2c86c272005-03-23 17:32:29 -06007527
7528 /* If RTS is set to the default value, then it is disabled */
7529 wrqu->rts.disabled = (priv->rts_threshold & RTS_DISABLED) ? 1 : 0;
7530
7531 IPW_DEBUG_WX("GET RTS Threshold -> 0x%08X \n", wrqu->rts.value);
7532
7533 return 0;
7534}
7535
7536static int ipw2100_wx_set_txpow(struct net_device *dev,
7537 struct iw_request_info *info,
7538 union iwreq_data *wrqu, char *extra)
7539{
7540 struct ipw2100_priv *priv = ieee80211_priv(dev);
7541 int err = 0, value;
7542
7543 if (priv->ieee->iw_mode != IW_MODE_ADHOC)
7544 return -EINVAL;
7545
7546 if (wrqu->txpower.disabled == 1 || wrqu->txpower.fixed == 0)
7547 value = IPW_TX_POWER_DEFAULT;
7548 else {
7549 if (wrqu->txpower.value < IPW_TX_POWER_MIN_DBM ||
7550 wrqu->txpower.value > IPW_TX_POWER_MAX_DBM)
7551 return -EINVAL;
7552
7553 value = (wrqu->txpower.value - IPW_TX_POWER_MIN_DBM) * 16 /
James Ketrenosee8e3652005-09-14 09:47:29 -05007554 (IPW_TX_POWER_MAX_DBM - IPW_TX_POWER_MIN_DBM);
James Ketrenos2c86c272005-03-23 17:32:29 -06007555 }
7556
7557 down(&priv->action_sem);
7558 if (!(priv->status & STATUS_INITIALIZED)) {
7559 err = -EIO;
7560 goto done;
7561 }
7562
7563 err = ipw2100_set_tx_power(priv, value);
7564
7565 IPW_DEBUG_WX("SET TX Power -> %d \n", value);
7566
James Ketrenosee8e3652005-09-14 09:47:29 -05007567 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06007568 up(&priv->action_sem);
7569 return err;
7570}
7571
7572static int ipw2100_wx_get_txpow(struct net_device *dev,
7573 struct iw_request_info *info,
7574 union iwreq_data *wrqu, char *extra)
7575{
7576 /*
7577 * This can be called at any time. No action lock required
7578 */
7579
7580 struct ipw2100_priv *priv = ieee80211_priv(dev);
7581
7582 if (priv->ieee->iw_mode != IW_MODE_ADHOC) {
7583 wrqu->power.disabled = 1;
7584 return 0;
7585 }
7586
7587 if (priv->tx_power == IPW_TX_POWER_DEFAULT) {
7588 wrqu->power.fixed = 0;
7589 wrqu->power.value = IPW_TX_POWER_MAX_DBM;
7590 wrqu->power.disabled = 1;
7591 } else {
7592 wrqu->power.disabled = 0;
7593 wrqu->power.fixed = 1;
7594 wrqu->power.value =
James Ketrenosee8e3652005-09-14 09:47:29 -05007595 (priv->tx_power *
7596 (IPW_TX_POWER_MAX_DBM - IPW_TX_POWER_MIN_DBM)) /
7597 (IPW_TX_POWER_MAX - IPW_TX_POWER_MIN) +
7598 IPW_TX_POWER_MIN_DBM;
James Ketrenos2c86c272005-03-23 17:32:29 -06007599 }
7600
7601 wrqu->power.flags = IW_TXPOW_DBM;
7602
7603 IPW_DEBUG_WX("GET TX Power -> %d \n", wrqu->power.value);
7604
7605 return 0;
7606}
7607
7608static int ipw2100_wx_set_frag(struct net_device *dev,
7609 struct iw_request_info *info,
7610 union iwreq_data *wrqu, char *extra)
7611{
7612 /*
7613 * This can be called at any time. No action lock required
7614 */
7615
7616 struct ipw2100_priv *priv = ieee80211_priv(dev);
7617
7618 if (!wrqu->frag.fixed)
7619 return -EINVAL;
7620
7621 if (wrqu->frag.disabled) {
7622 priv->frag_threshold |= FRAG_DISABLED;
7623 priv->ieee->fts = DEFAULT_FTS;
7624 } else {
7625 if (wrqu->frag.value < MIN_FRAG_THRESHOLD ||
7626 wrqu->frag.value > MAX_FRAG_THRESHOLD)
7627 return -EINVAL;
7628
7629 priv->ieee->fts = wrqu->frag.value & ~0x1;
7630 priv->frag_threshold = priv->ieee->fts;
7631 }
7632
7633 IPW_DEBUG_WX("SET Frag Threshold -> %d \n", priv->ieee->fts);
7634
7635 return 0;
7636}
7637
7638static int ipw2100_wx_get_frag(struct net_device *dev,
7639 struct iw_request_info *info,
7640 union iwreq_data *wrqu, char *extra)
7641{
7642 /*
7643 * This can be called at any time. No action lock required
7644 */
7645
7646 struct ipw2100_priv *priv = ieee80211_priv(dev);
7647 wrqu->frag.value = priv->frag_threshold & ~FRAG_DISABLED;
7648 wrqu->frag.fixed = 0; /* no auto select */
7649 wrqu->frag.disabled = (priv->frag_threshold & FRAG_DISABLED) ? 1 : 0;
7650
7651 IPW_DEBUG_WX("GET Frag Threshold -> %d \n", wrqu->frag.value);
7652
7653 return 0;
7654}
7655
7656static int ipw2100_wx_set_retry(struct net_device *dev,
7657 struct iw_request_info *info,
7658 union iwreq_data *wrqu, char *extra)
7659{
7660 struct ipw2100_priv *priv = ieee80211_priv(dev);
7661 int err = 0;
7662
James Ketrenosee8e3652005-09-14 09:47:29 -05007663 if (wrqu->retry.flags & IW_RETRY_LIFETIME || wrqu->retry.disabled)
James Ketrenos2c86c272005-03-23 17:32:29 -06007664 return -EINVAL;
7665
7666 if (!(wrqu->retry.flags & IW_RETRY_LIMIT))
7667 return 0;
7668
7669 down(&priv->action_sem);
7670 if (!(priv->status & STATUS_INITIALIZED)) {
7671 err = -EIO;
7672 goto done;
7673 }
7674
7675 if (wrqu->retry.flags & IW_RETRY_MIN) {
7676 err = ipw2100_set_short_retry(priv, wrqu->retry.value);
7677 IPW_DEBUG_WX("SET Short Retry Limit -> %d \n",
James Ketrenosee8e3652005-09-14 09:47:29 -05007678 wrqu->retry.value);
James Ketrenos2c86c272005-03-23 17:32:29 -06007679 goto done;
7680 }
7681
7682 if (wrqu->retry.flags & IW_RETRY_MAX) {
7683 err = ipw2100_set_long_retry(priv, wrqu->retry.value);
7684 IPW_DEBUG_WX("SET Long Retry Limit -> %d \n",
James Ketrenosee8e3652005-09-14 09:47:29 -05007685 wrqu->retry.value);
James Ketrenos2c86c272005-03-23 17:32:29 -06007686 goto done;
7687 }
7688
7689 err = ipw2100_set_short_retry(priv, wrqu->retry.value);
7690 if (!err)
7691 err = ipw2100_set_long_retry(priv, wrqu->retry.value);
7692
7693 IPW_DEBUG_WX("SET Both Retry Limits -> %d \n", wrqu->retry.value);
7694
James Ketrenosee8e3652005-09-14 09:47:29 -05007695 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06007696 up(&priv->action_sem);
7697 return err;
7698}
7699
7700static int ipw2100_wx_get_retry(struct net_device *dev,
7701 struct iw_request_info *info,
7702 union iwreq_data *wrqu, char *extra)
7703{
7704 /*
7705 * This can be called at any time. No action lock required
7706 */
7707
7708 struct ipw2100_priv *priv = ieee80211_priv(dev);
7709
James Ketrenosee8e3652005-09-14 09:47:29 -05007710 wrqu->retry.disabled = 0; /* can't be disabled */
James Ketrenos2c86c272005-03-23 17:32:29 -06007711
James Ketrenosee8e3652005-09-14 09:47:29 -05007712 if ((wrqu->retry.flags & IW_RETRY_TYPE) == IW_RETRY_LIFETIME)
James Ketrenos2c86c272005-03-23 17:32:29 -06007713 return -EINVAL;
7714
7715 if (wrqu->retry.flags & IW_RETRY_MAX) {
7716 wrqu->retry.flags = IW_RETRY_LIMIT & IW_RETRY_MAX;
7717 wrqu->retry.value = priv->long_retry_limit;
7718 } else {
7719 wrqu->retry.flags =
7720 (priv->short_retry_limit !=
7721 priv->long_retry_limit) ?
7722 IW_RETRY_LIMIT & IW_RETRY_MIN : IW_RETRY_LIMIT;
7723
7724 wrqu->retry.value = priv->short_retry_limit;
7725 }
7726
7727 IPW_DEBUG_WX("GET Retry -> %d \n", wrqu->retry.value);
7728
7729 return 0;
7730}
7731
7732static int ipw2100_wx_set_scan(struct net_device *dev,
7733 struct iw_request_info *info,
7734 union iwreq_data *wrqu, char *extra)
7735{
7736 struct ipw2100_priv *priv = ieee80211_priv(dev);
7737 int err = 0;
7738
7739 down(&priv->action_sem);
7740 if (!(priv->status & STATUS_INITIALIZED)) {
7741 err = -EIO;
7742 goto done;
7743 }
7744
7745 IPW_DEBUG_WX("Initiating scan...\n");
James Ketrenosee8e3652005-09-14 09:47:29 -05007746 if (ipw2100_set_scan_options(priv) || ipw2100_start_scan(priv)) {
James Ketrenos2c86c272005-03-23 17:32:29 -06007747 IPW_DEBUG_WX("Start scan failed.\n");
7748
7749 /* TODO: Mark a scan as pending so when hardware initialized
7750 * a scan starts */
7751 }
7752
James Ketrenosee8e3652005-09-14 09:47:29 -05007753 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06007754 up(&priv->action_sem);
7755 return err;
7756}
7757
7758static int ipw2100_wx_get_scan(struct net_device *dev,
7759 struct iw_request_info *info,
7760 union iwreq_data *wrqu, char *extra)
7761{
7762 /*
7763 * This can be called at any time. No action lock required
7764 */
7765
7766 struct ipw2100_priv *priv = ieee80211_priv(dev);
7767 return ieee80211_wx_get_scan(priv->ieee, info, wrqu, extra);
7768}
7769
James Ketrenos2c86c272005-03-23 17:32:29 -06007770/*
7771 * Implementation based on code in hostap-driver v0.1.3 hostap_ioctl.c
7772 */
7773static int ipw2100_wx_set_encode(struct net_device *dev,
7774 struct iw_request_info *info,
7775 union iwreq_data *wrqu, char *key)
7776{
7777 /*
7778 * No check of STATUS_INITIALIZED required
7779 */
7780
7781 struct ipw2100_priv *priv = ieee80211_priv(dev);
7782 return ieee80211_wx_set_encode(priv->ieee, info, wrqu, key);
7783}
7784
7785static int ipw2100_wx_get_encode(struct net_device *dev,
7786 struct iw_request_info *info,
7787 union iwreq_data *wrqu, char *key)
7788{
7789 /*
7790 * This can be called at any time. No action lock required
7791 */
7792
7793 struct ipw2100_priv *priv = ieee80211_priv(dev);
7794 return ieee80211_wx_get_encode(priv->ieee, info, wrqu, key);
7795}
7796
7797static int ipw2100_wx_set_power(struct net_device *dev,
James Ketrenosee8e3652005-09-14 09:47:29 -05007798 struct iw_request_info *info,
7799 union iwreq_data *wrqu, char *extra)
James Ketrenos2c86c272005-03-23 17:32:29 -06007800{
7801 struct ipw2100_priv *priv = ieee80211_priv(dev);
7802 int err = 0;
7803
7804 down(&priv->action_sem);
7805 if (!(priv->status & STATUS_INITIALIZED)) {
7806 err = -EIO;
7807 goto done;
7808 }
7809
7810 if (wrqu->power.disabled) {
7811 priv->power_mode = IPW_POWER_LEVEL(priv->power_mode);
7812 err = ipw2100_set_power_mode(priv, IPW_POWER_MODE_CAM);
7813 IPW_DEBUG_WX("SET Power Management Mode -> off\n");
7814 goto done;
7815 }
7816
7817 switch (wrqu->power.flags & IW_POWER_MODE) {
James Ketrenosee8e3652005-09-14 09:47:29 -05007818 case IW_POWER_ON: /* If not specified */
7819 case IW_POWER_MODE: /* If set all mask */
7820 case IW_POWER_ALL_R: /* If explicitely state all */
James Ketrenos2c86c272005-03-23 17:32:29 -06007821 break;
James Ketrenosee8e3652005-09-14 09:47:29 -05007822 default: /* Otherwise we don't support it */
James Ketrenos2c86c272005-03-23 17:32:29 -06007823 IPW_DEBUG_WX("SET PM Mode: %X not supported.\n",
7824 wrqu->power.flags);
7825 err = -EOPNOTSUPP;
7826 goto done;
7827 }
7828
7829 /* If the user hasn't specified a power management mode yet, default
7830 * to BATTERY */
7831 priv->power_mode = IPW_POWER_ENABLED | priv->power_mode;
7832 err = ipw2100_set_power_mode(priv, IPW_POWER_LEVEL(priv->power_mode));
7833
James Ketrenosee8e3652005-09-14 09:47:29 -05007834 IPW_DEBUG_WX("SET Power Management Mode -> 0x%02X\n", priv->power_mode);
James Ketrenos2c86c272005-03-23 17:32:29 -06007835
James Ketrenosee8e3652005-09-14 09:47:29 -05007836 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06007837 up(&priv->action_sem);
7838 return err;
7839
7840}
7841
7842static int ipw2100_wx_get_power(struct net_device *dev,
James Ketrenosee8e3652005-09-14 09:47:29 -05007843 struct iw_request_info *info,
7844 union iwreq_data *wrqu, char *extra)
James Ketrenos2c86c272005-03-23 17:32:29 -06007845{
7846 /*
7847 * This can be called at any time. No action lock required
7848 */
7849
7850 struct ipw2100_priv *priv = ieee80211_priv(dev);
7851
7852 if (!(priv->power_mode & IPW_POWER_ENABLED)) {
7853 wrqu->power.disabled = 1;
7854 } else {
7855 wrqu->power.disabled = 0;
7856 wrqu->power.flags = 0;
7857 }
7858
7859 IPW_DEBUG_WX("GET Power Management Mode -> %02X\n", priv->power_mode);
7860
7861 return 0;
7862}
7863
James Ketrenos2c86c272005-03-23 17:32:29 -06007864/*
7865 *
7866 * IWPRIV handlers
7867 *
7868 */
7869#ifdef CONFIG_IPW2100_MONITOR
7870static int ipw2100_wx_set_promisc(struct net_device *dev,
7871 struct iw_request_info *info,
7872 union iwreq_data *wrqu, char *extra)
7873{
7874 struct ipw2100_priv *priv = ieee80211_priv(dev);
7875 int *parms = (int *)extra;
7876 int enable = (parms[0] > 0);
7877 int err = 0;
7878
7879 down(&priv->action_sem);
7880 if (!(priv->status & STATUS_INITIALIZED)) {
7881 err = -EIO;
7882 goto done;
7883 }
7884
7885 if (enable) {
7886 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
7887 err = ipw2100_set_channel(priv, parms[1], 0);
7888 goto done;
7889 }
7890 priv->channel = parms[1];
7891 err = ipw2100_switch_mode(priv, IW_MODE_MONITOR);
7892 } else {
7893 if (priv->ieee->iw_mode == IW_MODE_MONITOR)
7894 err = ipw2100_switch_mode(priv, priv->last_mode);
7895 }
James Ketrenosee8e3652005-09-14 09:47:29 -05007896 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06007897 up(&priv->action_sem);
7898 return err;
7899}
7900
7901static int ipw2100_wx_reset(struct net_device *dev,
7902 struct iw_request_info *info,
7903 union iwreq_data *wrqu, char *extra)
7904{
7905 struct ipw2100_priv *priv = ieee80211_priv(dev);
7906 if (priv->status & STATUS_INITIALIZED)
7907 schedule_reset(priv);
7908 return 0;
7909}
7910
7911#endif
7912
7913static int ipw2100_wx_set_powermode(struct net_device *dev,
7914 struct iw_request_info *info,
7915 union iwreq_data *wrqu, char *extra)
7916{
7917 struct ipw2100_priv *priv = ieee80211_priv(dev);
7918 int err = 0, mode = *(int *)extra;
7919
7920 down(&priv->action_sem);
7921 if (!(priv->status & STATUS_INITIALIZED)) {
7922 err = -EIO;
7923 goto done;
7924 }
7925
7926 if ((mode < 1) || (mode > POWER_MODES))
7927 mode = IPW_POWER_AUTO;
7928
7929 if (priv->power_mode != mode)
7930 err = ipw2100_set_power_mode(priv, mode);
James Ketrenosee8e3652005-09-14 09:47:29 -05007931 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06007932 up(&priv->action_sem);
7933 return err;
7934}
7935
7936#define MAX_POWER_STRING 80
7937static int ipw2100_wx_get_powermode(struct net_device *dev,
7938 struct iw_request_info *info,
7939 union iwreq_data *wrqu, char *extra)
7940{
7941 /*
7942 * This can be called at any time. No action lock required
7943 */
7944
7945 struct ipw2100_priv *priv = ieee80211_priv(dev);
7946 int level = IPW_POWER_LEVEL(priv->power_mode);
7947 s32 timeout, period;
7948
7949 if (!(priv->power_mode & IPW_POWER_ENABLED)) {
7950 snprintf(extra, MAX_POWER_STRING,
7951 "Power save level: %d (Off)", level);
7952 } else {
7953 switch (level) {
7954 case IPW_POWER_MODE_CAM:
7955 snprintf(extra, MAX_POWER_STRING,
7956 "Power save level: %d (None)", level);
7957 break;
7958 case IPW_POWER_AUTO:
James Ketrenosee8e3652005-09-14 09:47:29 -05007959 snprintf(extra, MAX_POWER_STRING,
7960 "Power save level: %d (Auto)", 0);
James Ketrenos2c86c272005-03-23 17:32:29 -06007961 break;
7962 default:
7963 timeout = timeout_duration[level - 1] / 1000;
7964 period = period_duration[level - 1] / 1000;
7965 snprintf(extra, MAX_POWER_STRING,
7966 "Power save level: %d "
7967 "(Timeout %dms, Period %dms)",
7968 level, timeout, period);
7969 }
7970 }
7971
7972 wrqu->data.length = strlen(extra) + 1;
7973
7974 return 0;
7975}
7976
James Ketrenos2c86c272005-03-23 17:32:29 -06007977static int ipw2100_wx_set_preamble(struct net_device *dev,
7978 struct iw_request_info *info,
7979 union iwreq_data *wrqu, char *extra)
7980{
7981 struct ipw2100_priv *priv = ieee80211_priv(dev);
7982 int err, mode = *(int *)extra;
7983
7984 down(&priv->action_sem);
7985 if (!(priv->status & STATUS_INITIALIZED)) {
7986 err = -EIO;
7987 goto done;
7988 }
7989
7990 if (mode == 1)
7991 priv->config |= CFG_LONG_PREAMBLE;
7992 else if (mode == 0)
7993 priv->config &= ~CFG_LONG_PREAMBLE;
7994 else {
7995 err = -EINVAL;
7996 goto done;
7997 }
7998
7999 err = ipw2100_system_config(priv, 0);
8000
James Ketrenosee8e3652005-09-14 09:47:29 -05008001 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06008002 up(&priv->action_sem);
8003 return err;
8004}
8005
8006static int ipw2100_wx_get_preamble(struct net_device *dev,
James Ketrenosee8e3652005-09-14 09:47:29 -05008007 struct iw_request_info *info,
8008 union iwreq_data *wrqu, char *extra)
James Ketrenos2c86c272005-03-23 17:32:29 -06008009{
8010 /*
8011 * This can be called at any time. No action lock required
8012 */
8013
8014 struct ipw2100_priv *priv = ieee80211_priv(dev);
8015
8016 if (priv->config & CFG_LONG_PREAMBLE)
8017 snprintf(wrqu->name, IFNAMSIZ, "long (1)");
8018 else
8019 snprintf(wrqu->name, IFNAMSIZ, "auto (0)");
8020
8021 return 0;
8022}
8023
James Ketrenosee8e3652005-09-14 09:47:29 -05008024static iw_handler ipw2100_wx_handlers[] = {
8025 NULL, /* SIOCSIWCOMMIT */
8026 ipw2100_wx_get_name, /* SIOCGIWNAME */
8027 NULL, /* SIOCSIWNWID */
8028 NULL, /* SIOCGIWNWID */
8029 ipw2100_wx_set_freq, /* SIOCSIWFREQ */
8030 ipw2100_wx_get_freq, /* SIOCGIWFREQ */
8031 ipw2100_wx_set_mode, /* SIOCSIWMODE */
8032 ipw2100_wx_get_mode, /* SIOCGIWMODE */
8033 NULL, /* SIOCSIWSENS */
8034 NULL, /* SIOCGIWSENS */
8035 NULL, /* SIOCSIWRANGE */
8036 ipw2100_wx_get_range, /* SIOCGIWRANGE */
8037 NULL, /* SIOCSIWPRIV */
8038 NULL, /* SIOCGIWPRIV */
8039 NULL, /* SIOCSIWSTATS */
8040 NULL, /* SIOCGIWSTATS */
8041 NULL, /* SIOCSIWSPY */
8042 NULL, /* SIOCGIWSPY */
8043 NULL, /* SIOCGIWTHRSPY */
8044 NULL, /* SIOCWIWTHRSPY */
8045 ipw2100_wx_set_wap, /* SIOCSIWAP */
8046 ipw2100_wx_get_wap, /* SIOCGIWAP */
8047 NULL, /* -- hole -- */
8048 NULL, /* SIOCGIWAPLIST -- deprecated */
8049 ipw2100_wx_set_scan, /* SIOCSIWSCAN */
8050 ipw2100_wx_get_scan, /* SIOCGIWSCAN */
8051 ipw2100_wx_set_essid, /* SIOCSIWESSID */
8052 ipw2100_wx_get_essid, /* SIOCGIWESSID */
8053 ipw2100_wx_set_nick, /* SIOCSIWNICKN */
8054 ipw2100_wx_get_nick, /* SIOCGIWNICKN */
8055 NULL, /* -- hole -- */
8056 NULL, /* -- hole -- */
8057 ipw2100_wx_set_rate, /* SIOCSIWRATE */
8058 ipw2100_wx_get_rate, /* SIOCGIWRATE */
8059 ipw2100_wx_set_rts, /* SIOCSIWRTS */
8060 ipw2100_wx_get_rts, /* SIOCGIWRTS */
8061 ipw2100_wx_set_frag, /* SIOCSIWFRAG */
8062 ipw2100_wx_get_frag, /* SIOCGIWFRAG */
8063 ipw2100_wx_set_txpow, /* SIOCSIWTXPOW */
8064 ipw2100_wx_get_txpow, /* SIOCGIWTXPOW */
8065 ipw2100_wx_set_retry, /* SIOCSIWRETRY */
8066 ipw2100_wx_get_retry, /* SIOCGIWRETRY */
8067 ipw2100_wx_set_encode, /* SIOCSIWENCODE */
8068 ipw2100_wx_get_encode, /* SIOCGIWENCODE */
8069 ipw2100_wx_set_power, /* SIOCSIWPOWER */
8070 ipw2100_wx_get_power, /* SIOCGIWPOWER */
James Ketrenos2c86c272005-03-23 17:32:29 -06008071};
8072
8073#define IPW2100_PRIV_SET_MONITOR SIOCIWFIRSTPRIV
8074#define IPW2100_PRIV_RESET SIOCIWFIRSTPRIV+1
8075#define IPW2100_PRIV_SET_POWER SIOCIWFIRSTPRIV+2
8076#define IPW2100_PRIV_GET_POWER SIOCIWFIRSTPRIV+3
8077#define IPW2100_PRIV_SET_LONGPREAMBLE SIOCIWFIRSTPRIV+4
8078#define IPW2100_PRIV_GET_LONGPREAMBLE SIOCIWFIRSTPRIV+5
8079
8080static const struct iw_priv_args ipw2100_private_args[] = {
8081
8082#ifdef CONFIG_IPW2100_MONITOR
8083 {
James Ketrenosee8e3652005-09-14 09:47:29 -05008084 IPW2100_PRIV_SET_MONITOR,
8085 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 2, 0, "monitor"},
James Ketrenos2c86c272005-03-23 17:32:29 -06008086 {
James Ketrenosee8e3652005-09-14 09:47:29 -05008087 IPW2100_PRIV_RESET,
8088 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 0, 0, "reset"},
8089#endif /* CONFIG_IPW2100_MONITOR */
James Ketrenos2c86c272005-03-23 17:32:29 -06008090
8091 {
James Ketrenosee8e3652005-09-14 09:47:29 -05008092 IPW2100_PRIV_SET_POWER,
8093 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1, 0, "set_power"},
James Ketrenos2c86c272005-03-23 17:32:29 -06008094 {
James Ketrenosee8e3652005-09-14 09:47:29 -05008095 IPW2100_PRIV_GET_POWER,
8096 0, IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | MAX_POWER_STRING,
8097 "get_power"},
James Ketrenos2c86c272005-03-23 17:32:29 -06008098 {
James Ketrenosee8e3652005-09-14 09:47:29 -05008099 IPW2100_PRIV_SET_LONGPREAMBLE,
8100 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1, 0, "set_preamble"},
James Ketrenos2c86c272005-03-23 17:32:29 -06008101 {
James Ketrenosee8e3652005-09-14 09:47:29 -05008102 IPW2100_PRIV_GET_LONGPREAMBLE,
8103 0, IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | IFNAMSIZ, "get_preamble"},
James Ketrenos2c86c272005-03-23 17:32:29 -06008104};
8105
8106static iw_handler ipw2100_private_handler[] = {
8107#ifdef CONFIG_IPW2100_MONITOR
8108 ipw2100_wx_set_promisc,
8109 ipw2100_wx_reset,
James Ketrenosee8e3652005-09-14 09:47:29 -05008110#else /* CONFIG_IPW2100_MONITOR */
James Ketrenos2c86c272005-03-23 17:32:29 -06008111 NULL,
8112 NULL,
James Ketrenosee8e3652005-09-14 09:47:29 -05008113#endif /* CONFIG_IPW2100_MONITOR */
James Ketrenos2c86c272005-03-23 17:32:29 -06008114 ipw2100_wx_set_powermode,
8115 ipw2100_wx_get_powermode,
8116 ipw2100_wx_set_preamble,
8117 ipw2100_wx_get_preamble,
8118};
8119
James Ketrenosee8e3652005-09-14 09:47:29 -05008120static struct iw_handler_def ipw2100_wx_handler_def = {
James Ketrenos2c86c272005-03-23 17:32:29 -06008121 .standard = ipw2100_wx_handlers,
8122 .num_standard = sizeof(ipw2100_wx_handlers) / sizeof(iw_handler),
8123 .num_private = sizeof(ipw2100_private_handler) / sizeof(iw_handler),
James Ketrenosee8e3652005-09-14 09:47:29 -05008124 .num_private_args = sizeof(ipw2100_private_args) /
8125 sizeof(struct iw_priv_args),
8126 .private = (iw_handler *) ipw2100_private_handler,
James Ketrenos2c86c272005-03-23 17:32:29 -06008127 .private_args = (struct iw_priv_args *)ipw2100_private_args,
8128};
8129
8130/*
8131 * Get wireless statistics.
8132 * Called by /proc/net/wireless
8133 * Also called by SIOCGIWSTATS
8134 */
James Ketrenosee8e3652005-09-14 09:47:29 -05008135static struct iw_statistics *ipw2100_wx_wireless_stats(struct net_device *dev)
James Ketrenos2c86c272005-03-23 17:32:29 -06008136{
8137 enum {
8138 POOR = 30,
8139 FAIR = 60,
8140 GOOD = 80,
8141 VERY_GOOD = 90,
8142 EXCELLENT = 95,
8143 PERFECT = 100
8144 };
8145 int rssi_qual;
8146 int tx_qual;
8147 int beacon_qual;
8148
8149 struct ipw2100_priv *priv = ieee80211_priv(dev);
8150 struct iw_statistics *wstats;
8151 u32 rssi, quality, tx_retries, missed_beacons, tx_failures;
8152 u32 ord_len = sizeof(u32);
8153
8154 if (!priv)
James Ketrenosee8e3652005-09-14 09:47:29 -05008155 return (struct iw_statistics *)NULL;
James Ketrenos2c86c272005-03-23 17:32:29 -06008156
8157 wstats = &priv->wstats;
8158
8159 /* if hw is disabled, then ipw2100_get_ordinal() can't be called.
8160 * ipw2100_wx_wireless_stats seems to be called before fw is
8161 * initialized. STATUS_ASSOCIATED will only be set if the hw is up
8162 * and associated; if not associcated, the values are all meaningless
8163 * anyway, so set them all to NULL and INVALID */
8164 if (!(priv->status & STATUS_ASSOCIATED)) {
8165 wstats->miss.beacon = 0;
8166 wstats->discard.retries = 0;
8167 wstats->qual.qual = 0;
8168 wstats->qual.level = 0;
8169 wstats->qual.noise = 0;
8170 wstats->qual.updated = 7;
8171 wstats->qual.updated |= IW_QUAL_NOISE_INVALID |
James Ketrenosee8e3652005-09-14 09:47:29 -05008172 IW_QUAL_QUAL_INVALID | IW_QUAL_LEVEL_INVALID;
James Ketrenos2c86c272005-03-23 17:32:29 -06008173 return wstats;
8174 }
8175
8176 if (ipw2100_get_ordinal(priv, IPW_ORD_STAT_PERCENT_MISSED_BCNS,
8177 &missed_beacons, &ord_len))
8178 goto fail_get_ordinal;
8179
James Ketrenosee8e3652005-09-14 09:47:29 -05008180 /* If we don't have a connection the quality and level is 0 */
James Ketrenos2c86c272005-03-23 17:32:29 -06008181 if (!(priv->status & STATUS_ASSOCIATED)) {
8182 wstats->qual.qual = 0;
8183 wstats->qual.level = 0;
8184 } else {
8185 if (ipw2100_get_ordinal(priv, IPW_ORD_RSSI_AVG_CURR,
8186 &rssi, &ord_len))
8187 goto fail_get_ordinal;
8188 wstats->qual.level = rssi + IPW2100_RSSI_TO_DBM;
8189 if (rssi < 10)
8190 rssi_qual = rssi * POOR / 10;
8191 else if (rssi < 15)
8192 rssi_qual = (rssi - 10) * (FAIR - POOR) / 5 + POOR;
8193 else if (rssi < 20)
8194 rssi_qual = (rssi - 15) * (GOOD - FAIR) / 5 + FAIR;
8195 else if (rssi < 30)
8196 rssi_qual = (rssi - 20) * (VERY_GOOD - GOOD) /
James Ketrenosee8e3652005-09-14 09:47:29 -05008197 10 + GOOD;
James Ketrenos2c86c272005-03-23 17:32:29 -06008198 else
8199 rssi_qual = (rssi - 30) * (PERFECT - VERY_GOOD) /
James Ketrenosee8e3652005-09-14 09:47:29 -05008200 10 + VERY_GOOD;
James Ketrenos2c86c272005-03-23 17:32:29 -06008201
8202 if (ipw2100_get_ordinal(priv, IPW_ORD_STAT_PERCENT_RETRIES,
8203 &tx_retries, &ord_len))
8204 goto fail_get_ordinal;
8205
8206 if (tx_retries > 75)
8207 tx_qual = (90 - tx_retries) * POOR / 15;
8208 else if (tx_retries > 70)
8209 tx_qual = (75 - tx_retries) * (FAIR - POOR) / 5 + POOR;
8210 else if (tx_retries > 65)
8211 tx_qual = (70 - tx_retries) * (GOOD - FAIR) / 5 + FAIR;
8212 else if (tx_retries > 50)
8213 tx_qual = (65 - tx_retries) * (VERY_GOOD - GOOD) /
James Ketrenosee8e3652005-09-14 09:47:29 -05008214 15 + GOOD;
James Ketrenos2c86c272005-03-23 17:32:29 -06008215 else
8216 tx_qual = (50 - tx_retries) *
James Ketrenosee8e3652005-09-14 09:47:29 -05008217 (PERFECT - VERY_GOOD) / 50 + VERY_GOOD;
James Ketrenos2c86c272005-03-23 17:32:29 -06008218
8219 if (missed_beacons > 50)
8220 beacon_qual = (60 - missed_beacons) * POOR / 10;
8221 else if (missed_beacons > 40)
8222 beacon_qual = (50 - missed_beacons) * (FAIR - POOR) /
James Ketrenosee8e3652005-09-14 09:47:29 -05008223 10 + POOR;
James Ketrenos2c86c272005-03-23 17:32:29 -06008224 else if (missed_beacons > 32)
8225 beacon_qual = (40 - missed_beacons) * (GOOD - FAIR) /
James Ketrenosee8e3652005-09-14 09:47:29 -05008226 18 + FAIR;
James Ketrenos2c86c272005-03-23 17:32:29 -06008227 else if (missed_beacons > 20)
8228 beacon_qual = (32 - missed_beacons) *
James Ketrenosee8e3652005-09-14 09:47:29 -05008229 (VERY_GOOD - GOOD) / 20 + GOOD;
James Ketrenos2c86c272005-03-23 17:32:29 -06008230 else
8231 beacon_qual = (20 - missed_beacons) *
James Ketrenosee8e3652005-09-14 09:47:29 -05008232 (PERFECT - VERY_GOOD) / 20 + VERY_GOOD;
James Ketrenos2c86c272005-03-23 17:32:29 -06008233
8234 quality = min(beacon_qual, min(tx_qual, rssi_qual));
8235
8236#ifdef CONFIG_IPW_DEBUG
8237 if (beacon_qual == quality)
8238 IPW_DEBUG_WX("Quality clamped by Missed Beacons\n");
8239 else if (tx_qual == quality)
8240 IPW_DEBUG_WX("Quality clamped by Tx Retries\n");
8241 else if (quality != 100)
8242 IPW_DEBUG_WX("Quality clamped by Signal Strength\n");
8243 else
8244 IPW_DEBUG_WX("Quality not clamped.\n");
8245#endif
8246
8247 wstats->qual.qual = quality;
8248 wstats->qual.level = rssi + IPW2100_RSSI_TO_DBM;
8249 }
8250
8251 wstats->qual.noise = 0;
8252 wstats->qual.updated = 7;
8253 wstats->qual.updated |= IW_QUAL_NOISE_INVALID;
8254
James Ketrenosee8e3652005-09-14 09:47:29 -05008255 /* FIXME: this is percent and not a # */
James Ketrenos2c86c272005-03-23 17:32:29 -06008256 wstats->miss.beacon = missed_beacons;
8257
8258 if (ipw2100_get_ordinal(priv, IPW_ORD_STAT_TX_FAILURES,
8259 &tx_failures, &ord_len))
8260 goto fail_get_ordinal;
8261 wstats->discard.retries = tx_failures;
8262
8263 return wstats;
8264
James Ketrenosee8e3652005-09-14 09:47:29 -05008265 fail_get_ordinal:
James Ketrenos2c86c272005-03-23 17:32:29 -06008266 IPW_DEBUG_WX("failed querying ordinals.\n");
8267
James Ketrenosee8e3652005-09-14 09:47:29 -05008268 return (struct iw_statistics *)NULL;
James Ketrenos2c86c272005-03-23 17:32:29 -06008269}
8270
Jiri Bencc4aee8c2005-08-25 20:04:43 -04008271static void ipw2100_wx_event_work(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06008272{
8273 union iwreq_data wrqu;
8274 int len = ETH_ALEN;
8275
8276 if (priv->status & STATUS_STOPPING)
8277 return;
8278
8279 down(&priv->action_sem);
8280
8281 IPW_DEBUG_WX("enter\n");
8282
8283 up(&priv->action_sem);
8284
8285 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
8286
8287 /* Fetch BSSID from the hardware */
8288 if (!(priv->status & (STATUS_ASSOCIATING | STATUS_ASSOCIATED)) ||
8289 priv->status & STATUS_RF_KILL_MASK ||
8290 ipw2100_get_ordinal(priv, IPW_ORD_STAT_ASSN_AP_BSSID,
James Ketrenosee8e3652005-09-14 09:47:29 -05008291 &priv->bssid, &len)) {
James Ketrenos2c86c272005-03-23 17:32:29 -06008292 memset(wrqu.ap_addr.sa_data, 0, ETH_ALEN);
8293 } else {
8294 /* We now have the BSSID, so can finish setting to the full
8295 * associated state */
8296 memcpy(wrqu.ap_addr.sa_data, priv->bssid, ETH_ALEN);
8297 memcpy(&priv->ieee->bssid, priv->bssid, ETH_ALEN);
8298 priv->status &= ~STATUS_ASSOCIATING;
8299 priv->status |= STATUS_ASSOCIATED;
8300 netif_carrier_on(priv->net_dev);
8301 if (netif_queue_stopped(priv->net_dev)) {
8302 IPW_DEBUG_INFO("Waking net queue.\n");
8303 netif_wake_queue(priv->net_dev);
8304 } else {
8305 IPW_DEBUG_INFO("Starting net queue.\n");
8306 netif_start_queue(priv->net_dev);
8307 }
8308 }
8309
8310 if (!(priv->status & STATUS_ASSOCIATED)) {
8311 IPW_DEBUG_WX("Configuring ESSID\n");
8312 down(&priv->action_sem);
8313 /* This is a disassociation event, so kick the firmware to
8314 * look for another AP */
8315 if (priv->config & CFG_STATIC_ESSID)
James Ketrenosee8e3652005-09-14 09:47:29 -05008316 ipw2100_set_essid(priv, priv->essid, priv->essid_len,
8317 0);
James Ketrenos2c86c272005-03-23 17:32:29 -06008318 else
8319 ipw2100_set_essid(priv, NULL, 0, 0);
8320 up(&priv->action_sem);
8321 }
8322
8323 wireless_send_event(priv->net_dev, SIOCGIWAP, &wrqu, NULL);
8324}
8325
8326#define IPW2100_FW_MAJOR_VERSION 1
8327#define IPW2100_FW_MINOR_VERSION 3
8328
8329#define IPW2100_FW_MINOR(x) ((x & 0xff) >> 8)
8330#define IPW2100_FW_MAJOR(x) (x & 0xff)
8331
8332#define IPW2100_FW_VERSION ((IPW2100_FW_MINOR_VERSION << 8) | \
8333 IPW2100_FW_MAJOR_VERSION)
8334
8335#define IPW2100_FW_PREFIX "ipw2100-" __stringify(IPW2100_FW_MAJOR_VERSION) \
8336"." __stringify(IPW2100_FW_MINOR_VERSION)
8337
8338#define IPW2100_FW_NAME(x) IPW2100_FW_PREFIX "" x ".fw"
8339
James Ketrenos2c86c272005-03-23 17:32:29 -06008340/*
8341
8342BINARY FIRMWARE HEADER FORMAT
8343
8344offset length desc
83450 2 version
83462 2 mode == 0:BSS,1:IBSS,2:MONITOR
83474 4 fw_len
83488 4 uc_len
8349C fw_len firmware data
835012 + fw_len uc_len microcode data
8351
8352*/
8353
8354struct ipw2100_fw_header {
8355 short version;
8356 short mode;
8357 unsigned int fw_size;
8358 unsigned int uc_size;
8359} __attribute__ ((packed));
8360
James Ketrenos2c86c272005-03-23 17:32:29 -06008361static int ipw2100_mod_firmware_load(struct ipw2100_fw *fw)
8362{
8363 struct ipw2100_fw_header *h =
James Ketrenosee8e3652005-09-14 09:47:29 -05008364 (struct ipw2100_fw_header *)fw->fw_entry->data;
James Ketrenos2c86c272005-03-23 17:32:29 -06008365
8366 if (IPW2100_FW_MAJOR(h->version) != IPW2100_FW_MAJOR_VERSION) {
Jiri Benc797b4f72005-08-25 20:03:27 -04008367 printk(KERN_WARNING DRV_NAME ": Firmware image not compatible "
James Ketrenos2c86c272005-03-23 17:32:29 -06008368 "(detected version id of %u). "
8369 "See Documentation/networking/README.ipw2100\n",
8370 h->version);
8371 return 1;
8372 }
8373
8374 fw->version = h->version;
8375 fw->fw.data = fw->fw_entry->data + sizeof(struct ipw2100_fw_header);
8376 fw->fw.size = h->fw_size;
8377 fw->uc.data = fw->fw.data + h->fw_size;
8378 fw->uc.size = h->uc_size;
8379
8380 return 0;
8381}
8382
Jiri Bencc4aee8c2005-08-25 20:04:43 -04008383static int ipw2100_get_firmware(struct ipw2100_priv *priv,
8384 struct ipw2100_fw *fw)
James Ketrenos2c86c272005-03-23 17:32:29 -06008385{
8386 char *fw_name;
8387 int rc;
8388
8389 IPW_DEBUG_INFO("%s: Using hotplug firmware load.\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05008390 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06008391
8392 switch (priv->ieee->iw_mode) {
8393 case IW_MODE_ADHOC:
8394 fw_name = IPW2100_FW_NAME("-i");
8395 break;
8396#ifdef CONFIG_IPW2100_MONITOR
8397 case IW_MODE_MONITOR:
8398 fw_name = IPW2100_FW_NAME("-p");
8399 break;
8400#endif
8401 case IW_MODE_INFRA:
8402 default:
8403 fw_name = IPW2100_FW_NAME("");
8404 break;
8405 }
8406
8407 rc = request_firmware(&fw->fw_entry, fw_name, &priv->pci_dev->dev);
8408
8409 if (rc < 0) {
Jiri Benc797b4f72005-08-25 20:03:27 -04008410 printk(KERN_ERR DRV_NAME ": "
James Ketrenos2c86c272005-03-23 17:32:29 -06008411 "%s: Firmware '%s' not available or load failed.\n",
8412 priv->net_dev->name, fw_name);
8413 return rc;
8414 }
Jiri Bencaaa4d302005-06-07 14:58:41 +02008415 IPW_DEBUG_INFO("firmware data %p size %zd\n", fw->fw_entry->data,
James Ketrenosee8e3652005-09-14 09:47:29 -05008416 fw->fw_entry->size);
James Ketrenos2c86c272005-03-23 17:32:29 -06008417
8418 ipw2100_mod_firmware_load(fw);
8419
8420 return 0;
8421}
8422
Jiri Bencc4aee8c2005-08-25 20:04:43 -04008423static void ipw2100_release_firmware(struct ipw2100_priv *priv,
8424 struct ipw2100_fw *fw)
James Ketrenos2c86c272005-03-23 17:32:29 -06008425{
8426 fw->version = 0;
8427 if (fw->fw_entry)
8428 release_firmware(fw->fw_entry);
8429 fw->fw_entry = NULL;
8430}
8431
Jiri Bencc4aee8c2005-08-25 20:04:43 -04008432static int ipw2100_get_fwversion(struct ipw2100_priv *priv, char *buf,
8433 size_t max)
James Ketrenos2c86c272005-03-23 17:32:29 -06008434{
8435 char ver[MAX_FW_VERSION_LEN];
8436 u32 len = MAX_FW_VERSION_LEN;
8437 u32 tmp;
8438 int i;
8439 /* firmware version is an ascii string (max len of 14) */
James Ketrenosee8e3652005-09-14 09:47:29 -05008440 if (ipw2100_get_ordinal(priv, IPW_ORD_STAT_FW_VER_NUM, ver, &len))
James Ketrenos2c86c272005-03-23 17:32:29 -06008441 return -EIO;
8442 tmp = max;
8443 if (len >= max)
8444 len = max - 1;
8445 for (i = 0; i < len; i++)
8446 buf[i] = ver[i];
8447 buf[i] = '\0';
8448 return tmp;
8449}
8450
Jiri Bencc4aee8c2005-08-25 20:04:43 -04008451static int ipw2100_get_ucodeversion(struct ipw2100_priv *priv, char *buf,
8452 size_t max)
James Ketrenos2c86c272005-03-23 17:32:29 -06008453{
8454 u32 ver;
8455 u32 len = sizeof(ver);
8456 /* microcode version is a 32 bit integer */
James Ketrenosee8e3652005-09-14 09:47:29 -05008457 if (ipw2100_get_ordinal(priv, IPW_ORD_UCODE_VERSION, &ver, &len))
James Ketrenos2c86c272005-03-23 17:32:29 -06008458 return -EIO;
8459 return snprintf(buf, max, "%08X", ver);
8460}
8461
8462/*
8463 * On exit, the firmware will have been freed from the fw list
8464 */
James Ketrenosee8e3652005-09-14 09:47:29 -05008465static int ipw2100_fw_download(struct ipw2100_priv *priv, struct ipw2100_fw *fw)
James Ketrenos2c86c272005-03-23 17:32:29 -06008466{
8467 /* firmware is constructed of N contiguous entries, each entry is
8468 * structured as:
8469 *
8470 * offset sie desc
8471 * 0 4 address to write to
8472 * 4 2 length of data run
James Ketrenosee8e3652005-09-14 09:47:29 -05008473 * 6 length data
James Ketrenos2c86c272005-03-23 17:32:29 -06008474 */
8475 unsigned int addr;
8476 unsigned short len;
8477
8478 const unsigned char *firmware_data = fw->fw.data;
8479 unsigned int firmware_data_left = fw->fw.size;
8480
8481 while (firmware_data_left > 0) {
James Ketrenosee8e3652005-09-14 09:47:29 -05008482 addr = *(u32 *) (firmware_data);
8483 firmware_data += 4;
James Ketrenos2c86c272005-03-23 17:32:29 -06008484 firmware_data_left -= 4;
8485
James Ketrenosee8e3652005-09-14 09:47:29 -05008486 len = *(u16 *) (firmware_data);
8487 firmware_data += 2;
James Ketrenos2c86c272005-03-23 17:32:29 -06008488 firmware_data_left -= 2;
8489
8490 if (len > 32) {
Jiri Benc797b4f72005-08-25 20:03:27 -04008491 printk(KERN_ERR DRV_NAME ": "
James Ketrenos2c86c272005-03-23 17:32:29 -06008492 "Invalid firmware run-length of %d bytes\n",
8493 len);
8494 return -EINVAL;
8495 }
8496
8497 write_nic_memory(priv->net_dev, addr, len, firmware_data);
James Ketrenosee8e3652005-09-14 09:47:29 -05008498 firmware_data += len;
James Ketrenos2c86c272005-03-23 17:32:29 -06008499 firmware_data_left -= len;
8500 }
8501
8502 return 0;
8503}
8504
8505struct symbol_alive_response {
8506 u8 cmd_id;
8507 u8 seq_num;
8508 u8 ucode_rev;
8509 u8 eeprom_valid;
8510 u16 valid_flags;
8511 u8 IEEE_addr[6];
8512 u16 flags;
8513 u16 pcb_rev;
8514 u16 clock_settle_time; // 1us LSB
8515 u16 powerup_settle_time; // 1us LSB
8516 u16 hop_settle_time; // 1us LSB
8517 u8 date[3]; // month, day, year
8518 u8 time[2]; // hours, minutes
8519 u8 ucode_valid;
8520};
8521
Jiri Bencc4aee8c2005-08-25 20:04:43 -04008522static int ipw2100_ucode_download(struct ipw2100_priv *priv,
8523 struct ipw2100_fw *fw)
James Ketrenos2c86c272005-03-23 17:32:29 -06008524{
8525 struct net_device *dev = priv->net_dev;
8526 const unsigned char *microcode_data = fw->uc.data;
8527 unsigned int microcode_data_left = fw->uc.size;
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008528 void __iomem *reg = (void __iomem *)dev->base_addr;
James Ketrenos2c86c272005-03-23 17:32:29 -06008529
8530 struct symbol_alive_response response;
8531 int i, j;
8532 u8 data;
8533
8534 /* Symbol control */
8535 write_nic_word(dev, IPW2100_CONTROL_REG, 0x703);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008536 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008537 write_nic_word(dev, IPW2100_CONTROL_REG, 0x707);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008538 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008539
8540 /* HW config */
8541 write_nic_byte(dev, 0x210014, 0x72); /* fifo width =16 */
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008542 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008543 write_nic_byte(dev, 0x210014, 0x72); /* fifo width =16 */
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008544 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008545
8546 /* EN_CS_ACCESS bit to reset control store pointer */
8547 write_nic_byte(dev, 0x210000, 0x40);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008548 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008549 write_nic_byte(dev, 0x210000, 0x0);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008550 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008551 write_nic_byte(dev, 0x210000, 0x40);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008552 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008553
8554 /* copy microcode from buffer into Symbol */
8555
8556 while (microcode_data_left > 0) {
8557 write_nic_byte(dev, 0x210010, *microcode_data++);
8558 write_nic_byte(dev, 0x210010, *microcode_data++);
8559 microcode_data_left -= 2;
8560 }
8561
8562 /* EN_CS_ACCESS bit to reset the control store pointer */
8563 write_nic_byte(dev, 0x210000, 0x0);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008564 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008565
8566 /* Enable System (Reg 0)
8567 * first enable causes garbage in RX FIFO */
8568 write_nic_byte(dev, 0x210000, 0x0);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008569 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008570 write_nic_byte(dev, 0x210000, 0x80);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008571 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008572
8573 /* Reset External Baseband Reg */
8574 write_nic_word(dev, IPW2100_CONTROL_REG, 0x703);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008575 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008576 write_nic_word(dev, IPW2100_CONTROL_REG, 0x707);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008577 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008578
8579 /* HW Config (Reg 5) */
8580 write_nic_byte(dev, 0x210014, 0x72); // fifo width =16
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008581 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008582 write_nic_byte(dev, 0x210014, 0x72); // fifo width =16
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008583 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008584
8585 /* Enable System (Reg 0)
8586 * second enable should be OK */
8587 write_nic_byte(dev, 0x210000, 0x00); // clear enable system
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008588 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008589 write_nic_byte(dev, 0x210000, 0x80); // set enable system
8590
8591 /* check Symbol is enabled - upped this from 5 as it wasn't always
8592 * catching the update */
8593 for (i = 0; i < 10; i++) {
8594 udelay(10);
8595
8596 /* check Dino is enabled bit */
8597 read_nic_byte(dev, 0x210000, &data);
8598 if (data & 0x1)
8599 break;
8600 }
8601
8602 if (i == 10) {
Jiri Benc797b4f72005-08-25 20:03:27 -04008603 printk(KERN_ERR DRV_NAME ": %s: Error initializing Symbol\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06008604 dev->name);
8605 return -EIO;
8606 }
8607
8608 /* Get Symbol alive response */
8609 for (i = 0; i < 30; i++) {
8610 /* Read alive response structure */
8611 for (j = 0;
James Ketrenosee8e3652005-09-14 09:47:29 -05008612 j < (sizeof(struct symbol_alive_response) >> 1); j++)
8613 read_nic_word(dev, 0x210004, ((u16 *) & response) + j);
James Ketrenos2c86c272005-03-23 17:32:29 -06008614
James Ketrenosee8e3652005-09-14 09:47:29 -05008615 if ((response.cmd_id == 1) && (response.ucode_valid == 0x1))
James Ketrenos2c86c272005-03-23 17:32:29 -06008616 break;
8617 udelay(10);
8618 }
8619
8620 if (i == 30) {
James Ketrenosee8e3652005-09-14 09:47:29 -05008621 printk(KERN_ERR DRV_NAME
8622 ": %s: No response from Symbol - hw not alive\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06008623 dev->name);
James Ketrenosee8e3652005-09-14 09:47:29 -05008624 printk_buf(IPW_DL_ERROR, (u8 *) & response, sizeof(response));
James Ketrenos2c86c272005-03-23 17:32:29 -06008625 return -EIO;
8626 }
8627
8628 return 0;
8629}