blob: b3c07b93afce74f27c13ac0fb0b98a53f5ff049b [file] [log] [blame]
James Ketrenos2c86c272005-03-23 17:32:29 -06001/******************************************************************************
2
Zhu Yi171e7b22006-02-15 07:17:56 +08003 Copyright(c) 2003 - 2006 Intel Corporation. All rights reserved.
James Ketrenos2c86c272005-03-23 17:32:29 -06004
5 This program is free software; you can redistribute it and/or modify it
6 under the terms of version 2 of the GNU General Public License as
7 published by the Free Software Foundation.
8
9 This program is distributed in the hope that it will be useful, but WITHOUT
10 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 more details.
13
14 You should have received a copy of the GNU General Public License along with
15 this program; if not, write to the Free Software Foundation, Inc., 59
16 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
18 The full GNU General Public License is included in this distribution in the
19 file called LICENSE.
20
21 Contact Information:
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
Jouni Malinen85d32e72007-03-24 17:15:30 -070031 <j@w1.fi>
32 Copyright (c) 2002-2003, Jouni Malinen <j@w1.fi>
James Ketrenos2c86c272005-03-23 17:32:29 -060033
34 Portions of ipw2100_mod_firmware_load, ipw2100_do_mod_firmware_load, and
35 ipw2100_fw_load are loosely based on drivers/sound/sound_firmware.c
36 available in the 2.4.25 kernel sources, and are copyright (c) Alan Cox
37
38******************************************************************************/
39/*
40
41 Initial driver on which this is based was developed by Janusz Gorycki,
42 Maciej Urbaniak, and Maciej Sosnowski.
43
44 Promiscuous mode support added by Jacek Wysoczynski and Maciej Urbaniak.
45
46Theory of Operation
47
48Tx - Commands and Data
49
50Firmware and host share a circular queue of Transmit Buffer Descriptors (TBDs)
51Each TBD contains a pointer to the physical (dma_addr_t) address of data being
52sent to the firmware as well as the length of the data.
53
54The host writes to the TBD queue at the WRITE index. The WRITE index points
55to the _next_ packet to be written and is advanced when after the TBD has been
56filled.
57
58The firmware pulls from the TBD queue at the READ index. The READ index points
59to the currently being read entry, and is advanced once the firmware is
60done with a packet.
61
62When data is sent to the firmware, the first TBD is used to indicate to the
63firmware if a Command or Data is being sent. If it is Command, all of the
64command information is contained within the physical address referred to by the
65TBD. If it is Data, the first TBD indicates the type of data packet, number
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>
James Ketrenos2c86c272005-03-23 17:32:29 -0600137#include <linux/errno.h>
138#include <linux/if_arp.h>
139#include <linux/in6.h>
140#include <linux/in.h>
141#include <linux/ip.h>
142#include <linux/kernel.h>
143#include <linux/kmod.h>
144#include <linux/module.h>
145#include <linux/netdevice.h>
146#include <linux/ethtool.h>
147#include <linux/pci.h>
Tobias Klauser05743d12005-06-20 14:28:40 -0700148#include <linux/dma-mapping.h>
James Ketrenos2c86c272005-03-23 17:32:29 -0600149#include <linux/proc_fs.h>
150#include <linux/skbuff.h>
151#include <asm/uaccess.h>
152#include <asm/io.h>
James Ketrenos2c86c272005-03-23 17:32:29 -0600153#include <linux/fs.h>
154#include <linux/mm.h>
155#include <linux/slab.h>
156#include <linux/unistd.h>
157#include <linux/stringify.h>
158#include <linux/tcp.h>
159#include <linux/types.h>
160#include <linux/version.h>
161#include <linux/time.h>
162#include <linux/firmware.h>
163#include <linux/acpi.h>
164#include <linux/ctype.h>
Arjan van de Ven5c875792006-09-30 23:27:17 -0700165#include <linux/latency.h>
James Ketrenos2c86c272005-03-23 17:32:29 -0600166
167#include "ipw2100.h"
168
Zhu Yicc8279f2006-02-21 18:46:15 +0800169#define IPW2100_VERSION "git-1.2.2"
James Ketrenos2c86c272005-03-23 17:32:29 -0600170
171#define DRV_NAME "ipw2100"
172#define DRV_VERSION IPW2100_VERSION
173#define DRV_DESCRIPTION "Intel(R) PRO/Wireless 2100 Network Driver"
Zhu Yi171e7b22006-02-15 07:17:56 +0800174#define DRV_COPYRIGHT "Copyright(c) 2003-2006 Intel Corporation"
James Ketrenos2c86c272005-03-23 17:32:29 -0600175
176/* Debugging stuff */
Brice Goglin0f52bf92005-12-01 01:41:46 -0800177#ifdef CONFIG_IPW2100_DEBUG
Robert P. J. Dayae800312007-01-31 02:39:40 -0500178#define IPW2100_RX_DEBUG /* Reception debugging */
James Ketrenos2c86c272005-03-23 17:32:29 -0600179#endif
180
181MODULE_DESCRIPTION(DRV_DESCRIPTION);
182MODULE_VERSION(DRV_VERSION);
183MODULE_AUTHOR(DRV_COPYRIGHT);
184MODULE_LICENSE("GPL");
185
186static int debug = 0;
187static int mode = 0;
188static int channel = 0;
189static int associate = 1;
190static int disable = 0;
191#ifdef CONFIG_PM
192static struct ipw2100_fw ipw2100_firmware;
193#endif
194
195#include <linux/moduleparam.h>
196module_param(debug, int, 0444);
197module_param(mode, int, 0444);
198module_param(channel, int, 0444);
199module_param(associate, int, 0444);
200module_param(disable, int, 0444);
201
202MODULE_PARM_DESC(debug, "debug level");
203MODULE_PARM_DESC(mode, "network mode (0=BSS,1=IBSS,2=Monitor)");
204MODULE_PARM_DESC(channel, "channel");
205MODULE_PARM_DESC(associate, "auto associate when scanning (default on)");
206MODULE_PARM_DESC(disable, "manually disable the radio (default 0 [radio on])");
207
Jiri Bencc4aee8c2005-08-25 20:04:43 -0400208static u32 ipw2100_debug_level = IPW_DL_NONE;
209
Brice Goglin0f52bf92005-12-01 01:41:46 -0800210#ifdef CONFIG_IPW2100_DEBUG
Jiri Bencc4aee8c2005-08-25 20:04:43 -0400211#define IPW_DEBUG(level, message...) \
212do { \
213 if (ipw2100_debug_level & (level)) { \
214 printk(KERN_DEBUG "ipw2100: %c %s ", \
215 in_interrupt() ? 'I' : 'U', __FUNCTION__); \
216 printk(message); \
217 } \
218} while (0)
219#else
220#define IPW_DEBUG(level, message...) do {} while (0)
Brice Goglin0f52bf92005-12-01 01:41:46 -0800221#endif /* CONFIG_IPW2100_DEBUG */
James Ketrenos2c86c272005-03-23 17:32:29 -0600222
Brice Goglin0f52bf92005-12-01 01:41:46 -0800223#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -0600224static const char *command_types[] = {
225 "undefined",
James Ketrenosee8e3652005-09-14 09:47:29 -0500226 "unused", /* HOST_ATTENTION */
James Ketrenos2c86c272005-03-23 17:32:29 -0600227 "HOST_COMPLETE",
James Ketrenosee8e3652005-09-14 09:47:29 -0500228 "unused", /* SLEEP */
229 "unused", /* HOST_POWER_DOWN */
James Ketrenos2c86c272005-03-23 17:32:29 -0600230 "unused",
231 "SYSTEM_CONFIG",
James Ketrenosee8e3652005-09-14 09:47:29 -0500232 "unused", /* SET_IMR */
James Ketrenos2c86c272005-03-23 17:32:29 -0600233 "SSID",
234 "MANDATORY_BSSID",
235 "AUTHENTICATION_TYPE",
236 "ADAPTER_ADDRESS",
237 "PORT_TYPE",
238 "INTERNATIONAL_MODE",
239 "CHANNEL",
240 "RTS_THRESHOLD",
241 "FRAG_THRESHOLD",
242 "POWER_MODE",
243 "TX_RATES",
244 "BASIC_TX_RATES",
245 "WEP_KEY_INFO",
246 "unused",
247 "unused",
248 "unused",
249 "unused",
250 "WEP_KEY_INDEX",
251 "WEP_FLAGS",
252 "ADD_MULTICAST",
253 "CLEAR_ALL_MULTICAST",
254 "BEACON_INTERVAL",
255 "ATIM_WINDOW",
256 "CLEAR_STATISTICS",
257 "undefined",
258 "undefined",
259 "undefined",
260 "undefined",
261 "TX_POWER_INDEX",
262 "undefined",
263 "undefined",
264 "undefined",
265 "undefined",
266 "undefined",
267 "undefined",
268 "BROADCAST_SCAN",
269 "CARD_DISABLE",
270 "PREFERRED_BSSID",
271 "SET_SCAN_OPTIONS",
272 "SCAN_DWELL_TIME",
273 "SWEEP_TABLE",
274 "AP_OR_STATION_TABLE",
275 "GROUP_ORDINALS",
276 "SHORT_RETRY_LIMIT",
277 "LONG_RETRY_LIMIT",
James Ketrenosee8e3652005-09-14 09:47:29 -0500278 "unused", /* SAVE_CALIBRATION */
279 "unused", /* RESTORE_CALIBRATION */
James Ketrenos2c86c272005-03-23 17:32:29 -0600280 "undefined",
281 "undefined",
282 "undefined",
283 "HOST_PRE_POWER_DOWN",
James Ketrenosee8e3652005-09-14 09:47:29 -0500284 "unused", /* HOST_INTERRUPT_COALESCING */
James Ketrenos2c86c272005-03-23 17:32:29 -0600285 "undefined",
286 "CARD_DISABLE_PHY_OFF",
James Ketrenosee8e3652005-09-14 09:47:29 -0500287 "MSDU_TX_RATES" "undefined",
James Ketrenos2c86c272005-03-23 17:32:29 -0600288 "undefined",
289 "SET_STATION_STAT_BITS",
290 "CLEAR_STATIONS_STAT_BITS",
291 "LEAP_ROGUE_MODE",
292 "SET_SECURITY_INFORMATION",
293 "DISASSOCIATION_BSSID",
294 "SET_WPA_ASS_IE"
295};
296#endif
297
James Ketrenos2c86c272005-03-23 17:32:29 -0600298/* Pre-decl until we get the code solid and then we can clean it up */
Jiri Benc19f7f742005-08-25 20:02:10 -0400299static void ipw2100_tx_send_commands(struct ipw2100_priv *priv);
300static void ipw2100_tx_send_data(struct ipw2100_priv *priv);
James Ketrenos2c86c272005-03-23 17:32:29 -0600301static int ipw2100_adapter_setup(struct ipw2100_priv *priv);
302
303static void ipw2100_queues_initialize(struct ipw2100_priv *priv);
304static void ipw2100_queues_free(struct ipw2100_priv *priv);
305static int ipw2100_queues_allocate(struct ipw2100_priv *priv);
306
Jiri Bencc4aee8c2005-08-25 20:04:43 -0400307static int ipw2100_fw_download(struct ipw2100_priv *priv,
308 struct ipw2100_fw *fw);
309static int ipw2100_get_firmware(struct ipw2100_priv *priv,
310 struct ipw2100_fw *fw);
311static int ipw2100_get_fwversion(struct ipw2100_priv *priv, char *buf,
312 size_t max);
313static int ipw2100_get_ucodeversion(struct ipw2100_priv *priv, char *buf,
314 size_t max);
315static void ipw2100_release_firmware(struct ipw2100_priv *priv,
316 struct ipw2100_fw *fw);
317static int ipw2100_ucode_download(struct ipw2100_priv *priv,
318 struct ipw2100_fw *fw);
David Howellsc4028952006-11-22 14:57:56 +0000319static void ipw2100_wx_event_work(struct work_struct *work);
James Ketrenosee8e3652005-09-14 09:47:29 -0500320static struct iw_statistics *ipw2100_wx_wireless_stats(struct net_device *dev);
Jiri Bencc4aee8c2005-08-25 20:04:43 -0400321static struct iw_handler_def ipw2100_wx_handler_def;
322
James Ketrenosee8e3652005-09-14 09:47:29 -0500323static inline void read_register(struct net_device *dev, u32 reg, u32 * val)
James Ketrenos2c86c272005-03-23 17:32:29 -0600324{
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +0100325 *val = readl((void __iomem *)(dev->base_addr + reg));
James Ketrenos2c86c272005-03-23 17:32:29 -0600326 IPW_DEBUG_IO("r: 0x%08X => 0x%08X\n", reg, *val);
327}
328
329static inline void write_register(struct net_device *dev, u32 reg, u32 val)
330{
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +0100331 writel(val, (void __iomem *)(dev->base_addr + reg));
James Ketrenos2c86c272005-03-23 17:32:29 -0600332 IPW_DEBUG_IO("w: 0x%08X <= 0x%08X\n", reg, val);
333}
334
James Ketrenosee8e3652005-09-14 09:47:29 -0500335static inline void read_register_word(struct net_device *dev, u32 reg,
336 u16 * val)
James Ketrenos2c86c272005-03-23 17:32:29 -0600337{
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +0100338 *val = readw((void __iomem *)(dev->base_addr + reg));
James Ketrenos2c86c272005-03-23 17:32:29 -0600339 IPW_DEBUG_IO("r: 0x%08X => %04X\n", reg, *val);
340}
341
James Ketrenosee8e3652005-09-14 09:47:29 -0500342static inline void read_register_byte(struct net_device *dev, u32 reg, u8 * val)
James Ketrenos2c86c272005-03-23 17:32:29 -0600343{
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +0100344 *val = readb((void __iomem *)(dev->base_addr + reg));
James Ketrenos2c86c272005-03-23 17:32:29 -0600345 IPW_DEBUG_IO("r: 0x%08X => %02X\n", reg, *val);
346}
347
348static inline void write_register_word(struct net_device *dev, u32 reg, u16 val)
349{
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +0100350 writew(val, (void __iomem *)(dev->base_addr + reg));
James Ketrenos2c86c272005-03-23 17:32:29 -0600351 IPW_DEBUG_IO("w: 0x%08X <= %04X\n", reg, val);
352}
353
James Ketrenos2c86c272005-03-23 17:32:29 -0600354static inline void write_register_byte(struct net_device *dev, u32 reg, u8 val)
355{
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +0100356 writeb(val, (void __iomem *)(dev->base_addr + reg));
James Ketrenos2c86c272005-03-23 17:32:29 -0600357 IPW_DEBUG_IO("w: 0x%08X =< %02X\n", reg, val);
358}
359
James Ketrenosee8e3652005-09-14 09:47:29 -0500360static inline void read_nic_dword(struct net_device *dev, u32 addr, u32 * val)
James Ketrenos2c86c272005-03-23 17:32:29 -0600361{
362 write_register(dev, IPW_REG_INDIRECT_ACCESS_ADDRESS,
363 addr & IPW_REG_INDIRECT_ADDR_MASK);
364 read_register(dev, IPW_REG_INDIRECT_ACCESS_DATA, val);
365}
366
367static inline void write_nic_dword(struct net_device *dev, u32 addr, u32 val)
368{
369 write_register(dev, IPW_REG_INDIRECT_ACCESS_ADDRESS,
370 addr & IPW_REG_INDIRECT_ADDR_MASK);
371 write_register(dev, IPW_REG_INDIRECT_ACCESS_DATA, val);
372}
373
James Ketrenosee8e3652005-09-14 09:47:29 -0500374static inline void read_nic_word(struct net_device *dev, u32 addr, u16 * val)
James Ketrenos2c86c272005-03-23 17:32:29 -0600375{
376 write_register(dev, IPW_REG_INDIRECT_ACCESS_ADDRESS,
377 addr & IPW_REG_INDIRECT_ADDR_MASK);
378 read_register_word(dev, IPW_REG_INDIRECT_ACCESS_DATA, val);
379}
380
381static inline void write_nic_word(struct net_device *dev, u32 addr, u16 val)
382{
383 write_register(dev, IPW_REG_INDIRECT_ACCESS_ADDRESS,
384 addr & IPW_REG_INDIRECT_ADDR_MASK);
385 write_register_word(dev, IPW_REG_INDIRECT_ACCESS_DATA, val);
386}
387
James Ketrenosee8e3652005-09-14 09:47:29 -0500388static inline void read_nic_byte(struct net_device *dev, u32 addr, u8 * val)
James Ketrenos2c86c272005-03-23 17:32:29 -0600389{
390 write_register(dev, IPW_REG_INDIRECT_ACCESS_ADDRESS,
391 addr & IPW_REG_INDIRECT_ADDR_MASK);
392 read_register_byte(dev, IPW_REG_INDIRECT_ACCESS_DATA, val);
393}
394
395static inline void write_nic_byte(struct net_device *dev, u32 addr, u8 val)
396{
397 write_register(dev, IPW_REG_INDIRECT_ACCESS_ADDRESS,
398 addr & IPW_REG_INDIRECT_ADDR_MASK);
399 write_register_byte(dev, IPW_REG_INDIRECT_ACCESS_DATA, val);
400}
401
402static inline void write_nic_auto_inc_address(struct net_device *dev, u32 addr)
403{
404 write_register(dev, IPW_REG_AUTOINCREMENT_ADDRESS,
405 addr & IPW_REG_INDIRECT_ADDR_MASK);
406}
407
408static inline void write_nic_dword_auto_inc(struct net_device *dev, u32 val)
409{
410 write_register(dev, IPW_REG_AUTOINCREMENT_DATA, val);
411}
412
Arjan van de Ven858119e2006-01-14 13:20:43 -0800413static void write_nic_memory(struct net_device *dev, u32 addr, u32 len,
James Ketrenosee8e3652005-09-14 09:47:29 -0500414 const u8 * buf)
James Ketrenos2c86c272005-03-23 17:32:29 -0600415{
416 u32 aligned_addr;
417 u32 aligned_len;
418 u32 dif_len;
419 u32 i;
420
421 /* read first nibble byte by byte */
422 aligned_addr = addr & (~0x3);
423 dif_len = addr - aligned_addr;
424 if (dif_len) {
425 /* Start reading at aligned_addr + dif_len */
426 write_register(dev, IPW_REG_INDIRECT_ACCESS_ADDRESS,
427 aligned_addr);
428 for (i = dif_len; i < 4; i++, buf++)
James Ketrenosee8e3652005-09-14 09:47:29 -0500429 write_register_byte(dev,
430 IPW_REG_INDIRECT_ACCESS_DATA + i,
431 *buf);
James Ketrenos2c86c272005-03-23 17:32:29 -0600432
433 len -= dif_len;
434 aligned_addr += 4;
435 }
436
437 /* read DWs through autoincrement registers */
James Ketrenosee8e3652005-09-14 09:47:29 -0500438 write_register(dev, IPW_REG_AUTOINCREMENT_ADDRESS, aligned_addr);
James Ketrenos2c86c272005-03-23 17:32:29 -0600439 aligned_len = len & (~0x3);
440 for (i = 0; i < aligned_len; i += 4, buf += 4, aligned_addr += 4)
James Ketrenosee8e3652005-09-14 09:47:29 -0500441 write_register(dev, IPW_REG_AUTOINCREMENT_DATA, *(u32 *) buf);
James Ketrenos2c86c272005-03-23 17:32:29 -0600442
443 /* copy the last nibble */
444 dif_len = len - aligned_len;
445 write_register(dev, IPW_REG_INDIRECT_ACCESS_ADDRESS, aligned_addr);
446 for (i = 0; i < dif_len; i++, buf++)
James Ketrenosee8e3652005-09-14 09:47:29 -0500447 write_register_byte(dev, IPW_REG_INDIRECT_ACCESS_DATA + i,
448 *buf);
James Ketrenos2c86c272005-03-23 17:32:29 -0600449}
450
Arjan van de Ven858119e2006-01-14 13:20:43 -0800451static void read_nic_memory(struct net_device *dev, u32 addr, u32 len,
James Ketrenosee8e3652005-09-14 09:47:29 -0500452 u8 * buf)
James Ketrenos2c86c272005-03-23 17:32:29 -0600453{
454 u32 aligned_addr;
455 u32 aligned_len;
456 u32 dif_len;
457 u32 i;
458
459 /* read first nibble byte by byte */
460 aligned_addr = addr & (~0x3);
461 dif_len = addr - aligned_addr;
462 if (dif_len) {
463 /* Start reading at aligned_addr + dif_len */
464 write_register(dev, IPW_REG_INDIRECT_ACCESS_ADDRESS,
465 aligned_addr);
466 for (i = dif_len; i < 4; i++, buf++)
James Ketrenosee8e3652005-09-14 09:47:29 -0500467 read_register_byte(dev,
468 IPW_REG_INDIRECT_ACCESS_DATA + i,
469 buf);
James Ketrenos2c86c272005-03-23 17:32:29 -0600470
471 len -= dif_len;
472 aligned_addr += 4;
473 }
474
475 /* read DWs through autoincrement registers */
James Ketrenosee8e3652005-09-14 09:47:29 -0500476 write_register(dev, IPW_REG_AUTOINCREMENT_ADDRESS, aligned_addr);
James Ketrenos2c86c272005-03-23 17:32:29 -0600477 aligned_len = len & (~0x3);
478 for (i = 0; i < aligned_len; i += 4, buf += 4, aligned_addr += 4)
James Ketrenosee8e3652005-09-14 09:47:29 -0500479 read_register(dev, IPW_REG_AUTOINCREMENT_DATA, (u32 *) buf);
James Ketrenos2c86c272005-03-23 17:32:29 -0600480
481 /* copy the last nibble */
482 dif_len = len - aligned_len;
James Ketrenosee8e3652005-09-14 09:47:29 -0500483 write_register(dev, IPW_REG_INDIRECT_ACCESS_ADDRESS, aligned_addr);
James Ketrenos2c86c272005-03-23 17:32:29 -0600484 for (i = 0; i < dif_len; i++, buf++)
James Ketrenosee8e3652005-09-14 09:47:29 -0500485 read_register_byte(dev, IPW_REG_INDIRECT_ACCESS_DATA + i, buf);
James Ketrenos2c86c272005-03-23 17:32:29 -0600486}
487
488static inline int ipw2100_hw_is_adapter_in_system(struct net_device *dev)
489{
490 return (dev->base_addr &&
James Ketrenosee8e3652005-09-14 09:47:29 -0500491 (readl
492 ((void __iomem *)(dev->base_addr +
493 IPW_REG_DOA_DEBUG_AREA_START))
James Ketrenos2c86c272005-03-23 17:32:29 -0600494 == IPW_DATA_DOA_DEBUG_VALUE));
495}
496
Jiri Bencc4aee8c2005-08-25 20:04:43 -0400497static int ipw2100_get_ordinal(struct ipw2100_priv *priv, u32 ord,
James Ketrenosee8e3652005-09-14 09:47:29 -0500498 void *val, u32 * len)
James Ketrenos2c86c272005-03-23 17:32:29 -0600499{
500 struct ipw2100_ordinals *ordinals = &priv->ordinals;
501 u32 addr;
502 u32 field_info;
503 u16 field_len;
504 u16 field_count;
505 u32 total_length;
506
507 if (ordinals->table1_addr == 0) {
Jiri Benc797b4f72005-08-25 20:03:27 -0400508 printk(KERN_WARNING DRV_NAME ": attempt to use fw ordinals "
James Ketrenos2c86c272005-03-23 17:32:29 -0600509 "before they have been loaded.\n");
510 return -EINVAL;
511 }
512
513 if (IS_ORDINAL_TABLE_ONE(ordinals, ord)) {
514 if (*len < IPW_ORD_TAB_1_ENTRY_SIZE) {
515 *len = IPW_ORD_TAB_1_ENTRY_SIZE;
516
Jiri Benc797b4f72005-08-25 20:03:27 -0400517 printk(KERN_WARNING DRV_NAME
Jiri Bencaaa4d302005-06-07 14:58:41 +0200518 ": ordinal buffer length too small, need %zd\n",
James Ketrenos2c86c272005-03-23 17:32:29 -0600519 IPW_ORD_TAB_1_ENTRY_SIZE);
520
521 return -EINVAL;
522 }
523
James Ketrenosee8e3652005-09-14 09:47:29 -0500524 read_nic_dword(priv->net_dev,
525 ordinals->table1_addr + (ord << 2), &addr);
James Ketrenos2c86c272005-03-23 17:32:29 -0600526 read_nic_dword(priv->net_dev, addr, val);
527
528 *len = IPW_ORD_TAB_1_ENTRY_SIZE;
529
530 return 0;
531 }
532
533 if (IS_ORDINAL_TABLE_TWO(ordinals, ord)) {
534
535 ord -= IPW_START_ORD_TAB_2;
536
537 /* get the address of statistic */
James Ketrenosee8e3652005-09-14 09:47:29 -0500538 read_nic_dword(priv->net_dev,
539 ordinals->table2_addr + (ord << 3), &addr);
James Ketrenos2c86c272005-03-23 17:32:29 -0600540
541 /* get the second DW of statistics ;
542 * two 16-bit words - first is length, second is count */
543 read_nic_dword(priv->net_dev,
544 ordinals->table2_addr + (ord << 3) + sizeof(u32),
545 &field_info);
546
547 /* get each entry length */
James Ketrenosee8e3652005-09-14 09:47:29 -0500548 field_len = *((u16 *) & field_info);
James Ketrenos2c86c272005-03-23 17:32:29 -0600549
550 /* get number of entries */
James Ketrenosee8e3652005-09-14 09:47:29 -0500551 field_count = *(((u16 *) & field_info) + 1);
James Ketrenos2c86c272005-03-23 17:32:29 -0600552
553 /* abort if no enought memory */
554 total_length = field_len * field_count;
555 if (total_length > *len) {
556 *len = total_length;
557 return -EINVAL;
558 }
559
560 *len = total_length;
561 if (!total_length)
562 return 0;
563
564 /* read the ordinal data from the SRAM */
565 read_nic_memory(priv->net_dev, addr, total_length, val);
566
567 return 0;
568 }
569
Jiri Benc797b4f72005-08-25 20:03:27 -0400570 printk(KERN_WARNING DRV_NAME ": ordinal %d neither in table 1 nor "
James Ketrenos2c86c272005-03-23 17:32:29 -0600571 "in table 2\n", ord);
572
573 return -EINVAL;
574}
575
James Ketrenosee8e3652005-09-14 09:47:29 -0500576static int ipw2100_set_ordinal(struct ipw2100_priv *priv, u32 ord, u32 * val,
577 u32 * len)
James Ketrenos2c86c272005-03-23 17:32:29 -0600578{
579 struct ipw2100_ordinals *ordinals = &priv->ordinals;
580 u32 addr;
581
582 if (IS_ORDINAL_TABLE_ONE(ordinals, ord)) {
583 if (*len != IPW_ORD_TAB_1_ENTRY_SIZE) {
584 *len = IPW_ORD_TAB_1_ENTRY_SIZE;
585 IPW_DEBUG_INFO("wrong size\n");
586 return -EINVAL;
587 }
588
James Ketrenosee8e3652005-09-14 09:47:29 -0500589 read_nic_dword(priv->net_dev,
590 ordinals->table1_addr + (ord << 2), &addr);
James Ketrenos2c86c272005-03-23 17:32:29 -0600591
592 write_nic_dword(priv->net_dev, addr, *val);
593
594 *len = IPW_ORD_TAB_1_ENTRY_SIZE;
595
596 return 0;
597 }
598
599 IPW_DEBUG_INFO("wrong table\n");
600 if (IS_ORDINAL_TABLE_TWO(ordinals, ord))
601 return -EINVAL;
602
603 return -EINVAL;
604}
605
606static char *snprint_line(char *buf, size_t count,
James Ketrenosee8e3652005-09-14 09:47:29 -0500607 const u8 * data, u32 len, u32 ofs)
James Ketrenos2c86c272005-03-23 17:32:29 -0600608{
609 int out, i, j, l;
610 char c;
611
612 out = snprintf(buf, count, "%08X", ofs);
613
614 for (l = 0, i = 0; i < 2; i++) {
615 out += snprintf(buf + out, count - out, " ");
616 for (j = 0; j < 8 && l < len; j++, l++)
617 out += snprintf(buf + out, count - out, "%02X ",
618 data[(i * 8 + j)]);
619 for (; j < 8; j++)
620 out += snprintf(buf + out, count - out, " ");
621 }
622
623 out += snprintf(buf + out, count - out, " ");
624 for (l = 0, i = 0; i < 2; i++) {
625 out += snprintf(buf + out, count - out, " ");
626 for (j = 0; j < 8 && l < len; j++, l++) {
627 c = data[(i * 8 + j)];
628 if (!isascii(c) || !isprint(c))
629 c = '.';
630
631 out += snprintf(buf + out, count - out, "%c", c);
632 }
633
634 for (; j < 8; j++)
635 out += snprintf(buf + out, count - out, " ");
636 }
637
638 return buf;
639}
640
James Ketrenosee8e3652005-09-14 09:47:29 -0500641static void printk_buf(int level, const u8 * data, u32 len)
James Ketrenos2c86c272005-03-23 17:32:29 -0600642{
643 char line[81];
644 u32 ofs = 0;
645 if (!(ipw2100_debug_level & level))
646 return;
647
648 while (len) {
649 printk(KERN_DEBUG "%s\n",
650 snprint_line(line, sizeof(line), &data[ofs],
651 min(len, 16U), ofs));
652 ofs += 16;
653 len -= min(len, 16U);
654 }
655}
656
James Ketrenos2c86c272005-03-23 17:32:29 -0600657#define MAX_RESET_BACKOFF 10
658
Arjan van de Ven858119e2006-01-14 13:20:43 -0800659static void schedule_reset(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -0600660{
661 unsigned long now = get_seconds();
662
663 /* If we haven't received a reset request within the backoff period,
664 * then we can reset the backoff interval so this reset occurs
665 * immediately */
666 if (priv->reset_backoff &&
667 (now - priv->last_reset > priv->reset_backoff))
668 priv->reset_backoff = 0;
669
670 priv->last_reset = get_seconds();
671
672 if (!(priv->status & STATUS_RESET_PENDING)) {
673 IPW_DEBUG_INFO("%s: Scheduling firmware restart (%ds).\n",
674 priv->net_dev->name, priv->reset_backoff);
675 netif_carrier_off(priv->net_dev);
676 netif_stop_queue(priv->net_dev);
677 priv->status |= STATUS_RESET_PENDING;
678 if (priv->reset_backoff)
679 queue_delayed_work(priv->workqueue, &priv->reset_work,
680 priv->reset_backoff * HZ);
681 else
David Howellsc4028952006-11-22 14:57:56 +0000682 queue_delayed_work(priv->workqueue, &priv->reset_work,
683 0);
James Ketrenos2c86c272005-03-23 17:32:29 -0600684
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
Ingo Molnar752e3772006-02-28 07:20:54 +08001421 mutex_lock(&priv->adapter_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06001422
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:
Ingo Molnar752e3772006-02-28 07:20:54 +08001447 mutex_unlock(&priv->adapter_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06001448 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
Andreas Mohrd6e05ed2006-06-26 18:35:02 +02001488 * out of D0-standby if it is already in that state.
James Ketrenos2c86c272005-03-23 17:32:29 -06001489 *
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
Ingo Molnar752e3772006-02-28 07:20:54 +08001579 mutex_lock(&priv->adapter_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06001580
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:
Ingo Molnar752e3772006-02-28 07:20:54 +08001598 mutex_unlock(&priv->adapter_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06001599 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
Zhu Yibe6b3b12006-01-24 13:49:08 +08001675static const struct ieee80211_geo ipw_geos[] = {
1676 { /* Restricted */
1677 "---",
1678 .bg_channels = 14,
1679 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
1680 {2427, 4}, {2432, 5}, {2437, 6},
1681 {2442, 7}, {2447, 8}, {2452, 9},
1682 {2457, 10}, {2462, 11}, {2467, 12},
1683 {2472, 13}, {2484, 14}},
1684 },
1685};
1686
James Ketrenos2c86c272005-03-23 17:32:29 -06001687static int ipw2100_up(struct ipw2100_priv *priv, int deferred)
1688{
1689 unsigned long flags;
1690 int rc = 0;
1691 u32 lock;
1692 u32 ord_len = sizeof(lock);
1693
1694 /* Quite if manually disabled. */
1695 if (priv->status & STATUS_RF_KILL_SW) {
1696 IPW_DEBUG_INFO("%s: Radio is disabled by Manual Disable "
1697 "switch\n", priv->net_dev->name);
1698 return 0;
1699 }
1700
Arjan van de Ven5c875792006-09-30 23:27:17 -07001701 /* the ipw2100 hardware really doesn't want power management delays
1702 * longer than 175usec
1703 */
1704 modify_acceptable_latency("ipw2100", 175);
1705
James Ketrenos2c86c272005-03-23 17:32:29 -06001706 /* If the interrupt is enabled, turn it off... */
1707 spin_lock_irqsave(&priv->low_lock, flags);
1708 ipw2100_disable_interrupts(priv);
1709
1710 /* Reset any fatal_error conditions */
1711 ipw2100_reset_fatalerror(priv);
1712 spin_unlock_irqrestore(&priv->low_lock, flags);
1713
1714 if (priv->status & STATUS_POWERED ||
1715 (priv->status & STATUS_RESET_PENDING)) {
1716 /* Power cycle the card ... */
1717 if (ipw2100_power_cycle_adapter(priv)) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001718 printk(KERN_WARNING DRV_NAME
1719 ": %s: Could not cycle adapter.\n",
1720 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06001721 rc = 1;
1722 goto exit;
1723 }
1724 } else
1725 priv->status |= STATUS_POWERED;
1726
Pavel Machek8724a112005-06-20 14:28:43 -07001727 /* Load the firmware, start the clocks, etc. */
James Ketrenos2c86c272005-03-23 17:32:29 -06001728 if (ipw2100_start_adapter(priv)) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001729 printk(KERN_ERR DRV_NAME
1730 ": %s: Failed to start the firmware.\n",
1731 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06001732 rc = 1;
1733 goto exit;
1734 }
1735
1736 ipw2100_initialize_ordinals(priv);
1737
1738 /* Determine capabilities of this particular HW configuration */
1739 if (ipw2100_get_hw_features(priv)) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001740 printk(KERN_ERR DRV_NAME
1741 ": %s: Failed to determine HW features.\n",
1742 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06001743 rc = 1;
1744 goto exit;
1745 }
1746
Zhu Yibe6b3b12006-01-24 13:49:08 +08001747 /* Initialize the geo */
1748 if (ieee80211_set_geo(priv->ieee, &ipw_geos[0])) {
1749 printk(KERN_WARNING DRV_NAME "Could not set geo\n");
1750 return 0;
1751 }
1752 priv->ieee->freq_band = IEEE80211_24GHZ_BAND;
1753
James Ketrenos2c86c272005-03-23 17:32:29 -06001754 lock = LOCK_NONE;
1755 if (ipw2100_set_ordinal(priv, IPW_ORD_PERS_DB_LOCK, &lock, &ord_len)) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001756 printk(KERN_ERR DRV_NAME
1757 ": %s: Failed to clear ordinal lock.\n",
1758 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06001759 rc = 1;
1760 goto exit;
1761 }
1762
1763 priv->status &= ~STATUS_SCANNING;
1764
1765 if (rf_kill_active(priv)) {
1766 printk(KERN_INFO "%s: Radio is disabled by RF switch.\n",
1767 priv->net_dev->name);
1768
1769 if (priv->stop_rf_kill) {
1770 priv->stop_rf_kill = 0;
Stephen Hemmingera62056f2007-06-22 21:46:50 -07001771 queue_delayed_work(priv->workqueue, &priv->rf_kill,
1772 round_jiffies(HZ));
James Ketrenos2c86c272005-03-23 17:32:29 -06001773 }
1774
1775 deferred = 1;
1776 }
1777
1778 /* Turn on the interrupt so that commands can be processed */
1779 ipw2100_enable_interrupts(priv);
1780
1781 /* Send all of the commands that must be sent prior to
1782 * HOST_COMPLETE */
1783 if (ipw2100_adapter_setup(priv)) {
Jiri Benc797b4f72005-08-25 20:03:27 -04001784 printk(KERN_ERR DRV_NAME ": %s: Failed to start the card.\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05001785 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06001786 rc = 1;
1787 goto exit;
1788 }
1789
1790 if (!deferred) {
1791 /* Enable the adapter - sends HOST_COMPLETE */
1792 if (ipw2100_enable_adapter(priv)) {
Jiri Benc797b4f72005-08-25 20:03:27 -04001793 printk(KERN_ERR DRV_NAME ": "
James Ketrenosee8e3652005-09-14 09:47:29 -05001794 "%s: failed in call to enable adapter.\n",
1795 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06001796 ipw2100_hw_stop_adapter(priv);
1797 rc = 1;
1798 goto exit;
1799 }
1800
James Ketrenos2c86c272005-03-23 17:32:29 -06001801 /* Start a scan . . . */
1802 ipw2100_set_scan_options(priv);
1803 ipw2100_start_scan(priv);
1804 }
1805
James Ketrenosee8e3652005-09-14 09:47:29 -05001806 exit:
James Ketrenos2c86c272005-03-23 17:32:29 -06001807 return rc;
1808}
1809
1810/* Called by register_netdev() */
1811static int ipw2100_net_init(struct net_device *dev)
1812{
1813 struct ipw2100_priv *priv = ieee80211_priv(dev);
1814 return ipw2100_up(priv, 1);
1815}
1816
1817static void ipw2100_down(struct ipw2100_priv *priv)
1818{
1819 unsigned long flags;
1820 union iwreq_data wrqu = {
1821 .ap_addr = {
James Ketrenosee8e3652005-09-14 09:47:29 -05001822 .sa_family = ARPHRD_ETHER}
James Ketrenos2c86c272005-03-23 17:32:29 -06001823 };
1824 int associated = priv->status & STATUS_ASSOCIATED;
1825
1826 /* Kill the RF switch timer */
1827 if (!priv->stop_rf_kill) {
1828 priv->stop_rf_kill = 1;
1829 cancel_delayed_work(&priv->rf_kill);
1830 }
1831
1832 /* Kill the firmare hang check timer */
1833 if (!priv->stop_hang_check) {
1834 priv->stop_hang_check = 1;
1835 cancel_delayed_work(&priv->hang_check);
1836 }
1837
1838 /* Kill any pending resets */
1839 if (priv->status & STATUS_RESET_PENDING)
1840 cancel_delayed_work(&priv->reset_work);
1841
1842 /* Make sure the interrupt is on so that FW commands will be
1843 * processed correctly */
1844 spin_lock_irqsave(&priv->low_lock, flags);
1845 ipw2100_enable_interrupts(priv);
1846 spin_unlock_irqrestore(&priv->low_lock, flags);
1847
1848 if (ipw2100_hw_stop_adapter(priv))
Jiri Benc797b4f72005-08-25 20:03:27 -04001849 printk(KERN_ERR DRV_NAME ": %s: Error stopping adapter.\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06001850 priv->net_dev->name);
1851
1852 /* Do not disable the interrupt until _after_ we disable
1853 * the adaptor. Otherwise the CARD_DISABLE command will never
1854 * be ack'd by the firmware */
1855 spin_lock_irqsave(&priv->low_lock, flags);
1856 ipw2100_disable_interrupts(priv);
1857 spin_unlock_irqrestore(&priv->low_lock, flags);
1858
Arjan van de Ven5c875792006-09-30 23:27:17 -07001859 modify_acceptable_latency("ipw2100", INFINITE_LATENCY);
1860
James Ketrenos2c86c272005-03-23 17:32:29 -06001861#ifdef ACPI_CSTATE_LIMIT_DEFINED
1862 if (priv->config & CFG_C3_DISABLED) {
Zhu Yia1e695a2005-07-04 14:06:00 +08001863 IPW_DEBUG_INFO(": Resetting C3 transitions.\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06001864 acpi_set_cstate_limit(priv->cstate_limit);
1865 priv->config &= ~CFG_C3_DISABLED;
1866 }
1867#endif
1868
1869 /* We have to signal any supplicant if we are disassociating */
1870 if (associated)
1871 wireless_send_event(priv->net_dev, SIOCGIWAP, &wrqu, NULL);
1872
1873 priv->status &= ~(STATUS_ASSOCIATED | STATUS_ASSOCIATING);
1874 netif_carrier_off(priv->net_dev);
1875 netif_stop_queue(priv->net_dev);
1876}
1877
David Howellsc4028952006-11-22 14:57:56 +00001878static void ipw2100_reset_adapter(struct work_struct *work)
James Ketrenos2c86c272005-03-23 17:32:29 -06001879{
David Howellsc4028952006-11-22 14:57:56 +00001880 struct ipw2100_priv *priv =
1881 container_of(work, struct ipw2100_priv, reset_work.work);
James Ketrenos2c86c272005-03-23 17:32:29 -06001882 unsigned long flags;
1883 union iwreq_data wrqu = {
1884 .ap_addr = {
James Ketrenosee8e3652005-09-14 09:47:29 -05001885 .sa_family = ARPHRD_ETHER}
James Ketrenos2c86c272005-03-23 17:32:29 -06001886 };
1887 int associated = priv->status & STATUS_ASSOCIATED;
1888
1889 spin_lock_irqsave(&priv->low_lock, flags);
Zhu Yia1e695a2005-07-04 14:06:00 +08001890 IPW_DEBUG_INFO(": %s: Restarting adapter.\n", priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06001891 priv->resets++;
1892 priv->status &= ~(STATUS_ASSOCIATED | STATUS_ASSOCIATING);
1893 priv->status |= STATUS_SECURITY_UPDATED;
1894
1895 /* Force a power cycle even if interface hasn't been opened
1896 * yet */
1897 cancel_delayed_work(&priv->reset_work);
1898 priv->status |= STATUS_RESET_PENDING;
1899 spin_unlock_irqrestore(&priv->low_lock, flags);
1900
Ingo Molnar752e3772006-02-28 07:20:54 +08001901 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06001902 /* stop timed checks so that they don't interfere with reset */
1903 priv->stop_hang_check = 1;
1904 cancel_delayed_work(&priv->hang_check);
1905
1906 /* We have to signal any supplicant if we are disassociating */
1907 if (associated)
1908 wireless_send_event(priv->net_dev, SIOCGIWAP, &wrqu, NULL);
1909
1910 ipw2100_up(priv, 0);
Ingo Molnar752e3772006-02-28 07:20:54 +08001911 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06001912
1913}
1914
James Ketrenos2c86c272005-03-23 17:32:29 -06001915static void isr_indicate_associated(struct ipw2100_priv *priv, u32 status)
1916{
1917
1918#define MAC_ASSOCIATION_READ_DELAY (HZ)
1919 int ret, len, essid_len;
1920 char essid[IW_ESSID_MAX_SIZE];
1921 u32 txrate;
1922 u32 chan;
1923 char *txratename;
James Ketrenosee8e3652005-09-14 09:47:29 -05001924 u8 bssid[ETH_ALEN];
James Ketrenos2c86c272005-03-23 17:32:29 -06001925
1926 /*
1927 * TBD: BSSID is usually 00:00:00:00:00:00 here and not
1928 * an actual MAC of the AP. Seems like FW sets this
1929 * address too late. Read it later and expose through
1930 * /proc or schedule a later task to query and update
1931 */
1932
1933 essid_len = IW_ESSID_MAX_SIZE;
1934 ret = ipw2100_get_ordinal(priv, IPW_ORD_STAT_ASSN_SSID,
1935 essid, &essid_len);
1936 if (ret) {
1937 IPW_DEBUG_INFO("failed querying ordinals at line %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05001938 __LINE__);
James Ketrenos2c86c272005-03-23 17:32:29 -06001939 return;
1940 }
1941
1942 len = sizeof(u32);
James Ketrenosee8e3652005-09-14 09:47:29 -05001943 ret = ipw2100_get_ordinal(priv, IPW_ORD_CURRENT_TX_RATE, &txrate, &len);
James Ketrenos2c86c272005-03-23 17:32:29 -06001944 if (ret) {
1945 IPW_DEBUG_INFO("failed querying ordinals at line %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05001946 __LINE__);
James Ketrenos2c86c272005-03-23 17:32:29 -06001947 return;
1948 }
1949
1950 len = sizeof(u32);
1951 ret = ipw2100_get_ordinal(priv, IPW_ORD_OUR_FREQ, &chan, &len);
1952 if (ret) {
1953 IPW_DEBUG_INFO("failed querying ordinals at line %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05001954 __LINE__);
James Ketrenos2c86c272005-03-23 17:32:29 -06001955 return;
1956 }
1957 len = ETH_ALEN;
James Ketrenosee8e3652005-09-14 09:47:29 -05001958 ipw2100_get_ordinal(priv, IPW_ORD_STAT_ASSN_AP_BSSID, &bssid, &len);
James Ketrenos2c86c272005-03-23 17:32:29 -06001959 if (ret) {
1960 IPW_DEBUG_INFO("failed querying ordinals at line %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05001961 __LINE__);
James Ketrenos2c86c272005-03-23 17:32:29 -06001962 return;
1963 }
1964 memcpy(priv->ieee->bssid, bssid, ETH_ALEN);
1965
James Ketrenos2c86c272005-03-23 17:32:29 -06001966 switch (txrate) {
1967 case TX_RATE_1_MBIT:
1968 txratename = "1Mbps";
1969 break;
1970 case TX_RATE_2_MBIT:
1971 txratename = "2Mbsp";
1972 break;
1973 case TX_RATE_5_5_MBIT:
1974 txratename = "5.5Mbps";
1975 break;
1976 case TX_RATE_11_MBIT:
1977 txratename = "11Mbps";
1978 break;
1979 default:
1980 IPW_DEBUG_INFO("Unknown rate: %d\n", txrate);
1981 txratename = "unknown rate";
1982 break;
1983 }
1984
1985 IPW_DEBUG_INFO("%s: Associated with '%s' at %s, channel %d (BSSID="
1986 MAC_FMT ")\n",
1987 priv->net_dev->name, escape_essid(essid, essid_len),
1988 txratename, chan, MAC_ARG(bssid));
1989
1990 /* now we copy read ssid into dev */
1991 if (!(priv->config & CFG_STATIC_ESSID)) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001992 priv->essid_len = min((u8) essid_len, (u8) IW_ESSID_MAX_SIZE);
James Ketrenos2c86c272005-03-23 17:32:29 -06001993 memcpy(priv->essid, essid, priv->essid_len);
1994 }
1995 priv->channel = chan;
1996 memcpy(priv->bssid, bssid, ETH_ALEN);
1997
1998 priv->status |= STATUS_ASSOCIATING;
1999 priv->connect_start = get_seconds();
2000
2001 queue_delayed_work(priv->workqueue, &priv->wx_event_work, HZ / 10);
2002}
2003
Jiri Bencc4aee8c2005-08-25 20:04:43 -04002004static int ipw2100_set_essid(struct ipw2100_priv *priv, char *essid,
2005 int length, int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06002006{
2007 int ssid_len = min(length, IW_ESSID_MAX_SIZE);
2008 struct host_command cmd = {
2009 .host_command = SSID,
2010 .host_command_sequence = 0,
2011 .host_command_length = ssid_len
2012 };
2013 int err;
2014
2015 IPW_DEBUG_HC("SSID: '%s'\n", escape_essid(essid, ssid_len));
2016
2017 if (ssid_len)
James Ketrenos82328352005-08-24 22:33:31 -05002018 memcpy(cmd.host_command_parameters, essid, ssid_len);
James Ketrenos2c86c272005-03-23 17:32:29 -06002019
2020 if (!batch_mode) {
2021 err = ipw2100_disable_adapter(priv);
2022 if (err)
2023 return err;
2024 }
2025
2026 /* Bug in FW currently doesn't honor bit 0 in SET_SCAN_OPTIONS to
2027 * disable auto association -- so we cheat by setting a bogus SSID */
2028 if (!ssid_len && !(priv->config & CFG_ASSOCIATE)) {
2029 int i;
James Ketrenosee8e3652005-09-14 09:47:29 -05002030 u8 *bogus = (u8 *) cmd.host_command_parameters;
James Ketrenos2c86c272005-03-23 17:32:29 -06002031 for (i = 0; i < IW_ESSID_MAX_SIZE; i++)
2032 bogus[i] = 0x18 + i;
2033 cmd.host_command_length = IW_ESSID_MAX_SIZE;
2034 }
2035
2036 /* NOTE: We always send the SSID command even if the provided ESSID is
2037 * the same as what we currently think is set. */
2038
2039 err = ipw2100_hw_send_command(priv, &cmd);
2040 if (!err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05002041 memset(priv->essid + ssid_len, 0, IW_ESSID_MAX_SIZE - ssid_len);
James Ketrenos2c86c272005-03-23 17:32:29 -06002042 memcpy(priv->essid, essid, ssid_len);
2043 priv->essid_len = ssid_len;
2044 }
2045
2046 if (!batch_mode) {
2047 if (ipw2100_enable_adapter(priv))
2048 err = -EIO;
2049 }
2050
2051 return err;
2052}
2053
2054static void isr_indicate_association_lost(struct ipw2100_priv *priv, u32 status)
2055{
2056 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE | IPW_DL_ASSOC,
2057 "disassociated: '%s' " MAC_FMT " \n",
2058 escape_essid(priv->essid, priv->essid_len),
2059 MAC_ARG(priv->bssid));
2060
2061 priv->status &= ~(STATUS_ASSOCIATED | STATUS_ASSOCIATING);
2062
2063 if (priv->status & STATUS_STOPPING) {
2064 IPW_DEBUG_INFO("Card is stopping itself, discard ASSN_LOST.\n");
2065 return;
2066 }
2067
2068 memset(priv->bssid, 0, ETH_ALEN);
2069 memset(priv->ieee->bssid, 0, ETH_ALEN);
2070
2071 netif_carrier_off(priv->net_dev);
2072 netif_stop_queue(priv->net_dev);
2073
2074 if (!(priv->status & STATUS_RUNNING))
2075 return;
2076
2077 if (priv->status & STATUS_SECURITY_UPDATED)
David Howellsc4028952006-11-22 14:57:56 +00002078 queue_delayed_work(priv->workqueue, &priv->security_work, 0);
James Ketrenos2c86c272005-03-23 17:32:29 -06002079
David Howellsc4028952006-11-22 14:57:56 +00002080 queue_delayed_work(priv->workqueue, &priv->wx_event_work, 0);
James Ketrenos2c86c272005-03-23 17:32:29 -06002081}
2082
2083static void isr_indicate_rf_kill(struct ipw2100_priv *priv, u32 status)
2084{
2085 IPW_DEBUG_INFO("%s: RF Kill state changed to radio OFF.\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05002086 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06002087
2088 /* RF_KILL is now enabled (else we wouldn't be here) */
2089 priv->status |= STATUS_RF_KILL_HW;
2090
2091#ifdef ACPI_CSTATE_LIMIT_DEFINED
2092 if (priv->config & CFG_C3_DISABLED) {
Zhu Yia1e695a2005-07-04 14:06:00 +08002093 IPW_DEBUG_INFO(": Resetting C3 transitions.\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06002094 acpi_set_cstate_limit(priv->cstate_limit);
2095 priv->config &= ~CFG_C3_DISABLED;
2096 }
2097#endif
2098
2099 /* Make sure the RF Kill check timer is running */
2100 priv->stop_rf_kill = 0;
2101 cancel_delayed_work(&priv->rf_kill);
Stephen Hemmingera62056f2007-06-22 21:46:50 -07002102 queue_delayed_work(priv->workqueue, &priv->rf_kill, round_jiffies(HZ));
James Ketrenos2c86c272005-03-23 17:32:29 -06002103}
2104
2105static void isr_scan_complete(struct ipw2100_priv *priv, u32 status)
2106{
2107 IPW_DEBUG_SCAN("scan complete\n");
2108 /* Age the scan results... */
2109 priv->ieee->scans++;
2110 priv->status &= ~STATUS_SCANNING;
2111}
2112
Brice Goglin0f52bf92005-12-01 01:41:46 -08002113#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06002114#define IPW2100_HANDLER(v, f) { v, f, # v }
2115struct ipw2100_status_indicator {
2116 int status;
James Ketrenosee8e3652005-09-14 09:47:29 -05002117 void (*cb) (struct ipw2100_priv * priv, u32 status);
James Ketrenos2c86c272005-03-23 17:32:29 -06002118 char *name;
2119};
2120#else
2121#define IPW2100_HANDLER(v, f) { v, f }
2122struct ipw2100_status_indicator {
2123 int status;
James Ketrenosee8e3652005-09-14 09:47:29 -05002124 void (*cb) (struct ipw2100_priv * priv, u32 status);
James Ketrenos2c86c272005-03-23 17:32:29 -06002125};
Brice Goglin0f52bf92005-12-01 01:41:46 -08002126#endif /* CONFIG_IPW2100_DEBUG */
James Ketrenos2c86c272005-03-23 17:32:29 -06002127
2128static void isr_indicate_scanning(struct ipw2100_priv *priv, u32 status)
2129{
2130 IPW_DEBUG_SCAN("Scanning...\n");
2131 priv->status |= STATUS_SCANNING;
2132}
2133
Jiri Bencc4aee8c2005-08-25 20:04:43 -04002134static const struct ipw2100_status_indicator status_handlers[] = {
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01002135 IPW2100_HANDLER(IPW_STATE_INITIALIZED, NULL),
2136 IPW2100_HANDLER(IPW_STATE_COUNTRY_FOUND, NULL),
James Ketrenos2c86c272005-03-23 17:32:29 -06002137 IPW2100_HANDLER(IPW_STATE_ASSOCIATED, isr_indicate_associated),
2138 IPW2100_HANDLER(IPW_STATE_ASSN_LOST, isr_indicate_association_lost),
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01002139 IPW2100_HANDLER(IPW_STATE_ASSN_CHANGED, NULL),
James Ketrenos2c86c272005-03-23 17:32:29 -06002140 IPW2100_HANDLER(IPW_STATE_SCAN_COMPLETE, isr_scan_complete),
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01002141 IPW2100_HANDLER(IPW_STATE_ENTERED_PSP, NULL),
2142 IPW2100_HANDLER(IPW_STATE_LEFT_PSP, NULL),
James Ketrenos2c86c272005-03-23 17:32:29 -06002143 IPW2100_HANDLER(IPW_STATE_RF_KILL, isr_indicate_rf_kill),
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01002144 IPW2100_HANDLER(IPW_STATE_DISABLED, NULL),
2145 IPW2100_HANDLER(IPW_STATE_POWER_DOWN, NULL),
James Ketrenos2c86c272005-03-23 17:32:29 -06002146 IPW2100_HANDLER(IPW_STATE_SCANNING, isr_indicate_scanning),
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01002147 IPW2100_HANDLER(-1, NULL)
James Ketrenos2c86c272005-03-23 17:32:29 -06002148};
2149
James Ketrenos2c86c272005-03-23 17:32:29 -06002150static void isr_status_change(struct ipw2100_priv *priv, int status)
2151{
2152 int i;
2153
2154 if (status == IPW_STATE_SCANNING &&
2155 priv->status & STATUS_ASSOCIATED &&
2156 !(priv->status & STATUS_SCANNING)) {
2157 IPW_DEBUG_INFO("Scan detected while associated, with "
2158 "no scan request. Restarting firmware.\n");
2159
2160 /* Wake up any sleeping jobs */
2161 schedule_reset(priv);
2162 }
2163
2164 for (i = 0; status_handlers[i].status != -1; i++) {
2165 if (status == status_handlers[i].status) {
2166 IPW_DEBUG_NOTIF("Status change: %s\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05002167 status_handlers[i].name);
James Ketrenos2c86c272005-03-23 17:32:29 -06002168 if (status_handlers[i].cb)
2169 status_handlers[i].cb(priv, status);
2170 priv->wstats.status = status;
2171 return;
2172 }
2173 }
2174
2175 IPW_DEBUG_NOTIF("unknown status received: %04x\n", status);
2176}
2177
James Ketrenosee8e3652005-09-14 09:47:29 -05002178static void isr_rx_complete_command(struct ipw2100_priv *priv,
2179 struct ipw2100_cmd_header *cmd)
James Ketrenos2c86c272005-03-23 17:32:29 -06002180{
Brice Goglin0f52bf92005-12-01 01:41:46 -08002181#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06002182 if (cmd->host_command_reg < ARRAY_SIZE(command_types)) {
2183 IPW_DEBUG_HC("Command completed '%s (%d)'\n",
2184 command_types[cmd->host_command_reg],
2185 cmd->host_command_reg);
2186 }
2187#endif
2188 if (cmd->host_command_reg == HOST_COMPLETE)
2189 priv->status |= STATUS_ENABLED;
2190
2191 if (cmd->host_command_reg == CARD_DISABLE)
2192 priv->status &= ~STATUS_ENABLED;
2193
2194 priv->status &= ~STATUS_CMD_ACTIVE;
2195
2196 wake_up_interruptible(&priv->wait_command_queue);
2197}
2198
Brice Goglin0f52bf92005-12-01 01:41:46 -08002199#ifdef CONFIG_IPW2100_DEBUG
Jiri Bencc4aee8c2005-08-25 20:04:43 -04002200static const char *frame_types[] = {
James Ketrenos2c86c272005-03-23 17:32:29 -06002201 "COMMAND_STATUS_VAL",
2202 "STATUS_CHANGE_VAL",
2203 "P80211_DATA_VAL",
2204 "P8023_DATA_VAL",
2205 "HOST_NOTIFICATION_VAL"
2206};
2207#endif
2208
Arjan van de Ven858119e2006-01-14 13:20:43 -08002209static int ipw2100_alloc_skb(struct ipw2100_priv *priv,
James Ketrenosee8e3652005-09-14 09:47:29 -05002210 struct ipw2100_rx_packet *packet)
James Ketrenos2c86c272005-03-23 17:32:29 -06002211{
2212 packet->skb = dev_alloc_skb(sizeof(struct ipw2100_rx));
2213 if (!packet->skb)
2214 return -ENOMEM;
2215
2216 packet->rxp = (struct ipw2100_rx *)packet->skb->data;
2217 packet->dma_addr = pci_map_single(priv->pci_dev, packet->skb->data,
2218 sizeof(struct ipw2100_rx),
2219 PCI_DMA_FROMDEVICE);
2220 /* NOTE: pci_map_single does not return an error code, and 0 is a valid
2221 * dma_addr */
2222
2223 return 0;
2224}
2225
James Ketrenos2c86c272005-03-23 17:32:29 -06002226#define SEARCH_ERROR 0xffffffff
2227#define SEARCH_FAIL 0xfffffffe
2228#define SEARCH_SUCCESS 0xfffffff0
2229#define SEARCH_DISCARD 0
2230#define SEARCH_SNAPSHOT 1
2231
2232#define SNAPSHOT_ADDR(ofs) (priv->snapshot[((ofs) >> 12) & 0xff] + ((ofs) & 0xfff))
Zhu Yi3c5eca52006-01-24 13:49:26 +08002233static void ipw2100_snapshot_free(struct ipw2100_priv *priv)
2234{
2235 int i;
2236 if (!priv->snapshot[0])
2237 return;
2238 for (i = 0; i < 0x30; i++)
2239 kfree(priv->snapshot[i]);
2240 priv->snapshot[0] = NULL;
2241}
2242
Robert P. J. Dayae800312007-01-31 02:39:40 -05002243#ifdef IPW2100_DEBUG_C3
Arjan van de Ven858119e2006-01-14 13:20:43 -08002244static int ipw2100_snapshot_alloc(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06002245{
2246 int i;
2247 if (priv->snapshot[0])
2248 return 1;
2249 for (i = 0; i < 0x30; i++) {
Robert P. J. Day5cbded52006-12-13 00:35:56 -08002250 priv->snapshot[i] = kmalloc(0x1000, GFP_ATOMIC);
James Ketrenos2c86c272005-03-23 17:32:29 -06002251 if (!priv->snapshot[i]) {
2252 IPW_DEBUG_INFO("%s: Error allocating snapshot "
James Ketrenosee8e3652005-09-14 09:47:29 -05002253 "buffer %d\n", priv->net_dev->name, i);
James Ketrenos2c86c272005-03-23 17:32:29 -06002254 while (i > 0)
2255 kfree(priv->snapshot[--i]);
2256 priv->snapshot[0] = NULL;
2257 return 0;
2258 }
2259 }
2260
2261 return 1;
2262}
2263
Arjan van de Ven858119e2006-01-14 13:20:43 -08002264static u32 ipw2100_match_buf(struct ipw2100_priv *priv, u8 * in_buf,
James Ketrenos2c86c272005-03-23 17:32:29 -06002265 size_t len, int mode)
2266{
2267 u32 i, j;
2268 u32 tmp;
2269 u8 *s, *d;
2270 u32 ret;
2271
2272 s = in_buf;
2273 if (mode == SEARCH_SNAPSHOT) {
2274 if (!ipw2100_snapshot_alloc(priv))
2275 mode = SEARCH_DISCARD;
2276 }
2277
2278 for (ret = SEARCH_FAIL, i = 0; i < 0x30000; i += 4) {
2279 read_nic_dword(priv->net_dev, i, &tmp);
2280 if (mode == SEARCH_SNAPSHOT)
James Ketrenosee8e3652005-09-14 09:47:29 -05002281 *(u32 *) SNAPSHOT_ADDR(i) = tmp;
James Ketrenos2c86c272005-03-23 17:32:29 -06002282 if (ret == SEARCH_FAIL) {
James Ketrenosee8e3652005-09-14 09:47:29 -05002283 d = (u8 *) & tmp;
James Ketrenos2c86c272005-03-23 17:32:29 -06002284 for (j = 0; j < 4; j++) {
2285 if (*s != *d) {
2286 s = in_buf;
2287 continue;
2288 }
2289
2290 s++;
2291 d++;
2292
2293 if ((s - in_buf) == len)
2294 ret = (i + j) - len + 1;
2295 }
2296 } else if (mode == SEARCH_DISCARD)
2297 return ret;
2298 }
2299
2300 return ret;
2301}
Zhu Yi3c5eca52006-01-24 13:49:26 +08002302#endif
James Ketrenos2c86c272005-03-23 17:32:29 -06002303
2304/*
2305 *
2306 * 0) Disconnect the SKB from the firmware (just unmap)
2307 * 1) Pack the ETH header into the SKB
2308 * 2) Pass the SKB to the network stack
2309 *
2310 * When packet is provided by the firmware, it contains the following:
2311 *
2312 * . ieee80211_hdr
2313 * . ieee80211_snap_hdr
2314 *
2315 * The size of the constructed ethernet
2316 *
2317 */
Robert P. J. Dayae800312007-01-31 02:39:40 -05002318#ifdef IPW2100_RX_DEBUG
Jiri Bencc4aee8c2005-08-25 20:04:43 -04002319static u8 packet_data[IPW_RX_NIC_BUFFER_LENGTH];
James Ketrenos2c86c272005-03-23 17:32:29 -06002320#endif
2321
Arjan van de Ven858119e2006-01-14 13:20:43 -08002322static void ipw2100_corruption_detected(struct ipw2100_priv *priv, int i)
James Ketrenos2c86c272005-03-23 17:32:29 -06002323{
Robert P. J. Dayae800312007-01-31 02:39:40 -05002324#ifdef IPW2100_DEBUG_C3
James Ketrenos2c86c272005-03-23 17:32:29 -06002325 struct ipw2100_status *status = &priv->status_queue.drv[i];
2326 u32 match, reg;
2327 int j;
2328#endif
2329#ifdef ACPI_CSTATE_LIMIT_DEFINED
2330 int limit;
2331#endif
2332
Zhu Yia1e695a2005-07-04 14:06:00 +08002333 IPW_DEBUG_INFO(": PCI latency error detected at 0x%04zX.\n",
2334 i * sizeof(struct ipw2100_status));
James Ketrenos2c86c272005-03-23 17:32:29 -06002335
2336#ifdef ACPI_CSTATE_LIMIT_DEFINED
Zhu Yia1e695a2005-07-04 14:06:00 +08002337 IPW_DEBUG_INFO(": Disabling C3 transitions.\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06002338 limit = acpi_get_cstate_limit();
2339 if (limit > 2) {
2340 priv->cstate_limit = limit;
2341 acpi_set_cstate_limit(2);
2342 priv->config |= CFG_C3_DISABLED;
2343 }
2344#endif
2345
Robert P. J. Dayae800312007-01-31 02:39:40 -05002346#ifdef IPW2100_DEBUG_C3
James Ketrenos2c86c272005-03-23 17:32:29 -06002347 /* Halt the fimrware so we can get a good image */
2348 write_register(priv->net_dev, IPW_REG_RESET_REG,
2349 IPW_AUX_HOST_RESET_REG_STOP_MASTER);
2350 j = 5;
2351 do {
2352 udelay(IPW_WAIT_RESET_MASTER_ASSERT_COMPLETE_DELAY);
2353 read_register(priv->net_dev, IPW_REG_RESET_REG, &reg);
2354
2355 if (reg & IPW_AUX_HOST_RESET_REG_MASTER_DISABLED)
2356 break;
James Ketrenosee8e3652005-09-14 09:47:29 -05002357 } while (j--);
James Ketrenos2c86c272005-03-23 17:32:29 -06002358
James Ketrenosee8e3652005-09-14 09:47:29 -05002359 match = ipw2100_match_buf(priv, (u8 *) status,
James Ketrenos2c86c272005-03-23 17:32:29 -06002360 sizeof(struct ipw2100_status),
2361 SEARCH_SNAPSHOT);
2362 if (match < SEARCH_SUCCESS)
2363 IPW_DEBUG_INFO("%s: DMA status match in Firmware at "
2364 "offset 0x%06X, length %d:\n",
2365 priv->net_dev->name, match,
2366 sizeof(struct ipw2100_status));
2367 else
2368 IPW_DEBUG_INFO("%s: No DMA status match in "
2369 "Firmware.\n", priv->net_dev->name);
2370
James Ketrenosee8e3652005-09-14 09:47:29 -05002371 printk_buf((u8 *) priv->status_queue.drv,
James Ketrenos2c86c272005-03-23 17:32:29 -06002372 sizeof(struct ipw2100_status) * RX_QUEUE_LENGTH);
2373#endif
2374
2375 priv->fatal_error = IPW2100_ERR_C3_CORRUPTION;
2376 priv->ieee->stats.rx_errors++;
2377 schedule_reset(priv);
2378}
2379
Arjan van de Ven858119e2006-01-14 13:20:43 -08002380static void isr_rx(struct ipw2100_priv *priv, int i,
James Ketrenos2c86c272005-03-23 17:32:29 -06002381 struct ieee80211_rx_stats *stats)
2382{
2383 struct ipw2100_status *status = &priv->status_queue.drv[i];
2384 struct ipw2100_rx_packet *packet = &priv->rx_buffers[i];
2385
2386 IPW_DEBUG_RX("Handler...\n");
2387
2388 if (unlikely(status->frame_size > skb_tailroom(packet->skb))) {
2389 IPW_DEBUG_INFO("%s: frame_size (%u) > skb_tailroom (%u)!"
2390 " Dropping.\n",
2391 priv->net_dev->name,
2392 status->frame_size, skb_tailroom(packet->skb));
2393 priv->ieee->stats.rx_errors++;
2394 return;
2395 }
2396
2397 if (unlikely(!netif_running(priv->net_dev))) {
2398 priv->ieee->stats.rx_errors++;
2399 priv->wstats.discard.misc++;
2400 IPW_DEBUG_DROP("Dropping packet while interface is not up.\n");
2401 return;
2402 }
James Ketrenos2c86c272005-03-23 17:32:29 -06002403
2404 if (unlikely(priv->ieee->iw_mode != IW_MODE_MONITOR &&
James Ketrenosee8e3652005-09-14 09:47:29 -05002405 !(priv->status & STATUS_ASSOCIATED))) {
James Ketrenos2c86c272005-03-23 17:32:29 -06002406 IPW_DEBUG_DROP("Dropping packet while not associated.\n");
2407 priv->wstats.discard.misc++;
2408 return;
2409 }
2410
James Ketrenos2c86c272005-03-23 17:32:29 -06002411 pci_unmap_single(priv->pci_dev,
2412 packet->dma_addr,
James Ketrenosee8e3652005-09-14 09:47:29 -05002413 sizeof(struct ipw2100_rx), PCI_DMA_FROMDEVICE);
James Ketrenos2c86c272005-03-23 17:32:29 -06002414
2415 skb_put(packet->skb, status->frame_size);
2416
Robert P. J. Dayae800312007-01-31 02:39:40 -05002417#ifdef IPW2100_RX_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06002418 /* Make a copy of the frame so we can dump it to the logs if
2419 * ieee80211_rx fails */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002420 skb_copy_from_linear_data(packet->skb, packet_data,
2421 min_t(u32, status->frame_size,
2422 IPW_RX_NIC_BUFFER_LENGTH));
James Ketrenos2c86c272005-03-23 17:32:29 -06002423#endif
2424
2425 if (!ieee80211_rx(priv->ieee, packet->skb, stats)) {
Robert P. J. Dayae800312007-01-31 02:39:40 -05002426#ifdef IPW2100_RX_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06002427 IPW_DEBUG_DROP("%s: Non consumed packet:\n",
2428 priv->net_dev->name);
2429 printk_buf(IPW_DL_DROP, packet_data, status->frame_size);
2430#endif
2431 priv->ieee->stats.rx_errors++;
2432
2433 /* ieee80211_rx failed, so it didn't free the SKB */
2434 dev_kfree_skb_any(packet->skb);
2435 packet->skb = NULL;
2436 }
2437
2438 /* We need to allocate a new SKB and attach it to the RDB. */
2439 if (unlikely(ipw2100_alloc_skb(priv, packet))) {
Jiri Benc797b4f72005-08-25 20:03:27 -04002440 printk(KERN_WARNING DRV_NAME ": "
James Ketrenosee8e3652005-09-14 09:47:29 -05002441 "%s: Unable to allocate SKB onto RBD ring - disabling "
2442 "adapter.\n", priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06002443 /* TODO: schedule adapter shutdown */
2444 IPW_DEBUG_INFO("TODO: Shutdown adapter...\n");
2445 }
2446
2447 /* Update the RDB entry */
2448 priv->rx_queue.drv[i].host_addr = packet->dma_addr;
2449}
2450
Stefan Rompf15745a72006-02-21 18:36:17 +08002451#ifdef CONFIG_IPW2100_MONITOR
2452
2453static void isr_rx_monitor(struct ipw2100_priv *priv, int i,
2454 struct ieee80211_rx_stats *stats)
2455{
2456 struct ipw2100_status *status = &priv->status_queue.drv[i];
2457 struct ipw2100_rx_packet *packet = &priv->rx_buffers[i];
2458
Stefan Rompf15745a72006-02-21 18:36:17 +08002459 /* Magic struct that slots into the radiotap header -- no reason
2460 * to build this manually element by element, we can write it much
2461 * more efficiently than we can parse it. ORDER MATTERS HERE */
2462 struct ipw_rt_hdr {
2463 struct ieee80211_radiotap_header rt_hdr;
2464 s8 rt_dbmsignal; /* signal in dbM, kluged to signed */
2465 } *ipw_rt;
2466
Zhu Yicae16292006-02-21 18:41:14 +08002467 IPW_DEBUG_RX("Handler...\n");
2468
2469 if (unlikely(status->frame_size > skb_tailroom(packet->skb) -
2470 sizeof(struct ipw_rt_hdr))) {
Stefan Rompf15745a72006-02-21 18:36:17 +08002471 IPW_DEBUG_INFO("%s: frame_size (%u) > skb_tailroom (%u)!"
2472 " Dropping.\n",
2473 priv->net_dev->name,
Zhu Yicae16292006-02-21 18:41:14 +08002474 status->frame_size,
2475 skb_tailroom(packet->skb));
Stefan Rompf15745a72006-02-21 18:36:17 +08002476 priv->ieee->stats.rx_errors++;
2477 return;
2478 }
2479
2480 if (unlikely(!netif_running(priv->net_dev))) {
2481 priv->ieee->stats.rx_errors++;
2482 priv->wstats.discard.misc++;
2483 IPW_DEBUG_DROP("Dropping packet while interface is not up.\n");
2484 return;
2485 }
2486
2487 if (unlikely(priv->config & CFG_CRC_CHECK &&
2488 status->flags & IPW_STATUS_FLAG_CRC_ERROR)) {
2489 IPW_DEBUG_RX("CRC error in packet. Dropping.\n");
2490 priv->ieee->stats.rx_errors++;
2491 return;
2492 }
2493
Zhu Yicae16292006-02-21 18:41:14 +08002494 pci_unmap_single(priv->pci_dev, packet->dma_addr,
Stefan Rompf15745a72006-02-21 18:36:17 +08002495 sizeof(struct ipw2100_rx), PCI_DMA_FROMDEVICE);
2496 memmove(packet->skb->data + sizeof(struct ipw_rt_hdr),
2497 packet->skb->data, status->frame_size);
2498
2499 ipw_rt = (struct ipw_rt_hdr *) packet->skb->data;
2500
2501 ipw_rt->rt_hdr.it_version = PKTHDR_RADIOTAP_VERSION;
2502 ipw_rt->rt_hdr.it_pad = 0; /* always good to zero */
Zhu Yicae16292006-02-21 18:41:14 +08002503 ipw_rt->rt_hdr.it_len = sizeof(struct ipw_rt_hdr); /* total hdr+data */
Stefan Rompf15745a72006-02-21 18:36:17 +08002504
2505 ipw_rt->rt_hdr.it_present = 1 << IEEE80211_RADIOTAP_DBM_ANTSIGNAL;
2506
2507 ipw_rt->rt_dbmsignal = status->rssi + IPW2100_RSSI_TO_DBM;
2508
2509 skb_put(packet->skb, status->frame_size + sizeof(struct ipw_rt_hdr));
2510
2511 if (!ieee80211_rx(priv->ieee, packet->skb, stats)) {
2512 priv->ieee->stats.rx_errors++;
2513
2514 /* ieee80211_rx failed, so it didn't free the SKB */
2515 dev_kfree_skb_any(packet->skb);
2516 packet->skb = NULL;
2517 }
2518
2519 /* We need to allocate a new SKB and attach it to the RDB. */
2520 if (unlikely(ipw2100_alloc_skb(priv, packet))) {
2521 IPW_DEBUG_WARNING(
2522 "%s: Unable to allocate SKB onto RBD ring - disabling "
2523 "adapter.\n", priv->net_dev->name);
2524 /* TODO: schedule adapter shutdown */
2525 IPW_DEBUG_INFO("TODO: Shutdown adapter...\n");
2526 }
2527
2528 /* Update the RDB entry */
2529 priv->rx_queue.drv[i].host_addr = packet->dma_addr;
2530}
2531
2532#endif
2533
Arjan van de Ven858119e2006-01-14 13:20:43 -08002534static int ipw2100_corruption_check(struct ipw2100_priv *priv, int i)
James Ketrenos2c86c272005-03-23 17:32:29 -06002535{
2536 struct ipw2100_status *status = &priv->status_queue.drv[i];
2537 struct ipw2100_rx *u = priv->rx_buffers[i].rxp;
2538 u16 frame_type = status->status_fields & STATUS_TYPE_MASK;
2539
2540 switch (frame_type) {
2541 case COMMAND_STATUS_VAL:
2542 return (status->frame_size != sizeof(u->rx_data.command));
2543 case STATUS_CHANGE_VAL:
2544 return (status->frame_size != sizeof(u->rx_data.status));
2545 case HOST_NOTIFICATION_VAL:
2546 return (status->frame_size < sizeof(u->rx_data.notification));
2547 case P80211_DATA_VAL:
2548 case P8023_DATA_VAL:
2549#ifdef CONFIG_IPW2100_MONITOR
2550 return 0;
2551#else
2552 switch (WLAN_FC_GET_TYPE(u->rx_data.header.frame_ctl)) {
2553 case IEEE80211_FTYPE_MGMT:
2554 case IEEE80211_FTYPE_CTL:
2555 return 0;
2556 case IEEE80211_FTYPE_DATA:
2557 return (status->frame_size >
2558 IPW_MAX_802_11_PAYLOAD_LENGTH);
2559 }
2560#endif
2561 }
2562
2563 return 1;
2564}
2565
2566/*
2567 * ipw2100 interrupts are disabled at this point, and the ISR
2568 * is the only code that calls this method. So, we do not need
2569 * to play with any locks.
2570 *
2571 * RX Queue works as follows:
2572 *
2573 * Read index - firmware places packet in entry identified by the
2574 * Read index and advances Read index. In this manner,
2575 * Read index will always point to the next packet to
2576 * be filled--but not yet valid.
2577 *
2578 * Write index - driver fills this entry with an unused RBD entry.
2579 * This entry has not filled by the firmware yet.
2580 *
2581 * In between the W and R indexes are the RBDs that have been received
2582 * but not yet processed.
2583 *
2584 * The process of handling packets will start at WRITE + 1 and advance
2585 * until it reaches the READ index.
2586 *
2587 * The WRITE index is cached in the variable 'priv->rx_queue.next'.
2588 *
2589 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002590static void __ipw2100_rx_process(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06002591{
2592 struct ipw2100_bd_queue *rxq = &priv->rx_queue;
2593 struct ipw2100_status_queue *sq = &priv->status_queue;
2594 struct ipw2100_rx_packet *packet;
2595 u16 frame_type;
2596 u32 r, w, i, s;
2597 struct ipw2100_rx *u;
2598 struct ieee80211_rx_stats stats = {
2599 .mac_time = jiffies,
2600 };
2601
2602 read_register(priv->net_dev, IPW_MEM_HOST_SHARED_RX_READ_INDEX, &r);
2603 read_register(priv->net_dev, IPW_MEM_HOST_SHARED_RX_WRITE_INDEX, &w);
2604
2605 if (r >= rxq->entries) {
2606 IPW_DEBUG_RX("exit - bad read index\n");
2607 return;
2608 }
2609
2610 i = (rxq->next + 1) % rxq->entries;
2611 s = i;
2612 while (i != r) {
2613 /* IPW_DEBUG_RX("r = %d : w = %d : processing = %d\n",
2614 r, rxq->next, i); */
2615
2616 packet = &priv->rx_buffers[i];
2617
2618 /* Sync the DMA for the STATUS buffer so CPU is sure to get
2619 * the correct values */
James Ketrenosee8e3652005-09-14 09:47:29 -05002620 pci_dma_sync_single_for_cpu(priv->pci_dev,
2621 sq->nic +
2622 sizeof(struct ipw2100_status) * i,
2623 sizeof(struct ipw2100_status),
2624 PCI_DMA_FROMDEVICE);
James Ketrenos2c86c272005-03-23 17:32:29 -06002625
2626 /* Sync the DMA for the RX buffer so CPU is sure to get
2627 * the correct values */
2628 pci_dma_sync_single_for_cpu(priv->pci_dev, packet->dma_addr,
2629 sizeof(struct ipw2100_rx),
2630 PCI_DMA_FROMDEVICE);
2631
2632 if (unlikely(ipw2100_corruption_check(priv, i))) {
2633 ipw2100_corruption_detected(priv, i);
2634 goto increment;
2635 }
2636
2637 u = packet->rxp;
James Ketrenosee8e3652005-09-14 09:47:29 -05002638 frame_type = sq->drv[i].status_fields & STATUS_TYPE_MASK;
James Ketrenos2c86c272005-03-23 17:32:29 -06002639 stats.rssi = sq->drv[i].rssi + IPW2100_RSSI_TO_DBM;
2640 stats.len = sq->drv[i].frame_size;
2641
2642 stats.mask = 0;
2643 if (stats.rssi != 0)
2644 stats.mask |= IEEE80211_STATMASK_RSSI;
2645 stats.freq = IEEE80211_24GHZ_BAND;
2646
James Ketrenosee8e3652005-09-14 09:47:29 -05002647 IPW_DEBUG_RX("%s: '%s' frame type received (%d).\n",
2648 priv->net_dev->name, frame_types[frame_type],
2649 stats.len);
James Ketrenos2c86c272005-03-23 17:32:29 -06002650
2651 switch (frame_type) {
2652 case COMMAND_STATUS_VAL:
2653 /* Reset Rx watchdog */
James Ketrenosee8e3652005-09-14 09:47:29 -05002654 isr_rx_complete_command(priv, &u->rx_data.command);
James Ketrenos2c86c272005-03-23 17:32:29 -06002655 break;
2656
2657 case STATUS_CHANGE_VAL:
2658 isr_status_change(priv, u->rx_data.status);
2659 break;
2660
2661 case P80211_DATA_VAL:
2662 case P8023_DATA_VAL:
2663#ifdef CONFIG_IPW2100_MONITOR
2664 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
Stefan Rompf15745a72006-02-21 18:36:17 +08002665 isr_rx_monitor(priv, i, &stats);
James Ketrenos2c86c272005-03-23 17:32:29 -06002666 break;
2667 }
2668#endif
Zhu Yife5f8e22006-12-20 16:11:58 +08002669 if (stats.len < sizeof(struct ieee80211_hdr_3addr))
James Ketrenos2c86c272005-03-23 17:32:29 -06002670 break;
James Ketrenosee8e3652005-09-14 09:47:29 -05002671 switch (WLAN_FC_GET_TYPE(u->rx_data.header.frame_ctl)) {
James Ketrenos2c86c272005-03-23 17:32:29 -06002672 case IEEE80211_FTYPE_MGMT:
2673 ieee80211_rx_mgt(priv->ieee,
James Ketrenosee8e3652005-09-14 09:47:29 -05002674 &u->rx_data.header, &stats);
James Ketrenos2c86c272005-03-23 17:32:29 -06002675 break;
2676
2677 case IEEE80211_FTYPE_CTL:
2678 break;
2679
2680 case IEEE80211_FTYPE_DATA:
2681 isr_rx(priv, i, &stats);
2682 break;
2683
2684 }
2685 break;
2686 }
2687
James Ketrenosee8e3652005-09-14 09:47:29 -05002688 increment:
James Ketrenos2c86c272005-03-23 17:32:29 -06002689 /* clear status field associated with this RBD */
2690 rxq->drv[i].status.info.field = 0;
2691
2692 i = (i + 1) % rxq->entries;
2693 }
2694
2695 if (i != s) {
2696 /* backtrack one entry, wrapping to end if at 0 */
2697 rxq->next = (i ? i : rxq->entries) - 1;
2698
2699 write_register(priv->net_dev,
James Ketrenosee8e3652005-09-14 09:47:29 -05002700 IPW_MEM_HOST_SHARED_RX_WRITE_INDEX, rxq->next);
James Ketrenos2c86c272005-03-23 17:32:29 -06002701 }
2702}
2703
James Ketrenos2c86c272005-03-23 17:32:29 -06002704/*
2705 * __ipw2100_tx_process
2706 *
2707 * This routine will determine whether the next packet on
2708 * the fw_pend_list has been processed by the firmware yet.
2709 *
2710 * If not, then it does nothing and returns.
2711 *
2712 * If so, then it removes the item from the fw_pend_list, frees
2713 * any associated storage, and places the item back on the
2714 * free list of its source (either msg_free_list or tx_free_list)
2715 *
2716 * TX Queue works as follows:
2717 *
2718 * Read index - points to the next TBD that the firmware will
2719 * process. The firmware will read the data, and once
2720 * done processing, it will advance the Read index.
2721 *
2722 * Write index - driver fills this entry with an constructed TBD
2723 * entry. The Write index is not advanced until the
2724 * packet has been configured.
2725 *
2726 * In between the W and R indexes are the TBDs that have NOT been
2727 * processed. Lagging behind the R index are packets that have
2728 * been processed but have not been freed by the driver.
2729 *
2730 * In order to free old storage, an internal index will be maintained
2731 * that points to the next packet to be freed. When all used
2732 * packets have been freed, the oldest index will be the same as the
2733 * firmware's read index.
2734 *
2735 * The OLDEST index is cached in the variable 'priv->tx_queue.oldest'
2736 *
2737 * Because the TBD structure can not contain arbitrary data, the
2738 * driver must keep an internal queue of cached allocations such that
2739 * it can put that data back into the tx_free_list and msg_free_list
2740 * for use by future command and data packets.
2741 *
2742 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002743static int __ipw2100_tx_process(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06002744{
2745 struct ipw2100_bd_queue *txq = &priv->tx_queue;
James Ketrenosee8e3652005-09-14 09:47:29 -05002746 struct ipw2100_bd *tbd;
James Ketrenos2c86c272005-03-23 17:32:29 -06002747 struct list_head *element;
2748 struct ipw2100_tx_packet *packet;
2749 int descriptors_used;
2750 int e, i;
2751 u32 r, w, frag_num = 0;
2752
2753 if (list_empty(&priv->fw_pend_list))
2754 return 0;
2755
2756 element = priv->fw_pend_list.next;
2757
2758 packet = list_entry(element, struct ipw2100_tx_packet, list);
James Ketrenosee8e3652005-09-14 09:47:29 -05002759 tbd = &txq->drv[packet->index];
James Ketrenos2c86c272005-03-23 17:32:29 -06002760
2761 /* Determine how many TBD entries must be finished... */
2762 switch (packet->type) {
2763 case COMMAND:
2764 /* COMMAND uses only one slot; don't advance */
2765 descriptors_used = 1;
2766 e = txq->oldest;
2767 break;
2768
2769 case DATA:
2770 /* DATA uses two slots; advance and loop position. */
2771 descriptors_used = tbd->num_fragments;
James Ketrenosee8e3652005-09-14 09:47:29 -05002772 frag_num = tbd->num_fragments - 1;
James Ketrenos2c86c272005-03-23 17:32:29 -06002773 e = txq->oldest + frag_num;
2774 e %= txq->entries;
2775 break;
2776
2777 default:
Jiri Benc797b4f72005-08-25 20:03:27 -04002778 printk(KERN_WARNING DRV_NAME ": %s: Bad fw_pend_list entry!\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05002779 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06002780 return 0;
2781 }
2782
2783 /* if the last TBD is not done by NIC yet, then packet is
2784 * not ready to be released.
2785 *
2786 */
2787 read_register(priv->net_dev, IPW_MEM_HOST_SHARED_TX_QUEUE_READ_INDEX,
2788 &r);
2789 read_register(priv->net_dev, IPW_MEM_HOST_SHARED_TX_QUEUE_WRITE_INDEX,
2790 &w);
2791 if (w != txq->next)
Jiri Benc797b4f72005-08-25 20:03:27 -04002792 printk(KERN_WARNING DRV_NAME ": %s: write index mismatch\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06002793 priv->net_dev->name);
2794
James Ketrenosee8e3652005-09-14 09:47:29 -05002795 /*
James Ketrenos2c86c272005-03-23 17:32:29 -06002796 * txq->next is the index of the last packet written txq->oldest is
2797 * the index of the r is the index of the next packet to be read by
2798 * firmware
2799 */
2800
James Ketrenos2c86c272005-03-23 17:32:29 -06002801 /*
2802 * Quick graphic to help you visualize the following
2803 * if / else statement
2804 *
2805 * ===>| s---->|===============
2806 * e>|
2807 * | a | b | c | d | e | f | g | h | i | j | k | l
2808 * r---->|
2809 * w
2810 *
2811 * w - updated by driver
2812 * r - updated by firmware
2813 * s - start of oldest BD entry (txq->oldest)
2814 * e - end of oldest BD entry
2815 *
2816 */
2817 if (!((r <= w && (e < r || e >= w)) || (e < r && e >= w))) {
2818 IPW_DEBUG_TX("exit - no processed packets ready to release.\n");
2819 return 0;
2820 }
2821
2822 list_del(element);
2823 DEC_STAT(&priv->fw_pend_stat);
2824
Brice Goglin0f52bf92005-12-01 01:41:46 -08002825#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06002826 {
2827 int i = txq->oldest;
James Ketrenosee8e3652005-09-14 09:47:29 -05002828 IPW_DEBUG_TX("TX%d V=%p P=%04X T=%04X L=%d\n", i,
2829 &txq->drv[i],
2830 (u32) (txq->nic + i * sizeof(struct ipw2100_bd)),
2831 txq->drv[i].host_addr, txq->drv[i].buf_length);
James Ketrenos2c86c272005-03-23 17:32:29 -06002832
2833 if (packet->type == DATA) {
2834 i = (i + 1) % txq->entries;
2835
James Ketrenosee8e3652005-09-14 09:47:29 -05002836 IPW_DEBUG_TX("TX%d V=%p P=%04X T=%04X L=%d\n", i,
2837 &txq->drv[i],
2838 (u32) (txq->nic + i *
2839 sizeof(struct ipw2100_bd)),
2840 (u32) txq->drv[i].host_addr,
2841 txq->drv[i].buf_length);
James Ketrenos2c86c272005-03-23 17:32:29 -06002842 }
2843 }
2844#endif
2845
2846 switch (packet->type) {
2847 case DATA:
2848 if (txq->drv[txq->oldest].status.info.fields.txType != 0)
Jiri Benc797b4f72005-08-25 20:03:27 -04002849 printk(KERN_WARNING DRV_NAME ": %s: Queue mismatch. "
James Ketrenos2c86c272005-03-23 17:32:29 -06002850 "Expecting DATA TBD but pulled "
2851 "something else: ids %d=%d.\n",
2852 priv->net_dev->name, txq->oldest, packet->index);
2853
2854 /* DATA packet; we have to unmap and free the SKB */
James Ketrenos2c86c272005-03-23 17:32:29 -06002855 for (i = 0; i < frag_num; i++) {
James Ketrenosee8e3652005-09-14 09:47:29 -05002856 tbd = &txq->drv[(packet->index + 1 + i) % txq->entries];
James Ketrenos2c86c272005-03-23 17:32:29 -06002857
James Ketrenosee8e3652005-09-14 09:47:29 -05002858 IPW_DEBUG_TX("TX%d P=%08x L=%d\n",
2859 (packet->index + 1 + i) % txq->entries,
2860 tbd->host_addr, tbd->buf_length);
James Ketrenos2c86c272005-03-23 17:32:29 -06002861
2862 pci_unmap_single(priv->pci_dev,
2863 tbd->host_addr,
James Ketrenosee8e3652005-09-14 09:47:29 -05002864 tbd->buf_length, PCI_DMA_TODEVICE);
James Ketrenos2c86c272005-03-23 17:32:29 -06002865 }
2866
James Ketrenos2c86c272005-03-23 17:32:29 -06002867 ieee80211_txb_free(packet->info.d_struct.txb);
2868 packet->info.d_struct.txb = NULL;
2869
2870 list_add_tail(element, &priv->tx_free_list);
2871 INC_STAT(&priv->tx_free_stat);
2872
2873 /* We have a free slot in the Tx queue, so wake up the
2874 * transmit layer if it is stopped. */
James Ketrenos82328352005-08-24 22:33:31 -05002875 if (priv->status & STATUS_ASSOCIATED)
James Ketrenos2c86c272005-03-23 17:32:29 -06002876 netif_wake_queue(priv->net_dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06002877
2878 /* A packet was processed by the hardware, so update the
2879 * watchdog */
2880 priv->net_dev->trans_start = jiffies;
2881
2882 break;
2883
2884 case COMMAND:
2885 if (txq->drv[txq->oldest].status.info.fields.txType != 1)
Jiri Benc797b4f72005-08-25 20:03:27 -04002886 printk(KERN_WARNING DRV_NAME ": %s: Queue mismatch. "
James Ketrenos2c86c272005-03-23 17:32:29 -06002887 "Expecting COMMAND TBD but pulled "
2888 "something else: ids %d=%d.\n",
2889 priv->net_dev->name, txq->oldest, packet->index);
2890
Brice Goglin0f52bf92005-12-01 01:41:46 -08002891#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06002892 if (packet->info.c_struct.cmd->host_command_reg <
Ahmed S. Darwish22d57432007-02-05 18:56:22 +02002893 ARRAY_SIZE(command_types))
James Ketrenosee8e3652005-09-14 09:47:29 -05002894 IPW_DEBUG_TX("Command '%s (%d)' processed: %d.\n",
2895 command_types[packet->info.c_struct.cmd->
2896 host_command_reg],
2897 packet->info.c_struct.cmd->
2898 host_command_reg,
2899 packet->info.c_struct.cmd->cmd_status_reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06002900#endif
2901
2902 list_add_tail(element, &priv->msg_free_list);
2903 INC_STAT(&priv->msg_free_stat);
2904 break;
2905 }
2906
2907 /* advance oldest used TBD pointer to start of next entry */
2908 txq->oldest = (e + 1) % txq->entries;
2909 /* increase available TBDs number */
2910 txq->available += descriptors_used;
2911 SET_STAT(&priv->txq_stat, txq->available);
2912
2913 IPW_DEBUG_TX("packet latency (send to process) %ld jiffies\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05002914 jiffies - packet->jiffy_start);
James Ketrenos2c86c272005-03-23 17:32:29 -06002915
2916 return (!list_empty(&priv->fw_pend_list));
2917}
2918
James Ketrenos2c86c272005-03-23 17:32:29 -06002919static inline void __ipw2100_tx_complete(struct ipw2100_priv *priv)
2920{
2921 int i = 0;
2922
James Ketrenosee8e3652005-09-14 09:47:29 -05002923 while (__ipw2100_tx_process(priv) && i < 200)
2924 i++;
James Ketrenos2c86c272005-03-23 17:32:29 -06002925
2926 if (i == 200) {
Jiri Benc19f7f742005-08-25 20:02:10 -04002927 printk(KERN_WARNING DRV_NAME ": "
James Ketrenos2c86c272005-03-23 17:32:29 -06002928 "%s: Driver is running slow (%d iters).\n",
2929 priv->net_dev->name, i);
2930 }
2931}
2932
Jiri Benc19f7f742005-08-25 20:02:10 -04002933static void ipw2100_tx_send_commands(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06002934{
2935 struct list_head *element;
2936 struct ipw2100_tx_packet *packet;
2937 struct ipw2100_bd_queue *txq = &priv->tx_queue;
2938 struct ipw2100_bd *tbd;
2939 int next = txq->next;
2940
2941 while (!list_empty(&priv->msg_pend_list)) {
2942 /* if there isn't enough space in TBD queue, then
2943 * don't stuff a new one in.
2944 * NOTE: 3 are needed as a command will take one,
2945 * and there is a minimum of 2 that must be
2946 * maintained between the r and w indexes
2947 */
2948 if (txq->available <= 3) {
2949 IPW_DEBUG_TX("no room in tx_queue\n");
2950 break;
2951 }
2952
2953 element = priv->msg_pend_list.next;
2954 list_del(element);
2955 DEC_STAT(&priv->msg_pend_stat);
2956
James Ketrenosee8e3652005-09-14 09:47:29 -05002957 packet = list_entry(element, struct ipw2100_tx_packet, list);
James Ketrenos2c86c272005-03-23 17:32:29 -06002958
2959 IPW_DEBUG_TX("using TBD at virt=%p, phys=%p\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05002960 &txq->drv[txq->next],
2961 (void *)(txq->nic + txq->next *
2962 sizeof(struct ipw2100_bd)));
James Ketrenos2c86c272005-03-23 17:32:29 -06002963
2964 packet->index = txq->next;
2965
2966 tbd = &txq->drv[txq->next];
2967
2968 /* initialize TBD */
2969 tbd->host_addr = packet->info.c_struct.cmd_phys;
2970 tbd->buf_length = sizeof(struct ipw2100_cmd_header);
2971 /* not marking number of fragments causes problems
2972 * with f/w debug version */
2973 tbd->num_fragments = 1;
2974 tbd->status.info.field =
James Ketrenosee8e3652005-09-14 09:47:29 -05002975 IPW_BD_STATUS_TX_FRAME_COMMAND |
2976 IPW_BD_STATUS_TX_INTERRUPT_ENABLE;
James Ketrenos2c86c272005-03-23 17:32:29 -06002977
2978 /* update TBD queue counters */
2979 txq->next++;
2980 txq->next %= txq->entries;
2981 txq->available--;
2982 DEC_STAT(&priv->txq_stat);
2983
2984 list_add_tail(element, &priv->fw_pend_list);
2985 INC_STAT(&priv->fw_pend_stat);
2986 }
2987
2988 if (txq->next != next) {
2989 /* kick off the DMA by notifying firmware the
2990 * write index has moved; make sure TBD stores are sync'd */
2991 wmb();
2992 write_register(priv->net_dev,
2993 IPW_MEM_HOST_SHARED_TX_QUEUE_WRITE_INDEX,
2994 txq->next);
2995 }
2996}
2997
James Ketrenos2c86c272005-03-23 17:32:29 -06002998/*
Jiri Benc19f7f742005-08-25 20:02:10 -04002999 * ipw2100_tx_send_data
James Ketrenos2c86c272005-03-23 17:32:29 -06003000 *
3001 */
Jiri Benc19f7f742005-08-25 20:02:10 -04003002static void ipw2100_tx_send_data(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06003003{
3004 struct list_head *element;
3005 struct ipw2100_tx_packet *packet;
3006 struct ipw2100_bd_queue *txq = &priv->tx_queue;
3007 struct ipw2100_bd *tbd;
3008 int next = txq->next;
James Ketrenosee8e3652005-09-14 09:47:29 -05003009 int i = 0;
James Ketrenos2c86c272005-03-23 17:32:29 -06003010 struct ipw2100_data_header *ipw_hdr;
James Ketrenos99a4b232005-09-21 12:23:25 -05003011 struct ieee80211_hdr_3addr *hdr;
James Ketrenos2c86c272005-03-23 17:32:29 -06003012
3013 while (!list_empty(&priv->tx_pend_list)) {
3014 /* if there isn't enough space in TBD queue, then
3015 * don't stuff a new one in.
3016 * NOTE: 4 are needed as a data will take two,
3017 * and there is a minimum of 2 that must be
3018 * maintained between the r and w indexes
3019 */
3020 element = priv->tx_pend_list.next;
James Ketrenosee8e3652005-09-14 09:47:29 -05003021 packet = list_entry(element, struct ipw2100_tx_packet, list);
James Ketrenos2c86c272005-03-23 17:32:29 -06003022
3023 if (unlikely(1 + packet->info.d_struct.txb->nr_frags >
3024 IPW_MAX_BDS)) {
3025 /* TODO: Support merging buffers if more than
3026 * IPW_MAX_BDS are used */
James Ketrenosee8e3652005-09-14 09:47:29 -05003027 IPW_DEBUG_INFO("%s: Maximum BD theshold exceeded. "
3028 "Increase fragmentation level.\n",
3029 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06003030 }
3031
James Ketrenosee8e3652005-09-14 09:47:29 -05003032 if (txq->available <= 3 + packet->info.d_struct.txb->nr_frags) {
James Ketrenos2c86c272005-03-23 17:32:29 -06003033 IPW_DEBUG_TX("no room in tx_queue\n");
3034 break;
3035 }
3036
3037 list_del(element);
3038 DEC_STAT(&priv->tx_pend_stat);
3039
3040 tbd = &txq->drv[txq->next];
3041
3042 packet->index = txq->next;
3043
3044 ipw_hdr = packet->info.d_struct.data;
James Ketrenos99a4b232005-09-21 12:23:25 -05003045 hdr = (struct ieee80211_hdr_3addr *)packet->info.d_struct.txb->
James Ketrenosee8e3652005-09-14 09:47:29 -05003046 fragments[0]->data;
James Ketrenos2c86c272005-03-23 17:32:29 -06003047
3048 if (priv->ieee->iw_mode == IW_MODE_INFRA) {
3049 /* To DS: Addr1 = BSSID, Addr2 = SA,
3050 Addr3 = DA */
3051 memcpy(ipw_hdr->src_addr, hdr->addr2, ETH_ALEN);
3052 memcpy(ipw_hdr->dst_addr, hdr->addr3, ETH_ALEN);
3053 } else if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
3054 /* not From/To DS: Addr1 = DA, Addr2 = SA,
3055 Addr3 = BSSID */
3056 memcpy(ipw_hdr->src_addr, hdr->addr2, ETH_ALEN);
3057 memcpy(ipw_hdr->dst_addr, hdr->addr1, ETH_ALEN);
3058 }
3059
3060 ipw_hdr->host_command_reg = SEND;
3061 ipw_hdr->host_command_reg1 = 0;
3062
3063 /* For now we only support host based encryption */
3064 ipw_hdr->needs_encryption = 0;
3065 ipw_hdr->encrypted = packet->info.d_struct.txb->encrypted;
3066 if (packet->info.d_struct.txb->nr_frags > 1)
3067 ipw_hdr->fragment_size =
James Ketrenosee8e3652005-09-14 09:47:29 -05003068 packet->info.d_struct.txb->frag_size -
3069 IEEE80211_3ADDR_LEN;
James Ketrenos2c86c272005-03-23 17:32:29 -06003070 else
3071 ipw_hdr->fragment_size = 0;
3072
3073 tbd->host_addr = packet->info.d_struct.data_phys;
3074 tbd->buf_length = sizeof(struct ipw2100_data_header);
3075 tbd->num_fragments = 1 + packet->info.d_struct.txb->nr_frags;
3076 tbd->status.info.field =
James Ketrenosee8e3652005-09-14 09:47:29 -05003077 IPW_BD_STATUS_TX_FRAME_802_3 |
3078 IPW_BD_STATUS_TX_FRAME_NOT_LAST_FRAGMENT;
James Ketrenos2c86c272005-03-23 17:32:29 -06003079 txq->next++;
3080 txq->next %= txq->entries;
3081
James Ketrenosee8e3652005-09-14 09:47:29 -05003082 IPW_DEBUG_TX("data header tbd TX%d P=%08x L=%d\n",
3083 packet->index, tbd->host_addr, tbd->buf_length);
Brice Goglin0f52bf92005-12-01 01:41:46 -08003084#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06003085 if (packet->info.d_struct.txb->nr_frags > 1)
3086 IPW_DEBUG_FRAG("fragment Tx: %d frames\n",
3087 packet->info.d_struct.txb->nr_frags);
3088#endif
3089
James Ketrenosee8e3652005-09-14 09:47:29 -05003090 for (i = 0; i < packet->info.d_struct.txb->nr_frags; i++) {
3091 tbd = &txq->drv[txq->next];
James Ketrenos2c86c272005-03-23 17:32:29 -06003092 if (i == packet->info.d_struct.txb->nr_frags - 1)
3093 tbd->status.info.field =
James Ketrenosee8e3652005-09-14 09:47:29 -05003094 IPW_BD_STATUS_TX_FRAME_802_3 |
3095 IPW_BD_STATUS_TX_INTERRUPT_ENABLE;
James Ketrenos2c86c272005-03-23 17:32:29 -06003096 else
3097 tbd->status.info.field =
James Ketrenosee8e3652005-09-14 09:47:29 -05003098 IPW_BD_STATUS_TX_FRAME_802_3 |
3099 IPW_BD_STATUS_TX_FRAME_NOT_LAST_FRAGMENT;
James Ketrenos2c86c272005-03-23 17:32:29 -06003100
3101 tbd->buf_length = packet->info.d_struct.txb->
James Ketrenosee8e3652005-09-14 09:47:29 -05003102 fragments[i]->len - IEEE80211_3ADDR_LEN;
James Ketrenos2c86c272005-03-23 17:32:29 -06003103
James Ketrenosee8e3652005-09-14 09:47:29 -05003104 tbd->host_addr = pci_map_single(priv->pci_dev,
3105 packet->info.d_struct.
3106 txb->fragments[i]->
3107 data +
3108 IEEE80211_3ADDR_LEN,
3109 tbd->buf_length,
3110 PCI_DMA_TODEVICE);
James Ketrenos2c86c272005-03-23 17:32:29 -06003111
James Ketrenosee8e3652005-09-14 09:47:29 -05003112 IPW_DEBUG_TX("data frag tbd TX%d P=%08x L=%d\n",
3113 txq->next, tbd->host_addr,
3114 tbd->buf_length);
James Ketrenos2c86c272005-03-23 17:32:29 -06003115
James Ketrenosee8e3652005-09-14 09:47:29 -05003116 pci_dma_sync_single_for_device(priv->pci_dev,
3117 tbd->host_addr,
3118 tbd->buf_length,
3119 PCI_DMA_TODEVICE);
James Ketrenos2c86c272005-03-23 17:32:29 -06003120
3121 txq->next++;
3122 txq->next %= txq->entries;
James Ketrenosee8e3652005-09-14 09:47:29 -05003123 }
James Ketrenos2c86c272005-03-23 17:32:29 -06003124
3125 txq->available -= 1 + packet->info.d_struct.txb->nr_frags;
3126 SET_STAT(&priv->txq_stat, txq->available);
3127
3128 list_add_tail(element, &priv->fw_pend_list);
3129 INC_STAT(&priv->fw_pend_stat);
3130 }
3131
3132 if (txq->next != next) {
3133 /* kick off the DMA by notifying firmware the
3134 * write index has moved; make sure TBD stores are sync'd */
3135 write_register(priv->net_dev,
3136 IPW_MEM_HOST_SHARED_TX_QUEUE_WRITE_INDEX,
3137 txq->next);
3138 }
James Ketrenosee8e3652005-09-14 09:47:29 -05003139 return;
James Ketrenos2c86c272005-03-23 17:32:29 -06003140}
3141
3142static void ipw2100_irq_tasklet(struct ipw2100_priv *priv)
3143{
3144 struct net_device *dev = priv->net_dev;
3145 unsigned long flags;
3146 u32 inta, tmp;
3147
3148 spin_lock_irqsave(&priv->low_lock, flags);
3149 ipw2100_disable_interrupts(priv);
3150
3151 read_register(dev, IPW_REG_INTA, &inta);
3152
3153 IPW_DEBUG_ISR("enter - INTA: 0x%08lX\n",
3154 (unsigned long)inta & IPW_INTERRUPT_MASK);
3155
3156 priv->in_isr++;
3157 priv->interrupts++;
3158
3159 /* We do not loop and keep polling for more interrupts as this
3160 * is frowned upon and doesn't play nicely with other potentially
3161 * chained IRQs */
3162 IPW_DEBUG_ISR("INTA: 0x%08lX\n",
3163 (unsigned long)inta & IPW_INTERRUPT_MASK);
3164
3165 if (inta & IPW2100_INTA_FATAL_ERROR) {
Jiri Benc797b4f72005-08-25 20:03:27 -04003166 printk(KERN_WARNING DRV_NAME
James Ketrenosee8e3652005-09-14 09:47:29 -05003167 ": Fatal interrupt. Scheduling firmware restart.\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06003168 priv->inta_other++;
James Ketrenosee8e3652005-09-14 09:47:29 -05003169 write_register(dev, IPW_REG_INTA, IPW2100_INTA_FATAL_ERROR);
James Ketrenos2c86c272005-03-23 17:32:29 -06003170
3171 read_nic_dword(dev, IPW_NIC_FATAL_ERROR, &priv->fatal_error);
3172 IPW_DEBUG_INFO("%s: Fatal error value: 0x%08X\n",
3173 priv->net_dev->name, priv->fatal_error);
3174
3175 read_nic_dword(dev, IPW_ERROR_ADDR(priv->fatal_error), &tmp);
3176 IPW_DEBUG_INFO("%s: Fatal error address value: 0x%08X\n",
3177 priv->net_dev->name, tmp);
3178
3179 /* Wake up any sleeping jobs */
3180 schedule_reset(priv);
3181 }
3182
3183 if (inta & IPW2100_INTA_PARITY_ERROR) {
James Ketrenosee8e3652005-09-14 09:47:29 -05003184 printk(KERN_ERR DRV_NAME
3185 ": ***** PARITY ERROR INTERRUPT !!!! \n");
James Ketrenos2c86c272005-03-23 17:32:29 -06003186 priv->inta_other++;
James Ketrenosee8e3652005-09-14 09:47:29 -05003187 write_register(dev, IPW_REG_INTA, IPW2100_INTA_PARITY_ERROR);
James Ketrenos2c86c272005-03-23 17:32:29 -06003188 }
3189
3190 if (inta & IPW2100_INTA_RX_TRANSFER) {
3191 IPW_DEBUG_ISR("RX interrupt\n");
3192
3193 priv->rx_interrupts++;
3194
James Ketrenosee8e3652005-09-14 09:47:29 -05003195 write_register(dev, IPW_REG_INTA, IPW2100_INTA_RX_TRANSFER);
James Ketrenos2c86c272005-03-23 17:32:29 -06003196
3197 __ipw2100_rx_process(priv);
3198 __ipw2100_tx_complete(priv);
3199 }
3200
3201 if (inta & IPW2100_INTA_TX_TRANSFER) {
3202 IPW_DEBUG_ISR("TX interrupt\n");
3203
3204 priv->tx_interrupts++;
3205
James Ketrenosee8e3652005-09-14 09:47:29 -05003206 write_register(dev, IPW_REG_INTA, IPW2100_INTA_TX_TRANSFER);
James Ketrenos2c86c272005-03-23 17:32:29 -06003207
3208 __ipw2100_tx_complete(priv);
Jiri Benc19f7f742005-08-25 20:02:10 -04003209 ipw2100_tx_send_commands(priv);
3210 ipw2100_tx_send_data(priv);
James Ketrenos2c86c272005-03-23 17:32:29 -06003211 }
3212
3213 if (inta & IPW2100_INTA_TX_COMPLETE) {
3214 IPW_DEBUG_ISR("TX complete\n");
3215 priv->inta_other++;
James Ketrenosee8e3652005-09-14 09:47:29 -05003216 write_register(dev, IPW_REG_INTA, IPW2100_INTA_TX_COMPLETE);
James Ketrenos2c86c272005-03-23 17:32:29 -06003217
3218 __ipw2100_tx_complete(priv);
3219 }
3220
3221 if (inta & IPW2100_INTA_EVENT_INTERRUPT) {
3222 /* ipw2100_handle_event(dev); */
3223 priv->inta_other++;
James Ketrenosee8e3652005-09-14 09:47:29 -05003224 write_register(dev, IPW_REG_INTA, IPW2100_INTA_EVENT_INTERRUPT);
James Ketrenos2c86c272005-03-23 17:32:29 -06003225 }
3226
3227 if (inta & IPW2100_INTA_FW_INIT_DONE) {
3228 IPW_DEBUG_ISR("FW init done interrupt\n");
3229 priv->inta_other++;
3230
3231 read_register(dev, IPW_REG_INTA, &tmp);
3232 if (tmp & (IPW2100_INTA_FATAL_ERROR |
3233 IPW2100_INTA_PARITY_ERROR)) {
James Ketrenosee8e3652005-09-14 09:47:29 -05003234 write_register(dev, IPW_REG_INTA,
3235 IPW2100_INTA_FATAL_ERROR |
3236 IPW2100_INTA_PARITY_ERROR);
James Ketrenos2c86c272005-03-23 17:32:29 -06003237 }
3238
James Ketrenosee8e3652005-09-14 09:47:29 -05003239 write_register(dev, IPW_REG_INTA, IPW2100_INTA_FW_INIT_DONE);
James Ketrenos2c86c272005-03-23 17:32:29 -06003240 }
3241
3242 if (inta & IPW2100_INTA_STATUS_CHANGE) {
3243 IPW_DEBUG_ISR("Status change interrupt\n");
3244 priv->inta_other++;
James Ketrenosee8e3652005-09-14 09:47:29 -05003245 write_register(dev, IPW_REG_INTA, IPW2100_INTA_STATUS_CHANGE);
James Ketrenos2c86c272005-03-23 17:32:29 -06003246 }
3247
3248 if (inta & IPW2100_INTA_SLAVE_MODE_HOST_COMMAND_DONE) {
3249 IPW_DEBUG_ISR("slave host mode interrupt\n");
3250 priv->inta_other++;
James Ketrenosee8e3652005-09-14 09:47:29 -05003251 write_register(dev, IPW_REG_INTA,
3252 IPW2100_INTA_SLAVE_MODE_HOST_COMMAND_DONE);
James Ketrenos2c86c272005-03-23 17:32:29 -06003253 }
3254
3255 priv->in_isr--;
3256 ipw2100_enable_interrupts(priv);
3257
3258 spin_unlock_irqrestore(&priv->low_lock, flags);
3259
3260 IPW_DEBUG_ISR("exit\n");
3261}
3262
David Howells7d12e782006-10-05 14:55:46 +01003263static irqreturn_t ipw2100_interrupt(int irq, void *data)
James Ketrenos2c86c272005-03-23 17:32:29 -06003264{
3265 struct ipw2100_priv *priv = data;
3266 u32 inta, inta_mask;
3267
3268 if (!data)
3269 return IRQ_NONE;
3270
James Ketrenosee8e3652005-09-14 09:47:29 -05003271 spin_lock(&priv->low_lock);
James Ketrenos2c86c272005-03-23 17:32:29 -06003272
3273 /* We check to see if we should be ignoring interrupts before
3274 * we touch the hardware. During ucode load if we try and handle
3275 * an interrupt we can cause keyboard problems as well as cause
3276 * the ucode to fail to initialize */
3277 if (!(priv->status & STATUS_INT_ENABLED)) {
3278 /* Shared IRQ */
3279 goto none;
3280 }
3281
3282 read_register(priv->net_dev, IPW_REG_INTA_MASK, &inta_mask);
3283 read_register(priv->net_dev, IPW_REG_INTA, &inta);
3284
3285 if (inta == 0xFFFFFFFF) {
3286 /* Hardware disappeared */
Jiri Benc797b4f72005-08-25 20:03:27 -04003287 printk(KERN_WARNING DRV_NAME ": IRQ INTA == 0xFFFFFFFF\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06003288 goto none;
3289 }
3290
3291 inta &= IPW_INTERRUPT_MASK;
3292
3293 if (!(inta & inta_mask)) {
3294 /* Shared interrupt */
3295 goto none;
3296 }
3297
3298 /* We disable the hardware interrupt here just to prevent unneeded
3299 * calls to be made. We disable this again within the actual
3300 * work tasklet, so if another part of the code re-enables the
3301 * interrupt, that is fine */
3302 ipw2100_disable_interrupts(priv);
3303
3304 tasklet_schedule(&priv->irq_tasklet);
James Ketrenosee8e3652005-09-14 09:47:29 -05003305 spin_unlock(&priv->low_lock);
James Ketrenos2c86c272005-03-23 17:32:29 -06003306
3307 return IRQ_HANDLED;
James Ketrenosee8e3652005-09-14 09:47:29 -05003308 none:
James Ketrenos2c86c272005-03-23 17:32:29 -06003309 spin_unlock(&priv->low_lock);
3310 return IRQ_NONE;
3311}
3312
James Ketrenos3a5becf2005-09-21 12:23:37 -05003313static int ipw2100_tx(struct ieee80211_txb *txb, struct net_device *dev,
3314 int pri)
James Ketrenos2c86c272005-03-23 17:32:29 -06003315{
3316 struct ipw2100_priv *priv = ieee80211_priv(dev);
3317 struct list_head *element;
3318 struct ipw2100_tx_packet *packet;
3319 unsigned long flags;
3320
3321 spin_lock_irqsave(&priv->low_lock, flags);
3322
3323 if (!(priv->status & STATUS_ASSOCIATED)) {
3324 IPW_DEBUG_INFO("Can not transmit when not connected.\n");
3325 priv->ieee->stats.tx_carrier_errors++;
3326 netif_stop_queue(dev);
3327 goto fail_unlock;
3328 }
3329
3330 if (list_empty(&priv->tx_free_list))
3331 goto fail_unlock;
3332
3333 element = priv->tx_free_list.next;
3334 packet = list_entry(element, struct ipw2100_tx_packet, list);
3335
3336 packet->info.d_struct.txb = txb;
3337
James Ketrenosee8e3652005-09-14 09:47:29 -05003338 IPW_DEBUG_TX("Sending fragment (%d bytes):\n", txb->fragments[0]->len);
3339 printk_buf(IPW_DL_TX, txb->fragments[0]->data, txb->fragments[0]->len);
James Ketrenos2c86c272005-03-23 17:32:29 -06003340
3341 packet->jiffy_start = jiffies;
3342
3343 list_del(element);
3344 DEC_STAT(&priv->tx_free_stat);
3345
3346 list_add_tail(element, &priv->tx_pend_list);
3347 INC_STAT(&priv->tx_pend_stat);
3348
Jiri Benc19f7f742005-08-25 20:02:10 -04003349 ipw2100_tx_send_data(priv);
James Ketrenos2c86c272005-03-23 17:32:29 -06003350
3351 spin_unlock_irqrestore(&priv->low_lock, flags);
3352 return 0;
3353
James Ketrenosee8e3652005-09-14 09:47:29 -05003354 fail_unlock:
James Ketrenos2c86c272005-03-23 17:32:29 -06003355 netif_stop_queue(dev);
3356 spin_unlock_irqrestore(&priv->low_lock, flags);
3357 return 1;
3358}
3359
James Ketrenos2c86c272005-03-23 17:32:29 -06003360static int ipw2100_msg_allocate(struct ipw2100_priv *priv)
3361{
3362 int i, j, err = -EINVAL;
3363 void *v;
3364 dma_addr_t p;
3365
James Ketrenosee8e3652005-09-14 09:47:29 -05003366 priv->msg_buffers =
3367 (struct ipw2100_tx_packet *)kmalloc(IPW_COMMAND_POOL_SIZE *
3368 sizeof(struct
3369 ipw2100_tx_packet),
3370 GFP_KERNEL);
James Ketrenos2c86c272005-03-23 17:32:29 -06003371 if (!priv->msg_buffers) {
Jiri Benc797b4f72005-08-25 20:03:27 -04003372 printk(KERN_ERR DRV_NAME ": %s: PCI alloc failed for msg "
James Ketrenos2c86c272005-03-23 17:32:29 -06003373 "buffers.\n", priv->net_dev->name);
3374 return -ENOMEM;
3375 }
3376
3377 for (i = 0; i < IPW_COMMAND_POOL_SIZE; i++) {
James Ketrenosee8e3652005-09-14 09:47:29 -05003378 v = pci_alloc_consistent(priv->pci_dev,
3379 sizeof(struct ipw2100_cmd_header), &p);
James Ketrenos2c86c272005-03-23 17:32:29 -06003380 if (!v) {
Jiri Benc797b4f72005-08-25 20:03:27 -04003381 printk(KERN_ERR DRV_NAME ": "
James Ketrenos2c86c272005-03-23 17:32:29 -06003382 "%s: PCI alloc failed for msg "
James Ketrenosee8e3652005-09-14 09:47:29 -05003383 "buffers.\n", priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06003384 err = -ENOMEM;
3385 break;
3386 }
3387
3388 memset(v, 0, sizeof(struct ipw2100_cmd_header));
3389
3390 priv->msg_buffers[i].type = COMMAND;
3391 priv->msg_buffers[i].info.c_struct.cmd =
James Ketrenosee8e3652005-09-14 09:47:29 -05003392 (struct ipw2100_cmd_header *)v;
James Ketrenos2c86c272005-03-23 17:32:29 -06003393 priv->msg_buffers[i].info.c_struct.cmd_phys = p;
3394 }
3395
3396 if (i == IPW_COMMAND_POOL_SIZE)
3397 return 0;
3398
3399 for (j = 0; j < i; j++) {
James Ketrenosee8e3652005-09-14 09:47:29 -05003400 pci_free_consistent(priv->pci_dev,
3401 sizeof(struct ipw2100_cmd_header),
3402 priv->msg_buffers[j].info.c_struct.cmd,
3403 priv->msg_buffers[j].info.c_struct.
3404 cmd_phys);
James Ketrenos2c86c272005-03-23 17:32:29 -06003405 }
3406
3407 kfree(priv->msg_buffers);
3408 priv->msg_buffers = NULL;
3409
3410 return err;
3411}
3412
3413static int ipw2100_msg_initialize(struct ipw2100_priv *priv)
3414{
3415 int i;
3416
3417 INIT_LIST_HEAD(&priv->msg_free_list);
3418 INIT_LIST_HEAD(&priv->msg_pend_list);
3419
3420 for (i = 0; i < IPW_COMMAND_POOL_SIZE; i++)
3421 list_add_tail(&priv->msg_buffers[i].list, &priv->msg_free_list);
3422 SET_STAT(&priv->msg_free_stat, i);
3423
3424 return 0;
3425}
3426
3427static void ipw2100_msg_free(struct ipw2100_priv *priv)
3428{
3429 int i;
3430
3431 if (!priv->msg_buffers)
3432 return;
3433
3434 for (i = 0; i < IPW_COMMAND_POOL_SIZE; i++) {
3435 pci_free_consistent(priv->pci_dev,
3436 sizeof(struct ipw2100_cmd_header),
3437 priv->msg_buffers[i].info.c_struct.cmd,
James Ketrenosee8e3652005-09-14 09:47:29 -05003438 priv->msg_buffers[i].info.c_struct.
3439 cmd_phys);
James Ketrenos2c86c272005-03-23 17:32:29 -06003440 }
3441
3442 kfree(priv->msg_buffers);
3443 priv->msg_buffers = NULL;
3444}
3445
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003446static ssize_t show_pci(struct device *d, struct device_attribute *attr,
3447 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003448{
3449 struct pci_dev *pci_dev = container_of(d, struct pci_dev, dev);
3450 char *out = buf;
3451 int i, j;
3452 u32 val;
3453
3454 for (i = 0; i < 16; i++) {
3455 out += sprintf(out, "[%08X] ", i * 16);
3456 for (j = 0; j < 16; j += 4) {
3457 pci_read_config_dword(pci_dev, i * 16 + j, &val);
3458 out += sprintf(out, "%08X ", val);
3459 }
3460 out += sprintf(out, "\n");
3461 }
3462
3463 return out - buf;
3464}
James Ketrenosee8e3652005-09-14 09:47:29 -05003465
James Ketrenos2c86c272005-03-23 17:32:29 -06003466static DEVICE_ATTR(pci, S_IRUGO, show_pci, NULL);
3467
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003468static ssize_t show_cfg(struct device *d, struct device_attribute *attr,
3469 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003470{
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003471 struct ipw2100_priv *p = d->driver_data;
James Ketrenos2c86c272005-03-23 17:32:29 -06003472 return sprintf(buf, "0x%08x\n", (int)p->config);
3473}
James Ketrenosee8e3652005-09-14 09:47:29 -05003474
James Ketrenos2c86c272005-03-23 17:32:29 -06003475static DEVICE_ATTR(cfg, S_IRUGO, show_cfg, NULL);
3476
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003477static ssize_t show_status(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003478 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003479{
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003480 struct ipw2100_priv *p = d->driver_data;
James Ketrenos2c86c272005-03-23 17:32:29 -06003481 return sprintf(buf, "0x%08x\n", (int)p->status);
3482}
James Ketrenosee8e3652005-09-14 09:47:29 -05003483
James Ketrenos2c86c272005-03-23 17:32:29 -06003484static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
3485
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003486static ssize_t show_capability(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003487 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003488{
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003489 struct ipw2100_priv *p = d->driver_data;
James Ketrenos2c86c272005-03-23 17:32:29 -06003490 return sprintf(buf, "0x%08x\n", (int)p->capability);
3491}
James Ketrenos2c86c272005-03-23 17:32:29 -06003492
James Ketrenosee8e3652005-09-14 09:47:29 -05003493static DEVICE_ATTR(capability, S_IRUGO, show_capability, NULL);
James Ketrenos2c86c272005-03-23 17:32:29 -06003494
3495#define IPW2100_REG(x) { IPW_ ##x, #x }
Jiri Bencc4aee8c2005-08-25 20:04:43 -04003496static const struct {
James Ketrenos2c86c272005-03-23 17:32:29 -06003497 u32 addr;
3498 const char *name;
3499} hw_data[] = {
James Ketrenosee8e3652005-09-14 09:47:29 -05003500IPW2100_REG(REG_GP_CNTRL),
3501 IPW2100_REG(REG_GPIO),
3502 IPW2100_REG(REG_INTA),
3503 IPW2100_REG(REG_INTA_MASK), IPW2100_REG(REG_RESET_REG),};
James Ketrenos2c86c272005-03-23 17:32:29 -06003504#define IPW2100_NIC(x, s) { x, #x, s }
Jiri Bencc4aee8c2005-08-25 20:04:43 -04003505static const struct {
James Ketrenos2c86c272005-03-23 17:32:29 -06003506 u32 addr;
3507 const char *name;
3508 size_t size;
3509} nic_data[] = {
James Ketrenosee8e3652005-09-14 09:47:29 -05003510IPW2100_NIC(IPW2100_CONTROL_REG, 2),
3511 IPW2100_NIC(0x210014, 1), IPW2100_NIC(0x210000, 1),};
James Ketrenos2c86c272005-03-23 17:32:29 -06003512#define IPW2100_ORD(x, d) { IPW_ORD_ ##x, #x, d }
Jiri Bencc4aee8c2005-08-25 20:04:43 -04003513static const struct {
James Ketrenos2c86c272005-03-23 17:32:29 -06003514 u8 index;
3515 const char *name;
3516 const char *desc;
3517} ord_data[] = {
James Ketrenosee8e3652005-09-14 09:47:29 -05003518IPW2100_ORD(STAT_TX_HOST_REQUESTS, "requested Host Tx's (MSDU)"),
3519 IPW2100_ORD(STAT_TX_HOST_COMPLETE,
3520 "successful Host Tx's (MSDU)"),
3521 IPW2100_ORD(STAT_TX_DIR_DATA,
3522 "successful Directed Tx's (MSDU)"),
3523 IPW2100_ORD(STAT_TX_DIR_DATA1,
3524 "successful Directed Tx's (MSDU) @ 1MB"),
3525 IPW2100_ORD(STAT_TX_DIR_DATA2,
3526 "successful Directed Tx's (MSDU) @ 2MB"),
3527 IPW2100_ORD(STAT_TX_DIR_DATA5_5,
3528 "successful Directed Tx's (MSDU) @ 5_5MB"),
3529 IPW2100_ORD(STAT_TX_DIR_DATA11,
3530 "successful Directed Tx's (MSDU) @ 11MB"),
3531 IPW2100_ORD(STAT_TX_NODIR_DATA1,
3532 "successful Non_Directed Tx's (MSDU) @ 1MB"),
3533 IPW2100_ORD(STAT_TX_NODIR_DATA2,
3534 "successful Non_Directed Tx's (MSDU) @ 2MB"),
3535 IPW2100_ORD(STAT_TX_NODIR_DATA5_5,
3536 "successful Non_Directed Tx's (MSDU) @ 5.5MB"),
3537 IPW2100_ORD(STAT_TX_NODIR_DATA11,
3538 "successful Non_Directed Tx's (MSDU) @ 11MB"),
3539 IPW2100_ORD(STAT_NULL_DATA, "successful NULL data Tx's"),
3540 IPW2100_ORD(STAT_TX_RTS, "successful Tx RTS"),
3541 IPW2100_ORD(STAT_TX_CTS, "successful Tx CTS"),
3542 IPW2100_ORD(STAT_TX_ACK, "successful Tx ACK"),
3543 IPW2100_ORD(STAT_TX_ASSN, "successful Association Tx's"),
3544 IPW2100_ORD(STAT_TX_ASSN_RESP,
3545 "successful Association response Tx's"),
3546 IPW2100_ORD(STAT_TX_REASSN,
3547 "successful Reassociation Tx's"),
3548 IPW2100_ORD(STAT_TX_REASSN_RESP,
3549 "successful Reassociation response Tx's"),
3550 IPW2100_ORD(STAT_TX_PROBE,
3551 "probes successfully transmitted"),
3552 IPW2100_ORD(STAT_TX_PROBE_RESP,
3553 "probe responses successfully transmitted"),
3554 IPW2100_ORD(STAT_TX_BEACON, "tx beacon"),
3555 IPW2100_ORD(STAT_TX_ATIM, "Tx ATIM"),
3556 IPW2100_ORD(STAT_TX_DISASSN,
3557 "successful Disassociation TX"),
3558 IPW2100_ORD(STAT_TX_AUTH, "successful Authentication Tx"),
3559 IPW2100_ORD(STAT_TX_DEAUTH,
3560 "successful Deauthentication TX"),
3561 IPW2100_ORD(STAT_TX_TOTAL_BYTES,
3562 "Total successful Tx data bytes"),
3563 IPW2100_ORD(STAT_TX_RETRIES, "Tx retries"),
3564 IPW2100_ORD(STAT_TX_RETRY1, "Tx retries at 1MBPS"),
3565 IPW2100_ORD(STAT_TX_RETRY2, "Tx retries at 2MBPS"),
3566 IPW2100_ORD(STAT_TX_RETRY5_5, "Tx retries at 5.5MBPS"),
3567 IPW2100_ORD(STAT_TX_RETRY11, "Tx retries at 11MBPS"),
3568 IPW2100_ORD(STAT_TX_FAILURES, "Tx Failures"),
3569 IPW2100_ORD(STAT_TX_MAX_TRIES_IN_HOP,
3570 "times max tries in a hop failed"),
3571 IPW2100_ORD(STAT_TX_DISASSN_FAIL,
3572 "times disassociation failed"),
3573 IPW2100_ORD(STAT_TX_ERR_CTS, "missed/bad CTS frames"),
3574 IPW2100_ORD(STAT_TX_ERR_ACK, "tx err due to acks"),
3575 IPW2100_ORD(STAT_RX_HOST, "packets passed to host"),
3576 IPW2100_ORD(STAT_RX_DIR_DATA, "directed packets"),
3577 IPW2100_ORD(STAT_RX_DIR_DATA1, "directed packets at 1MB"),
3578 IPW2100_ORD(STAT_RX_DIR_DATA2, "directed packets at 2MB"),
3579 IPW2100_ORD(STAT_RX_DIR_DATA5_5,
3580 "directed packets at 5.5MB"),
3581 IPW2100_ORD(STAT_RX_DIR_DATA11, "directed packets at 11MB"),
3582 IPW2100_ORD(STAT_RX_NODIR_DATA, "nondirected packets"),
3583 IPW2100_ORD(STAT_RX_NODIR_DATA1,
3584 "nondirected packets at 1MB"),
3585 IPW2100_ORD(STAT_RX_NODIR_DATA2,
3586 "nondirected packets at 2MB"),
3587 IPW2100_ORD(STAT_RX_NODIR_DATA5_5,
3588 "nondirected packets at 5.5MB"),
3589 IPW2100_ORD(STAT_RX_NODIR_DATA11,
3590 "nondirected packets at 11MB"),
3591 IPW2100_ORD(STAT_RX_NULL_DATA, "null data rx's"),
3592 IPW2100_ORD(STAT_RX_RTS, "Rx RTS"), IPW2100_ORD(STAT_RX_CTS,
3593 "Rx CTS"),
3594 IPW2100_ORD(STAT_RX_ACK, "Rx ACK"),
3595 IPW2100_ORD(STAT_RX_CFEND, "Rx CF End"),
3596 IPW2100_ORD(STAT_RX_CFEND_ACK, "Rx CF End + CF Ack"),
3597 IPW2100_ORD(STAT_RX_ASSN, "Association Rx's"),
3598 IPW2100_ORD(STAT_RX_ASSN_RESP, "Association response Rx's"),
3599 IPW2100_ORD(STAT_RX_REASSN, "Reassociation Rx's"),
3600 IPW2100_ORD(STAT_RX_REASSN_RESP,
3601 "Reassociation response Rx's"),
3602 IPW2100_ORD(STAT_RX_PROBE, "probe Rx's"),
3603 IPW2100_ORD(STAT_RX_PROBE_RESP, "probe response Rx's"),
3604 IPW2100_ORD(STAT_RX_BEACON, "Rx beacon"),
3605 IPW2100_ORD(STAT_RX_ATIM, "Rx ATIM"),
3606 IPW2100_ORD(STAT_RX_DISASSN, "disassociation Rx"),
3607 IPW2100_ORD(STAT_RX_AUTH, "authentication Rx"),
3608 IPW2100_ORD(STAT_RX_DEAUTH, "deauthentication Rx"),
3609 IPW2100_ORD(STAT_RX_TOTAL_BYTES,
3610 "Total rx data bytes received"),
3611 IPW2100_ORD(STAT_RX_ERR_CRC, "packets with Rx CRC error"),
3612 IPW2100_ORD(STAT_RX_ERR_CRC1, "Rx CRC errors at 1MB"),
3613 IPW2100_ORD(STAT_RX_ERR_CRC2, "Rx CRC errors at 2MB"),
3614 IPW2100_ORD(STAT_RX_ERR_CRC5_5, "Rx CRC errors at 5.5MB"),
3615 IPW2100_ORD(STAT_RX_ERR_CRC11, "Rx CRC errors at 11MB"),
3616 IPW2100_ORD(STAT_RX_DUPLICATE1,
3617 "duplicate rx packets at 1MB"),
3618 IPW2100_ORD(STAT_RX_DUPLICATE2,
3619 "duplicate rx packets at 2MB"),
3620 IPW2100_ORD(STAT_RX_DUPLICATE5_5,
3621 "duplicate rx packets at 5.5MB"),
3622 IPW2100_ORD(STAT_RX_DUPLICATE11,
3623 "duplicate rx packets at 11MB"),
3624 IPW2100_ORD(STAT_RX_DUPLICATE, "duplicate rx packets"),
3625 IPW2100_ORD(PERS_DB_LOCK, "locking fw permanent db"),
3626 IPW2100_ORD(PERS_DB_SIZE, "size of fw permanent db"),
3627 IPW2100_ORD(PERS_DB_ADDR, "address of fw permanent db"),
3628 IPW2100_ORD(STAT_RX_INVALID_PROTOCOL,
3629 "rx frames with invalid protocol"),
3630 IPW2100_ORD(SYS_BOOT_TIME, "Boot time"),
3631 IPW2100_ORD(STAT_RX_NO_BUFFER,
3632 "rx frames rejected due to no buffer"),
3633 IPW2100_ORD(STAT_RX_MISSING_FRAG,
3634 "rx frames dropped due to missing fragment"),
3635 IPW2100_ORD(STAT_RX_ORPHAN_FRAG,
3636 "rx frames dropped due to non-sequential fragment"),
3637 IPW2100_ORD(STAT_RX_ORPHAN_FRAME,
3638 "rx frames dropped due to unmatched 1st frame"),
3639 IPW2100_ORD(STAT_RX_FRAG_AGEOUT,
3640 "rx frames dropped due to uncompleted frame"),
3641 IPW2100_ORD(STAT_RX_ICV_ERRORS,
3642 "ICV errors during decryption"),
3643 IPW2100_ORD(STAT_PSP_SUSPENSION, "times adapter suspended"),
3644 IPW2100_ORD(STAT_PSP_BCN_TIMEOUT, "beacon timeout"),
3645 IPW2100_ORD(STAT_PSP_POLL_TIMEOUT,
3646 "poll response timeouts"),
3647 IPW2100_ORD(STAT_PSP_NONDIR_TIMEOUT,
3648 "timeouts waiting for last {broad,multi}cast pkt"),
3649 IPW2100_ORD(STAT_PSP_RX_DTIMS, "PSP DTIMs received"),
3650 IPW2100_ORD(STAT_PSP_RX_TIMS, "PSP TIMs received"),
3651 IPW2100_ORD(STAT_PSP_STATION_ID, "PSP Station ID"),
3652 IPW2100_ORD(LAST_ASSN_TIME, "RTC time of last association"),
3653 IPW2100_ORD(STAT_PERCENT_MISSED_BCNS,
3654 "current calculation of % missed beacons"),
3655 IPW2100_ORD(STAT_PERCENT_RETRIES,
3656 "current calculation of % missed tx retries"),
3657 IPW2100_ORD(ASSOCIATED_AP_PTR,
3658 "0 if not associated, else pointer to AP table entry"),
3659 IPW2100_ORD(AVAILABLE_AP_CNT,
3660 "AP's decsribed in the AP table"),
3661 IPW2100_ORD(AP_LIST_PTR, "Ptr to list of available APs"),
3662 IPW2100_ORD(STAT_AP_ASSNS, "associations"),
3663 IPW2100_ORD(STAT_ASSN_FAIL, "association failures"),
3664 IPW2100_ORD(STAT_ASSN_RESP_FAIL,
3665 "failures due to response fail"),
3666 IPW2100_ORD(STAT_FULL_SCANS, "full scans"),
3667 IPW2100_ORD(CARD_DISABLED, "Card Disabled"),
3668 IPW2100_ORD(STAT_ROAM_INHIBIT,
3669 "times roaming was inhibited due to activity"),
3670 IPW2100_ORD(RSSI_AT_ASSN,
3671 "RSSI of associated AP at time of association"),
3672 IPW2100_ORD(STAT_ASSN_CAUSE1,
3673 "reassociation: no probe response or TX on hop"),
3674 IPW2100_ORD(STAT_ASSN_CAUSE2,
3675 "reassociation: poor tx/rx quality"),
3676 IPW2100_ORD(STAT_ASSN_CAUSE3,
3677 "reassociation: tx/rx quality (excessive AP load"),
3678 IPW2100_ORD(STAT_ASSN_CAUSE4,
3679 "reassociation: AP RSSI level"),
3680 IPW2100_ORD(STAT_ASSN_CAUSE5,
3681 "reassociations due to load leveling"),
3682 IPW2100_ORD(STAT_AUTH_FAIL, "times authentication failed"),
3683 IPW2100_ORD(STAT_AUTH_RESP_FAIL,
3684 "times authentication response failed"),
3685 IPW2100_ORD(STATION_TABLE_CNT,
3686 "entries in association table"),
3687 IPW2100_ORD(RSSI_AVG_CURR, "Current avg RSSI"),
3688 IPW2100_ORD(POWER_MGMT_MODE, "Power mode - 0=CAM, 1=PSP"),
3689 IPW2100_ORD(COUNTRY_CODE,
3690 "IEEE country code as recv'd from beacon"),
3691 IPW2100_ORD(COUNTRY_CHANNELS,
3692 "channels suported by country"),
3693 IPW2100_ORD(RESET_CNT, "adapter resets (warm)"),
3694 IPW2100_ORD(BEACON_INTERVAL, "Beacon interval"),
3695 IPW2100_ORD(ANTENNA_DIVERSITY,
3696 "TRUE if antenna diversity is disabled"),
3697 IPW2100_ORD(DTIM_PERIOD, "beacon intervals between DTIMs"),
3698 IPW2100_ORD(OUR_FREQ,
3699 "current radio freq lower digits - channel ID"),
3700 IPW2100_ORD(RTC_TIME, "current RTC time"),
3701 IPW2100_ORD(PORT_TYPE, "operating mode"),
3702 IPW2100_ORD(CURRENT_TX_RATE, "current tx rate"),
3703 IPW2100_ORD(SUPPORTED_RATES, "supported tx rates"),
3704 IPW2100_ORD(ATIM_WINDOW, "current ATIM Window"),
3705 IPW2100_ORD(BASIC_RATES, "basic tx rates"),
3706 IPW2100_ORD(NIC_HIGHEST_RATE, "NIC highest tx rate"),
3707 IPW2100_ORD(AP_HIGHEST_RATE, "AP highest tx rate"),
3708 IPW2100_ORD(CAPABILITIES,
3709 "Management frame capability field"),
3710 IPW2100_ORD(AUTH_TYPE, "Type of authentication"),
3711 IPW2100_ORD(RADIO_TYPE, "Adapter card platform type"),
3712 IPW2100_ORD(RTS_THRESHOLD,
3713 "Min packet length for RTS handshaking"),
3714 IPW2100_ORD(INT_MODE, "International mode"),
3715 IPW2100_ORD(FRAGMENTATION_THRESHOLD,
3716 "protocol frag threshold"),
3717 IPW2100_ORD(EEPROM_SRAM_DB_BLOCK_START_ADDRESS,
3718 "EEPROM offset in SRAM"),
3719 IPW2100_ORD(EEPROM_SRAM_DB_BLOCK_SIZE,
3720 "EEPROM size in SRAM"),
3721 IPW2100_ORD(EEPROM_SKU_CAPABILITY, "EEPROM SKU Capability"),
3722 IPW2100_ORD(EEPROM_IBSS_11B_CHANNELS,
3723 "EEPROM IBSS 11b channel set"),
3724 IPW2100_ORD(MAC_VERSION, "MAC Version"),
3725 IPW2100_ORD(MAC_REVISION, "MAC Revision"),
3726 IPW2100_ORD(RADIO_VERSION, "Radio Version"),
3727 IPW2100_ORD(NIC_MANF_DATE_TIME, "MANF Date/Time STAMP"),
3728 IPW2100_ORD(UCODE_VERSION, "Ucode Version"),};
James Ketrenos2c86c272005-03-23 17:32:29 -06003729
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003730static ssize_t show_registers(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003731 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003732{
3733 int i;
3734 struct ipw2100_priv *priv = dev_get_drvdata(d);
3735 struct net_device *dev = priv->net_dev;
James Ketrenosee8e3652005-09-14 09:47:29 -05003736 char *out = buf;
James Ketrenos2c86c272005-03-23 17:32:29 -06003737 u32 val = 0;
3738
3739 out += sprintf(out, "%30s [Address ] : Hex\n", "Register");
3740
Ahmed S. Darwish22d57432007-02-05 18:56:22 +02003741 for (i = 0; i < ARRAY_SIZE(hw_data); i++) {
James Ketrenos2c86c272005-03-23 17:32:29 -06003742 read_register(dev, hw_data[i].addr, &val);
3743 out += sprintf(out, "%30s [%08X] : %08X\n",
3744 hw_data[i].name, hw_data[i].addr, val);
3745 }
3746
3747 return out - buf;
3748}
James Ketrenosee8e3652005-09-14 09:47:29 -05003749
James Ketrenos2c86c272005-03-23 17:32:29 -06003750static DEVICE_ATTR(registers, S_IRUGO, show_registers, NULL);
3751
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003752static ssize_t show_hardware(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003753 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003754{
3755 struct ipw2100_priv *priv = dev_get_drvdata(d);
3756 struct net_device *dev = priv->net_dev;
James Ketrenosee8e3652005-09-14 09:47:29 -05003757 char *out = buf;
James Ketrenos2c86c272005-03-23 17:32:29 -06003758 int i;
3759
3760 out += sprintf(out, "%30s [Address ] : Hex\n", "NIC entry");
3761
Ahmed S. Darwish22d57432007-02-05 18:56:22 +02003762 for (i = 0; i < ARRAY_SIZE(nic_data); i++) {
James Ketrenos2c86c272005-03-23 17:32:29 -06003763 u8 tmp8;
3764 u16 tmp16;
3765 u32 tmp32;
3766
3767 switch (nic_data[i].size) {
3768 case 1:
3769 read_nic_byte(dev, nic_data[i].addr, &tmp8);
3770 out += sprintf(out, "%30s [%08X] : %02X\n",
3771 nic_data[i].name, nic_data[i].addr,
3772 tmp8);
3773 break;
3774 case 2:
3775 read_nic_word(dev, nic_data[i].addr, &tmp16);
3776 out += sprintf(out, "%30s [%08X] : %04X\n",
3777 nic_data[i].name, nic_data[i].addr,
3778 tmp16);
3779 break;
3780 case 4:
3781 read_nic_dword(dev, nic_data[i].addr, &tmp32);
3782 out += sprintf(out, "%30s [%08X] : %08X\n",
3783 nic_data[i].name, nic_data[i].addr,
3784 tmp32);
3785 break;
3786 }
3787 }
3788 return out - buf;
3789}
James Ketrenosee8e3652005-09-14 09:47:29 -05003790
James Ketrenos2c86c272005-03-23 17:32:29 -06003791static DEVICE_ATTR(hardware, S_IRUGO, show_hardware, NULL);
3792
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003793static ssize_t show_memory(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003794 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003795{
3796 struct ipw2100_priv *priv = dev_get_drvdata(d);
3797 struct net_device *dev = priv->net_dev;
3798 static unsigned long loop = 0;
3799 int len = 0;
3800 u32 buffer[4];
3801 int i;
3802 char line[81];
3803
3804 if (loop >= 0x30000)
3805 loop = 0;
3806
3807 /* sysfs provides us PAGE_SIZE buffer */
3808 while (len < PAGE_SIZE - 128 && loop < 0x30000) {
3809
James Ketrenosee8e3652005-09-14 09:47:29 -05003810 if (priv->snapshot[0])
3811 for (i = 0; i < 4; i++)
3812 buffer[i] =
3813 *(u32 *) SNAPSHOT_ADDR(loop + i * 4);
3814 else
3815 for (i = 0; i < 4; i++)
3816 read_nic_dword(dev, loop + i * 4, &buffer[i]);
James Ketrenos2c86c272005-03-23 17:32:29 -06003817
3818 if (priv->dump_raw)
3819 len += sprintf(buf + len,
3820 "%c%c%c%c"
3821 "%c%c%c%c"
3822 "%c%c%c%c"
3823 "%c%c%c%c",
James Ketrenosee8e3652005-09-14 09:47:29 -05003824 ((u8 *) buffer)[0x0],
3825 ((u8 *) buffer)[0x1],
3826 ((u8 *) buffer)[0x2],
3827 ((u8 *) buffer)[0x3],
3828 ((u8 *) buffer)[0x4],
3829 ((u8 *) buffer)[0x5],
3830 ((u8 *) buffer)[0x6],
3831 ((u8 *) buffer)[0x7],
3832 ((u8 *) buffer)[0x8],
3833 ((u8 *) buffer)[0x9],
3834 ((u8 *) buffer)[0xa],
3835 ((u8 *) buffer)[0xb],
3836 ((u8 *) buffer)[0xc],
3837 ((u8 *) buffer)[0xd],
3838 ((u8 *) buffer)[0xe],
3839 ((u8 *) buffer)[0xf]);
James Ketrenos2c86c272005-03-23 17:32:29 -06003840 else
3841 len += sprintf(buf + len, "%s\n",
3842 snprint_line(line, sizeof(line),
James Ketrenosee8e3652005-09-14 09:47:29 -05003843 (u8 *) buffer, 16, loop));
James Ketrenos2c86c272005-03-23 17:32:29 -06003844 loop += 16;
3845 }
3846
3847 return len;
3848}
3849
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003850static ssize_t store_memory(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003851 const char *buf, size_t count)
James Ketrenos2c86c272005-03-23 17:32:29 -06003852{
3853 struct ipw2100_priv *priv = dev_get_drvdata(d);
3854 struct net_device *dev = priv->net_dev;
3855 const char *p = buf;
3856
Zhu Yi8ed55a42006-01-24 13:49:20 +08003857 (void)dev; /* kill unused-var warning for debug-only code */
Jeff Garzikc2a8fad2005-11-09 00:49:38 -05003858
James Ketrenos2c86c272005-03-23 17:32:29 -06003859 if (count < 1)
3860 return count;
3861
3862 if (p[0] == '1' ||
3863 (count >= 2 && tolower(p[0]) == 'o' && tolower(p[1]) == 'n')) {
3864 IPW_DEBUG_INFO("%s: Setting memory dump to RAW mode.\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05003865 dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06003866 priv->dump_raw = 1;
3867
3868 } else if (p[0] == '0' || (count >= 2 && tolower(p[0]) == 'o' &&
James Ketrenosee8e3652005-09-14 09:47:29 -05003869 tolower(p[1]) == 'f')) {
James Ketrenos2c86c272005-03-23 17:32:29 -06003870 IPW_DEBUG_INFO("%s: Setting memory dump to HEX mode.\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05003871 dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06003872 priv->dump_raw = 0;
3873
3874 } else if (tolower(p[0]) == 'r') {
James Ketrenosee8e3652005-09-14 09:47:29 -05003875 IPW_DEBUG_INFO("%s: Resetting firmware snapshot.\n", dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06003876 ipw2100_snapshot_free(priv);
3877
3878 } else
3879 IPW_DEBUG_INFO("%s: Usage: 0|on = HEX, 1|off = RAW, "
James Ketrenosee8e3652005-09-14 09:47:29 -05003880 "reset = clear memory snapshot\n", dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06003881
3882 return count;
3883}
James Ketrenos2c86c272005-03-23 17:32:29 -06003884
James Ketrenosee8e3652005-09-14 09:47:29 -05003885static DEVICE_ATTR(memory, S_IWUSR | S_IRUGO, show_memory, store_memory);
James Ketrenos2c86c272005-03-23 17:32:29 -06003886
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003887static ssize_t show_ordinals(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003888 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003889{
3890 struct ipw2100_priv *priv = dev_get_drvdata(d);
3891 u32 val = 0;
3892 int len = 0;
3893 u32 val_len;
3894 static int loop = 0;
3895
James Ketrenos82328352005-08-24 22:33:31 -05003896 if (priv->status & STATUS_RF_KILL_MASK)
3897 return 0;
3898
Ahmed S. Darwish22d57432007-02-05 18:56:22 +02003899 if (loop >= ARRAY_SIZE(ord_data))
James Ketrenos2c86c272005-03-23 17:32:29 -06003900 loop = 0;
3901
3902 /* sysfs provides us PAGE_SIZE buffer */
Ahmed S. Darwish22d57432007-02-05 18:56:22 +02003903 while (len < PAGE_SIZE - 128 && loop < ARRAY_SIZE(ord_data)) {
James Ketrenos2c86c272005-03-23 17:32:29 -06003904 val_len = sizeof(u32);
3905
3906 if (ipw2100_get_ordinal(priv, ord_data[loop].index, &val,
3907 &val_len))
3908 len += sprintf(buf + len, "[0x%02X] = ERROR %s\n",
3909 ord_data[loop].index,
3910 ord_data[loop].desc);
3911 else
3912 len += sprintf(buf + len, "[0x%02X] = 0x%08X %s\n",
3913 ord_data[loop].index, val,
3914 ord_data[loop].desc);
3915 loop++;
3916 }
3917
3918 return len;
3919}
James Ketrenosee8e3652005-09-14 09:47:29 -05003920
James Ketrenos2c86c272005-03-23 17:32:29 -06003921static DEVICE_ATTR(ordinals, S_IRUGO, show_ordinals, NULL);
3922
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003923static ssize_t show_stats(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003924 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003925{
3926 struct ipw2100_priv *priv = dev_get_drvdata(d);
James Ketrenosee8e3652005-09-14 09:47:29 -05003927 char *out = buf;
James Ketrenos2c86c272005-03-23 17:32:29 -06003928
3929 out += sprintf(out, "interrupts: %d {tx: %d, rx: %d, other: %d}\n",
3930 priv->interrupts, priv->tx_interrupts,
3931 priv->rx_interrupts, priv->inta_other);
3932 out += sprintf(out, "firmware resets: %d\n", priv->resets);
3933 out += sprintf(out, "firmware hangs: %d\n", priv->hangs);
Brice Goglin0f52bf92005-12-01 01:41:46 -08003934#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06003935 out += sprintf(out, "packet mismatch image: %s\n",
3936 priv->snapshot[0] ? "YES" : "NO");
3937#endif
3938
3939 return out - buf;
3940}
James Ketrenos2c86c272005-03-23 17:32:29 -06003941
James Ketrenosee8e3652005-09-14 09:47:29 -05003942static DEVICE_ATTR(stats, S_IRUGO, show_stats, NULL);
James Ketrenos2c86c272005-03-23 17:32:29 -06003943
Jiri Bencc4aee8c2005-08-25 20:04:43 -04003944static int ipw2100_switch_mode(struct ipw2100_priv *priv, u32 mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06003945{
3946 int err;
3947
3948 if (mode == priv->ieee->iw_mode)
3949 return 0;
3950
3951 err = ipw2100_disable_adapter(priv);
3952 if (err) {
Jiri Benc797b4f72005-08-25 20:03:27 -04003953 printk(KERN_ERR DRV_NAME ": %s: Could not disable adapter %d\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06003954 priv->net_dev->name, err);
3955 return err;
3956 }
3957
3958 switch (mode) {
3959 case IW_MODE_INFRA:
3960 priv->net_dev->type = ARPHRD_ETHER;
3961 break;
3962 case IW_MODE_ADHOC:
3963 priv->net_dev->type = ARPHRD_ETHER;
3964 break;
3965#ifdef CONFIG_IPW2100_MONITOR
3966 case IW_MODE_MONITOR:
3967 priv->last_mode = priv->ieee->iw_mode;
Stefan Rompf15745a72006-02-21 18:36:17 +08003968 priv->net_dev->type = ARPHRD_IEEE80211_RADIOTAP;
James Ketrenos2c86c272005-03-23 17:32:29 -06003969 break;
James Ketrenosee8e3652005-09-14 09:47:29 -05003970#endif /* CONFIG_IPW2100_MONITOR */
James Ketrenos2c86c272005-03-23 17:32:29 -06003971 }
3972
3973 priv->ieee->iw_mode = mode;
3974
3975#ifdef CONFIG_PM
James Ketrenosee8e3652005-09-14 09:47:29 -05003976 /* Indicate ipw2100_download_firmware download firmware
James Ketrenos2c86c272005-03-23 17:32:29 -06003977 * from disk instead of memory. */
3978 ipw2100_firmware.version = 0;
3979#endif
3980
James Ketrenosee8e3652005-09-14 09:47:29 -05003981 printk(KERN_INFO "%s: Reseting on mode change.\n", priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06003982 priv->reset_backoff = 0;
3983 schedule_reset(priv);
3984
3985 return 0;
3986}
3987
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003988static ssize_t show_internals(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003989 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003990{
3991 struct ipw2100_priv *priv = dev_get_drvdata(d);
3992 int len = 0;
3993
James Ketrenosee8e3652005-09-14 09:47:29 -05003994#define DUMP_VAR(x,y) len += sprintf(buf + len, # x ": %" y "\n", priv-> x)
James Ketrenos2c86c272005-03-23 17:32:29 -06003995
3996 if (priv->status & STATUS_ASSOCIATED)
3997 len += sprintf(buf + len, "connected: %lu\n",
3998 get_seconds() - priv->connect_start);
3999 else
4000 len += sprintf(buf + len, "not connected\n");
4001
James Ketrenosee8e3652005-09-14 09:47:29 -05004002 DUMP_VAR(ieee->crypt[priv->ieee->tx_keyidx], "p");
4003 DUMP_VAR(status, "08lx");
4004 DUMP_VAR(config, "08lx");
4005 DUMP_VAR(capability, "08lx");
James Ketrenos2c86c272005-03-23 17:32:29 -06004006
James Ketrenosee8e3652005-09-14 09:47:29 -05004007 len +=
4008 sprintf(buf + len, "last_rtc: %lu\n",
4009 (unsigned long)priv->last_rtc);
James Ketrenos2c86c272005-03-23 17:32:29 -06004010
James Ketrenosee8e3652005-09-14 09:47:29 -05004011 DUMP_VAR(fatal_error, "d");
4012 DUMP_VAR(stop_hang_check, "d");
4013 DUMP_VAR(stop_rf_kill, "d");
4014 DUMP_VAR(messages_sent, "d");
James Ketrenos2c86c272005-03-23 17:32:29 -06004015
James Ketrenosee8e3652005-09-14 09:47:29 -05004016 DUMP_VAR(tx_pend_stat.value, "d");
4017 DUMP_VAR(tx_pend_stat.hi, "d");
James Ketrenos2c86c272005-03-23 17:32:29 -06004018
James Ketrenosee8e3652005-09-14 09:47:29 -05004019 DUMP_VAR(tx_free_stat.value, "d");
4020 DUMP_VAR(tx_free_stat.lo, "d");
James Ketrenos2c86c272005-03-23 17:32:29 -06004021
James Ketrenosee8e3652005-09-14 09:47:29 -05004022 DUMP_VAR(msg_free_stat.value, "d");
4023 DUMP_VAR(msg_free_stat.lo, "d");
James Ketrenos2c86c272005-03-23 17:32:29 -06004024
James Ketrenosee8e3652005-09-14 09:47:29 -05004025 DUMP_VAR(msg_pend_stat.value, "d");
4026 DUMP_VAR(msg_pend_stat.hi, "d");
James Ketrenos2c86c272005-03-23 17:32:29 -06004027
James Ketrenosee8e3652005-09-14 09:47:29 -05004028 DUMP_VAR(fw_pend_stat.value, "d");
4029 DUMP_VAR(fw_pend_stat.hi, "d");
James Ketrenos2c86c272005-03-23 17:32:29 -06004030
James Ketrenosee8e3652005-09-14 09:47:29 -05004031 DUMP_VAR(txq_stat.value, "d");
4032 DUMP_VAR(txq_stat.lo, "d");
James Ketrenos2c86c272005-03-23 17:32:29 -06004033
James Ketrenosee8e3652005-09-14 09:47:29 -05004034 DUMP_VAR(ieee->scans, "d");
4035 DUMP_VAR(reset_backoff, "d");
James Ketrenos2c86c272005-03-23 17:32:29 -06004036
4037 return len;
4038}
James Ketrenosee8e3652005-09-14 09:47:29 -05004039
James Ketrenos2c86c272005-03-23 17:32:29 -06004040static DEVICE_ATTR(internals, S_IRUGO, show_internals, NULL);
4041
Andrew Mortonedfc43f2005-06-20 14:30:35 -07004042static ssize_t show_bssinfo(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05004043 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06004044{
4045 struct ipw2100_priv *priv = dev_get_drvdata(d);
4046 char essid[IW_ESSID_MAX_SIZE + 1];
4047 u8 bssid[ETH_ALEN];
4048 u32 chan = 0;
James Ketrenosee8e3652005-09-14 09:47:29 -05004049 char *out = buf;
James Ketrenos2c86c272005-03-23 17:32:29 -06004050 int length;
4051 int ret;
4052
James Ketrenos82328352005-08-24 22:33:31 -05004053 if (priv->status & STATUS_RF_KILL_MASK)
4054 return 0;
4055
James Ketrenos2c86c272005-03-23 17:32:29 -06004056 memset(essid, 0, sizeof(essid));
4057 memset(bssid, 0, sizeof(bssid));
4058
4059 length = IW_ESSID_MAX_SIZE;
4060 ret = ipw2100_get_ordinal(priv, IPW_ORD_STAT_ASSN_SSID, essid, &length);
4061 if (ret)
4062 IPW_DEBUG_INFO("failed querying ordinals at line %d\n",
4063 __LINE__);
4064
4065 length = sizeof(bssid);
4066 ret = ipw2100_get_ordinal(priv, IPW_ORD_STAT_ASSN_AP_BSSID,
4067 bssid, &length);
4068 if (ret)
4069 IPW_DEBUG_INFO("failed querying ordinals at line %d\n",
4070 __LINE__);
4071
4072 length = sizeof(u32);
4073 ret = ipw2100_get_ordinal(priv, IPW_ORD_OUR_FREQ, &chan, &length);
4074 if (ret)
4075 IPW_DEBUG_INFO("failed querying ordinals at line %d\n",
4076 __LINE__);
4077
4078 out += sprintf(out, "ESSID: %s\n", essid);
4079 out += sprintf(out, "BSSID: %02x:%02x:%02x:%02x:%02x:%02x\n",
4080 bssid[0], bssid[1], bssid[2],
4081 bssid[3], bssid[4], bssid[5]);
4082 out += sprintf(out, "Channel: %d\n", chan);
4083
4084 return out - buf;
4085}
James Ketrenos2c86c272005-03-23 17:32:29 -06004086
James Ketrenosee8e3652005-09-14 09:47:29 -05004087static DEVICE_ATTR(bssinfo, S_IRUGO, show_bssinfo, NULL);
James Ketrenos2c86c272005-03-23 17:32:29 -06004088
Brice Goglin0f52bf92005-12-01 01:41:46 -08004089#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06004090static ssize_t show_debug_level(struct device_driver *d, char *buf)
4091{
4092 return sprintf(buf, "0x%08X\n", ipw2100_debug_level);
4093}
4094
James Ketrenos82328352005-08-24 22:33:31 -05004095static ssize_t store_debug_level(struct device_driver *d,
4096 const char *buf, size_t count)
James Ketrenos2c86c272005-03-23 17:32:29 -06004097{
4098 char *p = (char *)buf;
4099 u32 val;
4100
4101 if (p[1] == 'x' || p[1] == 'X' || p[0] == 'x' || p[0] == 'X') {
4102 p++;
4103 if (p[0] == 'x' || p[0] == 'X')
4104 p++;
4105 val = simple_strtoul(p, &p, 16);
4106 } else
4107 val = simple_strtoul(p, &p, 10);
4108 if (p == buf)
Zhu Yia1e695a2005-07-04 14:06:00 +08004109 IPW_DEBUG_INFO(": %s is not in hex or decimal form.\n", buf);
James Ketrenos2c86c272005-03-23 17:32:29 -06004110 else
4111 ipw2100_debug_level = val;
4112
4113 return strnlen(buf, count);
4114}
James Ketrenosee8e3652005-09-14 09:47:29 -05004115
James Ketrenos2c86c272005-03-23 17:32:29 -06004116static DRIVER_ATTR(debug_level, S_IWUSR | S_IRUGO, show_debug_level,
4117 store_debug_level);
Brice Goglin0f52bf92005-12-01 01:41:46 -08004118#endif /* CONFIG_IPW2100_DEBUG */
James Ketrenos2c86c272005-03-23 17:32:29 -06004119
Andrew Mortonedfc43f2005-06-20 14:30:35 -07004120static ssize_t show_fatal_error(struct device *d,
James Ketrenosee8e3652005-09-14 09:47:29 -05004121 struct device_attribute *attr, char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06004122{
4123 struct ipw2100_priv *priv = dev_get_drvdata(d);
4124 char *out = buf;
4125 int i;
4126
4127 if (priv->fatal_error)
James Ketrenosee8e3652005-09-14 09:47:29 -05004128 out += sprintf(out, "0x%08X\n", priv->fatal_error);
James Ketrenos2c86c272005-03-23 17:32:29 -06004129 else
4130 out += sprintf(out, "0\n");
4131
4132 for (i = 1; i <= IPW2100_ERROR_QUEUE; i++) {
4133 if (!priv->fatal_errors[(priv->fatal_index - i) %
4134 IPW2100_ERROR_QUEUE])
4135 continue;
4136
4137 out += sprintf(out, "%d. 0x%08X\n", i,
4138 priv->fatal_errors[(priv->fatal_index - i) %
4139 IPW2100_ERROR_QUEUE]);
4140 }
4141
4142 return out - buf;
4143}
4144
Andrew Mortonedfc43f2005-06-20 14:30:35 -07004145static ssize_t store_fatal_error(struct device *d,
James Ketrenosee8e3652005-09-14 09:47:29 -05004146 struct device_attribute *attr, const char *buf,
4147 size_t count)
James Ketrenos2c86c272005-03-23 17:32:29 -06004148{
4149 struct ipw2100_priv *priv = dev_get_drvdata(d);
4150 schedule_reset(priv);
4151 return count;
4152}
James Ketrenos2c86c272005-03-23 17:32:29 -06004153
James Ketrenosee8e3652005-09-14 09:47:29 -05004154static DEVICE_ATTR(fatal_error, S_IWUSR | S_IRUGO, show_fatal_error,
4155 store_fatal_error);
James Ketrenos2c86c272005-03-23 17:32:29 -06004156
Andrew Mortonedfc43f2005-06-20 14:30:35 -07004157static ssize_t show_scan_age(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05004158 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06004159{
4160 struct ipw2100_priv *priv = dev_get_drvdata(d);
4161 return sprintf(buf, "%d\n", priv->ieee->scan_age);
4162}
4163
Andrew Mortonedfc43f2005-06-20 14:30:35 -07004164static ssize_t store_scan_age(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05004165 const char *buf, size_t count)
James Ketrenos2c86c272005-03-23 17:32:29 -06004166{
4167 struct ipw2100_priv *priv = dev_get_drvdata(d);
4168 struct net_device *dev = priv->net_dev;
4169 char buffer[] = "00000000";
4170 unsigned long len =
4171 (sizeof(buffer) - 1) > count ? count : sizeof(buffer) - 1;
4172 unsigned long val;
4173 char *p = buffer;
4174
Zhu Yi8ed55a42006-01-24 13:49:20 +08004175 (void)dev; /* kill unused-var warning for debug-only code */
Jeff Garzikc2a8fad2005-11-09 00:49:38 -05004176
James Ketrenos2c86c272005-03-23 17:32:29 -06004177 IPW_DEBUG_INFO("enter\n");
4178
4179 strncpy(buffer, buf, len);
4180 buffer[len] = 0;
4181
4182 if (p[1] == 'x' || p[1] == 'X' || p[0] == 'x' || p[0] == 'X') {
4183 p++;
4184 if (p[0] == 'x' || p[0] == 'X')
4185 p++;
4186 val = simple_strtoul(p, &p, 16);
4187 } else
4188 val = simple_strtoul(p, &p, 10);
4189 if (p == buffer) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004190 IPW_DEBUG_INFO("%s: user supplied invalid value.\n", dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06004191 } else {
4192 priv->ieee->scan_age = val;
4193 IPW_DEBUG_INFO("set scan_age = %u\n", priv->ieee->scan_age);
4194 }
4195
4196 IPW_DEBUG_INFO("exit\n");
4197 return len;
4198}
James Ketrenosee8e3652005-09-14 09:47:29 -05004199
James Ketrenos2c86c272005-03-23 17:32:29 -06004200static DEVICE_ATTR(scan_age, S_IWUSR | S_IRUGO, show_scan_age, store_scan_age);
4201
Andrew Mortonedfc43f2005-06-20 14:30:35 -07004202static ssize_t show_rf_kill(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05004203 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06004204{
4205 /* 0 - RF kill not enabled
4206 1 - SW based RF kill active (sysfs)
4207 2 - HW based RF kill active
4208 3 - Both HW and SW baed RF kill active */
4209 struct ipw2100_priv *priv = (struct ipw2100_priv *)d->driver_data;
4210 int val = ((priv->status & STATUS_RF_KILL_SW) ? 0x1 : 0x0) |
James Ketrenosee8e3652005-09-14 09:47:29 -05004211 (rf_kill_active(priv) ? 0x2 : 0x0);
James Ketrenos2c86c272005-03-23 17:32:29 -06004212 return sprintf(buf, "%i\n", val);
4213}
4214
4215static int ipw_radio_kill_sw(struct ipw2100_priv *priv, int disable_radio)
4216{
4217 if ((disable_radio ? 1 : 0) ==
4218 (priv->status & STATUS_RF_KILL_SW ? 1 : 0))
James Ketrenosee8e3652005-09-14 09:47:29 -05004219 return 0;
James Ketrenos2c86c272005-03-23 17:32:29 -06004220
4221 IPW_DEBUG_RF_KILL("Manual SW RF Kill set to: RADIO %s\n",
4222 disable_radio ? "OFF" : "ON");
4223
Ingo Molnar752e3772006-02-28 07:20:54 +08004224 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06004225
4226 if (disable_radio) {
4227 priv->status |= STATUS_RF_KILL_SW;
4228 ipw2100_down(priv);
4229 } else {
4230 priv->status &= ~STATUS_RF_KILL_SW;
4231 if (rf_kill_active(priv)) {
4232 IPW_DEBUG_RF_KILL("Can not turn radio back on - "
4233 "disabled by HW switch\n");
4234 /* Make sure the RF_KILL check timer is running */
4235 priv->stop_rf_kill = 0;
4236 cancel_delayed_work(&priv->rf_kill);
Stephen Hemmingera62056f2007-06-22 21:46:50 -07004237 queue_delayed_work(priv->workqueue, &priv->rf_kill,
4238 round_jiffies(HZ));
James Ketrenos2c86c272005-03-23 17:32:29 -06004239 } else
4240 schedule_reset(priv);
4241 }
4242
Ingo Molnar752e3772006-02-28 07:20:54 +08004243 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06004244 return 1;
4245}
4246
Andrew Mortonedfc43f2005-06-20 14:30:35 -07004247static ssize_t store_rf_kill(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05004248 const char *buf, size_t count)
James Ketrenos2c86c272005-03-23 17:32:29 -06004249{
4250 struct ipw2100_priv *priv = dev_get_drvdata(d);
4251 ipw_radio_kill_sw(priv, buf[0] == '1');
4252 return count;
4253}
James Ketrenos2c86c272005-03-23 17:32:29 -06004254
James Ketrenosee8e3652005-09-14 09:47:29 -05004255static DEVICE_ATTR(rf_kill, S_IWUSR | S_IRUGO, show_rf_kill, store_rf_kill);
James Ketrenos2c86c272005-03-23 17:32:29 -06004256
4257static struct attribute *ipw2100_sysfs_entries[] = {
4258 &dev_attr_hardware.attr,
4259 &dev_attr_registers.attr,
4260 &dev_attr_ordinals.attr,
4261 &dev_attr_pci.attr,
4262 &dev_attr_stats.attr,
4263 &dev_attr_internals.attr,
4264 &dev_attr_bssinfo.attr,
4265 &dev_attr_memory.attr,
4266 &dev_attr_scan_age.attr,
4267 &dev_attr_fatal_error.attr,
4268 &dev_attr_rf_kill.attr,
4269 &dev_attr_cfg.attr,
4270 &dev_attr_status.attr,
4271 &dev_attr_capability.attr,
4272 NULL,
4273};
4274
4275static struct attribute_group ipw2100_attribute_group = {
4276 .attrs = ipw2100_sysfs_entries,
4277};
4278
James Ketrenos2c86c272005-03-23 17:32:29 -06004279static int status_queue_allocate(struct ipw2100_priv *priv, int entries)
4280{
4281 struct ipw2100_status_queue *q = &priv->status_queue;
4282
4283 IPW_DEBUG_INFO("enter\n");
4284
4285 q->size = entries * sizeof(struct ipw2100_status);
James Ketrenosee8e3652005-09-14 09:47:29 -05004286 q->drv =
4287 (struct ipw2100_status *)pci_alloc_consistent(priv->pci_dev,
4288 q->size, &q->nic);
James Ketrenos2c86c272005-03-23 17:32:29 -06004289 if (!q->drv) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004290 IPW_DEBUG_WARNING("Can not allocate status queue.\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06004291 return -ENOMEM;
4292 }
4293
4294 memset(q->drv, 0, q->size);
4295
4296 IPW_DEBUG_INFO("exit\n");
4297
4298 return 0;
4299}
4300
4301static void status_queue_free(struct ipw2100_priv *priv)
4302{
4303 IPW_DEBUG_INFO("enter\n");
4304
4305 if (priv->status_queue.drv) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004306 pci_free_consistent(priv->pci_dev, priv->status_queue.size,
4307 priv->status_queue.drv,
4308 priv->status_queue.nic);
James Ketrenos2c86c272005-03-23 17:32:29 -06004309 priv->status_queue.drv = NULL;
4310 }
4311
4312 IPW_DEBUG_INFO("exit\n");
4313}
4314
4315static int bd_queue_allocate(struct ipw2100_priv *priv,
4316 struct ipw2100_bd_queue *q, int entries)
4317{
4318 IPW_DEBUG_INFO("enter\n");
4319
4320 memset(q, 0, sizeof(struct ipw2100_bd_queue));
4321
4322 q->entries = entries;
4323 q->size = entries * sizeof(struct ipw2100_bd);
4324 q->drv = pci_alloc_consistent(priv->pci_dev, q->size, &q->nic);
4325 if (!q->drv) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004326 IPW_DEBUG_INFO
4327 ("can't allocate shared memory for buffer descriptors\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06004328 return -ENOMEM;
4329 }
4330 memset(q->drv, 0, q->size);
4331
4332 IPW_DEBUG_INFO("exit\n");
4333
4334 return 0;
4335}
4336
James Ketrenosee8e3652005-09-14 09:47:29 -05004337static void bd_queue_free(struct ipw2100_priv *priv, struct ipw2100_bd_queue *q)
James Ketrenos2c86c272005-03-23 17:32:29 -06004338{
4339 IPW_DEBUG_INFO("enter\n");
4340
4341 if (!q)
4342 return;
4343
4344 if (q->drv) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004345 pci_free_consistent(priv->pci_dev, q->size, q->drv, q->nic);
James Ketrenos2c86c272005-03-23 17:32:29 -06004346 q->drv = NULL;
4347 }
4348
4349 IPW_DEBUG_INFO("exit\n");
4350}
4351
James Ketrenosee8e3652005-09-14 09:47:29 -05004352static void bd_queue_initialize(struct ipw2100_priv *priv,
4353 struct ipw2100_bd_queue *q, u32 base, u32 size,
4354 u32 r, u32 w)
James Ketrenos2c86c272005-03-23 17:32:29 -06004355{
4356 IPW_DEBUG_INFO("enter\n");
4357
James Ketrenosee8e3652005-09-14 09:47:29 -05004358 IPW_DEBUG_INFO("initializing bd queue at virt=%p, phys=%08x\n", q->drv,
4359 (u32) q->nic);
James Ketrenos2c86c272005-03-23 17:32:29 -06004360
4361 write_register(priv->net_dev, base, q->nic);
4362 write_register(priv->net_dev, size, q->entries);
4363 write_register(priv->net_dev, r, q->oldest);
4364 write_register(priv->net_dev, w, q->next);
4365
4366 IPW_DEBUG_INFO("exit\n");
4367}
4368
4369static void ipw2100_kill_workqueue(struct ipw2100_priv *priv)
4370{
4371 if (priv->workqueue) {
4372 priv->stop_rf_kill = 1;
4373 priv->stop_hang_check = 1;
4374 cancel_delayed_work(&priv->reset_work);
4375 cancel_delayed_work(&priv->security_work);
4376 cancel_delayed_work(&priv->wx_event_work);
4377 cancel_delayed_work(&priv->hang_check);
4378 cancel_delayed_work(&priv->rf_kill);
4379 destroy_workqueue(priv->workqueue);
4380 priv->workqueue = NULL;
4381 }
4382}
4383
4384static int ipw2100_tx_allocate(struct ipw2100_priv *priv)
4385{
4386 int i, j, err = -EINVAL;
4387 void *v;
4388 dma_addr_t p;
4389
4390 IPW_DEBUG_INFO("enter\n");
4391
4392 err = bd_queue_allocate(priv, &priv->tx_queue, TX_QUEUE_LENGTH);
4393 if (err) {
4394 IPW_DEBUG_ERROR("%s: failed bd_queue_allocate\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05004395 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06004396 return err;
4397 }
4398
James Ketrenosee8e3652005-09-14 09:47:29 -05004399 priv->tx_buffers =
4400 (struct ipw2100_tx_packet *)kmalloc(TX_PENDED_QUEUE_LENGTH *
4401 sizeof(struct
4402 ipw2100_tx_packet),
4403 GFP_ATOMIC);
James Ketrenos2c86c272005-03-23 17:32:29 -06004404 if (!priv->tx_buffers) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004405 printk(KERN_ERR DRV_NAME
4406 ": %s: alloc failed form tx buffers.\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06004407 priv->net_dev->name);
4408 bd_queue_free(priv, &priv->tx_queue);
4409 return -ENOMEM;
4410 }
4411
4412 for (i = 0; i < TX_PENDED_QUEUE_LENGTH; i++) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004413 v = pci_alloc_consistent(priv->pci_dev,
4414 sizeof(struct ipw2100_data_header),
4415 &p);
James Ketrenos2c86c272005-03-23 17:32:29 -06004416 if (!v) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004417 printk(KERN_ERR DRV_NAME
4418 ": %s: PCI alloc failed for tx " "buffers.\n",
4419 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06004420 err = -ENOMEM;
4421 break;
4422 }
4423
4424 priv->tx_buffers[i].type = DATA;
James Ketrenosee8e3652005-09-14 09:47:29 -05004425 priv->tx_buffers[i].info.d_struct.data =
4426 (struct ipw2100_data_header *)v;
James Ketrenos2c86c272005-03-23 17:32:29 -06004427 priv->tx_buffers[i].info.d_struct.data_phys = p;
4428 priv->tx_buffers[i].info.d_struct.txb = NULL;
4429 }
4430
4431 if (i == TX_PENDED_QUEUE_LENGTH)
4432 return 0;
4433
4434 for (j = 0; j < i; j++) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004435 pci_free_consistent(priv->pci_dev,
4436 sizeof(struct ipw2100_data_header),
4437 priv->tx_buffers[j].info.d_struct.data,
4438 priv->tx_buffers[j].info.d_struct.
4439 data_phys);
James Ketrenos2c86c272005-03-23 17:32:29 -06004440 }
4441
4442 kfree(priv->tx_buffers);
4443 priv->tx_buffers = NULL;
4444
4445 return err;
4446}
4447
4448static void ipw2100_tx_initialize(struct ipw2100_priv *priv)
4449{
4450 int i;
4451
4452 IPW_DEBUG_INFO("enter\n");
4453
4454 /*
4455 * reinitialize packet info lists
4456 */
4457 INIT_LIST_HEAD(&priv->fw_pend_list);
4458 INIT_STAT(&priv->fw_pend_stat);
4459
4460 /*
4461 * reinitialize lists
4462 */
4463 INIT_LIST_HEAD(&priv->tx_pend_list);
4464 INIT_LIST_HEAD(&priv->tx_free_list);
4465 INIT_STAT(&priv->tx_pend_stat);
4466 INIT_STAT(&priv->tx_free_stat);
4467
4468 for (i = 0; i < TX_PENDED_QUEUE_LENGTH; i++) {
4469 /* We simply drop any SKBs that have been queued for
4470 * transmit */
4471 if (priv->tx_buffers[i].info.d_struct.txb) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004472 ieee80211_txb_free(priv->tx_buffers[i].info.d_struct.
4473 txb);
James Ketrenos2c86c272005-03-23 17:32:29 -06004474 priv->tx_buffers[i].info.d_struct.txb = NULL;
4475 }
4476
4477 list_add_tail(&priv->tx_buffers[i].list, &priv->tx_free_list);
4478 }
4479
4480 SET_STAT(&priv->tx_free_stat, i);
4481
4482 priv->tx_queue.oldest = 0;
4483 priv->tx_queue.available = priv->tx_queue.entries;
4484 priv->tx_queue.next = 0;
4485 INIT_STAT(&priv->txq_stat);
4486 SET_STAT(&priv->txq_stat, priv->tx_queue.available);
4487
4488 bd_queue_initialize(priv, &priv->tx_queue,
4489 IPW_MEM_HOST_SHARED_TX_QUEUE_BD_BASE,
4490 IPW_MEM_HOST_SHARED_TX_QUEUE_BD_SIZE,
4491 IPW_MEM_HOST_SHARED_TX_QUEUE_READ_INDEX,
4492 IPW_MEM_HOST_SHARED_TX_QUEUE_WRITE_INDEX);
4493
4494 IPW_DEBUG_INFO("exit\n");
4495
4496}
4497
4498static void ipw2100_tx_free(struct ipw2100_priv *priv)
4499{
4500 int i;
4501
4502 IPW_DEBUG_INFO("enter\n");
4503
4504 bd_queue_free(priv, &priv->tx_queue);
4505
4506 if (!priv->tx_buffers)
4507 return;
4508
4509 for (i = 0; i < TX_PENDED_QUEUE_LENGTH; i++) {
4510 if (priv->tx_buffers[i].info.d_struct.txb) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004511 ieee80211_txb_free(priv->tx_buffers[i].info.d_struct.
4512 txb);
James Ketrenos2c86c272005-03-23 17:32:29 -06004513 priv->tx_buffers[i].info.d_struct.txb = NULL;
4514 }
4515 if (priv->tx_buffers[i].info.d_struct.data)
James Ketrenosee8e3652005-09-14 09:47:29 -05004516 pci_free_consistent(priv->pci_dev,
4517 sizeof(struct ipw2100_data_header),
4518 priv->tx_buffers[i].info.d_struct.
4519 data,
4520 priv->tx_buffers[i].info.d_struct.
4521 data_phys);
James Ketrenos2c86c272005-03-23 17:32:29 -06004522 }
4523
4524 kfree(priv->tx_buffers);
4525 priv->tx_buffers = NULL;
4526
4527 IPW_DEBUG_INFO("exit\n");
4528}
4529
James Ketrenos2c86c272005-03-23 17:32:29 -06004530static int ipw2100_rx_allocate(struct ipw2100_priv *priv)
4531{
4532 int i, j, err = -EINVAL;
4533
4534 IPW_DEBUG_INFO("enter\n");
4535
4536 err = bd_queue_allocate(priv, &priv->rx_queue, RX_QUEUE_LENGTH);
4537 if (err) {
4538 IPW_DEBUG_INFO("failed bd_queue_allocate\n");
4539 return err;
4540 }
4541
4542 err = status_queue_allocate(priv, RX_QUEUE_LENGTH);
4543 if (err) {
4544 IPW_DEBUG_INFO("failed status_queue_allocate\n");
4545 bd_queue_free(priv, &priv->rx_queue);
4546 return err;
4547 }
4548
4549 /*
4550 * allocate packets
4551 */
4552 priv->rx_buffers = (struct ipw2100_rx_packet *)
4553 kmalloc(RX_QUEUE_LENGTH * sizeof(struct ipw2100_rx_packet),
4554 GFP_KERNEL);
4555 if (!priv->rx_buffers) {
4556 IPW_DEBUG_INFO("can't allocate rx packet buffer table\n");
4557
4558 bd_queue_free(priv, &priv->rx_queue);
4559
4560 status_queue_free(priv);
4561
4562 return -ENOMEM;
4563 }
4564
4565 for (i = 0; i < RX_QUEUE_LENGTH; i++) {
4566 struct ipw2100_rx_packet *packet = &priv->rx_buffers[i];
4567
4568 err = ipw2100_alloc_skb(priv, packet);
4569 if (unlikely(err)) {
4570 err = -ENOMEM;
4571 break;
4572 }
4573
4574 /* The BD holds the cache aligned address */
4575 priv->rx_queue.drv[i].host_addr = packet->dma_addr;
4576 priv->rx_queue.drv[i].buf_length = IPW_RX_NIC_BUFFER_LENGTH;
4577 priv->status_queue.drv[i].status_fields = 0;
4578 }
4579
4580 if (i == RX_QUEUE_LENGTH)
4581 return 0;
4582
4583 for (j = 0; j < i; j++) {
4584 pci_unmap_single(priv->pci_dev, priv->rx_buffers[j].dma_addr,
4585 sizeof(struct ipw2100_rx_packet),
4586 PCI_DMA_FROMDEVICE);
4587 dev_kfree_skb(priv->rx_buffers[j].skb);
4588 }
4589
4590 kfree(priv->rx_buffers);
4591 priv->rx_buffers = NULL;
4592
4593 bd_queue_free(priv, &priv->rx_queue);
4594
4595 status_queue_free(priv);
4596
4597 return err;
4598}
4599
4600static void ipw2100_rx_initialize(struct ipw2100_priv *priv)
4601{
4602 IPW_DEBUG_INFO("enter\n");
4603
4604 priv->rx_queue.oldest = 0;
4605 priv->rx_queue.available = priv->rx_queue.entries - 1;
4606 priv->rx_queue.next = priv->rx_queue.entries - 1;
4607
4608 INIT_STAT(&priv->rxq_stat);
4609 SET_STAT(&priv->rxq_stat, priv->rx_queue.available);
4610
4611 bd_queue_initialize(priv, &priv->rx_queue,
4612 IPW_MEM_HOST_SHARED_RX_BD_BASE,
4613 IPW_MEM_HOST_SHARED_RX_BD_SIZE,
4614 IPW_MEM_HOST_SHARED_RX_READ_INDEX,
4615 IPW_MEM_HOST_SHARED_RX_WRITE_INDEX);
4616
4617 /* set up the status queue */
4618 write_register(priv->net_dev, IPW_MEM_HOST_SHARED_RX_STATUS_BASE,
4619 priv->status_queue.nic);
4620
4621 IPW_DEBUG_INFO("exit\n");
4622}
4623
4624static void ipw2100_rx_free(struct ipw2100_priv *priv)
4625{
4626 int i;
4627
4628 IPW_DEBUG_INFO("enter\n");
4629
4630 bd_queue_free(priv, &priv->rx_queue);
4631 status_queue_free(priv);
4632
4633 if (!priv->rx_buffers)
4634 return;
4635
4636 for (i = 0; i < RX_QUEUE_LENGTH; i++) {
4637 if (priv->rx_buffers[i].rxp) {
4638 pci_unmap_single(priv->pci_dev,
4639 priv->rx_buffers[i].dma_addr,
4640 sizeof(struct ipw2100_rx),
4641 PCI_DMA_FROMDEVICE);
4642 dev_kfree_skb(priv->rx_buffers[i].skb);
4643 }
4644 }
4645
4646 kfree(priv->rx_buffers);
4647 priv->rx_buffers = NULL;
4648
4649 IPW_DEBUG_INFO("exit\n");
4650}
4651
4652static int ipw2100_read_mac_address(struct ipw2100_priv *priv)
4653{
4654 u32 length = ETH_ALEN;
4655 u8 mac[ETH_ALEN];
4656
4657 int err;
4658
James Ketrenosee8e3652005-09-14 09:47:29 -05004659 err = ipw2100_get_ordinal(priv, IPW_ORD_STAT_ADAPTER_MAC, mac, &length);
James Ketrenos2c86c272005-03-23 17:32:29 -06004660 if (err) {
4661 IPW_DEBUG_INFO("MAC address read failed\n");
4662 return -EIO;
4663 }
4664 IPW_DEBUG_INFO("card MAC is %02X:%02X:%02X:%02X:%02X:%02X\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05004665 mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]);
James Ketrenos2c86c272005-03-23 17:32:29 -06004666
4667 memcpy(priv->net_dev->dev_addr, mac, ETH_ALEN);
4668
4669 return 0;
4670}
4671
4672/********************************************************************
4673 *
4674 * Firmware Commands
4675 *
4676 ********************************************************************/
4677
Jiri Bencc4aee8c2005-08-25 20:04:43 -04004678static int ipw2100_set_mac_address(struct ipw2100_priv *priv, int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06004679{
4680 struct host_command cmd = {
4681 .host_command = ADAPTER_ADDRESS,
4682 .host_command_sequence = 0,
4683 .host_command_length = ETH_ALEN
4684 };
4685 int err;
4686
4687 IPW_DEBUG_HC("SET_MAC_ADDRESS\n");
4688
4689 IPW_DEBUG_INFO("enter\n");
4690
4691 if (priv->config & CFG_CUSTOM_MAC) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004692 memcpy(cmd.host_command_parameters, priv->mac_addr, ETH_ALEN);
James Ketrenos2c86c272005-03-23 17:32:29 -06004693 memcpy(priv->net_dev->dev_addr, priv->mac_addr, ETH_ALEN);
4694 } else
4695 memcpy(cmd.host_command_parameters, priv->net_dev->dev_addr,
4696 ETH_ALEN);
4697
4698 err = ipw2100_hw_send_command(priv, &cmd);
4699
4700 IPW_DEBUG_INFO("exit\n");
4701 return err;
4702}
4703
Jiri Bencc4aee8c2005-08-25 20:04:43 -04004704static int ipw2100_set_port_type(struct ipw2100_priv *priv, u32 port_type,
James Ketrenos2c86c272005-03-23 17:32:29 -06004705 int batch_mode)
4706{
4707 struct host_command cmd = {
4708 .host_command = PORT_TYPE,
4709 .host_command_sequence = 0,
4710 .host_command_length = sizeof(u32)
4711 };
4712 int err;
4713
4714 switch (port_type) {
4715 case IW_MODE_INFRA:
4716 cmd.host_command_parameters[0] = IPW_BSS;
4717 break;
4718 case IW_MODE_ADHOC:
4719 cmd.host_command_parameters[0] = IPW_IBSS;
4720 break;
4721 }
4722
4723 IPW_DEBUG_HC("PORT_TYPE: %s\n",
4724 port_type == IPW_IBSS ? "Ad-Hoc" : "Managed");
4725
4726 if (!batch_mode) {
4727 err = ipw2100_disable_adapter(priv);
4728 if (err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004729 printk(KERN_ERR DRV_NAME
4730 ": %s: Could not disable adapter %d\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06004731 priv->net_dev->name, err);
4732 return err;
4733 }
4734 }
4735
4736 /* send cmd to firmware */
4737 err = ipw2100_hw_send_command(priv, &cmd);
4738
4739 if (!batch_mode)
4740 ipw2100_enable_adapter(priv);
4741
4742 return err;
4743}
4744
Jiri Bencc4aee8c2005-08-25 20:04:43 -04004745static int ipw2100_set_channel(struct ipw2100_priv *priv, u32 channel,
4746 int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06004747{
4748 struct host_command cmd = {
4749 .host_command = CHANNEL,
4750 .host_command_sequence = 0,
4751 .host_command_length = sizeof(u32)
4752 };
4753 int err;
4754
4755 cmd.host_command_parameters[0] = channel;
4756
4757 IPW_DEBUG_HC("CHANNEL: %d\n", channel);
4758
4759 /* If BSS then we don't support channel selection */
4760 if (priv->ieee->iw_mode == IW_MODE_INFRA)
4761 return 0;
4762
4763 if ((channel != 0) &&
4764 ((channel < REG_MIN_CHANNEL) || (channel > REG_MAX_CHANNEL)))
4765 return -EINVAL;
4766
4767 if (!batch_mode) {
4768 err = ipw2100_disable_adapter(priv);
4769 if (err)
4770 return err;
4771 }
4772
4773 err = ipw2100_hw_send_command(priv, &cmd);
4774 if (err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004775 IPW_DEBUG_INFO("Failed to set channel to %d", channel);
James Ketrenos2c86c272005-03-23 17:32:29 -06004776 return err;
4777 }
4778
4779 if (channel)
4780 priv->config |= CFG_STATIC_CHANNEL;
4781 else
4782 priv->config &= ~CFG_STATIC_CHANNEL;
4783
4784 priv->channel = channel;
4785
4786 if (!batch_mode) {
4787 err = ipw2100_enable_adapter(priv);
4788 if (err)
4789 return err;
4790 }
4791
4792 return 0;
4793}
4794
Jiri Bencc4aee8c2005-08-25 20:04:43 -04004795static int ipw2100_system_config(struct ipw2100_priv *priv, int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06004796{
4797 struct host_command cmd = {
4798 .host_command = SYSTEM_CONFIG,
4799 .host_command_sequence = 0,
4800 .host_command_length = 12,
4801 };
4802 u32 ibss_mask, len = sizeof(u32);
4803 int err;
4804
4805 /* Set system configuration */
4806
4807 if (!batch_mode) {
4808 err = ipw2100_disable_adapter(priv);
4809 if (err)
4810 return err;
4811 }
4812
4813 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
4814 cmd.host_command_parameters[0] |= IPW_CFG_IBSS_AUTO_START;
4815
4816 cmd.host_command_parameters[0] |= IPW_CFG_IBSS_MASK |
James Ketrenosee8e3652005-09-14 09:47:29 -05004817 IPW_CFG_BSS_MASK | IPW_CFG_802_1x_ENABLE;
James Ketrenos2c86c272005-03-23 17:32:29 -06004818
4819 if (!(priv->config & CFG_LONG_PREAMBLE))
4820 cmd.host_command_parameters[0] |= IPW_CFG_PREAMBLE_AUTO;
4821
4822 err = ipw2100_get_ordinal(priv,
4823 IPW_ORD_EEPROM_IBSS_11B_CHANNELS,
James Ketrenosee8e3652005-09-14 09:47:29 -05004824 &ibss_mask, &len);
James Ketrenos2c86c272005-03-23 17:32:29 -06004825 if (err)
4826 ibss_mask = IPW_IBSS_11B_DEFAULT_MASK;
4827
4828 cmd.host_command_parameters[1] = REG_CHANNEL_MASK;
4829 cmd.host_command_parameters[2] = REG_CHANNEL_MASK & ibss_mask;
4830
4831 /* 11b only */
James Ketrenosee8e3652005-09-14 09:47:29 -05004832 /*cmd.host_command_parameters[0] |= DIVERSITY_ANTENNA_A; */
James Ketrenos2c86c272005-03-23 17:32:29 -06004833
4834 err = ipw2100_hw_send_command(priv, &cmd);
4835 if (err)
4836 return err;
4837
4838/* If IPv6 is configured in the kernel then we don't want to filter out all
4839 * of the multicast packets as IPv6 needs some. */
4840#if !defined(CONFIG_IPV6) && !defined(CONFIG_IPV6_MODULE)
4841 cmd.host_command = ADD_MULTICAST;
4842 cmd.host_command_sequence = 0;
4843 cmd.host_command_length = 0;
4844
4845 ipw2100_hw_send_command(priv, &cmd);
4846#endif
4847 if (!batch_mode) {
4848 err = ipw2100_enable_adapter(priv);
4849 if (err)
4850 return err;
4851 }
4852
4853 return 0;
4854}
4855
Jiri Bencc4aee8c2005-08-25 20:04:43 -04004856static int ipw2100_set_tx_rates(struct ipw2100_priv *priv, u32 rate,
4857 int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06004858{
4859 struct host_command cmd = {
4860 .host_command = BASIC_TX_RATES,
4861 .host_command_sequence = 0,
4862 .host_command_length = 4
4863 };
4864 int err;
4865
4866 cmd.host_command_parameters[0] = rate & TX_RATE_MASK;
4867
4868 if (!batch_mode) {
4869 err = ipw2100_disable_adapter(priv);
4870 if (err)
4871 return err;
4872 }
4873
4874 /* Set BASIC TX Rate first */
4875 ipw2100_hw_send_command(priv, &cmd);
4876
4877 /* Set TX Rate */
4878 cmd.host_command = TX_RATES;
4879 ipw2100_hw_send_command(priv, &cmd);
4880
4881 /* Set MSDU TX Rate */
4882 cmd.host_command = MSDU_TX_RATES;
4883 ipw2100_hw_send_command(priv, &cmd);
4884
4885 if (!batch_mode) {
4886 err = ipw2100_enable_adapter(priv);
4887 if (err)
4888 return err;
4889 }
4890
4891 priv->tx_rates = rate;
4892
4893 return 0;
4894}
4895
James Ketrenosee8e3652005-09-14 09:47:29 -05004896static int ipw2100_set_power_mode(struct ipw2100_priv *priv, int power_level)
James Ketrenos2c86c272005-03-23 17:32:29 -06004897{
4898 struct host_command cmd = {
4899 .host_command = POWER_MODE,
4900 .host_command_sequence = 0,
4901 .host_command_length = 4
4902 };
4903 int err;
4904
4905 cmd.host_command_parameters[0] = power_level;
4906
4907 err = ipw2100_hw_send_command(priv, &cmd);
4908 if (err)
4909 return err;
4910
4911 if (power_level == IPW_POWER_MODE_CAM)
4912 priv->power_mode = IPW_POWER_LEVEL(priv->power_mode);
4913 else
4914 priv->power_mode = IPW_POWER_ENABLED | power_level;
4915
Robert P. J. Dayae800312007-01-31 02:39:40 -05004916#ifdef IPW2100_TX_POWER
James Ketrenosee8e3652005-09-14 09:47:29 -05004917 if (priv->port_type == IBSS && priv->adhoc_power != DFTL_IBSS_TX_POWER) {
James Ketrenos2c86c272005-03-23 17:32:29 -06004918 /* Set beacon interval */
4919 cmd.host_command = TX_POWER_INDEX;
James Ketrenosee8e3652005-09-14 09:47:29 -05004920 cmd.host_command_parameters[0] = (u32) priv->adhoc_power;
James Ketrenos2c86c272005-03-23 17:32:29 -06004921
4922 err = ipw2100_hw_send_command(priv, &cmd);
4923 if (err)
4924 return err;
4925 }
4926#endif
4927
4928 return 0;
4929}
4930
Jiri Bencc4aee8c2005-08-25 20:04:43 -04004931static int ipw2100_set_rts_threshold(struct ipw2100_priv *priv, u32 threshold)
James Ketrenos2c86c272005-03-23 17:32:29 -06004932{
4933 struct host_command cmd = {
4934 .host_command = RTS_THRESHOLD,
4935 .host_command_sequence = 0,
4936 .host_command_length = 4
4937 };
4938 int err;
4939
4940 if (threshold & RTS_DISABLED)
4941 cmd.host_command_parameters[0] = MAX_RTS_THRESHOLD;
4942 else
4943 cmd.host_command_parameters[0] = threshold & ~RTS_DISABLED;
4944
4945 err = ipw2100_hw_send_command(priv, &cmd);
4946 if (err)
4947 return err;
4948
4949 priv->rts_threshold = threshold;
4950
4951 return 0;
4952}
4953
4954#if 0
4955int ipw2100_set_fragmentation_threshold(struct ipw2100_priv *priv,
4956 u32 threshold, int batch_mode)
4957{
4958 struct host_command cmd = {
4959 .host_command = FRAG_THRESHOLD,
4960 .host_command_sequence = 0,
4961 .host_command_length = 4,
4962 .host_command_parameters[0] = 0,
4963 };
4964 int err;
4965
4966 if (!batch_mode) {
4967 err = ipw2100_disable_adapter(priv);
4968 if (err)
4969 return err;
4970 }
4971
4972 if (threshold == 0)
4973 threshold = DEFAULT_FRAG_THRESHOLD;
4974 else {
4975 threshold = max(threshold, MIN_FRAG_THRESHOLD);
4976 threshold = min(threshold, MAX_FRAG_THRESHOLD);
4977 }
4978
4979 cmd.host_command_parameters[0] = threshold;
4980
4981 IPW_DEBUG_HC("FRAG_THRESHOLD: %u\n", threshold);
4982
4983 err = ipw2100_hw_send_command(priv, &cmd);
4984
4985 if (!batch_mode)
4986 ipw2100_enable_adapter(priv);
4987
4988 if (!err)
4989 priv->frag_threshold = threshold;
4990
4991 return err;
4992}
4993#endif
4994
Jiri Bencc4aee8c2005-08-25 20:04:43 -04004995static int ipw2100_set_short_retry(struct ipw2100_priv *priv, u32 retry)
James Ketrenos2c86c272005-03-23 17:32:29 -06004996{
4997 struct host_command cmd = {
4998 .host_command = SHORT_RETRY_LIMIT,
4999 .host_command_sequence = 0,
5000 .host_command_length = 4
5001 };
5002 int err;
5003
5004 cmd.host_command_parameters[0] = retry;
5005
5006 err = ipw2100_hw_send_command(priv, &cmd);
5007 if (err)
5008 return err;
5009
5010 priv->short_retry_limit = retry;
5011
5012 return 0;
5013}
5014
Jiri Bencc4aee8c2005-08-25 20:04:43 -04005015static int ipw2100_set_long_retry(struct ipw2100_priv *priv, u32 retry)
James Ketrenos2c86c272005-03-23 17:32:29 -06005016{
5017 struct host_command cmd = {
5018 .host_command = LONG_RETRY_LIMIT,
5019 .host_command_sequence = 0,
5020 .host_command_length = 4
5021 };
5022 int err;
5023
5024 cmd.host_command_parameters[0] = retry;
5025
5026 err = ipw2100_hw_send_command(priv, &cmd);
5027 if (err)
5028 return err;
5029
5030 priv->long_retry_limit = retry;
5031
5032 return 0;
5033}
5034
James Ketrenosee8e3652005-09-14 09:47:29 -05005035static int ipw2100_set_mandatory_bssid(struct ipw2100_priv *priv, u8 * bssid,
Jiri Bencc4aee8c2005-08-25 20:04:43 -04005036 int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06005037{
5038 struct host_command cmd = {
5039 .host_command = MANDATORY_BSSID,
5040 .host_command_sequence = 0,
5041 .host_command_length = (bssid == NULL) ? 0 : ETH_ALEN
5042 };
5043 int err;
5044
Brice Goglin0f52bf92005-12-01 01:41:46 -08005045#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06005046 if (bssid != NULL)
James Ketrenosee8e3652005-09-14 09:47:29 -05005047 IPW_DEBUG_HC("MANDATORY_BSSID: %02X:%02X:%02X:%02X:%02X:%02X\n",
5048 bssid[0], bssid[1], bssid[2], bssid[3], bssid[4],
5049 bssid[5]);
James Ketrenos2c86c272005-03-23 17:32:29 -06005050 else
5051 IPW_DEBUG_HC("MANDATORY_BSSID: <clear>\n");
5052#endif
5053 /* if BSSID is empty then we disable mandatory bssid mode */
5054 if (bssid != NULL)
James Ketrenos82328352005-08-24 22:33:31 -05005055 memcpy(cmd.host_command_parameters, bssid, ETH_ALEN);
James Ketrenos2c86c272005-03-23 17:32:29 -06005056
5057 if (!batch_mode) {
5058 err = ipw2100_disable_adapter(priv);
5059 if (err)
5060 return err;
5061 }
5062
5063 err = ipw2100_hw_send_command(priv, &cmd);
5064
5065 if (!batch_mode)
5066 ipw2100_enable_adapter(priv);
5067
5068 return err;
5069}
5070
James Ketrenos2c86c272005-03-23 17:32:29 -06005071static int ipw2100_disassociate_bssid(struct ipw2100_priv *priv)
5072{
5073 struct host_command cmd = {
5074 .host_command = DISASSOCIATION_BSSID,
5075 .host_command_sequence = 0,
5076 .host_command_length = ETH_ALEN
5077 };
5078 int err;
5079 int len;
5080
5081 IPW_DEBUG_HC("DISASSOCIATION_BSSID\n");
5082
5083 len = ETH_ALEN;
5084 /* The Firmware currently ignores the BSSID and just disassociates from
5085 * the currently associated AP -- but in the off chance that a future
5086 * firmware does use the BSSID provided here, we go ahead and try and
5087 * set it to the currently associated AP's BSSID */
5088 memcpy(cmd.host_command_parameters, priv->bssid, ETH_ALEN);
5089
5090 err = ipw2100_hw_send_command(priv, &cmd);
5091
5092 return err;
5093}
James Ketrenos2c86c272005-03-23 17:32:29 -06005094
5095static int ipw2100_set_wpa_ie(struct ipw2100_priv *,
5096 struct ipw2100_wpa_assoc_frame *, int)
James Ketrenosee8e3652005-09-14 09:47:29 -05005097 __attribute__ ((unused));
James Ketrenos2c86c272005-03-23 17:32:29 -06005098
5099static int ipw2100_set_wpa_ie(struct ipw2100_priv *priv,
5100 struct ipw2100_wpa_assoc_frame *wpa_frame,
5101 int batch_mode)
5102{
5103 struct host_command cmd = {
5104 .host_command = SET_WPA_IE,
5105 .host_command_sequence = 0,
5106 .host_command_length = sizeof(struct ipw2100_wpa_assoc_frame),
5107 };
5108 int err;
5109
5110 IPW_DEBUG_HC("SET_WPA_IE\n");
5111
5112 if (!batch_mode) {
5113 err = ipw2100_disable_adapter(priv);
5114 if (err)
5115 return err;
5116 }
5117
5118 memcpy(cmd.host_command_parameters, wpa_frame,
5119 sizeof(struct ipw2100_wpa_assoc_frame));
5120
5121 err = ipw2100_hw_send_command(priv, &cmd);
5122
5123 if (!batch_mode) {
5124 if (ipw2100_enable_adapter(priv))
5125 err = -EIO;
5126 }
5127
5128 return err;
5129}
5130
5131struct security_info_params {
5132 u32 allowed_ciphers;
5133 u16 version;
5134 u8 auth_mode;
5135 u8 replay_counters_number;
5136 u8 unicast_using_group;
5137} __attribute__ ((packed));
5138
Jiri Bencc4aee8c2005-08-25 20:04:43 -04005139static int ipw2100_set_security_information(struct ipw2100_priv *priv,
5140 int auth_mode,
5141 int security_level,
5142 int unicast_using_group,
5143 int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06005144{
5145 struct host_command cmd = {
5146 .host_command = SET_SECURITY_INFORMATION,
5147 .host_command_sequence = 0,
5148 .host_command_length = sizeof(struct security_info_params)
5149 };
5150 struct security_info_params *security =
James Ketrenosee8e3652005-09-14 09:47:29 -05005151 (struct security_info_params *)&cmd.host_command_parameters;
James Ketrenos2c86c272005-03-23 17:32:29 -06005152 int err;
5153 memset(security, 0, sizeof(*security));
5154
5155 /* If shared key AP authentication is turned on, then we need to
5156 * configure the firmware to try and use it.
5157 *
5158 * Actual data encryption/decryption is handled by the host. */
5159 security->auth_mode = auth_mode;
5160 security->unicast_using_group = unicast_using_group;
5161
5162 switch (security_level) {
5163 default:
5164 case SEC_LEVEL_0:
5165 security->allowed_ciphers = IPW_NONE_CIPHER;
5166 break;
5167 case SEC_LEVEL_1:
5168 security->allowed_ciphers = IPW_WEP40_CIPHER |
James Ketrenosee8e3652005-09-14 09:47:29 -05005169 IPW_WEP104_CIPHER;
James Ketrenos2c86c272005-03-23 17:32:29 -06005170 break;
5171 case SEC_LEVEL_2:
5172 security->allowed_ciphers = IPW_WEP40_CIPHER |
James Ketrenosee8e3652005-09-14 09:47:29 -05005173 IPW_WEP104_CIPHER | IPW_TKIP_CIPHER;
James Ketrenos2c86c272005-03-23 17:32:29 -06005174 break;
5175 case SEC_LEVEL_2_CKIP:
5176 security->allowed_ciphers = IPW_WEP40_CIPHER |
James Ketrenosee8e3652005-09-14 09:47:29 -05005177 IPW_WEP104_CIPHER | IPW_CKIP_CIPHER;
James Ketrenos2c86c272005-03-23 17:32:29 -06005178 break;
5179 case SEC_LEVEL_3:
5180 security->allowed_ciphers = IPW_WEP40_CIPHER |
James Ketrenosee8e3652005-09-14 09:47:29 -05005181 IPW_WEP104_CIPHER | IPW_TKIP_CIPHER | IPW_CCMP_CIPHER;
James Ketrenos2c86c272005-03-23 17:32:29 -06005182 break;
5183 }
5184
James Ketrenosee8e3652005-09-14 09:47:29 -05005185 IPW_DEBUG_HC
5186 ("SET_SECURITY_INFORMATION: auth:%d cipher:0x%02X (level %d)\n",
5187 security->auth_mode, security->allowed_ciphers, security_level);
James Ketrenos2c86c272005-03-23 17:32:29 -06005188
5189 security->replay_counters_number = 0;
5190
5191 if (!batch_mode) {
5192 err = ipw2100_disable_adapter(priv);
5193 if (err)
5194 return err;
5195 }
5196
5197 err = ipw2100_hw_send_command(priv, &cmd);
5198
5199 if (!batch_mode)
5200 ipw2100_enable_adapter(priv);
5201
5202 return err;
5203}
5204
James Ketrenosee8e3652005-09-14 09:47:29 -05005205static int ipw2100_set_tx_power(struct ipw2100_priv *priv, u32 tx_power)
James Ketrenos2c86c272005-03-23 17:32:29 -06005206{
5207 struct host_command cmd = {
5208 .host_command = TX_POWER_INDEX,
5209 .host_command_sequence = 0,
5210 .host_command_length = 4
5211 };
5212 int err = 0;
Zhu Yi3173ca02006-01-24 13:49:01 +08005213 u32 tmp = tx_power;
James Ketrenos2c86c272005-03-23 17:32:29 -06005214
Liu Hongf75459e2005-07-13 12:29:21 -05005215 if (tx_power != IPW_TX_POWER_DEFAULT)
Zhu Yi3173ca02006-01-24 13:49:01 +08005216 tmp = (tx_power - IPW_TX_POWER_MIN_DBM) * 16 /
5217 (IPW_TX_POWER_MAX_DBM - IPW_TX_POWER_MIN_DBM);
Liu Hongf75459e2005-07-13 12:29:21 -05005218
Zhu Yi3173ca02006-01-24 13:49:01 +08005219 cmd.host_command_parameters[0] = tmp;
James Ketrenos2c86c272005-03-23 17:32:29 -06005220
5221 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
5222 err = ipw2100_hw_send_command(priv, &cmd);
5223 if (!err)
5224 priv->tx_power = tx_power;
5225
5226 return 0;
5227}
5228
Jiri Bencc4aee8c2005-08-25 20:04:43 -04005229static int ipw2100_set_ibss_beacon_interval(struct ipw2100_priv *priv,
5230 u32 interval, int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06005231{
5232 struct host_command cmd = {
5233 .host_command = BEACON_INTERVAL,
5234 .host_command_sequence = 0,
5235 .host_command_length = 4
5236 };
5237 int err;
5238
5239 cmd.host_command_parameters[0] = interval;
5240
5241 IPW_DEBUG_INFO("enter\n");
5242
5243 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
5244 if (!batch_mode) {
5245 err = ipw2100_disable_adapter(priv);
5246 if (err)
5247 return err;
5248 }
5249
5250 ipw2100_hw_send_command(priv, &cmd);
5251
5252 if (!batch_mode) {
5253 err = ipw2100_enable_adapter(priv);
5254 if (err)
5255 return err;
5256 }
5257 }
5258
5259 IPW_DEBUG_INFO("exit\n");
5260
5261 return 0;
5262}
5263
James Ketrenos2c86c272005-03-23 17:32:29 -06005264void ipw2100_queues_initialize(struct ipw2100_priv *priv)
5265{
5266 ipw2100_tx_initialize(priv);
5267 ipw2100_rx_initialize(priv);
5268 ipw2100_msg_initialize(priv);
5269}
5270
5271void ipw2100_queues_free(struct ipw2100_priv *priv)
5272{
5273 ipw2100_tx_free(priv);
5274 ipw2100_rx_free(priv);
5275 ipw2100_msg_free(priv);
5276}
5277
5278int ipw2100_queues_allocate(struct ipw2100_priv *priv)
5279{
5280 if (ipw2100_tx_allocate(priv) ||
James Ketrenosee8e3652005-09-14 09:47:29 -05005281 ipw2100_rx_allocate(priv) || ipw2100_msg_allocate(priv))
James Ketrenos2c86c272005-03-23 17:32:29 -06005282 goto fail;
5283
5284 return 0;
5285
James Ketrenosee8e3652005-09-14 09:47:29 -05005286 fail:
James Ketrenos2c86c272005-03-23 17:32:29 -06005287 ipw2100_tx_free(priv);
5288 ipw2100_rx_free(priv);
5289 ipw2100_msg_free(priv);
5290 return -ENOMEM;
5291}
5292
5293#define IPW_PRIVACY_CAPABLE 0x0008
5294
5295static int ipw2100_set_wep_flags(struct ipw2100_priv *priv, u32 flags,
5296 int batch_mode)
5297{
5298 struct host_command cmd = {
5299 .host_command = WEP_FLAGS,
5300 .host_command_sequence = 0,
5301 .host_command_length = 4
5302 };
5303 int err;
5304
5305 cmd.host_command_parameters[0] = flags;
5306
5307 IPW_DEBUG_HC("WEP_FLAGS: flags = 0x%08X\n", flags);
5308
5309 if (!batch_mode) {
5310 err = ipw2100_disable_adapter(priv);
5311 if (err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05005312 printk(KERN_ERR DRV_NAME
5313 ": %s: Could not disable adapter %d\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06005314 priv->net_dev->name, err);
5315 return err;
5316 }
5317 }
5318
5319 /* send cmd to firmware */
5320 err = ipw2100_hw_send_command(priv, &cmd);
5321
5322 if (!batch_mode)
5323 ipw2100_enable_adapter(priv);
5324
5325 return err;
5326}
5327
5328struct ipw2100_wep_key {
5329 u8 idx;
5330 u8 len;
5331 u8 key[13];
5332};
5333
5334/* Macros to ease up priting WEP keys */
5335#define WEP_FMT_64 "%02X%02X%02X%02X-%02X"
5336#define WEP_FMT_128 "%02X%02X%02X%02X-%02X%02X%02X%02X-%02X%02X%02X"
5337#define WEP_STR_64(x) x[0],x[1],x[2],x[3],x[4]
5338#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]
5339
James Ketrenos2c86c272005-03-23 17:32:29 -06005340/**
5341 * Set a the wep key
5342 *
5343 * @priv: struct to work on
5344 * @idx: index of the key we want to set
5345 * @key: ptr to the key data to set
5346 * @len: length of the buffer at @key
5347 * @batch_mode: FIXME perform the operation in batch mode, not
5348 * disabling the device.
5349 *
5350 * @returns 0 if OK, < 0 errno code on error.
5351 *
5352 * Fill out a command structure with the new wep key, length an
5353 * index and send it down the wire.
5354 */
5355static int ipw2100_set_key(struct ipw2100_priv *priv,
5356 int idx, char *key, int len, int batch_mode)
5357{
5358 int keylen = len ? (len <= 5 ? 5 : 13) : 0;
5359 struct host_command cmd = {
5360 .host_command = WEP_KEY_INFO,
5361 .host_command_sequence = 0,
5362 .host_command_length = sizeof(struct ipw2100_wep_key),
5363 };
James Ketrenosee8e3652005-09-14 09:47:29 -05005364 struct ipw2100_wep_key *wep_key = (void *)cmd.host_command_parameters;
James Ketrenos2c86c272005-03-23 17:32:29 -06005365 int err;
5366
5367 IPW_DEBUG_HC("WEP_KEY_INFO: index = %d, len = %d/%d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05005368 idx, keylen, len);
James Ketrenos2c86c272005-03-23 17:32:29 -06005369
5370 /* NOTE: We don't check cached values in case the firmware was reset
Adrian Bunk80f72282006-06-30 18:27:16 +02005371 * or some other problem is occurring. If the user is setting the key,
James Ketrenos2c86c272005-03-23 17:32:29 -06005372 * then we push the change */
5373
5374 wep_key->idx = idx;
5375 wep_key->len = keylen;
5376
5377 if (keylen) {
5378 memcpy(wep_key->key, key, len);
5379 memset(wep_key->key + len, 0, keylen - len);
5380 }
5381
5382 /* Will be optimized out on debug not being configured in */
5383 if (keylen == 0)
5384 IPW_DEBUG_WEP("%s: Clearing key %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05005385 priv->net_dev->name, wep_key->idx);
James Ketrenos2c86c272005-03-23 17:32:29 -06005386 else if (keylen == 5)
5387 IPW_DEBUG_WEP("%s: idx: %d, len: %d key: " WEP_FMT_64 "\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05005388 priv->net_dev->name, wep_key->idx, wep_key->len,
5389 WEP_STR_64(wep_key->key));
James Ketrenos2c86c272005-03-23 17:32:29 -06005390 else
5391 IPW_DEBUG_WEP("%s: idx: %d, len: %d key: " WEP_FMT_128
James Ketrenosee8e3652005-09-14 09:47:29 -05005392 "\n",
5393 priv->net_dev->name, wep_key->idx, wep_key->len,
5394 WEP_STR_128(wep_key->key));
James Ketrenos2c86c272005-03-23 17:32:29 -06005395
5396 if (!batch_mode) {
5397 err = ipw2100_disable_adapter(priv);
5398 /* FIXME: IPG: shouldn't this prink be in _disable_adapter()? */
5399 if (err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05005400 printk(KERN_ERR DRV_NAME
5401 ": %s: Could not disable adapter %d\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06005402 priv->net_dev->name, err);
5403 return err;
5404 }
5405 }
5406
5407 /* send cmd to firmware */
5408 err = ipw2100_hw_send_command(priv, &cmd);
5409
5410 if (!batch_mode) {
5411 int err2 = ipw2100_enable_adapter(priv);
5412 if (err == 0)
5413 err = err2;
5414 }
5415 return err;
5416}
5417
5418static int ipw2100_set_key_index(struct ipw2100_priv *priv,
5419 int idx, int batch_mode)
5420{
5421 struct host_command cmd = {
5422 .host_command = WEP_KEY_INDEX,
5423 .host_command_sequence = 0,
5424 .host_command_length = 4,
James Ketrenosee8e3652005-09-14 09:47:29 -05005425 .host_command_parameters = {idx},
James Ketrenos2c86c272005-03-23 17:32:29 -06005426 };
5427 int err;
5428
5429 IPW_DEBUG_HC("WEP_KEY_INDEX: index = %d\n", idx);
5430
5431 if (idx < 0 || idx > 3)
5432 return -EINVAL;
5433
5434 if (!batch_mode) {
5435 err = ipw2100_disable_adapter(priv);
5436 if (err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05005437 printk(KERN_ERR DRV_NAME
5438 ": %s: Could not disable adapter %d\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06005439 priv->net_dev->name, err);
5440 return err;
5441 }
5442 }
5443
5444 /* send cmd to firmware */
5445 err = ipw2100_hw_send_command(priv, &cmd);
5446
5447 if (!batch_mode)
5448 ipw2100_enable_adapter(priv);
5449
5450 return err;
5451}
5452
James Ketrenosee8e3652005-09-14 09:47:29 -05005453static int ipw2100_configure_security(struct ipw2100_priv *priv, int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06005454{
5455 int i, err, auth_mode, sec_level, use_group;
5456
5457 if (!(priv->status & STATUS_RUNNING))
5458 return 0;
5459
5460 if (!batch_mode) {
5461 err = ipw2100_disable_adapter(priv);
5462 if (err)
5463 return err;
5464 }
5465
25b645b2005-07-12 15:45:30 -05005466 if (!priv->ieee->sec.enabled) {
James Ketrenosee8e3652005-09-14 09:47:29 -05005467 err =
5468 ipw2100_set_security_information(priv, IPW_AUTH_OPEN,
5469 SEC_LEVEL_0, 0, 1);
James Ketrenos2c86c272005-03-23 17:32:29 -06005470 } else {
5471 auth_mode = IPW_AUTH_OPEN;
Zhu Yicbbdd032006-01-24 13:48:53 +08005472 if (priv->ieee->sec.flags & SEC_AUTH_MODE) {
5473 if (priv->ieee->sec.auth_mode == WLAN_AUTH_SHARED_KEY)
5474 auth_mode = IPW_AUTH_SHARED;
5475 else if (priv->ieee->sec.auth_mode == WLAN_AUTH_LEAP)
5476 auth_mode = IPW_AUTH_LEAP_CISCO_ID;
5477 }
James Ketrenos2c86c272005-03-23 17:32:29 -06005478
5479 sec_level = SEC_LEVEL_0;
25b645b2005-07-12 15:45:30 -05005480 if (priv->ieee->sec.flags & SEC_LEVEL)
5481 sec_level = priv->ieee->sec.level;
James Ketrenos2c86c272005-03-23 17:32:29 -06005482
5483 use_group = 0;
25b645b2005-07-12 15:45:30 -05005484 if (priv->ieee->sec.flags & SEC_UNICAST_GROUP)
5485 use_group = priv->ieee->sec.unicast_uses_group;
James Ketrenos2c86c272005-03-23 17:32:29 -06005486
James Ketrenosee8e3652005-09-14 09:47:29 -05005487 err =
5488 ipw2100_set_security_information(priv, auth_mode, sec_level,
5489 use_group, 1);
James Ketrenos2c86c272005-03-23 17:32:29 -06005490 }
5491
5492 if (err)
5493 goto exit;
5494
25b645b2005-07-12 15:45:30 -05005495 if (priv->ieee->sec.enabled) {
James Ketrenos2c86c272005-03-23 17:32:29 -06005496 for (i = 0; i < 4; i++) {
25b645b2005-07-12 15:45:30 -05005497 if (!(priv->ieee->sec.flags & (1 << i))) {
5498 memset(priv->ieee->sec.keys[i], 0, WEP_KEY_LEN);
5499 priv->ieee->sec.key_sizes[i] = 0;
James Ketrenos2c86c272005-03-23 17:32:29 -06005500 } else {
5501 err = ipw2100_set_key(priv, i,
25b645b2005-07-12 15:45:30 -05005502 priv->ieee->sec.keys[i],
5503 priv->ieee->sec.
5504 key_sizes[i], 1);
James Ketrenos2c86c272005-03-23 17:32:29 -06005505 if (err)
5506 goto exit;
5507 }
5508 }
5509
5510 ipw2100_set_key_index(priv, priv->ieee->tx_keyidx, 1);
5511 }
5512
5513 /* Always enable privacy so the Host can filter WEP packets if
5514 * encrypted data is sent up */
James Ketrenosee8e3652005-09-14 09:47:29 -05005515 err =
5516 ipw2100_set_wep_flags(priv,
25b645b2005-07-12 15:45:30 -05005517 priv->ieee->sec.
5518 enabled ? IPW_PRIVACY_CAPABLE : 0, 1);
James Ketrenos2c86c272005-03-23 17:32:29 -06005519 if (err)
5520 goto exit;
5521
5522 priv->status &= ~STATUS_SECURITY_UPDATED;
5523
James Ketrenosee8e3652005-09-14 09:47:29 -05005524 exit:
James Ketrenos2c86c272005-03-23 17:32:29 -06005525 if (!batch_mode)
5526 ipw2100_enable_adapter(priv);
5527
5528 return err;
5529}
5530
David Howellsc4028952006-11-22 14:57:56 +00005531static void ipw2100_security_work(struct work_struct *work)
James Ketrenos2c86c272005-03-23 17:32:29 -06005532{
David Howellsc4028952006-11-22 14:57:56 +00005533 struct ipw2100_priv *priv =
5534 container_of(work, struct ipw2100_priv, security_work.work);
5535
James Ketrenos2c86c272005-03-23 17:32:29 -06005536 /* If we happen to have reconnected before we get a chance to
5537 * process this, then update the security settings--which causes
5538 * a disassociation to occur */
5539 if (!(priv->status & STATUS_ASSOCIATED) &&
5540 priv->status & STATUS_SECURITY_UPDATED)
5541 ipw2100_configure_security(priv, 0);
5542}
5543
5544static void shim__set_security(struct net_device *dev,
5545 struct ieee80211_security *sec)
5546{
5547 struct ipw2100_priv *priv = ieee80211_priv(dev);
5548 int i, force_update = 0;
5549
Ingo Molnar752e3772006-02-28 07:20:54 +08005550 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06005551 if (!(priv->status & STATUS_INITIALIZED))
5552 goto done;
5553
5554 for (i = 0; i < 4; i++) {
5555 if (sec->flags & (1 << i)) {
25b645b2005-07-12 15:45:30 -05005556 priv->ieee->sec.key_sizes[i] = sec->key_sizes[i];
James Ketrenos2c86c272005-03-23 17:32:29 -06005557 if (sec->key_sizes[i] == 0)
25b645b2005-07-12 15:45:30 -05005558 priv->ieee->sec.flags &= ~(1 << i);
James Ketrenos2c86c272005-03-23 17:32:29 -06005559 else
25b645b2005-07-12 15:45:30 -05005560 memcpy(priv->ieee->sec.keys[i], sec->keys[i],
James Ketrenos2c86c272005-03-23 17:32:29 -06005561 sec->key_sizes[i]);
Hong Liu054b08d2005-08-25 17:45:49 +08005562 if (sec->level == SEC_LEVEL_1) {
5563 priv->ieee->sec.flags |= (1 << i);
5564 priv->status |= STATUS_SECURITY_UPDATED;
5565 } else
5566 priv->ieee->sec.flags &= ~(1 << i);
James Ketrenos2c86c272005-03-23 17:32:29 -06005567 }
5568 }
5569
5570 if ((sec->flags & SEC_ACTIVE_KEY) &&
25b645b2005-07-12 15:45:30 -05005571 priv->ieee->sec.active_key != sec->active_key) {
James Ketrenos2c86c272005-03-23 17:32:29 -06005572 if (sec->active_key <= 3) {
25b645b2005-07-12 15:45:30 -05005573 priv->ieee->sec.active_key = sec->active_key;
5574 priv->ieee->sec.flags |= SEC_ACTIVE_KEY;
James Ketrenos2c86c272005-03-23 17:32:29 -06005575 } else
25b645b2005-07-12 15:45:30 -05005576 priv->ieee->sec.flags &= ~SEC_ACTIVE_KEY;
James Ketrenos2c86c272005-03-23 17:32:29 -06005577
5578 priv->status |= STATUS_SECURITY_UPDATED;
5579 }
5580
5581 if ((sec->flags & SEC_AUTH_MODE) &&
25b645b2005-07-12 15:45:30 -05005582 (priv->ieee->sec.auth_mode != sec->auth_mode)) {
5583 priv->ieee->sec.auth_mode = sec->auth_mode;
5584 priv->ieee->sec.flags |= SEC_AUTH_MODE;
James Ketrenos2c86c272005-03-23 17:32:29 -06005585 priv->status |= STATUS_SECURITY_UPDATED;
5586 }
5587
25b645b2005-07-12 15:45:30 -05005588 if (sec->flags & SEC_ENABLED && priv->ieee->sec.enabled != sec->enabled) {
5589 priv->ieee->sec.flags |= SEC_ENABLED;
5590 priv->ieee->sec.enabled = sec->enabled;
James Ketrenos2c86c272005-03-23 17:32:29 -06005591 priv->status |= STATUS_SECURITY_UPDATED;
5592 force_update = 1;
5593 }
5594
25b645b2005-07-12 15:45:30 -05005595 if (sec->flags & SEC_ENCRYPT)
5596 priv->ieee->sec.encrypt = sec->encrypt;
5597
5598 if (sec->flags & SEC_LEVEL && priv->ieee->sec.level != sec->level) {
5599 priv->ieee->sec.level = sec->level;
5600 priv->ieee->sec.flags |= SEC_LEVEL;
James Ketrenos2c86c272005-03-23 17:32:29 -06005601 priv->status |= STATUS_SECURITY_UPDATED;
5602 }
5603
5604 IPW_DEBUG_WEP("Security flags: %c %c%c%c%c %c%c%c%c\n",
25b645b2005-07-12 15:45:30 -05005605 priv->ieee->sec.flags & (1 << 8) ? '1' : '0',
5606 priv->ieee->sec.flags & (1 << 7) ? '1' : '0',
5607 priv->ieee->sec.flags & (1 << 6) ? '1' : '0',
5608 priv->ieee->sec.flags & (1 << 5) ? '1' : '0',
5609 priv->ieee->sec.flags & (1 << 4) ? '1' : '0',
5610 priv->ieee->sec.flags & (1 << 3) ? '1' : '0',
5611 priv->ieee->sec.flags & (1 << 2) ? '1' : '0',
5612 priv->ieee->sec.flags & (1 << 1) ? '1' : '0',
5613 priv->ieee->sec.flags & (1 << 0) ? '1' : '0');
James Ketrenos2c86c272005-03-23 17:32:29 -06005614
5615/* As a temporary work around to enable WPA until we figure out why
5616 * wpa_supplicant toggles the security capability of the driver, which
5617 * forces a disassocation with force_update...
5618 *
5619 * if (force_update || !(priv->status & STATUS_ASSOCIATED))*/
5620 if (!(priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)))
5621 ipw2100_configure_security(priv, 0);
James Ketrenosee8e3652005-09-14 09:47:29 -05005622 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08005623 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06005624}
5625
5626static int ipw2100_adapter_setup(struct ipw2100_priv *priv)
5627{
5628 int err;
5629 int batch_mode = 1;
5630 u8 *bssid;
5631
5632 IPW_DEBUG_INFO("enter\n");
5633
5634 err = ipw2100_disable_adapter(priv);
5635 if (err)
5636 return err;
5637#ifdef CONFIG_IPW2100_MONITOR
5638 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
5639 err = ipw2100_set_channel(priv, priv->channel, batch_mode);
5640 if (err)
5641 return err;
5642
5643 IPW_DEBUG_INFO("exit\n");
5644
5645 return 0;
5646 }
James Ketrenosee8e3652005-09-14 09:47:29 -05005647#endif /* CONFIG_IPW2100_MONITOR */
James Ketrenos2c86c272005-03-23 17:32:29 -06005648
5649 err = ipw2100_read_mac_address(priv);
5650 if (err)
5651 return -EIO;
5652
5653 err = ipw2100_set_mac_address(priv, batch_mode);
5654 if (err)
5655 return err;
5656
5657 err = ipw2100_set_port_type(priv, priv->ieee->iw_mode, batch_mode);
5658 if (err)
5659 return err;
5660
5661 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
5662 err = ipw2100_set_channel(priv, priv->channel, batch_mode);
5663 if (err)
5664 return err;
5665 }
5666
James Ketrenosee8e3652005-09-14 09:47:29 -05005667 err = ipw2100_system_config(priv, batch_mode);
James Ketrenos2c86c272005-03-23 17:32:29 -06005668 if (err)
5669 return err;
5670
5671 err = ipw2100_set_tx_rates(priv, priv->tx_rates, batch_mode);
5672 if (err)
5673 return err;
5674
5675 /* Default to power mode OFF */
5676 err = ipw2100_set_power_mode(priv, IPW_POWER_MODE_CAM);
5677 if (err)
5678 return err;
5679
5680 err = ipw2100_set_rts_threshold(priv, priv->rts_threshold);
5681 if (err)
5682 return err;
5683
5684 if (priv->config & CFG_STATIC_BSSID)
5685 bssid = priv->bssid;
5686 else
5687 bssid = NULL;
5688 err = ipw2100_set_mandatory_bssid(priv, bssid, batch_mode);
5689 if (err)
5690 return err;
5691
5692 if (priv->config & CFG_STATIC_ESSID)
5693 err = ipw2100_set_essid(priv, priv->essid, priv->essid_len,
5694 batch_mode);
5695 else
5696 err = ipw2100_set_essid(priv, NULL, 0, batch_mode);
5697 if (err)
5698 return err;
5699
5700 err = ipw2100_configure_security(priv, batch_mode);
5701 if (err)
5702 return err;
5703
5704 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
James Ketrenosee8e3652005-09-14 09:47:29 -05005705 err =
5706 ipw2100_set_ibss_beacon_interval(priv,
5707 priv->beacon_interval,
5708 batch_mode);
James Ketrenos2c86c272005-03-23 17:32:29 -06005709 if (err)
5710 return err;
5711
5712 err = ipw2100_set_tx_power(priv, priv->tx_power);
5713 if (err)
5714 return err;
5715 }
5716
5717 /*
James Ketrenosee8e3652005-09-14 09:47:29 -05005718 err = ipw2100_set_fragmentation_threshold(
5719 priv, priv->frag_threshold, batch_mode);
5720 if (err)
5721 return err;
5722 */
James Ketrenos2c86c272005-03-23 17:32:29 -06005723
5724 IPW_DEBUG_INFO("exit\n");
5725
5726 return 0;
5727}
5728
James Ketrenos2c86c272005-03-23 17:32:29 -06005729/*************************************************************************
5730 *
5731 * EXTERNALLY CALLED METHODS
5732 *
5733 *************************************************************************/
5734
5735/* This method is called by the network layer -- not to be confused with
5736 * ipw2100_set_mac_address() declared above called by this driver (and this
5737 * method as well) to talk to the firmware */
5738static int ipw2100_set_address(struct net_device *dev, void *p)
5739{
5740 struct ipw2100_priv *priv = ieee80211_priv(dev);
5741 struct sockaddr *addr = p;
5742 int err = 0;
5743
5744 if (!is_valid_ether_addr(addr->sa_data))
5745 return -EADDRNOTAVAIL;
5746
Ingo Molnar752e3772006-02-28 07:20:54 +08005747 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06005748
5749 priv->config |= CFG_CUSTOM_MAC;
5750 memcpy(priv->mac_addr, addr->sa_data, ETH_ALEN);
5751
5752 err = ipw2100_set_mac_address(priv, 0);
5753 if (err)
5754 goto done;
5755
5756 priv->reset_backoff = 0;
Ingo Molnar752e3772006-02-28 07:20:54 +08005757 mutex_unlock(&priv->action_mutex);
David Howellsc4028952006-11-22 14:57:56 +00005758 ipw2100_reset_adapter(&priv->reset_work.work);
James Ketrenos2c86c272005-03-23 17:32:29 -06005759 return 0;
5760
James Ketrenosee8e3652005-09-14 09:47:29 -05005761 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08005762 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06005763 return err;
5764}
5765
5766static int ipw2100_open(struct net_device *dev)
5767{
5768 struct ipw2100_priv *priv = ieee80211_priv(dev);
5769 unsigned long flags;
5770 IPW_DEBUG_INFO("dev->open\n");
5771
5772 spin_lock_irqsave(&priv->low_lock, flags);
Jiri Benc3ce329c2005-08-25 20:07:01 -04005773 if (priv->status & STATUS_ASSOCIATED) {
5774 netif_carrier_on(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06005775 netif_start_queue(dev);
Jiri Benc3ce329c2005-08-25 20:07:01 -04005776 }
James Ketrenos2c86c272005-03-23 17:32:29 -06005777 spin_unlock_irqrestore(&priv->low_lock, flags);
5778
5779 return 0;
5780}
5781
5782static int ipw2100_close(struct net_device *dev)
5783{
5784 struct ipw2100_priv *priv = ieee80211_priv(dev);
5785 unsigned long flags;
5786 struct list_head *element;
5787 struct ipw2100_tx_packet *packet;
5788
5789 IPW_DEBUG_INFO("enter\n");
5790
5791 spin_lock_irqsave(&priv->low_lock, flags);
5792
5793 if (priv->status & STATUS_ASSOCIATED)
5794 netif_carrier_off(dev);
5795 netif_stop_queue(dev);
5796
5797 /* Flush the TX queue ... */
5798 while (!list_empty(&priv->tx_pend_list)) {
5799 element = priv->tx_pend_list.next;
James Ketrenosee8e3652005-09-14 09:47:29 -05005800 packet = list_entry(element, struct ipw2100_tx_packet, list);
James Ketrenos2c86c272005-03-23 17:32:29 -06005801
5802 list_del(element);
5803 DEC_STAT(&priv->tx_pend_stat);
5804
5805 ieee80211_txb_free(packet->info.d_struct.txb);
5806 packet->info.d_struct.txb = NULL;
5807
5808 list_add_tail(element, &priv->tx_free_list);
5809 INC_STAT(&priv->tx_free_stat);
5810 }
5811 spin_unlock_irqrestore(&priv->low_lock, flags);
5812
5813 IPW_DEBUG_INFO("exit\n");
5814
5815 return 0;
5816}
5817
James Ketrenos2c86c272005-03-23 17:32:29 -06005818/*
5819 * TODO: Fix this function... its just wrong
5820 */
5821static void ipw2100_tx_timeout(struct net_device *dev)
5822{
5823 struct ipw2100_priv *priv = ieee80211_priv(dev);
5824
5825 priv->ieee->stats.tx_errors++;
5826
5827#ifdef CONFIG_IPW2100_MONITOR
5828 if (priv->ieee->iw_mode == IW_MODE_MONITOR)
5829 return;
5830#endif
5831
5832 IPW_DEBUG_INFO("%s: TX timed out. Scheduling firmware restart.\n",
5833 dev->name);
5834 schedule_reset(priv);
5835}
5836
James Ketrenosee8e3652005-09-14 09:47:29 -05005837static int ipw2100_wpa_enable(struct ipw2100_priv *priv, int value)
5838{
James Ketrenos82328352005-08-24 22:33:31 -05005839 /* This is called when wpa_supplicant loads and closes the driver
5840 * interface. */
5841 priv->ieee->wpa_enabled = value;
5842 return 0;
James Ketrenos2c86c272005-03-23 17:32:29 -06005843}
5844
James Ketrenosee8e3652005-09-14 09:47:29 -05005845static int ipw2100_wpa_set_auth_algs(struct ipw2100_priv *priv, int value)
5846{
James Ketrenos2c86c272005-03-23 17:32:29 -06005847
5848 struct ieee80211_device *ieee = priv->ieee;
5849 struct ieee80211_security sec = {
5850 .flags = SEC_AUTH_MODE,
5851 };
5852 int ret = 0;
5853
James Ketrenos82328352005-08-24 22:33:31 -05005854 if (value & IW_AUTH_ALG_SHARED_KEY) {
James Ketrenos2c86c272005-03-23 17:32:29 -06005855 sec.auth_mode = WLAN_AUTH_SHARED_KEY;
5856 ieee->open_wep = 0;
James Ketrenos82328352005-08-24 22:33:31 -05005857 } else if (value & IW_AUTH_ALG_OPEN_SYSTEM) {
James Ketrenos2c86c272005-03-23 17:32:29 -06005858 sec.auth_mode = WLAN_AUTH_OPEN;
5859 ieee->open_wep = 1;
Zhu Yicbbdd032006-01-24 13:48:53 +08005860 } else if (value & IW_AUTH_ALG_LEAP) {
5861 sec.auth_mode = WLAN_AUTH_LEAP;
5862 ieee->open_wep = 1;
James Ketrenos82328352005-08-24 22:33:31 -05005863 } else
5864 return -EINVAL;
James Ketrenos2c86c272005-03-23 17:32:29 -06005865
5866 if (ieee->set_security)
5867 ieee->set_security(ieee->dev, &sec);
5868 else
5869 ret = -EOPNOTSUPP;
5870
5871 return ret;
5872}
5873
Adrian Bunk3c398b82006-01-21 01:36:36 +01005874static void ipw2100_wpa_assoc_frame(struct ipw2100_priv *priv,
5875 char *wpa_ie, int wpa_ie_len)
James Ketrenosee8e3652005-09-14 09:47:29 -05005876{
James Ketrenos2c86c272005-03-23 17:32:29 -06005877
5878 struct ipw2100_wpa_assoc_frame frame;
5879
5880 frame.fixed_ie_mask = 0;
5881
5882 /* copy WPA IE */
5883 memcpy(frame.var_ie, wpa_ie, wpa_ie_len);
5884 frame.var_ie_len = wpa_ie_len;
5885
5886 /* make sure WPA is enabled */
5887 ipw2100_wpa_enable(priv, 1);
5888 ipw2100_set_wpa_ie(priv, &frame, 0);
5889}
5890
James Ketrenos2c86c272005-03-23 17:32:29 -06005891static void ipw_ethtool_get_drvinfo(struct net_device *dev,
5892 struct ethtool_drvinfo *info)
5893{
5894 struct ipw2100_priv *priv = ieee80211_priv(dev);
5895 char fw_ver[64], ucode_ver[64];
5896
5897 strcpy(info->driver, DRV_NAME);
5898 strcpy(info->version, DRV_VERSION);
5899
5900 ipw2100_get_fwversion(priv, fw_ver, sizeof(fw_ver));
5901 ipw2100_get_ucodeversion(priv, ucode_ver, sizeof(ucode_ver));
5902
5903 snprintf(info->fw_version, sizeof(info->fw_version), "%s:%d:%s",
5904 fw_ver, priv->eeprom_version, ucode_ver);
5905
5906 strcpy(info->bus_info, pci_name(priv->pci_dev));
5907}
5908
5909static u32 ipw2100_ethtool_get_link(struct net_device *dev)
5910{
James Ketrenosee8e3652005-09-14 09:47:29 -05005911 struct ipw2100_priv *priv = ieee80211_priv(dev);
5912 return (priv->status & STATUS_ASSOCIATED) ? 1 : 0;
James Ketrenos2c86c272005-03-23 17:32:29 -06005913}
5914
Jeff Garzik7282d492006-09-13 14:30:00 -04005915static const struct ethtool_ops ipw2100_ethtool_ops = {
James Ketrenosee8e3652005-09-14 09:47:29 -05005916 .get_link = ipw2100_ethtool_get_link,
5917 .get_drvinfo = ipw_ethtool_get_drvinfo,
James Ketrenos2c86c272005-03-23 17:32:29 -06005918};
5919
David Howellsc4028952006-11-22 14:57:56 +00005920static void ipw2100_hang_check(struct work_struct *work)
James Ketrenos2c86c272005-03-23 17:32:29 -06005921{
David Howellsc4028952006-11-22 14:57:56 +00005922 struct ipw2100_priv *priv =
5923 container_of(work, struct ipw2100_priv, hang_check.work);
James Ketrenos2c86c272005-03-23 17:32:29 -06005924 unsigned long flags;
5925 u32 rtc = 0xa5a5a5a5;
5926 u32 len = sizeof(rtc);
5927 int restart = 0;
5928
5929 spin_lock_irqsave(&priv->low_lock, flags);
5930
5931 if (priv->fatal_error != 0) {
5932 /* If fatal_error is set then we need to restart */
5933 IPW_DEBUG_INFO("%s: Hardware fatal error detected.\n",
5934 priv->net_dev->name);
5935
5936 restart = 1;
5937 } else if (ipw2100_get_ordinal(priv, IPW_ORD_RTC_TIME, &rtc, &len) ||
5938 (rtc == priv->last_rtc)) {
5939 /* Check if firmware is hung */
5940 IPW_DEBUG_INFO("%s: Firmware RTC stalled.\n",
5941 priv->net_dev->name);
5942
5943 restart = 1;
5944 }
5945
5946 if (restart) {
5947 /* Kill timer */
5948 priv->stop_hang_check = 1;
5949 priv->hangs++;
5950
5951 /* Restart the NIC */
5952 schedule_reset(priv);
5953 }
5954
5955 priv->last_rtc = rtc;
5956
5957 if (!priv->stop_hang_check)
5958 queue_delayed_work(priv->workqueue, &priv->hang_check, HZ / 2);
5959
5960 spin_unlock_irqrestore(&priv->low_lock, flags);
5961}
5962
David Howellsc4028952006-11-22 14:57:56 +00005963static void ipw2100_rf_kill(struct work_struct *work)
James Ketrenos2c86c272005-03-23 17:32:29 -06005964{
David Howellsc4028952006-11-22 14:57:56 +00005965 struct ipw2100_priv *priv =
5966 container_of(work, struct ipw2100_priv, rf_kill.work);
James Ketrenos2c86c272005-03-23 17:32:29 -06005967 unsigned long flags;
5968
5969 spin_lock_irqsave(&priv->low_lock, flags);
5970
5971 if (rf_kill_active(priv)) {
5972 IPW_DEBUG_RF_KILL("RF Kill active, rescheduling GPIO check\n");
5973 if (!priv->stop_rf_kill)
Stephen Hemmingera62056f2007-06-22 21:46:50 -07005974 queue_delayed_work(priv->workqueue, &priv->rf_kill,
5975 round_jiffies(HZ));
James Ketrenos2c86c272005-03-23 17:32:29 -06005976 goto exit_unlock;
5977 }
5978
5979 /* RF Kill is now disabled, so bring the device back up */
5980
5981 if (!(priv->status & STATUS_RF_KILL_MASK)) {
5982 IPW_DEBUG_RF_KILL("HW RF Kill no longer active, restarting "
5983 "device\n");
5984 schedule_reset(priv);
5985 } else
5986 IPW_DEBUG_RF_KILL("HW RF Kill deactivated. SW RF Kill still "
5987 "enabled\n");
5988
James Ketrenosee8e3652005-09-14 09:47:29 -05005989 exit_unlock:
James Ketrenos2c86c272005-03-23 17:32:29 -06005990 spin_unlock_irqrestore(&priv->low_lock, flags);
5991}
5992
5993static void ipw2100_irq_tasklet(struct ipw2100_priv *priv);
5994
5995/* Look into using netdev destructor to shutdown ieee80211? */
5996
James Ketrenosee8e3652005-09-14 09:47:29 -05005997static struct net_device *ipw2100_alloc_device(struct pci_dev *pci_dev,
5998 void __iomem * base_addr,
5999 unsigned long mem_start,
6000 unsigned long mem_len)
James Ketrenos2c86c272005-03-23 17:32:29 -06006001{
6002 struct ipw2100_priv *priv;
6003 struct net_device *dev;
6004
6005 dev = alloc_ieee80211(sizeof(struct ipw2100_priv));
6006 if (!dev)
6007 return NULL;
6008 priv = ieee80211_priv(dev);
6009 priv->ieee = netdev_priv(dev);
6010 priv->pci_dev = pci_dev;
6011 priv->net_dev = dev;
6012
6013 priv->ieee->hard_start_xmit = ipw2100_tx;
6014 priv->ieee->set_security = shim__set_security;
6015
James Ketrenos82328352005-08-24 22:33:31 -05006016 priv->ieee->perfect_rssi = -20;
6017 priv->ieee->worst_rssi = -85;
6018
James Ketrenos2c86c272005-03-23 17:32:29 -06006019 dev->open = ipw2100_open;
6020 dev->stop = ipw2100_close;
6021 dev->init = ipw2100_net_init;
James Ketrenos2c86c272005-03-23 17:32:29 -06006022 dev->ethtool_ops = &ipw2100_ethtool_ops;
6023 dev->tx_timeout = ipw2100_tx_timeout;
6024 dev->wireless_handlers = &ipw2100_wx_handler_def;
James Ketrenoseaf8f53b2005-11-12 12:50:12 -06006025 priv->wireless_data.ieee80211 = priv->ieee;
6026 dev->wireless_data = &priv->wireless_data;
James Ketrenos2c86c272005-03-23 17:32:29 -06006027 dev->set_mac_address = ipw2100_set_address;
James Ketrenosee8e3652005-09-14 09:47:29 -05006028 dev->watchdog_timeo = 3 * HZ;
James Ketrenos2c86c272005-03-23 17:32:29 -06006029 dev->irq = 0;
6030
6031 dev->base_addr = (unsigned long)base_addr;
6032 dev->mem_start = mem_start;
6033 dev->mem_end = dev->mem_start + mem_len - 1;
6034
6035 /* NOTE: We don't use the wireless_handlers hook
6036 * in dev as the system will start throwing WX requests
6037 * to us before we're actually initialized and it just
6038 * ends up causing problems. So, we just handle
6039 * the WX extensions through the ipw2100_ioctl interface */
6040
James Ketrenos2c86c272005-03-23 17:32:29 -06006041 /* memset() puts everything to 0, so we only have explicitely set
6042 * those values that need to be something else */
6043
6044 /* If power management is turned on, default to AUTO mode */
6045 priv->power_mode = IPW_POWER_AUTO;
6046
James Ketrenos82328352005-08-24 22:33:31 -05006047#ifdef CONFIG_IPW2100_MONITOR
6048 priv->config |= CFG_CRC_CHECK;
6049#endif
James Ketrenos2c86c272005-03-23 17:32:29 -06006050 priv->ieee->wpa_enabled = 0;
James Ketrenos2c86c272005-03-23 17:32:29 -06006051 priv->ieee->drop_unencrypted = 0;
6052 priv->ieee->privacy_invoked = 0;
6053 priv->ieee->ieee802_1x = 1;
James Ketrenos2c86c272005-03-23 17:32:29 -06006054
6055 /* Set module parameters */
6056 switch (mode) {
6057 case 1:
6058 priv->ieee->iw_mode = IW_MODE_ADHOC;
6059 break;
6060#ifdef CONFIG_IPW2100_MONITOR
6061 case 2:
6062 priv->ieee->iw_mode = IW_MODE_MONITOR;
6063 break;
6064#endif
6065 default:
6066 case 0:
6067 priv->ieee->iw_mode = IW_MODE_INFRA;
6068 break;
6069 }
6070
6071 if (disable == 1)
6072 priv->status |= STATUS_RF_KILL_SW;
6073
6074 if (channel != 0 &&
James Ketrenosee8e3652005-09-14 09:47:29 -05006075 ((channel >= REG_MIN_CHANNEL) && (channel <= REG_MAX_CHANNEL))) {
James Ketrenos2c86c272005-03-23 17:32:29 -06006076 priv->config |= CFG_STATIC_CHANNEL;
6077 priv->channel = channel;
6078 }
6079
6080 if (associate)
6081 priv->config |= CFG_ASSOCIATE;
6082
6083 priv->beacon_interval = DEFAULT_BEACON_INTERVAL;
6084 priv->short_retry_limit = DEFAULT_SHORT_RETRY_LIMIT;
6085 priv->long_retry_limit = DEFAULT_LONG_RETRY_LIMIT;
6086 priv->rts_threshold = DEFAULT_RTS_THRESHOLD | RTS_DISABLED;
6087 priv->frag_threshold = DEFAULT_FTS | FRAG_DISABLED;
6088 priv->tx_power = IPW_TX_POWER_DEFAULT;
6089 priv->tx_rates = DEFAULT_TX_RATES;
6090
6091 strcpy(priv->nick, "ipw2100");
6092
6093 spin_lock_init(&priv->low_lock);
Ingo Molnar752e3772006-02-28 07:20:54 +08006094 mutex_init(&priv->action_mutex);
6095 mutex_init(&priv->adapter_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06006096
6097 init_waitqueue_head(&priv->wait_command_queue);
6098
6099 netif_carrier_off(dev);
6100
6101 INIT_LIST_HEAD(&priv->msg_free_list);
6102 INIT_LIST_HEAD(&priv->msg_pend_list);
6103 INIT_STAT(&priv->msg_free_stat);
6104 INIT_STAT(&priv->msg_pend_stat);
6105
6106 INIT_LIST_HEAD(&priv->tx_free_list);
6107 INIT_LIST_HEAD(&priv->tx_pend_list);
6108 INIT_STAT(&priv->tx_free_stat);
6109 INIT_STAT(&priv->tx_pend_stat);
6110
6111 INIT_LIST_HEAD(&priv->fw_pend_list);
6112 INIT_STAT(&priv->fw_pend_stat);
6113
James Ketrenos2c86c272005-03-23 17:32:29 -06006114 priv->workqueue = create_workqueue(DRV_NAME);
James Ketrenos392d0f62005-09-07 18:39:03 -05006115
David Howellsc4028952006-11-22 14:57:56 +00006116 INIT_DELAYED_WORK(&priv->reset_work, ipw2100_reset_adapter);
6117 INIT_DELAYED_WORK(&priv->security_work, ipw2100_security_work);
6118 INIT_DELAYED_WORK(&priv->wx_event_work, ipw2100_wx_event_work);
6119 INIT_DELAYED_WORK(&priv->hang_check, ipw2100_hang_check);
6120 INIT_DELAYED_WORK(&priv->rf_kill, ipw2100_rf_kill);
James Ketrenos2c86c272005-03-23 17:32:29 -06006121
6122 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
6123 ipw2100_irq_tasklet, (unsigned long)priv);
6124
6125 /* NOTE: We do not start the deferred work for status checks yet */
6126 priv->stop_rf_kill = 1;
6127 priv->stop_hang_check = 1;
6128
6129 return dev;
6130}
6131
James Ketrenos2c86c272005-03-23 17:32:29 -06006132static int ipw2100_pci_init_one(struct pci_dev *pci_dev,
6133 const struct pci_device_id *ent)
6134{
6135 unsigned long mem_start, mem_len, mem_flags;
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01006136 void __iomem *base_addr = NULL;
James Ketrenos2c86c272005-03-23 17:32:29 -06006137 struct net_device *dev = NULL;
6138 struct ipw2100_priv *priv = NULL;
6139 int err = 0;
6140 int registered = 0;
6141 u32 val;
6142
6143 IPW_DEBUG_INFO("enter\n");
6144
6145 mem_start = pci_resource_start(pci_dev, 0);
6146 mem_len = pci_resource_len(pci_dev, 0);
6147 mem_flags = pci_resource_flags(pci_dev, 0);
6148
6149 if ((mem_flags & IORESOURCE_MEM) != IORESOURCE_MEM) {
6150 IPW_DEBUG_INFO("weird - resource type is not memory\n");
6151 err = -ENODEV;
6152 goto fail;
6153 }
6154
6155 base_addr = ioremap_nocache(mem_start, mem_len);
6156 if (!base_addr) {
6157 printk(KERN_WARNING DRV_NAME
6158 "Error calling ioremap_nocache.\n");
6159 err = -EIO;
6160 goto fail;
6161 }
6162
6163 /* allocate and initialize our net_device */
6164 dev = ipw2100_alloc_device(pci_dev, base_addr, mem_start, mem_len);
6165 if (!dev) {
6166 printk(KERN_WARNING DRV_NAME
6167 "Error calling ipw2100_alloc_device.\n");
6168 err = -ENOMEM;
6169 goto fail;
6170 }
6171
6172 /* set up PCI mappings for device */
6173 err = pci_enable_device(pci_dev);
6174 if (err) {
6175 printk(KERN_WARNING DRV_NAME
6176 "Error calling pci_enable_device.\n");
6177 return err;
6178 }
6179
6180 priv = ieee80211_priv(dev);
6181
6182 pci_set_master(pci_dev);
6183 pci_set_drvdata(pci_dev, priv);
6184
Tobias Klauser05743d12005-06-20 14:28:40 -07006185 err = pci_set_dma_mask(pci_dev, DMA_32BIT_MASK);
James Ketrenos2c86c272005-03-23 17:32:29 -06006186 if (err) {
6187 printk(KERN_WARNING DRV_NAME
6188 "Error calling pci_set_dma_mask.\n");
6189 pci_disable_device(pci_dev);
6190 return err;
6191 }
6192
6193 err = pci_request_regions(pci_dev, DRV_NAME);
6194 if (err) {
6195 printk(KERN_WARNING DRV_NAME
6196 "Error calling pci_request_regions.\n");
6197 pci_disable_device(pci_dev);
6198 return err;
6199 }
6200
James Ketrenosee8e3652005-09-14 09:47:29 -05006201 /* We disable the RETRY_TIMEOUT register (0x41) to keep
James Ketrenos2c86c272005-03-23 17:32:29 -06006202 * PCI Tx retries from interfering with C3 CPU state */
6203 pci_read_config_dword(pci_dev, 0x40, &val);
6204 if ((val & 0x0000ff00) != 0)
6205 pci_write_config_dword(pci_dev, 0x40, val & 0xffff00ff);
6206
Pavel Machek8724a112005-06-20 14:28:43 -07006207 pci_set_power_state(pci_dev, PCI_D0);
James Ketrenos2c86c272005-03-23 17:32:29 -06006208
6209 if (!ipw2100_hw_is_adapter_in_system(dev)) {
6210 printk(KERN_WARNING DRV_NAME
6211 "Device not found via register read.\n");
6212 err = -ENODEV;
6213 goto fail;
6214 }
6215
6216 SET_NETDEV_DEV(dev, &pci_dev->dev);
6217
6218 /* Force interrupts to be shut off on the device */
6219 priv->status |= STATUS_INT_ENABLED;
6220 ipw2100_disable_interrupts(priv);
6221
6222 /* Allocate and initialize the Tx/Rx queues and lists */
6223 if (ipw2100_queues_allocate(priv)) {
6224 printk(KERN_WARNING DRV_NAME
Zhu Yi90c009a2006-12-05 14:41:32 +08006225 "Error calling ipw2100_queues_allocate.\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06006226 err = -ENOMEM;
6227 goto fail;
6228 }
6229 ipw2100_queues_initialize(priv);
6230
6231 err = request_irq(pci_dev->irq,
Thomas Gleixner1fb9df52006-07-01 19:29:39 -07006232 ipw2100_interrupt, IRQF_SHARED, dev->name, priv);
James Ketrenos2c86c272005-03-23 17:32:29 -06006233 if (err) {
6234 printk(KERN_WARNING DRV_NAME
James Ketrenosee8e3652005-09-14 09:47:29 -05006235 "Error calling request_irq: %d.\n", pci_dev->irq);
James Ketrenos2c86c272005-03-23 17:32:29 -06006236 goto fail;
6237 }
6238 dev->irq = pci_dev->irq;
6239
6240 IPW_DEBUG_INFO("Attempting to register device...\n");
6241
James Ketrenos2c86c272005-03-23 17:32:29 -06006242 printk(KERN_INFO DRV_NAME
6243 ": Detected Intel PRO/Wireless 2100 Network Connection\n");
6244
6245 /* Bring up the interface. Pre 0.46, after we registered the
6246 * network device we would call ipw2100_up. This introduced a race
6247 * condition with newer hotplug configurations (network was coming
6248 * up and making calls before the device was initialized).
6249 *
6250 * If we called ipw2100_up before we registered the device, then the
6251 * device name wasn't registered. So, we instead use the net_dev->init
6252 * member to call a function that then just turns and calls ipw2100_up.
6253 * net_dev->init is called after name allocation but before the
6254 * notifier chain is called */
James Ketrenos2c86c272005-03-23 17:32:29 -06006255 err = register_netdev(dev);
6256 if (err) {
6257 printk(KERN_WARNING DRV_NAME
6258 "Error calling register_netdev.\n");
Zhu Yiefbd8092006-08-21 11:38:52 +08006259 goto fail;
James Ketrenos2c86c272005-03-23 17:32:29 -06006260 }
Zhu Yiefbd8092006-08-21 11:38:52 +08006261
6262 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06006263 registered = 1;
6264
6265 IPW_DEBUG_INFO("%s: Bound to %s\n", dev->name, pci_name(pci_dev));
6266
6267 /* perform this after register_netdev so that dev->name is set */
Jeff Garzikde897882006-10-01 07:31:09 -04006268 err = sysfs_create_group(&pci_dev->dev.kobj, &ipw2100_attribute_group);
6269 if (err)
6270 goto fail_unlock;
James Ketrenos2c86c272005-03-23 17:32:29 -06006271
6272 /* If the RF Kill switch is disabled, go ahead and complete the
6273 * startup sequence */
6274 if (!(priv->status & STATUS_RF_KILL_MASK)) {
6275 /* Enable the adapter - sends HOST_COMPLETE */
6276 if (ipw2100_enable_adapter(priv)) {
6277 printk(KERN_WARNING DRV_NAME
6278 ": %s: failed in call to enable adapter.\n",
6279 priv->net_dev->name);
6280 ipw2100_hw_stop_adapter(priv);
6281 err = -EIO;
6282 goto fail_unlock;
6283 }
6284
6285 /* Start a scan . . . */
6286 ipw2100_set_scan_options(priv);
6287 ipw2100_start_scan(priv);
6288 }
6289
6290 IPW_DEBUG_INFO("exit\n");
6291
6292 priv->status |= STATUS_INITIALIZED;
6293
Ingo Molnar752e3772006-02-28 07:20:54 +08006294 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06006295
6296 return 0;
6297
James Ketrenosee8e3652005-09-14 09:47:29 -05006298 fail_unlock:
Ingo Molnar752e3772006-02-28 07:20:54 +08006299 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06006300
James Ketrenosee8e3652005-09-14 09:47:29 -05006301 fail:
James Ketrenos2c86c272005-03-23 17:32:29 -06006302 if (dev) {
6303 if (registered)
6304 unregister_netdev(dev);
6305
6306 ipw2100_hw_stop_adapter(priv);
6307
6308 ipw2100_disable_interrupts(priv);
6309
6310 if (dev->irq)
6311 free_irq(dev->irq, priv);
6312
6313 ipw2100_kill_workqueue(priv);
6314
6315 /* These are safe to call even if they weren't allocated */
6316 ipw2100_queues_free(priv);
James Ketrenosee8e3652005-09-14 09:47:29 -05006317 sysfs_remove_group(&pci_dev->dev.kobj,
6318 &ipw2100_attribute_group);
James Ketrenos2c86c272005-03-23 17:32:29 -06006319
6320 free_ieee80211(dev);
6321 pci_set_drvdata(pci_dev, NULL);
6322 }
6323
6324 if (base_addr)
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01006325 iounmap(base_addr);
James Ketrenos2c86c272005-03-23 17:32:29 -06006326
6327 pci_release_regions(pci_dev);
6328 pci_disable_device(pci_dev);
6329
6330 return err;
6331}
6332
6333static void __devexit ipw2100_pci_remove_one(struct pci_dev *pci_dev)
6334{
6335 struct ipw2100_priv *priv = pci_get_drvdata(pci_dev);
6336 struct net_device *dev;
6337
6338 if (priv) {
Ingo Molnar752e3772006-02-28 07:20:54 +08006339 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06006340
6341 priv->status &= ~STATUS_INITIALIZED;
6342
6343 dev = priv->net_dev;
James Ketrenosee8e3652005-09-14 09:47:29 -05006344 sysfs_remove_group(&pci_dev->dev.kobj,
6345 &ipw2100_attribute_group);
James Ketrenos2c86c272005-03-23 17:32:29 -06006346
6347#ifdef CONFIG_PM
6348 if (ipw2100_firmware.version)
6349 ipw2100_release_firmware(priv, &ipw2100_firmware);
6350#endif
6351 /* Take down the hardware */
6352 ipw2100_down(priv);
6353
Ingo Molnar752e3772006-02-28 07:20:54 +08006354 /* Release the mutex so that the network subsystem can
James Ketrenos2c86c272005-03-23 17:32:29 -06006355 * complete any needed calls into the driver... */
Ingo Molnar752e3772006-02-28 07:20:54 +08006356 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06006357
6358 /* Unregister the device first - this results in close()
6359 * being called if the device is open. If we free storage
6360 * first, then close() will crash. */
6361 unregister_netdev(dev);
6362
6363 /* ipw2100_down will ensure that there is no more pending work
6364 * in the workqueue's, so we can safely remove them now. */
6365 ipw2100_kill_workqueue(priv);
6366
6367 ipw2100_queues_free(priv);
6368
6369 /* Free potential debugging firmware snapshot */
6370 ipw2100_snapshot_free(priv);
6371
6372 if (dev->irq)
6373 free_irq(dev->irq, priv);
6374
6375 if (dev->base_addr)
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01006376 iounmap((void __iomem *)dev->base_addr);
James Ketrenos2c86c272005-03-23 17:32:29 -06006377
6378 free_ieee80211(dev);
6379 }
6380
6381 pci_release_regions(pci_dev);
6382 pci_disable_device(pci_dev);
6383
6384 IPW_DEBUG_INFO("exit\n");
6385}
6386
James Ketrenos2c86c272005-03-23 17:32:29 -06006387#ifdef CONFIG_PM
James Ketrenos2c86c272005-03-23 17:32:29 -06006388static int ipw2100_suspend(struct pci_dev *pci_dev, pm_message_t state)
James Ketrenos2c86c272005-03-23 17:32:29 -06006389{
6390 struct ipw2100_priv *priv = pci_get_drvdata(pci_dev);
6391 struct net_device *dev = priv->net_dev;
6392
James Ketrenosee8e3652005-09-14 09:47:29 -05006393 IPW_DEBUG_INFO("%s: Going into suspend...\n", dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06006394
Ingo Molnar752e3772006-02-28 07:20:54 +08006395 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06006396 if (priv->status & STATUS_INITIALIZED) {
6397 /* Take down the device; powers it off, etc. */
6398 ipw2100_down(priv);
6399 }
6400
6401 /* Remove the PRESENT state of the device */
6402 netif_device_detach(dev);
6403
James Ketrenos2c86c272005-03-23 17:32:29 -06006404 pci_save_state(pci_dev);
James Ketrenosee8e3652005-09-14 09:47:29 -05006405 pci_disable_device(pci_dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06006406 pci_set_power_state(pci_dev, PCI_D3hot);
James Ketrenos2c86c272005-03-23 17:32:29 -06006407
Ingo Molnar752e3772006-02-28 07:20:54 +08006408 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06006409
6410 return 0;
6411}
6412
6413static int ipw2100_resume(struct pci_dev *pci_dev)
6414{
6415 struct ipw2100_priv *priv = pci_get_drvdata(pci_dev);
6416 struct net_device *dev = priv->net_dev;
John W. Linville02e0e5e2006-11-07 20:53:48 -05006417 int err;
James Ketrenos2c86c272005-03-23 17:32:29 -06006418 u32 val;
6419
6420 if (IPW2100_PM_DISABLED)
6421 return 0;
6422
Ingo Molnar752e3772006-02-28 07:20:54 +08006423 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06006424
James Ketrenosee8e3652005-09-14 09:47:29 -05006425 IPW_DEBUG_INFO("%s: Coming out of suspend...\n", dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06006426
James Ketrenos2c86c272005-03-23 17:32:29 -06006427 pci_set_power_state(pci_dev, PCI_D0);
John W. Linville02e0e5e2006-11-07 20:53:48 -05006428 err = pci_enable_device(pci_dev);
6429 if (err) {
6430 printk(KERN_ERR "%s: pci_enable_device failed on resume\n",
6431 dev->name);
6432 return err;
6433 }
James Ketrenos2c86c272005-03-23 17:32:29 -06006434 pci_restore_state(pci_dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06006435
6436 /*
6437 * Suspend/Resume resets the PCI configuration space, so we have to
6438 * re-disable the RETRY_TIMEOUT register (0x41) to keep PCI Tx retries
6439 * from interfering with C3 CPU state. pci_restore_state won't help
6440 * here since it only restores the first 64 bytes pci config header.
6441 */
6442 pci_read_config_dword(pci_dev, 0x40, &val);
6443 if ((val & 0x0000ff00) != 0)
6444 pci_write_config_dword(pci_dev, 0x40, val & 0xffff00ff);
6445
6446 /* Set the device back into the PRESENT state; this will also wake
6447 * the queue of needed */
6448 netif_device_attach(dev);
6449
James Ketrenosee8e3652005-09-14 09:47:29 -05006450 /* Bring the device back up */
6451 if (!(priv->status & STATUS_RF_KILL_SW))
6452 ipw2100_up(priv, 0);
James Ketrenos2c86c272005-03-23 17:32:29 -06006453
Ingo Molnar752e3772006-02-28 07:20:54 +08006454 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06006455
6456 return 0;
6457}
6458#endif
6459
James Ketrenos2c86c272005-03-23 17:32:29 -06006460#define IPW2100_DEV_ID(x) { PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, x }
6461
6462static struct pci_device_id ipw2100_pci_id_table[] __devinitdata = {
James Ketrenosee8e3652005-09-14 09:47:29 -05006463 IPW2100_DEV_ID(0x2520), /* IN 2100A mPCI 3A */
6464 IPW2100_DEV_ID(0x2521), /* IN 2100A mPCI 3B */
6465 IPW2100_DEV_ID(0x2524), /* IN 2100A mPCI 3B */
6466 IPW2100_DEV_ID(0x2525), /* IN 2100A mPCI 3B */
6467 IPW2100_DEV_ID(0x2526), /* IN 2100A mPCI Gen A3 */
6468 IPW2100_DEV_ID(0x2522), /* IN 2100 mPCI 3B */
6469 IPW2100_DEV_ID(0x2523), /* IN 2100 mPCI 3A */
6470 IPW2100_DEV_ID(0x2527), /* IN 2100 mPCI 3B */
6471 IPW2100_DEV_ID(0x2528), /* IN 2100 mPCI 3B */
6472 IPW2100_DEV_ID(0x2529), /* IN 2100 mPCI 3B */
6473 IPW2100_DEV_ID(0x252B), /* IN 2100 mPCI 3A */
6474 IPW2100_DEV_ID(0x252C), /* IN 2100 mPCI 3A */
6475 IPW2100_DEV_ID(0x252D), /* IN 2100 mPCI 3A */
James Ketrenos2c86c272005-03-23 17:32:29 -06006476
James Ketrenosee8e3652005-09-14 09:47:29 -05006477 IPW2100_DEV_ID(0x2550), /* IB 2100A mPCI 3B */
6478 IPW2100_DEV_ID(0x2551), /* IB 2100 mPCI 3B */
6479 IPW2100_DEV_ID(0x2553), /* IB 2100 mPCI 3B */
6480 IPW2100_DEV_ID(0x2554), /* IB 2100 mPCI 3B */
6481 IPW2100_DEV_ID(0x2555), /* IB 2100 mPCI 3B */
James Ketrenos2c86c272005-03-23 17:32:29 -06006482
James Ketrenosee8e3652005-09-14 09:47:29 -05006483 IPW2100_DEV_ID(0x2560), /* DE 2100A mPCI 3A */
6484 IPW2100_DEV_ID(0x2562), /* DE 2100A mPCI 3A */
6485 IPW2100_DEV_ID(0x2563), /* DE 2100A mPCI 3A */
6486 IPW2100_DEV_ID(0x2561), /* DE 2100 mPCI 3A */
6487 IPW2100_DEV_ID(0x2565), /* DE 2100 mPCI 3A */
6488 IPW2100_DEV_ID(0x2566), /* DE 2100 mPCI 3A */
6489 IPW2100_DEV_ID(0x2567), /* DE 2100 mPCI 3A */
James Ketrenos2c86c272005-03-23 17:32:29 -06006490
James Ketrenosee8e3652005-09-14 09:47:29 -05006491 IPW2100_DEV_ID(0x2570), /* GA 2100 mPCI 3B */
James Ketrenos2c86c272005-03-23 17:32:29 -06006492
James Ketrenosee8e3652005-09-14 09:47:29 -05006493 IPW2100_DEV_ID(0x2580), /* TO 2100A mPCI 3B */
6494 IPW2100_DEV_ID(0x2582), /* TO 2100A mPCI 3B */
6495 IPW2100_DEV_ID(0x2583), /* TO 2100A mPCI 3B */
6496 IPW2100_DEV_ID(0x2581), /* TO 2100 mPCI 3B */
6497 IPW2100_DEV_ID(0x2585), /* TO 2100 mPCI 3B */
6498 IPW2100_DEV_ID(0x2586), /* TO 2100 mPCI 3B */
6499 IPW2100_DEV_ID(0x2587), /* TO 2100 mPCI 3B */
James Ketrenos2c86c272005-03-23 17:32:29 -06006500
James Ketrenosee8e3652005-09-14 09:47:29 -05006501 IPW2100_DEV_ID(0x2590), /* SO 2100A mPCI 3B */
6502 IPW2100_DEV_ID(0x2592), /* SO 2100A mPCI 3B */
6503 IPW2100_DEV_ID(0x2591), /* SO 2100 mPCI 3B */
6504 IPW2100_DEV_ID(0x2593), /* SO 2100 mPCI 3B */
6505 IPW2100_DEV_ID(0x2596), /* SO 2100 mPCI 3B */
6506 IPW2100_DEV_ID(0x2598), /* SO 2100 mPCI 3B */
James Ketrenos2c86c272005-03-23 17:32:29 -06006507
James Ketrenosee8e3652005-09-14 09:47:29 -05006508 IPW2100_DEV_ID(0x25A0), /* HP 2100 mPCI 3B */
James Ketrenos2c86c272005-03-23 17:32:29 -06006509 {0,},
6510};
6511
6512MODULE_DEVICE_TABLE(pci, ipw2100_pci_id_table);
6513
6514static struct pci_driver ipw2100_pci_driver = {
6515 .name = DRV_NAME,
6516 .id_table = ipw2100_pci_id_table,
6517 .probe = ipw2100_pci_init_one,
6518 .remove = __devexit_p(ipw2100_pci_remove_one),
6519#ifdef CONFIG_PM
6520 .suspend = ipw2100_suspend,
6521 .resume = ipw2100_resume,
6522#endif
6523};
6524
James Ketrenos2c86c272005-03-23 17:32:29 -06006525/**
6526 * Initialize the ipw2100 driver/module
6527 *
6528 * @returns 0 if ok, < 0 errno node con error.
6529 *
6530 * Note: we cannot init the /proc stuff until the PCI driver is there,
6531 * or we risk an unlikely race condition on someone accessing
6532 * uninitialized data in the PCI dev struct through /proc.
6533 */
6534static int __init ipw2100_init(void)
6535{
6536 int ret;
6537
6538 printk(KERN_INFO DRV_NAME ": %s, %s\n", DRV_DESCRIPTION, DRV_VERSION);
6539 printk(KERN_INFO DRV_NAME ": %s\n", DRV_COPYRIGHT);
6540
Jeff Garzik29917622006-08-19 17:48:59 -04006541 ret = pci_register_driver(&ipw2100_pci_driver);
Jeff Garzikde897882006-10-01 07:31:09 -04006542 if (ret)
6543 goto out;
James Ketrenos2c86c272005-03-23 17:32:29 -06006544
Arjan van de Ven5c875792006-09-30 23:27:17 -07006545 set_acceptable_latency("ipw2100", INFINITE_LATENCY);
Brice Goglin0f52bf92005-12-01 01:41:46 -08006546#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06006547 ipw2100_debug_level = debug;
Jeff Garzikde897882006-10-01 07:31:09 -04006548 ret = driver_create_file(&ipw2100_pci_driver.driver,
6549 &driver_attr_debug_level);
James Ketrenos2c86c272005-03-23 17:32:29 -06006550#endif
6551
Jeff Garzikde897882006-10-01 07:31:09 -04006552out:
James Ketrenos2c86c272005-03-23 17:32:29 -06006553 return ret;
6554}
6555
James Ketrenos2c86c272005-03-23 17:32:29 -06006556/**
6557 * Cleanup ipw2100 driver registration
6558 */
6559static void __exit ipw2100_exit(void)
6560{
6561 /* FIXME: IPG: check that we have no instances of the devices open */
Brice Goglin0f52bf92005-12-01 01:41:46 -08006562#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06006563 driver_remove_file(&ipw2100_pci_driver.driver,
6564 &driver_attr_debug_level);
6565#endif
6566 pci_unregister_driver(&ipw2100_pci_driver);
Arjan van de Ven5c875792006-09-30 23:27:17 -07006567 remove_acceptable_latency("ipw2100");
James Ketrenos2c86c272005-03-23 17:32:29 -06006568}
6569
6570module_init(ipw2100_init);
6571module_exit(ipw2100_exit);
6572
6573#define WEXT_USECHANNELS 1
6574
Jiri Bencc4aee8c2005-08-25 20:04:43 -04006575static const long ipw2100_frequencies[] = {
James Ketrenos2c86c272005-03-23 17:32:29 -06006576 2412, 2417, 2422, 2427,
6577 2432, 2437, 2442, 2447,
6578 2452, 2457, 2462, 2467,
6579 2472, 2484
6580};
6581
6582#define FREQ_COUNT (sizeof(ipw2100_frequencies) / \
6583 sizeof(ipw2100_frequencies[0]))
6584
Jiri Bencc4aee8c2005-08-25 20:04:43 -04006585static const long ipw2100_rates_11b[] = {
James Ketrenos2c86c272005-03-23 17:32:29 -06006586 1000000,
6587 2000000,
6588 5500000,
6589 11000000
6590};
6591
Ahmed S. Darwish22d57432007-02-05 18:56:22 +02006592#define RATE_COUNT ARRAY_SIZE(ipw2100_rates_11b)
James Ketrenos2c86c272005-03-23 17:32:29 -06006593
6594static int ipw2100_wx_get_name(struct net_device *dev,
6595 struct iw_request_info *info,
6596 union iwreq_data *wrqu, char *extra)
6597{
6598 /*
6599 * This can be called at any time. No action lock required
6600 */
6601
6602 struct ipw2100_priv *priv = ieee80211_priv(dev);
6603 if (!(priv->status & STATUS_ASSOCIATED))
6604 strcpy(wrqu->name, "unassociated");
6605 else
6606 snprintf(wrqu->name, IFNAMSIZ, "IEEE 802.11b");
6607
6608 IPW_DEBUG_WX("Name: %s\n", wrqu->name);
6609 return 0;
6610}
6611
James Ketrenos2c86c272005-03-23 17:32:29 -06006612static int ipw2100_wx_set_freq(struct net_device *dev,
6613 struct iw_request_info *info,
6614 union iwreq_data *wrqu, char *extra)
6615{
6616 struct ipw2100_priv *priv = ieee80211_priv(dev);
6617 struct iw_freq *fwrq = &wrqu->freq;
6618 int err = 0;
6619
6620 if (priv->ieee->iw_mode == IW_MODE_INFRA)
6621 return -EOPNOTSUPP;
6622
Ingo Molnar752e3772006-02-28 07:20:54 +08006623 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06006624 if (!(priv->status & STATUS_INITIALIZED)) {
6625 err = -EIO;
6626 goto done;
6627 }
6628
6629 /* if setting by freq convert to channel */
6630 if (fwrq->e == 1) {
James Ketrenosee8e3652005-09-14 09:47:29 -05006631 if ((fwrq->m >= (int)2.412e8 && fwrq->m <= (int)2.487e8)) {
James Ketrenos2c86c272005-03-23 17:32:29 -06006632 int f = fwrq->m / 100000;
6633 int c = 0;
6634
6635 while ((c < REG_MAX_CHANNEL) &&
6636 (f != ipw2100_frequencies[c]))
6637 c++;
6638
6639 /* hack to fall through */
6640 fwrq->e = 0;
6641 fwrq->m = c + 1;
6642 }
6643 }
6644
James Ketrenos82328352005-08-24 22:33:31 -05006645 if (fwrq->e > 0 || fwrq->m > 1000) {
6646 err = -EOPNOTSUPP;
6647 goto done;
6648 } else { /* Set the channel */
James Ketrenos2c86c272005-03-23 17:32:29 -06006649 IPW_DEBUG_WX("SET Freq/Channel -> %d \n", fwrq->m);
6650 err = ipw2100_set_channel(priv, fwrq->m, 0);
6651 }
6652
James Ketrenosee8e3652005-09-14 09:47:29 -05006653 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08006654 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06006655 return err;
6656}
6657
James Ketrenos2c86c272005-03-23 17:32:29 -06006658static int ipw2100_wx_get_freq(struct net_device *dev,
6659 struct iw_request_info *info,
6660 union iwreq_data *wrqu, char *extra)
6661{
6662 /*
6663 * This can be called at any time. No action lock required
6664 */
6665
6666 struct ipw2100_priv *priv = ieee80211_priv(dev);
6667
6668 wrqu->freq.e = 0;
6669
6670 /* If we are associated, trying to associate, or have a statically
6671 * configured CHANNEL then return that; otherwise return ANY */
6672 if (priv->config & CFG_STATIC_CHANNEL ||
6673 priv->status & STATUS_ASSOCIATED)
6674 wrqu->freq.m = priv->channel;
6675 else
6676 wrqu->freq.m = 0;
6677
6678 IPW_DEBUG_WX("GET Freq/Channel -> %d \n", priv->channel);
6679 return 0;
6680
6681}
6682
6683static int ipw2100_wx_set_mode(struct net_device *dev,
6684 struct iw_request_info *info,
6685 union iwreq_data *wrqu, char *extra)
6686{
6687 struct ipw2100_priv *priv = ieee80211_priv(dev);
6688 int err = 0;
6689
6690 IPW_DEBUG_WX("SET Mode -> %d \n", wrqu->mode);
6691
6692 if (wrqu->mode == priv->ieee->iw_mode)
6693 return 0;
6694
Ingo Molnar752e3772006-02-28 07:20:54 +08006695 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06006696 if (!(priv->status & STATUS_INITIALIZED)) {
6697 err = -EIO;
6698 goto done;
6699 }
6700
6701 switch (wrqu->mode) {
6702#ifdef CONFIG_IPW2100_MONITOR
6703 case IW_MODE_MONITOR:
6704 err = ipw2100_switch_mode(priv, IW_MODE_MONITOR);
6705 break;
James Ketrenosee8e3652005-09-14 09:47:29 -05006706#endif /* CONFIG_IPW2100_MONITOR */
James Ketrenos2c86c272005-03-23 17:32:29 -06006707 case IW_MODE_ADHOC:
6708 err = ipw2100_switch_mode(priv, IW_MODE_ADHOC);
6709 break;
6710 case IW_MODE_INFRA:
6711 case IW_MODE_AUTO:
6712 default:
6713 err = ipw2100_switch_mode(priv, IW_MODE_INFRA);
6714 break;
6715 }
6716
James Ketrenosee8e3652005-09-14 09:47:29 -05006717 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08006718 mutex_unlock(&priv->action_mutex);
James Ketrenosee8e3652005-09-14 09:47:29 -05006719 return err;
James Ketrenos2c86c272005-03-23 17:32:29 -06006720}
6721
6722static int ipw2100_wx_get_mode(struct net_device *dev,
6723 struct iw_request_info *info,
6724 union iwreq_data *wrqu, char *extra)
6725{
6726 /*
6727 * This can be called at any time. No action lock required
6728 */
6729
6730 struct ipw2100_priv *priv = ieee80211_priv(dev);
6731
6732 wrqu->mode = priv->ieee->iw_mode;
6733 IPW_DEBUG_WX("GET Mode -> %d\n", wrqu->mode);
6734
6735 return 0;
6736}
6737
James Ketrenos2c86c272005-03-23 17:32:29 -06006738#define POWER_MODES 5
6739
6740/* Values are in microsecond */
Jiri Bencc4aee8c2005-08-25 20:04:43 -04006741static const s32 timeout_duration[POWER_MODES] = {
James Ketrenos2c86c272005-03-23 17:32:29 -06006742 350000,
6743 250000,
6744 75000,
6745 37000,
6746 25000,
6747};
6748
Jiri Bencc4aee8c2005-08-25 20:04:43 -04006749static const s32 period_duration[POWER_MODES] = {
James Ketrenos2c86c272005-03-23 17:32:29 -06006750 400000,
6751 700000,
6752 1000000,
6753 1000000,
6754 1000000
6755};
6756
6757static int ipw2100_wx_get_range(struct net_device *dev,
6758 struct iw_request_info *info,
6759 union iwreq_data *wrqu, char *extra)
6760{
6761 /*
6762 * This can be called at any time. No action lock required
6763 */
6764
6765 struct ipw2100_priv *priv = ieee80211_priv(dev);
6766 struct iw_range *range = (struct iw_range *)extra;
6767 u16 val;
6768 int i, level;
6769
6770 wrqu->data.length = sizeof(*range);
6771 memset(range, 0, sizeof(*range));
6772
6773 /* Let's try to keep this struct in the same order as in
6774 * linux/include/wireless.h
6775 */
6776
6777 /* TODO: See what values we can set, and remove the ones we can't
6778 * set, or fill them with some default data.
6779 */
6780
6781 /* ~5 Mb/s real (802.11b) */
6782 range->throughput = 5 * 1000 * 1000;
6783
James Ketrenosee8e3652005-09-14 09:47:29 -05006784// range->sensitivity; /* signal level threshold range */
James Ketrenos2c86c272005-03-23 17:32:29 -06006785
6786 range->max_qual.qual = 100;
6787 /* TODO: Find real max RSSI and stick here */
6788 range->max_qual.level = 0;
6789 range->max_qual.noise = 0;
James Ketrenosee8e3652005-09-14 09:47:29 -05006790 range->max_qual.updated = 7; /* Updated all three */
James Ketrenos2c86c272005-03-23 17:32:29 -06006791
James Ketrenosee8e3652005-09-14 09:47:29 -05006792 range->avg_qual.qual = 70; /* > 8% missed beacons is 'bad' */
James Ketrenos2c86c272005-03-23 17:32:29 -06006793 /* TODO: Find real 'good' to 'bad' threshol value for RSSI */
6794 range->avg_qual.level = 20 + IPW2100_RSSI_TO_DBM;
6795 range->avg_qual.noise = 0;
James Ketrenosee8e3652005-09-14 09:47:29 -05006796 range->avg_qual.updated = 7; /* Updated all three */
James Ketrenos2c86c272005-03-23 17:32:29 -06006797
6798 range->num_bitrates = RATE_COUNT;
6799
6800 for (i = 0; i < RATE_COUNT && i < IW_MAX_BITRATES; i++) {
6801 range->bitrate[i] = ipw2100_rates_11b[i];
6802 }
6803
6804 range->min_rts = MIN_RTS_THRESHOLD;
6805 range->max_rts = MAX_RTS_THRESHOLD;
6806 range->min_frag = MIN_FRAG_THRESHOLD;
6807 range->max_frag = MAX_FRAG_THRESHOLD;
6808
6809 range->min_pmp = period_duration[0]; /* Minimal PM period */
James Ketrenosee8e3652005-09-14 09:47:29 -05006810 range->max_pmp = period_duration[POWER_MODES - 1]; /* Maximal PM period */
6811 range->min_pmt = timeout_duration[POWER_MODES - 1]; /* Minimal PM timeout */
6812 range->max_pmt = timeout_duration[0]; /* Maximal PM timeout */
James Ketrenos2c86c272005-03-23 17:32:29 -06006813
James Ketrenosee8e3652005-09-14 09:47:29 -05006814 /* How to decode max/min PM period */
James Ketrenos2c86c272005-03-23 17:32:29 -06006815 range->pmp_flags = IW_POWER_PERIOD;
James Ketrenosee8e3652005-09-14 09:47:29 -05006816 /* How to decode max/min PM period */
James Ketrenos2c86c272005-03-23 17:32:29 -06006817 range->pmt_flags = IW_POWER_TIMEOUT;
6818 /* What PM options are supported */
6819 range->pm_capa = IW_POWER_TIMEOUT | IW_POWER_PERIOD;
6820
6821 range->encoding_size[0] = 5;
James Ketrenosee8e3652005-09-14 09:47:29 -05006822 range->encoding_size[1] = 13; /* Different token sizes */
6823 range->num_encoding_sizes = 2; /* Number of entry in the list */
6824 range->max_encoding_tokens = WEP_KEYS; /* Max number of tokens */
6825// range->encoding_login_index; /* token index for login token */
James Ketrenos2c86c272005-03-23 17:32:29 -06006826
6827 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
6828 range->txpower_capa = IW_TXPOW_DBM;
6829 range->num_txpower = IW_MAX_TXPOWER;
James Ketrenosee8e3652005-09-14 09:47:29 -05006830 for (i = 0, level = (IPW_TX_POWER_MAX_DBM * 16);
6831 i < IW_MAX_TXPOWER;
6832 i++, level -=
6833 ((IPW_TX_POWER_MAX_DBM -
6834 IPW_TX_POWER_MIN_DBM) * 16) / (IW_MAX_TXPOWER - 1))
James Ketrenos2c86c272005-03-23 17:32:29 -06006835 range->txpower[i] = level / 16;
6836 } else {
6837 range->txpower_capa = 0;
6838 range->num_txpower = 0;
6839 }
6840
James Ketrenos2c86c272005-03-23 17:32:29 -06006841 /* Set the Wireless Extension versions */
6842 range->we_version_compiled = WIRELESS_EXT;
Dan Williams166c3432006-01-09 11:04:31 -05006843 range->we_version_source = 18;
James Ketrenos2c86c272005-03-23 17:32:29 -06006844
James Ketrenosee8e3652005-09-14 09:47:29 -05006845// range->retry_capa; /* What retry options are supported */
6846// range->retry_flags; /* How to decode max/min retry limit */
6847// range->r_time_flags; /* How to decode max/min retry life */
6848// range->min_retry; /* Minimal number of retries */
6849// range->max_retry; /* Maximal number of retries */
6850// range->min_r_time; /* Minimal retry lifetime */
6851// range->max_r_time; /* Maximal retry lifetime */
James Ketrenos2c86c272005-03-23 17:32:29 -06006852
James Ketrenosee8e3652005-09-14 09:47:29 -05006853 range->num_channels = FREQ_COUNT;
James Ketrenos2c86c272005-03-23 17:32:29 -06006854
6855 val = 0;
6856 for (i = 0; i < FREQ_COUNT; i++) {
6857 // TODO: Include only legal frequencies for some countries
James Ketrenosee8e3652005-09-14 09:47:29 -05006858// if (local->channel_mask & (1 << i)) {
6859 range->freq[val].i = i + 1;
6860 range->freq[val].m = ipw2100_frequencies[i] * 100000;
6861 range->freq[val].e = 1;
6862 val++;
6863// }
James Ketrenos2c86c272005-03-23 17:32:29 -06006864 if (val == IW_MAX_FREQUENCIES)
James Ketrenosee8e3652005-09-14 09:47:29 -05006865 break;
James Ketrenos2c86c272005-03-23 17:32:29 -06006866 }
6867 range->num_frequency = val;
6868
James Ketrenoseaf8f53b2005-11-12 12:50:12 -06006869 /* Event capability (kernel + driver) */
6870 range->event_capa[0] = (IW_EVENT_CAPA_K_0 |
6871 IW_EVENT_CAPA_MASK(SIOCGIWAP));
6872 range->event_capa[1] = IW_EVENT_CAPA_K_1;
6873
Dan Williams166c3432006-01-09 11:04:31 -05006874 range->enc_capa = IW_ENC_CAPA_WPA | IW_ENC_CAPA_WPA2 |
6875 IW_ENC_CAPA_CIPHER_TKIP | IW_ENC_CAPA_CIPHER_CCMP;
6876
James Ketrenos2c86c272005-03-23 17:32:29 -06006877 IPW_DEBUG_WX("GET Range\n");
6878
6879 return 0;
6880}
6881
6882static int ipw2100_wx_set_wap(struct net_device *dev,
6883 struct iw_request_info *info,
6884 union iwreq_data *wrqu, char *extra)
6885{
6886 struct ipw2100_priv *priv = ieee80211_priv(dev);
6887 int err = 0;
6888
6889 static const unsigned char any[] = {
6890 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
6891 };
6892 static const unsigned char off[] = {
6893 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
6894 };
6895
6896 // sanity checks
6897 if (wrqu->ap_addr.sa_family != ARPHRD_ETHER)
6898 return -EINVAL;
6899
Ingo Molnar752e3772006-02-28 07:20:54 +08006900 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06006901 if (!(priv->status & STATUS_INITIALIZED)) {
6902 err = -EIO;
6903 goto done;
6904 }
6905
6906 if (!memcmp(any, wrqu->ap_addr.sa_data, ETH_ALEN) ||
6907 !memcmp(off, wrqu->ap_addr.sa_data, ETH_ALEN)) {
6908 /* we disable mandatory BSSID association */
6909 IPW_DEBUG_WX("exit - disable mandatory BSSID\n");
6910 priv->config &= ~CFG_STATIC_BSSID;
6911 err = ipw2100_set_mandatory_bssid(priv, NULL, 0);
6912 goto done;
6913 }
6914
6915 priv->config |= CFG_STATIC_BSSID;
6916 memcpy(priv->mandatory_bssid_mac, wrqu->ap_addr.sa_data, ETH_ALEN);
6917
6918 err = ipw2100_set_mandatory_bssid(priv, wrqu->ap_addr.sa_data, 0);
6919
6920 IPW_DEBUG_WX("SET BSSID -> %02X:%02X:%02X:%02X:%02X:%02X\n",
6921 wrqu->ap_addr.sa_data[0] & 0xff,
6922 wrqu->ap_addr.sa_data[1] & 0xff,
6923 wrqu->ap_addr.sa_data[2] & 0xff,
6924 wrqu->ap_addr.sa_data[3] & 0xff,
6925 wrqu->ap_addr.sa_data[4] & 0xff,
6926 wrqu->ap_addr.sa_data[5] & 0xff);
6927
James Ketrenosee8e3652005-09-14 09:47:29 -05006928 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08006929 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06006930 return err;
6931}
6932
6933static int ipw2100_wx_get_wap(struct net_device *dev,
6934 struct iw_request_info *info,
6935 union iwreq_data *wrqu, char *extra)
6936{
6937 /*
6938 * This can be called at any time. No action lock required
6939 */
6940
6941 struct ipw2100_priv *priv = ieee80211_priv(dev);
6942
6943 /* If we are associated, trying to associate, or have a statically
6944 * configured BSSID then return that; otherwise return ANY */
James Ketrenosee8e3652005-09-14 09:47:29 -05006945 if (priv->config & CFG_STATIC_BSSID || priv->status & STATUS_ASSOCIATED) {
James Ketrenos2c86c272005-03-23 17:32:29 -06006946 wrqu->ap_addr.sa_family = ARPHRD_ETHER;
James Ketrenos82328352005-08-24 22:33:31 -05006947 memcpy(wrqu->ap_addr.sa_data, priv->bssid, ETH_ALEN);
James Ketrenos2c86c272005-03-23 17:32:29 -06006948 } else
6949 memset(wrqu->ap_addr.sa_data, 0, ETH_ALEN);
6950
6951 IPW_DEBUG_WX("Getting WAP BSSID: " MAC_FMT "\n",
6952 MAC_ARG(wrqu->ap_addr.sa_data));
6953 return 0;
6954}
6955
6956static int ipw2100_wx_set_essid(struct net_device *dev,
6957 struct iw_request_info *info,
6958 union iwreq_data *wrqu, char *extra)
6959{
6960 struct ipw2100_priv *priv = ieee80211_priv(dev);
James Ketrenosee8e3652005-09-14 09:47:29 -05006961 char *essid = ""; /* ANY */
James Ketrenos2c86c272005-03-23 17:32:29 -06006962 int length = 0;
6963 int err = 0;
6964
Ingo Molnar752e3772006-02-28 07:20:54 +08006965 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06006966 if (!(priv->status & STATUS_INITIALIZED)) {
6967 err = -EIO;
6968 goto done;
6969 }
6970
6971 if (wrqu->essid.flags && wrqu->essid.length) {
Jean Tourrilhes5b63bae2006-08-29 18:00:48 -07006972 length = wrqu->essid.length;
James Ketrenos2c86c272005-03-23 17:32:29 -06006973 essid = extra;
6974 }
6975
6976 if (length == 0) {
6977 IPW_DEBUG_WX("Setting ESSID to ANY\n");
6978 priv->config &= ~CFG_STATIC_ESSID;
6979 err = ipw2100_set_essid(priv, NULL, 0, 0);
6980 goto done;
6981 }
6982
6983 length = min(length, IW_ESSID_MAX_SIZE);
6984
6985 priv->config |= CFG_STATIC_ESSID;
6986
6987 if (priv->essid_len == length && !memcmp(priv->essid, extra, length)) {
6988 IPW_DEBUG_WX("ESSID set to current ESSID.\n");
6989 err = 0;
6990 goto done;
6991 }
6992
6993 IPW_DEBUG_WX("Setting ESSID: '%s' (%d)\n", escape_essid(essid, length),
6994 length);
6995
6996 priv->essid_len = length;
6997 memcpy(priv->essid, essid, priv->essid_len);
6998
6999 err = ipw2100_set_essid(priv, essid, length, 0);
7000
James Ketrenosee8e3652005-09-14 09:47:29 -05007001 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08007002 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007003 return err;
7004}
7005
7006static int ipw2100_wx_get_essid(struct net_device *dev,
7007 struct iw_request_info *info,
7008 union iwreq_data *wrqu, char *extra)
7009{
7010 /*
7011 * This can be called at any time. No action lock required
7012 */
7013
7014 struct ipw2100_priv *priv = ieee80211_priv(dev);
7015
7016 /* If we are associated, trying to associate, or have a statically
7017 * configured ESSID then return that; otherwise return ANY */
James Ketrenosee8e3652005-09-14 09:47:29 -05007018 if (priv->config & CFG_STATIC_ESSID || priv->status & STATUS_ASSOCIATED) {
James Ketrenos2c86c272005-03-23 17:32:29 -06007019 IPW_DEBUG_WX("Getting essid: '%s'\n",
7020 escape_essid(priv->essid, priv->essid_len));
7021 memcpy(extra, priv->essid, priv->essid_len);
7022 wrqu->essid.length = priv->essid_len;
James Ketrenosee8e3652005-09-14 09:47:29 -05007023 wrqu->essid.flags = 1; /* active */
James Ketrenos2c86c272005-03-23 17:32:29 -06007024 } else {
7025 IPW_DEBUG_WX("Getting essid: ANY\n");
7026 wrqu->essid.length = 0;
James Ketrenosee8e3652005-09-14 09:47:29 -05007027 wrqu->essid.flags = 0; /* active */
James Ketrenos2c86c272005-03-23 17:32:29 -06007028 }
7029
7030 return 0;
7031}
7032
7033static int ipw2100_wx_set_nick(struct net_device *dev,
7034 struct iw_request_info *info,
7035 union iwreq_data *wrqu, char *extra)
7036{
7037 /*
7038 * This can be called at any time. No action lock required
7039 */
7040
7041 struct ipw2100_priv *priv = ieee80211_priv(dev);
7042
7043 if (wrqu->data.length > IW_ESSID_MAX_SIZE)
7044 return -E2BIG;
7045
James Ketrenosee8e3652005-09-14 09:47:29 -05007046 wrqu->data.length = min((size_t) wrqu->data.length, sizeof(priv->nick));
James Ketrenos2c86c272005-03-23 17:32:29 -06007047 memset(priv->nick, 0, sizeof(priv->nick));
James Ketrenosee8e3652005-09-14 09:47:29 -05007048 memcpy(priv->nick, extra, wrqu->data.length);
James Ketrenos2c86c272005-03-23 17:32:29 -06007049
7050 IPW_DEBUG_WX("SET Nickname -> %s \n", priv->nick);
7051
7052 return 0;
7053}
7054
7055static int ipw2100_wx_get_nick(struct net_device *dev,
7056 struct iw_request_info *info,
7057 union iwreq_data *wrqu, char *extra)
7058{
7059 /*
7060 * This can be called at any time. No action lock required
7061 */
7062
7063 struct ipw2100_priv *priv = ieee80211_priv(dev);
7064
Jean Tourrilhes5b63bae2006-08-29 18:00:48 -07007065 wrqu->data.length = strlen(priv->nick);
James Ketrenos2c86c272005-03-23 17:32:29 -06007066 memcpy(extra, priv->nick, wrqu->data.length);
James Ketrenosee8e3652005-09-14 09:47:29 -05007067 wrqu->data.flags = 1; /* active */
James Ketrenos2c86c272005-03-23 17:32:29 -06007068
7069 IPW_DEBUG_WX("GET Nickname -> %s \n", extra);
7070
7071 return 0;
7072}
7073
7074static int ipw2100_wx_set_rate(struct net_device *dev,
7075 struct iw_request_info *info,
7076 union iwreq_data *wrqu, char *extra)
7077{
7078 struct ipw2100_priv *priv = ieee80211_priv(dev);
7079 u32 target_rate = wrqu->bitrate.value;
7080 u32 rate;
7081 int err = 0;
7082
Ingo Molnar752e3772006-02-28 07:20:54 +08007083 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007084 if (!(priv->status & STATUS_INITIALIZED)) {
7085 err = -EIO;
7086 goto done;
7087 }
7088
7089 rate = 0;
7090
7091 if (target_rate == 1000000 ||
7092 (!wrqu->bitrate.fixed && target_rate > 1000000))
7093 rate |= TX_RATE_1_MBIT;
7094 if (target_rate == 2000000 ||
7095 (!wrqu->bitrate.fixed && target_rate > 2000000))
7096 rate |= TX_RATE_2_MBIT;
7097 if (target_rate == 5500000 ||
7098 (!wrqu->bitrate.fixed && target_rate > 5500000))
7099 rate |= TX_RATE_5_5_MBIT;
7100 if (target_rate == 11000000 ||
7101 (!wrqu->bitrate.fixed && target_rate > 11000000))
7102 rate |= TX_RATE_11_MBIT;
7103 if (rate == 0)
7104 rate = DEFAULT_TX_RATES;
7105
7106 err = ipw2100_set_tx_rates(priv, rate, 0);
7107
7108 IPW_DEBUG_WX("SET Rate -> %04X \n", rate);
James Ketrenosee8e3652005-09-14 09:47:29 -05007109 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08007110 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007111 return err;
7112}
7113
James Ketrenos2c86c272005-03-23 17:32:29 -06007114static int ipw2100_wx_get_rate(struct net_device *dev,
7115 struct iw_request_info *info,
7116 union iwreq_data *wrqu, char *extra)
7117{
7118 struct ipw2100_priv *priv = ieee80211_priv(dev);
7119 int val;
7120 int len = sizeof(val);
7121 int err = 0;
7122
7123 if (!(priv->status & STATUS_ENABLED) ||
7124 priv->status & STATUS_RF_KILL_MASK ||
7125 !(priv->status & STATUS_ASSOCIATED)) {
7126 wrqu->bitrate.value = 0;
7127 return 0;
7128 }
7129
Ingo Molnar752e3772006-02-28 07:20:54 +08007130 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007131 if (!(priv->status & STATUS_INITIALIZED)) {
7132 err = -EIO;
7133 goto done;
7134 }
7135
7136 err = ipw2100_get_ordinal(priv, IPW_ORD_CURRENT_TX_RATE, &val, &len);
7137 if (err) {
7138 IPW_DEBUG_WX("failed querying ordinals.\n");
7139 return err;
7140 }
7141
7142 switch (val & TX_RATE_MASK) {
7143 case TX_RATE_1_MBIT:
7144 wrqu->bitrate.value = 1000000;
7145 break;
7146 case TX_RATE_2_MBIT:
7147 wrqu->bitrate.value = 2000000;
7148 break;
7149 case TX_RATE_5_5_MBIT:
7150 wrqu->bitrate.value = 5500000;
7151 break;
7152 case TX_RATE_11_MBIT:
7153 wrqu->bitrate.value = 11000000;
7154 break;
7155 default:
7156 wrqu->bitrate.value = 0;
7157 }
7158
7159 IPW_DEBUG_WX("GET Rate -> %d \n", wrqu->bitrate.value);
7160
James Ketrenosee8e3652005-09-14 09:47:29 -05007161 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08007162 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007163 return err;
7164}
7165
7166static int ipw2100_wx_set_rts(struct net_device *dev,
7167 struct iw_request_info *info,
7168 union iwreq_data *wrqu, char *extra)
7169{
7170 struct ipw2100_priv *priv = ieee80211_priv(dev);
7171 int value, err;
7172
7173 /* Auto RTS not yet supported */
7174 if (wrqu->rts.fixed == 0)
7175 return -EINVAL;
7176
Ingo Molnar752e3772006-02-28 07:20:54 +08007177 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007178 if (!(priv->status & STATUS_INITIALIZED)) {
7179 err = -EIO;
7180 goto done;
7181 }
7182
7183 if (wrqu->rts.disabled)
7184 value = priv->rts_threshold | RTS_DISABLED;
7185 else {
James Ketrenosee8e3652005-09-14 09:47:29 -05007186 if (wrqu->rts.value < 1 || wrqu->rts.value > 2304) {
James Ketrenos2c86c272005-03-23 17:32:29 -06007187 err = -EINVAL;
7188 goto done;
7189 }
7190 value = wrqu->rts.value;
7191 }
7192
7193 err = ipw2100_set_rts_threshold(priv, value);
7194
7195 IPW_DEBUG_WX("SET RTS Threshold -> 0x%08X \n", value);
James Ketrenosee8e3652005-09-14 09:47:29 -05007196 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08007197 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007198 return err;
7199}
7200
7201static int ipw2100_wx_get_rts(struct net_device *dev,
7202 struct iw_request_info *info,
7203 union iwreq_data *wrqu, char *extra)
7204{
7205 /*
7206 * This can be called at any time. No action lock required
7207 */
7208
7209 struct ipw2100_priv *priv = ieee80211_priv(dev);
7210
7211 wrqu->rts.value = priv->rts_threshold & ~RTS_DISABLED;
James Ketrenosee8e3652005-09-14 09:47:29 -05007212 wrqu->rts.fixed = 1; /* no auto select */
James Ketrenos2c86c272005-03-23 17:32:29 -06007213
7214 /* If RTS is set to the default value, then it is disabled */
7215 wrqu->rts.disabled = (priv->rts_threshold & RTS_DISABLED) ? 1 : 0;
7216
7217 IPW_DEBUG_WX("GET RTS Threshold -> 0x%08X \n", wrqu->rts.value);
7218
7219 return 0;
7220}
7221
7222static int ipw2100_wx_set_txpow(struct net_device *dev,
7223 struct iw_request_info *info,
7224 union iwreq_data *wrqu, char *extra)
7225{
7226 struct ipw2100_priv *priv = ieee80211_priv(dev);
7227 int err = 0, value;
Zhu Yib6e4da72006-01-24 13:49:32 +08007228
7229 if (ipw_radio_kill_sw(priv, wrqu->txpower.disabled))
7230 return -EINPROGRESS;
James Ketrenos2c86c272005-03-23 17:32:29 -06007231
7232 if (priv->ieee->iw_mode != IW_MODE_ADHOC)
Zhu Yib6e4da72006-01-24 13:49:32 +08007233 return 0;
7234
7235 if ((wrqu->txpower.flags & IW_TXPOW_TYPE) != IW_TXPOW_DBM)
James Ketrenos2c86c272005-03-23 17:32:29 -06007236 return -EINVAL;
7237
Zhu Yib6e4da72006-01-24 13:49:32 +08007238 if (wrqu->txpower.fixed == 0)
James Ketrenos2c86c272005-03-23 17:32:29 -06007239 value = IPW_TX_POWER_DEFAULT;
7240 else {
7241 if (wrqu->txpower.value < IPW_TX_POWER_MIN_DBM ||
7242 wrqu->txpower.value > IPW_TX_POWER_MAX_DBM)
7243 return -EINVAL;
7244
Liu Hongf75459e2005-07-13 12:29:21 -05007245 value = wrqu->txpower.value;
James Ketrenos2c86c272005-03-23 17:32:29 -06007246 }
7247
Ingo Molnar752e3772006-02-28 07:20:54 +08007248 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007249 if (!(priv->status & STATUS_INITIALIZED)) {
7250 err = -EIO;
7251 goto done;
7252 }
7253
7254 err = ipw2100_set_tx_power(priv, value);
7255
7256 IPW_DEBUG_WX("SET TX Power -> %d \n", value);
7257
James Ketrenosee8e3652005-09-14 09:47:29 -05007258 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08007259 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007260 return err;
7261}
7262
7263static int ipw2100_wx_get_txpow(struct net_device *dev,
7264 struct iw_request_info *info,
7265 union iwreq_data *wrqu, char *extra)
7266{
7267 /*
7268 * This can be called at any time. No action lock required
7269 */
7270
7271 struct ipw2100_priv *priv = ieee80211_priv(dev);
7272
Zhu Yib6e4da72006-01-24 13:49:32 +08007273 wrqu->txpower.disabled = (priv->status & STATUS_RF_KILL_MASK) ? 1 : 0;
James Ketrenos2c86c272005-03-23 17:32:29 -06007274
7275 if (priv->tx_power == IPW_TX_POWER_DEFAULT) {
Zhu Yib6e4da72006-01-24 13:49:32 +08007276 wrqu->txpower.fixed = 0;
7277 wrqu->txpower.value = IPW_TX_POWER_MAX_DBM;
James Ketrenos2c86c272005-03-23 17:32:29 -06007278 } else {
Zhu Yib6e4da72006-01-24 13:49:32 +08007279 wrqu->txpower.fixed = 1;
7280 wrqu->txpower.value = priv->tx_power;
James Ketrenos2c86c272005-03-23 17:32:29 -06007281 }
7282
Zhu Yib6e4da72006-01-24 13:49:32 +08007283 wrqu->txpower.flags = IW_TXPOW_DBM;
James Ketrenos2c86c272005-03-23 17:32:29 -06007284
Zhu Yib6e4da72006-01-24 13:49:32 +08007285 IPW_DEBUG_WX("GET TX Power -> %d \n", wrqu->txpower.value);
James Ketrenos2c86c272005-03-23 17:32:29 -06007286
7287 return 0;
7288}
7289
7290static int ipw2100_wx_set_frag(struct net_device *dev,
7291 struct iw_request_info *info,
7292 union iwreq_data *wrqu, char *extra)
7293{
7294 /*
7295 * This can be called at any time. No action lock required
7296 */
7297
7298 struct ipw2100_priv *priv = ieee80211_priv(dev);
7299
7300 if (!wrqu->frag.fixed)
7301 return -EINVAL;
7302
7303 if (wrqu->frag.disabled) {
7304 priv->frag_threshold |= FRAG_DISABLED;
7305 priv->ieee->fts = DEFAULT_FTS;
7306 } else {
7307 if (wrqu->frag.value < MIN_FRAG_THRESHOLD ||
7308 wrqu->frag.value > MAX_FRAG_THRESHOLD)
7309 return -EINVAL;
7310
7311 priv->ieee->fts = wrqu->frag.value & ~0x1;
7312 priv->frag_threshold = priv->ieee->fts;
7313 }
7314
7315 IPW_DEBUG_WX("SET Frag Threshold -> %d \n", priv->ieee->fts);
7316
7317 return 0;
7318}
7319
7320static int ipw2100_wx_get_frag(struct net_device *dev,
7321 struct iw_request_info *info,
7322 union iwreq_data *wrqu, char *extra)
7323{
7324 /*
7325 * This can be called at any time. No action lock required
7326 */
7327
7328 struct ipw2100_priv *priv = ieee80211_priv(dev);
7329 wrqu->frag.value = priv->frag_threshold & ~FRAG_DISABLED;
7330 wrqu->frag.fixed = 0; /* no auto select */
7331 wrqu->frag.disabled = (priv->frag_threshold & FRAG_DISABLED) ? 1 : 0;
7332
7333 IPW_DEBUG_WX("GET Frag Threshold -> %d \n", wrqu->frag.value);
7334
7335 return 0;
7336}
7337
7338static int ipw2100_wx_set_retry(struct net_device *dev,
7339 struct iw_request_info *info,
7340 union iwreq_data *wrqu, char *extra)
7341{
7342 struct ipw2100_priv *priv = ieee80211_priv(dev);
7343 int err = 0;
7344
James Ketrenosee8e3652005-09-14 09:47:29 -05007345 if (wrqu->retry.flags & IW_RETRY_LIFETIME || wrqu->retry.disabled)
James Ketrenos2c86c272005-03-23 17:32:29 -06007346 return -EINVAL;
7347
7348 if (!(wrqu->retry.flags & IW_RETRY_LIMIT))
7349 return 0;
7350
Ingo Molnar752e3772006-02-28 07:20:54 +08007351 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007352 if (!(priv->status & STATUS_INITIALIZED)) {
7353 err = -EIO;
7354 goto done;
7355 }
7356
Jean Tourrilhes5b63bae2006-08-29 18:00:48 -07007357 if (wrqu->retry.flags & IW_RETRY_SHORT) {
James Ketrenos2c86c272005-03-23 17:32:29 -06007358 err = ipw2100_set_short_retry(priv, wrqu->retry.value);
7359 IPW_DEBUG_WX("SET Short Retry Limit -> %d \n",
James Ketrenosee8e3652005-09-14 09:47:29 -05007360 wrqu->retry.value);
James Ketrenos2c86c272005-03-23 17:32:29 -06007361 goto done;
7362 }
7363
Jean Tourrilhes5b63bae2006-08-29 18:00:48 -07007364 if (wrqu->retry.flags & IW_RETRY_LONG) {
James Ketrenos2c86c272005-03-23 17:32:29 -06007365 err = ipw2100_set_long_retry(priv, wrqu->retry.value);
7366 IPW_DEBUG_WX("SET Long Retry Limit -> %d \n",
James Ketrenosee8e3652005-09-14 09:47:29 -05007367 wrqu->retry.value);
James Ketrenos2c86c272005-03-23 17:32:29 -06007368 goto done;
7369 }
7370
7371 err = ipw2100_set_short_retry(priv, wrqu->retry.value);
7372 if (!err)
7373 err = ipw2100_set_long_retry(priv, wrqu->retry.value);
7374
7375 IPW_DEBUG_WX("SET Both Retry Limits -> %d \n", wrqu->retry.value);
7376
James Ketrenosee8e3652005-09-14 09:47:29 -05007377 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08007378 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007379 return err;
7380}
7381
7382static int ipw2100_wx_get_retry(struct net_device *dev,
7383 struct iw_request_info *info,
7384 union iwreq_data *wrqu, char *extra)
7385{
7386 /*
7387 * This can be called at any time. No action lock required
7388 */
7389
7390 struct ipw2100_priv *priv = ieee80211_priv(dev);
7391
James Ketrenosee8e3652005-09-14 09:47:29 -05007392 wrqu->retry.disabled = 0; /* can't be disabled */
James Ketrenos2c86c272005-03-23 17:32:29 -06007393
James Ketrenosee8e3652005-09-14 09:47:29 -05007394 if ((wrqu->retry.flags & IW_RETRY_TYPE) == IW_RETRY_LIFETIME)
James Ketrenos2c86c272005-03-23 17:32:29 -06007395 return -EINVAL;
7396
Jean Tourrilhes5b63bae2006-08-29 18:00:48 -07007397 if (wrqu->retry.flags & IW_RETRY_LONG) {
7398 wrqu->retry.flags = IW_RETRY_LIMIT | IW_RETRY_LONG;
James Ketrenos2c86c272005-03-23 17:32:29 -06007399 wrqu->retry.value = priv->long_retry_limit;
7400 } else {
7401 wrqu->retry.flags =
7402 (priv->short_retry_limit !=
7403 priv->long_retry_limit) ?
Jean Tourrilhes5b63bae2006-08-29 18:00:48 -07007404 IW_RETRY_LIMIT | IW_RETRY_SHORT : IW_RETRY_LIMIT;
James Ketrenos2c86c272005-03-23 17:32:29 -06007405
7406 wrqu->retry.value = priv->short_retry_limit;
7407 }
7408
7409 IPW_DEBUG_WX("GET Retry -> %d \n", wrqu->retry.value);
7410
7411 return 0;
7412}
7413
7414static int ipw2100_wx_set_scan(struct net_device *dev,
7415 struct iw_request_info *info,
7416 union iwreq_data *wrqu, char *extra)
7417{
7418 struct ipw2100_priv *priv = ieee80211_priv(dev);
7419 int err = 0;
7420
Ingo Molnar752e3772006-02-28 07:20:54 +08007421 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007422 if (!(priv->status & STATUS_INITIALIZED)) {
7423 err = -EIO;
7424 goto done;
7425 }
7426
7427 IPW_DEBUG_WX("Initiating scan...\n");
James Ketrenosee8e3652005-09-14 09:47:29 -05007428 if (ipw2100_set_scan_options(priv) || ipw2100_start_scan(priv)) {
James Ketrenos2c86c272005-03-23 17:32:29 -06007429 IPW_DEBUG_WX("Start scan failed.\n");
7430
7431 /* TODO: Mark a scan as pending so when hardware initialized
7432 * a scan starts */
7433 }
7434
James Ketrenosee8e3652005-09-14 09:47:29 -05007435 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08007436 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007437 return err;
7438}
7439
7440static int ipw2100_wx_get_scan(struct net_device *dev,
7441 struct iw_request_info *info,
7442 union iwreq_data *wrqu, char *extra)
7443{
7444 /*
7445 * This can be called at any time. No action lock required
7446 */
7447
7448 struct ipw2100_priv *priv = ieee80211_priv(dev);
7449 return ieee80211_wx_get_scan(priv->ieee, info, wrqu, extra);
7450}
7451
James Ketrenos2c86c272005-03-23 17:32:29 -06007452/*
7453 * Implementation based on code in hostap-driver v0.1.3 hostap_ioctl.c
7454 */
7455static int ipw2100_wx_set_encode(struct net_device *dev,
7456 struct iw_request_info *info,
7457 union iwreq_data *wrqu, char *key)
7458{
7459 /*
7460 * No check of STATUS_INITIALIZED required
7461 */
7462
7463 struct ipw2100_priv *priv = ieee80211_priv(dev);
7464 return ieee80211_wx_set_encode(priv->ieee, info, wrqu, key);
7465}
7466
7467static int ipw2100_wx_get_encode(struct net_device *dev,
7468 struct iw_request_info *info,
7469 union iwreq_data *wrqu, char *key)
7470{
7471 /*
7472 * This can be called at any time. No action lock required
7473 */
7474
7475 struct ipw2100_priv *priv = ieee80211_priv(dev);
7476 return ieee80211_wx_get_encode(priv->ieee, info, wrqu, key);
7477}
7478
7479static int ipw2100_wx_set_power(struct net_device *dev,
James Ketrenosee8e3652005-09-14 09:47:29 -05007480 struct iw_request_info *info,
7481 union iwreq_data *wrqu, char *extra)
James Ketrenos2c86c272005-03-23 17:32:29 -06007482{
7483 struct ipw2100_priv *priv = ieee80211_priv(dev);
7484 int err = 0;
7485
Ingo Molnar752e3772006-02-28 07:20:54 +08007486 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007487 if (!(priv->status & STATUS_INITIALIZED)) {
7488 err = -EIO;
7489 goto done;
7490 }
7491
7492 if (wrqu->power.disabled) {
7493 priv->power_mode = IPW_POWER_LEVEL(priv->power_mode);
7494 err = ipw2100_set_power_mode(priv, IPW_POWER_MODE_CAM);
7495 IPW_DEBUG_WX("SET Power Management Mode -> off\n");
7496 goto done;
7497 }
7498
7499 switch (wrqu->power.flags & IW_POWER_MODE) {
James Ketrenosee8e3652005-09-14 09:47:29 -05007500 case IW_POWER_ON: /* If not specified */
7501 case IW_POWER_MODE: /* If set all mask */
7502 case IW_POWER_ALL_R: /* If explicitely state all */
James Ketrenos2c86c272005-03-23 17:32:29 -06007503 break;
James Ketrenosee8e3652005-09-14 09:47:29 -05007504 default: /* Otherwise we don't support it */
James Ketrenos2c86c272005-03-23 17:32:29 -06007505 IPW_DEBUG_WX("SET PM Mode: %X not supported.\n",
7506 wrqu->power.flags);
7507 err = -EOPNOTSUPP;
7508 goto done;
7509 }
7510
7511 /* If the user hasn't specified a power management mode yet, default
7512 * to BATTERY */
7513 priv->power_mode = IPW_POWER_ENABLED | priv->power_mode;
7514 err = ipw2100_set_power_mode(priv, IPW_POWER_LEVEL(priv->power_mode));
7515
James Ketrenosee8e3652005-09-14 09:47:29 -05007516 IPW_DEBUG_WX("SET Power Management Mode -> 0x%02X\n", priv->power_mode);
James Ketrenos2c86c272005-03-23 17:32:29 -06007517
James Ketrenosee8e3652005-09-14 09:47:29 -05007518 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08007519 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007520 return err;
7521
7522}
7523
7524static int ipw2100_wx_get_power(struct net_device *dev,
James Ketrenosee8e3652005-09-14 09:47:29 -05007525 struct iw_request_info *info,
7526 union iwreq_data *wrqu, char *extra)
James Ketrenos2c86c272005-03-23 17:32:29 -06007527{
7528 /*
7529 * This can be called at any time. No action lock required
7530 */
7531
7532 struct ipw2100_priv *priv = ieee80211_priv(dev);
7533
James Ketrenos82328352005-08-24 22:33:31 -05007534 if (!(priv->power_mode & IPW_POWER_ENABLED))
James Ketrenos2c86c272005-03-23 17:32:29 -06007535 wrqu->power.disabled = 1;
James Ketrenos82328352005-08-24 22:33:31 -05007536 else {
James Ketrenos2c86c272005-03-23 17:32:29 -06007537 wrqu->power.disabled = 0;
7538 wrqu->power.flags = 0;
7539 }
7540
7541 IPW_DEBUG_WX("GET Power Management Mode -> %02X\n", priv->power_mode);
7542
7543 return 0;
7544}
7545
James Ketrenos82328352005-08-24 22:33:31 -05007546/*
7547 * WE-18 WPA support
7548 */
7549
7550/* SIOCSIWGENIE */
7551static int ipw2100_wx_set_genie(struct net_device *dev,
7552 struct iw_request_info *info,
7553 union iwreq_data *wrqu, char *extra)
7554{
7555
7556 struct ipw2100_priv *priv = ieee80211_priv(dev);
7557 struct ieee80211_device *ieee = priv->ieee;
7558 u8 *buf;
7559
7560 if (!ieee->wpa_enabled)
7561 return -EOPNOTSUPP;
7562
7563 if (wrqu->data.length > MAX_WPA_IE_LEN ||
7564 (wrqu->data.length && extra == NULL))
7565 return -EINVAL;
7566
7567 if (wrqu->data.length) {
Eric Sesterhennc3a9392e2006-10-23 22:20:15 +02007568 buf = kmemdup(extra, wrqu->data.length, GFP_KERNEL);
James Ketrenos82328352005-08-24 22:33:31 -05007569 if (buf == NULL)
7570 return -ENOMEM;
7571
James Ketrenos82328352005-08-24 22:33:31 -05007572 kfree(ieee->wpa_ie);
7573 ieee->wpa_ie = buf;
7574 ieee->wpa_ie_len = wrqu->data.length;
7575 } else {
7576 kfree(ieee->wpa_ie);
7577 ieee->wpa_ie = NULL;
7578 ieee->wpa_ie_len = 0;
7579 }
7580
7581 ipw2100_wpa_assoc_frame(priv, ieee->wpa_ie, ieee->wpa_ie_len);
7582
7583 return 0;
7584}
7585
7586/* SIOCGIWGENIE */
7587static int ipw2100_wx_get_genie(struct net_device *dev,
7588 struct iw_request_info *info,
7589 union iwreq_data *wrqu, char *extra)
7590{
7591 struct ipw2100_priv *priv = ieee80211_priv(dev);
7592 struct ieee80211_device *ieee = priv->ieee;
7593
7594 if (ieee->wpa_ie_len == 0 || ieee->wpa_ie == NULL) {
7595 wrqu->data.length = 0;
7596 return 0;
7597 }
7598
7599 if (wrqu->data.length < ieee->wpa_ie_len)
7600 return -E2BIG;
7601
7602 wrqu->data.length = ieee->wpa_ie_len;
7603 memcpy(extra, ieee->wpa_ie, ieee->wpa_ie_len);
7604
7605 return 0;
7606}
7607
7608/* SIOCSIWAUTH */
7609static int ipw2100_wx_set_auth(struct net_device *dev,
7610 struct iw_request_info *info,
7611 union iwreq_data *wrqu, char *extra)
7612{
7613 struct ipw2100_priv *priv = ieee80211_priv(dev);
7614 struct ieee80211_device *ieee = priv->ieee;
7615 struct iw_param *param = &wrqu->param;
7616 struct ieee80211_crypt_data *crypt;
7617 unsigned long flags;
7618 int ret = 0;
7619
7620 switch (param->flags & IW_AUTH_INDEX) {
7621 case IW_AUTH_WPA_VERSION:
7622 case IW_AUTH_CIPHER_PAIRWISE:
7623 case IW_AUTH_CIPHER_GROUP:
7624 case IW_AUTH_KEY_MGMT:
7625 /*
7626 * ipw2200 does not use these parameters
7627 */
7628 break;
7629
7630 case IW_AUTH_TKIP_COUNTERMEASURES:
7631 crypt = priv->ieee->crypt[priv->ieee->tx_keyidx];
James Ketrenos991d1cc2005-10-13 09:26:48 +00007632 if (!crypt || !crypt->ops->set_flags || !crypt->ops->get_flags)
James Ketrenos82328352005-08-24 22:33:31 -05007633 break;
James Ketrenos82328352005-08-24 22:33:31 -05007634
7635 flags = crypt->ops->get_flags(crypt->priv);
7636
7637 if (param->value)
7638 flags |= IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
7639 else
7640 flags &= ~IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
7641
7642 crypt->ops->set_flags(flags, crypt->priv);
7643
7644 break;
7645
7646 case IW_AUTH_DROP_UNENCRYPTED:{
7647 /* HACK:
7648 *
7649 * wpa_supplicant calls set_wpa_enabled when the driver
7650 * is loaded and unloaded, regardless of if WPA is being
7651 * used. No other calls are made which can be used to
7652 * determine if encryption will be used or not prior to
7653 * association being expected. If encryption is not being
7654 * used, drop_unencrypted is set to false, else true -- we
7655 * can use this to determine if the CAP_PRIVACY_ON bit should
7656 * be set.
7657 */
7658 struct ieee80211_security sec = {
7659 .flags = SEC_ENABLED,
7660 .enabled = param->value,
7661 };
7662 priv->ieee->drop_unencrypted = param->value;
7663 /* We only change SEC_LEVEL for open mode. Others
7664 * are set by ipw_wpa_set_encryption.
7665 */
7666 if (!param->value) {
7667 sec.flags |= SEC_LEVEL;
7668 sec.level = SEC_LEVEL_0;
7669 } else {
7670 sec.flags |= SEC_LEVEL;
7671 sec.level = SEC_LEVEL_1;
7672 }
7673 if (priv->ieee->set_security)
7674 priv->ieee->set_security(priv->ieee->dev, &sec);
7675 break;
7676 }
7677
7678 case IW_AUTH_80211_AUTH_ALG:
7679 ret = ipw2100_wpa_set_auth_algs(priv, param->value);
7680 break;
7681
7682 case IW_AUTH_WPA_ENABLED:
7683 ret = ipw2100_wpa_enable(priv, param->value);
7684 break;
7685
7686 case IW_AUTH_RX_UNENCRYPTED_EAPOL:
7687 ieee->ieee802_1x = param->value;
7688 break;
7689
7690 //case IW_AUTH_ROAMING_CONTROL:
7691 case IW_AUTH_PRIVACY_INVOKED:
7692 ieee->privacy_invoked = param->value;
7693 break;
7694
7695 default:
7696 return -EOPNOTSUPP;
7697 }
7698 return ret;
7699}
7700
7701/* SIOCGIWAUTH */
7702static int ipw2100_wx_get_auth(struct net_device *dev,
7703 struct iw_request_info *info,
7704 union iwreq_data *wrqu, char *extra)
7705{
7706 struct ipw2100_priv *priv = ieee80211_priv(dev);
7707 struct ieee80211_device *ieee = priv->ieee;
7708 struct ieee80211_crypt_data *crypt;
7709 struct iw_param *param = &wrqu->param;
7710 int ret = 0;
7711
7712 switch (param->flags & IW_AUTH_INDEX) {
7713 case IW_AUTH_WPA_VERSION:
7714 case IW_AUTH_CIPHER_PAIRWISE:
7715 case IW_AUTH_CIPHER_GROUP:
7716 case IW_AUTH_KEY_MGMT:
7717 /*
7718 * wpa_supplicant will control these internally
7719 */
7720 ret = -EOPNOTSUPP;
7721 break;
7722
7723 case IW_AUTH_TKIP_COUNTERMEASURES:
7724 crypt = priv->ieee->crypt[priv->ieee->tx_keyidx];
7725 if (!crypt || !crypt->ops->get_flags) {
7726 IPW_DEBUG_WARNING("Can't get TKIP countermeasures: "
7727 "crypt not set!\n");
7728 break;
7729 }
7730
7731 param->value = (crypt->ops->get_flags(crypt->priv) &
7732 IEEE80211_CRYPTO_TKIP_COUNTERMEASURES) ? 1 : 0;
7733
7734 break;
7735
7736 case IW_AUTH_DROP_UNENCRYPTED:
7737 param->value = ieee->drop_unencrypted;
7738 break;
7739
7740 case IW_AUTH_80211_AUTH_ALG:
25b645b2005-07-12 15:45:30 -05007741 param->value = priv->ieee->sec.auth_mode;
James Ketrenos82328352005-08-24 22:33:31 -05007742 break;
7743
7744 case IW_AUTH_WPA_ENABLED:
7745 param->value = ieee->wpa_enabled;
7746 break;
7747
7748 case IW_AUTH_RX_UNENCRYPTED_EAPOL:
7749 param->value = ieee->ieee802_1x;
7750 break;
7751
7752 case IW_AUTH_ROAMING_CONTROL:
7753 case IW_AUTH_PRIVACY_INVOKED:
7754 param->value = ieee->privacy_invoked;
7755 break;
7756
7757 default:
7758 return -EOPNOTSUPP;
7759 }
7760 return 0;
7761}
7762
7763/* SIOCSIWENCODEEXT */
7764static int ipw2100_wx_set_encodeext(struct net_device *dev,
7765 struct iw_request_info *info,
7766 union iwreq_data *wrqu, char *extra)
7767{
7768 struct ipw2100_priv *priv = ieee80211_priv(dev);
7769 return ieee80211_wx_set_encodeext(priv->ieee, info, wrqu, extra);
7770}
7771
7772/* SIOCGIWENCODEEXT */
7773static int ipw2100_wx_get_encodeext(struct net_device *dev,
7774 struct iw_request_info *info,
7775 union iwreq_data *wrqu, char *extra)
7776{
7777 struct ipw2100_priv *priv = ieee80211_priv(dev);
7778 return ieee80211_wx_get_encodeext(priv->ieee, info, wrqu, extra);
7779}
7780
7781/* SIOCSIWMLME */
7782static int ipw2100_wx_set_mlme(struct net_device *dev,
7783 struct iw_request_info *info,
7784 union iwreq_data *wrqu, char *extra)
7785{
7786 struct ipw2100_priv *priv = ieee80211_priv(dev);
7787 struct iw_mlme *mlme = (struct iw_mlme *)extra;
7788 u16 reason;
7789
7790 reason = cpu_to_le16(mlme->reason_code);
7791
7792 switch (mlme->cmd) {
7793 case IW_MLME_DEAUTH:
7794 // silently ignore
7795 break;
7796
7797 case IW_MLME_DISASSOC:
7798 ipw2100_disassociate_bssid(priv);
7799 break;
7800
7801 default:
7802 return -EOPNOTSUPP;
7803 }
7804 return 0;
7805}
James Ketrenos2c86c272005-03-23 17:32:29 -06007806
7807/*
7808 *
7809 * IWPRIV handlers
7810 *
7811 */
7812#ifdef CONFIG_IPW2100_MONITOR
7813static int ipw2100_wx_set_promisc(struct net_device *dev,
7814 struct iw_request_info *info,
7815 union iwreq_data *wrqu, char *extra)
7816{
7817 struct ipw2100_priv *priv = ieee80211_priv(dev);
7818 int *parms = (int *)extra;
7819 int enable = (parms[0] > 0);
7820 int err = 0;
7821
Ingo Molnar752e3772006-02-28 07:20:54 +08007822 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007823 if (!(priv->status & STATUS_INITIALIZED)) {
7824 err = -EIO;
7825 goto done;
7826 }
7827
7828 if (enable) {
7829 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
7830 err = ipw2100_set_channel(priv, parms[1], 0);
7831 goto done;
7832 }
7833 priv->channel = parms[1];
7834 err = ipw2100_switch_mode(priv, IW_MODE_MONITOR);
7835 } else {
7836 if (priv->ieee->iw_mode == IW_MODE_MONITOR)
7837 err = ipw2100_switch_mode(priv, priv->last_mode);
7838 }
James Ketrenosee8e3652005-09-14 09:47:29 -05007839 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08007840 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007841 return err;
7842}
7843
7844static int ipw2100_wx_reset(struct net_device *dev,
7845 struct iw_request_info *info,
7846 union iwreq_data *wrqu, char *extra)
7847{
7848 struct ipw2100_priv *priv = ieee80211_priv(dev);
7849 if (priv->status & STATUS_INITIALIZED)
7850 schedule_reset(priv);
7851 return 0;
7852}
7853
7854#endif
7855
7856static int ipw2100_wx_set_powermode(struct net_device *dev,
7857 struct iw_request_info *info,
7858 union iwreq_data *wrqu, char *extra)
7859{
7860 struct ipw2100_priv *priv = ieee80211_priv(dev);
7861 int err = 0, mode = *(int *)extra;
7862
Ingo Molnar752e3772006-02-28 07:20:54 +08007863 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007864 if (!(priv->status & STATUS_INITIALIZED)) {
7865 err = -EIO;
7866 goto done;
7867 }
7868
Zhu Yi9f3b2412007-07-12 16:09:24 +08007869 if ((mode < 0) || (mode > POWER_MODES))
James Ketrenos2c86c272005-03-23 17:32:29 -06007870 mode = IPW_POWER_AUTO;
7871
Zhu Yi9f3b2412007-07-12 16:09:24 +08007872 if (IPW_POWER_LEVEL(priv->power_mode) != mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06007873 err = ipw2100_set_power_mode(priv, mode);
James Ketrenosee8e3652005-09-14 09:47:29 -05007874 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08007875 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007876 return err;
7877}
7878
7879#define MAX_POWER_STRING 80
7880static int ipw2100_wx_get_powermode(struct net_device *dev,
7881 struct iw_request_info *info,
7882 union iwreq_data *wrqu, char *extra)
7883{
7884 /*
7885 * This can be called at any time. No action lock required
7886 */
7887
7888 struct ipw2100_priv *priv = ieee80211_priv(dev);
7889 int level = IPW_POWER_LEVEL(priv->power_mode);
7890 s32 timeout, period;
7891
7892 if (!(priv->power_mode & IPW_POWER_ENABLED)) {
7893 snprintf(extra, MAX_POWER_STRING,
7894 "Power save level: %d (Off)", level);
7895 } else {
7896 switch (level) {
7897 case IPW_POWER_MODE_CAM:
7898 snprintf(extra, MAX_POWER_STRING,
7899 "Power save level: %d (None)", level);
7900 break;
7901 case IPW_POWER_AUTO:
James Ketrenosee8e3652005-09-14 09:47:29 -05007902 snprintf(extra, MAX_POWER_STRING,
Zhu Yi9f3b2412007-07-12 16:09:24 +08007903 "Power save level: %d (Auto)", level);
James Ketrenos2c86c272005-03-23 17:32:29 -06007904 break;
7905 default:
7906 timeout = timeout_duration[level - 1] / 1000;
7907 period = period_duration[level - 1] / 1000;
7908 snprintf(extra, MAX_POWER_STRING,
7909 "Power save level: %d "
7910 "(Timeout %dms, Period %dms)",
7911 level, timeout, period);
7912 }
7913 }
7914
7915 wrqu->data.length = strlen(extra) + 1;
7916
7917 return 0;
7918}
7919
James Ketrenos2c86c272005-03-23 17:32:29 -06007920static int ipw2100_wx_set_preamble(struct net_device *dev,
7921 struct iw_request_info *info,
7922 union iwreq_data *wrqu, char *extra)
7923{
7924 struct ipw2100_priv *priv = ieee80211_priv(dev);
7925 int err, mode = *(int *)extra;
7926
Ingo Molnar752e3772006-02-28 07:20:54 +08007927 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007928 if (!(priv->status & STATUS_INITIALIZED)) {
7929 err = -EIO;
7930 goto done;
7931 }
7932
7933 if (mode == 1)
7934 priv->config |= CFG_LONG_PREAMBLE;
7935 else if (mode == 0)
7936 priv->config &= ~CFG_LONG_PREAMBLE;
7937 else {
7938 err = -EINVAL;
7939 goto done;
7940 }
7941
7942 err = ipw2100_system_config(priv, 0);
7943
James Ketrenosee8e3652005-09-14 09:47:29 -05007944 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08007945 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007946 return err;
7947}
7948
7949static int ipw2100_wx_get_preamble(struct net_device *dev,
James Ketrenosee8e3652005-09-14 09:47:29 -05007950 struct iw_request_info *info,
7951 union iwreq_data *wrqu, char *extra)
James Ketrenos2c86c272005-03-23 17:32:29 -06007952{
7953 /*
7954 * This can be called at any time. No action lock required
7955 */
7956
7957 struct ipw2100_priv *priv = ieee80211_priv(dev);
7958
7959 if (priv->config & CFG_LONG_PREAMBLE)
7960 snprintf(wrqu->name, IFNAMSIZ, "long (1)");
7961 else
7962 snprintf(wrqu->name, IFNAMSIZ, "auto (0)");
7963
7964 return 0;
7965}
7966
James Ketrenos82328352005-08-24 22:33:31 -05007967#ifdef CONFIG_IPW2100_MONITOR
7968static int ipw2100_wx_set_crc_check(struct net_device *dev,
7969 struct iw_request_info *info,
7970 union iwreq_data *wrqu, char *extra)
James Ketrenos2c86c272005-03-23 17:32:29 -06007971{
James Ketrenos82328352005-08-24 22:33:31 -05007972 struct ipw2100_priv *priv = ieee80211_priv(dev);
7973 int err, mode = *(int *)extra;
7974
Ingo Molnar752e3772006-02-28 07:20:54 +08007975 mutex_lock(&priv->action_mutex);
James Ketrenos82328352005-08-24 22:33:31 -05007976 if (!(priv->status & STATUS_INITIALIZED)) {
7977 err = -EIO;
7978 goto done;
7979 }
7980
7981 if (mode == 1)
7982 priv->config |= CFG_CRC_CHECK;
7983 else if (mode == 0)
7984 priv->config &= ~CFG_CRC_CHECK;
7985 else {
7986 err = -EINVAL;
7987 goto done;
7988 }
7989 err = 0;
7990
7991 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08007992 mutex_unlock(&priv->action_mutex);
James Ketrenos82328352005-08-24 22:33:31 -05007993 return err;
7994}
7995
7996static int ipw2100_wx_get_crc_check(struct net_device *dev,
7997 struct iw_request_info *info,
7998 union iwreq_data *wrqu, char *extra)
7999{
8000 /*
8001 * This can be called at any time. No action lock required
8002 */
8003
8004 struct ipw2100_priv *priv = ieee80211_priv(dev);
8005
8006 if (priv->config & CFG_CRC_CHECK)
8007 snprintf(wrqu->name, IFNAMSIZ, "CRC checked (1)");
8008 else
8009 snprintf(wrqu->name, IFNAMSIZ, "CRC ignored (0)");
8010
8011 return 0;
8012}
8013#endif /* CONFIG_IPW2100_MONITOR */
8014
James Ketrenosee8e3652005-09-14 09:47:29 -05008015static iw_handler ipw2100_wx_handlers[] = {
8016 NULL, /* SIOCSIWCOMMIT */
8017 ipw2100_wx_get_name, /* SIOCGIWNAME */
8018 NULL, /* SIOCSIWNWID */
8019 NULL, /* SIOCGIWNWID */
8020 ipw2100_wx_set_freq, /* SIOCSIWFREQ */
8021 ipw2100_wx_get_freq, /* SIOCGIWFREQ */
8022 ipw2100_wx_set_mode, /* SIOCSIWMODE */
8023 ipw2100_wx_get_mode, /* SIOCGIWMODE */
8024 NULL, /* SIOCSIWSENS */
8025 NULL, /* SIOCGIWSENS */
8026 NULL, /* SIOCSIWRANGE */
8027 ipw2100_wx_get_range, /* SIOCGIWRANGE */
8028 NULL, /* SIOCSIWPRIV */
8029 NULL, /* SIOCGIWPRIV */
8030 NULL, /* SIOCSIWSTATS */
8031 NULL, /* SIOCGIWSTATS */
8032 NULL, /* SIOCSIWSPY */
8033 NULL, /* SIOCGIWSPY */
8034 NULL, /* SIOCGIWTHRSPY */
8035 NULL, /* SIOCWIWTHRSPY */
8036 ipw2100_wx_set_wap, /* SIOCSIWAP */
8037 ipw2100_wx_get_wap, /* SIOCGIWAP */
James Ketrenos82328352005-08-24 22:33:31 -05008038 ipw2100_wx_set_mlme, /* SIOCSIWMLME */
James Ketrenosee8e3652005-09-14 09:47:29 -05008039 NULL, /* SIOCGIWAPLIST -- deprecated */
8040 ipw2100_wx_set_scan, /* SIOCSIWSCAN */
8041 ipw2100_wx_get_scan, /* SIOCGIWSCAN */
8042 ipw2100_wx_set_essid, /* SIOCSIWESSID */
8043 ipw2100_wx_get_essid, /* SIOCGIWESSID */
8044 ipw2100_wx_set_nick, /* SIOCSIWNICKN */
8045 ipw2100_wx_get_nick, /* SIOCGIWNICKN */
8046 NULL, /* -- hole -- */
8047 NULL, /* -- hole -- */
8048 ipw2100_wx_set_rate, /* SIOCSIWRATE */
8049 ipw2100_wx_get_rate, /* SIOCGIWRATE */
8050 ipw2100_wx_set_rts, /* SIOCSIWRTS */
8051 ipw2100_wx_get_rts, /* SIOCGIWRTS */
8052 ipw2100_wx_set_frag, /* SIOCSIWFRAG */
8053 ipw2100_wx_get_frag, /* SIOCGIWFRAG */
8054 ipw2100_wx_set_txpow, /* SIOCSIWTXPOW */
8055 ipw2100_wx_get_txpow, /* SIOCGIWTXPOW */
8056 ipw2100_wx_set_retry, /* SIOCSIWRETRY */
8057 ipw2100_wx_get_retry, /* SIOCGIWRETRY */
8058 ipw2100_wx_set_encode, /* SIOCSIWENCODE */
8059 ipw2100_wx_get_encode, /* SIOCGIWENCODE */
8060 ipw2100_wx_set_power, /* SIOCSIWPOWER */
8061 ipw2100_wx_get_power, /* SIOCGIWPOWER */
James Ketrenos82328352005-08-24 22:33:31 -05008062 NULL, /* -- hole -- */
8063 NULL, /* -- hole -- */
8064 ipw2100_wx_set_genie, /* SIOCSIWGENIE */
8065 ipw2100_wx_get_genie, /* SIOCGIWGENIE */
8066 ipw2100_wx_set_auth, /* SIOCSIWAUTH */
8067 ipw2100_wx_get_auth, /* SIOCGIWAUTH */
8068 ipw2100_wx_set_encodeext, /* SIOCSIWENCODEEXT */
8069 ipw2100_wx_get_encodeext, /* SIOCGIWENCODEEXT */
8070 NULL, /* SIOCSIWPMKSA */
James Ketrenos2c86c272005-03-23 17:32:29 -06008071};
8072
8073#define IPW2100_PRIV_SET_MONITOR SIOCIWFIRSTPRIV
8074#define IPW2100_PRIV_RESET SIOCIWFIRSTPRIV+1
8075#define IPW2100_PRIV_SET_POWER SIOCIWFIRSTPRIV+2
8076#define IPW2100_PRIV_GET_POWER SIOCIWFIRSTPRIV+3
8077#define IPW2100_PRIV_SET_LONGPREAMBLE SIOCIWFIRSTPRIV+4
8078#define IPW2100_PRIV_GET_LONGPREAMBLE SIOCIWFIRSTPRIV+5
James Ketrenos82328352005-08-24 22:33:31 -05008079#define IPW2100_PRIV_SET_CRC_CHECK SIOCIWFIRSTPRIV+6
8080#define IPW2100_PRIV_GET_CRC_CHECK SIOCIWFIRSTPRIV+7
James Ketrenos2c86c272005-03-23 17:32:29 -06008081
8082static const struct iw_priv_args ipw2100_private_args[] = {
8083
8084#ifdef CONFIG_IPW2100_MONITOR
8085 {
James Ketrenosee8e3652005-09-14 09:47:29 -05008086 IPW2100_PRIV_SET_MONITOR,
8087 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 2, 0, "monitor"},
James Ketrenos2c86c272005-03-23 17:32:29 -06008088 {
James Ketrenosee8e3652005-09-14 09:47:29 -05008089 IPW2100_PRIV_RESET,
8090 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 0, 0, "reset"},
8091#endif /* CONFIG_IPW2100_MONITOR */
James Ketrenos2c86c272005-03-23 17:32:29 -06008092
8093 {
James Ketrenosee8e3652005-09-14 09:47:29 -05008094 IPW2100_PRIV_SET_POWER,
8095 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1, 0, "set_power"},
James Ketrenos2c86c272005-03-23 17:32:29 -06008096 {
James Ketrenosee8e3652005-09-14 09:47:29 -05008097 IPW2100_PRIV_GET_POWER,
8098 0, IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | MAX_POWER_STRING,
8099 "get_power"},
James Ketrenos2c86c272005-03-23 17:32:29 -06008100 {
James Ketrenosee8e3652005-09-14 09:47:29 -05008101 IPW2100_PRIV_SET_LONGPREAMBLE,
8102 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1, 0, "set_preamble"},
James Ketrenos2c86c272005-03-23 17:32:29 -06008103 {
James Ketrenosee8e3652005-09-14 09:47:29 -05008104 IPW2100_PRIV_GET_LONGPREAMBLE,
8105 0, IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | IFNAMSIZ, "get_preamble"},
James Ketrenos82328352005-08-24 22:33:31 -05008106#ifdef CONFIG_IPW2100_MONITOR
8107 {
8108 IPW2100_PRIV_SET_CRC_CHECK,
8109 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1, 0, "set_crc_check"},
8110 {
8111 IPW2100_PRIV_GET_CRC_CHECK,
8112 0, IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | IFNAMSIZ, "get_crc_check"},
8113#endif /* CONFIG_IPW2100_MONITOR */
James Ketrenos2c86c272005-03-23 17:32:29 -06008114};
8115
8116static iw_handler ipw2100_private_handler[] = {
8117#ifdef CONFIG_IPW2100_MONITOR
8118 ipw2100_wx_set_promisc,
8119 ipw2100_wx_reset,
James Ketrenosee8e3652005-09-14 09:47:29 -05008120#else /* CONFIG_IPW2100_MONITOR */
James Ketrenos2c86c272005-03-23 17:32:29 -06008121 NULL,
8122 NULL,
James Ketrenosee8e3652005-09-14 09:47:29 -05008123#endif /* CONFIG_IPW2100_MONITOR */
James Ketrenos2c86c272005-03-23 17:32:29 -06008124 ipw2100_wx_set_powermode,
8125 ipw2100_wx_get_powermode,
8126 ipw2100_wx_set_preamble,
8127 ipw2100_wx_get_preamble,
James Ketrenos82328352005-08-24 22:33:31 -05008128#ifdef CONFIG_IPW2100_MONITOR
8129 ipw2100_wx_set_crc_check,
8130 ipw2100_wx_get_crc_check,
8131#else /* CONFIG_IPW2100_MONITOR */
8132 NULL,
8133 NULL,
8134#endif /* CONFIG_IPW2100_MONITOR */
James Ketrenos2c86c272005-03-23 17:32:29 -06008135};
8136
James Ketrenos2c86c272005-03-23 17:32:29 -06008137/*
8138 * Get wireless statistics.
8139 * Called by /proc/net/wireless
8140 * Also called by SIOCGIWSTATS
8141 */
James Ketrenosee8e3652005-09-14 09:47:29 -05008142static struct iw_statistics *ipw2100_wx_wireless_stats(struct net_device *dev)
James Ketrenos2c86c272005-03-23 17:32:29 -06008143{
8144 enum {
8145 POOR = 30,
8146 FAIR = 60,
8147 GOOD = 80,
8148 VERY_GOOD = 90,
8149 EXCELLENT = 95,
8150 PERFECT = 100
8151 };
8152 int rssi_qual;
8153 int tx_qual;
8154 int beacon_qual;
8155
8156 struct ipw2100_priv *priv = ieee80211_priv(dev);
8157 struct iw_statistics *wstats;
8158 u32 rssi, quality, tx_retries, missed_beacons, tx_failures;
8159 u32 ord_len = sizeof(u32);
8160
8161 if (!priv)
James Ketrenosee8e3652005-09-14 09:47:29 -05008162 return (struct iw_statistics *)NULL;
James Ketrenos2c86c272005-03-23 17:32:29 -06008163
8164 wstats = &priv->wstats;
8165
8166 /* if hw is disabled, then ipw2100_get_ordinal() can't be called.
8167 * ipw2100_wx_wireless_stats seems to be called before fw is
8168 * initialized. STATUS_ASSOCIATED will only be set if the hw is up
8169 * and associated; if not associcated, the values are all meaningless
8170 * anyway, so set them all to NULL and INVALID */
8171 if (!(priv->status & STATUS_ASSOCIATED)) {
8172 wstats->miss.beacon = 0;
8173 wstats->discard.retries = 0;
8174 wstats->qual.qual = 0;
8175 wstats->qual.level = 0;
8176 wstats->qual.noise = 0;
8177 wstats->qual.updated = 7;
8178 wstats->qual.updated |= IW_QUAL_NOISE_INVALID |
James Ketrenosee8e3652005-09-14 09:47:29 -05008179 IW_QUAL_QUAL_INVALID | IW_QUAL_LEVEL_INVALID;
James Ketrenos2c86c272005-03-23 17:32:29 -06008180 return wstats;
8181 }
8182
8183 if (ipw2100_get_ordinal(priv, IPW_ORD_STAT_PERCENT_MISSED_BCNS,
8184 &missed_beacons, &ord_len))
8185 goto fail_get_ordinal;
8186
James Ketrenosee8e3652005-09-14 09:47:29 -05008187 /* If we don't have a connection the quality and level is 0 */
James Ketrenos2c86c272005-03-23 17:32:29 -06008188 if (!(priv->status & STATUS_ASSOCIATED)) {
8189 wstats->qual.qual = 0;
8190 wstats->qual.level = 0;
8191 } else {
8192 if (ipw2100_get_ordinal(priv, IPW_ORD_RSSI_AVG_CURR,
8193 &rssi, &ord_len))
8194 goto fail_get_ordinal;
8195 wstats->qual.level = rssi + IPW2100_RSSI_TO_DBM;
8196 if (rssi < 10)
8197 rssi_qual = rssi * POOR / 10;
8198 else if (rssi < 15)
8199 rssi_qual = (rssi - 10) * (FAIR - POOR) / 5 + POOR;
8200 else if (rssi < 20)
8201 rssi_qual = (rssi - 15) * (GOOD - FAIR) / 5 + FAIR;
8202 else if (rssi < 30)
8203 rssi_qual = (rssi - 20) * (VERY_GOOD - GOOD) /
James Ketrenosee8e3652005-09-14 09:47:29 -05008204 10 + GOOD;
James Ketrenos2c86c272005-03-23 17:32:29 -06008205 else
8206 rssi_qual = (rssi - 30) * (PERFECT - VERY_GOOD) /
James Ketrenosee8e3652005-09-14 09:47:29 -05008207 10 + VERY_GOOD;
James Ketrenos2c86c272005-03-23 17:32:29 -06008208
8209 if (ipw2100_get_ordinal(priv, IPW_ORD_STAT_PERCENT_RETRIES,
8210 &tx_retries, &ord_len))
8211 goto fail_get_ordinal;
8212
8213 if (tx_retries > 75)
8214 tx_qual = (90 - tx_retries) * POOR / 15;
8215 else if (tx_retries > 70)
8216 tx_qual = (75 - tx_retries) * (FAIR - POOR) / 5 + POOR;
8217 else if (tx_retries > 65)
8218 tx_qual = (70 - tx_retries) * (GOOD - FAIR) / 5 + FAIR;
8219 else if (tx_retries > 50)
8220 tx_qual = (65 - tx_retries) * (VERY_GOOD - GOOD) /
James Ketrenosee8e3652005-09-14 09:47:29 -05008221 15 + GOOD;
James Ketrenos2c86c272005-03-23 17:32:29 -06008222 else
8223 tx_qual = (50 - tx_retries) *
James Ketrenosee8e3652005-09-14 09:47:29 -05008224 (PERFECT - VERY_GOOD) / 50 + VERY_GOOD;
James Ketrenos2c86c272005-03-23 17:32:29 -06008225
8226 if (missed_beacons > 50)
8227 beacon_qual = (60 - missed_beacons) * POOR / 10;
8228 else if (missed_beacons > 40)
8229 beacon_qual = (50 - missed_beacons) * (FAIR - POOR) /
James Ketrenosee8e3652005-09-14 09:47:29 -05008230 10 + POOR;
James Ketrenos2c86c272005-03-23 17:32:29 -06008231 else if (missed_beacons > 32)
8232 beacon_qual = (40 - missed_beacons) * (GOOD - FAIR) /
James Ketrenosee8e3652005-09-14 09:47:29 -05008233 18 + FAIR;
James Ketrenos2c86c272005-03-23 17:32:29 -06008234 else if (missed_beacons > 20)
8235 beacon_qual = (32 - missed_beacons) *
James Ketrenosee8e3652005-09-14 09:47:29 -05008236 (VERY_GOOD - GOOD) / 20 + GOOD;
James Ketrenos2c86c272005-03-23 17:32:29 -06008237 else
8238 beacon_qual = (20 - missed_beacons) *
James Ketrenosee8e3652005-09-14 09:47:29 -05008239 (PERFECT - VERY_GOOD) / 20 + VERY_GOOD;
James Ketrenos2c86c272005-03-23 17:32:29 -06008240
8241 quality = min(beacon_qual, min(tx_qual, rssi_qual));
8242
Brice Goglin0f52bf92005-12-01 01:41:46 -08008243#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06008244 if (beacon_qual == quality)
8245 IPW_DEBUG_WX("Quality clamped by Missed Beacons\n");
8246 else if (tx_qual == quality)
8247 IPW_DEBUG_WX("Quality clamped by Tx Retries\n");
8248 else if (quality != 100)
8249 IPW_DEBUG_WX("Quality clamped by Signal Strength\n");
8250 else
8251 IPW_DEBUG_WX("Quality not clamped.\n");
8252#endif
8253
8254 wstats->qual.qual = quality;
8255 wstats->qual.level = rssi + IPW2100_RSSI_TO_DBM;
8256 }
8257
8258 wstats->qual.noise = 0;
8259 wstats->qual.updated = 7;
8260 wstats->qual.updated |= IW_QUAL_NOISE_INVALID;
8261
James Ketrenosee8e3652005-09-14 09:47:29 -05008262 /* FIXME: this is percent and not a # */
James Ketrenos2c86c272005-03-23 17:32:29 -06008263 wstats->miss.beacon = missed_beacons;
8264
8265 if (ipw2100_get_ordinal(priv, IPW_ORD_STAT_TX_FAILURES,
8266 &tx_failures, &ord_len))
8267 goto fail_get_ordinal;
8268 wstats->discard.retries = tx_failures;
8269
8270 return wstats;
8271
James Ketrenosee8e3652005-09-14 09:47:29 -05008272 fail_get_ordinal:
James Ketrenos2c86c272005-03-23 17:32:29 -06008273 IPW_DEBUG_WX("failed querying ordinals.\n");
8274
James Ketrenosee8e3652005-09-14 09:47:29 -05008275 return (struct iw_statistics *)NULL;
James Ketrenos2c86c272005-03-23 17:32:29 -06008276}
8277
James Ketrenoseaf8f53b2005-11-12 12:50:12 -06008278static struct iw_handler_def ipw2100_wx_handler_def = {
8279 .standard = ipw2100_wx_handlers,
Denis Chengff8ac602007-09-02 18:30:18 +08008280 .num_standard = ARRAY_SIZE(ipw2100_wx_handlers),
8281 .num_private = ARRAY_SIZE(ipw2100_private_handler),
8282 .num_private_args = ARRAY_SIZE(ipw2100_private_args),
James Ketrenoseaf8f53b2005-11-12 12:50:12 -06008283 .private = (iw_handler *) ipw2100_private_handler,
8284 .private_args = (struct iw_priv_args *)ipw2100_private_args,
8285 .get_wireless_stats = ipw2100_wx_wireless_stats,
8286};
8287
David Howellsc4028952006-11-22 14:57:56 +00008288static void ipw2100_wx_event_work(struct work_struct *work)
James Ketrenos2c86c272005-03-23 17:32:29 -06008289{
David Howellsc4028952006-11-22 14:57:56 +00008290 struct ipw2100_priv *priv =
8291 container_of(work, struct ipw2100_priv, wx_event_work.work);
James Ketrenos2c86c272005-03-23 17:32:29 -06008292 union iwreq_data wrqu;
8293 int len = ETH_ALEN;
8294
8295 if (priv->status & STATUS_STOPPING)
8296 return;
8297
Ingo Molnar752e3772006-02-28 07:20:54 +08008298 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06008299
8300 IPW_DEBUG_WX("enter\n");
8301
Ingo Molnar752e3772006-02-28 07:20:54 +08008302 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06008303
8304 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
8305
8306 /* Fetch BSSID from the hardware */
8307 if (!(priv->status & (STATUS_ASSOCIATING | STATUS_ASSOCIATED)) ||
8308 priv->status & STATUS_RF_KILL_MASK ||
8309 ipw2100_get_ordinal(priv, IPW_ORD_STAT_ASSN_AP_BSSID,
James Ketrenosee8e3652005-09-14 09:47:29 -05008310 &priv->bssid, &len)) {
James Ketrenos2c86c272005-03-23 17:32:29 -06008311 memset(wrqu.ap_addr.sa_data, 0, ETH_ALEN);
8312 } else {
8313 /* We now have the BSSID, so can finish setting to the full
8314 * associated state */
8315 memcpy(wrqu.ap_addr.sa_data, priv->bssid, ETH_ALEN);
James Ketrenos82328352005-08-24 22:33:31 -05008316 memcpy(priv->ieee->bssid, priv->bssid, ETH_ALEN);
James Ketrenos2c86c272005-03-23 17:32:29 -06008317 priv->status &= ~STATUS_ASSOCIATING;
8318 priv->status |= STATUS_ASSOCIATED;
8319 netif_carrier_on(priv->net_dev);
James Ketrenos82328352005-08-24 22:33:31 -05008320 netif_wake_queue(priv->net_dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06008321 }
8322
8323 if (!(priv->status & STATUS_ASSOCIATED)) {
8324 IPW_DEBUG_WX("Configuring ESSID\n");
Ingo Molnar752e3772006-02-28 07:20:54 +08008325 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06008326 /* This is a disassociation event, so kick the firmware to
8327 * look for another AP */
8328 if (priv->config & CFG_STATIC_ESSID)
James Ketrenosee8e3652005-09-14 09:47:29 -05008329 ipw2100_set_essid(priv, priv->essid, priv->essid_len,
8330 0);
James Ketrenos2c86c272005-03-23 17:32:29 -06008331 else
8332 ipw2100_set_essid(priv, NULL, 0, 0);
Ingo Molnar752e3772006-02-28 07:20:54 +08008333 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06008334 }
8335
8336 wireless_send_event(priv->net_dev, SIOCGIWAP, &wrqu, NULL);
8337}
8338
8339#define IPW2100_FW_MAJOR_VERSION 1
8340#define IPW2100_FW_MINOR_VERSION 3
8341
8342#define IPW2100_FW_MINOR(x) ((x & 0xff) >> 8)
8343#define IPW2100_FW_MAJOR(x) (x & 0xff)
8344
8345#define IPW2100_FW_VERSION ((IPW2100_FW_MINOR_VERSION << 8) | \
8346 IPW2100_FW_MAJOR_VERSION)
8347
8348#define IPW2100_FW_PREFIX "ipw2100-" __stringify(IPW2100_FW_MAJOR_VERSION) \
8349"." __stringify(IPW2100_FW_MINOR_VERSION)
8350
8351#define IPW2100_FW_NAME(x) IPW2100_FW_PREFIX "" x ".fw"
8352
James Ketrenos2c86c272005-03-23 17:32:29 -06008353/*
8354
8355BINARY FIRMWARE HEADER FORMAT
8356
8357offset length desc
83580 2 version
83592 2 mode == 0:BSS,1:IBSS,2:MONITOR
83604 4 fw_len
83618 4 uc_len
8362C fw_len firmware data
836312 + fw_len uc_len microcode data
8364
8365*/
8366
8367struct ipw2100_fw_header {
8368 short version;
8369 short mode;
8370 unsigned int fw_size;
8371 unsigned int uc_size;
8372} __attribute__ ((packed));
8373
James Ketrenos2c86c272005-03-23 17:32:29 -06008374static int ipw2100_mod_firmware_load(struct ipw2100_fw *fw)
8375{
8376 struct ipw2100_fw_header *h =
James Ketrenosee8e3652005-09-14 09:47:29 -05008377 (struct ipw2100_fw_header *)fw->fw_entry->data;
James Ketrenos2c86c272005-03-23 17:32:29 -06008378
8379 if (IPW2100_FW_MAJOR(h->version) != IPW2100_FW_MAJOR_VERSION) {
Jiri Benc797b4f72005-08-25 20:03:27 -04008380 printk(KERN_WARNING DRV_NAME ": Firmware image not compatible "
James Ketrenos2c86c272005-03-23 17:32:29 -06008381 "(detected version id of %u). "
8382 "See Documentation/networking/README.ipw2100\n",
8383 h->version);
8384 return 1;
8385 }
8386
8387 fw->version = h->version;
8388 fw->fw.data = fw->fw_entry->data + sizeof(struct ipw2100_fw_header);
8389 fw->fw.size = h->fw_size;
8390 fw->uc.data = fw->fw.data + h->fw_size;
8391 fw->uc.size = h->uc_size;
8392
8393 return 0;
8394}
8395
Jiri Bencc4aee8c2005-08-25 20:04:43 -04008396static int ipw2100_get_firmware(struct ipw2100_priv *priv,
8397 struct ipw2100_fw *fw)
James Ketrenos2c86c272005-03-23 17:32:29 -06008398{
8399 char *fw_name;
8400 int rc;
8401
8402 IPW_DEBUG_INFO("%s: Using hotplug firmware load.\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05008403 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06008404
8405 switch (priv->ieee->iw_mode) {
8406 case IW_MODE_ADHOC:
8407 fw_name = IPW2100_FW_NAME("-i");
8408 break;
8409#ifdef CONFIG_IPW2100_MONITOR
8410 case IW_MODE_MONITOR:
8411 fw_name = IPW2100_FW_NAME("-p");
8412 break;
8413#endif
8414 case IW_MODE_INFRA:
8415 default:
8416 fw_name = IPW2100_FW_NAME("");
8417 break;
8418 }
8419
8420 rc = request_firmware(&fw->fw_entry, fw_name, &priv->pci_dev->dev);
8421
8422 if (rc < 0) {
Jiri Benc797b4f72005-08-25 20:03:27 -04008423 printk(KERN_ERR DRV_NAME ": "
James Ketrenos2c86c272005-03-23 17:32:29 -06008424 "%s: Firmware '%s' not available or load failed.\n",
8425 priv->net_dev->name, fw_name);
8426 return rc;
8427 }
Jiri Bencaaa4d302005-06-07 14:58:41 +02008428 IPW_DEBUG_INFO("firmware data %p size %zd\n", fw->fw_entry->data,
James Ketrenosee8e3652005-09-14 09:47:29 -05008429 fw->fw_entry->size);
James Ketrenos2c86c272005-03-23 17:32:29 -06008430
8431 ipw2100_mod_firmware_load(fw);
8432
8433 return 0;
8434}
8435
Jiri Bencc4aee8c2005-08-25 20:04:43 -04008436static void ipw2100_release_firmware(struct ipw2100_priv *priv,
8437 struct ipw2100_fw *fw)
James Ketrenos2c86c272005-03-23 17:32:29 -06008438{
8439 fw->version = 0;
8440 if (fw->fw_entry)
8441 release_firmware(fw->fw_entry);
8442 fw->fw_entry = NULL;
8443}
8444
Jiri Bencc4aee8c2005-08-25 20:04:43 -04008445static int ipw2100_get_fwversion(struct ipw2100_priv *priv, char *buf,
8446 size_t max)
James Ketrenos2c86c272005-03-23 17:32:29 -06008447{
8448 char ver[MAX_FW_VERSION_LEN];
8449 u32 len = MAX_FW_VERSION_LEN;
8450 u32 tmp;
8451 int i;
8452 /* firmware version is an ascii string (max len of 14) */
James Ketrenosee8e3652005-09-14 09:47:29 -05008453 if (ipw2100_get_ordinal(priv, IPW_ORD_STAT_FW_VER_NUM, ver, &len))
James Ketrenos2c86c272005-03-23 17:32:29 -06008454 return -EIO;
8455 tmp = max;
8456 if (len >= max)
8457 len = max - 1;
8458 for (i = 0; i < len; i++)
8459 buf[i] = ver[i];
8460 buf[i] = '\0';
8461 return tmp;
8462}
8463
Jiri Bencc4aee8c2005-08-25 20:04:43 -04008464static int ipw2100_get_ucodeversion(struct ipw2100_priv *priv, char *buf,
8465 size_t max)
James Ketrenos2c86c272005-03-23 17:32:29 -06008466{
8467 u32 ver;
8468 u32 len = sizeof(ver);
8469 /* microcode version is a 32 bit integer */
James Ketrenosee8e3652005-09-14 09:47:29 -05008470 if (ipw2100_get_ordinal(priv, IPW_ORD_UCODE_VERSION, &ver, &len))
James Ketrenos2c86c272005-03-23 17:32:29 -06008471 return -EIO;
8472 return snprintf(buf, max, "%08X", ver);
8473}
8474
8475/*
8476 * On exit, the firmware will have been freed from the fw list
8477 */
James Ketrenosee8e3652005-09-14 09:47:29 -05008478static int ipw2100_fw_download(struct ipw2100_priv *priv, struct ipw2100_fw *fw)
James Ketrenos2c86c272005-03-23 17:32:29 -06008479{
8480 /* firmware is constructed of N contiguous entries, each entry is
8481 * structured as:
8482 *
8483 * offset sie desc
8484 * 0 4 address to write to
8485 * 4 2 length of data run
James Ketrenosee8e3652005-09-14 09:47:29 -05008486 * 6 length data
James Ketrenos2c86c272005-03-23 17:32:29 -06008487 */
8488 unsigned int addr;
8489 unsigned short len;
8490
8491 const unsigned char *firmware_data = fw->fw.data;
8492 unsigned int firmware_data_left = fw->fw.size;
8493
8494 while (firmware_data_left > 0) {
James Ketrenosee8e3652005-09-14 09:47:29 -05008495 addr = *(u32 *) (firmware_data);
8496 firmware_data += 4;
James Ketrenos2c86c272005-03-23 17:32:29 -06008497 firmware_data_left -= 4;
8498
James Ketrenosee8e3652005-09-14 09:47:29 -05008499 len = *(u16 *) (firmware_data);
8500 firmware_data += 2;
James Ketrenos2c86c272005-03-23 17:32:29 -06008501 firmware_data_left -= 2;
8502
8503 if (len > 32) {
Jiri Benc797b4f72005-08-25 20:03:27 -04008504 printk(KERN_ERR DRV_NAME ": "
James Ketrenos2c86c272005-03-23 17:32:29 -06008505 "Invalid firmware run-length of %d bytes\n",
8506 len);
8507 return -EINVAL;
8508 }
8509
8510 write_nic_memory(priv->net_dev, addr, len, firmware_data);
James Ketrenosee8e3652005-09-14 09:47:29 -05008511 firmware_data += len;
James Ketrenos2c86c272005-03-23 17:32:29 -06008512 firmware_data_left -= len;
8513 }
8514
8515 return 0;
8516}
8517
8518struct symbol_alive_response {
8519 u8 cmd_id;
8520 u8 seq_num;
8521 u8 ucode_rev;
8522 u8 eeprom_valid;
8523 u16 valid_flags;
8524 u8 IEEE_addr[6];
8525 u16 flags;
8526 u16 pcb_rev;
8527 u16 clock_settle_time; // 1us LSB
8528 u16 powerup_settle_time; // 1us LSB
8529 u16 hop_settle_time; // 1us LSB
8530 u8 date[3]; // month, day, year
8531 u8 time[2]; // hours, minutes
8532 u8 ucode_valid;
8533};
8534
Jiri Bencc4aee8c2005-08-25 20:04:43 -04008535static int ipw2100_ucode_download(struct ipw2100_priv *priv,
8536 struct ipw2100_fw *fw)
James Ketrenos2c86c272005-03-23 17:32:29 -06008537{
8538 struct net_device *dev = priv->net_dev;
8539 const unsigned char *microcode_data = fw->uc.data;
8540 unsigned int microcode_data_left = fw->uc.size;
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008541 void __iomem *reg = (void __iomem *)dev->base_addr;
James Ketrenos2c86c272005-03-23 17:32:29 -06008542
8543 struct symbol_alive_response response;
8544 int i, j;
8545 u8 data;
8546
8547 /* Symbol control */
8548 write_nic_word(dev, IPW2100_CONTROL_REG, 0x703);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008549 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008550 write_nic_word(dev, IPW2100_CONTROL_REG, 0x707);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008551 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008552
8553 /* HW config */
8554 write_nic_byte(dev, 0x210014, 0x72); /* fifo width =16 */
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008555 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008556 write_nic_byte(dev, 0x210014, 0x72); /* fifo width =16 */
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008557 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008558
8559 /* EN_CS_ACCESS bit to reset control store pointer */
8560 write_nic_byte(dev, 0x210000, 0x40);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008561 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008562 write_nic_byte(dev, 0x210000, 0x0);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008563 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008564 write_nic_byte(dev, 0x210000, 0x40);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008565 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008566
8567 /* copy microcode from buffer into Symbol */
8568
8569 while (microcode_data_left > 0) {
8570 write_nic_byte(dev, 0x210010, *microcode_data++);
8571 write_nic_byte(dev, 0x210010, *microcode_data++);
8572 microcode_data_left -= 2;
8573 }
8574
8575 /* EN_CS_ACCESS bit to reset the control store pointer */
8576 write_nic_byte(dev, 0x210000, 0x0);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008577 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008578
8579 /* Enable System (Reg 0)
8580 * first enable causes garbage in RX FIFO */
8581 write_nic_byte(dev, 0x210000, 0x0);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008582 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008583 write_nic_byte(dev, 0x210000, 0x80);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008584 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008585
8586 /* Reset External Baseband Reg */
8587 write_nic_word(dev, IPW2100_CONTROL_REG, 0x703);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008588 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008589 write_nic_word(dev, IPW2100_CONTROL_REG, 0x707);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008590 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008591
8592 /* HW Config (Reg 5) */
8593 write_nic_byte(dev, 0x210014, 0x72); // fifo width =16
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008594 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008595 write_nic_byte(dev, 0x210014, 0x72); // fifo width =16
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008596 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008597
8598 /* Enable System (Reg 0)
8599 * second enable should be OK */
8600 write_nic_byte(dev, 0x210000, 0x00); // clear enable system
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008601 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008602 write_nic_byte(dev, 0x210000, 0x80); // set enable system
8603
8604 /* check Symbol is enabled - upped this from 5 as it wasn't always
8605 * catching the update */
8606 for (i = 0; i < 10; i++) {
8607 udelay(10);
8608
8609 /* check Dino is enabled bit */
8610 read_nic_byte(dev, 0x210000, &data);
8611 if (data & 0x1)
8612 break;
8613 }
8614
8615 if (i == 10) {
Jiri Benc797b4f72005-08-25 20:03:27 -04008616 printk(KERN_ERR DRV_NAME ": %s: Error initializing Symbol\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06008617 dev->name);
8618 return -EIO;
8619 }
8620
8621 /* Get Symbol alive response */
8622 for (i = 0; i < 30; i++) {
8623 /* Read alive response structure */
8624 for (j = 0;
James Ketrenosee8e3652005-09-14 09:47:29 -05008625 j < (sizeof(struct symbol_alive_response) >> 1); j++)
8626 read_nic_word(dev, 0x210004, ((u16 *) & response) + j);
James Ketrenos2c86c272005-03-23 17:32:29 -06008627
James Ketrenosee8e3652005-09-14 09:47:29 -05008628 if ((response.cmd_id == 1) && (response.ucode_valid == 0x1))
James Ketrenos2c86c272005-03-23 17:32:29 -06008629 break;
8630 udelay(10);
8631 }
8632
8633 if (i == 30) {
James Ketrenosee8e3652005-09-14 09:47:29 -05008634 printk(KERN_ERR DRV_NAME
8635 ": %s: No response from Symbol - hw not alive\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06008636 dev->name);
James Ketrenosee8e3652005-09-14 09:47:29 -05008637 printk_buf(IPW_DL_ERROR, (u8 *) & response, sizeof(response));
James Ketrenos2c86c272005-03-23 17:32:29 -06008638 return -EIO;
8639 }
8640
8641 return 0;
8642}