blob: b73af7789588734b63d8c2c6ab1c09e47a679f76 [file] [log] [blame]
James Ketrenos2c86c272005-03-23 17:32:29 -06001/******************************************************************************
2
3 Copyright(c) 2003 - 2005 Intel Corporation. All rights reserved.
4
5 This program is free software; you can redistribute it and/or modify it
6 under the terms of version 2 of the GNU General Public License as
7 published by the Free Software Foundation.
8
9 This program is distributed in the hope that it will be useful, but WITHOUT
10 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 more details.
13
14 You should have received a copy of the GNU General Public License along with
15 this program; if not, write to the Free Software Foundation, Inc., 59
16 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
18 The full GNU General Public License is included in this distribution in the
19 file called LICENSE.
20
21 Contact Information:
22 James P. Ketrenos <ipw2100-admin@linux.intel.com>
23 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
24
25 Portions of this file are based on the sample_* files provided by Wireless
26 Extensions 0.26 package and copyright (c) 1997-2003 Jean Tourrilhes
27 <jt@hpl.hp.com>
28
29 Portions of this file are based on the Host AP project,
30 Copyright (c) 2001-2002, SSH Communications Security Corp and Jouni Malinen
31 <jkmaline@cc.hut.fi>
32 Copyright (c) 2002-2003, Jouni Malinen <jkmaline@cc.hut.fi>
33
34 Portions of ipw2100_mod_firmware_load, ipw2100_do_mod_firmware_load, and
35 ipw2100_fw_load are loosely based on drivers/sound/sound_firmware.c
36 available in the 2.4.25 kernel sources, and are copyright (c) Alan Cox
37
38******************************************************************************/
39/*
40
41 Initial driver on which this is based was developed by Janusz Gorycki,
42 Maciej Urbaniak, and Maciej Sosnowski.
43
44 Promiscuous mode support added by Jacek Wysoczynski and Maciej Urbaniak.
45
46Theory of Operation
47
48Tx - Commands and Data
49
50Firmware and host share a circular queue of Transmit Buffer Descriptors (TBDs)
51Each TBD contains a pointer to the physical (dma_addr_t) address of data being
52sent to the firmware as well as the length of the data.
53
54The host writes to the TBD queue at the WRITE index. The WRITE index points
55to the _next_ packet to be written and is advanced when after the TBD has been
56filled.
57
58The firmware pulls from the TBD queue at the READ index. The READ index points
59to the currently being read entry, and is advanced once the firmware is
60done with a packet.
61
62When data is sent to the firmware, the first TBD is used to indicate to the
63firmware if a Command or Data is being sent. If it is Command, all of the
64command information is contained within the physical address referred to by the
65TBD. If it is Data, the first TBD indicates the type of data packet, number
66of fragments, etc. The next TBD then referrs to the actual packet location.
67
68The Tx flow cycle is as follows:
69
701) ipw2100_tx() is called by kernel with SKB to transmit
712) Packet is move from the tx_free_list and appended to the transmit pending
72 list (tx_pend_list)
733) work is scheduled to move pending packets into the shared circular queue.
744) when placing packet in the circular queue, the incoming SKB is DMA mapped
75 to a physical address. That address is entered into a TBD. Two TBDs are
76 filled out. The first indicating a data packet, the second referring to the
77 actual payload data.
785) the packet is removed from tx_pend_list and placed on the end of the
79 firmware pending list (fw_pend_list)
806) firmware is notified that the WRITE index has
817) Once the firmware has processed the TBD, INTA is triggered.
828) For each Tx interrupt received from the firmware, the READ index is checked
83 to see which TBDs are done being processed.
849) For each TBD that has been processed, the ISR pulls the oldest packet
85 from the fw_pend_list.
8610)The packet structure contained in the fw_pend_list is then used
87 to unmap the DMA address and to free the SKB originally passed to the driver
88 from the kernel.
8911)The packet structure is placed onto the tx_free_list
90
91The above steps are the same for commands, only the msg_free_list/msg_pend_list
92are used instead of tx_free_list/tx_pend_list
93
94...
95
96Critical Sections / Locking :
97
98There are two locks utilized. The first is the low level lock (priv->low_lock)
99that protects the following:
100
101- Access to the Tx/Rx queue lists via priv->low_lock. The lists are as follows:
102
103 tx_free_list : Holds pre-allocated Tx buffers.
104 TAIL modified in __ipw2100_tx_process()
105 HEAD modified in ipw2100_tx()
106
107 tx_pend_list : Holds used Tx buffers waiting to go into the TBD ring
108 TAIL modified ipw2100_tx()
Jiri Benc19f7f742005-08-25 20:02:10 -0400109 HEAD modified by ipw2100_tx_send_data()
James Ketrenos2c86c272005-03-23 17:32:29 -0600110
111 msg_free_list : Holds pre-allocated Msg (Command) buffers
112 TAIL modified in __ipw2100_tx_process()
113 HEAD modified in ipw2100_hw_send_command()
114
115 msg_pend_list : Holds used Msg buffers waiting to go into the TBD ring
116 TAIL modified in ipw2100_hw_send_command()
Jiri Benc19f7f742005-08-25 20:02:10 -0400117 HEAD modified in ipw2100_tx_send_commands()
James Ketrenos2c86c272005-03-23 17:32:29 -0600118
119 The flow of data on the TX side is as follows:
120
121 MSG_FREE_LIST + COMMAND => MSG_PEND_LIST => TBD => MSG_FREE_LIST
122 TX_FREE_LIST + DATA => TX_PEND_LIST => TBD => TX_FREE_LIST
123
124 The methods that work on the TBD ring are protected via priv->low_lock.
125
126- The internal data state of the device itself
127- Access to the firmware read/write indexes for the BD queues
128 and associated logic
129
130All external entry functions are locked with the priv->action_lock to ensure
131that only one external action is invoked at a time.
132
133
134*/
135
136#include <linux/compiler.h>
137#include <linux/config.h>
138#include <linux/errno.h>
139#include <linux/if_arp.h>
140#include <linux/in6.h>
141#include <linux/in.h>
142#include <linux/ip.h>
143#include <linux/kernel.h>
144#include <linux/kmod.h>
145#include <linux/module.h>
146#include <linux/netdevice.h>
147#include <linux/ethtool.h>
148#include <linux/pci.h>
Tobias Klauser05743d12005-06-20 14:28:40 -0700149#include <linux/dma-mapping.h>
James Ketrenos2c86c272005-03-23 17:32:29 -0600150#include <linux/proc_fs.h>
151#include <linux/skbuff.h>
152#include <asm/uaccess.h>
153#include <asm/io.h>
154#define __KERNEL_SYSCALLS__
155#include <linux/fs.h>
156#include <linux/mm.h>
157#include <linux/slab.h>
158#include <linux/unistd.h>
159#include <linux/stringify.h>
160#include <linux/tcp.h>
161#include <linux/types.h>
162#include <linux/version.h>
163#include <linux/time.h>
164#include <linux/firmware.h>
165#include <linux/acpi.h>
166#include <linux/ctype.h>
167
168#include "ipw2100.h"
169
James Ketrenos9ef539d2005-09-15 00:42:42 -0500170#define IPW2100_VERSION "1.1.3"
James Ketrenos2c86c272005-03-23 17:32:29 -0600171
172#define DRV_NAME "ipw2100"
173#define DRV_VERSION IPW2100_VERSION
174#define DRV_DESCRIPTION "Intel(R) PRO/Wireless 2100 Network Driver"
James Ketrenos82328352005-08-24 22:33:31 -0500175#define DRV_COPYRIGHT "Copyright(c) 2003-2005 Intel Corporation"
James Ketrenos2c86c272005-03-23 17:32:29 -0600176
177/* Debugging stuff */
Brice Goglin0f52bf92005-12-01 01:41:46 -0800178#ifdef CONFIG_IPW2100_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
Brice Goglin0f52bf92005-12-01 01:41:46 -0800211#ifdef CONFIG_IPW2100_DEBUG
Jiri Bencc4aee8c2005-08-25 20:04:43 -0400212#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)
Brice Goglin0f52bf92005-12-01 01:41:46 -0800222#endif /* CONFIG_IPW2100_DEBUG */
James Ketrenos2c86c272005-03-23 17:32:29 -0600223
Brice Goglin0f52bf92005-12-01 01:41:46 -0800224#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -0600225static 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
Arjan van de Ven858119e2006-01-14 13:20:43 -0800414static 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
Arjan van de Ven858119e2006-01-14 13:20:43 -0800452static 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
Arjan van de Ven858119e2006-01-14 13:20:43 -0800660static void schedule_reset(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -0600661{
662 unsigned long now = get_seconds();
663
664 /* If we haven't received a reset request within the backoff period,
665 * then we can reset the backoff interval so this reset occurs
666 * immediately */
667 if (priv->reset_backoff &&
668 (now - priv->last_reset > priv->reset_backoff))
669 priv->reset_backoff = 0;
670
671 priv->last_reset = get_seconds();
672
673 if (!(priv->status & STATUS_RESET_PENDING)) {
674 IPW_DEBUG_INFO("%s: Scheduling firmware restart (%ds).\n",
675 priv->net_dev->name, priv->reset_backoff);
676 netif_carrier_off(priv->net_dev);
677 netif_stop_queue(priv->net_dev);
678 priv->status |= STATUS_RESET_PENDING;
679 if (priv->reset_backoff)
680 queue_delayed_work(priv->workqueue, &priv->reset_work,
681 priv->reset_backoff * HZ);
682 else
683 queue_work(priv->workqueue, &priv->reset_work);
684
685 if (priv->reset_backoff < MAX_RESET_BACKOFF)
686 priv->reset_backoff++;
687
688 wake_up_interruptible(&priv->wait_command_queue);
689 } else
690 IPW_DEBUG_INFO("%s: Firmware restart already in progress.\n",
691 priv->net_dev->name);
692
693}
694
695#define HOST_COMPLETE_TIMEOUT (2 * HZ)
696static int ipw2100_hw_send_command(struct ipw2100_priv *priv,
James Ketrenosee8e3652005-09-14 09:47:29 -0500697 struct host_command *cmd)
James Ketrenos2c86c272005-03-23 17:32:29 -0600698{
699 struct list_head *element;
700 struct ipw2100_tx_packet *packet;
701 unsigned long flags;
702 int err = 0;
703
704 IPW_DEBUG_HC("Sending %s command (#%d), %d bytes\n",
705 command_types[cmd->host_command], cmd->host_command,
706 cmd->host_command_length);
James Ketrenosee8e3652005-09-14 09:47:29 -0500707 printk_buf(IPW_DL_HC, (u8 *) cmd->host_command_parameters,
James Ketrenos2c86c272005-03-23 17:32:29 -0600708 cmd->host_command_length);
709
710 spin_lock_irqsave(&priv->low_lock, flags);
711
712 if (priv->fatal_error) {
James Ketrenosee8e3652005-09-14 09:47:29 -0500713 IPW_DEBUG_INFO
714 ("Attempt to send command while hardware in fatal error condition.\n");
James Ketrenos2c86c272005-03-23 17:32:29 -0600715 err = -EIO;
716 goto fail_unlock;
717 }
718
719 if (!(priv->status & STATUS_RUNNING)) {
James Ketrenosee8e3652005-09-14 09:47:29 -0500720 IPW_DEBUG_INFO
721 ("Attempt to send command while hardware is not running.\n");
James Ketrenos2c86c272005-03-23 17:32:29 -0600722 err = -EIO;
723 goto fail_unlock;
724 }
725
726 if (priv->status & STATUS_CMD_ACTIVE) {
James Ketrenosee8e3652005-09-14 09:47:29 -0500727 IPW_DEBUG_INFO
728 ("Attempt to send command while another command is pending.\n");
James Ketrenos2c86c272005-03-23 17:32:29 -0600729 err = -EBUSY;
730 goto fail_unlock;
731 }
732
733 if (list_empty(&priv->msg_free_list)) {
734 IPW_DEBUG_INFO("no available msg buffers\n");
735 goto fail_unlock;
736 }
737
738 priv->status |= STATUS_CMD_ACTIVE;
739 priv->messages_sent++;
740
741 element = priv->msg_free_list.next;
742
743 packet = list_entry(element, struct ipw2100_tx_packet, list);
744 packet->jiffy_start = jiffies;
745
746 /* initialize the firmware command packet */
747 packet->info.c_struct.cmd->host_command_reg = cmd->host_command;
748 packet->info.c_struct.cmd->host_command_reg1 = cmd->host_command1;
James Ketrenosee8e3652005-09-14 09:47:29 -0500749 packet->info.c_struct.cmd->host_command_len_reg =
750 cmd->host_command_length;
James Ketrenos2c86c272005-03-23 17:32:29 -0600751 packet->info.c_struct.cmd->sequence = cmd->host_command_sequence;
752
753 memcpy(packet->info.c_struct.cmd->host_command_params_reg,
754 cmd->host_command_parameters,
755 sizeof(packet->info.c_struct.cmd->host_command_params_reg));
756
757 list_del(element);
758 DEC_STAT(&priv->msg_free_stat);
759
760 list_add_tail(element, &priv->msg_pend_list);
761 INC_STAT(&priv->msg_pend_stat);
762
Jiri Benc19f7f742005-08-25 20:02:10 -0400763 ipw2100_tx_send_commands(priv);
764 ipw2100_tx_send_data(priv);
James Ketrenos2c86c272005-03-23 17:32:29 -0600765
766 spin_unlock_irqrestore(&priv->low_lock, flags);
767
768 /*
769 * We must wait for this command to complete before another
770 * command can be sent... but if we wait more than 3 seconds
771 * then there is a problem.
772 */
773
James Ketrenosee8e3652005-09-14 09:47:29 -0500774 err =
775 wait_event_interruptible_timeout(priv->wait_command_queue,
776 !(priv->
777 status & STATUS_CMD_ACTIVE),
778 HOST_COMPLETE_TIMEOUT);
James Ketrenos2c86c272005-03-23 17:32:29 -0600779
780 if (err == 0) {
781 IPW_DEBUG_INFO("Command completion failed out after %dms.\n",
James Ketrenos82328352005-08-24 22:33:31 -0500782 1000 * (HOST_COMPLETE_TIMEOUT / HZ));
James Ketrenos2c86c272005-03-23 17:32:29 -0600783 priv->fatal_error = IPW2100_ERR_MSG_TIMEOUT;
784 priv->status &= ~STATUS_CMD_ACTIVE;
785 schedule_reset(priv);
786 return -EIO;
787 }
788
789 if (priv->fatal_error) {
Jiri Benc797b4f72005-08-25 20:03:27 -0400790 printk(KERN_WARNING DRV_NAME ": %s: firmware fatal error\n",
James Ketrenos2c86c272005-03-23 17:32:29 -0600791 priv->net_dev->name);
792 return -EIO;
793 }
794
795 /* !!!!! HACK TEST !!!!!
796 * When lots of debug trace statements are enabled, the driver
797 * doesn't seem to have as many firmware restart cycles...
798 *
799 * As a test, we're sticking in a 1/100s delay here */
Nishanth Aravamudan3173c892005-09-11 02:09:55 -0700800 schedule_timeout_uninterruptible(msecs_to_jiffies(10));
James Ketrenos2c86c272005-03-23 17:32:29 -0600801
802 return 0;
803
James Ketrenosee8e3652005-09-14 09:47:29 -0500804 fail_unlock:
James Ketrenos2c86c272005-03-23 17:32:29 -0600805 spin_unlock_irqrestore(&priv->low_lock, flags);
806
807 return err;
808}
809
James Ketrenos2c86c272005-03-23 17:32:29 -0600810/*
811 * Verify the values and data access of the hardware
812 * No locks needed or used. No functions called.
813 */
814static int ipw2100_verify(struct ipw2100_priv *priv)
815{
816 u32 data1, data2;
817 u32 address;
818
819 u32 val1 = 0x76543210;
820 u32 val2 = 0xFEDCBA98;
821
822 /* Domain 0 check - all values should be DOA_DEBUG */
823 for (address = IPW_REG_DOA_DEBUG_AREA_START;
James Ketrenosee8e3652005-09-14 09:47:29 -0500824 address < IPW_REG_DOA_DEBUG_AREA_END; address += sizeof(u32)) {
James Ketrenos2c86c272005-03-23 17:32:29 -0600825 read_register(priv->net_dev, address, &data1);
826 if (data1 != IPW_DATA_DOA_DEBUG_VALUE)
827 return -EIO;
828 }
829
830 /* Domain 1 check - use arbitrary read/write compare */
831 for (address = 0; address < 5; address++) {
832 /* The memory area is not used now */
833 write_register(priv->net_dev, IPW_REG_DOMAIN_1_OFFSET + 0x32,
834 val1);
835 write_register(priv->net_dev, IPW_REG_DOMAIN_1_OFFSET + 0x36,
836 val2);
837 read_register(priv->net_dev, IPW_REG_DOMAIN_1_OFFSET + 0x32,
838 &data1);
839 read_register(priv->net_dev, IPW_REG_DOMAIN_1_OFFSET + 0x36,
840 &data2);
841 if (val1 == data1 && val2 == data2)
842 return 0;
843 }
844
845 return -EIO;
846}
847
848/*
849 *
850 * Loop until the CARD_DISABLED bit is the same value as the
851 * supplied parameter
852 *
853 * TODO: See if it would be more efficient to do a wait/wake
854 * cycle and have the completion event trigger the wakeup
855 *
856 */
857#define IPW_CARD_DISABLE_COMPLETE_WAIT 100 // 100 milli
858static int ipw2100_wait_for_card_state(struct ipw2100_priv *priv, int state)
859{
860 int i;
861 u32 card_state;
862 u32 len = sizeof(card_state);
863 int err;
864
865 for (i = 0; i <= IPW_CARD_DISABLE_COMPLETE_WAIT * 1000; i += 50) {
866 err = ipw2100_get_ordinal(priv, IPW_ORD_CARD_DISABLED,
867 &card_state, &len);
868 if (err) {
869 IPW_DEBUG_INFO("Query of CARD_DISABLED ordinal "
870 "failed.\n");
871 return 0;
872 }
873
874 /* We'll break out if either the HW state says it is
875 * in the state we want, or if HOST_COMPLETE command
876 * finishes */
877 if ((card_state == state) ||
878 ((priv->status & STATUS_ENABLED) ?
879 IPW_HW_STATE_ENABLED : IPW_HW_STATE_DISABLED) == state) {
880 if (state == IPW_HW_STATE_ENABLED)
881 priv->status |= STATUS_ENABLED;
882 else
883 priv->status &= ~STATUS_ENABLED;
884
885 return 0;
886 }
887
888 udelay(50);
889 }
890
891 IPW_DEBUG_INFO("ipw2100_wait_for_card_state to %s state timed out\n",
892 state ? "DISABLED" : "ENABLED");
893 return -EIO;
894}
895
James Ketrenos2c86c272005-03-23 17:32:29 -0600896/*********************************************************************
897 Procedure : sw_reset_and_clock
898 Purpose : Asserts s/w reset, asserts clock initialization
899 and waits for clock stabilization
900 ********************************************************************/
901static int sw_reset_and_clock(struct ipw2100_priv *priv)
902{
903 int i;
904 u32 r;
905
906 // assert s/w reset
907 write_register(priv->net_dev, IPW_REG_RESET_REG,
908 IPW_AUX_HOST_RESET_REG_SW_RESET);
909
910 // wait for clock stabilization
911 for (i = 0; i < 1000; i++) {
912 udelay(IPW_WAIT_RESET_ARC_COMPLETE_DELAY);
913
914 // check clock ready bit
915 read_register(priv->net_dev, IPW_REG_RESET_REG, &r);
916 if (r & IPW_AUX_HOST_RESET_REG_PRINCETON_RESET)
917 break;
918 }
919
920 if (i == 1000)
921 return -EIO; // TODO: better error value
922
923 /* set "initialization complete" bit to move adapter to
924 * D0 state */
925 write_register(priv->net_dev, IPW_REG_GP_CNTRL,
926 IPW_AUX_HOST_GP_CNTRL_BIT_INIT_DONE);
927
928 /* wait for clock stabilization */
929 for (i = 0; i < 10000; i++) {
930 udelay(IPW_WAIT_CLOCK_STABILIZATION_DELAY * 4);
931
932 /* check clock ready bit */
933 read_register(priv->net_dev, IPW_REG_GP_CNTRL, &r);
934 if (r & IPW_AUX_HOST_GP_CNTRL_BIT_CLOCK_READY)
935 break;
936 }
937
938 if (i == 10000)
939 return -EIO; /* TODO: better error value */
940
James Ketrenos2c86c272005-03-23 17:32:29 -0600941 /* set D0 standby bit */
942 read_register(priv->net_dev, IPW_REG_GP_CNTRL, &r);
943 write_register(priv->net_dev, IPW_REG_GP_CNTRL,
944 r | IPW_AUX_HOST_GP_CNTRL_BIT_HOST_ALLOWS_STANDBY);
James Ketrenos2c86c272005-03-23 17:32:29 -0600945
946 return 0;
947}
948
949/*********************************************************************
Pavel Machek8724a112005-06-20 14:28:43 -0700950 Procedure : ipw2100_download_firmware
James Ketrenos2c86c272005-03-23 17:32:29 -0600951 Purpose : Initiaze adapter after power on.
952 The sequence is:
953 1. assert s/w reset first!
954 2. awake clocks & wait for clock stabilization
955 3. hold ARC (don't ask me why...)
956 4. load Dino ucode and reset/clock init again
957 5. zero-out shared mem
958 6. download f/w
959 *******************************************************************/
960static int ipw2100_download_firmware(struct ipw2100_priv *priv)
961{
962 u32 address;
963 int err;
964
965#ifndef CONFIG_PM
966 /* Fetch the firmware and microcode */
967 struct ipw2100_fw ipw2100_firmware;
968#endif
969
970 if (priv->fatal_error) {
971 IPW_DEBUG_ERROR("%s: ipw2100_download_firmware called after "
James Ketrenosee8e3652005-09-14 09:47:29 -0500972 "fatal error %d. Interface must be brought down.\n",
973 priv->net_dev->name, priv->fatal_error);
James Ketrenos2c86c272005-03-23 17:32:29 -0600974 return -EINVAL;
975 }
James Ketrenos2c86c272005-03-23 17:32:29 -0600976#ifdef CONFIG_PM
977 if (!ipw2100_firmware.version) {
978 err = ipw2100_get_firmware(priv, &ipw2100_firmware);
979 if (err) {
980 IPW_DEBUG_ERROR("%s: ipw2100_get_firmware failed: %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -0500981 priv->net_dev->name, err);
James Ketrenos2c86c272005-03-23 17:32:29 -0600982 priv->fatal_error = IPW2100_ERR_FW_LOAD;
983 goto fail;
984 }
985 }
986#else
987 err = ipw2100_get_firmware(priv, &ipw2100_firmware);
988 if (err) {
989 IPW_DEBUG_ERROR("%s: ipw2100_get_firmware failed: %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -0500990 priv->net_dev->name, err);
James Ketrenos2c86c272005-03-23 17:32:29 -0600991 priv->fatal_error = IPW2100_ERR_FW_LOAD;
992 goto fail;
993 }
994#endif
995 priv->firmware_version = ipw2100_firmware.version;
996
997 /* s/w reset and clock stabilization */
998 err = sw_reset_and_clock(priv);
999 if (err) {
1000 IPW_DEBUG_ERROR("%s: sw_reset_and_clock failed: %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05001001 priv->net_dev->name, err);
James Ketrenos2c86c272005-03-23 17:32:29 -06001002 goto fail;
1003 }
1004
1005 err = ipw2100_verify(priv);
1006 if (err) {
1007 IPW_DEBUG_ERROR("%s: ipw2100_verify failed: %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05001008 priv->net_dev->name, err);
James Ketrenos2c86c272005-03-23 17:32:29 -06001009 goto fail;
1010 }
1011
1012 /* Hold ARC */
1013 write_nic_dword(priv->net_dev,
James Ketrenosee8e3652005-09-14 09:47:29 -05001014 IPW_INTERNAL_REGISTER_HALT_AND_RESET, 0x80000000);
James Ketrenos2c86c272005-03-23 17:32:29 -06001015
1016 /* allow ARC to run */
1017 write_register(priv->net_dev, IPW_REG_RESET_REG, 0);
1018
1019 /* load microcode */
1020 err = ipw2100_ucode_download(priv, &ipw2100_firmware);
1021 if (err) {
Jiri Benc797b4f72005-08-25 20:03:27 -04001022 printk(KERN_ERR DRV_NAME ": %s: Error loading microcode: %d\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06001023 priv->net_dev->name, err);
1024 goto fail;
1025 }
1026
1027 /* release ARC */
1028 write_nic_dword(priv->net_dev,
James Ketrenosee8e3652005-09-14 09:47:29 -05001029 IPW_INTERNAL_REGISTER_HALT_AND_RESET, 0x00000000);
James Ketrenos2c86c272005-03-23 17:32:29 -06001030
1031 /* s/w reset and clock stabilization (again!!!) */
1032 err = sw_reset_and_clock(priv);
1033 if (err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001034 printk(KERN_ERR DRV_NAME
1035 ": %s: sw_reset_and_clock failed: %d\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06001036 priv->net_dev->name, err);
1037 goto fail;
1038 }
1039
1040 /* load f/w */
1041 err = ipw2100_fw_download(priv, &ipw2100_firmware);
1042 if (err) {
1043 IPW_DEBUG_ERROR("%s: Error loading firmware: %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05001044 priv->net_dev->name, err);
James Ketrenos2c86c272005-03-23 17:32:29 -06001045 goto fail;
1046 }
James Ketrenos2c86c272005-03-23 17:32:29 -06001047#ifndef CONFIG_PM
1048 /*
1049 * When the .resume method of the driver is called, the other
1050 * part of the system, i.e. the ide driver could still stay in
1051 * the suspend stage. This prevents us from loading the firmware
1052 * from the disk. --YZ
1053 */
1054
1055 /* free any storage allocated for firmware image */
1056 ipw2100_release_firmware(priv, &ipw2100_firmware);
1057#endif
1058
1059 /* zero out Domain 1 area indirectly (Si requirement) */
1060 for (address = IPW_HOST_FW_SHARED_AREA0;
1061 address < IPW_HOST_FW_SHARED_AREA0_END; address += 4)
1062 write_nic_dword(priv->net_dev, address, 0);
1063 for (address = IPW_HOST_FW_SHARED_AREA1;
1064 address < IPW_HOST_FW_SHARED_AREA1_END; address += 4)
1065 write_nic_dword(priv->net_dev, address, 0);
1066 for (address = IPW_HOST_FW_SHARED_AREA2;
1067 address < IPW_HOST_FW_SHARED_AREA2_END; address += 4)
1068 write_nic_dword(priv->net_dev, address, 0);
1069 for (address = IPW_HOST_FW_SHARED_AREA3;
1070 address < IPW_HOST_FW_SHARED_AREA3_END; address += 4)
1071 write_nic_dword(priv->net_dev, address, 0);
1072 for (address = IPW_HOST_FW_INTERRUPT_AREA;
1073 address < IPW_HOST_FW_INTERRUPT_AREA_END; address += 4)
1074 write_nic_dword(priv->net_dev, address, 0);
1075
1076 return 0;
1077
James Ketrenosee8e3652005-09-14 09:47:29 -05001078 fail:
James Ketrenos2c86c272005-03-23 17:32:29 -06001079 ipw2100_release_firmware(priv, &ipw2100_firmware);
1080 return err;
1081}
1082
1083static inline void ipw2100_enable_interrupts(struct ipw2100_priv *priv)
1084{
1085 if (priv->status & STATUS_INT_ENABLED)
1086 return;
1087 priv->status |= STATUS_INT_ENABLED;
1088 write_register(priv->net_dev, IPW_REG_INTA_MASK, IPW_INTERRUPT_MASK);
1089}
1090
1091static inline void ipw2100_disable_interrupts(struct ipw2100_priv *priv)
1092{
1093 if (!(priv->status & STATUS_INT_ENABLED))
1094 return;
1095 priv->status &= ~STATUS_INT_ENABLED;
1096 write_register(priv->net_dev, IPW_REG_INTA_MASK, 0x0);
1097}
1098
James Ketrenos2c86c272005-03-23 17:32:29 -06001099static void ipw2100_initialize_ordinals(struct ipw2100_priv *priv)
1100{
1101 struct ipw2100_ordinals *ord = &priv->ordinals;
1102
1103 IPW_DEBUG_INFO("enter\n");
1104
1105 read_register(priv->net_dev, IPW_MEM_HOST_SHARED_ORDINALS_TABLE_1,
1106 &ord->table1_addr);
1107
1108 read_register(priv->net_dev, IPW_MEM_HOST_SHARED_ORDINALS_TABLE_2,
1109 &ord->table2_addr);
1110
1111 read_nic_dword(priv->net_dev, ord->table1_addr, &ord->table1_size);
1112 read_nic_dword(priv->net_dev, ord->table2_addr, &ord->table2_size);
1113
1114 ord->table2_size &= 0x0000FFFF;
1115
1116 IPW_DEBUG_INFO("table 1 size: %d\n", ord->table1_size);
1117 IPW_DEBUG_INFO("table 2 size: %d\n", ord->table2_size);
1118 IPW_DEBUG_INFO("exit\n");
1119}
1120
1121static inline void ipw2100_hw_set_gpio(struct ipw2100_priv *priv)
1122{
1123 u32 reg = 0;
1124 /*
1125 * Set GPIO 3 writable by FW; GPIO 1 writable
1126 * by driver and enable clock
1127 */
1128 reg = (IPW_BIT_GPIO_GPIO3_MASK | IPW_BIT_GPIO_GPIO1_ENABLE |
1129 IPW_BIT_GPIO_LED_OFF);
1130 write_register(priv->net_dev, IPW_REG_GPIO, reg);
1131}
1132
Arjan van de Ven858119e2006-01-14 13:20:43 -08001133static int rf_kill_active(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06001134{
1135#define MAX_RF_KILL_CHECKS 5
1136#define RF_KILL_CHECK_DELAY 40
James Ketrenos2c86c272005-03-23 17:32:29 -06001137
1138 unsigned short value = 0;
1139 u32 reg = 0;
1140 int i;
1141
1142 if (!(priv->hw_features & HW_FEATURE_RFKILL)) {
1143 priv->status &= ~STATUS_RF_KILL_HW;
1144 return 0;
1145 }
1146
1147 for (i = 0; i < MAX_RF_KILL_CHECKS; i++) {
1148 udelay(RF_KILL_CHECK_DELAY);
1149 read_register(priv->net_dev, IPW_REG_GPIO, &reg);
1150 value = (value << 1) | ((reg & IPW_BIT_GPIO_RF_KILL) ? 0 : 1);
1151 }
1152
1153 if (value == 0)
1154 priv->status |= STATUS_RF_KILL_HW;
1155 else
1156 priv->status &= ~STATUS_RF_KILL_HW;
1157
1158 return (value == 0);
1159}
1160
1161static int ipw2100_get_hw_features(struct ipw2100_priv *priv)
1162{
1163 u32 addr, len;
1164 u32 val;
1165
1166 /*
1167 * EEPROM_SRAM_DB_START_ADDRESS using ordinal in ordinal table 1
1168 */
1169 len = sizeof(addr);
James Ketrenosee8e3652005-09-14 09:47:29 -05001170 if (ipw2100_get_ordinal
1171 (priv, IPW_ORD_EEPROM_SRAM_DB_BLOCK_START_ADDRESS, &addr, &len)) {
James Ketrenos2c86c272005-03-23 17:32:29 -06001172 IPW_DEBUG_INFO("failed querying ordinals at line %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05001173 __LINE__);
James Ketrenos2c86c272005-03-23 17:32:29 -06001174 return -EIO;
1175 }
1176
1177 IPW_DEBUG_INFO("EEPROM address: %08X\n", addr);
1178
1179 /*
1180 * EEPROM version is the byte at offset 0xfd in firmware
1181 * We read 4 bytes, then shift out the byte we actually want */
1182 read_nic_dword(priv->net_dev, addr + 0xFC, &val);
1183 priv->eeprom_version = (val >> 24) & 0xFF;
1184 IPW_DEBUG_INFO("EEPROM version: %d\n", priv->eeprom_version);
1185
James Ketrenosee8e3652005-09-14 09:47:29 -05001186 /*
James Ketrenos2c86c272005-03-23 17:32:29 -06001187 * HW RF Kill enable is bit 0 in byte at offset 0x21 in firmware
1188 *
1189 * notice that the EEPROM bit is reverse polarity, i.e.
1190 * bit = 0 signifies HW RF kill switch is supported
1191 * bit = 1 signifies HW RF kill switch is NOT supported
1192 */
1193 read_nic_dword(priv->net_dev, addr + 0x20, &val);
1194 if (!((val >> 24) & 0x01))
1195 priv->hw_features |= HW_FEATURE_RFKILL;
1196
1197 IPW_DEBUG_INFO("HW RF Kill: %ssupported.\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05001198 (priv->hw_features & HW_FEATURE_RFKILL) ? "" : "not ");
James Ketrenos2c86c272005-03-23 17:32:29 -06001199
1200 return 0;
1201}
1202
1203/*
1204 * Start firmware execution after power on and intialization
1205 * The sequence is:
1206 * 1. Release ARC
1207 * 2. Wait for f/w initialization completes;
1208 */
1209static int ipw2100_start_adapter(struct ipw2100_priv *priv)
1210{
James Ketrenos2c86c272005-03-23 17:32:29 -06001211 int i;
1212 u32 inta, inta_mask, gpio;
1213
1214 IPW_DEBUG_INFO("enter\n");
1215
1216 if (priv->status & STATUS_RUNNING)
1217 return 0;
1218
1219 /*
1220 * Initialize the hw - drive adapter to DO state by setting
1221 * init_done bit. Wait for clk_ready bit and Download
1222 * fw & dino ucode
1223 */
1224 if (ipw2100_download_firmware(priv)) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001225 printk(KERN_ERR DRV_NAME
1226 ": %s: Failed to power on the adapter.\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06001227 priv->net_dev->name);
1228 return -EIO;
1229 }
1230
1231 /* Clear the Tx, Rx and Msg queues and the r/w indexes
1232 * in the firmware RBD and TBD ring queue */
1233 ipw2100_queues_initialize(priv);
1234
1235 ipw2100_hw_set_gpio(priv);
1236
1237 /* TODO -- Look at disabling interrupts here to make sure none
1238 * get fired during FW initialization */
1239
1240 /* Release ARC - clear reset bit */
1241 write_register(priv->net_dev, IPW_REG_RESET_REG, 0);
1242
1243 /* wait for f/w intialization complete */
1244 IPW_DEBUG_FW("Waiting for f/w initialization to complete...\n");
1245 i = 5000;
1246 do {
Nishanth Aravamudan3173c892005-09-11 02:09:55 -07001247 schedule_timeout_uninterruptible(msecs_to_jiffies(40));
James Ketrenos2c86c272005-03-23 17:32:29 -06001248 /* Todo... wait for sync command ... */
1249
1250 read_register(priv->net_dev, IPW_REG_INTA, &inta);
1251
1252 /* check "init done" bit */
1253 if (inta & IPW2100_INTA_FW_INIT_DONE) {
1254 /* reset "init done" bit */
1255 write_register(priv->net_dev, IPW_REG_INTA,
1256 IPW2100_INTA_FW_INIT_DONE);
1257 break;
1258 }
1259
1260 /* check error conditions : we check these after the firmware
1261 * check so that if there is an error, the interrupt handler
1262 * will see it and the adapter will be reset */
1263 if (inta &
1264 (IPW2100_INTA_FATAL_ERROR | IPW2100_INTA_PARITY_ERROR)) {
1265 /* clear error conditions */
1266 write_register(priv->net_dev, IPW_REG_INTA,
1267 IPW2100_INTA_FATAL_ERROR |
1268 IPW2100_INTA_PARITY_ERROR);
1269 }
1270 } while (i--);
1271
1272 /* Clear out any pending INTAs since we aren't supposed to have
1273 * interrupts enabled at this point... */
1274 read_register(priv->net_dev, IPW_REG_INTA, &inta);
1275 read_register(priv->net_dev, IPW_REG_INTA_MASK, &inta_mask);
1276 inta &= IPW_INTERRUPT_MASK;
1277 /* Clear out any pending interrupts */
1278 if (inta & inta_mask)
1279 write_register(priv->net_dev, IPW_REG_INTA, inta);
1280
1281 IPW_DEBUG_FW("f/w initialization complete: %s\n",
1282 i ? "SUCCESS" : "FAILED");
1283
1284 if (!i) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001285 printk(KERN_WARNING DRV_NAME
1286 ": %s: Firmware did not initialize.\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06001287 priv->net_dev->name);
1288 return -EIO;
1289 }
1290
1291 /* allow firmware to write to GPIO1 & GPIO3 */
1292 read_register(priv->net_dev, IPW_REG_GPIO, &gpio);
1293
1294 gpio |= (IPW_BIT_GPIO_GPIO1_MASK | IPW_BIT_GPIO_GPIO3_MASK);
1295
1296 write_register(priv->net_dev, IPW_REG_GPIO, gpio);
1297
1298 /* Ready to receive commands */
1299 priv->status |= STATUS_RUNNING;
1300
1301 /* The adapter has been reset; we are not associated */
1302 priv->status &= ~(STATUS_ASSOCIATING | STATUS_ASSOCIATED);
1303
1304 IPW_DEBUG_INFO("exit\n");
1305
1306 return 0;
1307}
1308
1309static inline void ipw2100_reset_fatalerror(struct ipw2100_priv *priv)
1310{
1311 if (!priv->fatal_error)
1312 return;
1313
1314 priv->fatal_errors[priv->fatal_index++] = priv->fatal_error;
1315 priv->fatal_index %= IPW2100_ERROR_QUEUE;
1316 priv->fatal_error = 0;
1317}
1318
James Ketrenos2c86c272005-03-23 17:32:29 -06001319/* NOTE: Our interrupt is disabled when this method is called */
1320static int ipw2100_power_cycle_adapter(struct ipw2100_priv *priv)
1321{
1322 u32 reg;
1323 int i;
1324
1325 IPW_DEBUG_INFO("Power cycling the hardware.\n");
1326
1327 ipw2100_hw_set_gpio(priv);
1328
1329 /* Step 1. Stop Master Assert */
1330 write_register(priv->net_dev, IPW_REG_RESET_REG,
1331 IPW_AUX_HOST_RESET_REG_STOP_MASTER);
1332
1333 /* Step 2. Wait for stop Master Assert
1334 * (not more then 50us, otherwise ret error */
1335 i = 5;
1336 do {
1337 udelay(IPW_WAIT_RESET_MASTER_ASSERT_COMPLETE_DELAY);
1338 read_register(priv->net_dev, IPW_REG_RESET_REG, &reg);
1339
1340 if (reg & IPW_AUX_HOST_RESET_REG_MASTER_DISABLED)
1341 break;
James Ketrenosee8e3652005-09-14 09:47:29 -05001342 } while (i--);
James Ketrenos2c86c272005-03-23 17:32:29 -06001343
1344 priv->status &= ~STATUS_RESET_PENDING;
1345
1346 if (!i) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001347 IPW_DEBUG_INFO
1348 ("exit - waited too long for master assert stop\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06001349 return -EIO;
1350 }
1351
1352 write_register(priv->net_dev, IPW_REG_RESET_REG,
1353 IPW_AUX_HOST_RESET_REG_SW_RESET);
1354
James Ketrenos2c86c272005-03-23 17:32:29 -06001355 /* Reset any fatal_error conditions */
1356 ipw2100_reset_fatalerror(priv);
1357
1358 /* At this point, the adapter is now stopped and disabled */
1359 priv->status &= ~(STATUS_RUNNING | STATUS_ASSOCIATING |
1360 STATUS_ASSOCIATED | STATUS_ENABLED);
1361
1362 return 0;
1363}
1364
1365/*
1366 * Send the CARD_DISABLE_PHY_OFF comamnd to the card to disable it
1367 *
1368 * After disabling, if the card was associated, a STATUS_ASSN_LOST will be sent.
1369 *
1370 * STATUS_CARD_DISABLE_NOTIFICATION will be sent regardless of
1371 * if STATUS_ASSN_LOST is sent.
1372 */
1373static int ipw2100_hw_phy_off(struct ipw2100_priv *priv)
1374{
1375
1376#define HW_PHY_OFF_LOOP_DELAY (HZ / 5000)
1377
1378 struct host_command cmd = {
1379 .host_command = CARD_DISABLE_PHY_OFF,
1380 .host_command_sequence = 0,
1381 .host_command_length = 0,
1382 };
1383 int err, i;
1384 u32 val1, val2;
1385
1386 IPW_DEBUG_HC("CARD_DISABLE_PHY_OFF\n");
1387
1388 /* Turn off the radio */
1389 err = ipw2100_hw_send_command(priv, &cmd);
1390 if (err)
1391 return err;
1392
1393 for (i = 0; i < 2500; i++) {
1394 read_nic_dword(priv->net_dev, IPW2100_CONTROL_REG, &val1);
1395 read_nic_dword(priv->net_dev, IPW2100_COMMAND, &val2);
1396
1397 if ((val1 & IPW2100_CONTROL_PHY_OFF) &&
1398 (val2 & IPW2100_COMMAND_PHY_OFF))
1399 return 0;
1400
Nishanth Aravamudan3173c892005-09-11 02:09:55 -07001401 schedule_timeout_uninterruptible(HW_PHY_OFF_LOOP_DELAY);
James Ketrenos2c86c272005-03-23 17:32:29 -06001402 }
1403
1404 return -EIO;
1405}
1406
James Ketrenos2c86c272005-03-23 17:32:29 -06001407static int ipw2100_enable_adapter(struct ipw2100_priv *priv)
1408{
1409 struct host_command cmd = {
1410 .host_command = HOST_COMPLETE,
1411 .host_command_sequence = 0,
1412 .host_command_length = 0
1413 };
1414 int err = 0;
1415
1416 IPW_DEBUG_HC("HOST_COMPLETE\n");
1417
1418 if (priv->status & STATUS_ENABLED)
1419 return 0;
1420
1421 down(&priv->adapter_sem);
1422
1423 if (rf_kill_active(priv)) {
1424 IPW_DEBUG_HC("Command aborted due to RF kill active.\n");
1425 goto fail_up;
1426 }
1427
1428 err = ipw2100_hw_send_command(priv, &cmd);
1429 if (err) {
1430 IPW_DEBUG_INFO("Failed to send HOST_COMPLETE command\n");
1431 goto fail_up;
1432 }
1433
1434 err = ipw2100_wait_for_card_state(priv, IPW_HW_STATE_ENABLED);
1435 if (err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001436 IPW_DEBUG_INFO("%s: card not responding to init command.\n",
1437 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06001438 goto fail_up;
1439 }
1440
1441 if (priv->stop_hang_check) {
1442 priv->stop_hang_check = 0;
1443 queue_delayed_work(priv->workqueue, &priv->hang_check, HZ / 2);
1444 }
1445
James Ketrenosee8e3652005-09-14 09:47:29 -05001446 fail_up:
James Ketrenos2c86c272005-03-23 17:32:29 -06001447 up(&priv->adapter_sem);
1448 return err;
1449}
1450
1451static int ipw2100_hw_stop_adapter(struct ipw2100_priv *priv)
1452{
Nishanth Aravamudan3173c892005-09-11 02:09:55 -07001453#define HW_POWER_DOWN_DELAY (msecs_to_jiffies(100))
James Ketrenos2c86c272005-03-23 17:32:29 -06001454
1455 struct host_command cmd = {
1456 .host_command = HOST_PRE_POWER_DOWN,
1457 .host_command_sequence = 0,
1458 .host_command_length = 0,
1459 };
1460 int err, i;
1461 u32 reg;
1462
1463 if (!(priv->status & STATUS_RUNNING))
1464 return 0;
1465
1466 priv->status |= STATUS_STOPPING;
1467
1468 /* We can only shut down the card if the firmware is operational. So,
1469 * if we haven't reset since a fatal_error, then we can not send the
1470 * shutdown commands. */
1471 if (!priv->fatal_error) {
1472 /* First, make sure the adapter is enabled so that the PHY_OFF
1473 * command can shut it down */
1474 ipw2100_enable_adapter(priv);
1475
1476 err = ipw2100_hw_phy_off(priv);
1477 if (err)
James Ketrenosee8e3652005-09-14 09:47:29 -05001478 printk(KERN_WARNING DRV_NAME
1479 ": Error disabling radio %d\n", err);
James Ketrenos2c86c272005-03-23 17:32:29 -06001480
1481 /*
1482 * If in D0-standby mode going directly to D3 may cause a
1483 * PCI bus violation. Therefore we must change out of the D0
1484 * state.
1485 *
1486 * Sending the PREPARE_FOR_POWER_DOWN will restrict the
1487 * hardware from going into standby mode and will transition
1488 * out of D0-standy if it is already in that state.
1489 *
1490 * STATUS_PREPARE_POWER_DOWN_COMPLETE will be sent by the
1491 * driver upon completion. Once received, the driver can
1492 * proceed to the D3 state.
1493 *
1494 * Prepare for power down command to fw. This command would
1495 * take HW out of D0-standby and prepare it for D3 state.
1496 *
1497 * Currently FW does not support event notification for this
1498 * event. Therefore, skip waiting for it. Just wait a fixed
1499 * 100ms
1500 */
1501 IPW_DEBUG_HC("HOST_PRE_POWER_DOWN\n");
1502
1503 err = ipw2100_hw_send_command(priv, &cmd);
1504 if (err)
Jiri Benc797b4f72005-08-25 20:03:27 -04001505 printk(KERN_WARNING DRV_NAME ": "
James Ketrenos2c86c272005-03-23 17:32:29 -06001506 "%s: Power down command failed: Error %d\n",
1507 priv->net_dev->name, err);
Nishanth Aravamudan3173c892005-09-11 02:09:55 -07001508 else
1509 schedule_timeout_uninterruptible(HW_POWER_DOWN_DELAY);
James Ketrenos2c86c272005-03-23 17:32:29 -06001510 }
1511
1512 priv->status &= ~STATUS_ENABLED;
1513
1514 /*
1515 * Set GPIO 3 writable by FW; GPIO 1 writable
1516 * by driver and enable clock
1517 */
1518 ipw2100_hw_set_gpio(priv);
1519
1520 /*
1521 * Power down adapter. Sequence:
1522 * 1. Stop master assert (RESET_REG[9]=1)
1523 * 2. Wait for stop master (RESET_REG[8]==1)
1524 * 3. S/w reset assert (RESET_REG[7] = 1)
1525 */
1526
1527 /* Stop master assert */
1528 write_register(priv->net_dev, IPW_REG_RESET_REG,
1529 IPW_AUX_HOST_RESET_REG_STOP_MASTER);
1530
1531 /* wait stop master not more than 50 usec.
1532 * Otherwise return error. */
1533 for (i = 5; i > 0; i--) {
1534 udelay(10);
1535
1536 /* Check master stop bit */
1537 read_register(priv->net_dev, IPW_REG_RESET_REG, &reg);
1538
1539 if (reg & IPW_AUX_HOST_RESET_REG_MASTER_DISABLED)
1540 break;
1541 }
1542
1543 if (i == 0)
Jiri Benc797b4f72005-08-25 20:03:27 -04001544 printk(KERN_WARNING DRV_NAME
James Ketrenos2c86c272005-03-23 17:32:29 -06001545 ": %s: Could now power down adapter.\n",
1546 priv->net_dev->name);
1547
1548 /* assert s/w reset */
1549 write_register(priv->net_dev, IPW_REG_RESET_REG,
1550 IPW_AUX_HOST_RESET_REG_SW_RESET);
1551
1552 priv->status &= ~(STATUS_RUNNING | STATUS_STOPPING);
1553
1554 return 0;
1555}
1556
James Ketrenos2c86c272005-03-23 17:32:29 -06001557static int ipw2100_disable_adapter(struct ipw2100_priv *priv)
1558{
1559 struct host_command cmd = {
1560 .host_command = CARD_DISABLE,
1561 .host_command_sequence = 0,
1562 .host_command_length = 0
1563 };
1564 int err = 0;
1565
1566 IPW_DEBUG_HC("CARD_DISABLE\n");
1567
1568 if (!(priv->status & STATUS_ENABLED))
1569 return 0;
1570
1571 /* Make sure we clear the associated state */
1572 priv->status &= ~(STATUS_ASSOCIATED | STATUS_ASSOCIATING);
1573
1574 if (!priv->stop_hang_check) {
1575 priv->stop_hang_check = 1;
1576 cancel_delayed_work(&priv->hang_check);
1577 }
1578
1579 down(&priv->adapter_sem);
1580
1581 err = ipw2100_hw_send_command(priv, &cmd);
1582 if (err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001583 printk(KERN_WARNING DRV_NAME
1584 ": exit - failed to send CARD_DISABLE command\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06001585 goto fail_up;
1586 }
1587
1588 err = ipw2100_wait_for_card_state(priv, IPW_HW_STATE_DISABLED);
1589 if (err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001590 printk(KERN_WARNING DRV_NAME
1591 ": exit - card failed to change to DISABLED\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06001592 goto fail_up;
1593 }
1594
1595 IPW_DEBUG_INFO("TODO: implement scan state machine\n");
1596
James Ketrenosee8e3652005-09-14 09:47:29 -05001597 fail_up:
James Ketrenos2c86c272005-03-23 17:32:29 -06001598 up(&priv->adapter_sem);
1599 return err;
1600}
1601
Jiri Bencc4aee8c2005-08-25 20:04:43 -04001602static int ipw2100_set_scan_options(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06001603{
1604 struct host_command cmd = {
1605 .host_command = SET_SCAN_OPTIONS,
1606 .host_command_sequence = 0,
1607 .host_command_length = 8
1608 };
1609 int err;
1610
1611 IPW_DEBUG_INFO("enter\n");
1612
1613 IPW_DEBUG_SCAN("setting scan options\n");
1614
1615 cmd.host_command_parameters[0] = 0;
1616
1617 if (!(priv->config & CFG_ASSOCIATE))
1618 cmd.host_command_parameters[0] |= IPW_SCAN_NOASSOCIATE;
25b645b2005-07-12 15:45:30 -05001619 if ((priv->ieee->sec.flags & SEC_ENABLED) && priv->ieee->sec.enabled)
James Ketrenos2c86c272005-03-23 17:32:29 -06001620 cmd.host_command_parameters[0] |= IPW_SCAN_MIXED_CELL;
1621 if (priv->config & CFG_PASSIVE_SCAN)
1622 cmd.host_command_parameters[0] |= IPW_SCAN_PASSIVE;
1623
1624 cmd.host_command_parameters[1] = priv->channel_mask;
1625
1626 err = ipw2100_hw_send_command(priv, &cmd);
1627
1628 IPW_DEBUG_HC("SET_SCAN_OPTIONS 0x%04X\n",
1629 cmd.host_command_parameters[0]);
1630
1631 return err;
1632}
1633
Jiri Bencc4aee8c2005-08-25 20:04:43 -04001634static int ipw2100_start_scan(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06001635{
1636 struct host_command cmd = {
1637 .host_command = BROADCAST_SCAN,
1638 .host_command_sequence = 0,
1639 .host_command_length = 4
1640 };
1641 int err;
1642
1643 IPW_DEBUG_HC("START_SCAN\n");
1644
1645 cmd.host_command_parameters[0] = 0;
1646
1647 /* No scanning if in monitor mode */
1648 if (priv->ieee->iw_mode == IW_MODE_MONITOR)
1649 return 1;
1650
1651 if (priv->status & STATUS_SCANNING) {
1652 IPW_DEBUG_SCAN("Scan requested while already in scan...\n");
1653 return 0;
1654 }
1655
1656 IPW_DEBUG_INFO("enter\n");
1657
1658 /* Not clearing here; doing so makes iwlist always return nothing...
1659 *
1660 * We should modify the table logic to use aging tables vs. clearing
1661 * the table on each scan start.
1662 */
1663 IPW_DEBUG_SCAN("starting scan\n");
1664
1665 priv->status |= STATUS_SCANNING;
1666 err = ipw2100_hw_send_command(priv, &cmd);
1667 if (err)
1668 priv->status &= ~STATUS_SCANNING;
1669
1670 IPW_DEBUG_INFO("exit\n");
1671
1672 return err;
1673}
1674
1675static int ipw2100_up(struct ipw2100_priv *priv, int deferred)
1676{
1677 unsigned long flags;
1678 int rc = 0;
1679 u32 lock;
1680 u32 ord_len = sizeof(lock);
1681
1682 /* Quite if manually disabled. */
1683 if (priv->status & STATUS_RF_KILL_SW) {
1684 IPW_DEBUG_INFO("%s: Radio is disabled by Manual Disable "
1685 "switch\n", priv->net_dev->name);
1686 return 0;
1687 }
1688
1689 /* If the interrupt is enabled, turn it off... */
1690 spin_lock_irqsave(&priv->low_lock, flags);
1691 ipw2100_disable_interrupts(priv);
1692
1693 /* Reset any fatal_error conditions */
1694 ipw2100_reset_fatalerror(priv);
1695 spin_unlock_irqrestore(&priv->low_lock, flags);
1696
1697 if (priv->status & STATUS_POWERED ||
1698 (priv->status & STATUS_RESET_PENDING)) {
1699 /* Power cycle the card ... */
1700 if (ipw2100_power_cycle_adapter(priv)) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001701 printk(KERN_WARNING DRV_NAME
1702 ": %s: Could not cycle adapter.\n",
1703 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06001704 rc = 1;
1705 goto exit;
1706 }
1707 } else
1708 priv->status |= STATUS_POWERED;
1709
Pavel Machek8724a112005-06-20 14:28:43 -07001710 /* Load the firmware, start the clocks, etc. */
James Ketrenos2c86c272005-03-23 17:32:29 -06001711 if (ipw2100_start_adapter(priv)) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001712 printk(KERN_ERR DRV_NAME
1713 ": %s: Failed to start the firmware.\n",
1714 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06001715 rc = 1;
1716 goto exit;
1717 }
1718
1719 ipw2100_initialize_ordinals(priv);
1720
1721 /* Determine capabilities of this particular HW configuration */
1722 if (ipw2100_get_hw_features(priv)) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001723 printk(KERN_ERR DRV_NAME
1724 ": %s: Failed to determine HW features.\n",
1725 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06001726 rc = 1;
1727 goto exit;
1728 }
1729
1730 lock = LOCK_NONE;
1731 if (ipw2100_set_ordinal(priv, IPW_ORD_PERS_DB_LOCK, &lock, &ord_len)) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001732 printk(KERN_ERR DRV_NAME
1733 ": %s: Failed to clear ordinal lock.\n",
1734 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06001735 rc = 1;
1736 goto exit;
1737 }
1738
1739 priv->status &= ~STATUS_SCANNING;
1740
1741 if (rf_kill_active(priv)) {
1742 printk(KERN_INFO "%s: Radio is disabled by RF switch.\n",
1743 priv->net_dev->name);
1744
1745 if (priv->stop_rf_kill) {
1746 priv->stop_rf_kill = 0;
1747 queue_delayed_work(priv->workqueue, &priv->rf_kill, HZ);
1748 }
1749
1750 deferred = 1;
1751 }
1752
1753 /* Turn on the interrupt so that commands can be processed */
1754 ipw2100_enable_interrupts(priv);
1755
1756 /* Send all of the commands that must be sent prior to
1757 * HOST_COMPLETE */
1758 if (ipw2100_adapter_setup(priv)) {
Jiri Benc797b4f72005-08-25 20:03:27 -04001759 printk(KERN_ERR DRV_NAME ": %s: Failed to start the card.\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05001760 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06001761 rc = 1;
1762 goto exit;
1763 }
1764
1765 if (!deferred) {
1766 /* Enable the adapter - sends HOST_COMPLETE */
1767 if (ipw2100_enable_adapter(priv)) {
Jiri Benc797b4f72005-08-25 20:03:27 -04001768 printk(KERN_ERR DRV_NAME ": "
James Ketrenosee8e3652005-09-14 09:47:29 -05001769 "%s: failed in call to enable adapter.\n",
1770 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06001771 ipw2100_hw_stop_adapter(priv);
1772 rc = 1;
1773 goto exit;
1774 }
1775
James Ketrenos2c86c272005-03-23 17:32:29 -06001776 /* Start a scan . . . */
1777 ipw2100_set_scan_options(priv);
1778 ipw2100_start_scan(priv);
1779 }
1780
James Ketrenosee8e3652005-09-14 09:47:29 -05001781 exit:
James Ketrenos2c86c272005-03-23 17:32:29 -06001782 return rc;
1783}
1784
1785/* Called by register_netdev() */
1786static int ipw2100_net_init(struct net_device *dev)
1787{
1788 struct ipw2100_priv *priv = ieee80211_priv(dev);
1789 return ipw2100_up(priv, 1);
1790}
1791
1792static void ipw2100_down(struct ipw2100_priv *priv)
1793{
1794 unsigned long flags;
1795 union iwreq_data wrqu = {
1796 .ap_addr = {
James Ketrenosee8e3652005-09-14 09:47:29 -05001797 .sa_family = ARPHRD_ETHER}
James Ketrenos2c86c272005-03-23 17:32:29 -06001798 };
1799 int associated = priv->status & STATUS_ASSOCIATED;
1800
1801 /* Kill the RF switch timer */
1802 if (!priv->stop_rf_kill) {
1803 priv->stop_rf_kill = 1;
1804 cancel_delayed_work(&priv->rf_kill);
1805 }
1806
1807 /* Kill the firmare hang check timer */
1808 if (!priv->stop_hang_check) {
1809 priv->stop_hang_check = 1;
1810 cancel_delayed_work(&priv->hang_check);
1811 }
1812
1813 /* Kill any pending resets */
1814 if (priv->status & STATUS_RESET_PENDING)
1815 cancel_delayed_work(&priv->reset_work);
1816
1817 /* Make sure the interrupt is on so that FW commands will be
1818 * processed correctly */
1819 spin_lock_irqsave(&priv->low_lock, flags);
1820 ipw2100_enable_interrupts(priv);
1821 spin_unlock_irqrestore(&priv->low_lock, flags);
1822
1823 if (ipw2100_hw_stop_adapter(priv))
Jiri Benc797b4f72005-08-25 20:03:27 -04001824 printk(KERN_ERR DRV_NAME ": %s: Error stopping adapter.\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06001825 priv->net_dev->name);
1826
1827 /* Do not disable the interrupt until _after_ we disable
1828 * the adaptor. Otherwise the CARD_DISABLE command will never
1829 * be ack'd by the firmware */
1830 spin_lock_irqsave(&priv->low_lock, flags);
1831 ipw2100_disable_interrupts(priv);
1832 spin_unlock_irqrestore(&priv->low_lock, flags);
1833
1834#ifdef ACPI_CSTATE_LIMIT_DEFINED
1835 if (priv->config & CFG_C3_DISABLED) {
Zhu Yia1e695a2005-07-04 14:06:00 +08001836 IPW_DEBUG_INFO(": Resetting C3 transitions.\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06001837 acpi_set_cstate_limit(priv->cstate_limit);
1838 priv->config &= ~CFG_C3_DISABLED;
1839 }
1840#endif
1841
1842 /* We have to signal any supplicant if we are disassociating */
1843 if (associated)
1844 wireless_send_event(priv->net_dev, SIOCGIWAP, &wrqu, NULL);
1845
1846 priv->status &= ~(STATUS_ASSOCIATED | STATUS_ASSOCIATING);
1847 netif_carrier_off(priv->net_dev);
1848 netif_stop_queue(priv->net_dev);
1849}
1850
Jiri Bencc4aee8c2005-08-25 20:04:43 -04001851static void ipw2100_reset_adapter(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06001852{
1853 unsigned long flags;
1854 union iwreq_data wrqu = {
1855 .ap_addr = {
James Ketrenosee8e3652005-09-14 09:47:29 -05001856 .sa_family = ARPHRD_ETHER}
James Ketrenos2c86c272005-03-23 17:32:29 -06001857 };
1858 int associated = priv->status & STATUS_ASSOCIATED;
1859
1860 spin_lock_irqsave(&priv->low_lock, flags);
Zhu Yia1e695a2005-07-04 14:06:00 +08001861 IPW_DEBUG_INFO(": %s: Restarting adapter.\n", priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06001862 priv->resets++;
1863 priv->status &= ~(STATUS_ASSOCIATED | STATUS_ASSOCIATING);
1864 priv->status |= STATUS_SECURITY_UPDATED;
1865
1866 /* Force a power cycle even if interface hasn't been opened
1867 * yet */
1868 cancel_delayed_work(&priv->reset_work);
1869 priv->status |= STATUS_RESET_PENDING;
1870 spin_unlock_irqrestore(&priv->low_lock, flags);
1871
1872 down(&priv->action_sem);
1873 /* stop timed checks so that they don't interfere with reset */
1874 priv->stop_hang_check = 1;
1875 cancel_delayed_work(&priv->hang_check);
1876
1877 /* We have to signal any supplicant if we are disassociating */
1878 if (associated)
1879 wireless_send_event(priv->net_dev, SIOCGIWAP, &wrqu, NULL);
1880
1881 ipw2100_up(priv, 0);
1882 up(&priv->action_sem);
1883
1884}
1885
James Ketrenos2c86c272005-03-23 17:32:29 -06001886static void isr_indicate_associated(struct ipw2100_priv *priv, u32 status)
1887{
1888
1889#define MAC_ASSOCIATION_READ_DELAY (HZ)
1890 int ret, len, essid_len;
1891 char essid[IW_ESSID_MAX_SIZE];
1892 u32 txrate;
1893 u32 chan;
1894 char *txratename;
James Ketrenosee8e3652005-09-14 09:47:29 -05001895 u8 bssid[ETH_ALEN];
James Ketrenos2c86c272005-03-23 17:32:29 -06001896
1897 /*
1898 * TBD: BSSID is usually 00:00:00:00:00:00 here and not
1899 * an actual MAC of the AP. Seems like FW sets this
1900 * address too late. Read it later and expose through
1901 * /proc or schedule a later task to query and update
1902 */
1903
1904 essid_len = IW_ESSID_MAX_SIZE;
1905 ret = ipw2100_get_ordinal(priv, IPW_ORD_STAT_ASSN_SSID,
1906 essid, &essid_len);
1907 if (ret) {
1908 IPW_DEBUG_INFO("failed querying ordinals at line %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05001909 __LINE__);
James Ketrenos2c86c272005-03-23 17:32:29 -06001910 return;
1911 }
1912
1913 len = sizeof(u32);
James Ketrenosee8e3652005-09-14 09:47:29 -05001914 ret = ipw2100_get_ordinal(priv, IPW_ORD_CURRENT_TX_RATE, &txrate, &len);
James Ketrenos2c86c272005-03-23 17:32:29 -06001915 if (ret) {
1916 IPW_DEBUG_INFO("failed querying ordinals at line %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05001917 __LINE__);
James Ketrenos2c86c272005-03-23 17:32:29 -06001918 return;
1919 }
1920
1921 len = sizeof(u32);
1922 ret = ipw2100_get_ordinal(priv, IPW_ORD_OUR_FREQ, &chan, &len);
1923 if (ret) {
1924 IPW_DEBUG_INFO("failed querying ordinals at line %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05001925 __LINE__);
James Ketrenos2c86c272005-03-23 17:32:29 -06001926 return;
1927 }
1928 len = ETH_ALEN;
James Ketrenosee8e3652005-09-14 09:47:29 -05001929 ipw2100_get_ordinal(priv, IPW_ORD_STAT_ASSN_AP_BSSID, &bssid, &len);
James Ketrenos2c86c272005-03-23 17:32:29 -06001930 if (ret) {
1931 IPW_DEBUG_INFO("failed querying ordinals at line %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05001932 __LINE__);
James Ketrenos2c86c272005-03-23 17:32:29 -06001933 return;
1934 }
1935 memcpy(priv->ieee->bssid, bssid, ETH_ALEN);
1936
James Ketrenos2c86c272005-03-23 17:32:29 -06001937 switch (txrate) {
1938 case TX_RATE_1_MBIT:
1939 txratename = "1Mbps";
1940 break;
1941 case TX_RATE_2_MBIT:
1942 txratename = "2Mbsp";
1943 break;
1944 case TX_RATE_5_5_MBIT:
1945 txratename = "5.5Mbps";
1946 break;
1947 case TX_RATE_11_MBIT:
1948 txratename = "11Mbps";
1949 break;
1950 default:
1951 IPW_DEBUG_INFO("Unknown rate: %d\n", txrate);
1952 txratename = "unknown rate";
1953 break;
1954 }
1955
1956 IPW_DEBUG_INFO("%s: Associated with '%s' at %s, channel %d (BSSID="
1957 MAC_FMT ")\n",
1958 priv->net_dev->name, escape_essid(essid, essid_len),
1959 txratename, chan, MAC_ARG(bssid));
1960
1961 /* now we copy read ssid into dev */
1962 if (!(priv->config & CFG_STATIC_ESSID)) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001963 priv->essid_len = min((u8) essid_len, (u8) IW_ESSID_MAX_SIZE);
James Ketrenos2c86c272005-03-23 17:32:29 -06001964 memcpy(priv->essid, essid, priv->essid_len);
1965 }
1966 priv->channel = chan;
1967 memcpy(priv->bssid, bssid, ETH_ALEN);
1968
1969 priv->status |= STATUS_ASSOCIATING;
1970 priv->connect_start = get_seconds();
1971
1972 queue_delayed_work(priv->workqueue, &priv->wx_event_work, HZ / 10);
1973}
1974
Jiri Bencc4aee8c2005-08-25 20:04:43 -04001975static int ipw2100_set_essid(struct ipw2100_priv *priv, char *essid,
1976 int length, int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06001977{
1978 int ssid_len = min(length, IW_ESSID_MAX_SIZE);
1979 struct host_command cmd = {
1980 .host_command = SSID,
1981 .host_command_sequence = 0,
1982 .host_command_length = ssid_len
1983 };
1984 int err;
1985
1986 IPW_DEBUG_HC("SSID: '%s'\n", escape_essid(essid, ssid_len));
1987
1988 if (ssid_len)
James Ketrenos82328352005-08-24 22:33:31 -05001989 memcpy(cmd.host_command_parameters, essid, ssid_len);
James Ketrenos2c86c272005-03-23 17:32:29 -06001990
1991 if (!batch_mode) {
1992 err = ipw2100_disable_adapter(priv);
1993 if (err)
1994 return err;
1995 }
1996
1997 /* Bug in FW currently doesn't honor bit 0 in SET_SCAN_OPTIONS to
1998 * disable auto association -- so we cheat by setting a bogus SSID */
1999 if (!ssid_len && !(priv->config & CFG_ASSOCIATE)) {
2000 int i;
James Ketrenosee8e3652005-09-14 09:47:29 -05002001 u8 *bogus = (u8 *) cmd.host_command_parameters;
James Ketrenos2c86c272005-03-23 17:32:29 -06002002 for (i = 0; i < IW_ESSID_MAX_SIZE; i++)
2003 bogus[i] = 0x18 + i;
2004 cmd.host_command_length = IW_ESSID_MAX_SIZE;
2005 }
2006
2007 /* NOTE: We always send the SSID command even if the provided ESSID is
2008 * the same as what we currently think is set. */
2009
2010 err = ipw2100_hw_send_command(priv, &cmd);
2011 if (!err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05002012 memset(priv->essid + ssid_len, 0, IW_ESSID_MAX_SIZE - ssid_len);
James Ketrenos2c86c272005-03-23 17:32:29 -06002013 memcpy(priv->essid, essid, ssid_len);
2014 priv->essid_len = ssid_len;
2015 }
2016
2017 if (!batch_mode) {
2018 if (ipw2100_enable_adapter(priv))
2019 err = -EIO;
2020 }
2021
2022 return err;
2023}
2024
2025static void isr_indicate_association_lost(struct ipw2100_priv *priv, u32 status)
2026{
2027 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE | IPW_DL_ASSOC,
2028 "disassociated: '%s' " MAC_FMT " \n",
2029 escape_essid(priv->essid, priv->essid_len),
2030 MAC_ARG(priv->bssid));
2031
2032 priv->status &= ~(STATUS_ASSOCIATED | STATUS_ASSOCIATING);
2033
2034 if (priv->status & STATUS_STOPPING) {
2035 IPW_DEBUG_INFO("Card is stopping itself, discard ASSN_LOST.\n");
2036 return;
2037 }
2038
2039 memset(priv->bssid, 0, ETH_ALEN);
2040 memset(priv->ieee->bssid, 0, ETH_ALEN);
2041
2042 netif_carrier_off(priv->net_dev);
2043 netif_stop_queue(priv->net_dev);
2044
2045 if (!(priv->status & STATUS_RUNNING))
2046 return;
2047
2048 if (priv->status & STATUS_SECURITY_UPDATED)
2049 queue_work(priv->workqueue, &priv->security_work);
2050
2051 queue_work(priv->workqueue, &priv->wx_event_work);
2052}
2053
2054static void isr_indicate_rf_kill(struct ipw2100_priv *priv, u32 status)
2055{
2056 IPW_DEBUG_INFO("%s: RF Kill state changed to radio OFF.\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05002057 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06002058
2059 /* RF_KILL is now enabled (else we wouldn't be here) */
2060 priv->status |= STATUS_RF_KILL_HW;
2061
2062#ifdef ACPI_CSTATE_LIMIT_DEFINED
2063 if (priv->config & CFG_C3_DISABLED) {
Zhu Yia1e695a2005-07-04 14:06:00 +08002064 IPW_DEBUG_INFO(": Resetting C3 transitions.\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06002065 acpi_set_cstate_limit(priv->cstate_limit);
2066 priv->config &= ~CFG_C3_DISABLED;
2067 }
2068#endif
2069
2070 /* Make sure the RF Kill check timer is running */
2071 priv->stop_rf_kill = 0;
2072 cancel_delayed_work(&priv->rf_kill);
2073 queue_delayed_work(priv->workqueue, &priv->rf_kill, HZ);
2074}
2075
2076static void isr_scan_complete(struct ipw2100_priv *priv, u32 status)
2077{
2078 IPW_DEBUG_SCAN("scan complete\n");
2079 /* Age the scan results... */
2080 priv->ieee->scans++;
2081 priv->status &= ~STATUS_SCANNING;
2082}
2083
Brice Goglin0f52bf92005-12-01 01:41:46 -08002084#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06002085#define IPW2100_HANDLER(v, f) { v, f, # v }
2086struct ipw2100_status_indicator {
2087 int status;
James Ketrenosee8e3652005-09-14 09:47:29 -05002088 void (*cb) (struct ipw2100_priv * priv, u32 status);
James Ketrenos2c86c272005-03-23 17:32:29 -06002089 char *name;
2090};
2091#else
2092#define IPW2100_HANDLER(v, f) { v, f }
2093struct ipw2100_status_indicator {
2094 int status;
James Ketrenosee8e3652005-09-14 09:47:29 -05002095 void (*cb) (struct ipw2100_priv * priv, u32 status);
James Ketrenos2c86c272005-03-23 17:32:29 -06002096};
Brice Goglin0f52bf92005-12-01 01:41:46 -08002097#endif /* CONFIG_IPW2100_DEBUG */
James Ketrenos2c86c272005-03-23 17:32:29 -06002098
2099static void isr_indicate_scanning(struct ipw2100_priv *priv, u32 status)
2100{
2101 IPW_DEBUG_SCAN("Scanning...\n");
2102 priv->status |= STATUS_SCANNING;
2103}
2104
Jiri Bencc4aee8c2005-08-25 20:04:43 -04002105static const struct ipw2100_status_indicator status_handlers[] = {
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01002106 IPW2100_HANDLER(IPW_STATE_INITIALIZED, NULL),
2107 IPW2100_HANDLER(IPW_STATE_COUNTRY_FOUND, NULL),
James Ketrenos2c86c272005-03-23 17:32:29 -06002108 IPW2100_HANDLER(IPW_STATE_ASSOCIATED, isr_indicate_associated),
2109 IPW2100_HANDLER(IPW_STATE_ASSN_LOST, isr_indicate_association_lost),
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01002110 IPW2100_HANDLER(IPW_STATE_ASSN_CHANGED, NULL),
James Ketrenos2c86c272005-03-23 17:32:29 -06002111 IPW2100_HANDLER(IPW_STATE_SCAN_COMPLETE, isr_scan_complete),
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01002112 IPW2100_HANDLER(IPW_STATE_ENTERED_PSP, NULL),
2113 IPW2100_HANDLER(IPW_STATE_LEFT_PSP, NULL),
James Ketrenos2c86c272005-03-23 17:32:29 -06002114 IPW2100_HANDLER(IPW_STATE_RF_KILL, isr_indicate_rf_kill),
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01002115 IPW2100_HANDLER(IPW_STATE_DISABLED, NULL),
2116 IPW2100_HANDLER(IPW_STATE_POWER_DOWN, NULL),
James Ketrenos2c86c272005-03-23 17:32:29 -06002117 IPW2100_HANDLER(IPW_STATE_SCANNING, isr_indicate_scanning),
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01002118 IPW2100_HANDLER(-1, NULL)
James Ketrenos2c86c272005-03-23 17:32:29 -06002119};
2120
James Ketrenos2c86c272005-03-23 17:32:29 -06002121static void isr_status_change(struct ipw2100_priv *priv, int status)
2122{
2123 int i;
2124
2125 if (status == IPW_STATE_SCANNING &&
2126 priv->status & STATUS_ASSOCIATED &&
2127 !(priv->status & STATUS_SCANNING)) {
2128 IPW_DEBUG_INFO("Scan detected while associated, with "
2129 "no scan request. Restarting firmware.\n");
2130
2131 /* Wake up any sleeping jobs */
2132 schedule_reset(priv);
2133 }
2134
2135 for (i = 0; status_handlers[i].status != -1; i++) {
2136 if (status == status_handlers[i].status) {
2137 IPW_DEBUG_NOTIF("Status change: %s\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05002138 status_handlers[i].name);
James Ketrenos2c86c272005-03-23 17:32:29 -06002139 if (status_handlers[i].cb)
2140 status_handlers[i].cb(priv, status);
2141 priv->wstats.status = status;
2142 return;
2143 }
2144 }
2145
2146 IPW_DEBUG_NOTIF("unknown status received: %04x\n", status);
2147}
2148
James Ketrenosee8e3652005-09-14 09:47:29 -05002149static void isr_rx_complete_command(struct ipw2100_priv *priv,
2150 struct ipw2100_cmd_header *cmd)
James Ketrenos2c86c272005-03-23 17:32:29 -06002151{
Brice Goglin0f52bf92005-12-01 01:41:46 -08002152#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06002153 if (cmd->host_command_reg < ARRAY_SIZE(command_types)) {
2154 IPW_DEBUG_HC("Command completed '%s (%d)'\n",
2155 command_types[cmd->host_command_reg],
2156 cmd->host_command_reg);
2157 }
2158#endif
2159 if (cmd->host_command_reg == HOST_COMPLETE)
2160 priv->status |= STATUS_ENABLED;
2161
2162 if (cmd->host_command_reg == CARD_DISABLE)
2163 priv->status &= ~STATUS_ENABLED;
2164
2165 priv->status &= ~STATUS_CMD_ACTIVE;
2166
2167 wake_up_interruptible(&priv->wait_command_queue);
2168}
2169
Brice Goglin0f52bf92005-12-01 01:41:46 -08002170#ifdef CONFIG_IPW2100_DEBUG
Jiri Bencc4aee8c2005-08-25 20:04:43 -04002171static const char *frame_types[] = {
James Ketrenos2c86c272005-03-23 17:32:29 -06002172 "COMMAND_STATUS_VAL",
2173 "STATUS_CHANGE_VAL",
2174 "P80211_DATA_VAL",
2175 "P8023_DATA_VAL",
2176 "HOST_NOTIFICATION_VAL"
2177};
2178#endif
2179
Arjan van de Ven858119e2006-01-14 13:20:43 -08002180static int ipw2100_alloc_skb(struct ipw2100_priv *priv,
James Ketrenosee8e3652005-09-14 09:47:29 -05002181 struct ipw2100_rx_packet *packet)
James Ketrenos2c86c272005-03-23 17:32:29 -06002182{
2183 packet->skb = dev_alloc_skb(sizeof(struct ipw2100_rx));
2184 if (!packet->skb)
2185 return -ENOMEM;
2186
2187 packet->rxp = (struct ipw2100_rx *)packet->skb->data;
2188 packet->dma_addr = pci_map_single(priv->pci_dev, packet->skb->data,
2189 sizeof(struct ipw2100_rx),
2190 PCI_DMA_FROMDEVICE);
2191 /* NOTE: pci_map_single does not return an error code, and 0 is a valid
2192 * dma_addr */
2193
2194 return 0;
2195}
2196
James Ketrenos2c86c272005-03-23 17:32:29 -06002197#define SEARCH_ERROR 0xffffffff
2198#define SEARCH_FAIL 0xfffffffe
2199#define SEARCH_SUCCESS 0xfffffff0
2200#define SEARCH_DISCARD 0
2201#define SEARCH_SNAPSHOT 1
2202
2203#define SNAPSHOT_ADDR(ofs) (priv->snapshot[((ofs) >> 12) & 0xff] + ((ofs) & 0xfff))
Zhu Yi3c5eca52006-01-24 13:49:26 +08002204static void ipw2100_snapshot_free(struct ipw2100_priv *priv)
2205{
2206 int i;
2207 if (!priv->snapshot[0])
2208 return;
2209 for (i = 0; i < 0x30; i++)
2210 kfree(priv->snapshot[i]);
2211 priv->snapshot[0] = NULL;
2212}
2213
2214#ifdef CONFIG_IPW2100_DEBUG_C3
Arjan van de Ven858119e2006-01-14 13:20:43 -08002215static int ipw2100_snapshot_alloc(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06002216{
2217 int i;
2218 if (priv->snapshot[0])
2219 return 1;
2220 for (i = 0; i < 0x30; i++) {
James Ketrenosee8e3652005-09-14 09:47:29 -05002221 priv->snapshot[i] = (u8 *) kmalloc(0x1000, GFP_ATOMIC);
James Ketrenos2c86c272005-03-23 17:32:29 -06002222 if (!priv->snapshot[i]) {
2223 IPW_DEBUG_INFO("%s: Error allocating snapshot "
James Ketrenosee8e3652005-09-14 09:47:29 -05002224 "buffer %d\n", priv->net_dev->name, i);
James Ketrenos2c86c272005-03-23 17:32:29 -06002225 while (i > 0)
2226 kfree(priv->snapshot[--i]);
2227 priv->snapshot[0] = NULL;
2228 return 0;
2229 }
2230 }
2231
2232 return 1;
2233}
2234
Arjan van de Ven858119e2006-01-14 13:20:43 -08002235static 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}
Zhu Yi3c5eca52006-01-24 13:49:26 +08002273#endif
James Ketrenos2c86c272005-03-23 17:32:29 -06002274
2275/*
2276 *
2277 * 0) Disconnect the SKB from the firmware (just unmap)
2278 * 1) Pack the ETH header into the SKB
2279 * 2) Pass the SKB to the network stack
2280 *
2281 * When packet is provided by the firmware, it contains the following:
2282 *
2283 * . ieee80211_hdr
2284 * . ieee80211_snap_hdr
2285 *
2286 * The size of the constructed ethernet
2287 *
2288 */
2289#ifdef CONFIG_IPW2100_RX_DEBUG
Jiri Bencc4aee8c2005-08-25 20:04:43 -04002290static u8 packet_data[IPW_RX_NIC_BUFFER_LENGTH];
James Ketrenos2c86c272005-03-23 17:32:29 -06002291#endif
2292
Arjan van de Ven858119e2006-01-14 13:20:43 -08002293static void ipw2100_corruption_detected(struct ipw2100_priv *priv, int i)
James Ketrenos2c86c272005-03-23 17:32:29 -06002294{
Brice Goglin0f52bf92005-12-01 01:41:46 -08002295#ifdef CONFIG_IPW2100_DEBUG_C3
James Ketrenos2c86c272005-03-23 17:32:29 -06002296 struct ipw2100_status *status = &priv->status_queue.drv[i];
2297 u32 match, reg;
2298 int j;
2299#endif
2300#ifdef ACPI_CSTATE_LIMIT_DEFINED
2301 int limit;
2302#endif
2303
Zhu Yia1e695a2005-07-04 14:06:00 +08002304 IPW_DEBUG_INFO(": PCI latency error detected at 0x%04zX.\n",
2305 i * sizeof(struct ipw2100_status));
James Ketrenos2c86c272005-03-23 17:32:29 -06002306
2307#ifdef ACPI_CSTATE_LIMIT_DEFINED
Zhu Yia1e695a2005-07-04 14:06:00 +08002308 IPW_DEBUG_INFO(": Disabling C3 transitions.\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06002309 limit = acpi_get_cstate_limit();
2310 if (limit > 2) {
2311 priv->cstate_limit = limit;
2312 acpi_set_cstate_limit(2);
2313 priv->config |= CFG_C3_DISABLED;
2314 }
2315#endif
2316
Brice Goglin0f52bf92005-12-01 01:41:46 -08002317#ifdef CONFIG_IPW2100_DEBUG_C3
James Ketrenos2c86c272005-03-23 17:32:29 -06002318 /* Halt the fimrware so we can get a good image */
2319 write_register(priv->net_dev, IPW_REG_RESET_REG,
2320 IPW_AUX_HOST_RESET_REG_STOP_MASTER);
2321 j = 5;
2322 do {
2323 udelay(IPW_WAIT_RESET_MASTER_ASSERT_COMPLETE_DELAY);
2324 read_register(priv->net_dev, IPW_REG_RESET_REG, &reg);
2325
2326 if (reg & IPW_AUX_HOST_RESET_REG_MASTER_DISABLED)
2327 break;
James Ketrenosee8e3652005-09-14 09:47:29 -05002328 } while (j--);
James Ketrenos2c86c272005-03-23 17:32:29 -06002329
James Ketrenosee8e3652005-09-14 09:47:29 -05002330 match = ipw2100_match_buf(priv, (u8 *) status,
James Ketrenos2c86c272005-03-23 17:32:29 -06002331 sizeof(struct ipw2100_status),
2332 SEARCH_SNAPSHOT);
2333 if (match < SEARCH_SUCCESS)
2334 IPW_DEBUG_INFO("%s: DMA status match in Firmware at "
2335 "offset 0x%06X, length %d:\n",
2336 priv->net_dev->name, match,
2337 sizeof(struct ipw2100_status));
2338 else
2339 IPW_DEBUG_INFO("%s: No DMA status match in "
2340 "Firmware.\n", priv->net_dev->name);
2341
James Ketrenosee8e3652005-09-14 09:47:29 -05002342 printk_buf((u8 *) priv->status_queue.drv,
James Ketrenos2c86c272005-03-23 17:32:29 -06002343 sizeof(struct ipw2100_status) * RX_QUEUE_LENGTH);
2344#endif
2345
2346 priv->fatal_error = IPW2100_ERR_C3_CORRUPTION;
2347 priv->ieee->stats.rx_errors++;
2348 schedule_reset(priv);
2349}
2350
Arjan van de Ven858119e2006-01-14 13:20:43 -08002351static void isr_rx(struct ipw2100_priv *priv, int i,
James Ketrenos2c86c272005-03-23 17:32:29 -06002352 struct ieee80211_rx_stats *stats)
2353{
2354 struct ipw2100_status *status = &priv->status_queue.drv[i];
2355 struct ipw2100_rx_packet *packet = &priv->rx_buffers[i];
2356
2357 IPW_DEBUG_RX("Handler...\n");
2358
2359 if (unlikely(status->frame_size > skb_tailroom(packet->skb))) {
2360 IPW_DEBUG_INFO("%s: frame_size (%u) > skb_tailroom (%u)!"
2361 " Dropping.\n",
2362 priv->net_dev->name,
2363 status->frame_size, skb_tailroom(packet->skb));
2364 priv->ieee->stats.rx_errors++;
2365 return;
2366 }
2367
2368 if (unlikely(!netif_running(priv->net_dev))) {
2369 priv->ieee->stats.rx_errors++;
2370 priv->wstats.discard.misc++;
2371 IPW_DEBUG_DROP("Dropping packet while interface is not up.\n");
2372 return;
2373 }
James Ketrenos82328352005-08-24 22:33:31 -05002374#ifdef CONFIG_IPW2100_MONITOR
James Ketrenos2c86c272005-03-23 17:32:29 -06002375 if (unlikely(priv->ieee->iw_mode == IW_MODE_MONITOR &&
James Ketrenos82328352005-08-24 22:33:31 -05002376 priv->config & CFG_CRC_CHECK &&
James Ketrenos2c86c272005-03-23 17:32:29 -06002377 status->flags & IPW_STATUS_FLAG_CRC_ERROR)) {
2378 IPW_DEBUG_RX("CRC error in packet. Dropping.\n");
2379 priv->ieee->stats.rx_errors++;
2380 return;
2381 }
James Ketrenos82328352005-08-24 22:33:31 -05002382#endif
James Ketrenos2c86c272005-03-23 17:32:29 -06002383
2384 if (unlikely(priv->ieee->iw_mode != IW_MODE_MONITOR &&
James Ketrenosee8e3652005-09-14 09:47:29 -05002385 !(priv->status & STATUS_ASSOCIATED))) {
James Ketrenos2c86c272005-03-23 17:32:29 -06002386 IPW_DEBUG_DROP("Dropping packet while not associated.\n");
2387 priv->wstats.discard.misc++;
2388 return;
2389 }
2390
James Ketrenos2c86c272005-03-23 17:32:29 -06002391 pci_unmap_single(priv->pci_dev,
2392 packet->dma_addr,
James Ketrenosee8e3652005-09-14 09:47:29 -05002393 sizeof(struct ipw2100_rx), PCI_DMA_FROMDEVICE);
James Ketrenos2c86c272005-03-23 17:32:29 -06002394
2395 skb_put(packet->skb, status->frame_size);
2396
2397#ifdef CONFIG_IPW2100_RX_DEBUG
2398 /* Make a copy of the frame so we can dump it to the logs if
2399 * ieee80211_rx fails */
2400 memcpy(packet_data, packet->skb->data,
Jiri Bencaaa4d302005-06-07 14:58:41 +02002401 min_t(u32, status->frame_size, IPW_RX_NIC_BUFFER_LENGTH));
James Ketrenos2c86c272005-03-23 17:32:29 -06002402#endif
2403
2404 if (!ieee80211_rx(priv->ieee, packet->skb, stats)) {
2405#ifdef CONFIG_IPW2100_RX_DEBUG
2406 IPW_DEBUG_DROP("%s: Non consumed packet:\n",
2407 priv->net_dev->name);
2408 printk_buf(IPW_DL_DROP, packet_data, status->frame_size);
2409#endif
2410 priv->ieee->stats.rx_errors++;
2411
2412 /* ieee80211_rx failed, so it didn't free the SKB */
2413 dev_kfree_skb_any(packet->skb);
2414 packet->skb = NULL;
2415 }
2416
2417 /* We need to allocate a new SKB and attach it to the RDB. */
2418 if (unlikely(ipw2100_alloc_skb(priv, packet))) {
Jiri Benc797b4f72005-08-25 20:03:27 -04002419 printk(KERN_WARNING DRV_NAME ": "
James Ketrenosee8e3652005-09-14 09:47:29 -05002420 "%s: Unable to allocate SKB onto RBD ring - disabling "
2421 "adapter.\n", priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06002422 /* TODO: schedule adapter shutdown */
2423 IPW_DEBUG_INFO("TODO: Shutdown adapter...\n");
2424 }
2425
2426 /* Update the RDB entry */
2427 priv->rx_queue.drv[i].host_addr = packet->dma_addr;
2428}
2429
Arjan van de Ven858119e2006-01-14 13:20:43 -08002430static int ipw2100_corruption_check(struct ipw2100_priv *priv, int i)
James Ketrenos2c86c272005-03-23 17:32:29 -06002431{
2432 struct ipw2100_status *status = &priv->status_queue.drv[i];
2433 struct ipw2100_rx *u = priv->rx_buffers[i].rxp;
2434 u16 frame_type = status->status_fields & STATUS_TYPE_MASK;
2435
2436 switch (frame_type) {
2437 case COMMAND_STATUS_VAL:
2438 return (status->frame_size != sizeof(u->rx_data.command));
2439 case STATUS_CHANGE_VAL:
2440 return (status->frame_size != sizeof(u->rx_data.status));
2441 case HOST_NOTIFICATION_VAL:
2442 return (status->frame_size < sizeof(u->rx_data.notification));
2443 case P80211_DATA_VAL:
2444 case P8023_DATA_VAL:
2445#ifdef CONFIG_IPW2100_MONITOR
2446 return 0;
2447#else
2448 switch (WLAN_FC_GET_TYPE(u->rx_data.header.frame_ctl)) {
2449 case IEEE80211_FTYPE_MGMT:
2450 case IEEE80211_FTYPE_CTL:
2451 return 0;
2452 case IEEE80211_FTYPE_DATA:
2453 return (status->frame_size >
2454 IPW_MAX_802_11_PAYLOAD_LENGTH);
2455 }
2456#endif
2457 }
2458
2459 return 1;
2460}
2461
2462/*
2463 * ipw2100 interrupts are disabled at this point, and the ISR
2464 * is the only code that calls this method. So, we do not need
2465 * to play with any locks.
2466 *
2467 * RX Queue works as follows:
2468 *
2469 * Read index - firmware places packet in entry identified by the
2470 * Read index and advances Read index. In this manner,
2471 * Read index will always point to the next packet to
2472 * be filled--but not yet valid.
2473 *
2474 * Write index - driver fills this entry with an unused RBD entry.
2475 * This entry has not filled by the firmware yet.
2476 *
2477 * In between the W and R indexes are the RBDs that have been received
2478 * but not yet processed.
2479 *
2480 * The process of handling packets will start at WRITE + 1 and advance
2481 * until it reaches the READ index.
2482 *
2483 * The WRITE index is cached in the variable 'priv->rx_queue.next'.
2484 *
2485 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002486static void __ipw2100_rx_process(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06002487{
2488 struct ipw2100_bd_queue *rxq = &priv->rx_queue;
2489 struct ipw2100_status_queue *sq = &priv->status_queue;
2490 struct ipw2100_rx_packet *packet;
2491 u16 frame_type;
2492 u32 r, w, i, s;
2493 struct ipw2100_rx *u;
2494 struct ieee80211_rx_stats stats = {
2495 .mac_time = jiffies,
2496 };
2497
2498 read_register(priv->net_dev, IPW_MEM_HOST_SHARED_RX_READ_INDEX, &r);
2499 read_register(priv->net_dev, IPW_MEM_HOST_SHARED_RX_WRITE_INDEX, &w);
2500
2501 if (r >= rxq->entries) {
2502 IPW_DEBUG_RX("exit - bad read index\n");
2503 return;
2504 }
2505
2506 i = (rxq->next + 1) % rxq->entries;
2507 s = i;
2508 while (i != r) {
2509 /* IPW_DEBUG_RX("r = %d : w = %d : processing = %d\n",
2510 r, rxq->next, i); */
2511
2512 packet = &priv->rx_buffers[i];
2513
2514 /* Sync the DMA for the STATUS buffer so CPU is sure to get
2515 * the correct values */
James Ketrenosee8e3652005-09-14 09:47:29 -05002516 pci_dma_sync_single_for_cpu(priv->pci_dev,
2517 sq->nic +
2518 sizeof(struct ipw2100_status) * i,
2519 sizeof(struct ipw2100_status),
2520 PCI_DMA_FROMDEVICE);
James Ketrenos2c86c272005-03-23 17:32:29 -06002521
2522 /* Sync the DMA for the RX buffer so CPU is sure to get
2523 * the correct values */
2524 pci_dma_sync_single_for_cpu(priv->pci_dev, packet->dma_addr,
2525 sizeof(struct ipw2100_rx),
2526 PCI_DMA_FROMDEVICE);
2527
2528 if (unlikely(ipw2100_corruption_check(priv, i))) {
2529 ipw2100_corruption_detected(priv, i);
2530 goto increment;
2531 }
2532
2533 u = packet->rxp;
James Ketrenosee8e3652005-09-14 09:47:29 -05002534 frame_type = sq->drv[i].status_fields & STATUS_TYPE_MASK;
James Ketrenos2c86c272005-03-23 17:32:29 -06002535 stats.rssi = sq->drv[i].rssi + IPW2100_RSSI_TO_DBM;
2536 stats.len = sq->drv[i].frame_size;
2537
2538 stats.mask = 0;
2539 if (stats.rssi != 0)
2540 stats.mask |= IEEE80211_STATMASK_RSSI;
2541 stats.freq = IEEE80211_24GHZ_BAND;
2542
James Ketrenosee8e3652005-09-14 09:47:29 -05002543 IPW_DEBUG_RX("%s: '%s' frame type received (%d).\n",
2544 priv->net_dev->name, frame_types[frame_type],
2545 stats.len);
James Ketrenos2c86c272005-03-23 17:32:29 -06002546
2547 switch (frame_type) {
2548 case COMMAND_STATUS_VAL:
2549 /* Reset Rx watchdog */
James Ketrenosee8e3652005-09-14 09:47:29 -05002550 isr_rx_complete_command(priv, &u->rx_data.command);
James Ketrenos2c86c272005-03-23 17:32:29 -06002551 break;
2552
2553 case STATUS_CHANGE_VAL:
2554 isr_status_change(priv, u->rx_data.status);
2555 break;
2556
2557 case P80211_DATA_VAL:
2558 case P8023_DATA_VAL:
2559#ifdef CONFIG_IPW2100_MONITOR
2560 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
2561 isr_rx(priv, i, &stats);
2562 break;
2563 }
2564#endif
2565 if (stats.len < sizeof(u->rx_data.header))
2566 break;
James Ketrenosee8e3652005-09-14 09:47:29 -05002567 switch (WLAN_FC_GET_TYPE(u->rx_data.header.frame_ctl)) {
James Ketrenos2c86c272005-03-23 17:32:29 -06002568 case IEEE80211_FTYPE_MGMT:
2569 ieee80211_rx_mgt(priv->ieee,
James Ketrenosee8e3652005-09-14 09:47:29 -05002570 &u->rx_data.header, &stats);
James Ketrenos2c86c272005-03-23 17:32:29 -06002571 break;
2572
2573 case IEEE80211_FTYPE_CTL:
2574 break;
2575
2576 case IEEE80211_FTYPE_DATA:
2577 isr_rx(priv, i, &stats);
2578 break;
2579
2580 }
2581 break;
2582 }
2583
James Ketrenosee8e3652005-09-14 09:47:29 -05002584 increment:
James Ketrenos2c86c272005-03-23 17:32:29 -06002585 /* clear status field associated with this RBD */
2586 rxq->drv[i].status.info.field = 0;
2587
2588 i = (i + 1) % rxq->entries;
2589 }
2590
2591 if (i != s) {
2592 /* backtrack one entry, wrapping to end if at 0 */
2593 rxq->next = (i ? i : rxq->entries) - 1;
2594
2595 write_register(priv->net_dev,
James Ketrenosee8e3652005-09-14 09:47:29 -05002596 IPW_MEM_HOST_SHARED_RX_WRITE_INDEX, rxq->next);
James Ketrenos2c86c272005-03-23 17:32:29 -06002597 }
2598}
2599
James Ketrenos2c86c272005-03-23 17:32:29 -06002600/*
2601 * __ipw2100_tx_process
2602 *
2603 * This routine will determine whether the next packet on
2604 * the fw_pend_list has been processed by the firmware yet.
2605 *
2606 * If not, then it does nothing and returns.
2607 *
2608 * If so, then it removes the item from the fw_pend_list, frees
2609 * any associated storage, and places the item back on the
2610 * free list of its source (either msg_free_list or tx_free_list)
2611 *
2612 * TX Queue works as follows:
2613 *
2614 * Read index - points to the next TBD that the firmware will
2615 * process. The firmware will read the data, and once
2616 * done processing, it will advance the Read index.
2617 *
2618 * Write index - driver fills this entry with an constructed TBD
2619 * entry. The Write index is not advanced until the
2620 * packet has been configured.
2621 *
2622 * In between the W and R indexes are the TBDs that have NOT been
2623 * processed. Lagging behind the R index are packets that have
2624 * been processed but have not been freed by the driver.
2625 *
2626 * In order to free old storage, an internal index will be maintained
2627 * that points to the next packet to be freed. When all used
2628 * packets have been freed, the oldest index will be the same as the
2629 * firmware's read index.
2630 *
2631 * The OLDEST index is cached in the variable 'priv->tx_queue.oldest'
2632 *
2633 * Because the TBD structure can not contain arbitrary data, the
2634 * driver must keep an internal queue of cached allocations such that
2635 * it can put that data back into the tx_free_list and msg_free_list
2636 * for use by future command and data packets.
2637 *
2638 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002639static int __ipw2100_tx_process(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06002640{
2641 struct ipw2100_bd_queue *txq = &priv->tx_queue;
James Ketrenosee8e3652005-09-14 09:47:29 -05002642 struct ipw2100_bd *tbd;
James Ketrenos2c86c272005-03-23 17:32:29 -06002643 struct list_head *element;
2644 struct ipw2100_tx_packet *packet;
2645 int descriptors_used;
2646 int e, i;
2647 u32 r, w, frag_num = 0;
2648
2649 if (list_empty(&priv->fw_pend_list))
2650 return 0;
2651
2652 element = priv->fw_pend_list.next;
2653
2654 packet = list_entry(element, struct ipw2100_tx_packet, list);
James Ketrenosee8e3652005-09-14 09:47:29 -05002655 tbd = &txq->drv[packet->index];
James Ketrenos2c86c272005-03-23 17:32:29 -06002656
2657 /* Determine how many TBD entries must be finished... */
2658 switch (packet->type) {
2659 case COMMAND:
2660 /* COMMAND uses only one slot; don't advance */
2661 descriptors_used = 1;
2662 e = txq->oldest;
2663 break;
2664
2665 case DATA:
2666 /* DATA uses two slots; advance and loop position. */
2667 descriptors_used = tbd->num_fragments;
James Ketrenosee8e3652005-09-14 09:47:29 -05002668 frag_num = tbd->num_fragments - 1;
James Ketrenos2c86c272005-03-23 17:32:29 -06002669 e = txq->oldest + frag_num;
2670 e %= txq->entries;
2671 break;
2672
2673 default:
Jiri Benc797b4f72005-08-25 20:03:27 -04002674 printk(KERN_WARNING DRV_NAME ": %s: Bad fw_pend_list entry!\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05002675 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06002676 return 0;
2677 }
2678
2679 /* if the last TBD is not done by NIC yet, then packet is
2680 * not ready to be released.
2681 *
2682 */
2683 read_register(priv->net_dev, IPW_MEM_HOST_SHARED_TX_QUEUE_READ_INDEX,
2684 &r);
2685 read_register(priv->net_dev, IPW_MEM_HOST_SHARED_TX_QUEUE_WRITE_INDEX,
2686 &w);
2687 if (w != txq->next)
Jiri Benc797b4f72005-08-25 20:03:27 -04002688 printk(KERN_WARNING DRV_NAME ": %s: write index mismatch\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06002689 priv->net_dev->name);
2690
James Ketrenosee8e3652005-09-14 09:47:29 -05002691 /*
James Ketrenos2c86c272005-03-23 17:32:29 -06002692 * txq->next is the index of the last packet written txq->oldest is
2693 * the index of the r is the index of the next packet to be read by
2694 * firmware
2695 */
2696
James Ketrenos2c86c272005-03-23 17:32:29 -06002697 /*
2698 * Quick graphic to help you visualize the following
2699 * if / else statement
2700 *
2701 * ===>| s---->|===============
2702 * e>|
2703 * | a | b | c | d | e | f | g | h | i | j | k | l
2704 * r---->|
2705 * w
2706 *
2707 * w - updated by driver
2708 * r - updated by firmware
2709 * s - start of oldest BD entry (txq->oldest)
2710 * e - end of oldest BD entry
2711 *
2712 */
2713 if (!((r <= w && (e < r || e >= w)) || (e < r && e >= w))) {
2714 IPW_DEBUG_TX("exit - no processed packets ready to release.\n");
2715 return 0;
2716 }
2717
2718 list_del(element);
2719 DEC_STAT(&priv->fw_pend_stat);
2720
Brice Goglin0f52bf92005-12-01 01:41:46 -08002721#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06002722 {
2723 int i = txq->oldest;
James Ketrenosee8e3652005-09-14 09:47:29 -05002724 IPW_DEBUG_TX("TX%d V=%p P=%04X T=%04X L=%d\n", i,
2725 &txq->drv[i],
2726 (u32) (txq->nic + i * sizeof(struct ipw2100_bd)),
2727 txq->drv[i].host_addr, txq->drv[i].buf_length);
James Ketrenos2c86c272005-03-23 17:32:29 -06002728
2729 if (packet->type == DATA) {
2730 i = (i + 1) % txq->entries;
2731
James Ketrenosee8e3652005-09-14 09:47:29 -05002732 IPW_DEBUG_TX("TX%d V=%p P=%04X T=%04X L=%d\n", i,
2733 &txq->drv[i],
2734 (u32) (txq->nic + i *
2735 sizeof(struct ipw2100_bd)),
2736 (u32) txq->drv[i].host_addr,
2737 txq->drv[i].buf_length);
James Ketrenos2c86c272005-03-23 17:32:29 -06002738 }
2739 }
2740#endif
2741
2742 switch (packet->type) {
2743 case DATA:
2744 if (txq->drv[txq->oldest].status.info.fields.txType != 0)
Jiri Benc797b4f72005-08-25 20:03:27 -04002745 printk(KERN_WARNING DRV_NAME ": %s: Queue mismatch. "
James Ketrenos2c86c272005-03-23 17:32:29 -06002746 "Expecting DATA TBD but pulled "
2747 "something else: ids %d=%d.\n",
2748 priv->net_dev->name, txq->oldest, packet->index);
2749
2750 /* DATA packet; we have to unmap and free the SKB */
James Ketrenos2c86c272005-03-23 17:32:29 -06002751 for (i = 0; i < frag_num; i++) {
James Ketrenosee8e3652005-09-14 09:47:29 -05002752 tbd = &txq->drv[(packet->index + 1 + i) % txq->entries];
James Ketrenos2c86c272005-03-23 17:32:29 -06002753
James Ketrenosee8e3652005-09-14 09:47:29 -05002754 IPW_DEBUG_TX("TX%d P=%08x L=%d\n",
2755 (packet->index + 1 + i) % txq->entries,
2756 tbd->host_addr, tbd->buf_length);
James Ketrenos2c86c272005-03-23 17:32:29 -06002757
2758 pci_unmap_single(priv->pci_dev,
2759 tbd->host_addr,
James Ketrenosee8e3652005-09-14 09:47:29 -05002760 tbd->buf_length, PCI_DMA_TODEVICE);
James Ketrenos2c86c272005-03-23 17:32:29 -06002761 }
2762
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. */
James Ketrenos82328352005-08-24 22:33:31 -05002771 if (priv->status & STATUS_ASSOCIATED)
James Ketrenos2c86c272005-03-23 17:32:29 -06002772 netif_wake_queue(priv->net_dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06002773
2774 /* A packet was processed by the hardware, so update the
2775 * watchdog */
2776 priv->net_dev->trans_start = jiffies;
2777
2778 break;
2779
2780 case COMMAND:
2781 if (txq->drv[txq->oldest].status.info.fields.txType != 1)
Jiri Benc797b4f72005-08-25 20:03:27 -04002782 printk(KERN_WARNING DRV_NAME ": %s: Queue mismatch. "
James Ketrenos2c86c272005-03-23 17:32:29 -06002783 "Expecting COMMAND TBD but pulled "
2784 "something else: ids %d=%d.\n",
2785 priv->net_dev->name, txq->oldest, packet->index);
2786
Brice Goglin0f52bf92005-12-01 01:41:46 -08002787#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06002788 if (packet->info.c_struct.cmd->host_command_reg <
2789 sizeof(command_types) / sizeof(*command_types))
James Ketrenosee8e3652005-09-14 09:47:29 -05002790 IPW_DEBUG_TX("Command '%s (%d)' processed: %d.\n",
2791 command_types[packet->info.c_struct.cmd->
2792 host_command_reg],
2793 packet->info.c_struct.cmd->
2794 host_command_reg,
2795 packet->info.c_struct.cmd->cmd_status_reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06002796#endif
2797
2798 list_add_tail(element, &priv->msg_free_list);
2799 INC_STAT(&priv->msg_free_stat);
2800 break;
2801 }
2802
2803 /* advance oldest used TBD pointer to start of next entry */
2804 txq->oldest = (e + 1) % txq->entries;
2805 /* increase available TBDs number */
2806 txq->available += descriptors_used;
2807 SET_STAT(&priv->txq_stat, txq->available);
2808
2809 IPW_DEBUG_TX("packet latency (send to process) %ld jiffies\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05002810 jiffies - packet->jiffy_start);
James Ketrenos2c86c272005-03-23 17:32:29 -06002811
2812 return (!list_empty(&priv->fw_pend_list));
2813}
2814
James Ketrenos2c86c272005-03-23 17:32:29 -06002815static inline void __ipw2100_tx_complete(struct ipw2100_priv *priv)
2816{
2817 int i = 0;
2818
James Ketrenosee8e3652005-09-14 09:47:29 -05002819 while (__ipw2100_tx_process(priv) && i < 200)
2820 i++;
James Ketrenos2c86c272005-03-23 17:32:29 -06002821
2822 if (i == 200) {
Jiri Benc19f7f742005-08-25 20:02:10 -04002823 printk(KERN_WARNING DRV_NAME ": "
James Ketrenos2c86c272005-03-23 17:32:29 -06002824 "%s: Driver is running slow (%d iters).\n",
2825 priv->net_dev->name, i);
2826 }
2827}
2828
Jiri Benc19f7f742005-08-25 20:02:10 -04002829static void ipw2100_tx_send_commands(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06002830{
2831 struct list_head *element;
2832 struct ipw2100_tx_packet *packet;
2833 struct ipw2100_bd_queue *txq = &priv->tx_queue;
2834 struct ipw2100_bd *tbd;
2835 int next = txq->next;
2836
2837 while (!list_empty(&priv->msg_pend_list)) {
2838 /* if there isn't enough space in TBD queue, then
2839 * don't stuff a new one in.
2840 * NOTE: 3 are needed as a command will take one,
2841 * and there is a minimum of 2 that must be
2842 * maintained between the r and w indexes
2843 */
2844 if (txq->available <= 3) {
2845 IPW_DEBUG_TX("no room in tx_queue\n");
2846 break;
2847 }
2848
2849 element = priv->msg_pend_list.next;
2850 list_del(element);
2851 DEC_STAT(&priv->msg_pend_stat);
2852
James Ketrenosee8e3652005-09-14 09:47:29 -05002853 packet = list_entry(element, struct ipw2100_tx_packet, list);
James Ketrenos2c86c272005-03-23 17:32:29 -06002854
2855 IPW_DEBUG_TX("using TBD at virt=%p, phys=%p\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05002856 &txq->drv[txq->next],
2857 (void *)(txq->nic + txq->next *
2858 sizeof(struct ipw2100_bd)));
James Ketrenos2c86c272005-03-23 17:32:29 -06002859
2860 packet->index = txq->next;
2861
2862 tbd = &txq->drv[txq->next];
2863
2864 /* initialize TBD */
2865 tbd->host_addr = packet->info.c_struct.cmd_phys;
2866 tbd->buf_length = sizeof(struct ipw2100_cmd_header);
2867 /* not marking number of fragments causes problems
2868 * with f/w debug version */
2869 tbd->num_fragments = 1;
2870 tbd->status.info.field =
James Ketrenosee8e3652005-09-14 09:47:29 -05002871 IPW_BD_STATUS_TX_FRAME_COMMAND |
2872 IPW_BD_STATUS_TX_INTERRUPT_ENABLE;
James Ketrenos2c86c272005-03-23 17:32:29 -06002873
2874 /* update TBD queue counters */
2875 txq->next++;
2876 txq->next %= txq->entries;
2877 txq->available--;
2878 DEC_STAT(&priv->txq_stat);
2879
2880 list_add_tail(element, &priv->fw_pend_list);
2881 INC_STAT(&priv->fw_pend_stat);
2882 }
2883
2884 if (txq->next != next) {
2885 /* kick off the DMA by notifying firmware the
2886 * write index has moved; make sure TBD stores are sync'd */
2887 wmb();
2888 write_register(priv->net_dev,
2889 IPW_MEM_HOST_SHARED_TX_QUEUE_WRITE_INDEX,
2890 txq->next);
2891 }
2892}
2893
James Ketrenos2c86c272005-03-23 17:32:29 -06002894/*
Jiri Benc19f7f742005-08-25 20:02:10 -04002895 * ipw2100_tx_send_data
James Ketrenos2c86c272005-03-23 17:32:29 -06002896 *
2897 */
Jiri Benc19f7f742005-08-25 20:02:10 -04002898static void ipw2100_tx_send_data(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06002899{
2900 struct list_head *element;
2901 struct ipw2100_tx_packet *packet;
2902 struct ipw2100_bd_queue *txq = &priv->tx_queue;
2903 struct ipw2100_bd *tbd;
2904 int next = txq->next;
James Ketrenosee8e3652005-09-14 09:47:29 -05002905 int i = 0;
James Ketrenos2c86c272005-03-23 17:32:29 -06002906 struct ipw2100_data_header *ipw_hdr;
James Ketrenos99a4b232005-09-21 12:23:25 -05002907 struct ieee80211_hdr_3addr *hdr;
James Ketrenos2c86c272005-03-23 17:32:29 -06002908
2909 while (!list_empty(&priv->tx_pend_list)) {
2910 /* if there isn't enough space in TBD queue, then
2911 * don't stuff a new one in.
2912 * NOTE: 4 are needed as a data will take two,
2913 * and there is a minimum of 2 that must be
2914 * maintained between the r and w indexes
2915 */
2916 element = priv->tx_pend_list.next;
James Ketrenosee8e3652005-09-14 09:47:29 -05002917 packet = list_entry(element, struct ipw2100_tx_packet, list);
James Ketrenos2c86c272005-03-23 17:32:29 -06002918
2919 if (unlikely(1 + packet->info.d_struct.txb->nr_frags >
2920 IPW_MAX_BDS)) {
2921 /* TODO: Support merging buffers if more than
2922 * IPW_MAX_BDS are used */
James Ketrenosee8e3652005-09-14 09:47:29 -05002923 IPW_DEBUG_INFO("%s: Maximum BD theshold exceeded. "
2924 "Increase fragmentation level.\n",
2925 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06002926 }
2927
James Ketrenosee8e3652005-09-14 09:47:29 -05002928 if (txq->available <= 3 + packet->info.d_struct.txb->nr_frags) {
James Ketrenos2c86c272005-03-23 17:32:29 -06002929 IPW_DEBUG_TX("no room in tx_queue\n");
2930 break;
2931 }
2932
2933 list_del(element);
2934 DEC_STAT(&priv->tx_pend_stat);
2935
2936 tbd = &txq->drv[txq->next];
2937
2938 packet->index = txq->next;
2939
2940 ipw_hdr = packet->info.d_struct.data;
James Ketrenos99a4b232005-09-21 12:23:25 -05002941 hdr = (struct ieee80211_hdr_3addr *)packet->info.d_struct.txb->
James Ketrenosee8e3652005-09-14 09:47:29 -05002942 fragments[0]->data;
James Ketrenos2c86c272005-03-23 17:32:29 -06002943
2944 if (priv->ieee->iw_mode == IW_MODE_INFRA) {
2945 /* To DS: Addr1 = BSSID, Addr2 = SA,
2946 Addr3 = DA */
2947 memcpy(ipw_hdr->src_addr, hdr->addr2, ETH_ALEN);
2948 memcpy(ipw_hdr->dst_addr, hdr->addr3, ETH_ALEN);
2949 } else if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
2950 /* not From/To DS: Addr1 = DA, Addr2 = SA,
2951 Addr3 = BSSID */
2952 memcpy(ipw_hdr->src_addr, hdr->addr2, ETH_ALEN);
2953 memcpy(ipw_hdr->dst_addr, hdr->addr1, ETH_ALEN);
2954 }
2955
2956 ipw_hdr->host_command_reg = SEND;
2957 ipw_hdr->host_command_reg1 = 0;
2958
2959 /* For now we only support host based encryption */
2960 ipw_hdr->needs_encryption = 0;
2961 ipw_hdr->encrypted = packet->info.d_struct.txb->encrypted;
2962 if (packet->info.d_struct.txb->nr_frags > 1)
2963 ipw_hdr->fragment_size =
James Ketrenosee8e3652005-09-14 09:47:29 -05002964 packet->info.d_struct.txb->frag_size -
2965 IEEE80211_3ADDR_LEN;
James Ketrenos2c86c272005-03-23 17:32:29 -06002966 else
2967 ipw_hdr->fragment_size = 0;
2968
2969 tbd->host_addr = packet->info.d_struct.data_phys;
2970 tbd->buf_length = sizeof(struct ipw2100_data_header);
2971 tbd->num_fragments = 1 + packet->info.d_struct.txb->nr_frags;
2972 tbd->status.info.field =
James Ketrenosee8e3652005-09-14 09:47:29 -05002973 IPW_BD_STATUS_TX_FRAME_802_3 |
2974 IPW_BD_STATUS_TX_FRAME_NOT_LAST_FRAGMENT;
James Ketrenos2c86c272005-03-23 17:32:29 -06002975 txq->next++;
2976 txq->next %= txq->entries;
2977
James Ketrenosee8e3652005-09-14 09:47:29 -05002978 IPW_DEBUG_TX("data header tbd TX%d P=%08x L=%d\n",
2979 packet->index, tbd->host_addr, tbd->buf_length);
Brice Goglin0f52bf92005-12-01 01:41:46 -08002980#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06002981 if (packet->info.d_struct.txb->nr_frags > 1)
2982 IPW_DEBUG_FRAG("fragment Tx: %d frames\n",
2983 packet->info.d_struct.txb->nr_frags);
2984#endif
2985
James Ketrenosee8e3652005-09-14 09:47:29 -05002986 for (i = 0; i < packet->info.d_struct.txb->nr_frags; i++) {
2987 tbd = &txq->drv[txq->next];
James Ketrenos2c86c272005-03-23 17:32:29 -06002988 if (i == packet->info.d_struct.txb->nr_frags - 1)
2989 tbd->status.info.field =
James Ketrenosee8e3652005-09-14 09:47:29 -05002990 IPW_BD_STATUS_TX_FRAME_802_3 |
2991 IPW_BD_STATUS_TX_INTERRUPT_ENABLE;
James Ketrenos2c86c272005-03-23 17:32:29 -06002992 else
2993 tbd->status.info.field =
James Ketrenosee8e3652005-09-14 09:47:29 -05002994 IPW_BD_STATUS_TX_FRAME_802_3 |
2995 IPW_BD_STATUS_TX_FRAME_NOT_LAST_FRAGMENT;
James Ketrenos2c86c272005-03-23 17:32:29 -06002996
2997 tbd->buf_length = packet->info.d_struct.txb->
James Ketrenosee8e3652005-09-14 09:47:29 -05002998 fragments[i]->len - IEEE80211_3ADDR_LEN;
James Ketrenos2c86c272005-03-23 17:32:29 -06002999
James Ketrenosee8e3652005-09-14 09:47:29 -05003000 tbd->host_addr = pci_map_single(priv->pci_dev,
3001 packet->info.d_struct.
3002 txb->fragments[i]->
3003 data +
3004 IEEE80211_3ADDR_LEN,
3005 tbd->buf_length,
3006 PCI_DMA_TODEVICE);
James Ketrenos2c86c272005-03-23 17:32:29 -06003007
James Ketrenosee8e3652005-09-14 09:47:29 -05003008 IPW_DEBUG_TX("data frag tbd TX%d P=%08x L=%d\n",
3009 txq->next, tbd->host_addr,
3010 tbd->buf_length);
James Ketrenos2c86c272005-03-23 17:32:29 -06003011
James Ketrenosee8e3652005-09-14 09:47:29 -05003012 pci_dma_sync_single_for_device(priv->pci_dev,
3013 tbd->host_addr,
3014 tbd->buf_length,
3015 PCI_DMA_TODEVICE);
James Ketrenos2c86c272005-03-23 17:32:29 -06003016
3017 txq->next++;
3018 txq->next %= txq->entries;
James Ketrenosee8e3652005-09-14 09:47:29 -05003019 }
James Ketrenos2c86c272005-03-23 17:32:29 -06003020
3021 txq->available -= 1 + packet->info.d_struct.txb->nr_frags;
3022 SET_STAT(&priv->txq_stat, txq->available);
3023
3024 list_add_tail(element, &priv->fw_pend_list);
3025 INC_STAT(&priv->fw_pend_stat);
3026 }
3027
3028 if (txq->next != next) {
3029 /* kick off the DMA by notifying firmware the
3030 * write index has moved; make sure TBD stores are sync'd */
3031 write_register(priv->net_dev,
3032 IPW_MEM_HOST_SHARED_TX_QUEUE_WRITE_INDEX,
3033 txq->next);
3034 }
James Ketrenosee8e3652005-09-14 09:47:29 -05003035 return;
James Ketrenos2c86c272005-03-23 17:32:29 -06003036}
3037
3038static void ipw2100_irq_tasklet(struct ipw2100_priv *priv)
3039{
3040 struct net_device *dev = priv->net_dev;
3041 unsigned long flags;
3042 u32 inta, tmp;
3043
3044 spin_lock_irqsave(&priv->low_lock, flags);
3045 ipw2100_disable_interrupts(priv);
3046
3047 read_register(dev, IPW_REG_INTA, &inta);
3048
3049 IPW_DEBUG_ISR("enter - INTA: 0x%08lX\n",
3050 (unsigned long)inta & IPW_INTERRUPT_MASK);
3051
3052 priv->in_isr++;
3053 priv->interrupts++;
3054
3055 /* We do not loop and keep polling for more interrupts as this
3056 * is frowned upon and doesn't play nicely with other potentially
3057 * chained IRQs */
3058 IPW_DEBUG_ISR("INTA: 0x%08lX\n",
3059 (unsigned long)inta & IPW_INTERRUPT_MASK);
3060
3061 if (inta & IPW2100_INTA_FATAL_ERROR) {
Jiri Benc797b4f72005-08-25 20:03:27 -04003062 printk(KERN_WARNING DRV_NAME
James Ketrenosee8e3652005-09-14 09:47:29 -05003063 ": Fatal interrupt. Scheduling firmware restart.\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06003064 priv->inta_other++;
James Ketrenosee8e3652005-09-14 09:47:29 -05003065 write_register(dev, IPW_REG_INTA, IPW2100_INTA_FATAL_ERROR);
James Ketrenos2c86c272005-03-23 17:32:29 -06003066
3067 read_nic_dword(dev, IPW_NIC_FATAL_ERROR, &priv->fatal_error);
3068 IPW_DEBUG_INFO("%s: Fatal error value: 0x%08X\n",
3069 priv->net_dev->name, priv->fatal_error);
3070
3071 read_nic_dword(dev, IPW_ERROR_ADDR(priv->fatal_error), &tmp);
3072 IPW_DEBUG_INFO("%s: Fatal error address value: 0x%08X\n",
3073 priv->net_dev->name, tmp);
3074
3075 /* Wake up any sleeping jobs */
3076 schedule_reset(priv);
3077 }
3078
3079 if (inta & IPW2100_INTA_PARITY_ERROR) {
James Ketrenosee8e3652005-09-14 09:47:29 -05003080 printk(KERN_ERR DRV_NAME
3081 ": ***** PARITY ERROR INTERRUPT !!!! \n");
James Ketrenos2c86c272005-03-23 17:32:29 -06003082 priv->inta_other++;
James Ketrenosee8e3652005-09-14 09:47:29 -05003083 write_register(dev, IPW_REG_INTA, IPW2100_INTA_PARITY_ERROR);
James Ketrenos2c86c272005-03-23 17:32:29 -06003084 }
3085
3086 if (inta & IPW2100_INTA_RX_TRANSFER) {
3087 IPW_DEBUG_ISR("RX interrupt\n");
3088
3089 priv->rx_interrupts++;
3090
James Ketrenosee8e3652005-09-14 09:47:29 -05003091 write_register(dev, IPW_REG_INTA, IPW2100_INTA_RX_TRANSFER);
James Ketrenos2c86c272005-03-23 17:32:29 -06003092
3093 __ipw2100_rx_process(priv);
3094 __ipw2100_tx_complete(priv);
3095 }
3096
3097 if (inta & IPW2100_INTA_TX_TRANSFER) {
3098 IPW_DEBUG_ISR("TX interrupt\n");
3099
3100 priv->tx_interrupts++;
3101
James Ketrenosee8e3652005-09-14 09:47:29 -05003102 write_register(dev, IPW_REG_INTA, IPW2100_INTA_TX_TRANSFER);
James Ketrenos2c86c272005-03-23 17:32:29 -06003103
3104 __ipw2100_tx_complete(priv);
Jiri Benc19f7f742005-08-25 20:02:10 -04003105 ipw2100_tx_send_commands(priv);
3106 ipw2100_tx_send_data(priv);
James Ketrenos2c86c272005-03-23 17:32:29 -06003107 }
3108
3109 if (inta & IPW2100_INTA_TX_COMPLETE) {
3110 IPW_DEBUG_ISR("TX complete\n");
3111 priv->inta_other++;
James Ketrenosee8e3652005-09-14 09:47:29 -05003112 write_register(dev, IPW_REG_INTA, IPW2100_INTA_TX_COMPLETE);
James Ketrenos2c86c272005-03-23 17:32:29 -06003113
3114 __ipw2100_tx_complete(priv);
3115 }
3116
3117 if (inta & IPW2100_INTA_EVENT_INTERRUPT) {
3118 /* ipw2100_handle_event(dev); */
3119 priv->inta_other++;
James Ketrenosee8e3652005-09-14 09:47:29 -05003120 write_register(dev, IPW_REG_INTA, IPW2100_INTA_EVENT_INTERRUPT);
James Ketrenos2c86c272005-03-23 17:32:29 -06003121 }
3122
3123 if (inta & IPW2100_INTA_FW_INIT_DONE) {
3124 IPW_DEBUG_ISR("FW init done interrupt\n");
3125 priv->inta_other++;
3126
3127 read_register(dev, IPW_REG_INTA, &tmp);
3128 if (tmp & (IPW2100_INTA_FATAL_ERROR |
3129 IPW2100_INTA_PARITY_ERROR)) {
James Ketrenosee8e3652005-09-14 09:47:29 -05003130 write_register(dev, IPW_REG_INTA,
3131 IPW2100_INTA_FATAL_ERROR |
3132 IPW2100_INTA_PARITY_ERROR);
James Ketrenos2c86c272005-03-23 17:32:29 -06003133 }
3134
James Ketrenosee8e3652005-09-14 09:47:29 -05003135 write_register(dev, IPW_REG_INTA, IPW2100_INTA_FW_INIT_DONE);
James Ketrenos2c86c272005-03-23 17:32:29 -06003136 }
3137
3138 if (inta & IPW2100_INTA_STATUS_CHANGE) {
3139 IPW_DEBUG_ISR("Status change interrupt\n");
3140 priv->inta_other++;
James Ketrenosee8e3652005-09-14 09:47:29 -05003141 write_register(dev, IPW_REG_INTA, IPW2100_INTA_STATUS_CHANGE);
James Ketrenos2c86c272005-03-23 17:32:29 -06003142 }
3143
3144 if (inta & IPW2100_INTA_SLAVE_MODE_HOST_COMMAND_DONE) {
3145 IPW_DEBUG_ISR("slave host mode interrupt\n");
3146 priv->inta_other++;
James Ketrenosee8e3652005-09-14 09:47:29 -05003147 write_register(dev, IPW_REG_INTA,
3148 IPW2100_INTA_SLAVE_MODE_HOST_COMMAND_DONE);
James Ketrenos2c86c272005-03-23 17:32:29 -06003149 }
3150
3151 priv->in_isr--;
3152 ipw2100_enable_interrupts(priv);
3153
3154 spin_unlock_irqrestore(&priv->low_lock, flags);
3155
3156 IPW_DEBUG_ISR("exit\n");
3157}
3158
James Ketrenosee8e3652005-09-14 09:47:29 -05003159static irqreturn_t ipw2100_interrupt(int irq, void *data, struct pt_regs *regs)
James Ketrenos2c86c272005-03-23 17:32:29 -06003160{
3161 struct ipw2100_priv *priv = data;
3162 u32 inta, inta_mask;
3163
3164 if (!data)
3165 return IRQ_NONE;
3166
James Ketrenosee8e3652005-09-14 09:47:29 -05003167 spin_lock(&priv->low_lock);
James Ketrenos2c86c272005-03-23 17:32:29 -06003168
3169 /* We check to see if we should be ignoring interrupts before
3170 * we touch the hardware. During ucode load if we try and handle
3171 * an interrupt we can cause keyboard problems as well as cause
3172 * the ucode to fail to initialize */
3173 if (!(priv->status & STATUS_INT_ENABLED)) {
3174 /* Shared IRQ */
3175 goto none;
3176 }
3177
3178 read_register(priv->net_dev, IPW_REG_INTA_MASK, &inta_mask);
3179 read_register(priv->net_dev, IPW_REG_INTA, &inta);
3180
3181 if (inta == 0xFFFFFFFF) {
3182 /* Hardware disappeared */
Jiri Benc797b4f72005-08-25 20:03:27 -04003183 printk(KERN_WARNING DRV_NAME ": IRQ INTA == 0xFFFFFFFF\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06003184 goto none;
3185 }
3186
3187 inta &= IPW_INTERRUPT_MASK;
3188
3189 if (!(inta & inta_mask)) {
3190 /* Shared interrupt */
3191 goto none;
3192 }
3193
3194 /* We disable the hardware interrupt here just to prevent unneeded
3195 * calls to be made. We disable this again within the actual
3196 * work tasklet, so if another part of the code re-enables the
3197 * interrupt, that is fine */
3198 ipw2100_disable_interrupts(priv);
3199
3200 tasklet_schedule(&priv->irq_tasklet);
James Ketrenosee8e3652005-09-14 09:47:29 -05003201 spin_unlock(&priv->low_lock);
James Ketrenos2c86c272005-03-23 17:32:29 -06003202
3203 return IRQ_HANDLED;
James Ketrenosee8e3652005-09-14 09:47:29 -05003204 none:
James Ketrenos2c86c272005-03-23 17:32:29 -06003205 spin_unlock(&priv->low_lock);
3206 return IRQ_NONE;
3207}
3208
James Ketrenos3a5becf2005-09-21 12:23:37 -05003209static int ipw2100_tx(struct ieee80211_txb *txb, struct net_device *dev,
3210 int pri)
James Ketrenos2c86c272005-03-23 17:32:29 -06003211{
3212 struct ipw2100_priv *priv = ieee80211_priv(dev);
3213 struct list_head *element;
3214 struct ipw2100_tx_packet *packet;
3215 unsigned long flags;
3216
3217 spin_lock_irqsave(&priv->low_lock, flags);
3218
3219 if (!(priv->status & STATUS_ASSOCIATED)) {
3220 IPW_DEBUG_INFO("Can not transmit when not connected.\n");
3221 priv->ieee->stats.tx_carrier_errors++;
3222 netif_stop_queue(dev);
3223 goto fail_unlock;
3224 }
3225
3226 if (list_empty(&priv->tx_free_list))
3227 goto fail_unlock;
3228
3229 element = priv->tx_free_list.next;
3230 packet = list_entry(element, struct ipw2100_tx_packet, list);
3231
3232 packet->info.d_struct.txb = txb;
3233
James Ketrenosee8e3652005-09-14 09:47:29 -05003234 IPW_DEBUG_TX("Sending fragment (%d bytes):\n", txb->fragments[0]->len);
3235 printk_buf(IPW_DL_TX, txb->fragments[0]->data, txb->fragments[0]->len);
James Ketrenos2c86c272005-03-23 17:32:29 -06003236
3237 packet->jiffy_start = jiffies;
3238
3239 list_del(element);
3240 DEC_STAT(&priv->tx_free_stat);
3241
3242 list_add_tail(element, &priv->tx_pend_list);
3243 INC_STAT(&priv->tx_pend_stat);
3244
Jiri Benc19f7f742005-08-25 20:02:10 -04003245 ipw2100_tx_send_data(priv);
James Ketrenos2c86c272005-03-23 17:32:29 -06003246
3247 spin_unlock_irqrestore(&priv->low_lock, flags);
3248 return 0;
3249
James Ketrenosee8e3652005-09-14 09:47:29 -05003250 fail_unlock:
James Ketrenos2c86c272005-03-23 17:32:29 -06003251 netif_stop_queue(dev);
3252 spin_unlock_irqrestore(&priv->low_lock, flags);
3253 return 1;
3254}
3255
James Ketrenos2c86c272005-03-23 17:32:29 -06003256static int ipw2100_msg_allocate(struct ipw2100_priv *priv)
3257{
3258 int i, j, err = -EINVAL;
3259 void *v;
3260 dma_addr_t p;
3261
James Ketrenosee8e3652005-09-14 09:47:29 -05003262 priv->msg_buffers =
3263 (struct ipw2100_tx_packet *)kmalloc(IPW_COMMAND_POOL_SIZE *
3264 sizeof(struct
3265 ipw2100_tx_packet),
3266 GFP_KERNEL);
James Ketrenos2c86c272005-03-23 17:32:29 -06003267 if (!priv->msg_buffers) {
Jiri Benc797b4f72005-08-25 20:03:27 -04003268 printk(KERN_ERR DRV_NAME ": %s: PCI alloc failed for msg "
James Ketrenos2c86c272005-03-23 17:32:29 -06003269 "buffers.\n", priv->net_dev->name);
3270 return -ENOMEM;
3271 }
3272
3273 for (i = 0; i < IPW_COMMAND_POOL_SIZE; i++) {
James Ketrenosee8e3652005-09-14 09:47:29 -05003274 v = pci_alloc_consistent(priv->pci_dev,
3275 sizeof(struct ipw2100_cmd_header), &p);
James Ketrenos2c86c272005-03-23 17:32:29 -06003276 if (!v) {
Jiri Benc797b4f72005-08-25 20:03:27 -04003277 printk(KERN_ERR DRV_NAME ": "
James Ketrenos2c86c272005-03-23 17:32:29 -06003278 "%s: PCI alloc failed for msg "
James Ketrenosee8e3652005-09-14 09:47:29 -05003279 "buffers.\n", priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06003280 err = -ENOMEM;
3281 break;
3282 }
3283
3284 memset(v, 0, sizeof(struct ipw2100_cmd_header));
3285
3286 priv->msg_buffers[i].type = COMMAND;
3287 priv->msg_buffers[i].info.c_struct.cmd =
James Ketrenosee8e3652005-09-14 09:47:29 -05003288 (struct ipw2100_cmd_header *)v;
James Ketrenos2c86c272005-03-23 17:32:29 -06003289 priv->msg_buffers[i].info.c_struct.cmd_phys = p;
3290 }
3291
3292 if (i == IPW_COMMAND_POOL_SIZE)
3293 return 0;
3294
3295 for (j = 0; j < i; j++) {
James Ketrenosee8e3652005-09-14 09:47:29 -05003296 pci_free_consistent(priv->pci_dev,
3297 sizeof(struct ipw2100_cmd_header),
3298 priv->msg_buffers[j].info.c_struct.cmd,
3299 priv->msg_buffers[j].info.c_struct.
3300 cmd_phys);
James Ketrenos2c86c272005-03-23 17:32:29 -06003301 }
3302
3303 kfree(priv->msg_buffers);
3304 priv->msg_buffers = NULL;
3305
3306 return err;
3307}
3308
3309static int ipw2100_msg_initialize(struct ipw2100_priv *priv)
3310{
3311 int i;
3312
3313 INIT_LIST_HEAD(&priv->msg_free_list);
3314 INIT_LIST_HEAD(&priv->msg_pend_list);
3315
3316 for (i = 0; i < IPW_COMMAND_POOL_SIZE; i++)
3317 list_add_tail(&priv->msg_buffers[i].list, &priv->msg_free_list);
3318 SET_STAT(&priv->msg_free_stat, i);
3319
3320 return 0;
3321}
3322
3323static void ipw2100_msg_free(struct ipw2100_priv *priv)
3324{
3325 int i;
3326
3327 if (!priv->msg_buffers)
3328 return;
3329
3330 for (i = 0; i < IPW_COMMAND_POOL_SIZE; i++) {
3331 pci_free_consistent(priv->pci_dev,
3332 sizeof(struct ipw2100_cmd_header),
3333 priv->msg_buffers[i].info.c_struct.cmd,
James Ketrenosee8e3652005-09-14 09:47:29 -05003334 priv->msg_buffers[i].info.c_struct.
3335 cmd_phys);
James Ketrenos2c86c272005-03-23 17:32:29 -06003336 }
3337
3338 kfree(priv->msg_buffers);
3339 priv->msg_buffers = NULL;
3340}
3341
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003342static ssize_t show_pci(struct device *d, struct device_attribute *attr,
3343 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003344{
3345 struct pci_dev *pci_dev = container_of(d, struct pci_dev, dev);
3346 char *out = buf;
3347 int i, j;
3348 u32 val;
3349
3350 for (i = 0; i < 16; i++) {
3351 out += sprintf(out, "[%08X] ", i * 16);
3352 for (j = 0; j < 16; j += 4) {
3353 pci_read_config_dword(pci_dev, i * 16 + j, &val);
3354 out += sprintf(out, "%08X ", val);
3355 }
3356 out += sprintf(out, "\n");
3357 }
3358
3359 return out - buf;
3360}
James Ketrenosee8e3652005-09-14 09:47:29 -05003361
James Ketrenos2c86c272005-03-23 17:32:29 -06003362static DEVICE_ATTR(pci, S_IRUGO, show_pci, NULL);
3363
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003364static ssize_t show_cfg(struct device *d, struct device_attribute *attr,
3365 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003366{
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003367 struct ipw2100_priv *p = d->driver_data;
James Ketrenos2c86c272005-03-23 17:32:29 -06003368 return sprintf(buf, "0x%08x\n", (int)p->config);
3369}
James Ketrenosee8e3652005-09-14 09:47:29 -05003370
James Ketrenos2c86c272005-03-23 17:32:29 -06003371static DEVICE_ATTR(cfg, S_IRUGO, show_cfg, NULL);
3372
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003373static ssize_t show_status(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003374 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003375{
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003376 struct ipw2100_priv *p = d->driver_data;
James Ketrenos2c86c272005-03-23 17:32:29 -06003377 return sprintf(buf, "0x%08x\n", (int)p->status);
3378}
James Ketrenosee8e3652005-09-14 09:47:29 -05003379
James Ketrenos2c86c272005-03-23 17:32:29 -06003380static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
3381
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003382static ssize_t show_capability(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003383 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003384{
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003385 struct ipw2100_priv *p = d->driver_data;
James Ketrenos2c86c272005-03-23 17:32:29 -06003386 return sprintf(buf, "0x%08x\n", (int)p->capability);
3387}
James Ketrenos2c86c272005-03-23 17:32:29 -06003388
James Ketrenosee8e3652005-09-14 09:47:29 -05003389static DEVICE_ATTR(capability, S_IRUGO, show_capability, NULL);
James Ketrenos2c86c272005-03-23 17:32:29 -06003390
3391#define IPW2100_REG(x) { IPW_ ##x, #x }
Jiri Bencc4aee8c2005-08-25 20:04:43 -04003392static const struct {
James Ketrenos2c86c272005-03-23 17:32:29 -06003393 u32 addr;
3394 const char *name;
3395} hw_data[] = {
James Ketrenosee8e3652005-09-14 09:47:29 -05003396IPW2100_REG(REG_GP_CNTRL),
3397 IPW2100_REG(REG_GPIO),
3398 IPW2100_REG(REG_INTA),
3399 IPW2100_REG(REG_INTA_MASK), IPW2100_REG(REG_RESET_REG),};
James Ketrenos2c86c272005-03-23 17:32:29 -06003400#define IPW2100_NIC(x, s) { x, #x, s }
Jiri Bencc4aee8c2005-08-25 20:04:43 -04003401static const struct {
James Ketrenos2c86c272005-03-23 17:32:29 -06003402 u32 addr;
3403 const char *name;
3404 size_t size;
3405} nic_data[] = {
James Ketrenosee8e3652005-09-14 09:47:29 -05003406IPW2100_NIC(IPW2100_CONTROL_REG, 2),
3407 IPW2100_NIC(0x210014, 1), IPW2100_NIC(0x210000, 1),};
James Ketrenos2c86c272005-03-23 17:32:29 -06003408#define IPW2100_ORD(x, d) { IPW_ORD_ ##x, #x, d }
Jiri Bencc4aee8c2005-08-25 20:04:43 -04003409static const struct {
James Ketrenos2c86c272005-03-23 17:32:29 -06003410 u8 index;
3411 const char *name;
3412 const char *desc;
3413} ord_data[] = {
James Ketrenosee8e3652005-09-14 09:47:29 -05003414IPW2100_ORD(STAT_TX_HOST_REQUESTS, "requested Host Tx's (MSDU)"),
3415 IPW2100_ORD(STAT_TX_HOST_COMPLETE,
3416 "successful Host Tx's (MSDU)"),
3417 IPW2100_ORD(STAT_TX_DIR_DATA,
3418 "successful Directed Tx's (MSDU)"),
3419 IPW2100_ORD(STAT_TX_DIR_DATA1,
3420 "successful Directed Tx's (MSDU) @ 1MB"),
3421 IPW2100_ORD(STAT_TX_DIR_DATA2,
3422 "successful Directed Tx's (MSDU) @ 2MB"),
3423 IPW2100_ORD(STAT_TX_DIR_DATA5_5,
3424 "successful Directed Tx's (MSDU) @ 5_5MB"),
3425 IPW2100_ORD(STAT_TX_DIR_DATA11,
3426 "successful Directed Tx's (MSDU) @ 11MB"),
3427 IPW2100_ORD(STAT_TX_NODIR_DATA1,
3428 "successful Non_Directed Tx's (MSDU) @ 1MB"),
3429 IPW2100_ORD(STAT_TX_NODIR_DATA2,
3430 "successful Non_Directed Tx's (MSDU) @ 2MB"),
3431 IPW2100_ORD(STAT_TX_NODIR_DATA5_5,
3432 "successful Non_Directed Tx's (MSDU) @ 5.5MB"),
3433 IPW2100_ORD(STAT_TX_NODIR_DATA11,
3434 "successful Non_Directed Tx's (MSDU) @ 11MB"),
3435 IPW2100_ORD(STAT_NULL_DATA, "successful NULL data Tx's"),
3436 IPW2100_ORD(STAT_TX_RTS, "successful Tx RTS"),
3437 IPW2100_ORD(STAT_TX_CTS, "successful Tx CTS"),
3438 IPW2100_ORD(STAT_TX_ACK, "successful Tx ACK"),
3439 IPW2100_ORD(STAT_TX_ASSN, "successful Association Tx's"),
3440 IPW2100_ORD(STAT_TX_ASSN_RESP,
3441 "successful Association response Tx's"),
3442 IPW2100_ORD(STAT_TX_REASSN,
3443 "successful Reassociation Tx's"),
3444 IPW2100_ORD(STAT_TX_REASSN_RESP,
3445 "successful Reassociation response Tx's"),
3446 IPW2100_ORD(STAT_TX_PROBE,
3447 "probes successfully transmitted"),
3448 IPW2100_ORD(STAT_TX_PROBE_RESP,
3449 "probe responses successfully transmitted"),
3450 IPW2100_ORD(STAT_TX_BEACON, "tx beacon"),
3451 IPW2100_ORD(STAT_TX_ATIM, "Tx ATIM"),
3452 IPW2100_ORD(STAT_TX_DISASSN,
3453 "successful Disassociation TX"),
3454 IPW2100_ORD(STAT_TX_AUTH, "successful Authentication Tx"),
3455 IPW2100_ORD(STAT_TX_DEAUTH,
3456 "successful Deauthentication TX"),
3457 IPW2100_ORD(STAT_TX_TOTAL_BYTES,
3458 "Total successful Tx data bytes"),
3459 IPW2100_ORD(STAT_TX_RETRIES, "Tx retries"),
3460 IPW2100_ORD(STAT_TX_RETRY1, "Tx retries at 1MBPS"),
3461 IPW2100_ORD(STAT_TX_RETRY2, "Tx retries at 2MBPS"),
3462 IPW2100_ORD(STAT_TX_RETRY5_5, "Tx retries at 5.5MBPS"),
3463 IPW2100_ORD(STAT_TX_RETRY11, "Tx retries at 11MBPS"),
3464 IPW2100_ORD(STAT_TX_FAILURES, "Tx Failures"),
3465 IPW2100_ORD(STAT_TX_MAX_TRIES_IN_HOP,
3466 "times max tries in a hop failed"),
3467 IPW2100_ORD(STAT_TX_DISASSN_FAIL,
3468 "times disassociation failed"),
3469 IPW2100_ORD(STAT_TX_ERR_CTS, "missed/bad CTS frames"),
3470 IPW2100_ORD(STAT_TX_ERR_ACK, "tx err due to acks"),
3471 IPW2100_ORD(STAT_RX_HOST, "packets passed to host"),
3472 IPW2100_ORD(STAT_RX_DIR_DATA, "directed packets"),
3473 IPW2100_ORD(STAT_RX_DIR_DATA1, "directed packets at 1MB"),
3474 IPW2100_ORD(STAT_RX_DIR_DATA2, "directed packets at 2MB"),
3475 IPW2100_ORD(STAT_RX_DIR_DATA5_5,
3476 "directed packets at 5.5MB"),
3477 IPW2100_ORD(STAT_RX_DIR_DATA11, "directed packets at 11MB"),
3478 IPW2100_ORD(STAT_RX_NODIR_DATA, "nondirected packets"),
3479 IPW2100_ORD(STAT_RX_NODIR_DATA1,
3480 "nondirected packets at 1MB"),
3481 IPW2100_ORD(STAT_RX_NODIR_DATA2,
3482 "nondirected packets at 2MB"),
3483 IPW2100_ORD(STAT_RX_NODIR_DATA5_5,
3484 "nondirected packets at 5.5MB"),
3485 IPW2100_ORD(STAT_RX_NODIR_DATA11,
3486 "nondirected packets at 11MB"),
3487 IPW2100_ORD(STAT_RX_NULL_DATA, "null data rx's"),
3488 IPW2100_ORD(STAT_RX_RTS, "Rx RTS"), IPW2100_ORD(STAT_RX_CTS,
3489 "Rx CTS"),
3490 IPW2100_ORD(STAT_RX_ACK, "Rx ACK"),
3491 IPW2100_ORD(STAT_RX_CFEND, "Rx CF End"),
3492 IPW2100_ORD(STAT_RX_CFEND_ACK, "Rx CF End + CF Ack"),
3493 IPW2100_ORD(STAT_RX_ASSN, "Association Rx's"),
3494 IPW2100_ORD(STAT_RX_ASSN_RESP, "Association response Rx's"),
3495 IPW2100_ORD(STAT_RX_REASSN, "Reassociation Rx's"),
3496 IPW2100_ORD(STAT_RX_REASSN_RESP,
3497 "Reassociation response Rx's"),
3498 IPW2100_ORD(STAT_RX_PROBE, "probe Rx's"),
3499 IPW2100_ORD(STAT_RX_PROBE_RESP, "probe response Rx's"),
3500 IPW2100_ORD(STAT_RX_BEACON, "Rx beacon"),
3501 IPW2100_ORD(STAT_RX_ATIM, "Rx ATIM"),
3502 IPW2100_ORD(STAT_RX_DISASSN, "disassociation Rx"),
3503 IPW2100_ORD(STAT_RX_AUTH, "authentication Rx"),
3504 IPW2100_ORD(STAT_RX_DEAUTH, "deauthentication Rx"),
3505 IPW2100_ORD(STAT_RX_TOTAL_BYTES,
3506 "Total rx data bytes received"),
3507 IPW2100_ORD(STAT_RX_ERR_CRC, "packets with Rx CRC error"),
3508 IPW2100_ORD(STAT_RX_ERR_CRC1, "Rx CRC errors at 1MB"),
3509 IPW2100_ORD(STAT_RX_ERR_CRC2, "Rx CRC errors at 2MB"),
3510 IPW2100_ORD(STAT_RX_ERR_CRC5_5, "Rx CRC errors at 5.5MB"),
3511 IPW2100_ORD(STAT_RX_ERR_CRC11, "Rx CRC errors at 11MB"),
3512 IPW2100_ORD(STAT_RX_DUPLICATE1,
3513 "duplicate rx packets at 1MB"),
3514 IPW2100_ORD(STAT_RX_DUPLICATE2,
3515 "duplicate rx packets at 2MB"),
3516 IPW2100_ORD(STAT_RX_DUPLICATE5_5,
3517 "duplicate rx packets at 5.5MB"),
3518 IPW2100_ORD(STAT_RX_DUPLICATE11,
3519 "duplicate rx packets at 11MB"),
3520 IPW2100_ORD(STAT_RX_DUPLICATE, "duplicate rx packets"),
3521 IPW2100_ORD(PERS_DB_LOCK, "locking fw permanent db"),
3522 IPW2100_ORD(PERS_DB_SIZE, "size of fw permanent db"),
3523 IPW2100_ORD(PERS_DB_ADDR, "address of fw permanent db"),
3524 IPW2100_ORD(STAT_RX_INVALID_PROTOCOL,
3525 "rx frames with invalid protocol"),
3526 IPW2100_ORD(SYS_BOOT_TIME, "Boot time"),
3527 IPW2100_ORD(STAT_RX_NO_BUFFER,
3528 "rx frames rejected due to no buffer"),
3529 IPW2100_ORD(STAT_RX_MISSING_FRAG,
3530 "rx frames dropped due to missing fragment"),
3531 IPW2100_ORD(STAT_RX_ORPHAN_FRAG,
3532 "rx frames dropped due to non-sequential fragment"),
3533 IPW2100_ORD(STAT_RX_ORPHAN_FRAME,
3534 "rx frames dropped due to unmatched 1st frame"),
3535 IPW2100_ORD(STAT_RX_FRAG_AGEOUT,
3536 "rx frames dropped due to uncompleted frame"),
3537 IPW2100_ORD(STAT_RX_ICV_ERRORS,
3538 "ICV errors during decryption"),
3539 IPW2100_ORD(STAT_PSP_SUSPENSION, "times adapter suspended"),
3540 IPW2100_ORD(STAT_PSP_BCN_TIMEOUT, "beacon timeout"),
3541 IPW2100_ORD(STAT_PSP_POLL_TIMEOUT,
3542 "poll response timeouts"),
3543 IPW2100_ORD(STAT_PSP_NONDIR_TIMEOUT,
3544 "timeouts waiting for last {broad,multi}cast pkt"),
3545 IPW2100_ORD(STAT_PSP_RX_DTIMS, "PSP DTIMs received"),
3546 IPW2100_ORD(STAT_PSP_RX_TIMS, "PSP TIMs received"),
3547 IPW2100_ORD(STAT_PSP_STATION_ID, "PSP Station ID"),
3548 IPW2100_ORD(LAST_ASSN_TIME, "RTC time of last association"),
3549 IPW2100_ORD(STAT_PERCENT_MISSED_BCNS,
3550 "current calculation of % missed beacons"),
3551 IPW2100_ORD(STAT_PERCENT_RETRIES,
3552 "current calculation of % missed tx retries"),
3553 IPW2100_ORD(ASSOCIATED_AP_PTR,
3554 "0 if not associated, else pointer to AP table entry"),
3555 IPW2100_ORD(AVAILABLE_AP_CNT,
3556 "AP's decsribed in the AP table"),
3557 IPW2100_ORD(AP_LIST_PTR, "Ptr to list of available APs"),
3558 IPW2100_ORD(STAT_AP_ASSNS, "associations"),
3559 IPW2100_ORD(STAT_ASSN_FAIL, "association failures"),
3560 IPW2100_ORD(STAT_ASSN_RESP_FAIL,
3561 "failures due to response fail"),
3562 IPW2100_ORD(STAT_FULL_SCANS, "full scans"),
3563 IPW2100_ORD(CARD_DISABLED, "Card Disabled"),
3564 IPW2100_ORD(STAT_ROAM_INHIBIT,
3565 "times roaming was inhibited due to activity"),
3566 IPW2100_ORD(RSSI_AT_ASSN,
3567 "RSSI of associated AP at time of association"),
3568 IPW2100_ORD(STAT_ASSN_CAUSE1,
3569 "reassociation: no probe response or TX on hop"),
3570 IPW2100_ORD(STAT_ASSN_CAUSE2,
3571 "reassociation: poor tx/rx quality"),
3572 IPW2100_ORD(STAT_ASSN_CAUSE3,
3573 "reassociation: tx/rx quality (excessive AP load"),
3574 IPW2100_ORD(STAT_ASSN_CAUSE4,
3575 "reassociation: AP RSSI level"),
3576 IPW2100_ORD(STAT_ASSN_CAUSE5,
3577 "reassociations due to load leveling"),
3578 IPW2100_ORD(STAT_AUTH_FAIL, "times authentication failed"),
3579 IPW2100_ORD(STAT_AUTH_RESP_FAIL,
3580 "times authentication response failed"),
3581 IPW2100_ORD(STATION_TABLE_CNT,
3582 "entries in association table"),
3583 IPW2100_ORD(RSSI_AVG_CURR, "Current avg RSSI"),
3584 IPW2100_ORD(POWER_MGMT_MODE, "Power mode - 0=CAM, 1=PSP"),
3585 IPW2100_ORD(COUNTRY_CODE,
3586 "IEEE country code as recv'd from beacon"),
3587 IPW2100_ORD(COUNTRY_CHANNELS,
3588 "channels suported by country"),
3589 IPW2100_ORD(RESET_CNT, "adapter resets (warm)"),
3590 IPW2100_ORD(BEACON_INTERVAL, "Beacon interval"),
3591 IPW2100_ORD(ANTENNA_DIVERSITY,
3592 "TRUE if antenna diversity is disabled"),
3593 IPW2100_ORD(DTIM_PERIOD, "beacon intervals between DTIMs"),
3594 IPW2100_ORD(OUR_FREQ,
3595 "current radio freq lower digits - channel ID"),
3596 IPW2100_ORD(RTC_TIME, "current RTC time"),
3597 IPW2100_ORD(PORT_TYPE, "operating mode"),
3598 IPW2100_ORD(CURRENT_TX_RATE, "current tx rate"),
3599 IPW2100_ORD(SUPPORTED_RATES, "supported tx rates"),
3600 IPW2100_ORD(ATIM_WINDOW, "current ATIM Window"),
3601 IPW2100_ORD(BASIC_RATES, "basic tx rates"),
3602 IPW2100_ORD(NIC_HIGHEST_RATE, "NIC highest tx rate"),
3603 IPW2100_ORD(AP_HIGHEST_RATE, "AP highest tx rate"),
3604 IPW2100_ORD(CAPABILITIES,
3605 "Management frame capability field"),
3606 IPW2100_ORD(AUTH_TYPE, "Type of authentication"),
3607 IPW2100_ORD(RADIO_TYPE, "Adapter card platform type"),
3608 IPW2100_ORD(RTS_THRESHOLD,
3609 "Min packet length for RTS handshaking"),
3610 IPW2100_ORD(INT_MODE, "International mode"),
3611 IPW2100_ORD(FRAGMENTATION_THRESHOLD,
3612 "protocol frag threshold"),
3613 IPW2100_ORD(EEPROM_SRAM_DB_BLOCK_START_ADDRESS,
3614 "EEPROM offset in SRAM"),
3615 IPW2100_ORD(EEPROM_SRAM_DB_BLOCK_SIZE,
3616 "EEPROM size in SRAM"),
3617 IPW2100_ORD(EEPROM_SKU_CAPABILITY, "EEPROM SKU Capability"),
3618 IPW2100_ORD(EEPROM_IBSS_11B_CHANNELS,
3619 "EEPROM IBSS 11b channel set"),
3620 IPW2100_ORD(MAC_VERSION, "MAC Version"),
3621 IPW2100_ORD(MAC_REVISION, "MAC Revision"),
3622 IPW2100_ORD(RADIO_VERSION, "Radio Version"),
3623 IPW2100_ORD(NIC_MANF_DATE_TIME, "MANF Date/Time STAMP"),
3624 IPW2100_ORD(UCODE_VERSION, "Ucode Version"),};
James Ketrenos2c86c272005-03-23 17:32:29 -06003625
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003626static ssize_t show_registers(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003627 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003628{
3629 int i;
3630 struct ipw2100_priv *priv = dev_get_drvdata(d);
3631 struct net_device *dev = priv->net_dev;
James Ketrenosee8e3652005-09-14 09:47:29 -05003632 char *out = buf;
James Ketrenos2c86c272005-03-23 17:32:29 -06003633 u32 val = 0;
3634
3635 out += sprintf(out, "%30s [Address ] : Hex\n", "Register");
3636
3637 for (i = 0; i < (sizeof(hw_data) / sizeof(*hw_data)); i++) {
3638 read_register(dev, hw_data[i].addr, &val);
3639 out += sprintf(out, "%30s [%08X] : %08X\n",
3640 hw_data[i].name, hw_data[i].addr, val);
3641 }
3642
3643 return out - buf;
3644}
James Ketrenosee8e3652005-09-14 09:47:29 -05003645
James Ketrenos2c86c272005-03-23 17:32:29 -06003646static DEVICE_ATTR(registers, S_IRUGO, show_registers, NULL);
3647
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003648static ssize_t show_hardware(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003649 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003650{
3651 struct ipw2100_priv *priv = dev_get_drvdata(d);
3652 struct net_device *dev = priv->net_dev;
James Ketrenosee8e3652005-09-14 09:47:29 -05003653 char *out = buf;
James Ketrenos2c86c272005-03-23 17:32:29 -06003654 int i;
3655
3656 out += sprintf(out, "%30s [Address ] : Hex\n", "NIC entry");
3657
3658 for (i = 0; i < (sizeof(nic_data) / sizeof(*nic_data)); i++) {
3659 u8 tmp8;
3660 u16 tmp16;
3661 u32 tmp32;
3662
3663 switch (nic_data[i].size) {
3664 case 1:
3665 read_nic_byte(dev, nic_data[i].addr, &tmp8);
3666 out += sprintf(out, "%30s [%08X] : %02X\n",
3667 nic_data[i].name, nic_data[i].addr,
3668 tmp8);
3669 break;
3670 case 2:
3671 read_nic_word(dev, nic_data[i].addr, &tmp16);
3672 out += sprintf(out, "%30s [%08X] : %04X\n",
3673 nic_data[i].name, nic_data[i].addr,
3674 tmp16);
3675 break;
3676 case 4:
3677 read_nic_dword(dev, nic_data[i].addr, &tmp32);
3678 out += sprintf(out, "%30s [%08X] : %08X\n",
3679 nic_data[i].name, nic_data[i].addr,
3680 tmp32);
3681 break;
3682 }
3683 }
3684 return out - buf;
3685}
James Ketrenosee8e3652005-09-14 09:47:29 -05003686
James Ketrenos2c86c272005-03-23 17:32:29 -06003687static DEVICE_ATTR(hardware, S_IRUGO, show_hardware, NULL);
3688
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003689static ssize_t show_memory(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003690 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003691{
3692 struct ipw2100_priv *priv = dev_get_drvdata(d);
3693 struct net_device *dev = priv->net_dev;
3694 static unsigned long loop = 0;
3695 int len = 0;
3696 u32 buffer[4];
3697 int i;
3698 char line[81];
3699
3700 if (loop >= 0x30000)
3701 loop = 0;
3702
3703 /* sysfs provides us PAGE_SIZE buffer */
3704 while (len < PAGE_SIZE - 128 && loop < 0x30000) {
3705
James Ketrenosee8e3652005-09-14 09:47:29 -05003706 if (priv->snapshot[0])
3707 for (i = 0; i < 4; i++)
3708 buffer[i] =
3709 *(u32 *) SNAPSHOT_ADDR(loop + i * 4);
3710 else
3711 for (i = 0; i < 4; i++)
3712 read_nic_dword(dev, loop + i * 4, &buffer[i]);
James Ketrenos2c86c272005-03-23 17:32:29 -06003713
3714 if (priv->dump_raw)
3715 len += sprintf(buf + len,
3716 "%c%c%c%c"
3717 "%c%c%c%c"
3718 "%c%c%c%c"
3719 "%c%c%c%c",
James Ketrenosee8e3652005-09-14 09:47:29 -05003720 ((u8 *) buffer)[0x0],
3721 ((u8 *) buffer)[0x1],
3722 ((u8 *) buffer)[0x2],
3723 ((u8 *) buffer)[0x3],
3724 ((u8 *) buffer)[0x4],
3725 ((u8 *) buffer)[0x5],
3726 ((u8 *) buffer)[0x6],
3727 ((u8 *) buffer)[0x7],
3728 ((u8 *) buffer)[0x8],
3729 ((u8 *) buffer)[0x9],
3730 ((u8 *) buffer)[0xa],
3731 ((u8 *) buffer)[0xb],
3732 ((u8 *) buffer)[0xc],
3733 ((u8 *) buffer)[0xd],
3734 ((u8 *) buffer)[0xe],
3735 ((u8 *) buffer)[0xf]);
James Ketrenos2c86c272005-03-23 17:32:29 -06003736 else
3737 len += sprintf(buf + len, "%s\n",
3738 snprint_line(line, sizeof(line),
James Ketrenosee8e3652005-09-14 09:47:29 -05003739 (u8 *) buffer, 16, loop));
James Ketrenos2c86c272005-03-23 17:32:29 -06003740 loop += 16;
3741 }
3742
3743 return len;
3744}
3745
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003746static ssize_t store_memory(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003747 const char *buf, size_t count)
James Ketrenos2c86c272005-03-23 17:32:29 -06003748{
3749 struct ipw2100_priv *priv = dev_get_drvdata(d);
3750 struct net_device *dev = priv->net_dev;
3751 const char *p = buf;
3752
Jeff Garzikc2a8fad2005-11-09 00:49:38 -05003753 (void) dev; /* kill unused-var warning for debug-only code */
3754
James Ketrenos2c86c272005-03-23 17:32:29 -06003755 if (count < 1)
3756 return count;
3757
3758 if (p[0] == '1' ||
3759 (count >= 2 && tolower(p[0]) == 'o' && tolower(p[1]) == 'n')) {
3760 IPW_DEBUG_INFO("%s: Setting memory dump to RAW mode.\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05003761 dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06003762 priv->dump_raw = 1;
3763
3764 } else if (p[0] == '0' || (count >= 2 && tolower(p[0]) == 'o' &&
James Ketrenosee8e3652005-09-14 09:47:29 -05003765 tolower(p[1]) == 'f')) {
James Ketrenos2c86c272005-03-23 17:32:29 -06003766 IPW_DEBUG_INFO("%s: Setting memory dump to HEX mode.\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05003767 dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06003768 priv->dump_raw = 0;
3769
3770 } else if (tolower(p[0]) == 'r') {
James Ketrenosee8e3652005-09-14 09:47:29 -05003771 IPW_DEBUG_INFO("%s: Resetting firmware snapshot.\n", dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06003772 ipw2100_snapshot_free(priv);
3773
3774 } else
3775 IPW_DEBUG_INFO("%s: Usage: 0|on = HEX, 1|off = RAW, "
James Ketrenosee8e3652005-09-14 09:47:29 -05003776 "reset = clear memory snapshot\n", dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06003777
3778 return count;
3779}
James Ketrenos2c86c272005-03-23 17:32:29 -06003780
James Ketrenosee8e3652005-09-14 09:47:29 -05003781static DEVICE_ATTR(memory, S_IWUSR | S_IRUGO, show_memory, store_memory);
James Ketrenos2c86c272005-03-23 17:32:29 -06003782
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003783static ssize_t show_ordinals(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003784 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003785{
3786 struct ipw2100_priv *priv = dev_get_drvdata(d);
3787 u32 val = 0;
3788 int len = 0;
3789 u32 val_len;
3790 static int loop = 0;
3791
James Ketrenos82328352005-08-24 22:33:31 -05003792 if (priv->status & STATUS_RF_KILL_MASK)
3793 return 0;
3794
James Ketrenos2c86c272005-03-23 17:32:29 -06003795 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);
Brice Goglin0f52bf92005-12-01 01:41:46 -08003832#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06003833 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
James Ketrenos82328352005-08-24 22:33:31 -05003951 if (priv->status & STATUS_RF_KILL_MASK)
3952 return 0;
3953
James Ketrenos2c86c272005-03-23 17:32:29 -06003954 memset(essid, 0, sizeof(essid));
3955 memset(bssid, 0, sizeof(bssid));
3956
3957 length = IW_ESSID_MAX_SIZE;
3958 ret = ipw2100_get_ordinal(priv, IPW_ORD_STAT_ASSN_SSID, essid, &length);
3959 if (ret)
3960 IPW_DEBUG_INFO("failed querying ordinals at line %d\n",
3961 __LINE__);
3962
3963 length = sizeof(bssid);
3964 ret = ipw2100_get_ordinal(priv, IPW_ORD_STAT_ASSN_AP_BSSID,
3965 bssid, &length);
3966 if (ret)
3967 IPW_DEBUG_INFO("failed querying ordinals at line %d\n",
3968 __LINE__);
3969
3970 length = sizeof(u32);
3971 ret = ipw2100_get_ordinal(priv, IPW_ORD_OUR_FREQ, &chan, &length);
3972 if (ret)
3973 IPW_DEBUG_INFO("failed querying ordinals at line %d\n",
3974 __LINE__);
3975
3976 out += sprintf(out, "ESSID: %s\n", essid);
3977 out += sprintf(out, "BSSID: %02x:%02x:%02x:%02x:%02x:%02x\n",
3978 bssid[0], bssid[1], bssid[2],
3979 bssid[3], bssid[4], bssid[5]);
3980 out += sprintf(out, "Channel: %d\n", chan);
3981
3982 return out - buf;
3983}
James Ketrenos2c86c272005-03-23 17:32:29 -06003984
James Ketrenosee8e3652005-09-14 09:47:29 -05003985static DEVICE_ATTR(bssinfo, S_IRUGO, show_bssinfo, NULL);
James Ketrenos2c86c272005-03-23 17:32:29 -06003986
Brice Goglin0f52bf92005-12-01 01:41:46 -08003987#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06003988static ssize_t show_debug_level(struct device_driver *d, char *buf)
3989{
3990 return sprintf(buf, "0x%08X\n", ipw2100_debug_level);
3991}
3992
James Ketrenos82328352005-08-24 22:33:31 -05003993static ssize_t store_debug_level(struct device_driver *d,
3994 const char *buf, size_t count)
James Ketrenos2c86c272005-03-23 17:32:29 -06003995{
3996 char *p = (char *)buf;
3997 u32 val;
3998
3999 if (p[1] == 'x' || p[1] == 'X' || p[0] == 'x' || p[0] == 'X') {
4000 p++;
4001 if (p[0] == 'x' || p[0] == 'X')
4002 p++;
4003 val = simple_strtoul(p, &p, 16);
4004 } else
4005 val = simple_strtoul(p, &p, 10);
4006 if (p == buf)
Zhu Yia1e695a2005-07-04 14:06:00 +08004007 IPW_DEBUG_INFO(": %s is not in hex or decimal form.\n", buf);
James Ketrenos2c86c272005-03-23 17:32:29 -06004008 else
4009 ipw2100_debug_level = val;
4010
4011 return strnlen(buf, count);
4012}
James Ketrenosee8e3652005-09-14 09:47:29 -05004013
James Ketrenos2c86c272005-03-23 17:32:29 -06004014static DRIVER_ATTR(debug_level, S_IWUSR | S_IRUGO, show_debug_level,
4015 store_debug_level);
Brice Goglin0f52bf92005-12-01 01:41:46 -08004016#endif /* CONFIG_IPW2100_DEBUG */
James Ketrenos2c86c272005-03-23 17:32:29 -06004017
Andrew Mortonedfc43f2005-06-20 14:30:35 -07004018static ssize_t show_fatal_error(struct device *d,
James Ketrenosee8e3652005-09-14 09:47:29 -05004019 struct device_attribute *attr, char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06004020{
4021 struct ipw2100_priv *priv = dev_get_drvdata(d);
4022 char *out = buf;
4023 int i;
4024
4025 if (priv->fatal_error)
James Ketrenosee8e3652005-09-14 09:47:29 -05004026 out += sprintf(out, "0x%08X\n", priv->fatal_error);
James Ketrenos2c86c272005-03-23 17:32:29 -06004027 else
4028 out += sprintf(out, "0\n");
4029
4030 for (i = 1; i <= IPW2100_ERROR_QUEUE; i++) {
4031 if (!priv->fatal_errors[(priv->fatal_index - i) %
4032 IPW2100_ERROR_QUEUE])
4033 continue;
4034
4035 out += sprintf(out, "%d. 0x%08X\n", i,
4036 priv->fatal_errors[(priv->fatal_index - i) %
4037 IPW2100_ERROR_QUEUE]);
4038 }
4039
4040 return out - buf;
4041}
4042
Andrew Mortonedfc43f2005-06-20 14:30:35 -07004043static ssize_t store_fatal_error(struct device *d,
James Ketrenosee8e3652005-09-14 09:47:29 -05004044 struct device_attribute *attr, const char *buf,
4045 size_t count)
James Ketrenos2c86c272005-03-23 17:32:29 -06004046{
4047 struct ipw2100_priv *priv = dev_get_drvdata(d);
4048 schedule_reset(priv);
4049 return count;
4050}
James Ketrenos2c86c272005-03-23 17:32:29 -06004051
James Ketrenosee8e3652005-09-14 09:47:29 -05004052static DEVICE_ATTR(fatal_error, S_IWUSR | S_IRUGO, show_fatal_error,
4053 store_fatal_error);
James Ketrenos2c86c272005-03-23 17:32:29 -06004054
Andrew Mortonedfc43f2005-06-20 14:30:35 -07004055static ssize_t show_scan_age(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05004056 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06004057{
4058 struct ipw2100_priv *priv = dev_get_drvdata(d);
4059 return sprintf(buf, "%d\n", priv->ieee->scan_age);
4060}
4061
Andrew Mortonedfc43f2005-06-20 14:30:35 -07004062static ssize_t store_scan_age(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05004063 const char *buf, size_t count)
James Ketrenos2c86c272005-03-23 17:32:29 -06004064{
4065 struct ipw2100_priv *priv = dev_get_drvdata(d);
4066 struct net_device *dev = priv->net_dev;
4067 char buffer[] = "00000000";
4068 unsigned long len =
4069 (sizeof(buffer) - 1) > count ? count : sizeof(buffer) - 1;
4070 unsigned long val;
4071 char *p = buffer;
4072
Jeff Garzikc2a8fad2005-11-09 00:49:38 -05004073 (void) dev; /* kill unused-var warning for debug-only code */
4074
James Ketrenos2c86c272005-03-23 17:32:29 -06004075 IPW_DEBUG_INFO("enter\n");
4076
4077 strncpy(buffer, buf, len);
4078 buffer[len] = 0;
4079
4080 if (p[1] == 'x' || p[1] == 'X' || p[0] == 'x' || p[0] == 'X') {
4081 p++;
4082 if (p[0] == 'x' || p[0] == 'X')
4083 p++;
4084 val = simple_strtoul(p, &p, 16);
4085 } else
4086 val = simple_strtoul(p, &p, 10);
4087 if (p == buffer) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004088 IPW_DEBUG_INFO("%s: user supplied invalid value.\n", dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06004089 } else {
4090 priv->ieee->scan_age = val;
4091 IPW_DEBUG_INFO("set scan_age = %u\n", priv->ieee->scan_age);
4092 }
4093
4094 IPW_DEBUG_INFO("exit\n");
4095 return len;
4096}
James Ketrenosee8e3652005-09-14 09:47:29 -05004097
James Ketrenos2c86c272005-03-23 17:32:29 -06004098static DEVICE_ATTR(scan_age, S_IWUSR | S_IRUGO, show_scan_age, store_scan_age);
4099
Andrew Mortonedfc43f2005-06-20 14:30:35 -07004100static ssize_t show_rf_kill(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05004101 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06004102{
4103 /* 0 - RF kill not enabled
4104 1 - SW based RF kill active (sysfs)
4105 2 - HW based RF kill active
4106 3 - Both HW and SW baed RF kill active */
4107 struct ipw2100_priv *priv = (struct ipw2100_priv *)d->driver_data;
4108 int val = ((priv->status & STATUS_RF_KILL_SW) ? 0x1 : 0x0) |
James Ketrenosee8e3652005-09-14 09:47:29 -05004109 (rf_kill_active(priv) ? 0x2 : 0x0);
James Ketrenos2c86c272005-03-23 17:32:29 -06004110 return sprintf(buf, "%i\n", val);
4111}
4112
4113static int ipw_radio_kill_sw(struct ipw2100_priv *priv, int disable_radio)
4114{
4115 if ((disable_radio ? 1 : 0) ==
4116 (priv->status & STATUS_RF_KILL_SW ? 1 : 0))
James Ketrenosee8e3652005-09-14 09:47:29 -05004117 return 0;
James Ketrenos2c86c272005-03-23 17:32:29 -06004118
4119 IPW_DEBUG_RF_KILL("Manual SW RF Kill set to: RADIO %s\n",
4120 disable_radio ? "OFF" : "ON");
4121
4122 down(&priv->action_sem);
4123
4124 if (disable_radio) {
4125 priv->status |= STATUS_RF_KILL_SW;
4126 ipw2100_down(priv);
4127 } else {
4128 priv->status &= ~STATUS_RF_KILL_SW;
4129 if (rf_kill_active(priv)) {
4130 IPW_DEBUG_RF_KILL("Can not turn radio back on - "
4131 "disabled by HW switch\n");
4132 /* Make sure the RF_KILL check timer is running */
4133 priv->stop_rf_kill = 0;
4134 cancel_delayed_work(&priv->rf_kill);
James Ketrenosee8e3652005-09-14 09:47:29 -05004135 queue_delayed_work(priv->workqueue, &priv->rf_kill, HZ);
James Ketrenos2c86c272005-03-23 17:32:29 -06004136 } else
4137 schedule_reset(priv);
4138 }
4139
4140 up(&priv->action_sem);
4141 return 1;
4142}
4143
Andrew Mortonedfc43f2005-06-20 14:30:35 -07004144static ssize_t store_rf_kill(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05004145 const char *buf, size_t count)
James Ketrenos2c86c272005-03-23 17:32:29 -06004146{
4147 struct ipw2100_priv *priv = dev_get_drvdata(d);
4148 ipw_radio_kill_sw(priv, buf[0] == '1');
4149 return count;
4150}
James Ketrenos2c86c272005-03-23 17:32:29 -06004151
James Ketrenosee8e3652005-09-14 09:47:29 -05004152static DEVICE_ATTR(rf_kill, S_IWUSR | S_IRUGO, show_rf_kill, store_rf_kill);
James Ketrenos2c86c272005-03-23 17:32:29 -06004153
4154static struct attribute *ipw2100_sysfs_entries[] = {
4155 &dev_attr_hardware.attr,
4156 &dev_attr_registers.attr,
4157 &dev_attr_ordinals.attr,
4158 &dev_attr_pci.attr,
4159 &dev_attr_stats.attr,
4160 &dev_attr_internals.attr,
4161 &dev_attr_bssinfo.attr,
4162 &dev_attr_memory.attr,
4163 &dev_attr_scan_age.attr,
4164 &dev_attr_fatal_error.attr,
4165 &dev_attr_rf_kill.attr,
4166 &dev_attr_cfg.attr,
4167 &dev_attr_status.attr,
4168 &dev_attr_capability.attr,
4169 NULL,
4170};
4171
4172static struct attribute_group ipw2100_attribute_group = {
4173 .attrs = ipw2100_sysfs_entries,
4174};
4175
James Ketrenos2c86c272005-03-23 17:32:29 -06004176static int status_queue_allocate(struct ipw2100_priv *priv, int entries)
4177{
4178 struct ipw2100_status_queue *q = &priv->status_queue;
4179
4180 IPW_DEBUG_INFO("enter\n");
4181
4182 q->size = entries * sizeof(struct ipw2100_status);
James Ketrenosee8e3652005-09-14 09:47:29 -05004183 q->drv =
4184 (struct ipw2100_status *)pci_alloc_consistent(priv->pci_dev,
4185 q->size, &q->nic);
James Ketrenos2c86c272005-03-23 17:32:29 -06004186 if (!q->drv) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004187 IPW_DEBUG_WARNING("Can not allocate status queue.\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06004188 return -ENOMEM;
4189 }
4190
4191 memset(q->drv, 0, q->size);
4192
4193 IPW_DEBUG_INFO("exit\n");
4194
4195 return 0;
4196}
4197
4198static void status_queue_free(struct ipw2100_priv *priv)
4199{
4200 IPW_DEBUG_INFO("enter\n");
4201
4202 if (priv->status_queue.drv) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004203 pci_free_consistent(priv->pci_dev, priv->status_queue.size,
4204 priv->status_queue.drv,
4205 priv->status_queue.nic);
James Ketrenos2c86c272005-03-23 17:32:29 -06004206 priv->status_queue.drv = NULL;
4207 }
4208
4209 IPW_DEBUG_INFO("exit\n");
4210}
4211
4212static int bd_queue_allocate(struct ipw2100_priv *priv,
4213 struct ipw2100_bd_queue *q, int entries)
4214{
4215 IPW_DEBUG_INFO("enter\n");
4216
4217 memset(q, 0, sizeof(struct ipw2100_bd_queue));
4218
4219 q->entries = entries;
4220 q->size = entries * sizeof(struct ipw2100_bd);
4221 q->drv = pci_alloc_consistent(priv->pci_dev, q->size, &q->nic);
4222 if (!q->drv) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004223 IPW_DEBUG_INFO
4224 ("can't allocate shared memory for buffer descriptors\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06004225 return -ENOMEM;
4226 }
4227 memset(q->drv, 0, q->size);
4228
4229 IPW_DEBUG_INFO("exit\n");
4230
4231 return 0;
4232}
4233
James Ketrenosee8e3652005-09-14 09:47:29 -05004234static void bd_queue_free(struct ipw2100_priv *priv, struct ipw2100_bd_queue *q)
James Ketrenos2c86c272005-03-23 17:32:29 -06004235{
4236 IPW_DEBUG_INFO("enter\n");
4237
4238 if (!q)
4239 return;
4240
4241 if (q->drv) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004242 pci_free_consistent(priv->pci_dev, q->size, q->drv, q->nic);
James Ketrenos2c86c272005-03-23 17:32:29 -06004243 q->drv = NULL;
4244 }
4245
4246 IPW_DEBUG_INFO("exit\n");
4247}
4248
James Ketrenosee8e3652005-09-14 09:47:29 -05004249static void bd_queue_initialize(struct ipw2100_priv *priv,
4250 struct ipw2100_bd_queue *q, u32 base, u32 size,
4251 u32 r, u32 w)
James Ketrenos2c86c272005-03-23 17:32:29 -06004252{
4253 IPW_DEBUG_INFO("enter\n");
4254
James Ketrenosee8e3652005-09-14 09:47:29 -05004255 IPW_DEBUG_INFO("initializing bd queue at virt=%p, phys=%08x\n", q->drv,
4256 (u32) q->nic);
James Ketrenos2c86c272005-03-23 17:32:29 -06004257
4258 write_register(priv->net_dev, base, q->nic);
4259 write_register(priv->net_dev, size, q->entries);
4260 write_register(priv->net_dev, r, q->oldest);
4261 write_register(priv->net_dev, w, q->next);
4262
4263 IPW_DEBUG_INFO("exit\n");
4264}
4265
4266static void ipw2100_kill_workqueue(struct ipw2100_priv *priv)
4267{
4268 if (priv->workqueue) {
4269 priv->stop_rf_kill = 1;
4270 priv->stop_hang_check = 1;
4271 cancel_delayed_work(&priv->reset_work);
4272 cancel_delayed_work(&priv->security_work);
4273 cancel_delayed_work(&priv->wx_event_work);
4274 cancel_delayed_work(&priv->hang_check);
4275 cancel_delayed_work(&priv->rf_kill);
4276 destroy_workqueue(priv->workqueue);
4277 priv->workqueue = NULL;
4278 }
4279}
4280
4281static int ipw2100_tx_allocate(struct ipw2100_priv *priv)
4282{
4283 int i, j, err = -EINVAL;
4284 void *v;
4285 dma_addr_t p;
4286
4287 IPW_DEBUG_INFO("enter\n");
4288
4289 err = bd_queue_allocate(priv, &priv->tx_queue, TX_QUEUE_LENGTH);
4290 if (err) {
4291 IPW_DEBUG_ERROR("%s: failed bd_queue_allocate\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05004292 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06004293 return err;
4294 }
4295
James Ketrenosee8e3652005-09-14 09:47:29 -05004296 priv->tx_buffers =
4297 (struct ipw2100_tx_packet *)kmalloc(TX_PENDED_QUEUE_LENGTH *
4298 sizeof(struct
4299 ipw2100_tx_packet),
4300 GFP_ATOMIC);
James Ketrenos2c86c272005-03-23 17:32:29 -06004301 if (!priv->tx_buffers) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004302 printk(KERN_ERR DRV_NAME
4303 ": %s: alloc failed form tx buffers.\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06004304 priv->net_dev->name);
4305 bd_queue_free(priv, &priv->tx_queue);
4306 return -ENOMEM;
4307 }
4308
4309 for (i = 0; i < TX_PENDED_QUEUE_LENGTH; i++) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004310 v = pci_alloc_consistent(priv->pci_dev,
4311 sizeof(struct ipw2100_data_header),
4312 &p);
James Ketrenos2c86c272005-03-23 17:32:29 -06004313 if (!v) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004314 printk(KERN_ERR DRV_NAME
4315 ": %s: PCI alloc failed for tx " "buffers.\n",
4316 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06004317 err = -ENOMEM;
4318 break;
4319 }
4320
4321 priv->tx_buffers[i].type = DATA;
James Ketrenosee8e3652005-09-14 09:47:29 -05004322 priv->tx_buffers[i].info.d_struct.data =
4323 (struct ipw2100_data_header *)v;
James Ketrenos2c86c272005-03-23 17:32:29 -06004324 priv->tx_buffers[i].info.d_struct.data_phys = p;
4325 priv->tx_buffers[i].info.d_struct.txb = NULL;
4326 }
4327
4328 if (i == TX_PENDED_QUEUE_LENGTH)
4329 return 0;
4330
4331 for (j = 0; j < i; j++) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004332 pci_free_consistent(priv->pci_dev,
4333 sizeof(struct ipw2100_data_header),
4334 priv->tx_buffers[j].info.d_struct.data,
4335 priv->tx_buffers[j].info.d_struct.
4336 data_phys);
James Ketrenos2c86c272005-03-23 17:32:29 -06004337 }
4338
4339 kfree(priv->tx_buffers);
4340 priv->tx_buffers = NULL;
4341
4342 return err;
4343}
4344
4345static void ipw2100_tx_initialize(struct ipw2100_priv *priv)
4346{
4347 int i;
4348
4349 IPW_DEBUG_INFO("enter\n");
4350
4351 /*
4352 * reinitialize packet info lists
4353 */
4354 INIT_LIST_HEAD(&priv->fw_pend_list);
4355 INIT_STAT(&priv->fw_pend_stat);
4356
4357 /*
4358 * reinitialize lists
4359 */
4360 INIT_LIST_HEAD(&priv->tx_pend_list);
4361 INIT_LIST_HEAD(&priv->tx_free_list);
4362 INIT_STAT(&priv->tx_pend_stat);
4363 INIT_STAT(&priv->tx_free_stat);
4364
4365 for (i = 0; i < TX_PENDED_QUEUE_LENGTH; i++) {
4366 /* We simply drop any SKBs that have been queued for
4367 * transmit */
4368 if (priv->tx_buffers[i].info.d_struct.txb) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004369 ieee80211_txb_free(priv->tx_buffers[i].info.d_struct.
4370 txb);
James Ketrenos2c86c272005-03-23 17:32:29 -06004371 priv->tx_buffers[i].info.d_struct.txb = NULL;
4372 }
4373
4374 list_add_tail(&priv->tx_buffers[i].list, &priv->tx_free_list);
4375 }
4376
4377 SET_STAT(&priv->tx_free_stat, i);
4378
4379 priv->tx_queue.oldest = 0;
4380 priv->tx_queue.available = priv->tx_queue.entries;
4381 priv->tx_queue.next = 0;
4382 INIT_STAT(&priv->txq_stat);
4383 SET_STAT(&priv->txq_stat, priv->tx_queue.available);
4384
4385 bd_queue_initialize(priv, &priv->tx_queue,
4386 IPW_MEM_HOST_SHARED_TX_QUEUE_BD_BASE,
4387 IPW_MEM_HOST_SHARED_TX_QUEUE_BD_SIZE,
4388 IPW_MEM_HOST_SHARED_TX_QUEUE_READ_INDEX,
4389 IPW_MEM_HOST_SHARED_TX_QUEUE_WRITE_INDEX);
4390
4391 IPW_DEBUG_INFO("exit\n");
4392
4393}
4394
4395static void ipw2100_tx_free(struct ipw2100_priv *priv)
4396{
4397 int i;
4398
4399 IPW_DEBUG_INFO("enter\n");
4400
4401 bd_queue_free(priv, &priv->tx_queue);
4402
4403 if (!priv->tx_buffers)
4404 return;
4405
4406 for (i = 0; i < TX_PENDED_QUEUE_LENGTH; i++) {
4407 if (priv->tx_buffers[i].info.d_struct.txb) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004408 ieee80211_txb_free(priv->tx_buffers[i].info.d_struct.
4409 txb);
James Ketrenos2c86c272005-03-23 17:32:29 -06004410 priv->tx_buffers[i].info.d_struct.txb = NULL;
4411 }
4412 if (priv->tx_buffers[i].info.d_struct.data)
James Ketrenosee8e3652005-09-14 09:47:29 -05004413 pci_free_consistent(priv->pci_dev,
4414 sizeof(struct ipw2100_data_header),
4415 priv->tx_buffers[i].info.d_struct.
4416 data,
4417 priv->tx_buffers[i].info.d_struct.
4418 data_phys);
James Ketrenos2c86c272005-03-23 17:32:29 -06004419 }
4420
4421 kfree(priv->tx_buffers);
4422 priv->tx_buffers = NULL;
4423
4424 IPW_DEBUG_INFO("exit\n");
4425}
4426
James Ketrenos2c86c272005-03-23 17:32:29 -06004427static int ipw2100_rx_allocate(struct ipw2100_priv *priv)
4428{
4429 int i, j, err = -EINVAL;
4430
4431 IPW_DEBUG_INFO("enter\n");
4432
4433 err = bd_queue_allocate(priv, &priv->rx_queue, RX_QUEUE_LENGTH);
4434 if (err) {
4435 IPW_DEBUG_INFO("failed bd_queue_allocate\n");
4436 return err;
4437 }
4438
4439 err = status_queue_allocate(priv, RX_QUEUE_LENGTH);
4440 if (err) {
4441 IPW_DEBUG_INFO("failed status_queue_allocate\n");
4442 bd_queue_free(priv, &priv->rx_queue);
4443 return err;
4444 }
4445
4446 /*
4447 * allocate packets
4448 */
4449 priv->rx_buffers = (struct ipw2100_rx_packet *)
4450 kmalloc(RX_QUEUE_LENGTH * sizeof(struct ipw2100_rx_packet),
4451 GFP_KERNEL);
4452 if (!priv->rx_buffers) {
4453 IPW_DEBUG_INFO("can't allocate rx packet buffer table\n");
4454
4455 bd_queue_free(priv, &priv->rx_queue);
4456
4457 status_queue_free(priv);
4458
4459 return -ENOMEM;
4460 }
4461
4462 for (i = 0; i < RX_QUEUE_LENGTH; i++) {
4463 struct ipw2100_rx_packet *packet = &priv->rx_buffers[i];
4464
4465 err = ipw2100_alloc_skb(priv, packet);
4466 if (unlikely(err)) {
4467 err = -ENOMEM;
4468 break;
4469 }
4470
4471 /* The BD holds the cache aligned address */
4472 priv->rx_queue.drv[i].host_addr = packet->dma_addr;
4473 priv->rx_queue.drv[i].buf_length = IPW_RX_NIC_BUFFER_LENGTH;
4474 priv->status_queue.drv[i].status_fields = 0;
4475 }
4476
4477 if (i == RX_QUEUE_LENGTH)
4478 return 0;
4479
4480 for (j = 0; j < i; j++) {
4481 pci_unmap_single(priv->pci_dev, priv->rx_buffers[j].dma_addr,
4482 sizeof(struct ipw2100_rx_packet),
4483 PCI_DMA_FROMDEVICE);
4484 dev_kfree_skb(priv->rx_buffers[j].skb);
4485 }
4486
4487 kfree(priv->rx_buffers);
4488 priv->rx_buffers = NULL;
4489
4490 bd_queue_free(priv, &priv->rx_queue);
4491
4492 status_queue_free(priv);
4493
4494 return err;
4495}
4496
4497static void ipw2100_rx_initialize(struct ipw2100_priv *priv)
4498{
4499 IPW_DEBUG_INFO("enter\n");
4500
4501 priv->rx_queue.oldest = 0;
4502 priv->rx_queue.available = priv->rx_queue.entries - 1;
4503 priv->rx_queue.next = priv->rx_queue.entries - 1;
4504
4505 INIT_STAT(&priv->rxq_stat);
4506 SET_STAT(&priv->rxq_stat, priv->rx_queue.available);
4507
4508 bd_queue_initialize(priv, &priv->rx_queue,
4509 IPW_MEM_HOST_SHARED_RX_BD_BASE,
4510 IPW_MEM_HOST_SHARED_RX_BD_SIZE,
4511 IPW_MEM_HOST_SHARED_RX_READ_INDEX,
4512 IPW_MEM_HOST_SHARED_RX_WRITE_INDEX);
4513
4514 /* set up the status queue */
4515 write_register(priv->net_dev, IPW_MEM_HOST_SHARED_RX_STATUS_BASE,
4516 priv->status_queue.nic);
4517
4518 IPW_DEBUG_INFO("exit\n");
4519}
4520
4521static void ipw2100_rx_free(struct ipw2100_priv *priv)
4522{
4523 int i;
4524
4525 IPW_DEBUG_INFO("enter\n");
4526
4527 bd_queue_free(priv, &priv->rx_queue);
4528 status_queue_free(priv);
4529
4530 if (!priv->rx_buffers)
4531 return;
4532
4533 for (i = 0; i < RX_QUEUE_LENGTH; i++) {
4534 if (priv->rx_buffers[i].rxp) {
4535 pci_unmap_single(priv->pci_dev,
4536 priv->rx_buffers[i].dma_addr,
4537 sizeof(struct ipw2100_rx),
4538 PCI_DMA_FROMDEVICE);
4539 dev_kfree_skb(priv->rx_buffers[i].skb);
4540 }
4541 }
4542
4543 kfree(priv->rx_buffers);
4544 priv->rx_buffers = NULL;
4545
4546 IPW_DEBUG_INFO("exit\n");
4547}
4548
4549static int ipw2100_read_mac_address(struct ipw2100_priv *priv)
4550{
4551 u32 length = ETH_ALEN;
4552 u8 mac[ETH_ALEN];
4553
4554 int err;
4555
James Ketrenosee8e3652005-09-14 09:47:29 -05004556 err = ipw2100_get_ordinal(priv, IPW_ORD_STAT_ADAPTER_MAC, mac, &length);
James Ketrenos2c86c272005-03-23 17:32:29 -06004557 if (err) {
4558 IPW_DEBUG_INFO("MAC address read failed\n");
4559 return -EIO;
4560 }
4561 IPW_DEBUG_INFO("card MAC is %02X:%02X:%02X:%02X:%02X:%02X\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05004562 mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]);
James Ketrenos2c86c272005-03-23 17:32:29 -06004563
4564 memcpy(priv->net_dev->dev_addr, mac, ETH_ALEN);
4565
4566 return 0;
4567}
4568
4569/********************************************************************
4570 *
4571 * Firmware Commands
4572 *
4573 ********************************************************************/
4574
Jiri Bencc4aee8c2005-08-25 20:04:43 -04004575static int ipw2100_set_mac_address(struct ipw2100_priv *priv, int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06004576{
4577 struct host_command cmd = {
4578 .host_command = ADAPTER_ADDRESS,
4579 .host_command_sequence = 0,
4580 .host_command_length = ETH_ALEN
4581 };
4582 int err;
4583
4584 IPW_DEBUG_HC("SET_MAC_ADDRESS\n");
4585
4586 IPW_DEBUG_INFO("enter\n");
4587
4588 if (priv->config & CFG_CUSTOM_MAC) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004589 memcpy(cmd.host_command_parameters, priv->mac_addr, ETH_ALEN);
James Ketrenos2c86c272005-03-23 17:32:29 -06004590 memcpy(priv->net_dev->dev_addr, priv->mac_addr, ETH_ALEN);
4591 } else
4592 memcpy(cmd.host_command_parameters, priv->net_dev->dev_addr,
4593 ETH_ALEN);
4594
4595 err = ipw2100_hw_send_command(priv, &cmd);
4596
4597 IPW_DEBUG_INFO("exit\n");
4598 return err;
4599}
4600
Jiri Bencc4aee8c2005-08-25 20:04:43 -04004601static int ipw2100_set_port_type(struct ipw2100_priv *priv, u32 port_type,
James Ketrenos2c86c272005-03-23 17:32:29 -06004602 int batch_mode)
4603{
4604 struct host_command cmd = {
4605 .host_command = PORT_TYPE,
4606 .host_command_sequence = 0,
4607 .host_command_length = sizeof(u32)
4608 };
4609 int err;
4610
4611 switch (port_type) {
4612 case IW_MODE_INFRA:
4613 cmd.host_command_parameters[0] = IPW_BSS;
4614 break;
4615 case IW_MODE_ADHOC:
4616 cmd.host_command_parameters[0] = IPW_IBSS;
4617 break;
4618 }
4619
4620 IPW_DEBUG_HC("PORT_TYPE: %s\n",
4621 port_type == IPW_IBSS ? "Ad-Hoc" : "Managed");
4622
4623 if (!batch_mode) {
4624 err = ipw2100_disable_adapter(priv);
4625 if (err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004626 printk(KERN_ERR DRV_NAME
4627 ": %s: Could not disable adapter %d\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06004628 priv->net_dev->name, err);
4629 return err;
4630 }
4631 }
4632
4633 /* send cmd to firmware */
4634 err = ipw2100_hw_send_command(priv, &cmd);
4635
4636 if (!batch_mode)
4637 ipw2100_enable_adapter(priv);
4638
4639 return err;
4640}
4641
Jiri Bencc4aee8c2005-08-25 20:04:43 -04004642static int ipw2100_set_channel(struct ipw2100_priv *priv, u32 channel,
4643 int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06004644{
4645 struct host_command cmd = {
4646 .host_command = CHANNEL,
4647 .host_command_sequence = 0,
4648 .host_command_length = sizeof(u32)
4649 };
4650 int err;
4651
4652 cmd.host_command_parameters[0] = channel;
4653
4654 IPW_DEBUG_HC("CHANNEL: %d\n", channel);
4655
4656 /* If BSS then we don't support channel selection */
4657 if (priv->ieee->iw_mode == IW_MODE_INFRA)
4658 return 0;
4659
4660 if ((channel != 0) &&
4661 ((channel < REG_MIN_CHANNEL) || (channel > REG_MAX_CHANNEL)))
4662 return -EINVAL;
4663
4664 if (!batch_mode) {
4665 err = ipw2100_disable_adapter(priv);
4666 if (err)
4667 return err;
4668 }
4669
4670 err = ipw2100_hw_send_command(priv, &cmd);
4671 if (err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004672 IPW_DEBUG_INFO("Failed to set channel to %d", channel);
James Ketrenos2c86c272005-03-23 17:32:29 -06004673 return err;
4674 }
4675
4676 if (channel)
4677 priv->config |= CFG_STATIC_CHANNEL;
4678 else
4679 priv->config &= ~CFG_STATIC_CHANNEL;
4680
4681 priv->channel = channel;
4682
4683 if (!batch_mode) {
4684 err = ipw2100_enable_adapter(priv);
4685 if (err)
4686 return err;
4687 }
4688
4689 return 0;
4690}
4691
Jiri Bencc4aee8c2005-08-25 20:04:43 -04004692static int ipw2100_system_config(struct ipw2100_priv *priv, int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06004693{
4694 struct host_command cmd = {
4695 .host_command = SYSTEM_CONFIG,
4696 .host_command_sequence = 0,
4697 .host_command_length = 12,
4698 };
4699 u32 ibss_mask, len = sizeof(u32);
4700 int err;
4701
4702 /* Set system configuration */
4703
4704 if (!batch_mode) {
4705 err = ipw2100_disable_adapter(priv);
4706 if (err)
4707 return err;
4708 }
4709
4710 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
4711 cmd.host_command_parameters[0] |= IPW_CFG_IBSS_AUTO_START;
4712
4713 cmd.host_command_parameters[0] |= IPW_CFG_IBSS_MASK |
James Ketrenosee8e3652005-09-14 09:47:29 -05004714 IPW_CFG_BSS_MASK | IPW_CFG_802_1x_ENABLE;
James Ketrenos2c86c272005-03-23 17:32:29 -06004715
4716 if (!(priv->config & CFG_LONG_PREAMBLE))
4717 cmd.host_command_parameters[0] |= IPW_CFG_PREAMBLE_AUTO;
4718
4719 err = ipw2100_get_ordinal(priv,
4720 IPW_ORD_EEPROM_IBSS_11B_CHANNELS,
James Ketrenosee8e3652005-09-14 09:47:29 -05004721 &ibss_mask, &len);
James Ketrenos2c86c272005-03-23 17:32:29 -06004722 if (err)
4723 ibss_mask = IPW_IBSS_11B_DEFAULT_MASK;
4724
4725 cmd.host_command_parameters[1] = REG_CHANNEL_MASK;
4726 cmd.host_command_parameters[2] = REG_CHANNEL_MASK & ibss_mask;
4727
4728 /* 11b only */
James Ketrenosee8e3652005-09-14 09:47:29 -05004729 /*cmd.host_command_parameters[0] |= DIVERSITY_ANTENNA_A; */
James Ketrenos2c86c272005-03-23 17:32:29 -06004730
4731 err = ipw2100_hw_send_command(priv, &cmd);
4732 if (err)
4733 return err;
4734
4735/* If IPv6 is configured in the kernel then we don't want to filter out all
4736 * of the multicast packets as IPv6 needs some. */
4737#if !defined(CONFIG_IPV6) && !defined(CONFIG_IPV6_MODULE)
4738 cmd.host_command = ADD_MULTICAST;
4739 cmd.host_command_sequence = 0;
4740 cmd.host_command_length = 0;
4741
4742 ipw2100_hw_send_command(priv, &cmd);
4743#endif
4744 if (!batch_mode) {
4745 err = ipw2100_enable_adapter(priv);
4746 if (err)
4747 return err;
4748 }
4749
4750 return 0;
4751}
4752
Jiri Bencc4aee8c2005-08-25 20:04:43 -04004753static int ipw2100_set_tx_rates(struct ipw2100_priv *priv, u32 rate,
4754 int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06004755{
4756 struct host_command cmd = {
4757 .host_command = BASIC_TX_RATES,
4758 .host_command_sequence = 0,
4759 .host_command_length = 4
4760 };
4761 int err;
4762
4763 cmd.host_command_parameters[0] = rate & TX_RATE_MASK;
4764
4765 if (!batch_mode) {
4766 err = ipw2100_disable_adapter(priv);
4767 if (err)
4768 return err;
4769 }
4770
4771 /* Set BASIC TX Rate first */
4772 ipw2100_hw_send_command(priv, &cmd);
4773
4774 /* Set TX Rate */
4775 cmd.host_command = TX_RATES;
4776 ipw2100_hw_send_command(priv, &cmd);
4777
4778 /* Set MSDU TX Rate */
4779 cmd.host_command = MSDU_TX_RATES;
4780 ipw2100_hw_send_command(priv, &cmd);
4781
4782 if (!batch_mode) {
4783 err = ipw2100_enable_adapter(priv);
4784 if (err)
4785 return err;
4786 }
4787
4788 priv->tx_rates = rate;
4789
4790 return 0;
4791}
4792
James Ketrenosee8e3652005-09-14 09:47:29 -05004793static int ipw2100_set_power_mode(struct ipw2100_priv *priv, int power_level)
James Ketrenos2c86c272005-03-23 17:32:29 -06004794{
4795 struct host_command cmd = {
4796 .host_command = POWER_MODE,
4797 .host_command_sequence = 0,
4798 .host_command_length = 4
4799 };
4800 int err;
4801
4802 cmd.host_command_parameters[0] = power_level;
4803
4804 err = ipw2100_hw_send_command(priv, &cmd);
4805 if (err)
4806 return err;
4807
4808 if (power_level == IPW_POWER_MODE_CAM)
4809 priv->power_mode = IPW_POWER_LEVEL(priv->power_mode);
4810 else
4811 priv->power_mode = IPW_POWER_ENABLED | power_level;
4812
4813#ifdef CONFIG_IPW2100_TX_POWER
James Ketrenosee8e3652005-09-14 09:47:29 -05004814 if (priv->port_type == IBSS && priv->adhoc_power != DFTL_IBSS_TX_POWER) {
James Ketrenos2c86c272005-03-23 17:32:29 -06004815 /* Set beacon interval */
4816 cmd.host_command = TX_POWER_INDEX;
James Ketrenosee8e3652005-09-14 09:47:29 -05004817 cmd.host_command_parameters[0] = (u32) priv->adhoc_power;
James Ketrenos2c86c272005-03-23 17:32:29 -06004818
4819 err = ipw2100_hw_send_command(priv, &cmd);
4820 if (err)
4821 return err;
4822 }
4823#endif
4824
4825 return 0;
4826}
4827
Jiri Bencc4aee8c2005-08-25 20:04:43 -04004828static int ipw2100_set_rts_threshold(struct ipw2100_priv *priv, u32 threshold)
James Ketrenos2c86c272005-03-23 17:32:29 -06004829{
4830 struct host_command cmd = {
4831 .host_command = RTS_THRESHOLD,
4832 .host_command_sequence = 0,
4833 .host_command_length = 4
4834 };
4835 int err;
4836
4837 if (threshold & RTS_DISABLED)
4838 cmd.host_command_parameters[0] = MAX_RTS_THRESHOLD;
4839 else
4840 cmd.host_command_parameters[0] = threshold & ~RTS_DISABLED;
4841
4842 err = ipw2100_hw_send_command(priv, &cmd);
4843 if (err)
4844 return err;
4845
4846 priv->rts_threshold = threshold;
4847
4848 return 0;
4849}
4850
4851#if 0
4852int ipw2100_set_fragmentation_threshold(struct ipw2100_priv *priv,
4853 u32 threshold, int batch_mode)
4854{
4855 struct host_command cmd = {
4856 .host_command = FRAG_THRESHOLD,
4857 .host_command_sequence = 0,
4858 .host_command_length = 4,
4859 .host_command_parameters[0] = 0,
4860 };
4861 int err;
4862
4863 if (!batch_mode) {
4864 err = ipw2100_disable_adapter(priv);
4865 if (err)
4866 return err;
4867 }
4868
4869 if (threshold == 0)
4870 threshold = DEFAULT_FRAG_THRESHOLD;
4871 else {
4872 threshold = max(threshold, MIN_FRAG_THRESHOLD);
4873 threshold = min(threshold, MAX_FRAG_THRESHOLD);
4874 }
4875
4876 cmd.host_command_parameters[0] = threshold;
4877
4878 IPW_DEBUG_HC("FRAG_THRESHOLD: %u\n", threshold);
4879
4880 err = ipw2100_hw_send_command(priv, &cmd);
4881
4882 if (!batch_mode)
4883 ipw2100_enable_adapter(priv);
4884
4885 if (!err)
4886 priv->frag_threshold = threshold;
4887
4888 return err;
4889}
4890#endif
4891
Jiri Bencc4aee8c2005-08-25 20:04:43 -04004892static int ipw2100_set_short_retry(struct ipw2100_priv *priv, u32 retry)
James Ketrenos2c86c272005-03-23 17:32:29 -06004893{
4894 struct host_command cmd = {
4895 .host_command = SHORT_RETRY_LIMIT,
4896 .host_command_sequence = 0,
4897 .host_command_length = 4
4898 };
4899 int err;
4900
4901 cmd.host_command_parameters[0] = retry;
4902
4903 err = ipw2100_hw_send_command(priv, &cmd);
4904 if (err)
4905 return err;
4906
4907 priv->short_retry_limit = retry;
4908
4909 return 0;
4910}
4911
Jiri Bencc4aee8c2005-08-25 20:04:43 -04004912static int ipw2100_set_long_retry(struct ipw2100_priv *priv, u32 retry)
James Ketrenos2c86c272005-03-23 17:32:29 -06004913{
4914 struct host_command cmd = {
4915 .host_command = LONG_RETRY_LIMIT,
4916 .host_command_sequence = 0,
4917 .host_command_length = 4
4918 };
4919 int err;
4920
4921 cmd.host_command_parameters[0] = retry;
4922
4923 err = ipw2100_hw_send_command(priv, &cmd);
4924 if (err)
4925 return err;
4926
4927 priv->long_retry_limit = retry;
4928
4929 return 0;
4930}
4931
James Ketrenosee8e3652005-09-14 09:47:29 -05004932static int ipw2100_set_mandatory_bssid(struct ipw2100_priv *priv, u8 * bssid,
Jiri Bencc4aee8c2005-08-25 20:04:43 -04004933 int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06004934{
4935 struct host_command cmd = {
4936 .host_command = MANDATORY_BSSID,
4937 .host_command_sequence = 0,
4938 .host_command_length = (bssid == NULL) ? 0 : ETH_ALEN
4939 };
4940 int err;
4941
Brice Goglin0f52bf92005-12-01 01:41:46 -08004942#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06004943 if (bssid != NULL)
James Ketrenosee8e3652005-09-14 09:47:29 -05004944 IPW_DEBUG_HC("MANDATORY_BSSID: %02X:%02X:%02X:%02X:%02X:%02X\n",
4945 bssid[0], bssid[1], bssid[2], bssid[3], bssid[4],
4946 bssid[5]);
James Ketrenos2c86c272005-03-23 17:32:29 -06004947 else
4948 IPW_DEBUG_HC("MANDATORY_BSSID: <clear>\n");
4949#endif
4950 /* if BSSID is empty then we disable mandatory bssid mode */
4951 if (bssid != NULL)
James Ketrenos82328352005-08-24 22:33:31 -05004952 memcpy(cmd.host_command_parameters, bssid, ETH_ALEN);
James Ketrenos2c86c272005-03-23 17:32:29 -06004953
4954 if (!batch_mode) {
4955 err = ipw2100_disable_adapter(priv);
4956 if (err)
4957 return err;
4958 }
4959
4960 err = ipw2100_hw_send_command(priv, &cmd);
4961
4962 if (!batch_mode)
4963 ipw2100_enable_adapter(priv);
4964
4965 return err;
4966}
4967
James Ketrenos2c86c272005-03-23 17:32:29 -06004968static int ipw2100_disassociate_bssid(struct ipw2100_priv *priv)
4969{
4970 struct host_command cmd = {
4971 .host_command = DISASSOCIATION_BSSID,
4972 .host_command_sequence = 0,
4973 .host_command_length = ETH_ALEN
4974 };
4975 int err;
4976 int len;
4977
4978 IPW_DEBUG_HC("DISASSOCIATION_BSSID\n");
4979
4980 len = ETH_ALEN;
4981 /* The Firmware currently ignores the BSSID and just disassociates from
4982 * the currently associated AP -- but in the off chance that a future
4983 * firmware does use the BSSID provided here, we go ahead and try and
4984 * set it to the currently associated AP's BSSID */
4985 memcpy(cmd.host_command_parameters, priv->bssid, ETH_ALEN);
4986
4987 err = ipw2100_hw_send_command(priv, &cmd);
4988
4989 return err;
4990}
James Ketrenos2c86c272005-03-23 17:32:29 -06004991
4992static int ipw2100_set_wpa_ie(struct ipw2100_priv *,
4993 struct ipw2100_wpa_assoc_frame *, int)
James Ketrenosee8e3652005-09-14 09:47:29 -05004994 __attribute__ ((unused));
James Ketrenos2c86c272005-03-23 17:32:29 -06004995
4996static int ipw2100_set_wpa_ie(struct ipw2100_priv *priv,
4997 struct ipw2100_wpa_assoc_frame *wpa_frame,
4998 int batch_mode)
4999{
5000 struct host_command cmd = {
5001 .host_command = SET_WPA_IE,
5002 .host_command_sequence = 0,
5003 .host_command_length = sizeof(struct ipw2100_wpa_assoc_frame),
5004 };
5005 int err;
5006
5007 IPW_DEBUG_HC("SET_WPA_IE\n");
5008
5009 if (!batch_mode) {
5010 err = ipw2100_disable_adapter(priv);
5011 if (err)
5012 return err;
5013 }
5014
5015 memcpy(cmd.host_command_parameters, wpa_frame,
5016 sizeof(struct ipw2100_wpa_assoc_frame));
5017
5018 err = ipw2100_hw_send_command(priv, &cmd);
5019
5020 if (!batch_mode) {
5021 if (ipw2100_enable_adapter(priv))
5022 err = -EIO;
5023 }
5024
5025 return err;
5026}
5027
5028struct security_info_params {
5029 u32 allowed_ciphers;
5030 u16 version;
5031 u8 auth_mode;
5032 u8 replay_counters_number;
5033 u8 unicast_using_group;
5034} __attribute__ ((packed));
5035
Jiri Bencc4aee8c2005-08-25 20:04:43 -04005036static int ipw2100_set_security_information(struct ipw2100_priv *priv,
5037 int auth_mode,
5038 int security_level,
5039 int unicast_using_group,
5040 int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06005041{
5042 struct host_command cmd = {
5043 .host_command = SET_SECURITY_INFORMATION,
5044 .host_command_sequence = 0,
5045 .host_command_length = sizeof(struct security_info_params)
5046 };
5047 struct security_info_params *security =
James Ketrenosee8e3652005-09-14 09:47:29 -05005048 (struct security_info_params *)&cmd.host_command_parameters;
James Ketrenos2c86c272005-03-23 17:32:29 -06005049 int err;
5050 memset(security, 0, sizeof(*security));
5051
5052 /* If shared key AP authentication is turned on, then we need to
5053 * configure the firmware to try and use it.
5054 *
5055 * Actual data encryption/decryption is handled by the host. */
5056 security->auth_mode = auth_mode;
5057 security->unicast_using_group = unicast_using_group;
5058
5059 switch (security_level) {
5060 default:
5061 case SEC_LEVEL_0:
5062 security->allowed_ciphers = IPW_NONE_CIPHER;
5063 break;
5064 case SEC_LEVEL_1:
5065 security->allowed_ciphers = IPW_WEP40_CIPHER |
James Ketrenosee8e3652005-09-14 09:47:29 -05005066 IPW_WEP104_CIPHER;
James Ketrenos2c86c272005-03-23 17:32:29 -06005067 break;
5068 case SEC_LEVEL_2:
5069 security->allowed_ciphers = IPW_WEP40_CIPHER |
James Ketrenosee8e3652005-09-14 09:47:29 -05005070 IPW_WEP104_CIPHER | IPW_TKIP_CIPHER;
James Ketrenos2c86c272005-03-23 17:32:29 -06005071 break;
5072 case SEC_LEVEL_2_CKIP:
5073 security->allowed_ciphers = IPW_WEP40_CIPHER |
James Ketrenosee8e3652005-09-14 09:47:29 -05005074 IPW_WEP104_CIPHER | IPW_CKIP_CIPHER;
James Ketrenos2c86c272005-03-23 17:32:29 -06005075 break;
5076 case SEC_LEVEL_3:
5077 security->allowed_ciphers = IPW_WEP40_CIPHER |
James Ketrenosee8e3652005-09-14 09:47:29 -05005078 IPW_WEP104_CIPHER | IPW_TKIP_CIPHER | IPW_CCMP_CIPHER;
James Ketrenos2c86c272005-03-23 17:32:29 -06005079 break;
5080 }
5081
James Ketrenosee8e3652005-09-14 09:47:29 -05005082 IPW_DEBUG_HC
5083 ("SET_SECURITY_INFORMATION: auth:%d cipher:0x%02X (level %d)\n",
5084 security->auth_mode, security->allowed_ciphers, security_level);
James Ketrenos2c86c272005-03-23 17:32:29 -06005085
5086 security->replay_counters_number = 0;
5087
5088 if (!batch_mode) {
5089 err = ipw2100_disable_adapter(priv);
5090 if (err)
5091 return err;
5092 }
5093
5094 err = ipw2100_hw_send_command(priv, &cmd);
5095
5096 if (!batch_mode)
5097 ipw2100_enable_adapter(priv);
5098
5099 return err;
5100}
5101
James Ketrenosee8e3652005-09-14 09:47:29 -05005102static int ipw2100_set_tx_power(struct ipw2100_priv *priv, u32 tx_power)
James Ketrenos2c86c272005-03-23 17:32:29 -06005103{
5104 struct host_command cmd = {
5105 .host_command = TX_POWER_INDEX,
5106 .host_command_sequence = 0,
5107 .host_command_length = 4
5108 };
5109 int err = 0;
5110
Liu Hongf75459e2005-07-13 12:29:21 -05005111 if (tx_power != IPW_TX_POWER_DEFAULT)
5112 tx_power = (tx_power - IPW_TX_POWER_MIN_DBM) * 16 /
5113 (IPW_TX_POWER_MAX_DBM - IPW_TX_POWER_MIN_DBM);
5114
James Ketrenos2c86c272005-03-23 17:32:29 -06005115 cmd.host_command_parameters[0] = tx_power;
5116
5117 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
5118 err = ipw2100_hw_send_command(priv, &cmd);
5119 if (!err)
5120 priv->tx_power = tx_power;
5121
5122 return 0;
5123}
5124
Jiri Bencc4aee8c2005-08-25 20:04:43 -04005125static int ipw2100_set_ibss_beacon_interval(struct ipw2100_priv *priv,
5126 u32 interval, int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06005127{
5128 struct host_command cmd = {
5129 .host_command = BEACON_INTERVAL,
5130 .host_command_sequence = 0,
5131 .host_command_length = 4
5132 };
5133 int err;
5134
5135 cmd.host_command_parameters[0] = interval;
5136
5137 IPW_DEBUG_INFO("enter\n");
5138
5139 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
5140 if (!batch_mode) {
5141 err = ipw2100_disable_adapter(priv);
5142 if (err)
5143 return err;
5144 }
5145
5146 ipw2100_hw_send_command(priv, &cmd);
5147
5148 if (!batch_mode) {
5149 err = ipw2100_enable_adapter(priv);
5150 if (err)
5151 return err;
5152 }
5153 }
5154
5155 IPW_DEBUG_INFO("exit\n");
5156
5157 return 0;
5158}
5159
James Ketrenos2c86c272005-03-23 17:32:29 -06005160void ipw2100_queues_initialize(struct ipw2100_priv *priv)
5161{
5162 ipw2100_tx_initialize(priv);
5163 ipw2100_rx_initialize(priv);
5164 ipw2100_msg_initialize(priv);
5165}
5166
5167void ipw2100_queues_free(struct ipw2100_priv *priv)
5168{
5169 ipw2100_tx_free(priv);
5170 ipw2100_rx_free(priv);
5171 ipw2100_msg_free(priv);
5172}
5173
5174int ipw2100_queues_allocate(struct ipw2100_priv *priv)
5175{
5176 if (ipw2100_tx_allocate(priv) ||
James Ketrenosee8e3652005-09-14 09:47:29 -05005177 ipw2100_rx_allocate(priv) || ipw2100_msg_allocate(priv))
James Ketrenos2c86c272005-03-23 17:32:29 -06005178 goto fail;
5179
5180 return 0;
5181
James Ketrenosee8e3652005-09-14 09:47:29 -05005182 fail:
James Ketrenos2c86c272005-03-23 17:32:29 -06005183 ipw2100_tx_free(priv);
5184 ipw2100_rx_free(priv);
5185 ipw2100_msg_free(priv);
5186 return -ENOMEM;
5187}
5188
5189#define IPW_PRIVACY_CAPABLE 0x0008
5190
5191static int ipw2100_set_wep_flags(struct ipw2100_priv *priv, u32 flags,
5192 int batch_mode)
5193{
5194 struct host_command cmd = {
5195 .host_command = WEP_FLAGS,
5196 .host_command_sequence = 0,
5197 .host_command_length = 4
5198 };
5199 int err;
5200
5201 cmd.host_command_parameters[0] = flags;
5202
5203 IPW_DEBUG_HC("WEP_FLAGS: flags = 0x%08X\n", flags);
5204
5205 if (!batch_mode) {
5206 err = ipw2100_disable_adapter(priv);
5207 if (err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05005208 printk(KERN_ERR DRV_NAME
5209 ": %s: Could not disable adapter %d\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06005210 priv->net_dev->name, err);
5211 return err;
5212 }
5213 }
5214
5215 /* send cmd to firmware */
5216 err = ipw2100_hw_send_command(priv, &cmd);
5217
5218 if (!batch_mode)
5219 ipw2100_enable_adapter(priv);
5220
5221 return err;
5222}
5223
5224struct ipw2100_wep_key {
5225 u8 idx;
5226 u8 len;
5227 u8 key[13];
5228};
5229
5230/* Macros to ease up priting WEP keys */
5231#define WEP_FMT_64 "%02X%02X%02X%02X-%02X"
5232#define WEP_FMT_128 "%02X%02X%02X%02X-%02X%02X%02X%02X-%02X%02X%02X"
5233#define WEP_STR_64(x) x[0],x[1],x[2],x[3],x[4]
5234#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]
5235
James Ketrenos2c86c272005-03-23 17:32:29 -06005236/**
5237 * Set a the wep key
5238 *
5239 * @priv: struct to work on
5240 * @idx: index of the key we want to set
5241 * @key: ptr to the key data to set
5242 * @len: length of the buffer at @key
5243 * @batch_mode: FIXME perform the operation in batch mode, not
5244 * disabling the device.
5245 *
5246 * @returns 0 if OK, < 0 errno code on error.
5247 *
5248 * Fill out a command structure with the new wep key, length an
5249 * index and send it down the wire.
5250 */
5251static int ipw2100_set_key(struct ipw2100_priv *priv,
5252 int idx, char *key, int len, int batch_mode)
5253{
5254 int keylen = len ? (len <= 5 ? 5 : 13) : 0;
5255 struct host_command cmd = {
5256 .host_command = WEP_KEY_INFO,
5257 .host_command_sequence = 0,
5258 .host_command_length = sizeof(struct ipw2100_wep_key),
5259 };
James Ketrenosee8e3652005-09-14 09:47:29 -05005260 struct ipw2100_wep_key *wep_key = (void *)cmd.host_command_parameters;
James Ketrenos2c86c272005-03-23 17:32:29 -06005261 int err;
5262
5263 IPW_DEBUG_HC("WEP_KEY_INFO: index = %d, len = %d/%d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05005264 idx, keylen, len);
James Ketrenos2c86c272005-03-23 17:32:29 -06005265
5266 /* NOTE: We don't check cached values in case the firmware was reset
5267 * or some other problem is occuring. If the user is setting the key,
5268 * then we push the change */
5269
5270 wep_key->idx = idx;
5271 wep_key->len = keylen;
5272
5273 if (keylen) {
5274 memcpy(wep_key->key, key, len);
5275 memset(wep_key->key + len, 0, keylen - len);
5276 }
5277
5278 /* Will be optimized out on debug not being configured in */
5279 if (keylen == 0)
5280 IPW_DEBUG_WEP("%s: Clearing key %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05005281 priv->net_dev->name, wep_key->idx);
James Ketrenos2c86c272005-03-23 17:32:29 -06005282 else if (keylen == 5)
5283 IPW_DEBUG_WEP("%s: idx: %d, len: %d key: " WEP_FMT_64 "\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05005284 priv->net_dev->name, wep_key->idx, wep_key->len,
5285 WEP_STR_64(wep_key->key));
James Ketrenos2c86c272005-03-23 17:32:29 -06005286 else
5287 IPW_DEBUG_WEP("%s: idx: %d, len: %d key: " WEP_FMT_128
James Ketrenosee8e3652005-09-14 09:47:29 -05005288 "\n",
5289 priv->net_dev->name, wep_key->idx, wep_key->len,
5290 WEP_STR_128(wep_key->key));
James Ketrenos2c86c272005-03-23 17:32:29 -06005291
5292 if (!batch_mode) {
5293 err = ipw2100_disable_adapter(priv);
5294 /* FIXME: IPG: shouldn't this prink be in _disable_adapter()? */
5295 if (err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05005296 printk(KERN_ERR DRV_NAME
5297 ": %s: Could not disable adapter %d\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06005298 priv->net_dev->name, err);
5299 return err;
5300 }
5301 }
5302
5303 /* send cmd to firmware */
5304 err = ipw2100_hw_send_command(priv, &cmd);
5305
5306 if (!batch_mode) {
5307 int err2 = ipw2100_enable_adapter(priv);
5308 if (err == 0)
5309 err = err2;
5310 }
5311 return err;
5312}
5313
5314static int ipw2100_set_key_index(struct ipw2100_priv *priv,
5315 int idx, int batch_mode)
5316{
5317 struct host_command cmd = {
5318 .host_command = WEP_KEY_INDEX,
5319 .host_command_sequence = 0,
5320 .host_command_length = 4,
James Ketrenosee8e3652005-09-14 09:47:29 -05005321 .host_command_parameters = {idx},
James Ketrenos2c86c272005-03-23 17:32:29 -06005322 };
5323 int err;
5324
5325 IPW_DEBUG_HC("WEP_KEY_INDEX: index = %d\n", idx);
5326
5327 if (idx < 0 || idx > 3)
5328 return -EINVAL;
5329
5330 if (!batch_mode) {
5331 err = ipw2100_disable_adapter(priv);
5332 if (err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05005333 printk(KERN_ERR DRV_NAME
5334 ": %s: Could not disable adapter %d\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06005335 priv->net_dev->name, err);
5336 return err;
5337 }
5338 }
5339
5340 /* send cmd to firmware */
5341 err = ipw2100_hw_send_command(priv, &cmd);
5342
5343 if (!batch_mode)
5344 ipw2100_enable_adapter(priv);
5345
5346 return err;
5347}
5348
James Ketrenosee8e3652005-09-14 09:47:29 -05005349static int ipw2100_configure_security(struct ipw2100_priv *priv, int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06005350{
5351 int i, err, auth_mode, sec_level, use_group;
5352
5353 if (!(priv->status & STATUS_RUNNING))
5354 return 0;
5355
5356 if (!batch_mode) {
5357 err = ipw2100_disable_adapter(priv);
5358 if (err)
5359 return err;
5360 }
5361
25b645b2005-07-12 15:45:30 -05005362 if (!priv->ieee->sec.enabled) {
James Ketrenosee8e3652005-09-14 09:47:29 -05005363 err =
5364 ipw2100_set_security_information(priv, IPW_AUTH_OPEN,
5365 SEC_LEVEL_0, 0, 1);
James Ketrenos2c86c272005-03-23 17:32:29 -06005366 } else {
5367 auth_mode = IPW_AUTH_OPEN;
Zhu Yicbbdd032006-01-24 13:48:53 +08005368 if (priv->ieee->sec.flags & SEC_AUTH_MODE) {
5369 if (priv->ieee->sec.auth_mode == WLAN_AUTH_SHARED_KEY)
5370 auth_mode = IPW_AUTH_SHARED;
5371 else if (priv->ieee->sec.auth_mode == WLAN_AUTH_LEAP)
5372 auth_mode = IPW_AUTH_LEAP_CISCO_ID;
5373 }
James Ketrenos2c86c272005-03-23 17:32:29 -06005374
5375 sec_level = SEC_LEVEL_0;
25b645b2005-07-12 15:45:30 -05005376 if (priv->ieee->sec.flags & SEC_LEVEL)
5377 sec_level = priv->ieee->sec.level;
James Ketrenos2c86c272005-03-23 17:32:29 -06005378
5379 use_group = 0;
25b645b2005-07-12 15:45:30 -05005380 if (priv->ieee->sec.flags & SEC_UNICAST_GROUP)
5381 use_group = priv->ieee->sec.unicast_uses_group;
James Ketrenos2c86c272005-03-23 17:32:29 -06005382
James Ketrenosee8e3652005-09-14 09:47:29 -05005383 err =
5384 ipw2100_set_security_information(priv, auth_mode, sec_level,
5385 use_group, 1);
James Ketrenos2c86c272005-03-23 17:32:29 -06005386 }
5387
5388 if (err)
5389 goto exit;
5390
25b645b2005-07-12 15:45:30 -05005391 if (priv->ieee->sec.enabled) {
James Ketrenos2c86c272005-03-23 17:32:29 -06005392 for (i = 0; i < 4; i++) {
25b645b2005-07-12 15:45:30 -05005393 if (!(priv->ieee->sec.flags & (1 << i))) {
5394 memset(priv->ieee->sec.keys[i], 0, WEP_KEY_LEN);
5395 priv->ieee->sec.key_sizes[i] = 0;
James Ketrenos2c86c272005-03-23 17:32:29 -06005396 } else {
5397 err = ipw2100_set_key(priv, i,
25b645b2005-07-12 15:45:30 -05005398 priv->ieee->sec.keys[i],
5399 priv->ieee->sec.
5400 key_sizes[i], 1);
James Ketrenos2c86c272005-03-23 17:32:29 -06005401 if (err)
5402 goto exit;
5403 }
5404 }
5405
5406 ipw2100_set_key_index(priv, priv->ieee->tx_keyidx, 1);
5407 }
5408
5409 /* Always enable privacy so the Host can filter WEP packets if
5410 * encrypted data is sent up */
James Ketrenosee8e3652005-09-14 09:47:29 -05005411 err =
5412 ipw2100_set_wep_flags(priv,
25b645b2005-07-12 15:45:30 -05005413 priv->ieee->sec.
5414 enabled ? IPW_PRIVACY_CAPABLE : 0, 1);
James Ketrenos2c86c272005-03-23 17:32:29 -06005415 if (err)
5416 goto exit;
5417
5418 priv->status &= ~STATUS_SECURITY_UPDATED;
5419
James Ketrenosee8e3652005-09-14 09:47:29 -05005420 exit:
James Ketrenos2c86c272005-03-23 17:32:29 -06005421 if (!batch_mode)
5422 ipw2100_enable_adapter(priv);
5423
5424 return err;
5425}
5426
5427static void ipw2100_security_work(struct ipw2100_priv *priv)
5428{
5429 /* If we happen to have reconnected before we get a chance to
5430 * process this, then update the security settings--which causes
5431 * a disassociation to occur */
5432 if (!(priv->status & STATUS_ASSOCIATED) &&
5433 priv->status & STATUS_SECURITY_UPDATED)
5434 ipw2100_configure_security(priv, 0);
5435}
5436
5437static void shim__set_security(struct net_device *dev,
5438 struct ieee80211_security *sec)
5439{
5440 struct ipw2100_priv *priv = ieee80211_priv(dev);
5441 int i, force_update = 0;
5442
5443 down(&priv->action_sem);
5444 if (!(priv->status & STATUS_INITIALIZED))
5445 goto done;
5446
5447 for (i = 0; i < 4; i++) {
5448 if (sec->flags & (1 << i)) {
25b645b2005-07-12 15:45:30 -05005449 priv->ieee->sec.key_sizes[i] = sec->key_sizes[i];
James Ketrenos2c86c272005-03-23 17:32:29 -06005450 if (sec->key_sizes[i] == 0)
25b645b2005-07-12 15:45:30 -05005451 priv->ieee->sec.flags &= ~(1 << i);
James Ketrenos2c86c272005-03-23 17:32:29 -06005452 else
25b645b2005-07-12 15:45:30 -05005453 memcpy(priv->ieee->sec.keys[i], sec->keys[i],
James Ketrenos2c86c272005-03-23 17:32:29 -06005454 sec->key_sizes[i]);
Hong Liu054b08d2005-08-25 17:45:49 +08005455 if (sec->level == SEC_LEVEL_1) {
5456 priv->ieee->sec.flags |= (1 << i);
5457 priv->status |= STATUS_SECURITY_UPDATED;
5458 } else
5459 priv->ieee->sec.flags &= ~(1 << i);
James Ketrenos2c86c272005-03-23 17:32:29 -06005460 }
5461 }
5462
5463 if ((sec->flags & SEC_ACTIVE_KEY) &&
25b645b2005-07-12 15:45:30 -05005464 priv->ieee->sec.active_key != sec->active_key) {
James Ketrenos2c86c272005-03-23 17:32:29 -06005465 if (sec->active_key <= 3) {
25b645b2005-07-12 15:45:30 -05005466 priv->ieee->sec.active_key = sec->active_key;
5467 priv->ieee->sec.flags |= SEC_ACTIVE_KEY;
James Ketrenos2c86c272005-03-23 17:32:29 -06005468 } else
25b645b2005-07-12 15:45:30 -05005469 priv->ieee->sec.flags &= ~SEC_ACTIVE_KEY;
James Ketrenos2c86c272005-03-23 17:32:29 -06005470
5471 priv->status |= STATUS_SECURITY_UPDATED;
5472 }
5473
5474 if ((sec->flags & SEC_AUTH_MODE) &&
25b645b2005-07-12 15:45:30 -05005475 (priv->ieee->sec.auth_mode != sec->auth_mode)) {
5476 priv->ieee->sec.auth_mode = sec->auth_mode;
5477 priv->ieee->sec.flags |= SEC_AUTH_MODE;
James Ketrenos2c86c272005-03-23 17:32:29 -06005478 priv->status |= STATUS_SECURITY_UPDATED;
5479 }
5480
25b645b2005-07-12 15:45:30 -05005481 if (sec->flags & SEC_ENABLED && priv->ieee->sec.enabled != sec->enabled) {
5482 priv->ieee->sec.flags |= SEC_ENABLED;
5483 priv->ieee->sec.enabled = sec->enabled;
James Ketrenos2c86c272005-03-23 17:32:29 -06005484 priv->status |= STATUS_SECURITY_UPDATED;
5485 force_update = 1;
5486 }
5487
25b645b2005-07-12 15:45:30 -05005488 if (sec->flags & SEC_ENCRYPT)
5489 priv->ieee->sec.encrypt = sec->encrypt;
5490
5491 if (sec->flags & SEC_LEVEL && priv->ieee->sec.level != sec->level) {
5492 priv->ieee->sec.level = sec->level;
5493 priv->ieee->sec.flags |= SEC_LEVEL;
James Ketrenos2c86c272005-03-23 17:32:29 -06005494 priv->status |= STATUS_SECURITY_UPDATED;
5495 }
5496
5497 IPW_DEBUG_WEP("Security flags: %c %c%c%c%c %c%c%c%c\n",
25b645b2005-07-12 15:45:30 -05005498 priv->ieee->sec.flags & (1 << 8) ? '1' : '0',
5499 priv->ieee->sec.flags & (1 << 7) ? '1' : '0',
5500 priv->ieee->sec.flags & (1 << 6) ? '1' : '0',
5501 priv->ieee->sec.flags & (1 << 5) ? '1' : '0',
5502 priv->ieee->sec.flags & (1 << 4) ? '1' : '0',
5503 priv->ieee->sec.flags & (1 << 3) ? '1' : '0',
5504 priv->ieee->sec.flags & (1 << 2) ? '1' : '0',
5505 priv->ieee->sec.flags & (1 << 1) ? '1' : '0',
5506 priv->ieee->sec.flags & (1 << 0) ? '1' : '0');
James Ketrenos2c86c272005-03-23 17:32:29 -06005507
5508/* As a temporary work around to enable WPA until we figure out why
5509 * wpa_supplicant toggles the security capability of the driver, which
5510 * forces a disassocation with force_update...
5511 *
5512 * if (force_update || !(priv->status & STATUS_ASSOCIATED))*/
5513 if (!(priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)))
5514 ipw2100_configure_security(priv, 0);
James Ketrenosee8e3652005-09-14 09:47:29 -05005515 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06005516 up(&priv->action_sem);
5517}
5518
5519static int ipw2100_adapter_setup(struct ipw2100_priv *priv)
5520{
5521 int err;
5522 int batch_mode = 1;
5523 u8 *bssid;
5524
5525 IPW_DEBUG_INFO("enter\n");
5526
5527 err = ipw2100_disable_adapter(priv);
5528 if (err)
5529 return err;
5530#ifdef CONFIG_IPW2100_MONITOR
5531 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
5532 err = ipw2100_set_channel(priv, priv->channel, batch_mode);
5533 if (err)
5534 return err;
5535
5536 IPW_DEBUG_INFO("exit\n");
5537
5538 return 0;
5539 }
James Ketrenosee8e3652005-09-14 09:47:29 -05005540#endif /* CONFIG_IPW2100_MONITOR */
James Ketrenos2c86c272005-03-23 17:32:29 -06005541
5542 err = ipw2100_read_mac_address(priv);
5543 if (err)
5544 return -EIO;
5545
5546 err = ipw2100_set_mac_address(priv, batch_mode);
5547 if (err)
5548 return err;
5549
5550 err = ipw2100_set_port_type(priv, priv->ieee->iw_mode, batch_mode);
5551 if (err)
5552 return err;
5553
5554 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
5555 err = ipw2100_set_channel(priv, priv->channel, batch_mode);
5556 if (err)
5557 return err;
5558 }
5559
James Ketrenosee8e3652005-09-14 09:47:29 -05005560 err = ipw2100_system_config(priv, batch_mode);
James Ketrenos2c86c272005-03-23 17:32:29 -06005561 if (err)
5562 return err;
5563
5564 err = ipw2100_set_tx_rates(priv, priv->tx_rates, batch_mode);
5565 if (err)
5566 return err;
5567
5568 /* Default to power mode OFF */
5569 err = ipw2100_set_power_mode(priv, IPW_POWER_MODE_CAM);
5570 if (err)
5571 return err;
5572
5573 err = ipw2100_set_rts_threshold(priv, priv->rts_threshold);
5574 if (err)
5575 return err;
5576
5577 if (priv->config & CFG_STATIC_BSSID)
5578 bssid = priv->bssid;
5579 else
5580 bssid = NULL;
5581 err = ipw2100_set_mandatory_bssid(priv, bssid, batch_mode);
5582 if (err)
5583 return err;
5584
5585 if (priv->config & CFG_STATIC_ESSID)
5586 err = ipw2100_set_essid(priv, priv->essid, priv->essid_len,
5587 batch_mode);
5588 else
5589 err = ipw2100_set_essid(priv, NULL, 0, batch_mode);
5590 if (err)
5591 return err;
5592
5593 err = ipw2100_configure_security(priv, batch_mode);
5594 if (err)
5595 return err;
5596
5597 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
James Ketrenosee8e3652005-09-14 09:47:29 -05005598 err =
5599 ipw2100_set_ibss_beacon_interval(priv,
5600 priv->beacon_interval,
5601 batch_mode);
James Ketrenos2c86c272005-03-23 17:32:29 -06005602 if (err)
5603 return err;
5604
5605 err = ipw2100_set_tx_power(priv, priv->tx_power);
5606 if (err)
5607 return err;
5608 }
5609
5610 /*
James Ketrenosee8e3652005-09-14 09:47:29 -05005611 err = ipw2100_set_fragmentation_threshold(
5612 priv, priv->frag_threshold, batch_mode);
5613 if (err)
5614 return err;
5615 */
James Ketrenos2c86c272005-03-23 17:32:29 -06005616
5617 IPW_DEBUG_INFO("exit\n");
5618
5619 return 0;
5620}
5621
James Ketrenos2c86c272005-03-23 17:32:29 -06005622/*************************************************************************
5623 *
5624 * EXTERNALLY CALLED METHODS
5625 *
5626 *************************************************************************/
5627
5628/* This method is called by the network layer -- not to be confused with
5629 * ipw2100_set_mac_address() declared above called by this driver (and this
5630 * method as well) to talk to the firmware */
5631static int ipw2100_set_address(struct net_device *dev, void *p)
5632{
5633 struct ipw2100_priv *priv = ieee80211_priv(dev);
5634 struct sockaddr *addr = p;
5635 int err = 0;
5636
5637 if (!is_valid_ether_addr(addr->sa_data))
5638 return -EADDRNOTAVAIL;
5639
5640 down(&priv->action_sem);
5641
5642 priv->config |= CFG_CUSTOM_MAC;
5643 memcpy(priv->mac_addr, addr->sa_data, ETH_ALEN);
5644
5645 err = ipw2100_set_mac_address(priv, 0);
5646 if (err)
5647 goto done;
5648
5649 priv->reset_backoff = 0;
5650 up(&priv->action_sem);
5651 ipw2100_reset_adapter(priv);
5652 return 0;
5653
James Ketrenosee8e3652005-09-14 09:47:29 -05005654 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06005655 up(&priv->action_sem);
5656 return err;
5657}
5658
5659static int ipw2100_open(struct net_device *dev)
5660{
5661 struct ipw2100_priv *priv = ieee80211_priv(dev);
5662 unsigned long flags;
5663 IPW_DEBUG_INFO("dev->open\n");
5664
5665 spin_lock_irqsave(&priv->low_lock, flags);
Jiri Benc3ce329c2005-08-25 20:07:01 -04005666 if (priv->status & STATUS_ASSOCIATED) {
5667 netif_carrier_on(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06005668 netif_start_queue(dev);
Jiri Benc3ce329c2005-08-25 20:07:01 -04005669 }
James Ketrenos2c86c272005-03-23 17:32:29 -06005670 spin_unlock_irqrestore(&priv->low_lock, flags);
5671
5672 return 0;
5673}
5674
5675static int ipw2100_close(struct net_device *dev)
5676{
5677 struct ipw2100_priv *priv = ieee80211_priv(dev);
5678 unsigned long flags;
5679 struct list_head *element;
5680 struct ipw2100_tx_packet *packet;
5681
5682 IPW_DEBUG_INFO("enter\n");
5683
5684 spin_lock_irqsave(&priv->low_lock, flags);
5685
5686 if (priv->status & STATUS_ASSOCIATED)
5687 netif_carrier_off(dev);
5688 netif_stop_queue(dev);
5689
5690 /* Flush the TX queue ... */
5691 while (!list_empty(&priv->tx_pend_list)) {
5692 element = priv->tx_pend_list.next;
James Ketrenosee8e3652005-09-14 09:47:29 -05005693 packet = list_entry(element, struct ipw2100_tx_packet, list);
James Ketrenos2c86c272005-03-23 17:32:29 -06005694
5695 list_del(element);
5696 DEC_STAT(&priv->tx_pend_stat);
5697
5698 ieee80211_txb_free(packet->info.d_struct.txb);
5699 packet->info.d_struct.txb = NULL;
5700
5701 list_add_tail(element, &priv->tx_free_list);
5702 INC_STAT(&priv->tx_free_stat);
5703 }
5704 spin_unlock_irqrestore(&priv->low_lock, flags);
5705
5706 IPW_DEBUG_INFO("exit\n");
5707
5708 return 0;
5709}
5710
James Ketrenos2c86c272005-03-23 17:32:29 -06005711/*
5712 * TODO: Fix this function... its just wrong
5713 */
5714static void ipw2100_tx_timeout(struct net_device *dev)
5715{
5716 struct ipw2100_priv *priv = ieee80211_priv(dev);
5717
5718 priv->ieee->stats.tx_errors++;
5719
5720#ifdef CONFIG_IPW2100_MONITOR
5721 if (priv->ieee->iw_mode == IW_MODE_MONITOR)
5722 return;
5723#endif
5724
5725 IPW_DEBUG_INFO("%s: TX timed out. Scheduling firmware restart.\n",
5726 dev->name);
5727 schedule_reset(priv);
5728}
5729
James Ketrenos2c86c272005-03-23 17:32:29 -06005730/*
5731 * TODO: reimplement it so that it reads statistics
5732 * from the adapter using ordinal tables
5733 * instead of/in addition to collecting them
5734 * in the driver
5735 */
5736static struct net_device_stats *ipw2100_stats(struct net_device *dev)
5737{
5738 struct ipw2100_priv *priv = ieee80211_priv(dev);
5739
5740 return &priv->ieee->stats;
5741}
5742
James Ketrenosee8e3652005-09-14 09:47:29 -05005743static int ipw2100_wpa_enable(struct ipw2100_priv *priv, int value)
5744{
James Ketrenos82328352005-08-24 22:33:31 -05005745 /* This is called when wpa_supplicant loads and closes the driver
5746 * interface. */
5747 priv->ieee->wpa_enabled = value;
5748 return 0;
James Ketrenos2c86c272005-03-23 17:32:29 -06005749}
5750
James Ketrenosee8e3652005-09-14 09:47:29 -05005751static int ipw2100_wpa_set_auth_algs(struct ipw2100_priv *priv, int value)
5752{
James Ketrenos2c86c272005-03-23 17:32:29 -06005753
5754 struct ieee80211_device *ieee = priv->ieee;
5755 struct ieee80211_security sec = {
5756 .flags = SEC_AUTH_MODE,
5757 };
5758 int ret = 0;
5759
James Ketrenos82328352005-08-24 22:33:31 -05005760 if (value & IW_AUTH_ALG_SHARED_KEY) {
James Ketrenos2c86c272005-03-23 17:32:29 -06005761 sec.auth_mode = WLAN_AUTH_SHARED_KEY;
5762 ieee->open_wep = 0;
James Ketrenos82328352005-08-24 22:33:31 -05005763 } else if (value & IW_AUTH_ALG_OPEN_SYSTEM) {
James Ketrenos2c86c272005-03-23 17:32:29 -06005764 sec.auth_mode = WLAN_AUTH_OPEN;
5765 ieee->open_wep = 1;
Zhu Yicbbdd032006-01-24 13:48:53 +08005766 } else if (value & IW_AUTH_ALG_LEAP) {
5767 sec.auth_mode = WLAN_AUTH_LEAP;
5768 ieee->open_wep = 1;
James Ketrenos82328352005-08-24 22:33:31 -05005769 } else
5770 return -EINVAL;
James Ketrenos2c86c272005-03-23 17:32:29 -06005771
5772 if (ieee->set_security)
5773 ieee->set_security(ieee->dev, &sec);
5774 else
5775 ret = -EOPNOTSUPP;
5776
5777 return ret;
5778}
5779
Adrian Bunk3c398b82006-01-21 01:36:36 +01005780static void ipw2100_wpa_assoc_frame(struct ipw2100_priv *priv,
5781 char *wpa_ie, int wpa_ie_len)
James Ketrenosee8e3652005-09-14 09:47:29 -05005782{
James Ketrenos2c86c272005-03-23 17:32:29 -06005783
5784 struct ipw2100_wpa_assoc_frame frame;
5785
5786 frame.fixed_ie_mask = 0;
5787
5788 /* copy WPA IE */
5789 memcpy(frame.var_ie, wpa_ie, wpa_ie_len);
5790 frame.var_ie_len = wpa_ie_len;
5791
5792 /* make sure WPA is enabled */
5793 ipw2100_wpa_enable(priv, 1);
5794 ipw2100_set_wpa_ie(priv, &frame, 0);
5795}
5796
James Ketrenos2c86c272005-03-23 17:32:29 -06005797static void ipw_ethtool_get_drvinfo(struct net_device *dev,
5798 struct ethtool_drvinfo *info)
5799{
5800 struct ipw2100_priv *priv = ieee80211_priv(dev);
5801 char fw_ver[64], ucode_ver[64];
5802
5803 strcpy(info->driver, DRV_NAME);
5804 strcpy(info->version, DRV_VERSION);
5805
5806 ipw2100_get_fwversion(priv, fw_ver, sizeof(fw_ver));
5807 ipw2100_get_ucodeversion(priv, ucode_ver, sizeof(ucode_ver));
5808
5809 snprintf(info->fw_version, sizeof(info->fw_version), "%s:%d:%s",
5810 fw_ver, priv->eeprom_version, ucode_ver);
5811
5812 strcpy(info->bus_info, pci_name(priv->pci_dev));
5813}
5814
5815static u32 ipw2100_ethtool_get_link(struct net_device *dev)
5816{
James Ketrenosee8e3652005-09-14 09:47:29 -05005817 struct ipw2100_priv *priv = ieee80211_priv(dev);
5818 return (priv->status & STATUS_ASSOCIATED) ? 1 : 0;
James Ketrenos2c86c272005-03-23 17:32:29 -06005819}
5820
James Ketrenos2c86c272005-03-23 17:32:29 -06005821static struct ethtool_ops ipw2100_ethtool_ops = {
James Ketrenosee8e3652005-09-14 09:47:29 -05005822 .get_link = ipw2100_ethtool_get_link,
5823 .get_drvinfo = ipw_ethtool_get_drvinfo,
James Ketrenos2c86c272005-03-23 17:32:29 -06005824};
5825
5826static void ipw2100_hang_check(void *adapter)
5827{
5828 struct ipw2100_priv *priv = adapter;
5829 unsigned long flags;
5830 u32 rtc = 0xa5a5a5a5;
5831 u32 len = sizeof(rtc);
5832 int restart = 0;
5833
5834 spin_lock_irqsave(&priv->low_lock, flags);
5835
5836 if (priv->fatal_error != 0) {
5837 /* If fatal_error is set then we need to restart */
5838 IPW_DEBUG_INFO("%s: Hardware fatal error detected.\n",
5839 priv->net_dev->name);
5840
5841 restart = 1;
5842 } else if (ipw2100_get_ordinal(priv, IPW_ORD_RTC_TIME, &rtc, &len) ||
5843 (rtc == priv->last_rtc)) {
5844 /* Check if firmware is hung */
5845 IPW_DEBUG_INFO("%s: Firmware RTC stalled.\n",
5846 priv->net_dev->name);
5847
5848 restart = 1;
5849 }
5850
5851 if (restart) {
5852 /* Kill timer */
5853 priv->stop_hang_check = 1;
5854 priv->hangs++;
5855
5856 /* Restart the NIC */
5857 schedule_reset(priv);
5858 }
5859
5860 priv->last_rtc = rtc;
5861
5862 if (!priv->stop_hang_check)
5863 queue_delayed_work(priv->workqueue, &priv->hang_check, HZ / 2);
5864
5865 spin_unlock_irqrestore(&priv->low_lock, flags);
5866}
5867
James Ketrenos2c86c272005-03-23 17:32:29 -06005868static void ipw2100_rf_kill(void *adapter)
5869{
5870 struct ipw2100_priv *priv = adapter;
5871 unsigned long flags;
5872
5873 spin_lock_irqsave(&priv->low_lock, flags);
5874
5875 if (rf_kill_active(priv)) {
5876 IPW_DEBUG_RF_KILL("RF Kill active, rescheduling GPIO check\n");
5877 if (!priv->stop_rf_kill)
5878 queue_delayed_work(priv->workqueue, &priv->rf_kill, HZ);
5879 goto exit_unlock;
5880 }
5881
5882 /* RF Kill is now disabled, so bring the device back up */
5883
5884 if (!(priv->status & STATUS_RF_KILL_MASK)) {
5885 IPW_DEBUG_RF_KILL("HW RF Kill no longer active, restarting "
5886 "device\n");
5887 schedule_reset(priv);
5888 } else
5889 IPW_DEBUG_RF_KILL("HW RF Kill deactivated. SW RF Kill still "
5890 "enabled\n");
5891
James Ketrenosee8e3652005-09-14 09:47:29 -05005892 exit_unlock:
James Ketrenos2c86c272005-03-23 17:32:29 -06005893 spin_unlock_irqrestore(&priv->low_lock, flags);
5894}
5895
5896static void ipw2100_irq_tasklet(struct ipw2100_priv *priv);
5897
5898/* Look into using netdev destructor to shutdown ieee80211? */
5899
James Ketrenosee8e3652005-09-14 09:47:29 -05005900static struct net_device *ipw2100_alloc_device(struct pci_dev *pci_dev,
5901 void __iomem * base_addr,
5902 unsigned long mem_start,
5903 unsigned long mem_len)
James Ketrenos2c86c272005-03-23 17:32:29 -06005904{
5905 struct ipw2100_priv *priv;
5906 struct net_device *dev;
5907
5908 dev = alloc_ieee80211(sizeof(struct ipw2100_priv));
5909 if (!dev)
5910 return NULL;
5911 priv = ieee80211_priv(dev);
5912 priv->ieee = netdev_priv(dev);
5913 priv->pci_dev = pci_dev;
5914 priv->net_dev = dev;
5915
5916 priv->ieee->hard_start_xmit = ipw2100_tx;
5917 priv->ieee->set_security = shim__set_security;
5918
James Ketrenos82328352005-08-24 22:33:31 -05005919 priv->ieee->perfect_rssi = -20;
5920 priv->ieee->worst_rssi = -85;
5921
James Ketrenos2c86c272005-03-23 17:32:29 -06005922 dev->open = ipw2100_open;
5923 dev->stop = ipw2100_close;
5924 dev->init = ipw2100_net_init;
James Ketrenos2c86c272005-03-23 17:32:29 -06005925 dev->get_stats = ipw2100_stats;
5926 dev->ethtool_ops = &ipw2100_ethtool_ops;
5927 dev->tx_timeout = ipw2100_tx_timeout;
5928 dev->wireless_handlers = &ipw2100_wx_handler_def;
James Ketrenoseaf8f532005-11-12 12:50:12 -06005929 priv->wireless_data.ieee80211 = priv->ieee;
5930 dev->wireless_data = &priv->wireless_data;
James Ketrenos2c86c272005-03-23 17:32:29 -06005931 dev->set_mac_address = ipw2100_set_address;
James Ketrenosee8e3652005-09-14 09:47:29 -05005932 dev->watchdog_timeo = 3 * HZ;
James Ketrenos2c86c272005-03-23 17:32:29 -06005933 dev->irq = 0;
5934
5935 dev->base_addr = (unsigned long)base_addr;
5936 dev->mem_start = mem_start;
5937 dev->mem_end = dev->mem_start + mem_len - 1;
5938
5939 /* NOTE: We don't use the wireless_handlers hook
5940 * in dev as the system will start throwing WX requests
5941 * to us before we're actually initialized and it just
5942 * ends up causing problems. So, we just handle
5943 * the WX extensions through the ipw2100_ioctl interface */
5944
James Ketrenos2c86c272005-03-23 17:32:29 -06005945 /* memset() puts everything to 0, so we only have explicitely set
5946 * those values that need to be something else */
5947
5948 /* If power management is turned on, default to AUTO mode */
5949 priv->power_mode = IPW_POWER_AUTO;
5950
James Ketrenos82328352005-08-24 22:33:31 -05005951#ifdef CONFIG_IPW2100_MONITOR
5952 priv->config |= CFG_CRC_CHECK;
5953#endif
James Ketrenos2c86c272005-03-23 17:32:29 -06005954 priv->ieee->wpa_enabled = 0;
James Ketrenos2c86c272005-03-23 17:32:29 -06005955 priv->ieee->drop_unencrypted = 0;
5956 priv->ieee->privacy_invoked = 0;
5957 priv->ieee->ieee802_1x = 1;
James Ketrenos2c86c272005-03-23 17:32:29 -06005958
5959 /* Set module parameters */
5960 switch (mode) {
5961 case 1:
5962 priv->ieee->iw_mode = IW_MODE_ADHOC;
5963 break;
5964#ifdef CONFIG_IPW2100_MONITOR
5965 case 2:
5966 priv->ieee->iw_mode = IW_MODE_MONITOR;
5967 break;
5968#endif
5969 default:
5970 case 0:
5971 priv->ieee->iw_mode = IW_MODE_INFRA;
5972 break;
5973 }
5974
5975 if (disable == 1)
5976 priv->status |= STATUS_RF_KILL_SW;
5977
5978 if (channel != 0 &&
James Ketrenosee8e3652005-09-14 09:47:29 -05005979 ((channel >= REG_MIN_CHANNEL) && (channel <= REG_MAX_CHANNEL))) {
James Ketrenos2c86c272005-03-23 17:32:29 -06005980 priv->config |= CFG_STATIC_CHANNEL;
5981 priv->channel = channel;
5982 }
5983
5984 if (associate)
5985 priv->config |= CFG_ASSOCIATE;
5986
5987 priv->beacon_interval = DEFAULT_BEACON_INTERVAL;
5988 priv->short_retry_limit = DEFAULT_SHORT_RETRY_LIMIT;
5989 priv->long_retry_limit = DEFAULT_LONG_RETRY_LIMIT;
5990 priv->rts_threshold = DEFAULT_RTS_THRESHOLD | RTS_DISABLED;
5991 priv->frag_threshold = DEFAULT_FTS | FRAG_DISABLED;
5992 priv->tx_power = IPW_TX_POWER_DEFAULT;
5993 priv->tx_rates = DEFAULT_TX_RATES;
5994
5995 strcpy(priv->nick, "ipw2100");
5996
5997 spin_lock_init(&priv->low_lock);
5998 sema_init(&priv->action_sem, 1);
5999 sema_init(&priv->adapter_sem, 1);
6000
6001 init_waitqueue_head(&priv->wait_command_queue);
6002
6003 netif_carrier_off(dev);
6004
6005 INIT_LIST_HEAD(&priv->msg_free_list);
6006 INIT_LIST_HEAD(&priv->msg_pend_list);
6007 INIT_STAT(&priv->msg_free_stat);
6008 INIT_STAT(&priv->msg_pend_stat);
6009
6010 INIT_LIST_HEAD(&priv->tx_free_list);
6011 INIT_LIST_HEAD(&priv->tx_pend_list);
6012 INIT_STAT(&priv->tx_free_stat);
6013 INIT_STAT(&priv->tx_pend_stat);
6014
6015 INIT_LIST_HEAD(&priv->fw_pend_list);
6016 INIT_STAT(&priv->fw_pend_stat);
6017
James Ketrenos2c86c272005-03-23 17:32:29 -06006018 priv->workqueue = create_workqueue(DRV_NAME);
James Ketrenos392d0f62005-09-07 18:39:03 -05006019
James Ketrenos2c86c272005-03-23 17:32:29 -06006020 INIT_WORK(&priv->reset_work,
6021 (void (*)(void *))ipw2100_reset_adapter, priv);
6022 INIT_WORK(&priv->security_work,
6023 (void (*)(void *))ipw2100_security_work, priv);
6024 INIT_WORK(&priv->wx_event_work,
6025 (void (*)(void *))ipw2100_wx_event_work, priv);
6026 INIT_WORK(&priv->hang_check, ipw2100_hang_check, priv);
6027 INIT_WORK(&priv->rf_kill, ipw2100_rf_kill, priv);
6028
6029 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
6030 ipw2100_irq_tasklet, (unsigned long)priv);
6031
6032 /* NOTE: We do not start the deferred work for status checks yet */
6033 priv->stop_rf_kill = 1;
6034 priv->stop_hang_check = 1;
6035
6036 return dev;
6037}
6038
James Ketrenos2c86c272005-03-23 17:32:29 -06006039static int ipw2100_pci_init_one(struct pci_dev *pci_dev,
6040 const struct pci_device_id *ent)
6041{
6042 unsigned long mem_start, mem_len, mem_flags;
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01006043 void __iomem *base_addr = NULL;
James Ketrenos2c86c272005-03-23 17:32:29 -06006044 struct net_device *dev = NULL;
6045 struct ipw2100_priv *priv = NULL;
6046 int err = 0;
6047 int registered = 0;
6048 u32 val;
6049
6050 IPW_DEBUG_INFO("enter\n");
6051
6052 mem_start = pci_resource_start(pci_dev, 0);
6053 mem_len = pci_resource_len(pci_dev, 0);
6054 mem_flags = pci_resource_flags(pci_dev, 0);
6055
6056 if ((mem_flags & IORESOURCE_MEM) != IORESOURCE_MEM) {
6057 IPW_DEBUG_INFO("weird - resource type is not memory\n");
6058 err = -ENODEV;
6059 goto fail;
6060 }
6061
6062 base_addr = ioremap_nocache(mem_start, mem_len);
6063 if (!base_addr) {
6064 printk(KERN_WARNING DRV_NAME
6065 "Error calling ioremap_nocache.\n");
6066 err = -EIO;
6067 goto fail;
6068 }
6069
6070 /* allocate and initialize our net_device */
6071 dev = ipw2100_alloc_device(pci_dev, base_addr, mem_start, mem_len);
6072 if (!dev) {
6073 printk(KERN_WARNING DRV_NAME
6074 "Error calling ipw2100_alloc_device.\n");
6075 err = -ENOMEM;
6076 goto fail;
6077 }
6078
6079 /* set up PCI mappings for device */
6080 err = pci_enable_device(pci_dev);
6081 if (err) {
6082 printk(KERN_WARNING DRV_NAME
6083 "Error calling pci_enable_device.\n");
6084 return err;
6085 }
6086
6087 priv = ieee80211_priv(dev);
6088
6089 pci_set_master(pci_dev);
6090 pci_set_drvdata(pci_dev, priv);
6091
Tobias Klauser05743d12005-06-20 14:28:40 -07006092 err = pci_set_dma_mask(pci_dev, DMA_32BIT_MASK);
James Ketrenos2c86c272005-03-23 17:32:29 -06006093 if (err) {
6094 printk(KERN_WARNING DRV_NAME
6095 "Error calling pci_set_dma_mask.\n");
6096 pci_disable_device(pci_dev);
6097 return err;
6098 }
6099
6100 err = pci_request_regions(pci_dev, DRV_NAME);
6101 if (err) {
6102 printk(KERN_WARNING DRV_NAME
6103 "Error calling pci_request_regions.\n");
6104 pci_disable_device(pci_dev);
6105 return err;
6106 }
6107
James Ketrenosee8e3652005-09-14 09:47:29 -05006108 /* We disable the RETRY_TIMEOUT register (0x41) to keep
James Ketrenos2c86c272005-03-23 17:32:29 -06006109 * PCI Tx retries from interfering with C3 CPU state */
6110 pci_read_config_dword(pci_dev, 0x40, &val);
6111 if ((val & 0x0000ff00) != 0)
6112 pci_write_config_dword(pci_dev, 0x40, val & 0xffff00ff);
6113
Pavel Machek8724a112005-06-20 14:28:43 -07006114 pci_set_power_state(pci_dev, PCI_D0);
James Ketrenos2c86c272005-03-23 17:32:29 -06006115
6116 if (!ipw2100_hw_is_adapter_in_system(dev)) {
6117 printk(KERN_WARNING DRV_NAME
6118 "Device not found via register read.\n");
6119 err = -ENODEV;
6120 goto fail;
6121 }
6122
6123 SET_NETDEV_DEV(dev, &pci_dev->dev);
6124
6125 /* Force interrupts to be shut off on the device */
6126 priv->status |= STATUS_INT_ENABLED;
6127 ipw2100_disable_interrupts(priv);
6128
6129 /* Allocate and initialize the Tx/Rx queues and lists */
6130 if (ipw2100_queues_allocate(priv)) {
6131 printk(KERN_WARNING DRV_NAME
6132 "Error calilng ipw2100_queues_allocate.\n");
6133 err = -ENOMEM;
6134 goto fail;
6135 }
6136 ipw2100_queues_initialize(priv);
6137
6138 err = request_irq(pci_dev->irq,
James Ketrenosee8e3652005-09-14 09:47:29 -05006139 ipw2100_interrupt, SA_SHIRQ, dev->name, priv);
James Ketrenos2c86c272005-03-23 17:32:29 -06006140 if (err) {
6141 printk(KERN_WARNING DRV_NAME
James Ketrenosee8e3652005-09-14 09:47:29 -05006142 "Error calling request_irq: %d.\n", pci_dev->irq);
James Ketrenos2c86c272005-03-23 17:32:29 -06006143 goto fail;
6144 }
6145 dev->irq = pci_dev->irq;
6146
6147 IPW_DEBUG_INFO("Attempting to register device...\n");
6148
6149 SET_MODULE_OWNER(dev);
6150
6151 printk(KERN_INFO DRV_NAME
6152 ": Detected Intel PRO/Wireless 2100 Network Connection\n");
6153
6154 /* Bring up the interface. Pre 0.46, after we registered the
6155 * network device we would call ipw2100_up. This introduced a race
6156 * condition with newer hotplug configurations (network was coming
6157 * up and making calls before the device was initialized).
6158 *
6159 * If we called ipw2100_up before we registered the device, then the
6160 * device name wasn't registered. So, we instead use the net_dev->init
6161 * member to call a function that then just turns and calls ipw2100_up.
6162 * net_dev->init is called after name allocation but before the
6163 * notifier chain is called */
6164 down(&priv->action_sem);
6165 err = register_netdev(dev);
6166 if (err) {
6167 printk(KERN_WARNING DRV_NAME
6168 "Error calling register_netdev.\n");
6169 goto fail_unlock;
6170 }
6171 registered = 1;
6172
6173 IPW_DEBUG_INFO("%s: Bound to %s\n", dev->name, pci_name(pci_dev));
6174
6175 /* perform this after register_netdev so that dev->name is set */
6176 sysfs_create_group(&pci_dev->dev.kobj, &ipw2100_attribute_group);
James Ketrenos2c86c272005-03-23 17:32:29 -06006177
6178 /* If the RF Kill switch is disabled, go ahead and complete the
6179 * startup sequence */
6180 if (!(priv->status & STATUS_RF_KILL_MASK)) {
6181 /* Enable the adapter - sends HOST_COMPLETE */
6182 if (ipw2100_enable_adapter(priv)) {
6183 printk(KERN_WARNING DRV_NAME
6184 ": %s: failed in call to enable adapter.\n",
6185 priv->net_dev->name);
6186 ipw2100_hw_stop_adapter(priv);
6187 err = -EIO;
6188 goto fail_unlock;
6189 }
6190
6191 /* Start a scan . . . */
6192 ipw2100_set_scan_options(priv);
6193 ipw2100_start_scan(priv);
6194 }
6195
6196 IPW_DEBUG_INFO("exit\n");
6197
6198 priv->status |= STATUS_INITIALIZED;
6199
6200 up(&priv->action_sem);
6201
6202 return 0;
6203
James Ketrenosee8e3652005-09-14 09:47:29 -05006204 fail_unlock:
James Ketrenos2c86c272005-03-23 17:32:29 -06006205 up(&priv->action_sem);
6206
James Ketrenosee8e3652005-09-14 09:47:29 -05006207 fail:
James Ketrenos2c86c272005-03-23 17:32:29 -06006208 if (dev) {
6209 if (registered)
6210 unregister_netdev(dev);
6211
6212 ipw2100_hw_stop_adapter(priv);
6213
6214 ipw2100_disable_interrupts(priv);
6215
6216 if (dev->irq)
6217 free_irq(dev->irq, priv);
6218
6219 ipw2100_kill_workqueue(priv);
6220
6221 /* These are safe to call even if they weren't allocated */
6222 ipw2100_queues_free(priv);
James Ketrenosee8e3652005-09-14 09:47:29 -05006223 sysfs_remove_group(&pci_dev->dev.kobj,
6224 &ipw2100_attribute_group);
James Ketrenos2c86c272005-03-23 17:32:29 -06006225
6226 free_ieee80211(dev);
6227 pci_set_drvdata(pci_dev, NULL);
6228 }
6229
6230 if (base_addr)
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01006231 iounmap(base_addr);
James Ketrenos2c86c272005-03-23 17:32:29 -06006232
6233 pci_release_regions(pci_dev);
6234 pci_disable_device(pci_dev);
6235
6236 return err;
6237}
6238
6239static void __devexit ipw2100_pci_remove_one(struct pci_dev *pci_dev)
6240{
6241 struct ipw2100_priv *priv = pci_get_drvdata(pci_dev);
6242 struct net_device *dev;
6243
6244 if (priv) {
6245 down(&priv->action_sem);
6246
6247 priv->status &= ~STATUS_INITIALIZED;
6248
6249 dev = priv->net_dev;
James Ketrenosee8e3652005-09-14 09:47:29 -05006250 sysfs_remove_group(&pci_dev->dev.kobj,
6251 &ipw2100_attribute_group);
James Ketrenos2c86c272005-03-23 17:32:29 -06006252
6253#ifdef CONFIG_PM
6254 if (ipw2100_firmware.version)
6255 ipw2100_release_firmware(priv, &ipw2100_firmware);
6256#endif
6257 /* Take down the hardware */
6258 ipw2100_down(priv);
6259
6260 /* Release the semaphore so that the network subsystem can
6261 * complete any needed calls into the driver... */
6262 up(&priv->action_sem);
6263
6264 /* Unregister the device first - this results in close()
6265 * being called if the device is open. If we free storage
6266 * first, then close() will crash. */
6267 unregister_netdev(dev);
6268
6269 /* ipw2100_down will ensure that there is no more pending work
6270 * in the workqueue's, so we can safely remove them now. */
6271 ipw2100_kill_workqueue(priv);
6272
6273 ipw2100_queues_free(priv);
6274
6275 /* Free potential debugging firmware snapshot */
6276 ipw2100_snapshot_free(priv);
6277
6278 if (dev->irq)
6279 free_irq(dev->irq, priv);
6280
6281 if (dev->base_addr)
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01006282 iounmap((void __iomem *)dev->base_addr);
James Ketrenos2c86c272005-03-23 17:32:29 -06006283
6284 free_ieee80211(dev);
6285 }
6286
6287 pci_release_regions(pci_dev);
6288 pci_disable_device(pci_dev);
6289
6290 IPW_DEBUG_INFO("exit\n");
6291}
6292
James Ketrenos2c86c272005-03-23 17:32:29 -06006293#ifdef CONFIG_PM
James Ketrenos2c86c272005-03-23 17:32:29 -06006294static int ipw2100_suspend(struct pci_dev *pci_dev, pm_message_t state)
James Ketrenos2c86c272005-03-23 17:32:29 -06006295{
6296 struct ipw2100_priv *priv = pci_get_drvdata(pci_dev);
6297 struct net_device *dev = priv->net_dev;
6298
James Ketrenosee8e3652005-09-14 09:47:29 -05006299 IPW_DEBUG_INFO("%s: Going into suspend...\n", dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06006300
6301 down(&priv->action_sem);
6302 if (priv->status & STATUS_INITIALIZED) {
6303 /* Take down the device; powers it off, etc. */
6304 ipw2100_down(priv);
6305 }
6306
6307 /* Remove the PRESENT state of the device */
6308 netif_device_detach(dev);
6309
James Ketrenos2c86c272005-03-23 17:32:29 -06006310 pci_save_state(pci_dev);
James Ketrenosee8e3652005-09-14 09:47:29 -05006311 pci_disable_device(pci_dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06006312 pci_set_power_state(pci_dev, PCI_D3hot);
James Ketrenos2c86c272005-03-23 17:32:29 -06006313
6314 up(&priv->action_sem);
6315
6316 return 0;
6317}
6318
6319static int ipw2100_resume(struct pci_dev *pci_dev)
6320{
6321 struct ipw2100_priv *priv = pci_get_drvdata(pci_dev);
6322 struct net_device *dev = priv->net_dev;
6323 u32 val;
6324
6325 if (IPW2100_PM_DISABLED)
6326 return 0;
6327
6328 down(&priv->action_sem);
6329
James Ketrenosee8e3652005-09-14 09:47:29 -05006330 IPW_DEBUG_INFO("%s: Coming out of suspend...\n", dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06006331
James Ketrenos2c86c272005-03-23 17:32:29 -06006332 pci_set_power_state(pci_dev, PCI_D0);
James Ketrenos2c86c272005-03-23 17:32:29 -06006333 pci_enable_device(pci_dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06006334 pci_restore_state(pci_dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06006335
6336 /*
6337 * Suspend/Resume resets the PCI configuration space, so we have to
6338 * re-disable the RETRY_TIMEOUT register (0x41) to keep PCI Tx retries
6339 * from interfering with C3 CPU state. pci_restore_state won't help
6340 * here since it only restores the first 64 bytes pci config header.
6341 */
6342 pci_read_config_dword(pci_dev, 0x40, &val);
6343 if ((val & 0x0000ff00) != 0)
6344 pci_write_config_dword(pci_dev, 0x40, val & 0xffff00ff);
6345
6346 /* Set the device back into the PRESENT state; this will also wake
6347 * the queue of needed */
6348 netif_device_attach(dev);
6349
James Ketrenosee8e3652005-09-14 09:47:29 -05006350 /* Bring the device back up */
6351 if (!(priv->status & STATUS_RF_KILL_SW))
6352 ipw2100_up(priv, 0);
James Ketrenos2c86c272005-03-23 17:32:29 -06006353
6354 up(&priv->action_sem);
6355
6356 return 0;
6357}
6358#endif
6359
James Ketrenos2c86c272005-03-23 17:32:29 -06006360#define IPW2100_DEV_ID(x) { PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, x }
6361
6362static struct pci_device_id ipw2100_pci_id_table[] __devinitdata = {
James Ketrenosee8e3652005-09-14 09:47:29 -05006363 IPW2100_DEV_ID(0x2520), /* IN 2100A mPCI 3A */
6364 IPW2100_DEV_ID(0x2521), /* IN 2100A mPCI 3B */
6365 IPW2100_DEV_ID(0x2524), /* IN 2100A mPCI 3B */
6366 IPW2100_DEV_ID(0x2525), /* IN 2100A mPCI 3B */
6367 IPW2100_DEV_ID(0x2526), /* IN 2100A mPCI Gen A3 */
6368 IPW2100_DEV_ID(0x2522), /* IN 2100 mPCI 3B */
6369 IPW2100_DEV_ID(0x2523), /* IN 2100 mPCI 3A */
6370 IPW2100_DEV_ID(0x2527), /* IN 2100 mPCI 3B */
6371 IPW2100_DEV_ID(0x2528), /* IN 2100 mPCI 3B */
6372 IPW2100_DEV_ID(0x2529), /* IN 2100 mPCI 3B */
6373 IPW2100_DEV_ID(0x252B), /* IN 2100 mPCI 3A */
6374 IPW2100_DEV_ID(0x252C), /* IN 2100 mPCI 3A */
6375 IPW2100_DEV_ID(0x252D), /* IN 2100 mPCI 3A */
James Ketrenos2c86c272005-03-23 17:32:29 -06006376
James Ketrenosee8e3652005-09-14 09:47:29 -05006377 IPW2100_DEV_ID(0x2550), /* IB 2100A mPCI 3B */
6378 IPW2100_DEV_ID(0x2551), /* IB 2100 mPCI 3B */
6379 IPW2100_DEV_ID(0x2553), /* IB 2100 mPCI 3B */
6380 IPW2100_DEV_ID(0x2554), /* IB 2100 mPCI 3B */
6381 IPW2100_DEV_ID(0x2555), /* IB 2100 mPCI 3B */
James Ketrenos2c86c272005-03-23 17:32:29 -06006382
James Ketrenosee8e3652005-09-14 09:47:29 -05006383 IPW2100_DEV_ID(0x2560), /* DE 2100A mPCI 3A */
6384 IPW2100_DEV_ID(0x2562), /* DE 2100A mPCI 3A */
6385 IPW2100_DEV_ID(0x2563), /* DE 2100A mPCI 3A */
6386 IPW2100_DEV_ID(0x2561), /* DE 2100 mPCI 3A */
6387 IPW2100_DEV_ID(0x2565), /* DE 2100 mPCI 3A */
6388 IPW2100_DEV_ID(0x2566), /* DE 2100 mPCI 3A */
6389 IPW2100_DEV_ID(0x2567), /* DE 2100 mPCI 3A */
James Ketrenos2c86c272005-03-23 17:32:29 -06006390
James Ketrenosee8e3652005-09-14 09:47:29 -05006391 IPW2100_DEV_ID(0x2570), /* GA 2100 mPCI 3B */
James Ketrenos2c86c272005-03-23 17:32:29 -06006392
James Ketrenosee8e3652005-09-14 09:47:29 -05006393 IPW2100_DEV_ID(0x2580), /* TO 2100A mPCI 3B */
6394 IPW2100_DEV_ID(0x2582), /* TO 2100A mPCI 3B */
6395 IPW2100_DEV_ID(0x2583), /* TO 2100A mPCI 3B */
6396 IPW2100_DEV_ID(0x2581), /* TO 2100 mPCI 3B */
6397 IPW2100_DEV_ID(0x2585), /* TO 2100 mPCI 3B */
6398 IPW2100_DEV_ID(0x2586), /* TO 2100 mPCI 3B */
6399 IPW2100_DEV_ID(0x2587), /* TO 2100 mPCI 3B */
James Ketrenos2c86c272005-03-23 17:32:29 -06006400
James Ketrenosee8e3652005-09-14 09:47:29 -05006401 IPW2100_DEV_ID(0x2590), /* SO 2100A mPCI 3B */
6402 IPW2100_DEV_ID(0x2592), /* SO 2100A mPCI 3B */
6403 IPW2100_DEV_ID(0x2591), /* SO 2100 mPCI 3B */
6404 IPW2100_DEV_ID(0x2593), /* SO 2100 mPCI 3B */
6405 IPW2100_DEV_ID(0x2596), /* SO 2100 mPCI 3B */
6406 IPW2100_DEV_ID(0x2598), /* SO 2100 mPCI 3B */
James Ketrenos2c86c272005-03-23 17:32:29 -06006407
James Ketrenosee8e3652005-09-14 09:47:29 -05006408 IPW2100_DEV_ID(0x25A0), /* HP 2100 mPCI 3B */
James Ketrenos2c86c272005-03-23 17:32:29 -06006409 {0,},
6410};
6411
6412MODULE_DEVICE_TABLE(pci, ipw2100_pci_id_table);
6413
6414static struct pci_driver ipw2100_pci_driver = {
6415 .name = DRV_NAME,
6416 .id_table = ipw2100_pci_id_table,
6417 .probe = ipw2100_pci_init_one,
6418 .remove = __devexit_p(ipw2100_pci_remove_one),
6419#ifdef CONFIG_PM
6420 .suspend = ipw2100_suspend,
6421 .resume = ipw2100_resume,
6422#endif
6423};
6424
James Ketrenos2c86c272005-03-23 17:32:29 -06006425/**
6426 * Initialize the ipw2100 driver/module
6427 *
6428 * @returns 0 if ok, < 0 errno node con error.
6429 *
6430 * Note: we cannot init the /proc stuff until the PCI driver is there,
6431 * or we risk an unlikely race condition on someone accessing
6432 * uninitialized data in the PCI dev struct through /proc.
6433 */
6434static int __init ipw2100_init(void)
6435{
6436 int ret;
6437
6438 printk(KERN_INFO DRV_NAME ": %s, %s\n", DRV_DESCRIPTION, DRV_VERSION);
6439 printk(KERN_INFO DRV_NAME ": %s\n", DRV_COPYRIGHT);
6440
James Ketrenos2c86c272005-03-23 17:32:29 -06006441 ret = pci_module_init(&ipw2100_pci_driver);
6442
Brice Goglin0f52bf92005-12-01 01:41:46 -08006443#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06006444 ipw2100_debug_level = debug;
6445 driver_create_file(&ipw2100_pci_driver.driver,
6446 &driver_attr_debug_level);
6447#endif
6448
6449 return ret;
6450}
6451
James Ketrenos2c86c272005-03-23 17:32:29 -06006452/**
6453 * Cleanup ipw2100 driver registration
6454 */
6455static void __exit ipw2100_exit(void)
6456{
6457 /* FIXME: IPG: check that we have no instances of the devices open */
Brice Goglin0f52bf92005-12-01 01:41:46 -08006458#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06006459 driver_remove_file(&ipw2100_pci_driver.driver,
6460 &driver_attr_debug_level);
6461#endif
6462 pci_unregister_driver(&ipw2100_pci_driver);
6463}
6464
6465module_init(ipw2100_init);
6466module_exit(ipw2100_exit);
6467
6468#define WEXT_USECHANNELS 1
6469
Jiri Bencc4aee8c2005-08-25 20:04:43 -04006470static const long ipw2100_frequencies[] = {
James Ketrenos2c86c272005-03-23 17:32:29 -06006471 2412, 2417, 2422, 2427,
6472 2432, 2437, 2442, 2447,
6473 2452, 2457, 2462, 2467,
6474 2472, 2484
6475};
6476
6477#define FREQ_COUNT (sizeof(ipw2100_frequencies) / \
6478 sizeof(ipw2100_frequencies[0]))
6479
Jiri Bencc4aee8c2005-08-25 20:04:43 -04006480static const long ipw2100_rates_11b[] = {
James Ketrenos2c86c272005-03-23 17:32:29 -06006481 1000000,
6482 2000000,
6483 5500000,
6484 11000000
6485};
6486
6487#define RATE_COUNT (sizeof(ipw2100_rates_11b) / sizeof(ipw2100_rates_11b[0]))
6488
6489static int ipw2100_wx_get_name(struct net_device *dev,
6490 struct iw_request_info *info,
6491 union iwreq_data *wrqu, char *extra)
6492{
6493 /*
6494 * This can be called at any time. No action lock required
6495 */
6496
6497 struct ipw2100_priv *priv = ieee80211_priv(dev);
6498 if (!(priv->status & STATUS_ASSOCIATED))
6499 strcpy(wrqu->name, "unassociated");
6500 else
6501 snprintf(wrqu->name, IFNAMSIZ, "IEEE 802.11b");
6502
6503 IPW_DEBUG_WX("Name: %s\n", wrqu->name);
6504 return 0;
6505}
6506
James Ketrenos2c86c272005-03-23 17:32:29 -06006507static int ipw2100_wx_set_freq(struct net_device *dev,
6508 struct iw_request_info *info,
6509 union iwreq_data *wrqu, char *extra)
6510{
6511 struct ipw2100_priv *priv = ieee80211_priv(dev);
6512 struct iw_freq *fwrq = &wrqu->freq;
6513 int err = 0;
6514
6515 if (priv->ieee->iw_mode == IW_MODE_INFRA)
6516 return -EOPNOTSUPP;
6517
6518 down(&priv->action_sem);
6519 if (!(priv->status & STATUS_INITIALIZED)) {
6520 err = -EIO;
6521 goto done;
6522 }
6523
6524 /* if setting by freq convert to channel */
6525 if (fwrq->e == 1) {
James Ketrenosee8e3652005-09-14 09:47:29 -05006526 if ((fwrq->m >= (int)2.412e8 && fwrq->m <= (int)2.487e8)) {
James Ketrenos2c86c272005-03-23 17:32:29 -06006527 int f = fwrq->m / 100000;
6528 int c = 0;
6529
6530 while ((c < REG_MAX_CHANNEL) &&
6531 (f != ipw2100_frequencies[c]))
6532 c++;
6533
6534 /* hack to fall through */
6535 fwrq->e = 0;
6536 fwrq->m = c + 1;
6537 }
6538 }
6539
James Ketrenos82328352005-08-24 22:33:31 -05006540 if (fwrq->e > 0 || fwrq->m > 1000) {
6541 err = -EOPNOTSUPP;
6542 goto done;
6543 } else { /* Set the channel */
James Ketrenos2c86c272005-03-23 17:32:29 -06006544 IPW_DEBUG_WX("SET Freq/Channel -> %d \n", fwrq->m);
6545 err = ipw2100_set_channel(priv, fwrq->m, 0);
6546 }
6547
James Ketrenosee8e3652005-09-14 09:47:29 -05006548 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06006549 up(&priv->action_sem);
6550 return err;
6551}
6552
James Ketrenos2c86c272005-03-23 17:32:29 -06006553static int ipw2100_wx_get_freq(struct net_device *dev,
6554 struct iw_request_info *info,
6555 union iwreq_data *wrqu, char *extra)
6556{
6557 /*
6558 * This can be called at any time. No action lock required
6559 */
6560
6561 struct ipw2100_priv *priv = ieee80211_priv(dev);
6562
6563 wrqu->freq.e = 0;
6564
6565 /* If we are associated, trying to associate, or have a statically
6566 * configured CHANNEL then return that; otherwise return ANY */
6567 if (priv->config & CFG_STATIC_CHANNEL ||
6568 priv->status & STATUS_ASSOCIATED)
6569 wrqu->freq.m = priv->channel;
6570 else
6571 wrqu->freq.m = 0;
6572
6573 IPW_DEBUG_WX("GET Freq/Channel -> %d \n", priv->channel);
6574 return 0;
6575
6576}
6577
6578static int ipw2100_wx_set_mode(struct net_device *dev,
6579 struct iw_request_info *info,
6580 union iwreq_data *wrqu, char *extra)
6581{
6582 struct ipw2100_priv *priv = ieee80211_priv(dev);
6583 int err = 0;
6584
6585 IPW_DEBUG_WX("SET Mode -> %d \n", wrqu->mode);
6586
6587 if (wrqu->mode == priv->ieee->iw_mode)
6588 return 0;
6589
6590 down(&priv->action_sem);
6591 if (!(priv->status & STATUS_INITIALIZED)) {
6592 err = -EIO;
6593 goto done;
6594 }
6595
6596 switch (wrqu->mode) {
6597#ifdef CONFIG_IPW2100_MONITOR
6598 case IW_MODE_MONITOR:
6599 err = ipw2100_switch_mode(priv, IW_MODE_MONITOR);
6600 break;
James Ketrenosee8e3652005-09-14 09:47:29 -05006601#endif /* CONFIG_IPW2100_MONITOR */
James Ketrenos2c86c272005-03-23 17:32:29 -06006602 case IW_MODE_ADHOC:
6603 err = ipw2100_switch_mode(priv, IW_MODE_ADHOC);
6604 break;
6605 case IW_MODE_INFRA:
6606 case IW_MODE_AUTO:
6607 default:
6608 err = ipw2100_switch_mode(priv, IW_MODE_INFRA);
6609 break;
6610 }
6611
James Ketrenosee8e3652005-09-14 09:47:29 -05006612 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06006613 up(&priv->action_sem);
James Ketrenosee8e3652005-09-14 09:47:29 -05006614 return err;
James Ketrenos2c86c272005-03-23 17:32:29 -06006615}
6616
6617static int ipw2100_wx_get_mode(struct net_device *dev,
6618 struct iw_request_info *info,
6619 union iwreq_data *wrqu, char *extra)
6620{
6621 /*
6622 * This can be called at any time. No action lock required
6623 */
6624
6625 struct ipw2100_priv *priv = ieee80211_priv(dev);
6626
6627 wrqu->mode = priv->ieee->iw_mode;
6628 IPW_DEBUG_WX("GET Mode -> %d\n", wrqu->mode);
6629
6630 return 0;
6631}
6632
James Ketrenos2c86c272005-03-23 17:32:29 -06006633#define POWER_MODES 5
6634
6635/* Values are in microsecond */
Jiri Bencc4aee8c2005-08-25 20:04:43 -04006636static const s32 timeout_duration[POWER_MODES] = {
James Ketrenos2c86c272005-03-23 17:32:29 -06006637 350000,
6638 250000,
6639 75000,
6640 37000,
6641 25000,
6642};
6643
Jiri Bencc4aee8c2005-08-25 20:04:43 -04006644static const s32 period_duration[POWER_MODES] = {
James Ketrenos2c86c272005-03-23 17:32:29 -06006645 400000,
6646 700000,
6647 1000000,
6648 1000000,
6649 1000000
6650};
6651
6652static int ipw2100_wx_get_range(struct net_device *dev,
6653 struct iw_request_info *info,
6654 union iwreq_data *wrqu, char *extra)
6655{
6656 /*
6657 * This can be called at any time. No action lock required
6658 */
6659
6660 struct ipw2100_priv *priv = ieee80211_priv(dev);
6661 struct iw_range *range = (struct iw_range *)extra;
6662 u16 val;
6663 int i, level;
6664
6665 wrqu->data.length = sizeof(*range);
6666 memset(range, 0, sizeof(*range));
6667
6668 /* Let's try to keep this struct in the same order as in
6669 * linux/include/wireless.h
6670 */
6671
6672 /* TODO: See what values we can set, and remove the ones we can't
6673 * set, or fill them with some default data.
6674 */
6675
6676 /* ~5 Mb/s real (802.11b) */
6677 range->throughput = 5 * 1000 * 1000;
6678
James Ketrenosee8e3652005-09-14 09:47:29 -05006679// range->sensitivity; /* signal level threshold range */
James Ketrenos2c86c272005-03-23 17:32:29 -06006680
6681 range->max_qual.qual = 100;
6682 /* TODO: Find real max RSSI and stick here */
6683 range->max_qual.level = 0;
6684 range->max_qual.noise = 0;
James Ketrenosee8e3652005-09-14 09:47:29 -05006685 range->max_qual.updated = 7; /* Updated all three */
James Ketrenos2c86c272005-03-23 17:32:29 -06006686
James Ketrenosee8e3652005-09-14 09:47:29 -05006687 range->avg_qual.qual = 70; /* > 8% missed beacons is 'bad' */
James Ketrenos2c86c272005-03-23 17:32:29 -06006688 /* TODO: Find real 'good' to 'bad' threshol value for RSSI */
6689 range->avg_qual.level = 20 + IPW2100_RSSI_TO_DBM;
6690 range->avg_qual.noise = 0;
James Ketrenosee8e3652005-09-14 09:47:29 -05006691 range->avg_qual.updated = 7; /* Updated all three */
James Ketrenos2c86c272005-03-23 17:32:29 -06006692
6693 range->num_bitrates = RATE_COUNT;
6694
6695 for (i = 0; i < RATE_COUNT && i < IW_MAX_BITRATES; i++) {
6696 range->bitrate[i] = ipw2100_rates_11b[i];
6697 }
6698
6699 range->min_rts = MIN_RTS_THRESHOLD;
6700 range->max_rts = MAX_RTS_THRESHOLD;
6701 range->min_frag = MIN_FRAG_THRESHOLD;
6702 range->max_frag = MAX_FRAG_THRESHOLD;
6703
6704 range->min_pmp = period_duration[0]; /* Minimal PM period */
James Ketrenosee8e3652005-09-14 09:47:29 -05006705 range->max_pmp = period_duration[POWER_MODES - 1]; /* Maximal PM period */
6706 range->min_pmt = timeout_duration[POWER_MODES - 1]; /* Minimal PM timeout */
6707 range->max_pmt = timeout_duration[0]; /* Maximal PM timeout */
James Ketrenos2c86c272005-03-23 17:32:29 -06006708
James Ketrenosee8e3652005-09-14 09:47:29 -05006709 /* How to decode max/min PM period */
James Ketrenos2c86c272005-03-23 17:32:29 -06006710 range->pmp_flags = IW_POWER_PERIOD;
James Ketrenosee8e3652005-09-14 09:47:29 -05006711 /* How to decode max/min PM period */
James Ketrenos2c86c272005-03-23 17:32:29 -06006712 range->pmt_flags = IW_POWER_TIMEOUT;
6713 /* What PM options are supported */
6714 range->pm_capa = IW_POWER_TIMEOUT | IW_POWER_PERIOD;
6715
6716 range->encoding_size[0] = 5;
James Ketrenosee8e3652005-09-14 09:47:29 -05006717 range->encoding_size[1] = 13; /* Different token sizes */
6718 range->num_encoding_sizes = 2; /* Number of entry in the list */
6719 range->max_encoding_tokens = WEP_KEYS; /* Max number of tokens */
6720// range->encoding_login_index; /* token index for login token */
James Ketrenos2c86c272005-03-23 17:32:29 -06006721
6722 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
6723 range->txpower_capa = IW_TXPOW_DBM;
6724 range->num_txpower = IW_MAX_TXPOWER;
James Ketrenosee8e3652005-09-14 09:47:29 -05006725 for (i = 0, level = (IPW_TX_POWER_MAX_DBM * 16);
6726 i < IW_MAX_TXPOWER;
6727 i++, level -=
6728 ((IPW_TX_POWER_MAX_DBM -
6729 IPW_TX_POWER_MIN_DBM) * 16) / (IW_MAX_TXPOWER - 1))
James Ketrenos2c86c272005-03-23 17:32:29 -06006730 range->txpower[i] = level / 16;
6731 } else {
6732 range->txpower_capa = 0;
6733 range->num_txpower = 0;
6734 }
6735
James Ketrenos2c86c272005-03-23 17:32:29 -06006736 /* Set the Wireless Extension versions */
6737 range->we_version_compiled = WIRELESS_EXT;
Dan Williams166c3432006-01-09 11:04:31 -05006738 range->we_version_source = 18;
James Ketrenos2c86c272005-03-23 17:32:29 -06006739
James Ketrenosee8e3652005-09-14 09:47:29 -05006740// range->retry_capa; /* What retry options are supported */
6741// range->retry_flags; /* How to decode max/min retry limit */
6742// range->r_time_flags; /* How to decode max/min retry life */
6743// range->min_retry; /* Minimal number of retries */
6744// range->max_retry; /* Maximal number of retries */
6745// range->min_r_time; /* Minimal retry lifetime */
6746// range->max_r_time; /* Maximal retry lifetime */
James Ketrenos2c86c272005-03-23 17:32:29 -06006747
James Ketrenosee8e3652005-09-14 09:47:29 -05006748 range->num_channels = FREQ_COUNT;
James Ketrenos2c86c272005-03-23 17:32:29 -06006749
6750 val = 0;
6751 for (i = 0; i < FREQ_COUNT; i++) {
6752 // TODO: Include only legal frequencies for some countries
James Ketrenosee8e3652005-09-14 09:47:29 -05006753// if (local->channel_mask & (1 << i)) {
6754 range->freq[val].i = i + 1;
6755 range->freq[val].m = ipw2100_frequencies[i] * 100000;
6756 range->freq[val].e = 1;
6757 val++;
6758// }
James Ketrenos2c86c272005-03-23 17:32:29 -06006759 if (val == IW_MAX_FREQUENCIES)
James Ketrenosee8e3652005-09-14 09:47:29 -05006760 break;
James Ketrenos2c86c272005-03-23 17:32:29 -06006761 }
6762 range->num_frequency = val;
6763
James Ketrenoseaf8f532005-11-12 12:50:12 -06006764 /* Event capability (kernel + driver) */
6765 range->event_capa[0] = (IW_EVENT_CAPA_K_0 |
6766 IW_EVENT_CAPA_MASK(SIOCGIWAP));
6767 range->event_capa[1] = IW_EVENT_CAPA_K_1;
6768
Dan Williams166c3432006-01-09 11:04:31 -05006769 range->enc_capa = IW_ENC_CAPA_WPA | IW_ENC_CAPA_WPA2 |
6770 IW_ENC_CAPA_CIPHER_TKIP | IW_ENC_CAPA_CIPHER_CCMP;
6771
James Ketrenos2c86c272005-03-23 17:32:29 -06006772 IPW_DEBUG_WX("GET Range\n");
6773
6774 return 0;
6775}
6776
6777static int ipw2100_wx_set_wap(struct net_device *dev,
6778 struct iw_request_info *info,
6779 union iwreq_data *wrqu, char *extra)
6780{
6781 struct ipw2100_priv *priv = ieee80211_priv(dev);
6782 int err = 0;
6783
6784 static const unsigned char any[] = {
6785 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
6786 };
6787 static const unsigned char off[] = {
6788 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
6789 };
6790
6791 // sanity checks
6792 if (wrqu->ap_addr.sa_family != ARPHRD_ETHER)
6793 return -EINVAL;
6794
6795 down(&priv->action_sem);
6796 if (!(priv->status & STATUS_INITIALIZED)) {
6797 err = -EIO;
6798 goto done;
6799 }
6800
6801 if (!memcmp(any, wrqu->ap_addr.sa_data, ETH_ALEN) ||
6802 !memcmp(off, wrqu->ap_addr.sa_data, ETH_ALEN)) {
6803 /* we disable mandatory BSSID association */
6804 IPW_DEBUG_WX("exit - disable mandatory BSSID\n");
6805 priv->config &= ~CFG_STATIC_BSSID;
6806 err = ipw2100_set_mandatory_bssid(priv, NULL, 0);
6807 goto done;
6808 }
6809
6810 priv->config |= CFG_STATIC_BSSID;
6811 memcpy(priv->mandatory_bssid_mac, wrqu->ap_addr.sa_data, ETH_ALEN);
6812
6813 err = ipw2100_set_mandatory_bssid(priv, wrqu->ap_addr.sa_data, 0);
6814
6815 IPW_DEBUG_WX("SET BSSID -> %02X:%02X:%02X:%02X:%02X:%02X\n",
6816 wrqu->ap_addr.sa_data[0] & 0xff,
6817 wrqu->ap_addr.sa_data[1] & 0xff,
6818 wrqu->ap_addr.sa_data[2] & 0xff,
6819 wrqu->ap_addr.sa_data[3] & 0xff,
6820 wrqu->ap_addr.sa_data[4] & 0xff,
6821 wrqu->ap_addr.sa_data[5] & 0xff);
6822
James Ketrenosee8e3652005-09-14 09:47:29 -05006823 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06006824 up(&priv->action_sem);
6825 return err;
6826}
6827
6828static int ipw2100_wx_get_wap(struct net_device *dev,
6829 struct iw_request_info *info,
6830 union iwreq_data *wrqu, char *extra)
6831{
6832 /*
6833 * This can be called at any time. No action lock required
6834 */
6835
6836 struct ipw2100_priv *priv = ieee80211_priv(dev);
6837
6838 /* If we are associated, trying to associate, or have a statically
6839 * configured BSSID then return that; otherwise return ANY */
James Ketrenosee8e3652005-09-14 09:47:29 -05006840 if (priv->config & CFG_STATIC_BSSID || priv->status & STATUS_ASSOCIATED) {
James Ketrenos2c86c272005-03-23 17:32:29 -06006841 wrqu->ap_addr.sa_family = ARPHRD_ETHER;
James Ketrenos82328352005-08-24 22:33:31 -05006842 memcpy(wrqu->ap_addr.sa_data, priv->bssid, ETH_ALEN);
James Ketrenos2c86c272005-03-23 17:32:29 -06006843 } else
6844 memset(wrqu->ap_addr.sa_data, 0, ETH_ALEN);
6845
6846 IPW_DEBUG_WX("Getting WAP BSSID: " MAC_FMT "\n",
6847 MAC_ARG(wrqu->ap_addr.sa_data));
6848 return 0;
6849}
6850
6851static int ipw2100_wx_set_essid(struct net_device *dev,
6852 struct iw_request_info *info,
6853 union iwreq_data *wrqu, char *extra)
6854{
6855 struct ipw2100_priv *priv = ieee80211_priv(dev);
James Ketrenosee8e3652005-09-14 09:47:29 -05006856 char *essid = ""; /* ANY */
James Ketrenos2c86c272005-03-23 17:32:29 -06006857 int length = 0;
6858 int err = 0;
6859
6860 down(&priv->action_sem);
6861 if (!(priv->status & STATUS_INITIALIZED)) {
6862 err = -EIO;
6863 goto done;
6864 }
6865
6866 if (wrqu->essid.flags && wrqu->essid.length) {
6867 length = wrqu->essid.length - 1;
6868 essid = extra;
6869 }
6870
6871 if (length == 0) {
6872 IPW_DEBUG_WX("Setting ESSID to ANY\n");
6873 priv->config &= ~CFG_STATIC_ESSID;
6874 err = ipw2100_set_essid(priv, NULL, 0, 0);
6875 goto done;
6876 }
6877
6878 length = min(length, IW_ESSID_MAX_SIZE);
6879
6880 priv->config |= CFG_STATIC_ESSID;
6881
6882 if (priv->essid_len == length && !memcmp(priv->essid, extra, length)) {
6883 IPW_DEBUG_WX("ESSID set to current ESSID.\n");
6884 err = 0;
6885 goto done;
6886 }
6887
6888 IPW_DEBUG_WX("Setting ESSID: '%s' (%d)\n", escape_essid(essid, length),
6889 length);
6890
6891 priv->essid_len = length;
6892 memcpy(priv->essid, essid, priv->essid_len);
6893
6894 err = ipw2100_set_essid(priv, essid, length, 0);
6895
James Ketrenosee8e3652005-09-14 09:47:29 -05006896 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06006897 up(&priv->action_sem);
6898 return err;
6899}
6900
6901static int ipw2100_wx_get_essid(struct net_device *dev,
6902 struct iw_request_info *info,
6903 union iwreq_data *wrqu, char *extra)
6904{
6905 /*
6906 * This can be called at any time. No action lock required
6907 */
6908
6909 struct ipw2100_priv *priv = ieee80211_priv(dev);
6910
6911 /* If we are associated, trying to associate, or have a statically
6912 * configured ESSID then return that; otherwise return ANY */
James Ketrenosee8e3652005-09-14 09:47:29 -05006913 if (priv->config & CFG_STATIC_ESSID || priv->status & STATUS_ASSOCIATED) {
James Ketrenos2c86c272005-03-23 17:32:29 -06006914 IPW_DEBUG_WX("Getting essid: '%s'\n",
6915 escape_essid(priv->essid, priv->essid_len));
6916 memcpy(extra, priv->essid, priv->essid_len);
6917 wrqu->essid.length = priv->essid_len;
James Ketrenosee8e3652005-09-14 09:47:29 -05006918 wrqu->essid.flags = 1; /* active */
James Ketrenos2c86c272005-03-23 17:32:29 -06006919 } else {
6920 IPW_DEBUG_WX("Getting essid: ANY\n");
6921 wrqu->essid.length = 0;
James Ketrenosee8e3652005-09-14 09:47:29 -05006922 wrqu->essid.flags = 0; /* active */
James Ketrenos2c86c272005-03-23 17:32:29 -06006923 }
6924
6925 return 0;
6926}
6927
6928static int ipw2100_wx_set_nick(struct net_device *dev,
6929 struct iw_request_info *info,
6930 union iwreq_data *wrqu, char *extra)
6931{
6932 /*
6933 * This can be called at any time. No action lock required
6934 */
6935
6936 struct ipw2100_priv *priv = ieee80211_priv(dev);
6937
6938 if (wrqu->data.length > IW_ESSID_MAX_SIZE)
6939 return -E2BIG;
6940
James Ketrenosee8e3652005-09-14 09:47:29 -05006941 wrqu->data.length = min((size_t) wrqu->data.length, sizeof(priv->nick));
James Ketrenos2c86c272005-03-23 17:32:29 -06006942 memset(priv->nick, 0, sizeof(priv->nick));
James Ketrenosee8e3652005-09-14 09:47:29 -05006943 memcpy(priv->nick, extra, wrqu->data.length);
James Ketrenos2c86c272005-03-23 17:32:29 -06006944
6945 IPW_DEBUG_WX("SET Nickname -> %s \n", priv->nick);
6946
6947 return 0;
6948}
6949
6950static int ipw2100_wx_get_nick(struct net_device *dev,
6951 struct iw_request_info *info,
6952 union iwreq_data *wrqu, char *extra)
6953{
6954 /*
6955 * This can be called at any time. No action lock required
6956 */
6957
6958 struct ipw2100_priv *priv = ieee80211_priv(dev);
6959
6960 wrqu->data.length = strlen(priv->nick) + 1;
6961 memcpy(extra, priv->nick, wrqu->data.length);
James Ketrenosee8e3652005-09-14 09:47:29 -05006962 wrqu->data.flags = 1; /* active */
James Ketrenos2c86c272005-03-23 17:32:29 -06006963
6964 IPW_DEBUG_WX("GET Nickname -> %s \n", extra);
6965
6966 return 0;
6967}
6968
6969static int ipw2100_wx_set_rate(struct net_device *dev,
6970 struct iw_request_info *info,
6971 union iwreq_data *wrqu, char *extra)
6972{
6973 struct ipw2100_priv *priv = ieee80211_priv(dev);
6974 u32 target_rate = wrqu->bitrate.value;
6975 u32 rate;
6976 int err = 0;
6977
6978 down(&priv->action_sem);
6979 if (!(priv->status & STATUS_INITIALIZED)) {
6980 err = -EIO;
6981 goto done;
6982 }
6983
6984 rate = 0;
6985
6986 if (target_rate == 1000000 ||
6987 (!wrqu->bitrate.fixed && target_rate > 1000000))
6988 rate |= TX_RATE_1_MBIT;
6989 if (target_rate == 2000000 ||
6990 (!wrqu->bitrate.fixed && target_rate > 2000000))
6991 rate |= TX_RATE_2_MBIT;
6992 if (target_rate == 5500000 ||
6993 (!wrqu->bitrate.fixed && target_rate > 5500000))
6994 rate |= TX_RATE_5_5_MBIT;
6995 if (target_rate == 11000000 ||
6996 (!wrqu->bitrate.fixed && target_rate > 11000000))
6997 rate |= TX_RATE_11_MBIT;
6998 if (rate == 0)
6999 rate = DEFAULT_TX_RATES;
7000
7001 err = ipw2100_set_tx_rates(priv, rate, 0);
7002
7003 IPW_DEBUG_WX("SET Rate -> %04X \n", rate);
James Ketrenosee8e3652005-09-14 09:47:29 -05007004 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06007005 up(&priv->action_sem);
7006 return err;
7007}
7008
James Ketrenos2c86c272005-03-23 17:32:29 -06007009static int ipw2100_wx_get_rate(struct net_device *dev,
7010 struct iw_request_info *info,
7011 union iwreq_data *wrqu, char *extra)
7012{
7013 struct ipw2100_priv *priv = ieee80211_priv(dev);
7014 int val;
7015 int len = sizeof(val);
7016 int err = 0;
7017
7018 if (!(priv->status & STATUS_ENABLED) ||
7019 priv->status & STATUS_RF_KILL_MASK ||
7020 !(priv->status & STATUS_ASSOCIATED)) {
7021 wrqu->bitrate.value = 0;
7022 return 0;
7023 }
7024
7025 down(&priv->action_sem);
7026 if (!(priv->status & STATUS_INITIALIZED)) {
7027 err = -EIO;
7028 goto done;
7029 }
7030
7031 err = ipw2100_get_ordinal(priv, IPW_ORD_CURRENT_TX_RATE, &val, &len);
7032 if (err) {
7033 IPW_DEBUG_WX("failed querying ordinals.\n");
7034 return err;
7035 }
7036
7037 switch (val & TX_RATE_MASK) {
7038 case TX_RATE_1_MBIT:
7039 wrqu->bitrate.value = 1000000;
7040 break;
7041 case TX_RATE_2_MBIT:
7042 wrqu->bitrate.value = 2000000;
7043 break;
7044 case TX_RATE_5_5_MBIT:
7045 wrqu->bitrate.value = 5500000;
7046 break;
7047 case TX_RATE_11_MBIT:
7048 wrqu->bitrate.value = 11000000;
7049 break;
7050 default:
7051 wrqu->bitrate.value = 0;
7052 }
7053
7054 IPW_DEBUG_WX("GET Rate -> %d \n", wrqu->bitrate.value);
7055
James Ketrenosee8e3652005-09-14 09:47:29 -05007056 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06007057 up(&priv->action_sem);
7058 return err;
7059}
7060
7061static int ipw2100_wx_set_rts(struct net_device *dev,
7062 struct iw_request_info *info,
7063 union iwreq_data *wrqu, char *extra)
7064{
7065 struct ipw2100_priv *priv = ieee80211_priv(dev);
7066 int value, err;
7067
7068 /* Auto RTS not yet supported */
7069 if (wrqu->rts.fixed == 0)
7070 return -EINVAL;
7071
7072 down(&priv->action_sem);
7073 if (!(priv->status & STATUS_INITIALIZED)) {
7074 err = -EIO;
7075 goto done;
7076 }
7077
7078 if (wrqu->rts.disabled)
7079 value = priv->rts_threshold | RTS_DISABLED;
7080 else {
James Ketrenosee8e3652005-09-14 09:47:29 -05007081 if (wrqu->rts.value < 1 || wrqu->rts.value > 2304) {
James Ketrenos2c86c272005-03-23 17:32:29 -06007082 err = -EINVAL;
7083 goto done;
7084 }
7085 value = wrqu->rts.value;
7086 }
7087
7088 err = ipw2100_set_rts_threshold(priv, value);
7089
7090 IPW_DEBUG_WX("SET RTS Threshold -> 0x%08X \n", value);
James Ketrenosee8e3652005-09-14 09:47:29 -05007091 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06007092 up(&priv->action_sem);
7093 return err;
7094}
7095
7096static int ipw2100_wx_get_rts(struct net_device *dev,
7097 struct iw_request_info *info,
7098 union iwreq_data *wrqu, char *extra)
7099{
7100 /*
7101 * This can be called at any time. No action lock required
7102 */
7103
7104 struct ipw2100_priv *priv = ieee80211_priv(dev);
7105
7106 wrqu->rts.value = priv->rts_threshold & ~RTS_DISABLED;
James Ketrenosee8e3652005-09-14 09:47:29 -05007107 wrqu->rts.fixed = 1; /* no auto select */
James Ketrenos2c86c272005-03-23 17:32:29 -06007108
7109 /* If RTS is set to the default value, then it is disabled */
7110 wrqu->rts.disabled = (priv->rts_threshold & RTS_DISABLED) ? 1 : 0;
7111
7112 IPW_DEBUG_WX("GET RTS Threshold -> 0x%08X \n", wrqu->rts.value);
7113
7114 return 0;
7115}
7116
7117static int ipw2100_wx_set_txpow(struct net_device *dev,
7118 struct iw_request_info *info,
7119 union iwreq_data *wrqu, char *extra)
7120{
7121 struct ipw2100_priv *priv = ieee80211_priv(dev);
7122 int err = 0, value;
Zhu Yib6e4da72006-01-24 13:49:32 +08007123
7124 if (ipw_radio_kill_sw(priv, wrqu->txpower.disabled))
7125 return -EINPROGRESS;
James Ketrenos2c86c272005-03-23 17:32:29 -06007126
7127 if (priv->ieee->iw_mode != IW_MODE_ADHOC)
Zhu Yib6e4da72006-01-24 13:49:32 +08007128 return 0;
7129
7130 if ((wrqu->txpower.flags & IW_TXPOW_TYPE) != IW_TXPOW_DBM)
James Ketrenos2c86c272005-03-23 17:32:29 -06007131 return -EINVAL;
7132
Zhu Yib6e4da72006-01-24 13:49:32 +08007133 if (wrqu->txpower.fixed == 0)
James Ketrenos2c86c272005-03-23 17:32:29 -06007134 value = IPW_TX_POWER_DEFAULT;
7135 else {
7136 if (wrqu->txpower.value < IPW_TX_POWER_MIN_DBM ||
7137 wrqu->txpower.value > IPW_TX_POWER_MAX_DBM)
7138 return -EINVAL;
7139
Liu Hongf75459e2005-07-13 12:29:21 -05007140 value = wrqu->txpower.value;
James Ketrenos2c86c272005-03-23 17:32:29 -06007141 }
7142
7143 down(&priv->action_sem);
7144 if (!(priv->status & STATUS_INITIALIZED)) {
7145 err = -EIO;
7146 goto done;
7147 }
7148
7149 err = ipw2100_set_tx_power(priv, value);
7150
7151 IPW_DEBUG_WX("SET TX Power -> %d \n", value);
7152
James Ketrenosee8e3652005-09-14 09:47:29 -05007153 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06007154 up(&priv->action_sem);
7155 return err;
7156}
7157
7158static int ipw2100_wx_get_txpow(struct net_device *dev,
7159 struct iw_request_info *info,
7160 union iwreq_data *wrqu, char *extra)
7161{
7162 /*
7163 * This can be called at any time. No action lock required
7164 */
7165
7166 struct ipw2100_priv *priv = ieee80211_priv(dev);
7167
Zhu Yib6e4da72006-01-24 13:49:32 +08007168 wrqu->txpower.disabled = (priv->status & STATUS_RF_KILL_MASK) ? 1 : 0;
James Ketrenos2c86c272005-03-23 17:32:29 -06007169
7170 if (priv->tx_power == IPW_TX_POWER_DEFAULT) {
Zhu Yib6e4da72006-01-24 13:49:32 +08007171 wrqu->txpower.fixed = 0;
7172 wrqu->txpower.value = IPW_TX_POWER_MAX_DBM;
James Ketrenos2c86c272005-03-23 17:32:29 -06007173 } else {
Zhu Yib6e4da72006-01-24 13:49:32 +08007174 wrqu->txpower.fixed = 1;
7175 wrqu->txpower.value = priv->tx_power;
James Ketrenos2c86c272005-03-23 17:32:29 -06007176 }
7177
Zhu Yib6e4da72006-01-24 13:49:32 +08007178 wrqu->txpower.flags = IW_TXPOW_DBM;
James Ketrenos2c86c272005-03-23 17:32:29 -06007179
Zhu Yib6e4da72006-01-24 13:49:32 +08007180 IPW_DEBUG_WX("GET TX Power -> %d \n", wrqu->txpower.value);
James Ketrenos2c86c272005-03-23 17:32:29 -06007181
7182 return 0;
7183}
7184
7185static int ipw2100_wx_set_frag(struct net_device *dev,
7186 struct iw_request_info *info,
7187 union iwreq_data *wrqu, char *extra)
7188{
7189 /*
7190 * This can be called at any time. No action lock required
7191 */
7192
7193 struct ipw2100_priv *priv = ieee80211_priv(dev);
7194
7195 if (!wrqu->frag.fixed)
7196 return -EINVAL;
7197
7198 if (wrqu->frag.disabled) {
7199 priv->frag_threshold |= FRAG_DISABLED;
7200 priv->ieee->fts = DEFAULT_FTS;
7201 } else {
7202 if (wrqu->frag.value < MIN_FRAG_THRESHOLD ||
7203 wrqu->frag.value > MAX_FRAG_THRESHOLD)
7204 return -EINVAL;
7205
7206 priv->ieee->fts = wrqu->frag.value & ~0x1;
7207 priv->frag_threshold = priv->ieee->fts;
7208 }
7209
7210 IPW_DEBUG_WX("SET Frag Threshold -> %d \n", priv->ieee->fts);
7211
7212 return 0;
7213}
7214
7215static int ipw2100_wx_get_frag(struct net_device *dev,
7216 struct iw_request_info *info,
7217 union iwreq_data *wrqu, char *extra)
7218{
7219 /*
7220 * This can be called at any time. No action lock required
7221 */
7222
7223 struct ipw2100_priv *priv = ieee80211_priv(dev);
7224 wrqu->frag.value = priv->frag_threshold & ~FRAG_DISABLED;
7225 wrqu->frag.fixed = 0; /* no auto select */
7226 wrqu->frag.disabled = (priv->frag_threshold & FRAG_DISABLED) ? 1 : 0;
7227
7228 IPW_DEBUG_WX("GET Frag Threshold -> %d \n", wrqu->frag.value);
7229
7230 return 0;
7231}
7232
7233static int ipw2100_wx_set_retry(struct net_device *dev,
7234 struct iw_request_info *info,
7235 union iwreq_data *wrqu, char *extra)
7236{
7237 struct ipw2100_priv *priv = ieee80211_priv(dev);
7238 int err = 0;
7239
James Ketrenosee8e3652005-09-14 09:47:29 -05007240 if (wrqu->retry.flags & IW_RETRY_LIFETIME || wrqu->retry.disabled)
James Ketrenos2c86c272005-03-23 17:32:29 -06007241 return -EINVAL;
7242
7243 if (!(wrqu->retry.flags & IW_RETRY_LIMIT))
7244 return 0;
7245
7246 down(&priv->action_sem);
7247 if (!(priv->status & STATUS_INITIALIZED)) {
7248 err = -EIO;
7249 goto done;
7250 }
7251
7252 if (wrqu->retry.flags & IW_RETRY_MIN) {
7253 err = ipw2100_set_short_retry(priv, wrqu->retry.value);
7254 IPW_DEBUG_WX("SET Short Retry Limit -> %d \n",
James Ketrenosee8e3652005-09-14 09:47:29 -05007255 wrqu->retry.value);
James Ketrenos2c86c272005-03-23 17:32:29 -06007256 goto done;
7257 }
7258
7259 if (wrqu->retry.flags & IW_RETRY_MAX) {
7260 err = ipw2100_set_long_retry(priv, wrqu->retry.value);
7261 IPW_DEBUG_WX("SET Long Retry Limit -> %d \n",
James Ketrenosee8e3652005-09-14 09:47:29 -05007262 wrqu->retry.value);
James Ketrenos2c86c272005-03-23 17:32:29 -06007263 goto done;
7264 }
7265
7266 err = ipw2100_set_short_retry(priv, wrqu->retry.value);
7267 if (!err)
7268 err = ipw2100_set_long_retry(priv, wrqu->retry.value);
7269
7270 IPW_DEBUG_WX("SET Both Retry Limits -> %d \n", wrqu->retry.value);
7271
James Ketrenosee8e3652005-09-14 09:47:29 -05007272 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06007273 up(&priv->action_sem);
7274 return err;
7275}
7276
7277static int ipw2100_wx_get_retry(struct net_device *dev,
7278 struct iw_request_info *info,
7279 union iwreq_data *wrqu, char *extra)
7280{
7281 /*
7282 * This can be called at any time. No action lock required
7283 */
7284
7285 struct ipw2100_priv *priv = ieee80211_priv(dev);
7286
James Ketrenosee8e3652005-09-14 09:47:29 -05007287 wrqu->retry.disabled = 0; /* can't be disabled */
James Ketrenos2c86c272005-03-23 17:32:29 -06007288
James Ketrenosee8e3652005-09-14 09:47:29 -05007289 if ((wrqu->retry.flags & IW_RETRY_TYPE) == IW_RETRY_LIFETIME)
James Ketrenos2c86c272005-03-23 17:32:29 -06007290 return -EINVAL;
7291
7292 if (wrqu->retry.flags & IW_RETRY_MAX) {
James Ketrenos82328352005-08-24 22:33:31 -05007293 wrqu->retry.flags = IW_RETRY_LIMIT | IW_RETRY_MAX;
James Ketrenos2c86c272005-03-23 17:32:29 -06007294 wrqu->retry.value = priv->long_retry_limit;
7295 } else {
7296 wrqu->retry.flags =
7297 (priv->short_retry_limit !=
7298 priv->long_retry_limit) ?
James Ketrenos82328352005-08-24 22:33:31 -05007299 IW_RETRY_LIMIT | IW_RETRY_MIN : IW_RETRY_LIMIT;
James Ketrenos2c86c272005-03-23 17:32:29 -06007300
7301 wrqu->retry.value = priv->short_retry_limit;
7302 }
7303
7304 IPW_DEBUG_WX("GET Retry -> %d \n", wrqu->retry.value);
7305
7306 return 0;
7307}
7308
7309static int ipw2100_wx_set_scan(struct net_device *dev,
7310 struct iw_request_info *info,
7311 union iwreq_data *wrqu, char *extra)
7312{
7313 struct ipw2100_priv *priv = ieee80211_priv(dev);
7314 int err = 0;
7315
7316 down(&priv->action_sem);
7317 if (!(priv->status & STATUS_INITIALIZED)) {
7318 err = -EIO;
7319 goto done;
7320 }
7321
7322 IPW_DEBUG_WX("Initiating scan...\n");
James Ketrenosee8e3652005-09-14 09:47:29 -05007323 if (ipw2100_set_scan_options(priv) || ipw2100_start_scan(priv)) {
James Ketrenos2c86c272005-03-23 17:32:29 -06007324 IPW_DEBUG_WX("Start scan failed.\n");
7325
7326 /* TODO: Mark a scan as pending so when hardware initialized
7327 * a scan starts */
7328 }
7329
James Ketrenosee8e3652005-09-14 09:47:29 -05007330 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06007331 up(&priv->action_sem);
7332 return err;
7333}
7334
7335static int ipw2100_wx_get_scan(struct net_device *dev,
7336 struct iw_request_info *info,
7337 union iwreq_data *wrqu, char *extra)
7338{
7339 /*
7340 * This can be called at any time. No action lock required
7341 */
7342
7343 struct ipw2100_priv *priv = ieee80211_priv(dev);
7344 return ieee80211_wx_get_scan(priv->ieee, info, wrqu, extra);
7345}
7346
James Ketrenos2c86c272005-03-23 17:32:29 -06007347/*
7348 * Implementation based on code in hostap-driver v0.1.3 hostap_ioctl.c
7349 */
7350static int ipw2100_wx_set_encode(struct net_device *dev,
7351 struct iw_request_info *info,
7352 union iwreq_data *wrqu, char *key)
7353{
7354 /*
7355 * No check of STATUS_INITIALIZED required
7356 */
7357
7358 struct ipw2100_priv *priv = ieee80211_priv(dev);
7359 return ieee80211_wx_set_encode(priv->ieee, info, wrqu, key);
7360}
7361
7362static int ipw2100_wx_get_encode(struct net_device *dev,
7363 struct iw_request_info *info,
7364 union iwreq_data *wrqu, char *key)
7365{
7366 /*
7367 * This can be called at any time. No action lock required
7368 */
7369
7370 struct ipw2100_priv *priv = ieee80211_priv(dev);
7371 return ieee80211_wx_get_encode(priv->ieee, info, wrqu, key);
7372}
7373
7374static int ipw2100_wx_set_power(struct net_device *dev,
James Ketrenosee8e3652005-09-14 09:47:29 -05007375 struct iw_request_info *info,
7376 union iwreq_data *wrqu, char *extra)
James Ketrenos2c86c272005-03-23 17:32:29 -06007377{
7378 struct ipw2100_priv *priv = ieee80211_priv(dev);
7379 int err = 0;
7380
7381 down(&priv->action_sem);
7382 if (!(priv->status & STATUS_INITIALIZED)) {
7383 err = -EIO;
7384 goto done;
7385 }
7386
7387 if (wrqu->power.disabled) {
7388 priv->power_mode = IPW_POWER_LEVEL(priv->power_mode);
7389 err = ipw2100_set_power_mode(priv, IPW_POWER_MODE_CAM);
7390 IPW_DEBUG_WX("SET Power Management Mode -> off\n");
7391 goto done;
7392 }
7393
7394 switch (wrqu->power.flags & IW_POWER_MODE) {
James Ketrenosee8e3652005-09-14 09:47:29 -05007395 case IW_POWER_ON: /* If not specified */
7396 case IW_POWER_MODE: /* If set all mask */
7397 case IW_POWER_ALL_R: /* If explicitely state all */
James Ketrenos2c86c272005-03-23 17:32:29 -06007398 break;
James Ketrenosee8e3652005-09-14 09:47:29 -05007399 default: /* Otherwise we don't support it */
James Ketrenos2c86c272005-03-23 17:32:29 -06007400 IPW_DEBUG_WX("SET PM Mode: %X not supported.\n",
7401 wrqu->power.flags);
7402 err = -EOPNOTSUPP;
7403 goto done;
7404 }
7405
7406 /* If the user hasn't specified a power management mode yet, default
7407 * to BATTERY */
7408 priv->power_mode = IPW_POWER_ENABLED | priv->power_mode;
7409 err = ipw2100_set_power_mode(priv, IPW_POWER_LEVEL(priv->power_mode));
7410
James Ketrenosee8e3652005-09-14 09:47:29 -05007411 IPW_DEBUG_WX("SET Power Management Mode -> 0x%02X\n", priv->power_mode);
James Ketrenos2c86c272005-03-23 17:32:29 -06007412
James Ketrenosee8e3652005-09-14 09:47:29 -05007413 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06007414 up(&priv->action_sem);
7415 return err;
7416
7417}
7418
7419static int ipw2100_wx_get_power(struct net_device *dev,
James Ketrenosee8e3652005-09-14 09:47:29 -05007420 struct iw_request_info *info,
7421 union iwreq_data *wrqu, char *extra)
James Ketrenos2c86c272005-03-23 17:32:29 -06007422{
7423 /*
7424 * This can be called at any time. No action lock required
7425 */
7426
7427 struct ipw2100_priv *priv = ieee80211_priv(dev);
7428
James Ketrenos82328352005-08-24 22:33:31 -05007429 if (!(priv->power_mode & IPW_POWER_ENABLED))
James Ketrenos2c86c272005-03-23 17:32:29 -06007430 wrqu->power.disabled = 1;
James Ketrenos82328352005-08-24 22:33:31 -05007431 else {
James Ketrenos2c86c272005-03-23 17:32:29 -06007432 wrqu->power.disabled = 0;
7433 wrqu->power.flags = 0;
7434 }
7435
7436 IPW_DEBUG_WX("GET Power Management Mode -> %02X\n", priv->power_mode);
7437
7438 return 0;
7439}
7440
James Ketrenos82328352005-08-24 22:33:31 -05007441/*
7442 * WE-18 WPA support
7443 */
7444
7445/* SIOCSIWGENIE */
7446static int ipw2100_wx_set_genie(struct net_device *dev,
7447 struct iw_request_info *info,
7448 union iwreq_data *wrqu, char *extra)
7449{
7450
7451 struct ipw2100_priv *priv = ieee80211_priv(dev);
7452 struct ieee80211_device *ieee = priv->ieee;
7453 u8 *buf;
7454
7455 if (!ieee->wpa_enabled)
7456 return -EOPNOTSUPP;
7457
7458 if (wrqu->data.length > MAX_WPA_IE_LEN ||
7459 (wrqu->data.length && extra == NULL))
7460 return -EINVAL;
7461
7462 if (wrqu->data.length) {
7463 buf = kmalloc(wrqu->data.length, GFP_KERNEL);
7464 if (buf == NULL)
7465 return -ENOMEM;
7466
7467 memcpy(buf, extra, wrqu->data.length);
7468 kfree(ieee->wpa_ie);
7469 ieee->wpa_ie = buf;
7470 ieee->wpa_ie_len = wrqu->data.length;
7471 } else {
7472 kfree(ieee->wpa_ie);
7473 ieee->wpa_ie = NULL;
7474 ieee->wpa_ie_len = 0;
7475 }
7476
7477 ipw2100_wpa_assoc_frame(priv, ieee->wpa_ie, ieee->wpa_ie_len);
7478
7479 return 0;
7480}
7481
7482/* SIOCGIWGENIE */
7483static int ipw2100_wx_get_genie(struct net_device *dev,
7484 struct iw_request_info *info,
7485 union iwreq_data *wrqu, char *extra)
7486{
7487 struct ipw2100_priv *priv = ieee80211_priv(dev);
7488 struct ieee80211_device *ieee = priv->ieee;
7489
7490 if (ieee->wpa_ie_len == 0 || ieee->wpa_ie == NULL) {
7491 wrqu->data.length = 0;
7492 return 0;
7493 }
7494
7495 if (wrqu->data.length < ieee->wpa_ie_len)
7496 return -E2BIG;
7497
7498 wrqu->data.length = ieee->wpa_ie_len;
7499 memcpy(extra, ieee->wpa_ie, ieee->wpa_ie_len);
7500
7501 return 0;
7502}
7503
7504/* SIOCSIWAUTH */
7505static int ipw2100_wx_set_auth(struct net_device *dev,
7506 struct iw_request_info *info,
7507 union iwreq_data *wrqu, char *extra)
7508{
7509 struct ipw2100_priv *priv = ieee80211_priv(dev);
7510 struct ieee80211_device *ieee = priv->ieee;
7511 struct iw_param *param = &wrqu->param;
7512 struct ieee80211_crypt_data *crypt;
7513 unsigned long flags;
7514 int ret = 0;
7515
7516 switch (param->flags & IW_AUTH_INDEX) {
7517 case IW_AUTH_WPA_VERSION:
7518 case IW_AUTH_CIPHER_PAIRWISE:
7519 case IW_AUTH_CIPHER_GROUP:
7520 case IW_AUTH_KEY_MGMT:
7521 /*
7522 * ipw2200 does not use these parameters
7523 */
7524 break;
7525
7526 case IW_AUTH_TKIP_COUNTERMEASURES:
7527 crypt = priv->ieee->crypt[priv->ieee->tx_keyidx];
James Ketrenos991d1cc2005-10-13 09:26:48 +00007528 if (!crypt || !crypt->ops->set_flags || !crypt->ops->get_flags)
James Ketrenos82328352005-08-24 22:33:31 -05007529 break;
James Ketrenos82328352005-08-24 22:33:31 -05007530
7531 flags = crypt->ops->get_flags(crypt->priv);
7532
7533 if (param->value)
7534 flags |= IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
7535 else
7536 flags &= ~IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
7537
7538 crypt->ops->set_flags(flags, crypt->priv);
7539
7540 break;
7541
7542 case IW_AUTH_DROP_UNENCRYPTED:{
7543 /* HACK:
7544 *
7545 * wpa_supplicant calls set_wpa_enabled when the driver
7546 * is loaded and unloaded, regardless of if WPA is being
7547 * used. No other calls are made which can be used to
7548 * determine if encryption will be used or not prior to
7549 * association being expected. If encryption is not being
7550 * used, drop_unencrypted is set to false, else true -- we
7551 * can use this to determine if the CAP_PRIVACY_ON bit should
7552 * be set.
7553 */
7554 struct ieee80211_security sec = {
7555 .flags = SEC_ENABLED,
7556 .enabled = param->value,
7557 };
7558 priv->ieee->drop_unencrypted = param->value;
7559 /* We only change SEC_LEVEL for open mode. Others
7560 * are set by ipw_wpa_set_encryption.
7561 */
7562 if (!param->value) {
7563 sec.flags |= SEC_LEVEL;
7564 sec.level = SEC_LEVEL_0;
7565 } else {
7566 sec.flags |= SEC_LEVEL;
7567 sec.level = SEC_LEVEL_1;
7568 }
7569 if (priv->ieee->set_security)
7570 priv->ieee->set_security(priv->ieee->dev, &sec);
7571 break;
7572 }
7573
7574 case IW_AUTH_80211_AUTH_ALG:
7575 ret = ipw2100_wpa_set_auth_algs(priv, param->value);
7576 break;
7577
7578 case IW_AUTH_WPA_ENABLED:
7579 ret = ipw2100_wpa_enable(priv, param->value);
7580 break;
7581
7582 case IW_AUTH_RX_UNENCRYPTED_EAPOL:
7583 ieee->ieee802_1x = param->value;
7584 break;
7585
7586 //case IW_AUTH_ROAMING_CONTROL:
7587 case IW_AUTH_PRIVACY_INVOKED:
7588 ieee->privacy_invoked = param->value;
7589 break;
7590
7591 default:
7592 return -EOPNOTSUPP;
7593 }
7594 return ret;
7595}
7596
7597/* SIOCGIWAUTH */
7598static int ipw2100_wx_get_auth(struct net_device *dev,
7599 struct iw_request_info *info,
7600 union iwreq_data *wrqu, char *extra)
7601{
7602 struct ipw2100_priv *priv = ieee80211_priv(dev);
7603 struct ieee80211_device *ieee = priv->ieee;
7604 struct ieee80211_crypt_data *crypt;
7605 struct iw_param *param = &wrqu->param;
7606 int ret = 0;
7607
7608 switch (param->flags & IW_AUTH_INDEX) {
7609 case IW_AUTH_WPA_VERSION:
7610 case IW_AUTH_CIPHER_PAIRWISE:
7611 case IW_AUTH_CIPHER_GROUP:
7612 case IW_AUTH_KEY_MGMT:
7613 /*
7614 * wpa_supplicant will control these internally
7615 */
7616 ret = -EOPNOTSUPP;
7617 break;
7618
7619 case IW_AUTH_TKIP_COUNTERMEASURES:
7620 crypt = priv->ieee->crypt[priv->ieee->tx_keyidx];
7621 if (!crypt || !crypt->ops->get_flags) {
7622 IPW_DEBUG_WARNING("Can't get TKIP countermeasures: "
7623 "crypt not set!\n");
7624 break;
7625 }
7626
7627 param->value = (crypt->ops->get_flags(crypt->priv) &
7628 IEEE80211_CRYPTO_TKIP_COUNTERMEASURES) ? 1 : 0;
7629
7630 break;
7631
7632 case IW_AUTH_DROP_UNENCRYPTED:
7633 param->value = ieee->drop_unencrypted;
7634 break;
7635
7636 case IW_AUTH_80211_AUTH_ALG:
25b645b2005-07-12 15:45:30 -05007637 param->value = priv->ieee->sec.auth_mode;
James Ketrenos82328352005-08-24 22:33:31 -05007638 break;
7639
7640 case IW_AUTH_WPA_ENABLED:
7641 param->value = ieee->wpa_enabled;
7642 break;
7643
7644 case IW_AUTH_RX_UNENCRYPTED_EAPOL:
7645 param->value = ieee->ieee802_1x;
7646 break;
7647
7648 case IW_AUTH_ROAMING_CONTROL:
7649 case IW_AUTH_PRIVACY_INVOKED:
7650 param->value = ieee->privacy_invoked;
7651 break;
7652
7653 default:
7654 return -EOPNOTSUPP;
7655 }
7656 return 0;
7657}
7658
7659/* SIOCSIWENCODEEXT */
7660static int ipw2100_wx_set_encodeext(struct net_device *dev,
7661 struct iw_request_info *info,
7662 union iwreq_data *wrqu, char *extra)
7663{
7664 struct ipw2100_priv *priv = ieee80211_priv(dev);
7665 return ieee80211_wx_set_encodeext(priv->ieee, info, wrqu, extra);
7666}
7667
7668/* SIOCGIWENCODEEXT */
7669static int ipw2100_wx_get_encodeext(struct net_device *dev,
7670 struct iw_request_info *info,
7671 union iwreq_data *wrqu, char *extra)
7672{
7673 struct ipw2100_priv *priv = ieee80211_priv(dev);
7674 return ieee80211_wx_get_encodeext(priv->ieee, info, wrqu, extra);
7675}
7676
7677/* SIOCSIWMLME */
7678static int ipw2100_wx_set_mlme(struct net_device *dev,
7679 struct iw_request_info *info,
7680 union iwreq_data *wrqu, char *extra)
7681{
7682 struct ipw2100_priv *priv = ieee80211_priv(dev);
7683 struct iw_mlme *mlme = (struct iw_mlme *)extra;
7684 u16 reason;
7685
7686 reason = cpu_to_le16(mlme->reason_code);
7687
7688 switch (mlme->cmd) {
7689 case IW_MLME_DEAUTH:
7690 // silently ignore
7691 break;
7692
7693 case IW_MLME_DISASSOC:
7694 ipw2100_disassociate_bssid(priv);
7695 break;
7696
7697 default:
7698 return -EOPNOTSUPP;
7699 }
7700 return 0;
7701}
James Ketrenos2c86c272005-03-23 17:32:29 -06007702
7703/*
7704 *
7705 * IWPRIV handlers
7706 *
7707 */
7708#ifdef CONFIG_IPW2100_MONITOR
7709static int ipw2100_wx_set_promisc(struct net_device *dev,
7710 struct iw_request_info *info,
7711 union iwreq_data *wrqu, char *extra)
7712{
7713 struct ipw2100_priv *priv = ieee80211_priv(dev);
7714 int *parms = (int *)extra;
7715 int enable = (parms[0] > 0);
7716 int err = 0;
7717
7718 down(&priv->action_sem);
7719 if (!(priv->status & STATUS_INITIALIZED)) {
7720 err = -EIO;
7721 goto done;
7722 }
7723
7724 if (enable) {
7725 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
7726 err = ipw2100_set_channel(priv, parms[1], 0);
7727 goto done;
7728 }
7729 priv->channel = parms[1];
7730 err = ipw2100_switch_mode(priv, IW_MODE_MONITOR);
7731 } else {
7732 if (priv->ieee->iw_mode == IW_MODE_MONITOR)
7733 err = ipw2100_switch_mode(priv, priv->last_mode);
7734 }
James Ketrenosee8e3652005-09-14 09:47:29 -05007735 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06007736 up(&priv->action_sem);
7737 return err;
7738}
7739
7740static int ipw2100_wx_reset(struct net_device *dev,
7741 struct iw_request_info *info,
7742 union iwreq_data *wrqu, char *extra)
7743{
7744 struct ipw2100_priv *priv = ieee80211_priv(dev);
7745 if (priv->status & STATUS_INITIALIZED)
7746 schedule_reset(priv);
7747 return 0;
7748}
7749
7750#endif
7751
7752static int ipw2100_wx_set_powermode(struct net_device *dev,
7753 struct iw_request_info *info,
7754 union iwreq_data *wrqu, char *extra)
7755{
7756 struct ipw2100_priv *priv = ieee80211_priv(dev);
7757 int err = 0, mode = *(int *)extra;
7758
7759 down(&priv->action_sem);
7760 if (!(priv->status & STATUS_INITIALIZED)) {
7761 err = -EIO;
7762 goto done;
7763 }
7764
7765 if ((mode < 1) || (mode > POWER_MODES))
7766 mode = IPW_POWER_AUTO;
7767
7768 if (priv->power_mode != mode)
7769 err = ipw2100_set_power_mode(priv, mode);
James Ketrenosee8e3652005-09-14 09:47:29 -05007770 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06007771 up(&priv->action_sem);
7772 return err;
7773}
7774
7775#define MAX_POWER_STRING 80
7776static int ipw2100_wx_get_powermode(struct net_device *dev,
7777 struct iw_request_info *info,
7778 union iwreq_data *wrqu, char *extra)
7779{
7780 /*
7781 * This can be called at any time. No action lock required
7782 */
7783
7784 struct ipw2100_priv *priv = ieee80211_priv(dev);
7785 int level = IPW_POWER_LEVEL(priv->power_mode);
7786 s32 timeout, period;
7787
7788 if (!(priv->power_mode & IPW_POWER_ENABLED)) {
7789 snprintf(extra, MAX_POWER_STRING,
7790 "Power save level: %d (Off)", level);
7791 } else {
7792 switch (level) {
7793 case IPW_POWER_MODE_CAM:
7794 snprintf(extra, MAX_POWER_STRING,
7795 "Power save level: %d (None)", level);
7796 break;
7797 case IPW_POWER_AUTO:
James Ketrenosee8e3652005-09-14 09:47:29 -05007798 snprintf(extra, MAX_POWER_STRING,
7799 "Power save level: %d (Auto)", 0);
James Ketrenos2c86c272005-03-23 17:32:29 -06007800 break;
7801 default:
7802 timeout = timeout_duration[level - 1] / 1000;
7803 period = period_duration[level - 1] / 1000;
7804 snprintf(extra, MAX_POWER_STRING,
7805 "Power save level: %d "
7806 "(Timeout %dms, Period %dms)",
7807 level, timeout, period);
7808 }
7809 }
7810
7811 wrqu->data.length = strlen(extra) + 1;
7812
7813 return 0;
7814}
7815
James Ketrenos2c86c272005-03-23 17:32:29 -06007816static int ipw2100_wx_set_preamble(struct net_device *dev,
7817 struct iw_request_info *info,
7818 union iwreq_data *wrqu, char *extra)
7819{
7820 struct ipw2100_priv *priv = ieee80211_priv(dev);
7821 int err, mode = *(int *)extra;
7822
7823 down(&priv->action_sem);
7824 if (!(priv->status & STATUS_INITIALIZED)) {
7825 err = -EIO;
7826 goto done;
7827 }
7828
7829 if (mode == 1)
7830 priv->config |= CFG_LONG_PREAMBLE;
7831 else if (mode == 0)
7832 priv->config &= ~CFG_LONG_PREAMBLE;
7833 else {
7834 err = -EINVAL;
7835 goto done;
7836 }
7837
7838 err = ipw2100_system_config(priv, 0);
7839
James Ketrenosee8e3652005-09-14 09:47:29 -05007840 done:
James Ketrenos2c86c272005-03-23 17:32:29 -06007841 up(&priv->action_sem);
7842 return err;
7843}
7844
7845static int ipw2100_wx_get_preamble(struct net_device *dev,
James Ketrenosee8e3652005-09-14 09:47:29 -05007846 struct iw_request_info *info,
7847 union iwreq_data *wrqu, char *extra)
James Ketrenos2c86c272005-03-23 17:32:29 -06007848{
7849 /*
7850 * This can be called at any time. No action lock required
7851 */
7852
7853 struct ipw2100_priv *priv = ieee80211_priv(dev);
7854
7855 if (priv->config & CFG_LONG_PREAMBLE)
7856 snprintf(wrqu->name, IFNAMSIZ, "long (1)");
7857 else
7858 snprintf(wrqu->name, IFNAMSIZ, "auto (0)");
7859
7860 return 0;
7861}
7862
James Ketrenos82328352005-08-24 22:33:31 -05007863#ifdef CONFIG_IPW2100_MONITOR
7864static int ipw2100_wx_set_crc_check(struct net_device *dev,
7865 struct iw_request_info *info,
7866 union iwreq_data *wrqu, char *extra)
James Ketrenos2c86c272005-03-23 17:32:29 -06007867{
James Ketrenos82328352005-08-24 22:33:31 -05007868 struct ipw2100_priv *priv = ieee80211_priv(dev);
7869 int err, mode = *(int *)extra;
7870
7871 down(&priv->action_sem);
7872 if (!(priv->status & STATUS_INITIALIZED)) {
7873 err = -EIO;
7874 goto done;
7875 }
7876
7877 if (mode == 1)
7878 priv->config |= CFG_CRC_CHECK;
7879 else if (mode == 0)
7880 priv->config &= ~CFG_CRC_CHECK;
7881 else {
7882 err = -EINVAL;
7883 goto done;
7884 }
7885 err = 0;
7886
7887 done:
7888 up(&priv->action_sem);
7889 return err;
7890}
7891
7892static int ipw2100_wx_get_crc_check(struct net_device *dev,
7893 struct iw_request_info *info,
7894 union iwreq_data *wrqu, char *extra)
7895{
7896 /*
7897 * This can be called at any time. No action lock required
7898 */
7899
7900 struct ipw2100_priv *priv = ieee80211_priv(dev);
7901
7902 if (priv->config & CFG_CRC_CHECK)
7903 snprintf(wrqu->name, IFNAMSIZ, "CRC checked (1)");
7904 else
7905 snprintf(wrqu->name, IFNAMSIZ, "CRC ignored (0)");
7906
7907 return 0;
7908}
7909#endif /* CONFIG_IPW2100_MONITOR */
7910
James Ketrenosee8e3652005-09-14 09:47:29 -05007911static iw_handler ipw2100_wx_handlers[] = {
7912 NULL, /* SIOCSIWCOMMIT */
7913 ipw2100_wx_get_name, /* SIOCGIWNAME */
7914 NULL, /* SIOCSIWNWID */
7915 NULL, /* SIOCGIWNWID */
7916 ipw2100_wx_set_freq, /* SIOCSIWFREQ */
7917 ipw2100_wx_get_freq, /* SIOCGIWFREQ */
7918 ipw2100_wx_set_mode, /* SIOCSIWMODE */
7919 ipw2100_wx_get_mode, /* SIOCGIWMODE */
7920 NULL, /* SIOCSIWSENS */
7921 NULL, /* SIOCGIWSENS */
7922 NULL, /* SIOCSIWRANGE */
7923 ipw2100_wx_get_range, /* SIOCGIWRANGE */
7924 NULL, /* SIOCSIWPRIV */
7925 NULL, /* SIOCGIWPRIV */
7926 NULL, /* SIOCSIWSTATS */
7927 NULL, /* SIOCGIWSTATS */
7928 NULL, /* SIOCSIWSPY */
7929 NULL, /* SIOCGIWSPY */
7930 NULL, /* SIOCGIWTHRSPY */
7931 NULL, /* SIOCWIWTHRSPY */
7932 ipw2100_wx_set_wap, /* SIOCSIWAP */
7933 ipw2100_wx_get_wap, /* SIOCGIWAP */
James Ketrenos82328352005-08-24 22:33:31 -05007934 ipw2100_wx_set_mlme, /* SIOCSIWMLME */
James Ketrenosee8e3652005-09-14 09:47:29 -05007935 NULL, /* SIOCGIWAPLIST -- deprecated */
7936 ipw2100_wx_set_scan, /* SIOCSIWSCAN */
7937 ipw2100_wx_get_scan, /* SIOCGIWSCAN */
7938 ipw2100_wx_set_essid, /* SIOCSIWESSID */
7939 ipw2100_wx_get_essid, /* SIOCGIWESSID */
7940 ipw2100_wx_set_nick, /* SIOCSIWNICKN */
7941 ipw2100_wx_get_nick, /* SIOCGIWNICKN */
7942 NULL, /* -- hole -- */
7943 NULL, /* -- hole -- */
7944 ipw2100_wx_set_rate, /* SIOCSIWRATE */
7945 ipw2100_wx_get_rate, /* SIOCGIWRATE */
7946 ipw2100_wx_set_rts, /* SIOCSIWRTS */
7947 ipw2100_wx_get_rts, /* SIOCGIWRTS */
7948 ipw2100_wx_set_frag, /* SIOCSIWFRAG */
7949 ipw2100_wx_get_frag, /* SIOCGIWFRAG */
7950 ipw2100_wx_set_txpow, /* SIOCSIWTXPOW */
7951 ipw2100_wx_get_txpow, /* SIOCGIWTXPOW */
7952 ipw2100_wx_set_retry, /* SIOCSIWRETRY */
7953 ipw2100_wx_get_retry, /* SIOCGIWRETRY */
7954 ipw2100_wx_set_encode, /* SIOCSIWENCODE */
7955 ipw2100_wx_get_encode, /* SIOCGIWENCODE */
7956 ipw2100_wx_set_power, /* SIOCSIWPOWER */
7957 ipw2100_wx_get_power, /* SIOCGIWPOWER */
James Ketrenos82328352005-08-24 22:33:31 -05007958 NULL, /* -- hole -- */
7959 NULL, /* -- hole -- */
7960 ipw2100_wx_set_genie, /* SIOCSIWGENIE */
7961 ipw2100_wx_get_genie, /* SIOCGIWGENIE */
7962 ipw2100_wx_set_auth, /* SIOCSIWAUTH */
7963 ipw2100_wx_get_auth, /* SIOCGIWAUTH */
7964 ipw2100_wx_set_encodeext, /* SIOCSIWENCODEEXT */
7965 ipw2100_wx_get_encodeext, /* SIOCGIWENCODEEXT */
7966 NULL, /* SIOCSIWPMKSA */
James Ketrenos2c86c272005-03-23 17:32:29 -06007967};
7968
7969#define IPW2100_PRIV_SET_MONITOR SIOCIWFIRSTPRIV
7970#define IPW2100_PRIV_RESET SIOCIWFIRSTPRIV+1
7971#define IPW2100_PRIV_SET_POWER SIOCIWFIRSTPRIV+2
7972#define IPW2100_PRIV_GET_POWER SIOCIWFIRSTPRIV+3
7973#define IPW2100_PRIV_SET_LONGPREAMBLE SIOCIWFIRSTPRIV+4
7974#define IPW2100_PRIV_GET_LONGPREAMBLE SIOCIWFIRSTPRIV+5
James Ketrenos82328352005-08-24 22:33:31 -05007975#define IPW2100_PRIV_SET_CRC_CHECK SIOCIWFIRSTPRIV+6
7976#define IPW2100_PRIV_GET_CRC_CHECK SIOCIWFIRSTPRIV+7
James Ketrenos2c86c272005-03-23 17:32:29 -06007977
7978static const struct iw_priv_args ipw2100_private_args[] = {
7979
7980#ifdef CONFIG_IPW2100_MONITOR
7981 {
James Ketrenosee8e3652005-09-14 09:47:29 -05007982 IPW2100_PRIV_SET_MONITOR,
7983 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 2, 0, "monitor"},
James Ketrenos2c86c272005-03-23 17:32:29 -06007984 {
James Ketrenosee8e3652005-09-14 09:47:29 -05007985 IPW2100_PRIV_RESET,
7986 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 0, 0, "reset"},
7987#endif /* CONFIG_IPW2100_MONITOR */
James Ketrenos2c86c272005-03-23 17:32:29 -06007988
7989 {
James Ketrenosee8e3652005-09-14 09:47:29 -05007990 IPW2100_PRIV_SET_POWER,
7991 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1, 0, "set_power"},
James Ketrenos2c86c272005-03-23 17:32:29 -06007992 {
James Ketrenosee8e3652005-09-14 09:47:29 -05007993 IPW2100_PRIV_GET_POWER,
7994 0, IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | MAX_POWER_STRING,
7995 "get_power"},
James Ketrenos2c86c272005-03-23 17:32:29 -06007996 {
James Ketrenosee8e3652005-09-14 09:47:29 -05007997 IPW2100_PRIV_SET_LONGPREAMBLE,
7998 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1, 0, "set_preamble"},
James Ketrenos2c86c272005-03-23 17:32:29 -06007999 {
James Ketrenosee8e3652005-09-14 09:47:29 -05008000 IPW2100_PRIV_GET_LONGPREAMBLE,
8001 0, IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | IFNAMSIZ, "get_preamble"},
James Ketrenos82328352005-08-24 22:33:31 -05008002#ifdef CONFIG_IPW2100_MONITOR
8003 {
8004 IPW2100_PRIV_SET_CRC_CHECK,
8005 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1, 0, "set_crc_check"},
8006 {
8007 IPW2100_PRIV_GET_CRC_CHECK,
8008 0, IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | IFNAMSIZ, "get_crc_check"},
8009#endif /* CONFIG_IPW2100_MONITOR */
James Ketrenos2c86c272005-03-23 17:32:29 -06008010};
8011
8012static iw_handler ipw2100_private_handler[] = {
8013#ifdef CONFIG_IPW2100_MONITOR
8014 ipw2100_wx_set_promisc,
8015 ipw2100_wx_reset,
James Ketrenosee8e3652005-09-14 09:47:29 -05008016#else /* CONFIG_IPW2100_MONITOR */
James Ketrenos2c86c272005-03-23 17:32:29 -06008017 NULL,
8018 NULL,
James Ketrenosee8e3652005-09-14 09:47:29 -05008019#endif /* CONFIG_IPW2100_MONITOR */
James Ketrenos2c86c272005-03-23 17:32:29 -06008020 ipw2100_wx_set_powermode,
8021 ipw2100_wx_get_powermode,
8022 ipw2100_wx_set_preamble,
8023 ipw2100_wx_get_preamble,
James Ketrenos82328352005-08-24 22:33:31 -05008024#ifdef CONFIG_IPW2100_MONITOR
8025 ipw2100_wx_set_crc_check,
8026 ipw2100_wx_get_crc_check,
8027#else /* CONFIG_IPW2100_MONITOR */
8028 NULL,
8029 NULL,
8030#endif /* CONFIG_IPW2100_MONITOR */
James Ketrenos2c86c272005-03-23 17:32:29 -06008031};
8032
James Ketrenos2c86c272005-03-23 17:32:29 -06008033/*
8034 * Get wireless statistics.
8035 * Called by /proc/net/wireless
8036 * Also called by SIOCGIWSTATS
8037 */
James Ketrenosee8e3652005-09-14 09:47:29 -05008038static struct iw_statistics *ipw2100_wx_wireless_stats(struct net_device *dev)
James Ketrenos2c86c272005-03-23 17:32:29 -06008039{
8040 enum {
8041 POOR = 30,
8042 FAIR = 60,
8043 GOOD = 80,
8044 VERY_GOOD = 90,
8045 EXCELLENT = 95,
8046 PERFECT = 100
8047 };
8048 int rssi_qual;
8049 int tx_qual;
8050 int beacon_qual;
8051
8052 struct ipw2100_priv *priv = ieee80211_priv(dev);
8053 struct iw_statistics *wstats;
8054 u32 rssi, quality, tx_retries, missed_beacons, tx_failures;
8055 u32 ord_len = sizeof(u32);
8056
8057 if (!priv)
James Ketrenosee8e3652005-09-14 09:47:29 -05008058 return (struct iw_statistics *)NULL;
James Ketrenos2c86c272005-03-23 17:32:29 -06008059
8060 wstats = &priv->wstats;
8061
8062 /* if hw is disabled, then ipw2100_get_ordinal() can't be called.
8063 * ipw2100_wx_wireless_stats seems to be called before fw is
8064 * initialized. STATUS_ASSOCIATED will only be set if the hw is up
8065 * and associated; if not associcated, the values are all meaningless
8066 * anyway, so set them all to NULL and INVALID */
8067 if (!(priv->status & STATUS_ASSOCIATED)) {
8068 wstats->miss.beacon = 0;
8069 wstats->discard.retries = 0;
8070 wstats->qual.qual = 0;
8071 wstats->qual.level = 0;
8072 wstats->qual.noise = 0;
8073 wstats->qual.updated = 7;
8074 wstats->qual.updated |= IW_QUAL_NOISE_INVALID |
James Ketrenosee8e3652005-09-14 09:47:29 -05008075 IW_QUAL_QUAL_INVALID | IW_QUAL_LEVEL_INVALID;
James Ketrenos2c86c272005-03-23 17:32:29 -06008076 return wstats;
8077 }
8078
8079 if (ipw2100_get_ordinal(priv, IPW_ORD_STAT_PERCENT_MISSED_BCNS,
8080 &missed_beacons, &ord_len))
8081 goto fail_get_ordinal;
8082
James Ketrenosee8e3652005-09-14 09:47:29 -05008083 /* If we don't have a connection the quality and level is 0 */
James Ketrenos2c86c272005-03-23 17:32:29 -06008084 if (!(priv->status & STATUS_ASSOCIATED)) {
8085 wstats->qual.qual = 0;
8086 wstats->qual.level = 0;
8087 } else {
8088 if (ipw2100_get_ordinal(priv, IPW_ORD_RSSI_AVG_CURR,
8089 &rssi, &ord_len))
8090 goto fail_get_ordinal;
8091 wstats->qual.level = rssi + IPW2100_RSSI_TO_DBM;
8092 if (rssi < 10)
8093 rssi_qual = rssi * POOR / 10;
8094 else if (rssi < 15)
8095 rssi_qual = (rssi - 10) * (FAIR - POOR) / 5 + POOR;
8096 else if (rssi < 20)
8097 rssi_qual = (rssi - 15) * (GOOD - FAIR) / 5 + FAIR;
8098 else if (rssi < 30)
8099 rssi_qual = (rssi - 20) * (VERY_GOOD - GOOD) /
James Ketrenosee8e3652005-09-14 09:47:29 -05008100 10 + GOOD;
James Ketrenos2c86c272005-03-23 17:32:29 -06008101 else
8102 rssi_qual = (rssi - 30) * (PERFECT - VERY_GOOD) /
James Ketrenosee8e3652005-09-14 09:47:29 -05008103 10 + VERY_GOOD;
James Ketrenos2c86c272005-03-23 17:32:29 -06008104
8105 if (ipw2100_get_ordinal(priv, IPW_ORD_STAT_PERCENT_RETRIES,
8106 &tx_retries, &ord_len))
8107 goto fail_get_ordinal;
8108
8109 if (tx_retries > 75)
8110 tx_qual = (90 - tx_retries) * POOR / 15;
8111 else if (tx_retries > 70)
8112 tx_qual = (75 - tx_retries) * (FAIR - POOR) / 5 + POOR;
8113 else if (tx_retries > 65)
8114 tx_qual = (70 - tx_retries) * (GOOD - FAIR) / 5 + FAIR;
8115 else if (tx_retries > 50)
8116 tx_qual = (65 - tx_retries) * (VERY_GOOD - GOOD) /
James Ketrenosee8e3652005-09-14 09:47:29 -05008117 15 + GOOD;
James Ketrenos2c86c272005-03-23 17:32:29 -06008118 else
8119 tx_qual = (50 - tx_retries) *
James Ketrenosee8e3652005-09-14 09:47:29 -05008120 (PERFECT - VERY_GOOD) / 50 + VERY_GOOD;
James Ketrenos2c86c272005-03-23 17:32:29 -06008121
8122 if (missed_beacons > 50)
8123 beacon_qual = (60 - missed_beacons) * POOR / 10;
8124 else if (missed_beacons > 40)
8125 beacon_qual = (50 - missed_beacons) * (FAIR - POOR) /
James Ketrenosee8e3652005-09-14 09:47:29 -05008126 10 + POOR;
James Ketrenos2c86c272005-03-23 17:32:29 -06008127 else if (missed_beacons > 32)
8128 beacon_qual = (40 - missed_beacons) * (GOOD - FAIR) /
James Ketrenosee8e3652005-09-14 09:47:29 -05008129 18 + FAIR;
James Ketrenos2c86c272005-03-23 17:32:29 -06008130 else if (missed_beacons > 20)
8131 beacon_qual = (32 - missed_beacons) *
James Ketrenosee8e3652005-09-14 09:47:29 -05008132 (VERY_GOOD - GOOD) / 20 + GOOD;
James Ketrenos2c86c272005-03-23 17:32:29 -06008133 else
8134 beacon_qual = (20 - missed_beacons) *
James Ketrenosee8e3652005-09-14 09:47:29 -05008135 (PERFECT - VERY_GOOD) / 20 + VERY_GOOD;
James Ketrenos2c86c272005-03-23 17:32:29 -06008136
8137 quality = min(beacon_qual, min(tx_qual, rssi_qual));
8138
Brice Goglin0f52bf92005-12-01 01:41:46 -08008139#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06008140 if (beacon_qual == quality)
8141 IPW_DEBUG_WX("Quality clamped by Missed Beacons\n");
8142 else if (tx_qual == quality)
8143 IPW_DEBUG_WX("Quality clamped by Tx Retries\n");
8144 else if (quality != 100)
8145 IPW_DEBUG_WX("Quality clamped by Signal Strength\n");
8146 else
8147 IPW_DEBUG_WX("Quality not clamped.\n");
8148#endif
8149
8150 wstats->qual.qual = quality;
8151 wstats->qual.level = rssi + IPW2100_RSSI_TO_DBM;
8152 }
8153
8154 wstats->qual.noise = 0;
8155 wstats->qual.updated = 7;
8156 wstats->qual.updated |= IW_QUAL_NOISE_INVALID;
8157
James Ketrenosee8e3652005-09-14 09:47:29 -05008158 /* FIXME: this is percent and not a # */
James Ketrenos2c86c272005-03-23 17:32:29 -06008159 wstats->miss.beacon = missed_beacons;
8160
8161 if (ipw2100_get_ordinal(priv, IPW_ORD_STAT_TX_FAILURES,
8162 &tx_failures, &ord_len))
8163 goto fail_get_ordinal;
8164 wstats->discard.retries = tx_failures;
8165
8166 return wstats;
8167
James Ketrenosee8e3652005-09-14 09:47:29 -05008168 fail_get_ordinal:
James Ketrenos2c86c272005-03-23 17:32:29 -06008169 IPW_DEBUG_WX("failed querying ordinals.\n");
8170
James Ketrenosee8e3652005-09-14 09:47:29 -05008171 return (struct iw_statistics *)NULL;
James Ketrenos2c86c272005-03-23 17:32:29 -06008172}
8173
James Ketrenoseaf8f532005-11-12 12:50:12 -06008174static struct iw_handler_def ipw2100_wx_handler_def = {
8175 .standard = ipw2100_wx_handlers,
8176 .num_standard = sizeof(ipw2100_wx_handlers) / sizeof(iw_handler),
8177 .num_private = sizeof(ipw2100_private_handler) / sizeof(iw_handler),
8178 .num_private_args = sizeof(ipw2100_private_args) /
8179 sizeof(struct iw_priv_args),
8180 .private = (iw_handler *) ipw2100_private_handler,
8181 .private_args = (struct iw_priv_args *)ipw2100_private_args,
8182 .get_wireless_stats = ipw2100_wx_wireless_stats,
8183};
8184
Jiri Bencc4aee8c2005-08-25 20:04:43 -04008185static void ipw2100_wx_event_work(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06008186{
8187 union iwreq_data wrqu;
8188 int len = ETH_ALEN;
8189
8190 if (priv->status & STATUS_STOPPING)
8191 return;
8192
8193 down(&priv->action_sem);
8194
8195 IPW_DEBUG_WX("enter\n");
8196
8197 up(&priv->action_sem);
8198
8199 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
8200
8201 /* Fetch BSSID from the hardware */
8202 if (!(priv->status & (STATUS_ASSOCIATING | STATUS_ASSOCIATED)) ||
8203 priv->status & STATUS_RF_KILL_MASK ||
8204 ipw2100_get_ordinal(priv, IPW_ORD_STAT_ASSN_AP_BSSID,
James Ketrenosee8e3652005-09-14 09:47:29 -05008205 &priv->bssid, &len)) {
James Ketrenos2c86c272005-03-23 17:32:29 -06008206 memset(wrqu.ap_addr.sa_data, 0, ETH_ALEN);
8207 } else {
8208 /* We now have the BSSID, so can finish setting to the full
8209 * associated state */
8210 memcpy(wrqu.ap_addr.sa_data, priv->bssid, ETH_ALEN);
James Ketrenos82328352005-08-24 22:33:31 -05008211 memcpy(priv->ieee->bssid, priv->bssid, ETH_ALEN);
James Ketrenos2c86c272005-03-23 17:32:29 -06008212 priv->status &= ~STATUS_ASSOCIATING;
8213 priv->status |= STATUS_ASSOCIATED;
8214 netif_carrier_on(priv->net_dev);
James Ketrenos82328352005-08-24 22:33:31 -05008215 netif_wake_queue(priv->net_dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06008216 }
8217
8218 if (!(priv->status & STATUS_ASSOCIATED)) {
8219 IPW_DEBUG_WX("Configuring ESSID\n");
8220 down(&priv->action_sem);
8221 /* This is a disassociation event, so kick the firmware to
8222 * look for another AP */
8223 if (priv->config & CFG_STATIC_ESSID)
James Ketrenosee8e3652005-09-14 09:47:29 -05008224 ipw2100_set_essid(priv, priv->essid, priv->essid_len,
8225 0);
James Ketrenos2c86c272005-03-23 17:32:29 -06008226 else
8227 ipw2100_set_essid(priv, NULL, 0, 0);
8228 up(&priv->action_sem);
8229 }
8230
8231 wireless_send_event(priv->net_dev, SIOCGIWAP, &wrqu, NULL);
8232}
8233
8234#define IPW2100_FW_MAJOR_VERSION 1
8235#define IPW2100_FW_MINOR_VERSION 3
8236
8237#define IPW2100_FW_MINOR(x) ((x & 0xff) >> 8)
8238#define IPW2100_FW_MAJOR(x) (x & 0xff)
8239
8240#define IPW2100_FW_VERSION ((IPW2100_FW_MINOR_VERSION << 8) | \
8241 IPW2100_FW_MAJOR_VERSION)
8242
8243#define IPW2100_FW_PREFIX "ipw2100-" __stringify(IPW2100_FW_MAJOR_VERSION) \
8244"." __stringify(IPW2100_FW_MINOR_VERSION)
8245
8246#define IPW2100_FW_NAME(x) IPW2100_FW_PREFIX "" x ".fw"
8247
James Ketrenos2c86c272005-03-23 17:32:29 -06008248/*
8249
8250BINARY FIRMWARE HEADER FORMAT
8251
8252offset length desc
82530 2 version
82542 2 mode == 0:BSS,1:IBSS,2:MONITOR
82554 4 fw_len
82568 4 uc_len
8257C fw_len firmware data
825812 + fw_len uc_len microcode data
8259
8260*/
8261
8262struct ipw2100_fw_header {
8263 short version;
8264 short mode;
8265 unsigned int fw_size;
8266 unsigned int uc_size;
8267} __attribute__ ((packed));
8268
James Ketrenos2c86c272005-03-23 17:32:29 -06008269static int ipw2100_mod_firmware_load(struct ipw2100_fw *fw)
8270{
8271 struct ipw2100_fw_header *h =
James Ketrenosee8e3652005-09-14 09:47:29 -05008272 (struct ipw2100_fw_header *)fw->fw_entry->data;
James Ketrenos2c86c272005-03-23 17:32:29 -06008273
8274 if (IPW2100_FW_MAJOR(h->version) != IPW2100_FW_MAJOR_VERSION) {
Jiri Benc797b4f72005-08-25 20:03:27 -04008275 printk(KERN_WARNING DRV_NAME ": Firmware image not compatible "
James Ketrenos2c86c272005-03-23 17:32:29 -06008276 "(detected version id of %u). "
8277 "See Documentation/networking/README.ipw2100\n",
8278 h->version);
8279 return 1;
8280 }
8281
8282 fw->version = h->version;
8283 fw->fw.data = fw->fw_entry->data + sizeof(struct ipw2100_fw_header);
8284 fw->fw.size = h->fw_size;
8285 fw->uc.data = fw->fw.data + h->fw_size;
8286 fw->uc.size = h->uc_size;
8287
8288 return 0;
8289}
8290
Jiri Bencc4aee8c2005-08-25 20:04:43 -04008291static int ipw2100_get_firmware(struct ipw2100_priv *priv,
8292 struct ipw2100_fw *fw)
James Ketrenos2c86c272005-03-23 17:32:29 -06008293{
8294 char *fw_name;
8295 int rc;
8296
8297 IPW_DEBUG_INFO("%s: Using hotplug firmware load.\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05008298 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06008299
8300 switch (priv->ieee->iw_mode) {
8301 case IW_MODE_ADHOC:
8302 fw_name = IPW2100_FW_NAME("-i");
8303 break;
8304#ifdef CONFIG_IPW2100_MONITOR
8305 case IW_MODE_MONITOR:
8306 fw_name = IPW2100_FW_NAME("-p");
8307 break;
8308#endif
8309 case IW_MODE_INFRA:
8310 default:
8311 fw_name = IPW2100_FW_NAME("");
8312 break;
8313 }
8314
8315 rc = request_firmware(&fw->fw_entry, fw_name, &priv->pci_dev->dev);
8316
8317 if (rc < 0) {
Jiri Benc797b4f72005-08-25 20:03:27 -04008318 printk(KERN_ERR DRV_NAME ": "
James Ketrenos2c86c272005-03-23 17:32:29 -06008319 "%s: Firmware '%s' not available or load failed.\n",
8320 priv->net_dev->name, fw_name);
8321 return rc;
8322 }
Jiri Bencaaa4d302005-06-07 14:58:41 +02008323 IPW_DEBUG_INFO("firmware data %p size %zd\n", fw->fw_entry->data,
James Ketrenosee8e3652005-09-14 09:47:29 -05008324 fw->fw_entry->size);
James Ketrenos2c86c272005-03-23 17:32:29 -06008325
8326 ipw2100_mod_firmware_load(fw);
8327
8328 return 0;
8329}
8330
Jiri Bencc4aee8c2005-08-25 20:04:43 -04008331static void ipw2100_release_firmware(struct ipw2100_priv *priv,
8332 struct ipw2100_fw *fw)
James Ketrenos2c86c272005-03-23 17:32:29 -06008333{
8334 fw->version = 0;
8335 if (fw->fw_entry)
8336 release_firmware(fw->fw_entry);
8337 fw->fw_entry = NULL;
8338}
8339
Jiri Bencc4aee8c2005-08-25 20:04:43 -04008340static int ipw2100_get_fwversion(struct ipw2100_priv *priv, char *buf,
8341 size_t max)
James Ketrenos2c86c272005-03-23 17:32:29 -06008342{
8343 char ver[MAX_FW_VERSION_LEN];
8344 u32 len = MAX_FW_VERSION_LEN;
8345 u32 tmp;
8346 int i;
8347 /* firmware version is an ascii string (max len of 14) */
James Ketrenosee8e3652005-09-14 09:47:29 -05008348 if (ipw2100_get_ordinal(priv, IPW_ORD_STAT_FW_VER_NUM, ver, &len))
James Ketrenos2c86c272005-03-23 17:32:29 -06008349 return -EIO;
8350 tmp = max;
8351 if (len >= max)
8352 len = max - 1;
8353 for (i = 0; i < len; i++)
8354 buf[i] = ver[i];
8355 buf[i] = '\0';
8356 return tmp;
8357}
8358
Jiri Bencc4aee8c2005-08-25 20:04:43 -04008359static int ipw2100_get_ucodeversion(struct ipw2100_priv *priv, char *buf,
8360 size_t max)
James Ketrenos2c86c272005-03-23 17:32:29 -06008361{
8362 u32 ver;
8363 u32 len = sizeof(ver);
8364 /* microcode version is a 32 bit integer */
James Ketrenosee8e3652005-09-14 09:47:29 -05008365 if (ipw2100_get_ordinal(priv, IPW_ORD_UCODE_VERSION, &ver, &len))
James Ketrenos2c86c272005-03-23 17:32:29 -06008366 return -EIO;
8367 return snprintf(buf, max, "%08X", ver);
8368}
8369
8370/*
8371 * On exit, the firmware will have been freed from the fw list
8372 */
James Ketrenosee8e3652005-09-14 09:47:29 -05008373static int ipw2100_fw_download(struct ipw2100_priv *priv, struct ipw2100_fw *fw)
James Ketrenos2c86c272005-03-23 17:32:29 -06008374{
8375 /* firmware is constructed of N contiguous entries, each entry is
8376 * structured as:
8377 *
8378 * offset sie desc
8379 * 0 4 address to write to
8380 * 4 2 length of data run
James Ketrenosee8e3652005-09-14 09:47:29 -05008381 * 6 length data
James Ketrenos2c86c272005-03-23 17:32:29 -06008382 */
8383 unsigned int addr;
8384 unsigned short len;
8385
8386 const unsigned char *firmware_data = fw->fw.data;
8387 unsigned int firmware_data_left = fw->fw.size;
8388
8389 while (firmware_data_left > 0) {
James Ketrenosee8e3652005-09-14 09:47:29 -05008390 addr = *(u32 *) (firmware_data);
8391 firmware_data += 4;
James Ketrenos2c86c272005-03-23 17:32:29 -06008392 firmware_data_left -= 4;
8393
James Ketrenosee8e3652005-09-14 09:47:29 -05008394 len = *(u16 *) (firmware_data);
8395 firmware_data += 2;
James Ketrenos2c86c272005-03-23 17:32:29 -06008396 firmware_data_left -= 2;
8397
8398 if (len > 32) {
Jiri Benc797b4f72005-08-25 20:03:27 -04008399 printk(KERN_ERR DRV_NAME ": "
James Ketrenos2c86c272005-03-23 17:32:29 -06008400 "Invalid firmware run-length of %d bytes\n",
8401 len);
8402 return -EINVAL;
8403 }
8404
8405 write_nic_memory(priv->net_dev, addr, len, firmware_data);
James Ketrenosee8e3652005-09-14 09:47:29 -05008406 firmware_data += len;
James Ketrenos2c86c272005-03-23 17:32:29 -06008407 firmware_data_left -= len;
8408 }
8409
8410 return 0;
8411}
8412
8413struct symbol_alive_response {
8414 u8 cmd_id;
8415 u8 seq_num;
8416 u8 ucode_rev;
8417 u8 eeprom_valid;
8418 u16 valid_flags;
8419 u8 IEEE_addr[6];
8420 u16 flags;
8421 u16 pcb_rev;
8422 u16 clock_settle_time; // 1us LSB
8423 u16 powerup_settle_time; // 1us LSB
8424 u16 hop_settle_time; // 1us LSB
8425 u8 date[3]; // month, day, year
8426 u8 time[2]; // hours, minutes
8427 u8 ucode_valid;
8428};
8429
Jiri Bencc4aee8c2005-08-25 20:04:43 -04008430static int ipw2100_ucode_download(struct ipw2100_priv *priv,
8431 struct ipw2100_fw *fw)
James Ketrenos2c86c272005-03-23 17:32:29 -06008432{
8433 struct net_device *dev = priv->net_dev;
8434 const unsigned char *microcode_data = fw->uc.data;
8435 unsigned int microcode_data_left = fw->uc.size;
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008436 void __iomem *reg = (void __iomem *)dev->base_addr;
James Ketrenos2c86c272005-03-23 17:32:29 -06008437
8438 struct symbol_alive_response response;
8439 int i, j;
8440 u8 data;
8441
8442 /* Symbol control */
8443 write_nic_word(dev, IPW2100_CONTROL_REG, 0x703);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008444 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008445 write_nic_word(dev, IPW2100_CONTROL_REG, 0x707);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008446 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008447
8448 /* HW config */
8449 write_nic_byte(dev, 0x210014, 0x72); /* fifo width =16 */
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008450 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008451 write_nic_byte(dev, 0x210014, 0x72); /* fifo width =16 */
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008452 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008453
8454 /* EN_CS_ACCESS bit to reset control store pointer */
8455 write_nic_byte(dev, 0x210000, 0x40);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008456 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008457 write_nic_byte(dev, 0x210000, 0x0);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008458 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008459 write_nic_byte(dev, 0x210000, 0x40);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008460 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008461
8462 /* copy microcode from buffer into Symbol */
8463
8464 while (microcode_data_left > 0) {
8465 write_nic_byte(dev, 0x210010, *microcode_data++);
8466 write_nic_byte(dev, 0x210010, *microcode_data++);
8467 microcode_data_left -= 2;
8468 }
8469
8470 /* EN_CS_ACCESS bit to reset the control store pointer */
8471 write_nic_byte(dev, 0x210000, 0x0);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008472 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008473
8474 /* Enable System (Reg 0)
8475 * first enable causes garbage in RX FIFO */
8476 write_nic_byte(dev, 0x210000, 0x0);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008477 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008478 write_nic_byte(dev, 0x210000, 0x80);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008479 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008480
8481 /* Reset External Baseband Reg */
8482 write_nic_word(dev, IPW2100_CONTROL_REG, 0x703);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008483 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008484 write_nic_word(dev, IPW2100_CONTROL_REG, 0x707);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008485 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008486
8487 /* HW Config (Reg 5) */
8488 write_nic_byte(dev, 0x210014, 0x72); // fifo width =16
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008489 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008490 write_nic_byte(dev, 0x210014, 0x72); // fifo width =16
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008491 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008492
8493 /* Enable System (Reg 0)
8494 * second enable should be OK */
8495 write_nic_byte(dev, 0x210000, 0x00); // clear enable system
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008496 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008497 write_nic_byte(dev, 0x210000, 0x80); // set enable system
8498
8499 /* check Symbol is enabled - upped this from 5 as it wasn't always
8500 * catching the update */
8501 for (i = 0; i < 10; i++) {
8502 udelay(10);
8503
8504 /* check Dino is enabled bit */
8505 read_nic_byte(dev, 0x210000, &data);
8506 if (data & 0x1)
8507 break;
8508 }
8509
8510 if (i == 10) {
Jiri Benc797b4f72005-08-25 20:03:27 -04008511 printk(KERN_ERR DRV_NAME ": %s: Error initializing Symbol\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06008512 dev->name);
8513 return -EIO;
8514 }
8515
8516 /* Get Symbol alive response */
8517 for (i = 0; i < 30; i++) {
8518 /* Read alive response structure */
8519 for (j = 0;
James Ketrenosee8e3652005-09-14 09:47:29 -05008520 j < (sizeof(struct symbol_alive_response) >> 1); j++)
8521 read_nic_word(dev, 0x210004, ((u16 *) & response) + j);
James Ketrenos2c86c272005-03-23 17:32:29 -06008522
James Ketrenosee8e3652005-09-14 09:47:29 -05008523 if ((response.cmd_id == 1) && (response.ucode_valid == 0x1))
James Ketrenos2c86c272005-03-23 17:32:29 -06008524 break;
8525 udelay(10);
8526 }
8527
8528 if (i == 30) {
James Ketrenosee8e3652005-09-14 09:47:29 -05008529 printk(KERN_ERR DRV_NAME
8530 ": %s: No response from Symbol - hw not alive\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06008531 dev->name);
James Ketrenosee8e3652005-09-14 09:47:29 -05008532 printk_buf(IPW_DL_ERROR, (u8 *) & response, sizeof(response));
James Ketrenos2c86c272005-03-23 17:32:29 -06008533 return -EIO;
8534 }
8535
8536 return 0;
8537}