blob: 335299366988dbba90ee33d2e3b8d65a7ee3a39e [file] [log] [blame]
James Ketrenos2c86c272005-03-23 17:32:29 -06001/******************************************************************************
2
Zhu Yi171e7b22006-02-15 07:17:56 +08003 Copyright(c) 2003 - 2006 Intel Corporation. All rights reserved.
James Ketrenos2c86c272005-03-23 17:32:29 -06004
5 This program is free software; you can redistribute it and/or modify it
6 under the terms of version 2 of the GNU General Public License as
7 published by the Free Software Foundation.
8
9 This program is distributed in the hope that it will be useful, but WITHOUT
10 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 more details.
13
14 You should have received a copy of the GNU General Public License along with
15 this program; if not, write to the Free Software Foundation, Inc., 59
16 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
18 The full GNU General Public License is included in this distribution in the
19 file called LICENSE.
20
21 Contact Information:
Reinette Chatrec1eb2c82009-08-21 13:34:26 -070022 Intel Linux Wireless <ilw@linux.intel.com>
James Ketrenos2c86c272005-03-23 17:32:29 -060023 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
24
25 Portions of this file are based on the sample_* files provided by Wireless
26 Extensions 0.26 package and copyright (c) 1997-2003 Jean Tourrilhes
27 <jt@hpl.hp.com>
28
29 Portions of this file are based on the Host AP project,
30 Copyright (c) 2001-2002, SSH Communications Security Corp and Jouni Malinen
Jouni Malinen85d32e72007-03-24 17:15:30 -070031 <j@w1.fi>
32 Copyright (c) 2002-2003, Jouni Malinen <j@w1.fi>
James Ketrenos2c86c272005-03-23 17:32:29 -060033
34 Portions of ipw2100_mod_firmware_load, ipw2100_do_mod_firmware_load, and
35 ipw2100_fw_load are loosely based on drivers/sound/sound_firmware.c
36 available in the 2.4.25 kernel sources, and are copyright (c) Alan Cox
37
38******************************************************************************/
39/*
40
41 Initial driver on which this is based was developed by Janusz Gorycki,
42 Maciej Urbaniak, and Maciej Sosnowski.
43
44 Promiscuous mode support added by Jacek Wysoczynski and Maciej Urbaniak.
45
46Theory of Operation
47
48Tx - Commands and Data
49
50Firmware and host share a circular queue of Transmit Buffer Descriptors (TBDs)
51Each TBD contains a pointer to the physical (dma_addr_t) address of data being
52sent to the firmware as well as the length of the data.
53
54The host writes to the TBD queue at the WRITE index. The WRITE index points
55to the _next_ packet to be written and is advanced when after the TBD has been
56filled.
57
58The firmware pulls from the TBD queue at the READ index. The READ index points
59to the currently being read entry, and is advanced once the firmware is
60done with a packet.
61
62When data is sent to the firmware, the first TBD is used to indicate to the
63firmware if a Command or Data is being sent. If it is Command, all of the
64command information is contained within the physical address referred to by the
65TBD. If it is Data, the first TBD indicates the type of data packet, number
Lucas De Marchi25985ed2011-03-30 22:57:33 -030066of fragments, etc. The next TBD then refers to the actual packet location.
James Ketrenos2c86c272005-03-23 17:32:29 -060067
68The Tx flow cycle is as follows:
69
701) ipw2100_tx() is called by kernel with SKB to transmit
712) Packet is move from the tx_free_list and appended to the transmit pending
72 list (tx_pend_list)
733) work is scheduled to move pending packets into the shared circular queue.
744) when placing packet in the circular queue, the incoming SKB is DMA mapped
75 to a physical address. That address is entered into a TBD. Two TBDs are
76 filled out. The first indicating a data packet, the second referring to the
77 actual payload data.
785) the packet is removed from tx_pend_list and placed on the end of the
79 firmware pending list (fw_pend_list)
806) firmware is notified that the WRITE index has
817) Once the firmware has processed the TBD, INTA is triggered.
828) For each Tx interrupt received from the firmware, the READ index is checked
83 to see which TBDs are done being processed.
849) For each TBD that has been processed, the ISR pulls the oldest packet
85 from the fw_pend_list.
8610)The packet structure contained in the fw_pend_list is then used
87 to unmap the DMA address and to free the SKB originally passed to the driver
88 from the kernel.
8911)The packet structure is placed onto the tx_free_list
90
91The above steps are the same for commands, only the msg_free_list/msg_pend_list
92are used instead of tx_free_list/tx_pend_list
93
94...
95
96Critical Sections / Locking :
97
98There are two locks utilized. The first is the low level lock (priv->low_lock)
99that protects the following:
100
101- Access to the Tx/Rx queue lists via priv->low_lock. The lists are as follows:
102
103 tx_free_list : Holds pre-allocated Tx buffers.
104 TAIL modified in __ipw2100_tx_process()
105 HEAD modified in ipw2100_tx()
106
107 tx_pend_list : Holds used Tx buffers waiting to go into the TBD ring
108 TAIL modified ipw2100_tx()
Jiri Benc19f7f742005-08-25 20:02:10 -0400109 HEAD modified by ipw2100_tx_send_data()
James Ketrenos2c86c272005-03-23 17:32:29 -0600110
111 msg_free_list : Holds pre-allocated Msg (Command) buffers
112 TAIL modified in __ipw2100_tx_process()
113 HEAD modified in ipw2100_hw_send_command()
114
115 msg_pend_list : Holds used Msg buffers waiting to go into the TBD ring
116 TAIL modified in ipw2100_hw_send_command()
Jiri Benc19f7f742005-08-25 20:02:10 -0400117 HEAD modified in ipw2100_tx_send_commands()
James Ketrenos2c86c272005-03-23 17:32:29 -0600118
119 The flow of data on the TX side is as follows:
120
121 MSG_FREE_LIST + COMMAND => MSG_PEND_LIST => TBD => MSG_FREE_LIST
122 TX_FREE_LIST + DATA => TX_PEND_LIST => TBD => TX_FREE_LIST
123
124 The methods that work on the TBD ring are protected via priv->low_lock.
125
126- The internal data state of the device itself
127- Access to the firmware read/write indexes for the BD queues
128 and associated logic
129
130All external entry functions are locked with the priv->action_lock to ensure
131that only one external action is invoked at a time.
132
133
134*/
135
136#include <linux/compiler.h>
James Ketrenos2c86c272005-03-23 17:32:29 -0600137#include <linux/errno.h>
138#include <linux/if_arp.h>
139#include <linux/in6.h>
140#include <linux/in.h>
141#include <linux/ip.h>
142#include <linux/kernel.h>
143#include <linux/kmod.h>
144#include <linux/module.h>
145#include <linux/netdevice.h>
146#include <linux/ethtool.h>
147#include <linux/pci.h>
Tobias Klauser05743d12005-06-20 14:28:40 -0700148#include <linux/dma-mapping.h>
James Ketrenos2c86c272005-03-23 17:32:29 -0600149#include <linux/proc_fs.h>
150#include <linux/skbuff.h>
151#include <asm/uaccess.h>
152#include <asm/io.h>
James Ketrenos2c86c272005-03-23 17:32:29 -0600153#include <linux/fs.h>
154#include <linux/mm.h>
155#include <linux/slab.h>
156#include <linux/unistd.h>
157#include <linux/stringify.h>
158#include <linux/tcp.h>
159#include <linux/types.h>
James Ketrenos2c86c272005-03-23 17:32:29 -0600160#include <linux/time.h>
161#include <linux/firmware.h>
162#include <linux/acpi.h>
163#include <linux/ctype.h>
Jean Pihete8db0be2011-08-25 15:35:03 +0200164#include <linux/pm_qos.h>
James Ketrenos2c86c272005-03-23 17:32:29 -0600165
John W. Linville9387b7c2008-09-30 20:59:05 -0400166#include <net/lib80211.h>
167
James Ketrenos2c86c272005-03-23 17:32:29 -0600168#include "ipw2100.h"
169
Zhu Yicc8279f2006-02-21 18:46:15 +0800170#define IPW2100_VERSION "git-1.2.2"
James Ketrenos2c86c272005-03-23 17:32:29 -0600171
172#define DRV_NAME "ipw2100"
173#define DRV_VERSION IPW2100_VERSION
174#define DRV_DESCRIPTION "Intel(R) PRO/Wireless 2100 Network Driver"
Zhu Yi171e7b22006-02-15 07:17:56 +0800175#define DRV_COPYRIGHT "Copyright(c) 2003-2006 Intel Corporation"
James Ketrenos2c86c272005-03-23 17:32:29 -0600176
Jean Pihetcc749982011-08-25 15:35:12 +0200177static struct pm_qos_request ipw2100_pm_qos_req;
Mark Grossed771342010-05-06 01:59:26 +0200178
James Ketrenos2c86c272005-03-23 17:32:29 -0600179/* Debugging stuff */
Brice Goglin0f52bf92005-12-01 01:41:46 -0800180#ifdef CONFIG_IPW2100_DEBUG
Robert P. J. Dayae800312007-01-31 02:39:40 -0500181#define IPW2100_RX_DEBUG /* Reception debugging */
James Ketrenos2c86c272005-03-23 17:32:29 -0600182#endif
183
184MODULE_DESCRIPTION(DRV_DESCRIPTION);
185MODULE_VERSION(DRV_VERSION);
186MODULE_AUTHOR(DRV_COPYRIGHT);
187MODULE_LICENSE("GPL");
188
189static int debug = 0;
Reinette Chatre21f8a732009-08-18 10:25:05 -0700190static int network_mode = 0;
James Ketrenos2c86c272005-03-23 17:32:29 -0600191static int channel = 0;
Tim Gardner5c7f9b72008-10-14 10:38:03 -0600192static int associate = 0;
James Ketrenos2c86c272005-03-23 17:32:29 -0600193static int disable = 0;
194#ifdef CONFIG_PM
195static struct ipw2100_fw ipw2100_firmware;
196#endif
197
198#include <linux/moduleparam.h>
199module_param(debug, int, 0444);
Reinette Chatre21f8a732009-08-18 10:25:05 -0700200module_param_named(mode, network_mode, int, 0444);
James Ketrenos2c86c272005-03-23 17:32:29 -0600201module_param(channel, int, 0444);
202module_param(associate, int, 0444);
203module_param(disable, int, 0444);
204
205MODULE_PARM_DESC(debug, "debug level");
206MODULE_PARM_DESC(mode, "network mode (0=BSS,1=IBSS,2=Monitor)");
207MODULE_PARM_DESC(channel, "channel");
Tim Gardner5c7f9b72008-10-14 10:38:03 -0600208MODULE_PARM_DESC(associate, "auto associate when scanning (default off)");
James Ketrenos2c86c272005-03-23 17:32:29 -0600209MODULE_PARM_DESC(disable, "manually disable the radio (default 0 [radio on])");
210
Jiri Bencc4aee8c2005-08-25 20:04:43 -0400211static u32 ipw2100_debug_level = IPW_DL_NONE;
212
Brice Goglin0f52bf92005-12-01 01:41:46 -0800213#ifdef CONFIG_IPW2100_DEBUG
Jiri Bencc4aee8c2005-08-25 20:04:43 -0400214#define IPW_DEBUG(level, message...) \
215do { \
216 if (ipw2100_debug_level & (level)) { \
217 printk(KERN_DEBUG "ipw2100: %c %s ", \
Harvey Harrisonc94c93d2008-07-28 23:01:34 -0700218 in_interrupt() ? 'I' : 'U', __func__); \
Jiri Bencc4aee8c2005-08-25 20:04:43 -0400219 printk(message); \
220 } \
221} while (0)
222#else
223#define IPW_DEBUG(level, message...) do {} while (0)
Brice Goglin0f52bf92005-12-01 01:41:46 -0800224#endif /* CONFIG_IPW2100_DEBUG */
James Ketrenos2c86c272005-03-23 17:32:29 -0600225
Brice Goglin0f52bf92005-12-01 01:41:46 -0800226#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -0600227static const char *command_types[] = {
228 "undefined",
James Ketrenosee8e3652005-09-14 09:47:29 -0500229 "unused", /* HOST_ATTENTION */
James Ketrenos2c86c272005-03-23 17:32:29 -0600230 "HOST_COMPLETE",
James Ketrenosee8e3652005-09-14 09:47:29 -0500231 "unused", /* SLEEP */
232 "unused", /* HOST_POWER_DOWN */
James Ketrenos2c86c272005-03-23 17:32:29 -0600233 "unused",
234 "SYSTEM_CONFIG",
James Ketrenosee8e3652005-09-14 09:47:29 -0500235 "unused", /* SET_IMR */
James Ketrenos2c86c272005-03-23 17:32:29 -0600236 "SSID",
237 "MANDATORY_BSSID",
238 "AUTHENTICATION_TYPE",
239 "ADAPTER_ADDRESS",
240 "PORT_TYPE",
241 "INTERNATIONAL_MODE",
242 "CHANNEL",
243 "RTS_THRESHOLD",
244 "FRAG_THRESHOLD",
245 "POWER_MODE",
246 "TX_RATES",
247 "BASIC_TX_RATES",
248 "WEP_KEY_INFO",
249 "unused",
250 "unused",
251 "unused",
252 "unused",
253 "WEP_KEY_INDEX",
254 "WEP_FLAGS",
255 "ADD_MULTICAST",
256 "CLEAR_ALL_MULTICAST",
257 "BEACON_INTERVAL",
258 "ATIM_WINDOW",
259 "CLEAR_STATISTICS",
260 "undefined",
261 "undefined",
262 "undefined",
263 "undefined",
264 "TX_POWER_INDEX",
265 "undefined",
266 "undefined",
267 "undefined",
268 "undefined",
269 "undefined",
270 "undefined",
271 "BROADCAST_SCAN",
272 "CARD_DISABLE",
273 "PREFERRED_BSSID",
274 "SET_SCAN_OPTIONS",
275 "SCAN_DWELL_TIME",
276 "SWEEP_TABLE",
277 "AP_OR_STATION_TABLE",
278 "GROUP_ORDINALS",
279 "SHORT_RETRY_LIMIT",
280 "LONG_RETRY_LIMIT",
James Ketrenosee8e3652005-09-14 09:47:29 -0500281 "unused", /* SAVE_CALIBRATION */
282 "unused", /* RESTORE_CALIBRATION */
James Ketrenos2c86c272005-03-23 17:32:29 -0600283 "undefined",
284 "undefined",
285 "undefined",
286 "HOST_PRE_POWER_DOWN",
James Ketrenosee8e3652005-09-14 09:47:29 -0500287 "unused", /* HOST_INTERRUPT_COALESCING */
James Ketrenos2c86c272005-03-23 17:32:29 -0600288 "undefined",
289 "CARD_DISABLE_PHY_OFF",
Jean Delvare96a95c12011-07-06 00:27:06 +0200290 "MSDU_TX_RATES",
James Ketrenos2c86c272005-03-23 17:32:29 -0600291 "undefined",
292 "SET_STATION_STAT_BITS",
293 "CLEAR_STATIONS_STAT_BITS",
294 "LEAP_ROGUE_MODE",
295 "SET_SECURITY_INFORMATION",
296 "DISASSOCIATION_BSSID",
297 "SET_WPA_ASS_IE"
298};
299#endif
300
Matthew Garrettc26409a2009-11-11 14:36:30 -0500301static const long ipw2100_frequencies[] = {
302 2412, 2417, 2422, 2427,
303 2432, 2437, 2442, 2447,
304 2452, 2457, 2462, 2467,
305 2472, 2484
306};
307
308#define FREQ_COUNT ARRAY_SIZE(ipw2100_frequencies)
309
Matthew Garrettc26409a2009-11-11 14:36:30 -0500310static struct ieee80211_rate ipw2100_bg_rates[] = {
311 { .bitrate = 10 },
312 { .bitrate = 20, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
313 { .bitrate = 55, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
314 { .bitrate = 110, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
315};
316
Stanislav Yakovlev4d94c152012-02-09 20:23:52 -0500317#define RATE_COUNT ARRAY_SIZE(ipw2100_bg_rates)
Matthew Garrettc26409a2009-11-11 14:36:30 -0500318
James Ketrenos2c86c272005-03-23 17:32:29 -0600319/* Pre-decl until we get the code solid and then we can clean it up */
Jiri Benc19f7f742005-08-25 20:02:10 -0400320static void ipw2100_tx_send_commands(struct ipw2100_priv *priv);
321static void ipw2100_tx_send_data(struct ipw2100_priv *priv);
James Ketrenos2c86c272005-03-23 17:32:29 -0600322static int ipw2100_adapter_setup(struct ipw2100_priv *priv);
323
324static void ipw2100_queues_initialize(struct ipw2100_priv *priv);
325static void ipw2100_queues_free(struct ipw2100_priv *priv);
326static int ipw2100_queues_allocate(struct ipw2100_priv *priv);
327
Jiri Bencc4aee8c2005-08-25 20:04:43 -0400328static int ipw2100_fw_download(struct ipw2100_priv *priv,
329 struct ipw2100_fw *fw);
330static int ipw2100_get_firmware(struct ipw2100_priv *priv,
331 struct ipw2100_fw *fw);
332static int ipw2100_get_fwversion(struct ipw2100_priv *priv, char *buf,
333 size_t max);
334static int ipw2100_get_ucodeversion(struct ipw2100_priv *priv, char *buf,
335 size_t max);
336static void ipw2100_release_firmware(struct ipw2100_priv *priv,
337 struct ipw2100_fw *fw);
338static int ipw2100_ucode_download(struct ipw2100_priv *priv,
339 struct ipw2100_fw *fw);
David Howellsc4028952006-11-22 14:57:56 +0000340static void ipw2100_wx_event_work(struct work_struct *work);
James Ketrenosee8e3652005-09-14 09:47:29 -0500341static struct iw_statistics *ipw2100_wx_wireless_stats(struct net_device *dev);
Jiri Bencc4aee8c2005-08-25 20:04:43 -0400342static struct iw_handler_def ipw2100_wx_handler_def;
343
James Ketrenosee8e3652005-09-14 09:47:29 -0500344static inline void read_register(struct net_device *dev, u32 reg, u32 * val)
James Ketrenos2c86c272005-03-23 17:32:29 -0600345{
Francois Romieu9b717072012-03-24 11:37:16 +0100346 struct ipw2100_priv *priv = libipw_priv(dev);
347
348 *val = ioread32(priv->ioaddr + reg);
James Ketrenos2c86c272005-03-23 17:32:29 -0600349 IPW_DEBUG_IO("r: 0x%08X => 0x%08X\n", reg, *val);
350}
351
352static inline void write_register(struct net_device *dev, u32 reg, u32 val)
353{
Francois Romieu9b717072012-03-24 11:37:16 +0100354 struct ipw2100_priv *priv = libipw_priv(dev);
355
356 iowrite32(val, priv->ioaddr + reg);
James Ketrenos2c86c272005-03-23 17:32:29 -0600357 IPW_DEBUG_IO("w: 0x%08X <= 0x%08X\n", reg, val);
358}
359
James Ketrenosee8e3652005-09-14 09:47:29 -0500360static inline void read_register_word(struct net_device *dev, u32 reg,
361 u16 * val)
James Ketrenos2c86c272005-03-23 17:32:29 -0600362{
Francois Romieu9b717072012-03-24 11:37:16 +0100363 struct ipw2100_priv *priv = libipw_priv(dev);
364
365 *val = ioread16(priv->ioaddr + reg);
James Ketrenos2c86c272005-03-23 17:32:29 -0600366 IPW_DEBUG_IO("r: 0x%08X => %04X\n", reg, *val);
367}
368
James Ketrenosee8e3652005-09-14 09:47:29 -0500369static inline void read_register_byte(struct net_device *dev, u32 reg, u8 * val)
James Ketrenos2c86c272005-03-23 17:32:29 -0600370{
Francois Romieu9b717072012-03-24 11:37:16 +0100371 struct ipw2100_priv *priv = libipw_priv(dev);
372
373 *val = ioread8(priv->ioaddr + reg);
James Ketrenos2c86c272005-03-23 17:32:29 -0600374 IPW_DEBUG_IO("r: 0x%08X => %02X\n", reg, *val);
375}
376
377static inline void write_register_word(struct net_device *dev, u32 reg, u16 val)
378{
Francois Romieu9b717072012-03-24 11:37:16 +0100379 struct ipw2100_priv *priv = libipw_priv(dev);
380
381 iowrite16(val, priv->ioaddr + reg);
James Ketrenos2c86c272005-03-23 17:32:29 -0600382 IPW_DEBUG_IO("w: 0x%08X <= %04X\n", reg, val);
383}
384
James Ketrenos2c86c272005-03-23 17:32:29 -0600385static inline void write_register_byte(struct net_device *dev, u32 reg, u8 val)
386{
Francois Romieu9b717072012-03-24 11:37:16 +0100387 struct ipw2100_priv *priv = libipw_priv(dev);
388
389 iowrite8(val, priv->ioaddr + reg);
James Ketrenos2c86c272005-03-23 17:32:29 -0600390 IPW_DEBUG_IO("w: 0x%08X =< %02X\n", reg, val);
391}
392
James Ketrenosee8e3652005-09-14 09:47:29 -0500393static inline void read_nic_dword(struct net_device *dev, u32 addr, u32 * val)
James Ketrenos2c86c272005-03-23 17:32:29 -0600394{
395 write_register(dev, IPW_REG_INDIRECT_ACCESS_ADDRESS,
396 addr & IPW_REG_INDIRECT_ADDR_MASK);
397 read_register(dev, IPW_REG_INDIRECT_ACCESS_DATA, val);
398}
399
400static inline void write_nic_dword(struct net_device *dev, u32 addr, u32 val)
401{
402 write_register(dev, IPW_REG_INDIRECT_ACCESS_ADDRESS,
403 addr & IPW_REG_INDIRECT_ADDR_MASK);
404 write_register(dev, IPW_REG_INDIRECT_ACCESS_DATA, val);
405}
406
James Ketrenosee8e3652005-09-14 09:47:29 -0500407static inline void read_nic_word(struct net_device *dev, u32 addr, u16 * val)
James Ketrenos2c86c272005-03-23 17:32:29 -0600408{
409 write_register(dev, IPW_REG_INDIRECT_ACCESS_ADDRESS,
410 addr & IPW_REG_INDIRECT_ADDR_MASK);
411 read_register_word(dev, IPW_REG_INDIRECT_ACCESS_DATA, val);
412}
413
414static inline void write_nic_word(struct net_device *dev, u32 addr, u16 val)
415{
416 write_register(dev, IPW_REG_INDIRECT_ACCESS_ADDRESS,
417 addr & IPW_REG_INDIRECT_ADDR_MASK);
418 write_register_word(dev, IPW_REG_INDIRECT_ACCESS_DATA, val);
419}
420
James Ketrenosee8e3652005-09-14 09:47:29 -0500421static inline void read_nic_byte(struct net_device *dev, u32 addr, u8 * val)
James Ketrenos2c86c272005-03-23 17:32:29 -0600422{
423 write_register(dev, IPW_REG_INDIRECT_ACCESS_ADDRESS,
424 addr & IPW_REG_INDIRECT_ADDR_MASK);
425 read_register_byte(dev, IPW_REG_INDIRECT_ACCESS_DATA, val);
426}
427
428static inline void write_nic_byte(struct net_device *dev, u32 addr, u8 val)
429{
430 write_register(dev, IPW_REG_INDIRECT_ACCESS_ADDRESS,
431 addr & IPW_REG_INDIRECT_ADDR_MASK);
432 write_register_byte(dev, IPW_REG_INDIRECT_ACCESS_DATA, val);
433}
434
435static inline void write_nic_auto_inc_address(struct net_device *dev, u32 addr)
436{
437 write_register(dev, IPW_REG_AUTOINCREMENT_ADDRESS,
438 addr & IPW_REG_INDIRECT_ADDR_MASK);
439}
440
441static inline void write_nic_dword_auto_inc(struct net_device *dev, u32 val)
442{
443 write_register(dev, IPW_REG_AUTOINCREMENT_DATA, val);
444}
445
Arjan van de Ven858119e2006-01-14 13:20:43 -0800446static void write_nic_memory(struct net_device *dev, u32 addr, u32 len,
James Ketrenosee8e3652005-09-14 09:47:29 -0500447 const u8 * buf)
James Ketrenos2c86c272005-03-23 17:32:29 -0600448{
449 u32 aligned_addr;
450 u32 aligned_len;
451 u32 dif_len;
452 u32 i;
453
454 /* read first nibble byte by byte */
455 aligned_addr = addr & (~0x3);
456 dif_len = addr - aligned_addr;
457 if (dif_len) {
458 /* Start reading at aligned_addr + dif_len */
459 write_register(dev, IPW_REG_INDIRECT_ACCESS_ADDRESS,
460 aligned_addr);
461 for (i = dif_len; i < 4; i++, buf++)
James Ketrenosee8e3652005-09-14 09:47:29 -0500462 write_register_byte(dev,
463 IPW_REG_INDIRECT_ACCESS_DATA + i,
464 *buf);
James Ketrenos2c86c272005-03-23 17:32:29 -0600465
466 len -= dif_len;
467 aligned_addr += 4;
468 }
469
470 /* read DWs through autoincrement registers */
James Ketrenosee8e3652005-09-14 09:47:29 -0500471 write_register(dev, IPW_REG_AUTOINCREMENT_ADDRESS, aligned_addr);
James Ketrenos2c86c272005-03-23 17:32:29 -0600472 aligned_len = len & (~0x3);
473 for (i = 0; i < aligned_len; i += 4, buf += 4, aligned_addr += 4)
James Ketrenosee8e3652005-09-14 09:47:29 -0500474 write_register(dev, IPW_REG_AUTOINCREMENT_DATA, *(u32 *) buf);
James Ketrenos2c86c272005-03-23 17:32:29 -0600475
476 /* copy the last nibble */
477 dif_len = len - aligned_len;
478 write_register(dev, IPW_REG_INDIRECT_ACCESS_ADDRESS, aligned_addr);
479 for (i = 0; i < dif_len; i++, buf++)
James Ketrenosee8e3652005-09-14 09:47:29 -0500480 write_register_byte(dev, IPW_REG_INDIRECT_ACCESS_DATA + i,
481 *buf);
James Ketrenos2c86c272005-03-23 17:32:29 -0600482}
483
Arjan van de Ven858119e2006-01-14 13:20:43 -0800484static void read_nic_memory(struct net_device *dev, u32 addr, u32 len,
James Ketrenosee8e3652005-09-14 09:47:29 -0500485 u8 * buf)
James Ketrenos2c86c272005-03-23 17:32:29 -0600486{
487 u32 aligned_addr;
488 u32 aligned_len;
489 u32 dif_len;
490 u32 i;
491
492 /* read first nibble byte by byte */
493 aligned_addr = addr & (~0x3);
494 dif_len = addr - aligned_addr;
495 if (dif_len) {
496 /* Start reading at aligned_addr + dif_len */
497 write_register(dev, IPW_REG_INDIRECT_ACCESS_ADDRESS,
498 aligned_addr);
499 for (i = dif_len; i < 4; i++, buf++)
James Ketrenosee8e3652005-09-14 09:47:29 -0500500 read_register_byte(dev,
501 IPW_REG_INDIRECT_ACCESS_DATA + i,
502 buf);
James Ketrenos2c86c272005-03-23 17:32:29 -0600503
504 len -= dif_len;
505 aligned_addr += 4;
506 }
507
508 /* read DWs through autoincrement registers */
James Ketrenosee8e3652005-09-14 09:47:29 -0500509 write_register(dev, IPW_REG_AUTOINCREMENT_ADDRESS, aligned_addr);
James Ketrenos2c86c272005-03-23 17:32:29 -0600510 aligned_len = len & (~0x3);
511 for (i = 0; i < aligned_len; i += 4, buf += 4, aligned_addr += 4)
James Ketrenosee8e3652005-09-14 09:47:29 -0500512 read_register(dev, IPW_REG_AUTOINCREMENT_DATA, (u32 *) buf);
James Ketrenos2c86c272005-03-23 17:32:29 -0600513
514 /* copy the last nibble */
515 dif_len = len - aligned_len;
James Ketrenosee8e3652005-09-14 09:47:29 -0500516 write_register(dev, IPW_REG_INDIRECT_ACCESS_ADDRESS, aligned_addr);
James Ketrenos2c86c272005-03-23 17:32:29 -0600517 for (i = 0; i < dif_len; i++, buf++)
James Ketrenosee8e3652005-09-14 09:47:29 -0500518 read_register_byte(dev, IPW_REG_INDIRECT_ACCESS_DATA + i, buf);
James Ketrenos2c86c272005-03-23 17:32:29 -0600519}
520
Francois Romieu9b717072012-03-24 11:37:16 +0100521static bool ipw2100_hw_is_adapter_in_system(struct net_device *dev)
James Ketrenos2c86c272005-03-23 17:32:29 -0600522{
Francois Romieu9b717072012-03-24 11:37:16 +0100523 u32 dbg;
524
525 read_register(dev, IPW_REG_DOA_DEBUG_AREA_START, &dbg);
526
527 return dbg == IPW_DATA_DOA_DEBUG_VALUE;
James Ketrenos2c86c272005-03-23 17:32:29 -0600528}
529
Jiri Bencc4aee8c2005-08-25 20:04:43 -0400530static int ipw2100_get_ordinal(struct ipw2100_priv *priv, u32 ord,
James Ketrenosee8e3652005-09-14 09:47:29 -0500531 void *val, u32 * len)
James Ketrenos2c86c272005-03-23 17:32:29 -0600532{
533 struct ipw2100_ordinals *ordinals = &priv->ordinals;
534 u32 addr;
535 u32 field_info;
536 u16 field_len;
537 u16 field_count;
538 u32 total_length;
539
540 if (ordinals->table1_addr == 0) {
Jiri Benc797b4f72005-08-25 20:03:27 -0400541 printk(KERN_WARNING DRV_NAME ": attempt to use fw ordinals "
James Ketrenos2c86c272005-03-23 17:32:29 -0600542 "before they have been loaded.\n");
543 return -EINVAL;
544 }
545
546 if (IS_ORDINAL_TABLE_ONE(ordinals, ord)) {
547 if (*len < IPW_ORD_TAB_1_ENTRY_SIZE) {
548 *len = IPW_ORD_TAB_1_ENTRY_SIZE;
549
Jiri Benc797b4f72005-08-25 20:03:27 -0400550 printk(KERN_WARNING DRV_NAME
Jiri Bencaaa4d302005-06-07 14:58:41 +0200551 ": ordinal buffer length too small, need %zd\n",
James Ketrenos2c86c272005-03-23 17:32:29 -0600552 IPW_ORD_TAB_1_ENTRY_SIZE);
553
554 return -EINVAL;
555 }
556
James Ketrenosee8e3652005-09-14 09:47:29 -0500557 read_nic_dword(priv->net_dev,
558 ordinals->table1_addr + (ord << 2), &addr);
James Ketrenos2c86c272005-03-23 17:32:29 -0600559 read_nic_dword(priv->net_dev, addr, val);
560
561 *len = IPW_ORD_TAB_1_ENTRY_SIZE;
562
563 return 0;
564 }
565
566 if (IS_ORDINAL_TABLE_TWO(ordinals, ord)) {
567
568 ord -= IPW_START_ORD_TAB_2;
569
570 /* get the address of statistic */
James Ketrenosee8e3652005-09-14 09:47:29 -0500571 read_nic_dword(priv->net_dev,
572 ordinals->table2_addr + (ord << 3), &addr);
James Ketrenos2c86c272005-03-23 17:32:29 -0600573
574 /* get the second DW of statistics ;
575 * two 16-bit words - first is length, second is count */
576 read_nic_dword(priv->net_dev,
577 ordinals->table2_addr + (ord << 3) + sizeof(u32),
578 &field_info);
579
580 /* get each entry length */
James Ketrenosee8e3652005-09-14 09:47:29 -0500581 field_len = *((u16 *) & field_info);
James Ketrenos2c86c272005-03-23 17:32:29 -0600582
583 /* get number of entries */
James Ketrenosee8e3652005-09-14 09:47:29 -0500584 field_count = *(((u16 *) & field_info) + 1);
James Ketrenos2c86c272005-03-23 17:32:29 -0600585
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200586 /* abort if no enough memory */
James Ketrenos2c86c272005-03-23 17:32:29 -0600587 total_length = field_len * field_count;
588 if (total_length > *len) {
589 *len = total_length;
590 return -EINVAL;
591 }
592
593 *len = total_length;
594 if (!total_length)
595 return 0;
596
597 /* read the ordinal data from the SRAM */
598 read_nic_memory(priv->net_dev, addr, total_length, val);
599
600 return 0;
601 }
602
Jiri Benc797b4f72005-08-25 20:03:27 -0400603 printk(KERN_WARNING DRV_NAME ": ordinal %d neither in table 1 nor "
James Ketrenos2c86c272005-03-23 17:32:29 -0600604 "in table 2\n", ord);
605
606 return -EINVAL;
607}
608
James Ketrenosee8e3652005-09-14 09:47:29 -0500609static int ipw2100_set_ordinal(struct ipw2100_priv *priv, u32 ord, u32 * val,
610 u32 * len)
James Ketrenos2c86c272005-03-23 17:32:29 -0600611{
612 struct ipw2100_ordinals *ordinals = &priv->ordinals;
613 u32 addr;
614
615 if (IS_ORDINAL_TABLE_ONE(ordinals, ord)) {
616 if (*len != IPW_ORD_TAB_1_ENTRY_SIZE) {
617 *len = IPW_ORD_TAB_1_ENTRY_SIZE;
618 IPW_DEBUG_INFO("wrong size\n");
619 return -EINVAL;
620 }
621
James Ketrenosee8e3652005-09-14 09:47:29 -0500622 read_nic_dword(priv->net_dev,
623 ordinals->table1_addr + (ord << 2), &addr);
James Ketrenos2c86c272005-03-23 17:32:29 -0600624
625 write_nic_dword(priv->net_dev, addr, *val);
626
627 *len = IPW_ORD_TAB_1_ENTRY_SIZE;
628
629 return 0;
630 }
631
632 IPW_DEBUG_INFO("wrong table\n");
633 if (IS_ORDINAL_TABLE_TWO(ordinals, ord))
634 return -EINVAL;
635
636 return -EINVAL;
637}
638
639static char *snprint_line(char *buf, size_t count,
James Ketrenosee8e3652005-09-14 09:47:29 -0500640 const u8 * data, u32 len, u32 ofs)
James Ketrenos2c86c272005-03-23 17:32:29 -0600641{
642 int out, i, j, l;
643 char c;
644
645 out = snprintf(buf, count, "%08X", ofs);
646
647 for (l = 0, i = 0; i < 2; i++) {
648 out += snprintf(buf + out, count - out, " ");
649 for (j = 0; j < 8 && l < len; j++, l++)
650 out += snprintf(buf + out, count - out, "%02X ",
651 data[(i * 8 + j)]);
652 for (; j < 8; j++)
653 out += snprintf(buf + out, count - out, " ");
654 }
655
656 out += snprintf(buf + out, count - out, " ");
657 for (l = 0, i = 0; i < 2; i++) {
658 out += snprintf(buf + out, count - out, " ");
659 for (j = 0; j < 8 && l < len; j++, l++) {
660 c = data[(i * 8 + j)];
661 if (!isascii(c) || !isprint(c))
662 c = '.';
663
664 out += snprintf(buf + out, count - out, "%c", c);
665 }
666
667 for (; j < 8; j++)
668 out += snprintf(buf + out, count - out, " ");
669 }
670
671 return buf;
672}
673
James Ketrenosee8e3652005-09-14 09:47:29 -0500674static void printk_buf(int level, const u8 * data, u32 len)
James Ketrenos2c86c272005-03-23 17:32:29 -0600675{
676 char line[81];
677 u32 ofs = 0;
678 if (!(ipw2100_debug_level & level))
679 return;
680
681 while (len) {
682 printk(KERN_DEBUG "%s\n",
683 snprint_line(line, sizeof(line), &data[ofs],
684 min(len, 16U), ofs));
685 ofs += 16;
686 len -= min(len, 16U);
687 }
688}
689
James Ketrenos2c86c272005-03-23 17:32:29 -0600690#define MAX_RESET_BACKOFF 10
691
Arjan van de Ven858119e2006-01-14 13:20:43 -0800692static void schedule_reset(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -0600693{
694 unsigned long now = get_seconds();
695
696 /* If we haven't received a reset request within the backoff period,
697 * then we can reset the backoff interval so this reset occurs
698 * immediately */
699 if (priv->reset_backoff &&
700 (now - priv->last_reset > priv->reset_backoff))
701 priv->reset_backoff = 0;
702
703 priv->last_reset = get_seconds();
704
705 if (!(priv->status & STATUS_RESET_PENDING)) {
706 IPW_DEBUG_INFO("%s: Scheduling firmware restart (%ds).\n",
707 priv->net_dev->name, priv->reset_backoff);
708 netif_carrier_off(priv->net_dev);
709 netif_stop_queue(priv->net_dev);
710 priv->status |= STATUS_RESET_PENDING;
711 if (priv->reset_backoff)
Tejun Heobcb6d912011-01-26 12:12:50 +0100712 schedule_delayed_work(&priv->reset_work,
713 priv->reset_backoff * HZ);
James Ketrenos2c86c272005-03-23 17:32:29 -0600714 else
Tejun Heobcb6d912011-01-26 12:12:50 +0100715 schedule_delayed_work(&priv->reset_work, 0);
James Ketrenos2c86c272005-03-23 17:32:29 -0600716
717 if (priv->reset_backoff < MAX_RESET_BACKOFF)
718 priv->reset_backoff++;
719
720 wake_up_interruptible(&priv->wait_command_queue);
721 } else
722 IPW_DEBUG_INFO("%s: Firmware restart already in progress.\n",
723 priv->net_dev->name);
724
725}
726
727#define HOST_COMPLETE_TIMEOUT (2 * HZ)
728static int ipw2100_hw_send_command(struct ipw2100_priv *priv,
James Ketrenosee8e3652005-09-14 09:47:29 -0500729 struct host_command *cmd)
James Ketrenos2c86c272005-03-23 17:32:29 -0600730{
731 struct list_head *element;
732 struct ipw2100_tx_packet *packet;
733 unsigned long flags;
734 int err = 0;
735
736 IPW_DEBUG_HC("Sending %s command (#%d), %d bytes\n",
737 command_types[cmd->host_command], cmd->host_command,
738 cmd->host_command_length);
James Ketrenosee8e3652005-09-14 09:47:29 -0500739 printk_buf(IPW_DL_HC, (u8 *) cmd->host_command_parameters,
James Ketrenos2c86c272005-03-23 17:32:29 -0600740 cmd->host_command_length);
741
742 spin_lock_irqsave(&priv->low_lock, flags);
743
744 if (priv->fatal_error) {
James Ketrenosee8e3652005-09-14 09:47:29 -0500745 IPW_DEBUG_INFO
746 ("Attempt to send command while hardware in fatal error condition.\n");
James Ketrenos2c86c272005-03-23 17:32:29 -0600747 err = -EIO;
748 goto fail_unlock;
749 }
750
751 if (!(priv->status & STATUS_RUNNING)) {
James Ketrenosee8e3652005-09-14 09:47:29 -0500752 IPW_DEBUG_INFO
753 ("Attempt to send command while hardware is not running.\n");
James Ketrenos2c86c272005-03-23 17:32:29 -0600754 err = -EIO;
755 goto fail_unlock;
756 }
757
758 if (priv->status & STATUS_CMD_ACTIVE) {
James Ketrenosee8e3652005-09-14 09:47:29 -0500759 IPW_DEBUG_INFO
760 ("Attempt to send command while another command is pending.\n");
James Ketrenos2c86c272005-03-23 17:32:29 -0600761 err = -EBUSY;
762 goto fail_unlock;
763 }
764
765 if (list_empty(&priv->msg_free_list)) {
766 IPW_DEBUG_INFO("no available msg buffers\n");
767 goto fail_unlock;
768 }
769
770 priv->status |= STATUS_CMD_ACTIVE;
771 priv->messages_sent++;
772
773 element = priv->msg_free_list.next;
774
775 packet = list_entry(element, struct ipw2100_tx_packet, list);
776 packet->jiffy_start = jiffies;
777
778 /* initialize the firmware command packet */
779 packet->info.c_struct.cmd->host_command_reg = cmd->host_command;
780 packet->info.c_struct.cmd->host_command_reg1 = cmd->host_command1;
James Ketrenosee8e3652005-09-14 09:47:29 -0500781 packet->info.c_struct.cmd->host_command_len_reg =
782 cmd->host_command_length;
James Ketrenos2c86c272005-03-23 17:32:29 -0600783 packet->info.c_struct.cmd->sequence = cmd->host_command_sequence;
784
785 memcpy(packet->info.c_struct.cmd->host_command_params_reg,
786 cmd->host_command_parameters,
787 sizeof(packet->info.c_struct.cmd->host_command_params_reg));
788
789 list_del(element);
790 DEC_STAT(&priv->msg_free_stat);
791
792 list_add_tail(element, &priv->msg_pend_list);
793 INC_STAT(&priv->msg_pend_stat);
794
Jiri Benc19f7f742005-08-25 20:02:10 -0400795 ipw2100_tx_send_commands(priv);
796 ipw2100_tx_send_data(priv);
James Ketrenos2c86c272005-03-23 17:32:29 -0600797
798 spin_unlock_irqrestore(&priv->low_lock, flags);
799
800 /*
801 * We must wait for this command to complete before another
802 * command can be sent... but if we wait more than 3 seconds
803 * then there is a problem.
804 */
805
James Ketrenosee8e3652005-09-14 09:47:29 -0500806 err =
807 wait_event_interruptible_timeout(priv->wait_command_queue,
808 !(priv->
809 status & STATUS_CMD_ACTIVE),
810 HOST_COMPLETE_TIMEOUT);
James Ketrenos2c86c272005-03-23 17:32:29 -0600811
812 if (err == 0) {
813 IPW_DEBUG_INFO("Command completion failed out after %dms.\n",
James Ketrenos82328352005-08-24 22:33:31 -0500814 1000 * (HOST_COMPLETE_TIMEOUT / HZ));
James Ketrenos2c86c272005-03-23 17:32:29 -0600815 priv->fatal_error = IPW2100_ERR_MSG_TIMEOUT;
816 priv->status &= ~STATUS_CMD_ACTIVE;
817 schedule_reset(priv);
818 return -EIO;
819 }
820
821 if (priv->fatal_error) {
Jiri Benc797b4f72005-08-25 20:03:27 -0400822 printk(KERN_WARNING DRV_NAME ": %s: firmware fatal error\n",
James Ketrenos2c86c272005-03-23 17:32:29 -0600823 priv->net_dev->name);
824 return -EIO;
825 }
826
827 /* !!!!! HACK TEST !!!!!
828 * When lots of debug trace statements are enabled, the driver
829 * doesn't seem to have as many firmware restart cycles...
830 *
831 * As a test, we're sticking in a 1/100s delay here */
Nishanth Aravamudan3173c892005-09-11 02:09:55 -0700832 schedule_timeout_uninterruptible(msecs_to_jiffies(10));
James Ketrenos2c86c272005-03-23 17:32:29 -0600833
834 return 0;
835
James Ketrenosee8e3652005-09-14 09:47:29 -0500836 fail_unlock:
James Ketrenos2c86c272005-03-23 17:32:29 -0600837 spin_unlock_irqrestore(&priv->low_lock, flags);
838
839 return err;
840}
841
James Ketrenos2c86c272005-03-23 17:32:29 -0600842/*
843 * Verify the values and data access of the hardware
844 * No locks needed or used. No functions called.
845 */
846static int ipw2100_verify(struct ipw2100_priv *priv)
847{
848 u32 data1, data2;
849 u32 address;
850
851 u32 val1 = 0x76543210;
852 u32 val2 = 0xFEDCBA98;
853
854 /* Domain 0 check - all values should be DOA_DEBUG */
855 for (address = IPW_REG_DOA_DEBUG_AREA_START;
James Ketrenosee8e3652005-09-14 09:47:29 -0500856 address < IPW_REG_DOA_DEBUG_AREA_END; address += sizeof(u32)) {
James Ketrenos2c86c272005-03-23 17:32:29 -0600857 read_register(priv->net_dev, address, &data1);
858 if (data1 != IPW_DATA_DOA_DEBUG_VALUE)
859 return -EIO;
860 }
861
862 /* Domain 1 check - use arbitrary read/write compare */
863 for (address = 0; address < 5; address++) {
864 /* The memory area is not used now */
865 write_register(priv->net_dev, IPW_REG_DOMAIN_1_OFFSET + 0x32,
866 val1);
867 write_register(priv->net_dev, IPW_REG_DOMAIN_1_OFFSET + 0x36,
868 val2);
869 read_register(priv->net_dev, IPW_REG_DOMAIN_1_OFFSET + 0x32,
870 &data1);
871 read_register(priv->net_dev, IPW_REG_DOMAIN_1_OFFSET + 0x36,
872 &data2);
873 if (val1 == data1 && val2 == data2)
874 return 0;
875 }
876
877 return -EIO;
878}
879
880/*
881 *
882 * Loop until the CARD_DISABLED bit is the same value as the
883 * supplied parameter
884 *
885 * TODO: See if it would be more efficient to do a wait/wake
886 * cycle and have the completion event trigger the wakeup
887 *
888 */
889#define IPW_CARD_DISABLE_COMPLETE_WAIT 100 // 100 milli
890static int ipw2100_wait_for_card_state(struct ipw2100_priv *priv, int state)
891{
892 int i;
893 u32 card_state;
894 u32 len = sizeof(card_state);
895 int err;
896
897 for (i = 0; i <= IPW_CARD_DISABLE_COMPLETE_WAIT * 1000; i += 50) {
898 err = ipw2100_get_ordinal(priv, IPW_ORD_CARD_DISABLED,
899 &card_state, &len);
900 if (err) {
901 IPW_DEBUG_INFO("Query of CARD_DISABLED ordinal "
902 "failed.\n");
903 return 0;
904 }
905
906 /* We'll break out if either the HW state says it is
907 * in the state we want, or if HOST_COMPLETE command
908 * finishes */
909 if ((card_state == state) ||
910 ((priv->status & STATUS_ENABLED) ?
911 IPW_HW_STATE_ENABLED : IPW_HW_STATE_DISABLED) == state) {
912 if (state == IPW_HW_STATE_ENABLED)
913 priv->status |= STATUS_ENABLED;
914 else
915 priv->status &= ~STATUS_ENABLED;
916
917 return 0;
918 }
919
920 udelay(50);
921 }
922
923 IPW_DEBUG_INFO("ipw2100_wait_for_card_state to %s state timed out\n",
924 state ? "DISABLED" : "ENABLED");
925 return -EIO;
926}
927
James Ketrenos2c86c272005-03-23 17:32:29 -0600928/*********************************************************************
929 Procedure : sw_reset_and_clock
930 Purpose : Asserts s/w reset, asserts clock initialization
931 and waits for clock stabilization
932 ********************************************************************/
933static int sw_reset_and_clock(struct ipw2100_priv *priv)
934{
935 int i;
936 u32 r;
937
938 // assert s/w reset
939 write_register(priv->net_dev, IPW_REG_RESET_REG,
940 IPW_AUX_HOST_RESET_REG_SW_RESET);
941
942 // wait for clock stabilization
943 for (i = 0; i < 1000; i++) {
944 udelay(IPW_WAIT_RESET_ARC_COMPLETE_DELAY);
945
946 // check clock ready bit
947 read_register(priv->net_dev, IPW_REG_RESET_REG, &r);
948 if (r & IPW_AUX_HOST_RESET_REG_PRINCETON_RESET)
949 break;
950 }
951
952 if (i == 1000)
953 return -EIO; // TODO: better error value
954
955 /* set "initialization complete" bit to move adapter to
956 * D0 state */
957 write_register(priv->net_dev, IPW_REG_GP_CNTRL,
958 IPW_AUX_HOST_GP_CNTRL_BIT_INIT_DONE);
959
960 /* wait for clock stabilization */
961 for (i = 0; i < 10000; i++) {
962 udelay(IPW_WAIT_CLOCK_STABILIZATION_DELAY * 4);
963
964 /* check clock ready bit */
965 read_register(priv->net_dev, IPW_REG_GP_CNTRL, &r);
966 if (r & IPW_AUX_HOST_GP_CNTRL_BIT_CLOCK_READY)
967 break;
968 }
969
970 if (i == 10000)
971 return -EIO; /* TODO: better error value */
972
James Ketrenos2c86c272005-03-23 17:32:29 -0600973 /* set D0 standby bit */
974 read_register(priv->net_dev, IPW_REG_GP_CNTRL, &r);
975 write_register(priv->net_dev, IPW_REG_GP_CNTRL,
976 r | IPW_AUX_HOST_GP_CNTRL_BIT_HOST_ALLOWS_STANDBY);
James Ketrenos2c86c272005-03-23 17:32:29 -0600977
978 return 0;
979}
980
981/*********************************************************************
Pavel Machek8724a112005-06-20 14:28:43 -0700982 Procedure : ipw2100_download_firmware
James Ketrenos2c86c272005-03-23 17:32:29 -0600983 Purpose : Initiaze adapter after power on.
984 The sequence is:
985 1. assert s/w reset first!
986 2. awake clocks & wait for clock stabilization
987 3. hold ARC (don't ask me why...)
988 4. load Dino ucode and reset/clock init again
989 5. zero-out shared mem
990 6. download f/w
991 *******************************************************************/
992static int ipw2100_download_firmware(struct ipw2100_priv *priv)
993{
994 u32 address;
995 int err;
996
997#ifndef CONFIG_PM
998 /* Fetch the firmware and microcode */
999 struct ipw2100_fw ipw2100_firmware;
1000#endif
1001
1002 if (priv->fatal_error) {
1003 IPW_DEBUG_ERROR("%s: ipw2100_download_firmware called after "
James Ketrenosee8e3652005-09-14 09:47:29 -05001004 "fatal error %d. Interface must be brought down.\n",
1005 priv->net_dev->name, priv->fatal_error);
James Ketrenos2c86c272005-03-23 17:32:29 -06001006 return -EINVAL;
1007 }
James Ketrenos2c86c272005-03-23 17:32:29 -06001008#ifdef CONFIG_PM
1009 if (!ipw2100_firmware.version) {
1010 err = ipw2100_get_firmware(priv, &ipw2100_firmware);
1011 if (err) {
1012 IPW_DEBUG_ERROR("%s: ipw2100_get_firmware failed: %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05001013 priv->net_dev->name, err);
James Ketrenos2c86c272005-03-23 17:32:29 -06001014 priv->fatal_error = IPW2100_ERR_FW_LOAD;
1015 goto fail;
1016 }
1017 }
1018#else
1019 err = ipw2100_get_firmware(priv, &ipw2100_firmware);
1020 if (err) {
1021 IPW_DEBUG_ERROR("%s: ipw2100_get_firmware failed: %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05001022 priv->net_dev->name, err);
James Ketrenos2c86c272005-03-23 17:32:29 -06001023 priv->fatal_error = IPW2100_ERR_FW_LOAD;
1024 goto fail;
1025 }
1026#endif
1027 priv->firmware_version = ipw2100_firmware.version;
1028
1029 /* s/w reset and clock stabilization */
1030 err = sw_reset_and_clock(priv);
1031 if (err) {
1032 IPW_DEBUG_ERROR("%s: sw_reset_and_clock failed: %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05001033 priv->net_dev->name, err);
James Ketrenos2c86c272005-03-23 17:32:29 -06001034 goto fail;
1035 }
1036
1037 err = ipw2100_verify(priv);
1038 if (err) {
1039 IPW_DEBUG_ERROR("%s: ipw2100_verify failed: %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05001040 priv->net_dev->name, err);
James Ketrenos2c86c272005-03-23 17:32:29 -06001041 goto fail;
1042 }
1043
1044 /* Hold ARC */
1045 write_nic_dword(priv->net_dev,
James Ketrenosee8e3652005-09-14 09:47:29 -05001046 IPW_INTERNAL_REGISTER_HALT_AND_RESET, 0x80000000);
James Ketrenos2c86c272005-03-23 17:32:29 -06001047
1048 /* allow ARC to run */
1049 write_register(priv->net_dev, IPW_REG_RESET_REG, 0);
1050
1051 /* load microcode */
1052 err = ipw2100_ucode_download(priv, &ipw2100_firmware);
1053 if (err) {
Jiri Benc797b4f72005-08-25 20:03:27 -04001054 printk(KERN_ERR DRV_NAME ": %s: Error loading microcode: %d\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06001055 priv->net_dev->name, err);
1056 goto fail;
1057 }
1058
1059 /* release ARC */
1060 write_nic_dword(priv->net_dev,
James Ketrenosee8e3652005-09-14 09:47:29 -05001061 IPW_INTERNAL_REGISTER_HALT_AND_RESET, 0x00000000);
James Ketrenos2c86c272005-03-23 17:32:29 -06001062
1063 /* s/w reset and clock stabilization (again!!!) */
1064 err = sw_reset_and_clock(priv);
1065 if (err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001066 printk(KERN_ERR DRV_NAME
1067 ": %s: sw_reset_and_clock failed: %d\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06001068 priv->net_dev->name, err);
1069 goto fail;
1070 }
1071
1072 /* load f/w */
1073 err = ipw2100_fw_download(priv, &ipw2100_firmware);
1074 if (err) {
1075 IPW_DEBUG_ERROR("%s: Error loading firmware: %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05001076 priv->net_dev->name, err);
James Ketrenos2c86c272005-03-23 17:32:29 -06001077 goto fail;
1078 }
James Ketrenos2c86c272005-03-23 17:32:29 -06001079#ifndef CONFIG_PM
1080 /*
1081 * When the .resume method of the driver is called, the other
1082 * part of the system, i.e. the ide driver could still stay in
1083 * the suspend stage. This prevents us from loading the firmware
1084 * from the disk. --YZ
1085 */
1086
1087 /* free any storage allocated for firmware image */
1088 ipw2100_release_firmware(priv, &ipw2100_firmware);
1089#endif
1090
1091 /* zero out Domain 1 area indirectly (Si requirement) */
1092 for (address = IPW_HOST_FW_SHARED_AREA0;
1093 address < IPW_HOST_FW_SHARED_AREA0_END; address += 4)
1094 write_nic_dword(priv->net_dev, address, 0);
1095 for (address = IPW_HOST_FW_SHARED_AREA1;
1096 address < IPW_HOST_FW_SHARED_AREA1_END; address += 4)
1097 write_nic_dword(priv->net_dev, address, 0);
1098 for (address = IPW_HOST_FW_SHARED_AREA2;
1099 address < IPW_HOST_FW_SHARED_AREA2_END; address += 4)
1100 write_nic_dword(priv->net_dev, address, 0);
1101 for (address = IPW_HOST_FW_SHARED_AREA3;
1102 address < IPW_HOST_FW_SHARED_AREA3_END; address += 4)
1103 write_nic_dword(priv->net_dev, address, 0);
1104 for (address = IPW_HOST_FW_INTERRUPT_AREA;
1105 address < IPW_HOST_FW_INTERRUPT_AREA_END; address += 4)
1106 write_nic_dword(priv->net_dev, address, 0);
1107
1108 return 0;
1109
James Ketrenosee8e3652005-09-14 09:47:29 -05001110 fail:
James Ketrenos2c86c272005-03-23 17:32:29 -06001111 ipw2100_release_firmware(priv, &ipw2100_firmware);
1112 return err;
1113}
1114
1115static inline void ipw2100_enable_interrupts(struct ipw2100_priv *priv)
1116{
1117 if (priv->status & STATUS_INT_ENABLED)
1118 return;
1119 priv->status |= STATUS_INT_ENABLED;
1120 write_register(priv->net_dev, IPW_REG_INTA_MASK, IPW_INTERRUPT_MASK);
1121}
1122
1123static inline void ipw2100_disable_interrupts(struct ipw2100_priv *priv)
1124{
1125 if (!(priv->status & STATUS_INT_ENABLED))
1126 return;
1127 priv->status &= ~STATUS_INT_ENABLED;
1128 write_register(priv->net_dev, IPW_REG_INTA_MASK, 0x0);
1129}
1130
James Ketrenos2c86c272005-03-23 17:32:29 -06001131static void ipw2100_initialize_ordinals(struct ipw2100_priv *priv)
1132{
1133 struct ipw2100_ordinals *ord = &priv->ordinals;
1134
1135 IPW_DEBUG_INFO("enter\n");
1136
1137 read_register(priv->net_dev, IPW_MEM_HOST_SHARED_ORDINALS_TABLE_1,
1138 &ord->table1_addr);
1139
1140 read_register(priv->net_dev, IPW_MEM_HOST_SHARED_ORDINALS_TABLE_2,
1141 &ord->table2_addr);
1142
1143 read_nic_dword(priv->net_dev, ord->table1_addr, &ord->table1_size);
1144 read_nic_dword(priv->net_dev, ord->table2_addr, &ord->table2_size);
1145
1146 ord->table2_size &= 0x0000FFFF;
1147
1148 IPW_DEBUG_INFO("table 1 size: %d\n", ord->table1_size);
1149 IPW_DEBUG_INFO("table 2 size: %d\n", ord->table2_size);
1150 IPW_DEBUG_INFO("exit\n");
1151}
1152
1153static inline void ipw2100_hw_set_gpio(struct ipw2100_priv *priv)
1154{
1155 u32 reg = 0;
1156 /*
1157 * Set GPIO 3 writable by FW; GPIO 1 writable
1158 * by driver and enable clock
1159 */
1160 reg = (IPW_BIT_GPIO_GPIO3_MASK | IPW_BIT_GPIO_GPIO1_ENABLE |
1161 IPW_BIT_GPIO_LED_OFF);
1162 write_register(priv->net_dev, IPW_REG_GPIO, reg);
1163}
1164
Arjan van de Ven858119e2006-01-14 13:20:43 -08001165static int rf_kill_active(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06001166{
1167#define MAX_RF_KILL_CHECKS 5
1168#define RF_KILL_CHECK_DELAY 40
James Ketrenos2c86c272005-03-23 17:32:29 -06001169
1170 unsigned short value = 0;
1171 u32 reg = 0;
1172 int i;
1173
1174 if (!(priv->hw_features & HW_FEATURE_RFKILL)) {
Matthew Garrettc26409a2009-11-11 14:36:30 -05001175 wiphy_rfkill_set_hw_state(priv->ieee->wdev.wiphy, false);
James Ketrenos2c86c272005-03-23 17:32:29 -06001176 priv->status &= ~STATUS_RF_KILL_HW;
1177 return 0;
1178 }
1179
1180 for (i = 0; i < MAX_RF_KILL_CHECKS; i++) {
1181 udelay(RF_KILL_CHECK_DELAY);
1182 read_register(priv->net_dev, IPW_REG_GPIO, &reg);
1183 value = (value << 1) | ((reg & IPW_BIT_GPIO_RF_KILL) ? 0 : 1);
1184 }
1185
Matthew Garrettc26409a2009-11-11 14:36:30 -05001186 if (value == 0) {
1187 wiphy_rfkill_set_hw_state(priv->ieee->wdev.wiphy, true);
James Ketrenos2c86c272005-03-23 17:32:29 -06001188 priv->status |= STATUS_RF_KILL_HW;
Matthew Garrettc26409a2009-11-11 14:36:30 -05001189 } else {
1190 wiphy_rfkill_set_hw_state(priv->ieee->wdev.wiphy, false);
James Ketrenos2c86c272005-03-23 17:32:29 -06001191 priv->status &= ~STATUS_RF_KILL_HW;
Matthew Garrettc26409a2009-11-11 14:36:30 -05001192 }
James Ketrenos2c86c272005-03-23 17:32:29 -06001193
1194 return (value == 0);
1195}
1196
1197static int ipw2100_get_hw_features(struct ipw2100_priv *priv)
1198{
1199 u32 addr, len;
1200 u32 val;
1201
1202 /*
1203 * EEPROM_SRAM_DB_START_ADDRESS using ordinal in ordinal table 1
1204 */
1205 len = sizeof(addr);
James Ketrenosee8e3652005-09-14 09:47:29 -05001206 if (ipw2100_get_ordinal
1207 (priv, IPW_ORD_EEPROM_SRAM_DB_BLOCK_START_ADDRESS, &addr, &len)) {
James Ketrenos2c86c272005-03-23 17:32:29 -06001208 IPW_DEBUG_INFO("failed querying ordinals at line %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05001209 __LINE__);
James Ketrenos2c86c272005-03-23 17:32:29 -06001210 return -EIO;
1211 }
1212
1213 IPW_DEBUG_INFO("EEPROM address: %08X\n", addr);
1214
1215 /*
1216 * EEPROM version is the byte at offset 0xfd in firmware
1217 * We read 4 bytes, then shift out the byte we actually want */
1218 read_nic_dword(priv->net_dev, addr + 0xFC, &val);
1219 priv->eeprom_version = (val >> 24) & 0xFF;
1220 IPW_DEBUG_INFO("EEPROM version: %d\n", priv->eeprom_version);
1221
James Ketrenosee8e3652005-09-14 09:47:29 -05001222 /*
James Ketrenos2c86c272005-03-23 17:32:29 -06001223 * HW RF Kill enable is bit 0 in byte at offset 0x21 in firmware
1224 *
1225 * notice that the EEPROM bit is reverse polarity, i.e.
1226 * bit = 0 signifies HW RF kill switch is supported
1227 * bit = 1 signifies HW RF kill switch is NOT supported
1228 */
1229 read_nic_dword(priv->net_dev, addr + 0x20, &val);
1230 if (!((val >> 24) & 0x01))
1231 priv->hw_features |= HW_FEATURE_RFKILL;
1232
1233 IPW_DEBUG_INFO("HW RF Kill: %ssupported.\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05001234 (priv->hw_features & HW_FEATURE_RFKILL) ? "" : "not ");
James Ketrenos2c86c272005-03-23 17:32:29 -06001235
1236 return 0;
1237}
1238
1239/*
1240 * Start firmware execution after power on and intialization
1241 * The sequence is:
1242 * 1. Release ARC
1243 * 2. Wait for f/w initialization completes;
1244 */
1245static int ipw2100_start_adapter(struct ipw2100_priv *priv)
1246{
James Ketrenos2c86c272005-03-23 17:32:29 -06001247 int i;
1248 u32 inta, inta_mask, gpio;
1249
1250 IPW_DEBUG_INFO("enter\n");
1251
1252 if (priv->status & STATUS_RUNNING)
1253 return 0;
1254
1255 /*
1256 * Initialize the hw - drive adapter to DO state by setting
1257 * init_done bit. Wait for clk_ready bit and Download
1258 * fw & dino ucode
1259 */
1260 if (ipw2100_download_firmware(priv)) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001261 printk(KERN_ERR DRV_NAME
1262 ": %s: Failed to power on the adapter.\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06001263 priv->net_dev->name);
1264 return -EIO;
1265 }
1266
1267 /* Clear the Tx, Rx and Msg queues and the r/w indexes
1268 * in the firmware RBD and TBD ring queue */
1269 ipw2100_queues_initialize(priv);
1270
1271 ipw2100_hw_set_gpio(priv);
1272
1273 /* TODO -- Look at disabling interrupts here to make sure none
1274 * get fired during FW initialization */
1275
1276 /* Release ARC - clear reset bit */
1277 write_register(priv->net_dev, IPW_REG_RESET_REG, 0);
1278
1279 /* wait for f/w intialization complete */
1280 IPW_DEBUG_FW("Waiting for f/w initialization to complete...\n");
1281 i = 5000;
1282 do {
Nishanth Aravamudan3173c892005-09-11 02:09:55 -07001283 schedule_timeout_uninterruptible(msecs_to_jiffies(40));
James Ketrenos2c86c272005-03-23 17:32:29 -06001284 /* Todo... wait for sync command ... */
1285
1286 read_register(priv->net_dev, IPW_REG_INTA, &inta);
1287
1288 /* check "init done" bit */
1289 if (inta & IPW2100_INTA_FW_INIT_DONE) {
1290 /* reset "init done" bit */
1291 write_register(priv->net_dev, IPW_REG_INTA,
1292 IPW2100_INTA_FW_INIT_DONE);
1293 break;
1294 }
1295
1296 /* check error conditions : we check these after the firmware
1297 * check so that if there is an error, the interrupt handler
1298 * will see it and the adapter will be reset */
1299 if (inta &
1300 (IPW2100_INTA_FATAL_ERROR | IPW2100_INTA_PARITY_ERROR)) {
1301 /* clear error conditions */
1302 write_register(priv->net_dev, IPW_REG_INTA,
1303 IPW2100_INTA_FATAL_ERROR |
1304 IPW2100_INTA_PARITY_ERROR);
1305 }
Roel Kluina2a1c3e2007-11-05 23:55:02 +01001306 } while (--i);
James Ketrenos2c86c272005-03-23 17:32:29 -06001307
1308 /* Clear out any pending INTAs since we aren't supposed to have
1309 * interrupts enabled at this point... */
1310 read_register(priv->net_dev, IPW_REG_INTA, &inta);
1311 read_register(priv->net_dev, IPW_REG_INTA_MASK, &inta_mask);
1312 inta &= IPW_INTERRUPT_MASK;
1313 /* Clear out any pending interrupts */
1314 if (inta & inta_mask)
1315 write_register(priv->net_dev, IPW_REG_INTA, inta);
1316
1317 IPW_DEBUG_FW("f/w initialization complete: %s\n",
1318 i ? "SUCCESS" : "FAILED");
1319
1320 if (!i) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001321 printk(KERN_WARNING DRV_NAME
1322 ": %s: Firmware did not initialize.\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06001323 priv->net_dev->name);
1324 return -EIO;
1325 }
1326
1327 /* allow firmware to write to GPIO1 & GPIO3 */
1328 read_register(priv->net_dev, IPW_REG_GPIO, &gpio);
1329
1330 gpio |= (IPW_BIT_GPIO_GPIO1_MASK | IPW_BIT_GPIO_GPIO3_MASK);
1331
1332 write_register(priv->net_dev, IPW_REG_GPIO, gpio);
1333
1334 /* Ready to receive commands */
1335 priv->status |= STATUS_RUNNING;
1336
1337 /* The adapter has been reset; we are not associated */
1338 priv->status &= ~(STATUS_ASSOCIATING | STATUS_ASSOCIATED);
1339
1340 IPW_DEBUG_INFO("exit\n");
1341
1342 return 0;
1343}
1344
1345static inline void ipw2100_reset_fatalerror(struct ipw2100_priv *priv)
1346{
1347 if (!priv->fatal_error)
1348 return;
1349
1350 priv->fatal_errors[priv->fatal_index++] = priv->fatal_error;
1351 priv->fatal_index %= IPW2100_ERROR_QUEUE;
1352 priv->fatal_error = 0;
1353}
1354
James Ketrenos2c86c272005-03-23 17:32:29 -06001355/* NOTE: Our interrupt is disabled when this method is called */
1356static int ipw2100_power_cycle_adapter(struct ipw2100_priv *priv)
1357{
1358 u32 reg;
1359 int i;
1360
1361 IPW_DEBUG_INFO("Power cycling the hardware.\n");
1362
1363 ipw2100_hw_set_gpio(priv);
1364
1365 /* Step 1. Stop Master Assert */
1366 write_register(priv->net_dev, IPW_REG_RESET_REG,
1367 IPW_AUX_HOST_RESET_REG_STOP_MASTER);
1368
1369 /* Step 2. Wait for stop Master Assert
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02001370 * (not more than 50us, otherwise ret error */
James Ketrenos2c86c272005-03-23 17:32:29 -06001371 i = 5;
1372 do {
1373 udelay(IPW_WAIT_RESET_MASTER_ASSERT_COMPLETE_DELAY);
1374 read_register(priv->net_dev, IPW_REG_RESET_REG, &reg);
1375
1376 if (reg & IPW_AUX_HOST_RESET_REG_MASTER_DISABLED)
1377 break;
Roel Kluina2a1c3e2007-11-05 23:55:02 +01001378 } while (--i);
James Ketrenos2c86c272005-03-23 17:32:29 -06001379
1380 priv->status &= ~STATUS_RESET_PENDING;
1381
1382 if (!i) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001383 IPW_DEBUG_INFO
1384 ("exit - waited too long for master assert stop\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06001385 return -EIO;
1386 }
1387
1388 write_register(priv->net_dev, IPW_REG_RESET_REG,
1389 IPW_AUX_HOST_RESET_REG_SW_RESET);
1390
James Ketrenos2c86c272005-03-23 17:32:29 -06001391 /* Reset any fatal_error conditions */
1392 ipw2100_reset_fatalerror(priv);
1393
1394 /* At this point, the adapter is now stopped and disabled */
1395 priv->status &= ~(STATUS_RUNNING | STATUS_ASSOCIATING |
1396 STATUS_ASSOCIATED | STATUS_ENABLED);
1397
1398 return 0;
1399}
1400
1401/*
Justin P. Mattock942a8492011-02-01 21:06:21 -08001402 * Send the CARD_DISABLE_PHY_OFF command to the card to disable it
James Ketrenos2c86c272005-03-23 17:32:29 -06001403 *
1404 * After disabling, if the card was associated, a STATUS_ASSN_LOST will be sent.
1405 *
1406 * STATUS_CARD_DISABLE_NOTIFICATION will be sent regardless of
1407 * if STATUS_ASSN_LOST is sent.
1408 */
1409static int ipw2100_hw_phy_off(struct ipw2100_priv *priv)
1410{
1411
1412#define HW_PHY_OFF_LOOP_DELAY (HZ / 5000)
1413
1414 struct host_command cmd = {
1415 .host_command = CARD_DISABLE_PHY_OFF,
1416 .host_command_sequence = 0,
1417 .host_command_length = 0,
1418 };
1419 int err, i;
1420 u32 val1, val2;
1421
1422 IPW_DEBUG_HC("CARD_DISABLE_PHY_OFF\n");
1423
1424 /* Turn off the radio */
1425 err = ipw2100_hw_send_command(priv, &cmd);
1426 if (err)
1427 return err;
1428
1429 for (i = 0; i < 2500; i++) {
1430 read_nic_dword(priv->net_dev, IPW2100_CONTROL_REG, &val1);
1431 read_nic_dword(priv->net_dev, IPW2100_COMMAND, &val2);
1432
1433 if ((val1 & IPW2100_CONTROL_PHY_OFF) &&
1434 (val2 & IPW2100_COMMAND_PHY_OFF))
1435 return 0;
1436
Nishanth Aravamudan3173c892005-09-11 02:09:55 -07001437 schedule_timeout_uninterruptible(HW_PHY_OFF_LOOP_DELAY);
James Ketrenos2c86c272005-03-23 17:32:29 -06001438 }
1439
1440 return -EIO;
1441}
1442
James Ketrenos2c86c272005-03-23 17:32:29 -06001443static int ipw2100_enable_adapter(struct ipw2100_priv *priv)
1444{
1445 struct host_command cmd = {
1446 .host_command = HOST_COMPLETE,
1447 .host_command_sequence = 0,
1448 .host_command_length = 0
1449 };
1450 int err = 0;
1451
1452 IPW_DEBUG_HC("HOST_COMPLETE\n");
1453
1454 if (priv->status & STATUS_ENABLED)
1455 return 0;
1456
Ingo Molnar752e3772006-02-28 07:20:54 +08001457 mutex_lock(&priv->adapter_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06001458
1459 if (rf_kill_active(priv)) {
1460 IPW_DEBUG_HC("Command aborted due to RF kill active.\n");
1461 goto fail_up;
1462 }
1463
1464 err = ipw2100_hw_send_command(priv, &cmd);
1465 if (err) {
1466 IPW_DEBUG_INFO("Failed to send HOST_COMPLETE command\n");
1467 goto fail_up;
1468 }
1469
1470 err = ipw2100_wait_for_card_state(priv, IPW_HW_STATE_ENABLED);
1471 if (err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001472 IPW_DEBUG_INFO("%s: card not responding to init command.\n",
1473 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06001474 goto fail_up;
1475 }
1476
1477 if (priv->stop_hang_check) {
1478 priv->stop_hang_check = 0;
Tejun Heobcb6d912011-01-26 12:12:50 +01001479 schedule_delayed_work(&priv->hang_check, HZ / 2);
James Ketrenos2c86c272005-03-23 17:32:29 -06001480 }
1481
James Ketrenosee8e3652005-09-14 09:47:29 -05001482 fail_up:
Ingo Molnar752e3772006-02-28 07:20:54 +08001483 mutex_unlock(&priv->adapter_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06001484 return err;
1485}
1486
1487static int ipw2100_hw_stop_adapter(struct ipw2100_priv *priv)
1488{
Nishanth Aravamudan3173c892005-09-11 02:09:55 -07001489#define HW_POWER_DOWN_DELAY (msecs_to_jiffies(100))
James Ketrenos2c86c272005-03-23 17:32:29 -06001490
1491 struct host_command cmd = {
1492 .host_command = HOST_PRE_POWER_DOWN,
1493 .host_command_sequence = 0,
1494 .host_command_length = 0,
1495 };
1496 int err, i;
1497 u32 reg;
1498
1499 if (!(priv->status & STATUS_RUNNING))
1500 return 0;
1501
1502 priv->status |= STATUS_STOPPING;
1503
1504 /* We can only shut down the card if the firmware is operational. So,
1505 * if we haven't reset since a fatal_error, then we can not send the
1506 * shutdown commands. */
1507 if (!priv->fatal_error) {
1508 /* First, make sure the adapter is enabled so that the PHY_OFF
1509 * command can shut it down */
1510 ipw2100_enable_adapter(priv);
1511
1512 err = ipw2100_hw_phy_off(priv);
1513 if (err)
James Ketrenosee8e3652005-09-14 09:47:29 -05001514 printk(KERN_WARNING DRV_NAME
1515 ": Error disabling radio %d\n", err);
James Ketrenos2c86c272005-03-23 17:32:29 -06001516
1517 /*
1518 * If in D0-standby mode going directly to D3 may cause a
1519 * PCI bus violation. Therefore we must change out of the D0
1520 * state.
1521 *
1522 * Sending the PREPARE_FOR_POWER_DOWN will restrict the
1523 * hardware from going into standby mode and will transition
Andreas Mohrd6e05ed2006-06-26 18:35:02 +02001524 * out of D0-standby if it is already in that state.
James Ketrenos2c86c272005-03-23 17:32:29 -06001525 *
1526 * STATUS_PREPARE_POWER_DOWN_COMPLETE will be sent by the
1527 * driver upon completion. Once received, the driver can
1528 * proceed to the D3 state.
1529 *
1530 * Prepare for power down command to fw. This command would
1531 * take HW out of D0-standby and prepare it for D3 state.
1532 *
1533 * Currently FW does not support event notification for this
1534 * event. Therefore, skip waiting for it. Just wait a fixed
1535 * 100ms
1536 */
1537 IPW_DEBUG_HC("HOST_PRE_POWER_DOWN\n");
1538
1539 err = ipw2100_hw_send_command(priv, &cmd);
1540 if (err)
Jiri Benc797b4f72005-08-25 20:03:27 -04001541 printk(KERN_WARNING DRV_NAME ": "
James Ketrenos2c86c272005-03-23 17:32:29 -06001542 "%s: Power down command failed: Error %d\n",
1543 priv->net_dev->name, err);
Nishanth Aravamudan3173c892005-09-11 02:09:55 -07001544 else
1545 schedule_timeout_uninterruptible(HW_POWER_DOWN_DELAY);
James Ketrenos2c86c272005-03-23 17:32:29 -06001546 }
1547
1548 priv->status &= ~STATUS_ENABLED;
1549
1550 /*
1551 * Set GPIO 3 writable by FW; GPIO 1 writable
1552 * by driver and enable clock
1553 */
1554 ipw2100_hw_set_gpio(priv);
1555
1556 /*
1557 * Power down adapter. Sequence:
1558 * 1. Stop master assert (RESET_REG[9]=1)
1559 * 2. Wait for stop master (RESET_REG[8]==1)
1560 * 3. S/w reset assert (RESET_REG[7] = 1)
1561 */
1562
1563 /* Stop master assert */
1564 write_register(priv->net_dev, IPW_REG_RESET_REG,
1565 IPW_AUX_HOST_RESET_REG_STOP_MASTER);
1566
1567 /* wait stop master not more than 50 usec.
1568 * Otherwise return error. */
1569 for (i = 5; i > 0; i--) {
1570 udelay(10);
1571
1572 /* Check master stop bit */
1573 read_register(priv->net_dev, IPW_REG_RESET_REG, &reg);
1574
1575 if (reg & IPW_AUX_HOST_RESET_REG_MASTER_DISABLED)
1576 break;
1577 }
1578
1579 if (i == 0)
Jiri Benc797b4f72005-08-25 20:03:27 -04001580 printk(KERN_WARNING DRV_NAME
James Ketrenos2c86c272005-03-23 17:32:29 -06001581 ": %s: Could now power down adapter.\n",
1582 priv->net_dev->name);
1583
1584 /* assert s/w reset */
1585 write_register(priv->net_dev, IPW_REG_RESET_REG,
1586 IPW_AUX_HOST_RESET_REG_SW_RESET);
1587
1588 priv->status &= ~(STATUS_RUNNING | STATUS_STOPPING);
1589
1590 return 0;
1591}
1592
James Ketrenos2c86c272005-03-23 17:32:29 -06001593static int ipw2100_disable_adapter(struct ipw2100_priv *priv)
1594{
1595 struct host_command cmd = {
1596 .host_command = CARD_DISABLE,
1597 .host_command_sequence = 0,
1598 .host_command_length = 0
1599 };
1600 int err = 0;
1601
1602 IPW_DEBUG_HC("CARD_DISABLE\n");
1603
1604 if (!(priv->status & STATUS_ENABLED))
1605 return 0;
1606
1607 /* Make sure we clear the associated state */
1608 priv->status &= ~(STATUS_ASSOCIATED | STATUS_ASSOCIATING);
1609
1610 if (!priv->stop_hang_check) {
1611 priv->stop_hang_check = 1;
1612 cancel_delayed_work(&priv->hang_check);
1613 }
1614
Ingo Molnar752e3772006-02-28 07:20:54 +08001615 mutex_lock(&priv->adapter_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06001616
1617 err = ipw2100_hw_send_command(priv, &cmd);
1618 if (err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001619 printk(KERN_WARNING DRV_NAME
1620 ": exit - failed to send CARD_DISABLE command\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06001621 goto fail_up;
1622 }
1623
1624 err = ipw2100_wait_for_card_state(priv, IPW_HW_STATE_DISABLED);
1625 if (err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001626 printk(KERN_WARNING DRV_NAME
1627 ": exit - card failed to change to DISABLED\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06001628 goto fail_up;
1629 }
1630
1631 IPW_DEBUG_INFO("TODO: implement scan state machine\n");
1632
James Ketrenosee8e3652005-09-14 09:47:29 -05001633 fail_up:
Ingo Molnar752e3772006-02-28 07:20:54 +08001634 mutex_unlock(&priv->adapter_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06001635 return err;
1636}
1637
Jiri Bencc4aee8c2005-08-25 20:04:43 -04001638static int ipw2100_set_scan_options(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06001639{
1640 struct host_command cmd = {
1641 .host_command = SET_SCAN_OPTIONS,
1642 .host_command_sequence = 0,
1643 .host_command_length = 8
1644 };
1645 int err;
1646
1647 IPW_DEBUG_INFO("enter\n");
1648
1649 IPW_DEBUG_SCAN("setting scan options\n");
1650
1651 cmd.host_command_parameters[0] = 0;
1652
1653 if (!(priv->config & CFG_ASSOCIATE))
1654 cmd.host_command_parameters[0] |= IPW_SCAN_NOASSOCIATE;
25b645b2005-07-12 15:45:30 -05001655 if ((priv->ieee->sec.flags & SEC_ENABLED) && priv->ieee->sec.enabled)
James Ketrenos2c86c272005-03-23 17:32:29 -06001656 cmd.host_command_parameters[0] |= IPW_SCAN_MIXED_CELL;
1657 if (priv->config & CFG_PASSIVE_SCAN)
1658 cmd.host_command_parameters[0] |= IPW_SCAN_PASSIVE;
1659
1660 cmd.host_command_parameters[1] = priv->channel_mask;
1661
1662 err = ipw2100_hw_send_command(priv, &cmd);
1663
1664 IPW_DEBUG_HC("SET_SCAN_OPTIONS 0x%04X\n",
1665 cmd.host_command_parameters[0]);
1666
1667 return err;
1668}
1669
Jiri Bencc4aee8c2005-08-25 20:04:43 -04001670static int ipw2100_start_scan(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06001671{
1672 struct host_command cmd = {
1673 .host_command = BROADCAST_SCAN,
1674 .host_command_sequence = 0,
1675 .host_command_length = 4
1676 };
1677 int err;
1678
1679 IPW_DEBUG_HC("START_SCAN\n");
1680
1681 cmd.host_command_parameters[0] = 0;
1682
1683 /* No scanning if in monitor mode */
1684 if (priv->ieee->iw_mode == IW_MODE_MONITOR)
1685 return 1;
1686
1687 if (priv->status & STATUS_SCANNING) {
1688 IPW_DEBUG_SCAN("Scan requested while already in scan...\n");
1689 return 0;
1690 }
1691
1692 IPW_DEBUG_INFO("enter\n");
1693
1694 /* Not clearing here; doing so makes iwlist always return nothing...
1695 *
1696 * We should modify the table logic to use aging tables vs. clearing
1697 * the table on each scan start.
1698 */
1699 IPW_DEBUG_SCAN("starting scan\n");
1700
1701 priv->status |= STATUS_SCANNING;
1702 err = ipw2100_hw_send_command(priv, &cmd);
1703 if (err)
1704 priv->status &= ~STATUS_SCANNING;
1705
1706 IPW_DEBUG_INFO("exit\n");
1707
1708 return err;
1709}
1710
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001711static const struct libipw_geo ipw_geos[] = {
Zhu Yibe6b3b12006-01-24 13:49:08 +08001712 { /* Restricted */
1713 "---",
1714 .bg_channels = 14,
1715 .bg = {{2412, 1}, {2417, 2}, {2422, 3},
1716 {2427, 4}, {2432, 5}, {2437, 6},
1717 {2442, 7}, {2447, 8}, {2452, 9},
1718 {2457, 10}, {2462, 11}, {2467, 12},
1719 {2472, 13}, {2484, 14}},
1720 },
1721};
1722
James Ketrenos2c86c272005-03-23 17:32:29 -06001723static int ipw2100_up(struct ipw2100_priv *priv, int deferred)
1724{
1725 unsigned long flags;
1726 int rc = 0;
1727 u32 lock;
1728 u32 ord_len = sizeof(lock);
1729
Dan Williamsc3d72b92009-02-11 13:26:06 -05001730 /* Age scan list entries found before suspend */
1731 if (priv->suspend_time) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001732 libipw_networks_age(priv->ieee, priv->suspend_time);
Dan Williamsc3d72b92009-02-11 13:26:06 -05001733 priv->suspend_time = 0;
1734 }
1735
1736 /* Quiet if manually disabled. */
James Ketrenos2c86c272005-03-23 17:32:29 -06001737 if (priv->status & STATUS_RF_KILL_SW) {
1738 IPW_DEBUG_INFO("%s: Radio is disabled by Manual Disable "
1739 "switch\n", priv->net_dev->name);
1740 return 0;
1741 }
1742
Arjan van de Ven5c875792006-09-30 23:27:17 -07001743 /* the ipw2100 hardware really doesn't want power management delays
1744 * longer than 175usec
1745 */
James Bottomley82f68252010-07-05 22:53:06 +02001746 pm_qos_update_request(&ipw2100_pm_qos_req, 175);
Arjan van de Ven5c875792006-09-30 23:27:17 -07001747
James Ketrenos2c86c272005-03-23 17:32:29 -06001748 /* If the interrupt is enabled, turn it off... */
1749 spin_lock_irqsave(&priv->low_lock, flags);
1750 ipw2100_disable_interrupts(priv);
1751
1752 /* Reset any fatal_error conditions */
1753 ipw2100_reset_fatalerror(priv);
1754 spin_unlock_irqrestore(&priv->low_lock, flags);
1755
1756 if (priv->status & STATUS_POWERED ||
1757 (priv->status & STATUS_RESET_PENDING)) {
1758 /* Power cycle the card ... */
1759 if (ipw2100_power_cycle_adapter(priv)) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001760 printk(KERN_WARNING DRV_NAME
1761 ": %s: Could not cycle adapter.\n",
1762 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06001763 rc = 1;
1764 goto exit;
1765 }
1766 } else
1767 priv->status |= STATUS_POWERED;
1768
Pavel Machek8724a112005-06-20 14:28:43 -07001769 /* Load the firmware, start the clocks, etc. */
James Ketrenos2c86c272005-03-23 17:32:29 -06001770 if (ipw2100_start_adapter(priv)) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001771 printk(KERN_ERR DRV_NAME
1772 ": %s: Failed to start the firmware.\n",
1773 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06001774 rc = 1;
1775 goto exit;
1776 }
1777
1778 ipw2100_initialize_ordinals(priv);
1779
1780 /* Determine capabilities of this particular HW configuration */
1781 if (ipw2100_get_hw_features(priv)) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001782 printk(KERN_ERR DRV_NAME
1783 ": %s: Failed to determine HW features.\n",
1784 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06001785 rc = 1;
1786 goto exit;
1787 }
1788
Zhu Yibe6b3b12006-01-24 13:49:08 +08001789 /* Initialize the geo */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001790 if (libipw_set_geo(priv->ieee, &ipw_geos[0])) {
Zhu Yibe6b3b12006-01-24 13:49:08 +08001791 printk(KERN_WARNING DRV_NAME "Could not set geo\n");
1792 return 0;
1793 }
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04001794 priv->ieee->freq_band = LIBIPW_24GHZ_BAND;
Zhu Yibe6b3b12006-01-24 13:49:08 +08001795
James Ketrenos2c86c272005-03-23 17:32:29 -06001796 lock = LOCK_NONE;
1797 if (ipw2100_set_ordinal(priv, IPW_ORD_PERS_DB_LOCK, &lock, &ord_len)) {
James Ketrenosee8e3652005-09-14 09:47:29 -05001798 printk(KERN_ERR DRV_NAME
1799 ": %s: Failed to clear ordinal lock.\n",
1800 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06001801 rc = 1;
1802 goto exit;
1803 }
1804
1805 priv->status &= ~STATUS_SCANNING;
1806
1807 if (rf_kill_active(priv)) {
1808 printk(KERN_INFO "%s: Radio is disabled by RF switch.\n",
1809 priv->net_dev->name);
1810
1811 if (priv->stop_rf_kill) {
1812 priv->stop_rf_kill = 0;
Tejun Heobcb6d912011-01-26 12:12:50 +01001813 schedule_delayed_work(&priv->rf_kill,
1814 round_jiffies_relative(HZ));
James Ketrenos2c86c272005-03-23 17:32:29 -06001815 }
1816
1817 deferred = 1;
1818 }
1819
1820 /* Turn on the interrupt so that commands can be processed */
1821 ipw2100_enable_interrupts(priv);
1822
1823 /* Send all of the commands that must be sent prior to
1824 * HOST_COMPLETE */
1825 if (ipw2100_adapter_setup(priv)) {
Jiri Benc797b4f72005-08-25 20:03:27 -04001826 printk(KERN_ERR DRV_NAME ": %s: Failed to start the card.\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05001827 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06001828 rc = 1;
1829 goto exit;
1830 }
1831
1832 if (!deferred) {
1833 /* Enable the adapter - sends HOST_COMPLETE */
1834 if (ipw2100_enable_adapter(priv)) {
Jiri Benc797b4f72005-08-25 20:03:27 -04001835 printk(KERN_ERR DRV_NAME ": "
James Ketrenosee8e3652005-09-14 09:47:29 -05001836 "%s: failed in call to enable adapter.\n",
1837 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06001838 ipw2100_hw_stop_adapter(priv);
1839 rc = 1;
1840 goto exit;
1841 }
1842
James Ketrenos2c86c272005-03-23 17:32:29 -06001843 /* Start a scan . . . */
1844 ipw2100_set_scan_options(priv);
1845 ipw2100_start_scan(priv);
1846 }
1847
James Ketrenosee8e3652005-09-14 09:47:29 -05001848 exit:
James Ketrenos2c86c272005-03-23 17:32:29 -06001849 return rc;
1850}
1851
James Ketrenos2c86c272005-03-23 17:32:29 -06001852static void ipw2100_down(struct ipw2100_priv *priv)
1853{
1854 unsigned long flags;
1855 union iwreq_data wrqu = {
1856 .ap_addr = {
James Ketrenosee8e3652005-09-14 09:47:29 -05001857 .sa_family = ARPHRD_ETHER}
James Ketrenos2c86c272005-03-23 17:32:29 -06001858 };
1859 int associated = priv->status & STATUS_ASSOCIATED;
1860
1861 /* Kill the RF switch timer */
1862 if (!priv->stop_rf_kill) {
1863 priv->stop_rf_kill = 1;
1864 cancel_delayed_work(&priv->rf_kill);
1865 }
1866
Nick Andrew44072452009-01-03 18:52:40 +11001867 /* Kill the firmware hang check timer */
James Ketrenos2c86c272005-03-23 17:32:29 -06001868 if (!priv->stop_hang_check) {
1869 priv->stop_hang_check = 1;
1870 cancel_delayed_work(&priv->hang_check);
1871 }
1872
1873 /* Kill any pending resets */
1874 if (priv->status & STATUS_RESET_PENDING)
1875 cancel_delayed_work(&priv->reset_work);
1876
1877 /* Make sure the interrupt is on so that FW commands will be
1878 * processed correctly */
1879 spin_lock_irqsave(&priv->low_lock, flags);
1880 ipw2100_enable_interrupts(priv);
1881 spin_unlock_irqrestore(&priv->low_lock, flags);
1882
1883 if (ipw2100_hw_stop_adapter(priv))
Jiri Benc797b4f72005-08-25 20:03:27 -04001884 printk(KERN_ERR DRV_NAME ": %s: Error stopping adapter.\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06001885 priv->net_dev->name);
1886
1887 /* Do not disable the interrupt until _after_ we disable
1888 * the adaptor. Otherwise the CARD_DISABLE command will never
1889 * be ack'd by the firmware */
1890 spin_lock_irqsave(&priv->low_lock, flags);
1891 ipw2100_disable_interrupts(priv);
1892 spin_unlock_irqrestore(&priv->low_lock, flags);
1893
James Bottomley82f68252010-07-05 22:53:06 +02001894 pm_qos_update_request(&ipw2100_pm_qos_req, PM_QOS_DEFAULT_VALUE);
Arjan van de Ven5c875792006-09-30 23:27:17 -07001895
James Ketrenos2c86c272005-03-23 17:32:29 -06001896 /* We have to signal any supplicant if we are disassociating */
1897 if (associated)
1898 wireless_send_event(priv->net_dev, SIOCGIWAP, &wrqu, NULL);
1899
1900 priv->status &= ~(STATUS_ASSOCIATED | STATUS_ASSOCIATING);
1901 netif_carrier_off(priv->net_dev);
1902 netif_stop_queue(priv->net_dev);
1903}
1904
Matthew Garrettc26409a2009-11-11 14:36:30 -05001905/* Called by register_netdev() */
1906static int ipw2100_net_init(struct net_device *dev)
1907{
1908 struct ipw2100_priv *priv = libipw_priv(dev);
Stanislaw Gruszka7cabafc2011-09-14 16:47:50 +02001909
1910 return ipw2100_up(priv, 1);
1911}
1912
1913static int ipw2100_wdev_init(struct net_device *dev)
1914{
1915 struct ipw2100_priv *priv = libipw_priv(dev);
Matthew Garrettc26409a2009-11-11 14:36:30 -05001916 const struct libipw_geo *geo = libipw_get_geo(priv->ieee);
1917 struct wireless_dev *wdev = &priv->ieee->wdev;
Matthew Garrettc26409a2009-11-11 14:36:30 -05001918 int i;
1919
Matthew Garrettc26409a2009-11-11 14:36:30 -05001920 memcpy(wdev->wiphy->perm_addr, priv->mac_addr, ETH_ALEN);
1921
1922 /* fill-out priv->ieee->bg_band */
1923 if (geo->bg_channels) {
1924 struct ieee80211_supported_band *bg_band = &priv->ieee->bg_band;
1925
1926 bg_band->band = IEEE80211_BAND_2GHZ;
1927 bg_band->n_channels = geo->bg_channels;
Joe Perchesbaeb2ff2010-08-11 07:02:48 +00001928 bg_band->channels = kcalloc(geo->bg_channels,
1929 sizeof(struct ieee80211_channel),
1930 GFP_KERNEL);
Christoph Fritz93c05842010-08-03 12:54:20 +02001931 if (!bg_band->channels) {
1932 ipw2100_down(priv);
1933 return -ENOMEM;
1934 }
Matthew Garrettc26409a2009-11-11 14:36:30 -05001935 /* translate geo->bg to bg_band.channels */
1936 for (i = 0; i < geo->bg_channels; i++) {
1937 bg_band->channels[i].band = IEEE80211_BAND_2GHZ;
1938 bg_band->channels[i].center_freq = geo->bg[i].freq;
1939 bg_band->channels[i].hw_value = geo->bg[i].channel;
1940 bg_band->channels[i].max_power = geo->bg[i].max_power;
1941 if (geo->bg[i].flags & LIBIPW_CH_PASSIVE_ONLY)
1942 bg_band->channels[i].flags |=
1943 IEEE80211_CHAN_PASSIVE_SCAN;
1944 if (geo->bg[i].flags & LIBIPW_CH_NO_IBSS)
1945 bg_band->channels[i].flags |=
1946 IEEE80211_CHAN_NO_IBSS;
1947 if (geo->bg[i].flags & LIBIPW_CH_RADAR_DETECT)
1948 bg_band->channels[i].flags |=
1949 IEEE80211_CHAN_RADAR;
1950 /* No equivalent for LIBIPW_CH_80211H_RULES,
1951 LIBIPW_CH_UNIFORM_SPREADING, or
1952 LIBIPW_CH_B_ONLY... */
1953 }
1954 /* point at bitrate info */
1955 bg_band->bitrates = ipw2100_bg_rates;
1956 bg_band->n_bitrates = RATE_COUNT;
1957
1958 wdev->wiphy->bands[IEEE80211_BAND_2GHZ] = bg_band;
1959 }
1960
1961 set_wiphy_dev(wdev->wiphy, &priv->pci_dev->dev);
1962 if (wiphy_register(wdev->wiphy)) {
1963 ipw2100_down(priv);
1964 return -EIO;
1965 }
1966 return 0;
1967}
1968
David Howellsc4028952006-11-22 14:57:56 +00001969static void ipw2100_reset_adapter(struct work_struct *work)
James Ketrenos2c86c272005-03-23 17:32:29 -06001970{
David Howellsc4028952006-11-22 14:57:56 +00001971 struct ipw2100_priv *priv =
1972 container_of(work, struct ipw2100_priv, reset_work.work);
James Ketrenos2c86c272005-03-23 17:32:29 -06001973 unsigned long flags;
1974 union iwreq_data wrqu = {
1975 .ap_addr = {
James Ketrenosee8e3652005-09-14 09:47:29 -05001976 .sa_family = ARPHRD_ETHER}
James Ketrenos2c86c272005-03-23 17:32:29 -06001977 };
1978 int associated = priv->status & STATUS_ASSOCIATED;
1979
1980 spin_lock_irqsave(&priv->low_lock, flags);
Zhu Yia1e695a2005-07-04 14:06:00 +08001981 IPW_DEBUG_INFO(": %s: Restarting adapter.\n", priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06001982 priv->resets++;
1983 priv->status &= ~(STATUS_ASSOCIATED | STATUS_ASSOCIATING);
1984 priv->status |= STATUS_SECURITY_UPDATED;
1985
1986 /* Force a power cycle even if interface hasn't been opened
1987 * yet */
1988 cancel_delayed_work(&priv->reset_work);
1989 priv->status |= STATUS_RESET_PENDING;
1990 spin_unlock_irqrestore(&priv->low_lock, flags);
1991
Ingo Molnar752e3772006-02-28 07:20:54 +08001992 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06001993 /* stop timed checks so that they don't interfere with reset */
1994 priv->stop_hang_check = 1;
1995 cancel_delayed_work(&priv->hang_check);
1996
1997 /* We have to signal any supplicant if we are disassociating */
1998 if (associated)
1999 wireless_send_event(priv->net_dev, SIOCGIWAP, &wrqu, NULL);
2000
2001 ipw2100_up(priv, 0);
Ingo Molnar752e3772006-02-28 07:20:54 +08002002 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06002003
2004}
2005
James Ketrenos2c86c272005-03-23 17:32:29 -06002006static void isr_indicate_associated(struct ipw2100_priv *priv, u32 status)
2007{
2008
2009#define MAC_ASSOCIATION_READ_DELAY (HZ)
Hannes Ederb9da9e92009-02-14 11:50:26 +00002010 int ret;
2011 unsigned int len, essid_len;
James Ketrenos2c86c272005-03-23 17:32:29 -06002012 char essid[IW_ESSID_MAX_SIZE];
2013 u32 txrate;
2014 u32 chan;
2015 char *txratename;
James Ketrenosee8e3652005-09-14 09:47:29 -05002016 u8 bssid[ETH_ALEN];
John W. Linville9387b7c2008-09-30 20:59:05 -04002017 DECLARE_SSID_BUF(ssid);
James Ketrenos2c86c272005-03-23 17:32:29 -06002018
2019 /*
2020 * TBD: BSSID is usually 00:00:00:00:00:00 here and not
2021 * an actual MAC of the AP. Seems like FW sets this
2022 * address too late. Read it later and expose through
2023 * /proc or schedule a later task to query and update
2024 */
2025
2026 essid_len = IW_ESSID_MAX_SIZE;
2027 ret = ipw2100_get_ordinal(priv, IPW_ORD_STAT_ASSN_SSID,
2028 essid, &essid_len);
2029 if (ret) {
2030 IPW_DEBUG_INFO("failed querying ordinals at line %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05002031 __LINE__);
James Ketrenos2c86c272005-03-23 17:32:29 -06002032 return;
2033 }
2034
2035 len = sizeof(u32);
James Ketrenosee8e3652005-09-14 09:47:29 -05002036 ret = ipw2100_get_ordinal(priv, IPW_ORD_CURRENT_TX_RATE, &txrate, &len);
James Ketrenos2c86c272005-03-23 17:32:29 -06002037 if (ret) {
2038 IPW_DEBUG_INFO("failed querying ordinals at line %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05002039 __LINE__);
James Ketrenos2c86c272005-03-23 17:32:29 -06002040 return;
2041 }
2042
2043 len = sizeof(u32);
2044 ret = ipw2100_get_ordinal(priv, IPW_ORD_OUR_FREQ, &chan, &len);
2045 if (ret) {
2046 IPW_DEBUG_INFO("failed querying ordinals at line %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05002047 __LINE__);
James Ketrenos2c86c272005-03-23 17:32:29 -06002048 return;
2049 }
2050 len = ETH_ALEN;
James Ketrenosee8e3652005-09-14 09:47:29 -05002051 ipw2100_get_ordinal(priv, IPW_ORD_STAT_ASSN_AP_BSSID, &bssid, &len);
James Ketrenos2c86c272005-03-23 17:32:29 -06002052 if (ret) {
2053 IPW_DEBUG_INFO("failed querying ordinals at line %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05002054 __LINE__);
James Ketrenos2c86c272005-03-23 17:32:29 -06002055 return;
2056 }
2057 memcpy(priv->ieee->bssid, bssid, ETH_ALEN);
2058
James Ketrenos2c86c272005-03-23 17:32:29 -06002059 switch (txrate) {
2060 case TX_RATE_1_MBIT:
2061 txratename = "1Mbps";
2062 break;
2063 case TX_RATE_2_MBIT:
2064 txratename = "2Mbsp";
2065 break;
2066 case TX_RATE_5_5_MBIT:
2067 txratename = "5.5Mbps";
2068 break;
2069 case TX_RATE_11_MBIT:
2070 txratename = "11Mbps";
2071 break;
2072 default:
2073 IPW_DEBUG_INFO("Unknown rate: %d\n", txrate);
2074 txratename = "unknown rate";
2075 break;
2076 }
2077
Johannes Berge1749612008-10-27 15:59:26 -07002078 IPW_DEBUG_INFO("%s: Associated with '%s' at %s, channel %d (BSSID=%pM)\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04002079 priv->net_dev->name, print_ssid(ssid, essid, essid_len),
Johannes Berge1749612008-10-27 15:59:26 -07002080 txratename, chan, bssid);
James Ketrenos2c86c272005-03-23 17:32:29 -06002081
2082 /* now we copy read ssid into dev */
2083 if (!(priv->config & CFG_STATIC_ESSID)) {
James Ketrenosee8e3652005-09-14 09:47:29 -05002084 priv->essid_len = min((u8) essid_len, (u8) IW_ESSID_MAX_SIZE);
James Ketrenos2c86c272005-03-23 17:32:29 -06002085 memcpy(priv->essid, essid, priv->essid_len);
2086 }
2087 priv->channel = chan;
2088 memcpy(priv->bssid, bssid, ETH_ALEN);
2089
2090 priv->status |= STATUS_ASSOCIATING;
2091 priv->connect_start = get_seconds();
2092
Tejun Heobcb6d912011-01-26 12:12:50 +01002093 schedule_delayed_work(&priv->wx_event_work, HZ / 10);
James Ketrenos2c86c272005-03-23 17:32:29 -06002094}
2095
Jiri Bencc4aee8c2005-08-25 20:04:43 -04002096static int ipw2100_set_essid(struct ipw2100_priv *priv, char *essid,
2097 int length, int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06002098{
2099 int ssid_len = min(length, IW_ESSID_MAX_SIZE);
2100 struct host_command cmd = {
2101 .host_command = SSID,
2102 .host_command_sequence = 0,
2103 .host_command_length = ssid_len
2104 };
2105 int err;
John W. Linville9387b7c2008-09-30 20:59:05 -04002106 DECLARE_SSID_BUF(ssid);
James Ketrenos2c86c272005-03-23 17:32:29 -06002107
John W. Linville9387b7c2008-09-30 20:59:05 -04002108 IPW_DEBUG_HC("SSID: '%s'\n", print_ssid(ssid, essid, ssid_len));
James Ketrenos2c86c272005-03-23 17:32:29 -06002109
2110 if (ssid_len)
James Ketrenos82328352005-08-24 22:33:31 -05002111 memcpy(cmd.host_command_parameters, essid, ssid_len);
James Ketrenos2c86c272005-03-23 17:32:29 -06002112
2113 if (!batch_mode) {
2114 err = ipw2100_disable_adapter(priv);
2115 if (err)
2116 return err;
2117 }
2118
2119 /* Bug in FW currently doesn't honor bit 0 in SET_SCAN_OPTIONS to
2120 * disable auto association -- so we cheat by setting a bogus SSID */
2121 if (!ssid_len && !(priv->config & CFG_ASSOCIATE)) {
2122 int i;
James Ketrenosee8e3652005-09-14 09:47:29 -05002123 u8 *bogus = (u8 *) cmd.host_command_parameters;
James Ketrenos2c86c272005-03-23 17:32:29 -06002124 for (i = 0; i < IW_ESSID_MAX_SIZE; i++)
2125 bogus[i] = 0x18 + i;
2126 cmd.host_command_length = IW_ESSID_MAX_SIZE;
2127 }
2128
2129 /* NOTE: We always send the SSID command even if the provided ESSID is
2130 * the same as what we currently think is set. */
2131
2132 err = ipw2100_hw_send_command(priv, &cmd);
2133 if (!err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05002134 memset(priv->essid + ssid_len, 0, IW_ESSID_MAX_SIZE - ssid_len);
James Ketrenos2c86c272005-03-23 17:32:29 -06002135 memcpy(priv->essid, essid, ssid_len);
2136 priv->essid_len = ssid_len;
2137 }
2138
2139 if (!batch_mode) {
2140 if (ipw2100_enable_adapter(priv))
2141 err = -EIO;
2142 }
2143
2144 return err;
2145}
2146
2147static void isr_indicate_association_lost(struct ipw2100_priv *priv, u32 status)
2148{
John W. Linville9387b7c2008-09-30 20:59:05 -04002149 DECLARE_SSID_BUF(ssid);
2150
James Ketrenos2c86c272005-03-23 17:32:29 -06002151 IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE | IPW_DL_ASSOC,
Frans Pop9fd1ea42010-03-24 19:46:31 +01002152 "disassociated: '%s' %pM\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04002153 print_ssid(ssid, priv->essid, priv->essid_len),
Johannes Berge1749612008-10-27 15:59:26 -07002154 priv->bssid);
James Ketrenos2c86c272005-03-23 17:32:29 -06002155
2156 priv->status &= ~(STATUS_ASSOCIATED | STATUS_ASSOCIATING);
2157
2158 if (priv->status & STATUS_STOPPING) {
2159 IPW_DEBUG_INFO("Card is stopping itself, discard ASSN_LOST.\n");
2160 return;
2161 }
2162
2163 memset(priv->bssid, 0, ETH_ALEN);
2164 memset(priv->ieee->bssid, 0, ETH_ALEN);
2165
2166 netif_carrier_off(priv->net_dev);
2167 netif_stop_queue(priv->net_dev);
2168
2169 if (!(priv->status & STATUS_RUNNING))
2170 return;
2171
2172 if (priv->status & STATUS_SECURITY_UPDATED)
Tejun Heobcb6d912011-01-26 12:12:50 +01002173 schedule_delayed_work(&priv->security_work, 0);
James Ketrenos2c86c272005-03-23 17:32:29 -06002174
Tejun Heobcb6d912011-01-26 12:12:50 +01002175 schedule_delayed_work(&priv->wx_event_work, 0);
James Ketrenos2c86c272005-03-23 17:32:29 -06002176}
2177
2178static void isr_indicate_rf_kill(struct ipw2100_priv *priv, u32 status)
2179{
2180 IPW_DEBUG_INFO("%s: RF Kill state changed to radio OFF.\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05002181 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06002182
2183 /* RF_KILL is now enabled (else we wouldn't be here) */
Matthew Garrettc26409a2009-11-11 14:36:30 -05002184 wiphy_rfkill_set_hw_state(priv->ieee->wdev.wiphy, true);
James Ketrenos2c86c272005-03-23 17:32:29 -06002185 priv->status |= STATUS_RF_KILL_HW;
2186
James Ketrenos2c86c272005-03-23 17:32:29 -06002187 /* Make sure the RF Kill check timer is running */
2188 priv->stop_rf_kill = 0;
2189 cancel_delayed_work(&priv->rf_kill);
Tejun Heobcb6d912011-01-26 12:12:50 +01002190 schedule_delayed_work(&priv->rf_kill, round_jiffies_relative(HZ));
James Ketrenos2c86c272005-03-23 17:32:29 -06002191}
2192
Dan Williamsd20c6782007-10-10 12:28:07 -04002193static void send_scan_event(void *data)
2194{
2195 struct ipw2100_priv *priv = data;
2196 union iwreq_data wrqu;
2197
2198 wrqu.data.length = 0;
2199 wrqu.data.flags = 0;
2200 wireless_send_event(priv->net_dev, SIOCGIWSCAN, &wrqu, NULL);
2201}
2202
2203static void ipw2100_scan_event_later(struct work_struct *work)
2204{
2205 send_scan_event(container_of(work, struct ipw2100_priv,
2206 scan_event_later.work));
2207}
2208
2209static void ipw2100_scan_event_now(struct work_struct *work)
2210{
2211 send_scan_event(container_of(work, struct ipw2100_priv,
2212 scan_event_now));
2213}
2214
James Ketrenos2c86c272005-03-23 17:32:29 -06002215static void isr_scan_complete(struct ipw2100_priv *priv, u32 status)
2216{
2217 IPW_DEBUG_SCAN("scan complete\n");
2218 /* Age the scan results... */
2219 priv->ieee->scans++;
2220 priv->status &= ~STATUS_SCANNING;
Dan Williamsd20c6782007-10-10 12:28:07 -04002221
2222 /* Only userspace-requested scan completion events go out immediately */
2223 if (!priv->user_requested_scan) {
2224 if (!delayed_work_pending(&priv->scan_event_later))
Tejun Heobcb6d912011-01-26 12:12:50 +01002225 schedule_delayed_work(&priv->scan_event_later,
2226 round_jiffies_relative(msecs_to_jiffies(4000)));
Dan Williamsd20c6782007-10-10 12:28:07 -04002227 } else {
2228 priv->user_requested_scan = 0;
2229 cancel_delayed_work(&priv->scan_event_later);
Tejun Heobcb6d912011-01-26 12:12:50 +01002230 schedule_work(&priv->scan_event_now);
Dan Williamsd20c6782007-10-10 12:28:07 -04002231 }
James Ketrenos2c86c272005-03-23 17:32:29 -06002232}
2233
Brice Goglin0f52bf92005-12-01 01:41:46 -08002234#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06002235#define IPW2100_HANDLER(v, f) { v, f, # v }
2236struct ipw2100_status_indicator {
2237 int status;
James Ketrenosee8e3652005-09-14 09:47:29 -05002238 void (*cb) (struct ipw2100_priv * priv, u32 status);
James Ketrenos2c86c272005-03-23 17:32:29 -06002239 char *name;
2240};
2241#else
2242#define IPW2100_HANDLER(v, f) { v, f }
2243struct ipw2100_status_indicator {
2244 int status;
James Ketrenosee8e3652005-09-14 09:47:29 -05002245 void (*cb) (struct ipw2100_priv * priv, u32 status);
James Ketrenos2c86c272005-03-23 17:32:29 -06002246};
Brice Goglin0f52bf92005-12-01 01:41:46 -08002247#endif /* CONFIG_IPW2100_DEBUG */
James Ketrenos2c86c272005-03-23 17:32:29 -06002248
2249static void isr_indicate_scanning(struct ipw2100_priv *priv, u32 status)
2250{
2251 IPW_DEBUG_SCAN("Scanning...\n");
2252 priv->status |= STATUS_SCANNING;
2253}
2254
Jiri Bencc4aee8c2005-08-25 20:04:43 -04002255static const struct ipw2100_status_indicator status_handlers[] = {
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01002256 IPW2100_HANDLER(IPW_STATE_INITIALIZED, NULL),
2257 IPW2100_HANDLER(IPW_STATE_COUNTRY_FOUND, NULL),
James Ketrenos2c86c272005-03-23 17:32:29 -06002258 IPW2100_HANDLER(IPW_STATE_ASSOCIATED, isr_indicate_associated),
2259 IPW2100_HANDLER(IPW_STATE_ASSN_LOST, isr_indicate_association_lost),
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01002260 IPW2100_HANDLER(IPW_STATE_ASSN_CHANGED, NULL),
James Ketrenos2c86c272005-03-23 17:32:29 -06002261 IPW2100_HANDLER(IPW_STATE_SCAN_COMPLETE, isr_scan_complete),
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01002262 IPW2100_HANDLER(IPW_STATE_ENTERED_PSP, NULL),
2263 IPW2100_HANDLER(IPW_STATE_LEFT_PSP, NULL),
James Ketrenos2c86c272005-03-23 17:32:29 -06002264 IPW2100_HANDLER(IPW_STATE_RF_KILL, isr_indicate_rf_kill),
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01002265 IPW2100_HANDLER(IPW_STATE_DISABLED, NULL),
2266 IPW2100_HANDLER(IPW_STATE_POWER_DOWN, NULL),
James Ketrenos2c86c272005-03-23 17:32:29 -06002267 IPW2100_HANDLER(IPW_STATE_SCANNING, isr_indicate_scanning),
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01002268 IPW2100_HANDLER(-1, NULL)
James Ketrenos2c86c272005-03-23 17:32:29 -06002269};
2270
James Ketrenos2c86c272005-03-23 17:32:29 -06002271static void isr_status_change(struct ipw2100_priv *priv, int status)
2272{
2273 int i;
2274
2275 if (status == IPW_STATE_SCANNING &&
2276 priv->status & STATUS_ASSOCIATED &&
2277 !(priv->status & STATUS_SCANNING)) {
2278 IPW_DEBUG_INFO("Scan detected while associated, with "
2279 "no scan request. Restarting firmware.\n");
2280
2281 /* Wake up any sleeping jobs */
2282 schedule_reset(priv);
2283 }
2284
2285 for (i = 0; status_handlers[i].status != -1; i++) {
2286 if (status == status_handlers[i].status) {
2287 IPW_DEBUG_NOTIF("Status change: %s\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05002288 status_handlers[i].name);
James Ketrenos2c86c272005-03-23 17:32:29 -06002289 if (status_handlers[i].cb)
2290 status_handlers[i].cb(priv, status);
2291 priv->wstats.status = status;
2292 return;
2293 }
2294 }
2295
2296 IPW_DEBUG_NOTIF("unknown status received: %04x\n", status);
2297}
2298
James Ketrenosee8e3652005-09-14 09:47:29 -05002299static void isr_rx_complete_command(struct ipw2100_priv *priv,
2300 struct ipw2100_cmd_header *cmd)
James Ketrenos2c86c272005-03-23 17:32:29 -06002301{
Brice Goglin0f52bf92005-12-01 01:41:46 -08002302#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06002303 if (cmd->host_command_reg < ARRAY_SIZE(command_types)) {
2304 IPW_DEBUG_HC("Command completed '%s (%d)'\n",
2305 command_types[cmd->host_command_reg],
2306 cmd->host_command_reg);
2307 }
2308#endif
2309 if (cmd->host_command_reg == HOST_COMPLETE)
2310 priv->status |= STATUS_ENABLED;
2311
2312 if (cmd->host_command_reg == CARD_DISABLE)
2313 priv->status &= ~STATUS_ENABLED;
2314
2315 priv->status &= ~STATUS_CMD_ACTIVE;
2316
2317 wake_up_interruptible(&priv->wait_command_queue);
2318}
2319
Brice Goglin0f52bf92005-12-01 01:41:46 -08002320#ifdef CONFIG_IPW2100_DEBUG
Jiri Bencc4aee8c2005-08-25 20:04:43 -04002321static const char *frame_types[] = {
James Ketrenos2c86c272005-03-23 17:32:29 -06002322 "COMMAND_STATUS_VAL",
2323 "STATUS_CHANGE_VAL",
2324 "P80211_DATA_VAL",
2325 "P8023_DATA_VAL",
2326 "HOST_NOTIFICATION_VAL"
2327};
2328#endif
2329
Arjan van de Ven858119e2006-01-14 13:20:43 -08002330static int ipw2100_alloc_skb(struct ipw2100_priv *priv,
James Ketrenosee8e3652005-09-14 09:47:29 -05002331 struct ipw2100_rx_packet *packet)
James Ketrenos2c86c272005-03-23 17:32:29 -06002332{
2333 packet->skb = dev_alloc_skb(sizeof(struct ipw2100_rx));
2334 if (!packet->skb)
2335 return -ENOMEM;
2336
2337 packet->rxp = (struct ipw2100_rx *)packet->skb->data;
2338 packet->dma_addr = pci_map_single(priv->pci_dev, packet->skb->data,
2339 sizeof(struct ipw2100_rx),
2340 PCI_DMA_FROMDEVICE);
2341 /* NOTE: pci_map_single does not return an error code, and 0 is a valid
2342 * dma_addr */
2343
2344 return 0;
2345}
2346
James Ketrenos2c86c272005-03-23 17:32:29 -06002347#define SEARCH_ERROR 0xffffffff
2348#define SEARCH_FAIL 0xfffffffe
2349#define SEARCH_SUCCESS 0xfffffff0
2350#define SEARCH_DISCARD 0
2351#define SEARCH_SNAPSHOT 1
2352
2353#define SNAPSHOT_ADDR(ofs) (priv->snapshot[((ofs) >> 12) & 0xff] + ((ofs) & 0xfff))
Zhu Yi3c5eca52006-01-24 13:49:26 +08002354static void ipw2100_snapshot_free(struct ipw2100_priv *priv)
2355{
2356 int i;
2357 if (!priv->snapshot[0])
2358 return;
2359 for (i = 0; i < 0x30; i++)
2360 kfree(priv->snapshot[i]);
2361 priv->snapshot[0] = NULL;
2362}
2363
Robert P. J. Dayae800312007-01-31 02:39:40 -05002364#ifdef IPW2100_DEBUG_C3
Arjan van de Ven858119e2006-01-14 13:20:43 -08002365static int ipw2100_snapshot_alloc(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06002366{
2367 int i;
2368 if (priv->snapshot[0])
2369 return 1;
2370 for (i = 0; i < 0x30; i++) {
Robert P. J. Day5cbded52006-12-13 00:35:56 -08002371 priv->snapshot[i] = kmalloc(0x1000, GFP_ATOMIC);
James Ketrenos2c86c272005-03-23 17:32:29 -06002372 if (!priv->snapshot[i]) {
2373 IPW_DEBUG_INFO("%s: Error allocating snapshot "
James Ketrenosee8e3652005-09-14 09:47:29 -05002374 "buffer %d\n", priv->net_dev->name, i);
James Ketrenos2c86c272005-03-23 17:32:29 -06002375 while (i > 0)
2376 kfree(priv->snapshot[--i]);
2377 priv->snapshot[0] = NULL;
2378 return 0;
2379 }
2380 }
2381
2382 return 1;
2383}
2384
Arjan van de Ven858119e2006-01-14 13:20:43 -08002385static u32 ipw2100_match_buf(struct ipw2100_priv *priv, u8 * in_buf,
James Ketrenos2c86c272005-03-23 17:32:29 -06002386 size_t len, int mode)
2387{
2388 u32 i, j;
2389 u32 tmp;
2390 u8 *s, *d;
2391 u32 ret;
2392
2393 s = in_buf;
2394 if (mode == SEARCH_SNAPSHOT) {
2395 if (!ipw2100_snapshot_alloc(priv))
2396 mode = SEARCH_DISCARD;
2397 }
2398
2399 for (ret = SEARCH_FAIL, i = 0; i < 0x30000; i += 4) {
2400 read_nic_dword(priv->net_dev, i, &tmp);
2401 if (mode == SEARCH_SNAPSHOT)
James Ketrenosee8e3652005-09-14 09:47:29 -05002402 *(u32 *) SNAPSHOT_ADDR(i) = tmp;
James Ketrenos2c86c272005-03-23 17:32:29 -06002403 if (ret == SEARCH_FAIL) {
James Ketrenosee8e3652005-09-14 09:47:29 -05002404 d = (u8 *) & tmp;
James Ketrenos2c86c272005-03-23 17:32:29 -06002405 for (j = 0; j < 4; j++) {
2406 if (*s != *d) {
2407 s = in_buf;
2408 continue;
2409 }
2410
2411 s++;
2412 d++;
2413
2414 if ((s - in_buf) == len)
2415 ret = (i + j) - len + 1;
2416 }
2417 } else if (mode == SEARCH_DISCARD)
2418 return ret;
2419 }
2420
2421 return ret;
2422}
Zhu Yi3c5eca52006-01-24 13:49:26 +08002423#endif
James Ketrenos2c86c272005-03-23 17:32:29 -06002424
2425/*
2426 *
2427 * 0) Disconnect the SKB from the firmware (just unmap)
2428 * 1) Pack the ETH header into the SKB
2429 * 2) Pass the SKB to the network stack
2430 *
2431 * When packet is provided by the firmware, it contains the following:
2432 *
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04002433 * . libipw_hdr
2434 * . libipw_snap_hdr
James Ketrenos2c86c272005-03-23 17:32:29 -06002435 *
2436 * The size of the constructed ethernet
2437 *
2438 */
Robert P. J. Dayae800312007-01-31 02:39:40 -05002439#ifdef IPW2100_RX_DEBUG
Jiri Bencc4aee8c2005-08-25 20:04:43 -04002440static u8 packet_data[IPW_RX_NIC_BUFFER_LENGTH];
James Ketrenos2c86c272005-03-23 17:32:29 -06002441#endif
2442
Arjan van de Ven858119e2006-01-14 13:20:43 -08002443static void ipw2100_corruption_detected(struct ipw2100_priv *priv, int i)
James Ketrenos2c86c272005-03-23 17:32:29 -06002444{
Robert P. J. Dayae800312007-01-31 02:39:40 -05002445#ifdef IPW2100_DEBUG_C3
James Ketrenos2c86c272005-03-23 17:32:29 -06002446 struct ipw2100_status *status = &priv->status_queue.drv[i];
2447 u32 match, reg;
2448 int j;
2449#endif
James Ketrenos2c86c272005-03-23 17:32:29 -06002450
Zhu Yia1e695a2005-07-04 14:06:00 +08002451 IPW_DEBUG_INFO(": PCI latency error detected at 0x%04zX.\n",
2452 i * sizeof(struct ipw2100_status));
James Ketrenos2c86c272005-03-23 17:32:29 -06002453
Robert P. J. Dayae800312007-01-31 02:39:40 -05002454#ifdef IPW2100_DEBUG_C3
Nick Andrew877d0312009-01-26 11:06:57 +01002455 /* Halt the firmware so we can get a good image */
James Ketrenos2c86c272005-03-23 17:32:29 -06002456 write_register(priv->net_dev, IPW_REG_RESET_REG,
2457 IPW_AUX_HOST_RESET_REG_STOP_MASTER);
2458 j = 5;
2459 do {
2460 udelay(IPW_WAIT_RESET_MASTER_ASSERT_COMPLETE_DELAY);
2461 read_register(priv->net_dev, IPW_REG_RESET_REG, &reg);
2462
2463 if (reg & IPW_AUX_HOST_RESET_REG_MASTER_DISABLED)
2464 break;
James Ketrenosee8e3652005-09-14 09:47:29 -05002465 } while (j--);
James Ketrenos2c86c272005-03-23 17:32:29 -06002466
James Ketrenosee8e3652005-09-14 09:47:29 -05002467 match = ipw2100_match_buf(priv, (u8 *) status,
James Ketrenos2c86c272005-03-23 17:32:29 -06002468 sizeof(struct ipw2100_status),
2469 SEARCH_SNAPSHOT);
2470 if (match < SEARCH_SUCCESS)
2471 IPW_DEBUG_INFO("%s: DMA status match in Firmware at "
2472 "offset 0x%06X, length %d:\n",
2473 priv->net_dev->name, match,
2474 sizeof(struct ipw2100_status));
2475 else
2476 IPW_DEBUG_INFO("%s: No DMA status match in "
2477 "Firmware.\n", priv->net_dev->name);
2478
James Ketrenosee8e3652005-09-14 09:47:29 -05002479 printk_buf((u8 *) priv->status_queue.drv,
James Ketrenos2c86c272005-03-23 17:32:29 -06002480 sizeof(struct ipw2100_status) * RX_QUEUE_LENGTH);
2481#endif
2482
2483 priv->fatal_error = IPW2100_ERR_C3_CORRUPTION;
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00002484 priv->net_dev->stats.rx_errors++;
James Ketrenos2c86c272005-03-23 17:32:29 -06002485 schedule_reset(priv);
2486}
2487
Arjan van de Ven858119e2006-01-14 13:20:43 -08002488static void isr_rx(struct ipw2100_priv *priv, int i,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04002489 struct libipw_rx_stats *stats)
James Ketrenos2c86c272005-03-23 17:32:29 -06002490{
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00002491 struct net_device *dev = priv->net_dev;
James Ketrenos2c86c272005-03-23 17:32:29 -06002492 struct ipw2100_status *status = &priv->status_queue.drv[i];
2493 struct ipw2100_rx_packet *packet = &priv->rx_buffers[i];
2494
2495 IPW_DEBUG_RX("Handler...\n");
2496
2497 if (unlikely(status->frame_size > skb_tailroom(packet->skb))) {
2498 IPW_DEBUG_INFO("%s: frame_size (%u) > skb_tailroom (%u)!"
2499 " Dropping.\n",
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00002500 dev->name,
James Ketrenos2c86c272005-03-23 17:32:29 -06002501 status->frame_size, skb_tailroom(packet->skb));
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00002502 dev->stats.rx_errors++;
James Ketrenos2c86c272005-03-23 17:32:29 -06002503 return;
2504 }
2505
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00002506 if (unlikely(!netif_running(dev))) {
2507 dev->stats.rx_errors++;
James Ketrenos2c86c272005-03-23 17:32:29 -06002508 priv->wstats.discard.misc++;
2509 IPW_DEBUG_DROP("Dropping packet while interface is not up.\n");
2510 return;
2511 }
James Ketrenos2c86c272005-03-23 17:32:29 -06002512
2513 if (unlikely(priv->ieee->iw_mode != IW_MODE_MONITOR &&
James Ketrenosee8e3652005-09-14 09:47:29 -05002514 !(priv->status & STATUS_ASSOCIATED))) {
James Ketrenos2c86c272005-03-23 17:32:29 -06002515 IPW_DEBUG_DROP("Dropping packet while not associated.\n");
2516 priv->wstats.discard.misc++;
2517 return;
2518 }
2519
James Ketrenos2c86c272005-03-23 17:32:29 -06002520 pci_unmap_single(priv->pci_dev,
2521 packet->dma_addr,
James Ketrenosee8e3652005-09-14 09:47:29 -05002522 sizeof(struct ipw2100_rx), PCI_DMA_FROMDEVICE);
James Ketrenos2c86c272005-03-23 17:32:29 -06002523
2524 skb_put(packet->skb, status->frame_size);
2525
Robert P. J. Dayae800312007-01-31 02:39:40 -05002526#ifdef IPW2100_RX_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06002527 /* Make a copy of the frame so we can dump it to the logs if
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04002528 * libipw_rx fails */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002529 skb_copy_from_linear_data(packet->skb, packet_data,
2530 min_t(u32, status->frame_size,
2531 IPW_RX_NIC_BUFFER_LENGTH));
James Ketrenos2c86c272005-03-23 17:32:29 -06002532#endif
2533
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04002534 if (!libipw_rx(priv->ieee, packet->skb, stats)) {
Robert P. J. Dayae800312007-01-31 02:39:40 -05002535#ifdef IPW2100_RX_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06002536 IPW_DEBUG_DROP("%s: Non consumed packet:\n",
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00002537 dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06002538 printk_buf(IPW_DL_DROP, packet_data, status->frame_size);
2539#endif
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00002540 dev->stats.rx_errors++;
James Ketrenos2c86c272005-03-23 17:32:29 -06002541
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04002542 /* libipw_rx failed, so it didn't free the SKB */
James Ketrenos2c86c272005-03-23 17:32:29 -06002543 dev_kfree_skb_any(packet->skb);
2544 packet->skb = NULL;
2545 }
2546
2547 /* We need to allocate a new SKB and attach it to the RDB. */
2548 if (unlikely(ipw2100_alloc_skb(priv, packet))) {
Jiri Benc797b4f72005-08-25 20:03:27 -04002549 printk(KERN_WARNING DRV_NAME ": "
James Ketrenosee8e3652005-09-14 09:47:29 -05002550 "%s: Unable to allocate SKB onto RBD ring - disabling "
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00002551 "adapter.\n", dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06002552 /* TODO: schedule adapter shutdown */
2553 IPW_DEBUG_INFO("TODO: Shutdown adapter...\n");
2554 }
2555
2556 /* Update the RDB entry */
2557 priv->rx_queue.drv[i].host_addr = packet->dma_addr;
2558}
2559
Stefan Rompf15745a72006-02-21 18:36:17 +08002560#ifdef CONFIG_IPW2100_MONITOR
2561
2562static void isr_rx_monitor(struct ipw2100_priv *priv, int i,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04002563 struct libipw_rx_stats *stats)
Stefan Rompf15745a72006-02-21 18:36:17 +08002564{
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00002565 struct net_device *dev = priv->net_dev;
Stefan Rompf15745a72006-02-21 18:36:17 +08002566 struct ipw2100_status *status = &priv->status_queue.drv[i];
2567 struct ipw2100_rx_packet *packet = &priv->rx_buffers[i];
2568
Stefan Rompf15745a72006-02-21 18:36:17 +08002569 /* Magic struct that slots into the radiotap header -- no reason
2570 * to build this manually element by element, we can write it much
2571 * more efficiently than we can parse it. ORDER MATTERS HERE */
2572 struct ipw_rt_hdr {
2573 struct ieee80211_radiotap_header rt_hdr;
2574 s8 rt_dbmsignal; /* signal in dbM, kluged to signed */
2575 } *ipw_rt;
2576
Zhu Yicae16292006-02-21 18:41:14 +08002577 IPW_DEBUG_RX("Handler...\n");
2578
2579 if (unlikely(status->frame_size > skb_tailroom(packet->skb) -
2580 sizeof(struct ipw_rt_hdr))) {
Stefan Rompf15745a72006-02-21 18:36:17 +08002581 IPW_DEBUG_INFO("%s: frame_size (%u) > skb_tailroom (%u)!"
2582 " Dropping.\n",
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00002583 dev->name,
Zhu Yicae16292006-02-21 18:41:14 +08002584 status->frame_size,
2585 skb_tailroom(packet->skb));
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00002586 dev->stats.rx_errors++;
Stefan Rompf15745a72006-02-21 18:36:17 +08002587 return;
2588 }
2589
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00002590 if (unlikely(!netif_running(dev))) {
2591 dev->stats.rx_errors++;
Stefan Rompf15745a72006-02-21 18:36:17 +08002592 priv->wstats.discard.misc++;
2593 IPW_DEBUG_DROP("Dropping packet while interface is not up.\n");
2594 return;
2595 }
2596
2597 if (unlikely(priv->config & CFG_CRC_CHECK &&
2598 status->flags & IPW_STATUS_FLAG_CRC_ERROR)) {
2599 IPW_DEBUG_RX("CRC error in packet. Dropping.\n");
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00002600 dev->stats.rx_errors++;
Stefan Rompf15745a72006-02-21 18:36:17 +08002601 return;
2602 }
2603
Zhu Yicae16292006-02-21 18:41:14 +08002604 pci_unmap_single(priv->pci_dev, packet->dma_addr,
Stefan Rompf15745a72006-02-21 18:36:17 +08002605 sizeof(struct ipw2100_rx), PCI_DMA_FROMDEVICE);
2606 memmove(packet->skb->data + sizeof(struct ipw_rt_hdr),
2607 packet->skb->data, status->frame_size);
2608
2609 ipw_rt = (struct ipw_rt_hdr *) packet->skb->data;
2610
2611 ipw_rt->rt_hdr.it_version = PKTHDR_RADIOTAP_VERSION;
2612 ipw_rt->rt_hdr.it_pad = 0; /* always good to zero */
Al Viro1edd3a52007-12-21 00:15:18 -05002613 ipw_rt->rt_hdr.it_len = cpu_to_le16(sizeof(struct ipw_rt_hdr)); /* total hdr+data */
Stefan Rompf15745a72006-02-21 18:36:17 +08002614
Al Viro1edd3a52007-12-21 00:15:18 -05002615 ipw_rt->rt_hdr.it_present = cpu_to_le32(1 << IEEE80211_RADIOTAP_DBM_ANTSIGNAL);
Stefan Rompf15745a72006-02-21 18:36:17 +08002616
2617 ipw_rt->rt_dbmsignal = status->rssi + IPW2100_RSSI_TO_DBM;
2618
2619 skb_put(packet->skb, status->frame_size + sizeof(struct ipw_rt_hdr));
2620
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04002621 if (!libipw_rx(priv->ieee, packet->skb, stats)) {
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00002622 dev->stats.rx_errors++;
Stefan Rompf15745a72006-02-21 18:36:17 +08002623
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04002624 /* libipw_rx failed, so it didn't free the SKB */
Stefan Rompf15745a72006-02-21 18:36:17 +08002625 dev_kfree_skb_any(packet->skb);
2626 packet->skb = NULL;
2627 }
2628
2629 /* We need to allocate a new SKB and attach it to the RDB. */
2630 if (unlikely(ipw2100_alloc_skb(priv, packet))) {
2631 IPW_DEBUG_WARNING(
2632 "%s: Unable to allocate SKB onto RBD ring - disabling "
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00002633 "adapter.\n", dev->name);
Stefan Rompf15745a72006-02-21 18:36:17 +08002634 /* TODO: schedule adapter shutdown */
2635 IPW_DEBUG_INFO("TODO: Shutdown adapter...\n");
2636 }
2637
2638 /* Update the RDB entry */
2639 priv->rx_queue.drv[i].host_addr = packet->dma_addr;
2640}
2641
2642#endif
2643
Arjan van de Ven858119e2006-01-14 13:20:43 -08002644static int ipw2100_corruption_check(struct ipw2100_priv *priv, int i)
James Ketrenos2c86c272005-03-23 17:32:29 -06002645{
2646 struct ipw2100_status *status = &priv->status_queue.drv[i];
2647 struct ipw2100_rx *u = priv->rx_buffers[i].rxp;
2648 u16 frame_type = status->status_fields & STATUS_TYPE_MASK;
2649
2650 switch (frame_type) {
2651 case COMMAND_STATUS_VAL:
2652 return (status->frame_size != sizeof(u->rx_data.command));
2653 case STATUS_CHANGE_VAL:
2654 return (status->frame_size != sizeof(u->rx_data.status));
2655 case HOST_NOTIFICATION_VAL:
2656 return (status->frame_size < sizeof(u->rx_data.notification));
2657 case P80211_DATA_VAL:
2658 case P8023_DATA_VAL:
2659#ifdef CONFIG_IPW2100_MONITOR
2660 return 0;
2661#else
Al Viro1edd3a52007-12-21 00:15:18 -05002662 switch (WLAN_FC_GET_TYPE(le16_to_cpu(u->rx_data.header.frame_ctl))) {
James Ketrenos2c86c272005-03-23 17:32:29 -06002663 case IEEE80211_FTYPE_MGMT:
2664 case IEEE80211_FTYPE_CTL:
2665 return 0;
2666 case IEEE80211_FTYPE_DATA:
2667 return (status->frame_size >
2668 IPW_MAX_802_11_PAYLOAD_LENGTH);
2669 }
2670#endif
2671 }
2672
2673 return 1;
2674}
2675
2676/*
2677 * ipw2100 interrupts are disabled at this point, and the ISR
2678 * is the only code that calls this method. So, we do not need
2679 * to play with any locks.
2680 *
2681 * RX Queue works as follows:
2682 *
2683 * Read index - firmware places packet in entry identified by the
2684 * Read index and advances Read index. In this manner,
2685 * Read index will always point to the next packet to
2686 * be filled--but not yet valid.
2687 *
2688 * Write index - driver fills this entry with an unused RBD entry.
2689 * This entry has not filled by the firmware yet.
2690 *
2691 * In between the W and R indexes are the RBDs that have been received
2692 * but not yet processed.
2693 *
2694 * The process of handling packets will start at WRITE + 1 and advance
2695 * until it reaches the READ index.
2696 *
2697 * The WRITE index is cached in the variable 'priv->rx_queue.next'.
2698 *
2699 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002700static void __ipw2100_rx_process(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06002701{
2702 struct ipw2100_bd_queue *rxq = &priv->rx_queue;
2703 struct ipw2100_status_queue *sq = &priv->status_queue;
2704 struct ipw2100_rx_packet *packet;
2705 u16 frame_type;
2706 u32 r, w, i, s;
2707 struct ipw2100_rx *u;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04002708 struct libipw_rx_stats stats = {
James Ketrenos2c86c272005-03-23 17:32:29 -06002709 .mac_time = jiffies,
2710 };
2711
2712 read_register(priv->net_dev, IPW_MEM_HOST_SHARED_RX_READ_INDEX, &r);
2713 read_register(priv->net_dev, IPW_MEM_HOST_SHARED_RX_WRITE_INDEX, &w);
2714
2715 if (r >= rxq->entries) {
2716 IPW_DEBUG_RX("exit - bad read index\n");
2717 return;
2718 }
2719
2720 i = (rxq->next + 1) % rxq->entries;
2721 s = i;
2722 while (i != r) {
2723 /* IPW_DEBUG_RX("r = %d : w = %d : processing = %d\n",
2724 r, rxq->next, i); */
2725
2726 packet = &priv->rx_buffers[i];
2727
James Ketrenos2c86c272005-03-23 17:32:29 -06002728 /* Sync the DMA for the RX buffer so CPU is sure to get
2729 * the correct values */
2730 pci_dma_sync_single_for_cpu(priv->pci_dev, packet->dma_addr,
2731 sizeof(struct ipw2100_rx),
2732 PCI_DMA_FROMDEVICE);
2733
2734 if (unlikely(ipw2100_corruption_check(priv, i))) {
2735 ipw2100_corruption_detected(priv, i);
2736 goto increment;
2737 }
2738
2739 u = packet->rxp;
James Ketrenosee8e3652005-09-14 09:47:29 -05002740 frame_type = sq->drv[i].status_fields & STATUS_TYPE_MASK;
James Ketrenos2c86c272005-03-23 17:32:29 -06002741 stats.rssi = sq->drv[i].rssi + IPW2100_RSSI_TO_DBM;
2742 stats.len = sq->drv[i].frame_size;
2743
2744 stats.mask = 0;
2745 if (stats.rssi != 0)
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04002746 stats.mask |= LIBIPW_STATMASK_RSSI;
2747 stats.freq = LIBIPW_24GHZ_BAND;
James Ketrenos2c86c272005-03-23 17:32:29 -06002748
James Ketrenosee8e3652005-09-14 09:47:29 -05002749 IPW_DEBUG_RX("%s: '%s' frame type received (%d).\n",
2750 priv->net_dev->name, frame_types[frame_type],
2751 stats.len);
James Ketrenos2c86c272005-03-23 17:32:29 -06002752
2753 switch (frame_type) {
2754 case COMMAND_STATUS_VAL:
2755 /* Reset Rx watchdog */
James Ketrenosee8e3652005-09-14 09:47:29 -05002756 isr_rx_complete_command(priv, &u->rx_data.command);
James Ketrenos2c86c272005-03-23 17:32:29 -06002757 break;
2758
2759 case STATUS_CHANGE_VAL:
2760 isr_status_change(priv, u->rx_data.status);
2761 break;
2762
2763 case P80211_DATA_VAL:
2764 case P8023_DATA_VAL:
2765#ifdef CONFIG_IPW2100_MONITOR
2766 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
Stefan Rompf15745a72006-02-21 18:36:17 +08002767 isr_rx_monitor(priv, i, &stats);
James Ketrenos2c86c272005-03-23 17:32:29 -06002768 break;
2769 }
2770#endif
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04002771 if (stats.len < sizeof(struct libipw_hdr_3addr))
James Ketrenos2c86c272005-03-23 17:32:29 -06002772 break;
Al Viro1edd3a52007-12-21 00:15:18 -05002773 switch (WLAN_FC_GET_TYPE(le16_to_cpu(u->rx_data.header.frame_ctl))) {
James Ketrenos2c86c272005-03-23 17:32:29 -06002774 case IEEE80211_FTYPE_MGMT:
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04002775 libipw_rx_mgt(priv->ieee,
James Ketrenosee8e3652005-09-14 09:47:29 -05002776 &u->rx_data.header, &stats);
James Ketrenos2c86c272005-03-23 17:32:29 -06002777 break;
2778
2779 case IEEE80211_FTYPE_CTL:
2780 break;
2781
2782 case IEEE80211_FTYPE_DATA:
2783 isr_rx(priv, i, &stats);
2784 break;
2785
2786 }
2787 break;
2788 }
2789
James Ketrenosee8e3652005-09-14 09:47:29 -05002790 increment:
James Ketrenos2c86c272005-03-23 17:32:29 -06002791 /* clear status field associated with this RBD */
2792 rxq->drv[i].status.info.field = 0;
2793
2794 i = (i + 1) % rxq->entries;
2795 }
2796
2797 if (i != s) {
2798 /* backtrack one entry, wrapping to end if at 0 */
2799 rxq->next = (i ? i : rxq->entries) - 1;
2800
2801 write_register(priv->net_dev,
James Ketrenosee8e3652005-09-14 09:47:29 -05002802 IPW_MEM_HOST_SHARED_RX_WRITE_INDEX, rxq->next);
James Ketrenos2c86c272005-03-23 17:32:29 -06002803 }
2804}
2805
James Ketrenos2c86c272005-03-23 17:32:29 -06002806/*
2807 * __ipw2100_tx_process
2808 *
2809 * This routine will determine whether the next packet on
2810 * the fw_pend_list has been processed by the firmware yet.
2811 *
2812 * If not, then it does nothing and returns.
2813 *
2814 * If so, then it removes the item from the fw_pend_list, frees
2815 * any associated storage, and places the item back on the
2816 * free list of its source (either msg_free_list or tx_free_list)
2817 *
2818 * TX Queue works as follows:
2819 *
2820 * Read index - points to the next TBD that the firmware will
2821 * process. The firmware will read the data, and once
2822 * done processing, it will advance the Read index.
2823 *
2824 * Write index - driver fills this entry with an constructed TBD
2825 * entry. The Write index is not advanced until the
2826 * packet has been configured.
2827 *
2828 * In between the W and R indexes are the TBDs that have NOT been
2829 * processed. Lagging behind the R index are packets that have
2830 * been processed but have not been freed by the driver.
2831 *
2832 * In order to free old storage, an internal index will be maintained
2833 * that points to the next packet to be freed. When all used
2834 * packets have been freed, the oldest index will be the same as the
2835 * firmware's read index.
2836 *
2837 * The OLDEST index is cached in the variable 'priv->tx_queue.oldest'
2838 *
2839 * Because the TBD structure can not contain arbitrary data, the
2840 * driver must keep an internal queue of cached allocations such that
2841 * it can put that data back into the tx_free_list and msg_free_list
2842 * for use by future command and data packets.
2843 *
2844 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002845static int __ipw2100_tx_process(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06002846{
2847 struct ipw2100_bd_queue *txq = &priv->tx_queue;
James Ketrenosee8e3652005-09-14 09:47:29 -05002848 struct ipw2100_bd *tbd;
James Ketrenos2c86c272005-03-23 17:32:29 -06002849 struct list_head *element;
2850 struct ipw2100_tx_packet *packet;
2851 int descriptors_used;
2852 int e, i;
2853 u32 r, w, frag_num = 0;
2854
2855 if (list_empty(&priv->fw_pend_list))
2856 return 0;
2857
2858 element = priv->fw_pend_list.next;
2859
2860 packet = list_entry(element, struct ipw2100_tx_packet, list);
James Ketrenosee8e3652005-09-14 09:47:29 -05002861 tbd = &txq->drv[packet->index];
James Ketrenos2c86c272005-03-23 17:32:29 -06002862
2863 /* Determine how many TBD entries must be finished... */
2864 switch (packet->type) {
2865 case COMMAND:
2866 /* COMMAND uses only one slot; don't advance */
2867 descriptors_used = 1;
2868 e = txq->oldest;
2869 break;
2870
2871 case DATA:
2872 /* DATA uses two slots; advance and loop position. */
2873 descriptors_used = tbd->num_fragments;
James Ketrenosee8e3652005-09-14 09:47:29 -05002874 frag_num = tbd->num_fragments - 1;
James Ketrenos2c86c272005-03-23 17:32:29 -06002875 e = txq->oldest + frag_num;
2876 e %= txq->entries;
2877 break;
2878
2879 default:
Jiri Benc797b4f72005-08-25 20:03:27 -04002880 printk(KERN_WARNING DRV_NAME ": %s: Bad fw_pend_list entry!\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05002881 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06002882 return 0;
2883 }
2884
2885 /* if the last TBD is not done by NIC yet, then packet is
2886 * not ready to be released.
2887 *
2888 */
2889 read_register(priv->net_dev, IPW_MEM_HOST_SHARED_TX_QUEUE_READ_INDEX,
2890 &r);
2891 read_register(priv->net_dev, IPW_MEM_HOST_SHARED_TX_QUEUE_WRITE_INDEX,
2892 &w);
2893 if (w != txq->next)
Jiri Benc797b4f72005-08-25 20:03:27 -04002894 printk(KERN_WARNING DRV_NAME ": %s: write index mismatch\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06002895 priv->net_dev->name);
2896
James Ketrenosee8e3652005-09-14 09:47:29 -05002897 /*
James Ketrenos2c86c272005-03-23 17:32:29 -06002898 * txq->next is the index of the last packet written txq->oldest is
2899 * the index of the r is the index of the next packet to be read by
2900 * firmware
2901 */
2902
James Ketrenos2c86c272005-03-23 17:32:29 -06002903 /*
2904 * Quick graphic to help you visualize the following
2905 * if / else statement
2906 *
2907 * ===>| s---->|===============
2908 * e>|
2909 * | a | b | c | d | e | f | g | h | i | j | k | l
2910 * r---->|
2911 * w
2912 *
2913 * w - updated by driver
2914 * r - updated by firmware
2915 * s - start of oldest BD entry (txq->oldest)
2916 * e - end of oldest BD entry
2917 *
2918 */
2919 if (!((r <= w && (e < r || e >= w)) || (e < r && e >= w))) {
2920 IPW_DEBUG_TX("exit - no processed packets ready to release.\n");
2921 return 0;
2922 }
2923
2924 list_del(element);
2925 DEC_STAT(&priv->fw_pend_stat);
2926
Brice Goglin0f52bf92005-12-01 01:41:46 -08002927#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06002928 {
Reinette Chatre21f8a732009-08-18 10:25:05 -07002929 i = txq->oldest;
James Ketrenosee8e3652005-09-14 09:47:29 -05002930 IPW_DEBUG_TX("TX%d V=%p P=%04X T=%04X L=%d\n", i,
2931 &txq->drv[i],
2932 (u32) (txq->nic + i * sizeof(struct ipw2100_bd)),
2933 txq->drv[i].host_addr, txq->drv[i].buf_length);
James Ketrenos2c86c272005-03-23 17:32:29 -06002934
2935 if (packet->type == DATA) {
2936 i = (i + 1) % txq->entries;
2937
James Ketrenosee8e3652005-09-14 09:47:29 -05002938 IPW_DEBUG_TX("TX%d V=%p P=%04X T=%04X L=%d\n", i,
2939 &txq->drv[i],
2940 (u32) (txq->nic + i *
2941 sizeof(struct ipw2100_bd)),
2942 (u32) txq->drv[i].host_addr,
2943 txq->drv[i].buf_length);
James Ketrenos2c86c272005-03-23 17:32:29 -06002944 }
2945 }
2946#endif
2947
2948 switch (packet->type) {
2949 case DATA:
2950 if (txq->drv[txq->oldest].status.info.fields.txType != 0)
Jiri Benc797b4f72005-08-25 20:03:27 -04002951 printk(KERN_WARNING DRV_NAME ": %s: Queue mismatch. "
James Ketrenos2c86c272005-03-23 17:32:29 -06002952 "Expecting DATA TBD but pulled "
2953 "something else: ids %d=%d.\n",
2954 priv->net_dev->name, txq->oldest, packet->index);
2955
2956 /* DATA packet; we have to unmap and free the SKB */
James Ketrenos2c86c272005-03-23 17:32:29 -06002957 for (i = 0; i < frag_num; i++) {
James Ketrenosee8e3652005-09-14 09:47:29 -05002958 tbd = &txq->drv[(packet->index + 1 + i) % txq->entries];
James Ketrenos2c86c272005-03-23 17:32:29 -06002959
James Ketrenosee8e3652005-09-14 09:47:29 -05002960 IPW_DEBUG_TX("TX%d P=%08x L=%d\n",
2961 (packet->index + 1 + i) % txq->entries,
2962 tbd->host_addr, tbd->buf_length);
James Ketrenos2c86c272005-03-23 17:32:29 -06002963
2964 pci_unmap_single(priv->pci_dev,
2965 tbd->host_addr,
James Ketrenosee8e3652005-09-14 09:47:29 -05002966 tbd->buf_length, PCI_DMA_TODEVICE);
James Ketrenos2c86c272005-03-23 17:32:29 -06002967 }
2968
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04002969 libipw_txb_free(packet->info.d_struct.txb);
James Ketrenos2c86c272005-03-23 17:32:29 -06002970 packet->info.d_struct.txb = NULL;
2971
2972 list_add_tail(element, &priv->tx_free_list);
2973 INC_STAT(&priv->tx_free_stat);
2974
2975 /* We have a free slot in the Tx queue, so wake up the
2976 * transmit layer if it is stopped. */
James Ketrenos82328352005-08-24 22:33:31 -05002977 if (priv->status & STATUS_ASSOCIATED)
James Ketrenos2c86c272005-03-23 17:32:29 -06002978 netif_wake_queue(priv->net_dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06002979
2980 /* A packet was processed by the hardware, so update the
2981 * watchdog */
2982 priv->net_dev->trans_start = jiffies;
2983
2984 break;
2985
2986 case COMMAND:
2987 if (txq->drv[txq->oldest].status.info.fields.txType != 1)
Jiri Benc797b4f72005-08-25 20:03:27 -04002988 printk(KERN_WARNING DRV_NAME ": %s: Queue mismatch. "
James Ketrenos2c86c272005-03-23 17:32:29 -06002989 "Expecting COMMAND TBD but pulled "
2990 "something else: ids %d=%d.\n",
2991 priv->net_dev->name, txq->oldest, packet->index);
2992
Brice Goglin0f52bf92005-12-01 01:41:46 -08002993#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06002994 if (packet->info.c_struct.cmd->host_command_reg <
Ahmed S. Darwish22d57432007-02-05 18:56:22 +02002995 ARRAY_SIZE(command_types))
James Ketrenosee8e3652005-09-14 09:47:29 -05002996 IPW_DEBUG_TX("Command '%s (%d)' processed: %d.\n",
2997 command_types[packet->info.c_struct.cmd->
2998 host_command_reg],
2999 packet->info.c_struct.cmd->
3000 host_command_reg,
3001 packet->info.c_struct.cmd->cmd_status_reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06003002#endif
3003
3004 list_add_tail(element, &priv->msg_free_list);
3005 INC_STAT(&priv->msg_free_stat);
3006 break;
3007 }
3008
3009 /* advance oldest used TBD pointer to start of next entry */
3010 txq->oldest = (e + 1) % txq->entries;
3011 /* increase available TBDs number */
3012 txq->available += descriptors_used;
3013 SET_STAT(&priv->txq_stat, txq->available);
3014
3015 IPW_DEBUG_TX("packet latency (send to process) %ld jiffies\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05003016 jiffies - packet->jiffy_start);
James Ketrenos2c86c272005-03-23 17:32:29 -06003017
3018 return (!list_empty(&priv->fw_pend_list));
3019}
3020
James Ketrenos2c86c272005-03-23 17:32:29 -06003021static inline void __ipw2100_tx_complete(struct ipw2100_priv *priv)
3022{
3023 int i = 0;
3024
James Ketrenosee8e3652005-09-14 09:47:29 -05003025 while (__ipw2100_tx_process(priv) && i < 200)
3026 i++;
James Ketrenos2c86c272005-03-23 17:32:29 -06003027
3028 if (i == 200) {
Jiri Benc19f7f742005-08-25 20:02:10 -04003029 printk(KERN_WARNING DRV_NAME ": "
James Ketrenos2c86c272005-03-23 17:32:29 -06003030 "%s: Driver is running slow (%d iters).\n",
3031 priv->net_dev->name, i);
3032 }
3033}
3034
Jiri Benc19f7f742005-08-25 20:02:10 -04003035static void ipw2100_tx_send_commands(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06003036{
3037 struct list_head *element;
3038 struct ipw2100_tx_packet *packet;
3039 struct ipw2100_bd_queue *txq = &priv->tx_queue;
3040 struct ipw2100_bd *tbd;
3041 int next = txq->next;
3042
3043 while (!list_empty(&priv->msg_pend_list)) {
3044 /* if there isn't enough space in TBD queue, then
3045 * don't stuff a new one in.
3046 * NOTE: 3 are needed as a command will take one,
3047 * and there is a minimum of 2 that must be
3048 * maintained between the r and w indexes
3049 */
3050 if (txq->available <= 3) {
3051 IPW_DEBUG_TX("no room in tx_queue\n");
3052 break;
3053 }
3054
3055 element = priv->msg_pend_list.next;
3056 list_del(element);
3057 DEC_STAT(&priv->msg_pend_stat);
3058
James Ketrenosee8e3652005-09-14 09:47:29 -05003059 packet = list_entry(element, struct ipw2100_tx_packet, list);
James Ketrenos2c86c272005-03-23 17:32:29 -06003060
John W. Linvilleaa0d52c2010-08-10 13:08:11 -04003061 IPW_DEBUG_TX("using TBD at virt=%p, phys=%04X\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05003062 &txq->drv[txq->next],
John W. Linvilleaa0d52c2010-08-10 13:08:11 -04003063 (u32) (txq->nic + txq->next *
James Ketrenosee8e3652005-09-14 09:47:29 -05003064 sizeof(struct ipw2100_bd)));
James Ketrenos2c86c272005-03-23 17:32:29 -06003065
3066 packet->index = txq->next;
3067
3068 tbd = &txq->drv[txq->next];
3069
3070 /* initialize TBD */
3071 tbd->host_addr = packet->info.c_struct.cmd_phys;
3072 tbd->buf_length = sizeof(struct ipw2100_cmd_header);
3073 /* not marking number of fragments causes problems
3074 * with f/w debug version */
3075 tbd->num_fragments = 1;
3076 tbd->status.info.field =
James Ketrenosee8e3652005-09-14 09:47:29 -05003077 IPW_BD_STATUS_TX_FRAME_COMMAND |
3078 IPW_BD_STATUS_TX_INTERRUPT_ENABLE;
James Ketrenos2c86c272005-03-23 17:32:29 -06003079
3080 /* update TBD queue counters */
3081 txq->next++;
3082 txq->next %= txq->entries;
3083 txq->available--;
3084 DEC_STAT(&priv->txq_stat);
3085
3086 list_add_tail(element, &priv->fw_pend_list);
3087 INC_STAT(&priv->fw_pend_stat);
3088 }
3089
3090 if (txq->next != next) {
3091 /* kick off the DMA by notifying firmware the
3092 * write index has moved; make sure TBD stores are sync'd */
3093 wmb();
3094 write_register(priv->net_dev,
3095 IPW_MEM_HOST_SHARED_TX_QUEUE_WRITE_INDEX,
3096 txq->next);
3097 }
3098}
3099
James Ketrenos2c86c272005-03-23 17:32:29 -06003100/*
Jiri Benc19f7f742005-08-25 20:02:10 -04003101 * ipw2100_tx_send_data
James Ketrenos2c86c272005-03-23 17:32:29 -06003102 *
3103 */
Jiri Benc19f7f742005-08-25 20:02:10 -04003104static void ipw2100_tx_send_data(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06003105{
3106 struct list_head *element;
3107 struct ipw2100_tx_packet *packet;
3108 struct ipw2100_bd_queue *txq = &priv->tx_queue;
3109 struct ipw2100_bd *tbd;
3110 int next = txq->next;
James Ketrenosee8e3652005-09-14 09:47:29 -05003111 int i = 0;
James Ketrenos2c86c272005-03-23 17:32:29 -06003112 struct ipw2100_data_header *ipw_hdr;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04003113 struct libipw_hdr_3addr *hdr;
James Ketrenos2c86c272005-03-23 17:32:29 -06003114
3115 while (!list_empty(&priv->tx_pend_list)) {
3116 /* if there isn't enough space in TBD queue, then
3117 * don't stuff a new one in.
3118 * NOTE: 4 are needed as a data will take two,
3119 * and there is a minimum of 2 that must be
3120 * maintained between the r and w indexes
3121 */
3122 element = priv->tx_pend_list.next;
James Ketrenosee8e3652005-09-14 09:47:29 -05003123 packet = list_entry(element, struct ipw2100_tx_packet, list);
James Ketrenos2c86c272005-03-23 17:32:29 -06003124
3125 if (unlikely(1 + packet->info.d_struct.txb->nr_frags >
3126 IPW_MAX_BDS)) {
3127 /* TODO: Support merging buffers if more than
3128 * IPW_MAX_BDS are used */
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02003129 IPW_DEBUG_INFO("%s: Maximum BD threshold exceeded. "
James Ketrenosee8e3652005-09-14 09:47:29 -05003130 "Increase fragmentation level.\n",
3131 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06003132 }
3133
James Ketrenosee8e3652005-09-14 09:47:29 -05003134 if (txq->available <= 3 + packet->info.d_struct.txb->nr_frags) {
James Ketrenos2c86c272005-03-23 17:32:29 -06003135 IPW_DEBUG_TX("no room in tx_queue\n");
3136 break;
3137 }
3138
3139 list_del(element);
3140 DEC_STAT(&priv->tx_pend_stat);
3141
3142 tbd = &txq->drv[txq->next];
3143
3144 packet->index = txq->next;
3145
3146 ipw_hdr = packet->info.d_struct.data;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04003147 hdr = (struct libipw_hdr_3addr *)packet->info.d_struct.txb->
James Ketrenosee8e3652005-09-14 09:47:29 -05003148 fragments[0]->data;
James Ketrenos2c86c272005-03-23 17:32:29 -06003149
3150 if (priv->ieee->iw_mode == IW_MODE_INFRA) {
3151 /* To DS: Addr1 = BSSID, Addr2 = SA,
3152 Addr3 = DA */
3153 memcpy(ipw_hdr->src_addr, hdr->addr2, ETH_ALEN);
3154 memcpy(ipw_hdr->dst_addr, hdr->addr3, ETH_ALEN);
3155 } else if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
3156 /* not From/To DS: Addr1 = DA, Addr2 = SA,
3157 Addr3 = BSSID */
3158 memcpy(ipw_hdr->src_addr, hdr->addr2, ETH_ALEN);
3159 memcpy(ipw_hdr->dst_addr, hdr->addr1, ETH_ALEN);
3160 }
3161
3162 ipw_hdr->host_command_reg = SEND;
3163 ipw_hdr->host_command_reg1 = 0;
3164
3165 /* For now we only support host based encryption */
3166 ipw_hdr->needs_encryption = 0;
3167 ipw_hdr->encrypted = packet->info.d_struct.txb->encrypted;
3168 if (packet->info.d_struct.txb->nr_frags > 1)
3169 ipw_hdr->fragment_size =
James Ketrenosee8e3652005-09-14 09:47:29 -05003170 packet->info.d_struct.txb->frag_size -
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04003171 LIBIPW_3ADDR_LEN;
James Ketrenos2c86c272005-03-23 17:32:29 -06003172 else
3173 ipw_hdr->fragment_size = 0;
3174
3175 tbd->host_addr = packet->info.d_struct.data_phys;
3176 tbd->buf_length = sizeof(struct ipw2100_data_header);
3177 tbd->num_fragments = 1 + packet->info.d_struct.txb->nr_frags;
3178 tbd->status.info.field =
James Ketrenosee8e3652005-09-14 09:47:29 -05003179 IPW_BD_STATUS_TX_FRAME_802_3 |
3180 IPW_BD_STATUS_TX_FRAME_NOT_LAST_FRAGMENT;
James Ketrenos2c86c272005-03-23 17:32:29 -06003181 txq->next++;
3182 txq->next %= txq->entries;
3183
James Ketrenosee8e3652005-09-14 09:47:29 -05003184 IPW_DEBUG_TX("data header tbd TX%d P=%08x L=%d\n",
3185 packet->index, tbd->host_addr, tbd->buf_length);
Brice Goglin0f52bf92005-12-01 01:41:46 -08003186#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06003187 if (packet->info.d_struct.txb->nr_frags > 1)
3188 IPW_DEBUG_FRAG("fragment Tx: %d frames\n",
3189 packet->info.d_struct.txb->nr_frags);
3190#endif
3191
James Ketrenosee8e3652005-09-14 09:47:29 -05003192 for (i = 0; i < packet->info.d_struct.txb->nr_frags; i++) {
3193 tbd = &txq->drv[txq->next];
James Ketrenos2c86c272005-03-23 17:32:29 -06003194 if (i == packet->info.d_struct.txb->nr_frags - 1)
3195 tbd->status.info.field =
James Ketrenosee8e3652005-09-14 09:47:29 -05003196 IPW_BD_STATUS_TX_FRAME_802_3 |
3197 IPW_BD_STATUS_TX_INTERRUPT_ENABLE;
James Ketrenos2c86c272005-03-23 17:32:29 -06003198 else
3199 tbd->status.info.field =
James Ketrenosee8e3652005-09-14 09:47:29 -05003200 IPW_BD_STATUS_TX_FRAME_802_3 |
3201 IPW_BD_STATUS_TX_FRAME_NOT_LAST_FRAGMENT;
James Ketrenos2c86c272005-03-23 17:32:29 -06003202
3203 tbd->buf_length = packet->info.d_struct.txb->
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04003204 fragments[i]->len - LIBIPW_3ADDR_LEN;
James Ketrenos2c86c272005-03-23 17:32:29 -06003205
James Ketrenosee8e3652005-09-14 09:47:29 -05003206 tbd->host_addr = pci_map_single(priv->pci_dev,
3207 packet->info.d_struct.
3208 txb->fragments[i]->
3209 data +
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04003210 LIBIPW_3ADDR_LEN,
James Ketrenosee8e3652005-09-14 09:47:29 -05003211 tbd->buf_length,
3212 PCI_DMA_TODEVICE);
James Ketrenos2c86c272005-03-23 17:32:29 -06003213
James Ketrenosee8e3652005-09-14 09:47:29 -05003214 IPW_DEBUG_TX("data frag tbd TX%d P=%08x L=%d\n",
3215 txq->next, tbd->host_addr,
3216 tbd->buf_length);
James Ketrenos2c86c272005-03-23 17:32:29 -06003217
James Ketrenosee8e3652005-09-14 09:47:29 -05003218 pci_dma_sync_single_for_device(priv->pci_dev,
3219 tbd->host_addr,
3220 tbd->buf_length,
3221 PCI_DMA_TODEVICE);
James Ketrenos2c86c272005-03-23 17:32:29 -06003222
3223 txq->next++;
3224 txq->next %= txq->entries;
James Ketrenosee8e3652005-09-14 09:47:29 -05003225 }
James Ketrenos2c86c272005-03-23 17:32:29 -06003226
3227 txq->available -= 1 + packet->info.d_struct.txb->nr_frags;
3228 SET_STAT(&priv->txq_stat, txq->available);
3229
3230 list_add_tail(element, &priv->fw_pend_list);
3231 INC_STAT(&priv->fw_pend_stat);
3232 }
3233
3234 if (txq->next != next) {
3235 /* kick off the DMA by notifying firmware the
3236 * write index has moved; make sure TBD stores are sync'd */
3237 write_register(priv->net_dev,
3238 IPW_MEM_HOST_SHARED_TX_QUEUE_WRITE_INDEX,
3239 txq->next);
3240 }
James Ketrenos2c86c272005-03-23 17:32:29 -06003241}
3242
3243static void ipw2100_irq_tasklet(struct ipw2100_priv *priv)
3244{
3245 struct net_device *dev = priv->net_dev;
3246 unsigned long flags;
3247 u32 inta, tmp;
3248
3249 spin_lock_irqsave(&priv->low_lock, flags);
3250 ipw2100_disable_interrupts(priv);
3251
3252 read_register(dev, IPW_REG_INTA, &inta);
3253
3254 IPW_DEBUG_ISR("enter - INTA: 0x%08lX\n",
3255 (unsigned long)inta & IPW_INTERRUPT_MASK);
3256
3257 priv->in_isr++;
3258 priv->interrupts++;
3259
3260 /* We do not loop and keep polling for more interrupts as this
3261 * is frowned upon and doesn't play nicely with other potentially
3262 * chained IRQs */
3263 IPW_DEBUG_ISR("INTA: 0x%08lX\n",
3264 (unsigned long)inta & IPW_INTERRUPT_MASK);
3265
3266 if (inta & IPW2100_INTA_FATAL_ERROR) {
Jiri Benc797b4f72005-08-25 20:03:27 -04003267 printk(KERN_WARNING DRV_NAME
James Ketrenosee8e3652005-09-14 09:47:29 -05003268 ": Fatal interrupt. Scheduling firmware restart.\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06003269 priv->inta_other++;
James Ketrenosee8e3652005-09-14 09:47:29 -05003270 write_register(dev, IPW_REG_INTA, IPW2100_INTA_FATAL_ERROR);
James Ketrenos2c86c272005-03-23 17:32:29 -06003271
3272 read_nic_dword(dev, IPW_NIC_FATAL_ERROR, &priv->fatal_error);
3273 IPW_DEBUG_INFO("%s: Fatal error value: 0x%08X\n",
3274 priv->net_dev->name, priv->fatal_error);
3275
3276 read_nic_dword(dev, IPW_ERROR_ADDR(priv->fatal_error), &tmp);
3277 IPW_DEBUG_INFO("%s: Fatal error address value: 0x%08X\n",
3278 priv->net_dev->name, tmp);
3279
3280 /* Wake up any sleeping jobs */
3281 schedule_reset(priv);
3282 }
3283
3284 if (inta & IPW2100_INTA_PARITY_ERROR) {
James Ketrenosee8e3652005-09-14 09:47:29 -05003285 printk(KERN_ERR DRV_NAME
Frans Pop9fd1ea42010-03-24 19:46:31 +01003286 ": ***** PARITY ERROR INTERRUPT !!!!\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06003287 priv->inta_other++;
James Ketrenosee8e3652005-09-14 09:47:29 -05003288 write_register(dev, IPW_REG_INTA, IPW2100_INTA_PARITY_ERROR);
James Ketrenos2c86c272005-03-23 17:32:29 -06003289 }
3290
3291 if (inta & IPW2100_INTA_RX_TRANSFER) {
3292 IPW_DEBUG_ISR("RX interrupt\n");
3293
3294 priv->rx_interrupts++;
3295
James Ketrenosee8e3652005-09-14 09:47:29 -05003296 write_register(dev, IPW_REG_INTA, IPW2100_INTA_RX_TRANSFER);
James Ketrenos2c86c272005-03-23 17:32:29 -06003297
3298 __ipw2100_rx_process(priv);
3299 __ipw2100_tx_complete(priv);
3300 }
3301
3302 if (inta & IPW2100_INTA_TX_TRANSFER) {
3303 IPW_DEBUG_ISR("TX interrupt\n");
3304
3305 priv->tx_interrupts++;
3306
James Ketrenosee8e3652005-09-14 09:47:29 -05003307 write_register(dev, IPW_REG_INTA, IPW2100_INTA_TX_TRANSFER);
James Ketrenos2c86c272005-03-23 17:32:29 -06003308
3309 __ipw2100_tx_complete(priv);
Jiri Benc19f7f742005-08-25 20:02:10 -04003310 ipw2100_tx_send_commands(priv);
3311 ipw2100_tx_send_data(priv);
James Ketrenos2c86c272005-03-23 17:32:29 -06003312 }
3313
3314 if (inta & IPW2100_INTA_TX_COMPLETE) {
3315 IPW_DEBUG_ISR("TX complete\n");
3316 priv->inta_other++;
James Ketrenosee8e3652005-09-14 09:47:29 -05003317 write_register(dev, IPW_REG_INTA, IPW2100_INTA_TX_COMPLETE);
James Ketrenos2c86c272005-03-23 17:32:29 -06003318
3319 __ipw2100_tx_complete(priv);
3320 }
3321
3322 if (inta & IPW2100_INTA_EVENT_INTERRUPT) {
3323 /* ipw2100_handle_event(dev); */
3324 priv->inta_other++;
James Ketrenosee8e3652005-09-14 09:47:29 -05003325 write_register(dev, IPW_REG_INTA, IPW2100_INTA_EVENT_INTERRUPT);
James Ketrenos2c86c272005-03-23 17:32:29 -06003326 }
3327
3328 if (inta & IPW2100_INTA_FW_INIT_DONE) {
3329 IPW_DEBUG_ISR("FW init done interrupt\n");
3330 priv->inta_other++;
3331
3332 read_register(dev, IPW_REG_INTA, &tmp);
3333 if (tmp & (IPW2100_INTA_FATAL_ERROR |
3334 IPW2100_INTA_PARITY_ERROR)) {
James Ketrenosee8e3652005-09-14 09:47:29 -05003335 write_register(dev, IPW_REG_INTA,
3336 IPW2100_INTA_FATAL_ERROR |
3337 IPW2100_INTA_PARITY_ERROR);
James Ketrenos2c86c272005-03-23 17:32:29 -06003338 }
3339
James Ketrenosee8e3652005-09-14 09:47:29 -05003340 write_register(dev, IPW_REG_INTA, IPW2100_INTA_FW_INIT_DONE);
James Ketrenos2c86c272005-03-23 17:32:29 -06003341 }
3342
3343 if (inta & IPW2100_INTA_STATUS_CHANGE) {
3344 IPW_DEBUG_ISR("Status change interrupt\n");
3345 priv->inta_other++;
James Ketrenosee8e3652005-09-14 09:47:29 -05003346 write_register(dev, IPW_REG_INTA, IPW2100_INTA_STATUS_CHANGE);
James Ketrenos2c86c272005-03-23 17:32:29 -06003347 }
3348
3349 if (inta & IPW2100_INTA_SLAVE_MODE_HOST_COMMAND_DONE) {
3350 IPW_DEBUG_ISR("slave host mode interrupt\n");
3351 priv->inta_other++;
James Ketrenosee8e3652005-09-14 09:47:29 -05003352 write_register(dev, IPW_REG_INTA,
3353 IPW2100_INTA_SLAVE_MODE_HOST_COMMAND_DONE);
James Ketrenos2c86c272005-03-23 17:32:29 -06003354 }
3355
3356 priv->in_isr--;
3357 ipw2100_enable_interrupts(priv);
3358
3359 spin_unlock_irqrestore(&priv->low_lock, flags);
3360
3361 IPW_DEBUG_ISR("exit\n");
3362}
3363
David Howells7d12e782006-10-05 14:55:46 +01003364static irqreturn_t ipw2100_interrupt(int irq, void *data)
James Ketrenos2c86c272005-03-23 17:32:29 -06003365{
3366 struct ipw2100_priv *priv = data;
3367 u32 inta, inta_mask;
3368
3369 if (!data)
3370 return IRQ_NONE;
3371
James Ketrenosee8e3652005-09-14 09:47:29 -05003372 spin_lock(&priv->low_lock);
James Ketrenos2c86c272005-03-23 17:32:29 -06003373
3374 /* We check to see if we should be ignoring interrupts before
3375 * we touch the hardware. During ucode load if we try and handle
3376 * an interrupt we can cause keyboard problems as well as cause
3377 * the ucode to fail to initialize */
3378 if (!(priv->status & STATUS_INT_ENABLED)) {
3379 /* Shared IRQ */
3380 goto none;
3381 }
3382
3383 read_register(priv->net_dev, IPW_REG_INTA_MASK, &inta_mask);
3384 read_register(priv->net_dev, IPW_REG_INTA, &inta);
3385
3386 if (inta == 0xFFFFFFFF) {
3387 /* Hardware disappeared */
Jiri Benc797b4f72005-08-25 20:03:27 -04003388 printk(KERN_WARNING DRV_NAME ": IRQ INTA == 0xFFFFFFFF\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06003389 goto none;
3390 }
3391
3392 inta &= IPW_INTERRUPT_MASK;
3393
3394 if (!(inta & inta_mask)) {
3395 /* Shared interrupt */
3396 goto none;
3397 }
3398
3399 /* We disable the hardware interrupt here just to prevent unneeded
3400 * calls to be made. We disable this again within the actual
3401 * work tasklet, so if another part of the code re-enables the
3402 * interrupt, that is fine */
3403 ipw2100_disable_interrupts(priv);
3404
3405 tasklet_schedule(&priv->irq_tasklet);
James Ketrenosee8e3652005-09-14 09:47:29 -05003406 spin_unlock(&priv->low_lock);
James Ketrenos2c86c272005-03-23 17:32:29 -06003407
3408 return IRQ_HANDLED;
James Ketrenosee8e3652005-09-14 09:47:29 -05003409 none:
James Ketrenos2c86c272005-03-23 17:32:29 -06003410 spin_unlock(&priv->low_lock);
3411 return IRQ_NONE;
3412}
3413
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +00003414static netdev_tx_t ipw2100_tx(struct libipw_txb *txb,
3415 struct net_device *dev, int pri)
James Ketrenos2c86c272005-03-23 17:32:29 -06003416{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04003417 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06003418 struct list_head *element;
3419 struct ipw2100_tx_packet *packet;
3420 unsigned long flags;
3421
3422 spin_lock_irqsave(&priv->low_lock, flags);
3423
3424 if (!(priv->status & STATUS_ASSOCIATED)) {
3425 IPW_DEBUG_INFO("Can not transmit when not connected.\n");
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00003426 priv->net_dev->stats.tx_carrier_errors++;
James Ketrenos2c86c272005-03-23 17:32:29 -06003427 netif_stop_queue(dev);
3428 goto fail_unlock;
3429 }
3430
3431 if (list_empty(&priv->tx_free_list))
3432 goto fail_unlock;
3433
3434 element = priv->tx_free_list.next;
3435 packet = list_entry(element, struct ipw2100_tx_packet, list);
3436
3437 packet->info.d_struct.txb = txb;
3438
James Ketrenosee8e3652005-09-14 09:47:29 -05003439 IPW_DEBUG_TX("Sending fragment (%d bytes):\n", txb->fragments[0]->len);
3440 printk_buf(IPW_DL_TX, txb->fragments[0]->data, txb->fragments[0]->len);
James Ketrenos2c86c272005-03-23 17:32:29 -06003441
3442 packet->jiffy_start = jiffies;
3443
3444 list_del(element);
3445 DEC_STAT(&priv->tx_free_stat);
3446
3447 list_add_tail(element, &priv->tx_pend_list);
3448 INC_STAT(&priv->tx_pend_stat);
3449
Jiri Benc19f7f742005-08-25 20:02:10 -04003450 ipw2100_tx_send_data(priv);
James Ketrenos2c86c272005-03-23 17:32:29 -06003451
3452 spin_unlock_irqrestore(&priv->low_lock, flags);
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +00003453 return NETDEV_TX_OK;
James Ketrenos2c86c272005-03-23 17:32:29 -06003454
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +00003455fail_unlock:
James Ketrenos2c86c272005-03-23 17:32:29 -06003456 netif_stop_queue(dev);
3457 spin_unlock_irqrestore(&priv->low_lock, flags);
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +00003458 return NETDEV_TX_BUSY;
James Ketrenos2c86c272005-03-23 17:32:29 -06003459}
3460
James Ketrenos2c86c272005-03-23 17:32:29 -06003461static int ipw2100_msg_allocate(struct ipw2100_priv *priv)
3462{
3463 int i, j, err = -EINVAL;
3464 void *v;
3465 dma_addr_t p;
3466
James Ketrenosee8e3652005-09-14 09:47:29 -05003467 priv->msg_buffers =
Joe Perchesefe4c452010-05-31 20:23:15 -07003468 kmalloc(IPW_COMMAND_POOL_SIZE * sizeof(struct ipw2100_tx_packet),
3469 GFP_KERNEL);
Joe Perchese404dec2012-01-29 12:56:23 +00003470 if (!priv->msg_buffers)
James Ketrenos2c86c272005-03-23 17:32:29 -06003471 return -ENOMEM;
James Ketrenos2c86c272005-03-23 17:32:29 -06003472
3473 for (i = 0; i < IPW_COMMAND_POOL_SIZE; i++) {
James Ketrenosee8e3652005-09-14 09:47:29 -05003474 v = pci_alloc_consistent(priv->pci_dev,
3475 sizeof(struct ipw2100_cmd_header), &p);
James Ketrenos2c86c272005-03-23 17:32:29 -06003476 if (!v) {
Jiri Benc797b4f72005-08-25 20:03:27 -04003477 printk(KERN_ERR DRV_NAME ": "
James Ketrenos2c86c272005-03-23 17:32:29 -06003478 "%s: PCI alloc failed for msg "
James Ketrenosee8e3652005-09-14 09:47:29 -05003479 "buffers.\n", priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06003480 err = -ENOMEM;
3481 break;
3482 }
3483
3484 memset(v, 0, sizeof(struct ipw2100_cmd_header));
3485
3486 priv->msg_buffers[i].type = COMMAND;
3487 priv->msg_buffers[i].info.c_struct.cmd =
James Ketrenosee8e3652005-09-14 09:47:29 -05003488 (struct ipw2100_cmd_header *)v;
James Ketrenos2c86c272005-03-23 17:32:29 -06003489 priv->msg_buffers[i].info.c_struct.cmd_phys = p;
3490 }
3491
3492 if (i == IPW_COMMAND_POOL_SIZE)
3493 return 0;
3494
3495 for (j = 0; j < i; j++) {
James Ketrenosee8e3652005-09-14 09:47:29 -05003496 pci_free_consistent(priv->pci_dev,
3497 sizeof(struct ipw2100_cmd_header),
3498 priv->msg_buffers[j].info.c_struct.cmd,
3499 priv->msg_buffers[j].info.c_struct.
3500 cmd_phys);
James Ketrenos2c86c272005-03-23 17:32:29 -06003501 }
3502
3503 kfree(priv->msg_buffers);
3504 priv->msg_buffers = NULL;
3505
3506 return err;
3507}
3508
3509static int ipw2100_msg_initialize(struct ipw2100_priv *priv)
3510{
3511 int i;
3512
3513 INIT_LIST_HEAD(&priv->msg_free_list);
3514 INIT_LIST_HEAD(&priv->msg_pend_list);
3515
3516 for (i = 0; i < IPW_COMMAND_POOL_SIZE; i++)
3517 list_add_tail(&priv->msg_buffers[i].list, &priv->msg_free_list);
3518 SET_STAT(&priv->msg_free_stat, i);
3519
3520 return 0;
3521}
3522
3523static void ipw2100_msg_free(struct ipw2100_priv *priv)
3524{
3525 int i;
3526
3527 if (!priv->msg_buffers)
3528 return;
3529
3530 for (i = 0; i < IPW_COMMAND_POOL_SIZE; i++) {
3531 pci_free_consistent(priv->pci_dev,
3532 sizeof(struct ipw2100_cmd_header),
3533 priv->msg_buffers[i].info.c_struct.cmd,
James Ketrenosee8e3652005-09-14 09:47:29 -05003534 priv->msg_buffers[i].info.c_struct.
3535 cmd_phys);
James Ketrenos2c86c272005-03-23 17:32:29 -06003536 }
3537
3538 kfree(priv->msg_buffers);
3539 priv->msg_buffers = NULL;
3540}
3541
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003542static ssize_t show_pci(struct device *d, struct device_attribute *attr,
3543 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003544{
3545 struct pci_dev *pci_dev = container_of(d, struct pci_dev, dev);
3546 char *out = buf;
3547 int i, j;
3548 u32 val;
3549
3550 for (i = 0; i < 16; i++) {
3551 out += sprintf(out, "[%08X] ", i * 16);
3552 for (j = 0; j < 16; j += 4) {
3553 pci_read_config_dword(pci_dev, i * 16 + j, &val);
3554 out += sprintf(out, "%08X ", val);
3555 }
3556 out += sprintf(out, "\n");
3557 }
3558
3559 return out - buf;
3560}
James Ketrenosee8e3652005-09-14 09:47:29 -05003561
James Ketrenos2c86c272005-03-23 17:32:29 -06003562static DEVICE_ATTR(pci, S_IRUGO, show_pci, NULL);
3563
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003564static ssize_t show_cfg(struct device *d, struct device_attribute *attr,
3565 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003566{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003567 struct ipw2100_priv *p = dev_get_drvdata(d);
James Ketrenos2c86c272005-03-23 17:32:29 -06003568 return sprintf(buf, "0x%08x\n", (int)p->config);
3569}
James Ketrenosee8e3652005-09-14 09:47:29 -05003570
James Ketrenos2c86c272005-03-23 17:32:29 -06003571static DEVICE_ATTR(cfg, S_IRUGO, show_cfg, NULL);
3572
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003573static ssize_t show_status(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003574 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003575{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003576 struct ipw2100_priv *p = dev_get_drvdata(d);
James Ketrenos2c86c272005-03-23 17:32:29 -06003577 return sprintf(buf, "0x%08x\n", (int)p->status);
3578}
James Ketrenosee8e3652005-09-14 09:47:29 -05003579
James Ketrenos2c86c272005-03-23 17:32:29 -06003580static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
3581
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003582static ssize_t show_capability(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003583 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003584{
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07003585 struct ipw2100_priv *p = dev_get_drvdata(d);
James Ketrenos2c86c272005-03-23 17:32:29 -06003586 return sprintf(buf, "0x%08x\n", (int)p->capability);
3587}
James Ketrenos2c86c272005-03-23 17:32:29 -06003588
James Ketrenosee8e3652005-09-14 09:47:29 -05003589static DEVICE_ATTR(capability, S_IRUGO, show_capability, NULL);
James Ketrenos2c86c272005-03-23 17:32:29 -06003590
3591#define IPW2100_REG(x) { IPW_ ##x, #x }
Jiri Bencc4aee8c2005-08-25 20:04:43 -04003592static const struct {
James Ketrenos2c86c272005-03-23 17:32:29 -06003593 u32 addr;
3594 const char *name;
3595} hw_data[] = {
James Ketrenosee8e3652005-09-14 09:47:29 -05003596IPW2100_REG(REG_GP_CNTRL),
3597 IPW2100_REG(REG_GPIO),
3598 IPW2100_REG(REG_INTA),
3599 IPW2100_REG(REG_INTA_MASK), IPW2100_REG(REG_RESET_REG),};
James Ketrenos2c86c272005-03-23 17:32:29 -06003600#define IPW2100_NIC(x, s) { x, #x, s }
Jiri Bencc4aee8c2005-08-25 20:04:43 -04003601static const struct {
James Ketrenos2c86c272005-03-23 17:32:29 -06003602 u32 addr;
3603 const char *name;
3604 size_t size;
3605} nic_data[] = {
James Ketrenosee8e3652005-09-14 09:47:29 -05003606IPW2100_NIC(IPW2100_CONTROL_REG, 2),
3607 IPW2100_NIC(0x210014, 1), IPW2100_NIC(0x210000, 1),};
James Ketrenos2c86c272005-03-23 17:32:29 -06003608#define IPW2100_ORD(x, d) { IPW_ORD_ ##x, #x, d }
Jiri Bencc4aee8c2005-08-25 20:04:43 -04003609static const struct {
James Ketrenos2c86c272005-03-23 17:32:29 -06003610 u8 index;
3611 const char *name;
3612 const char *desc;
3613} ord_data[] = {
James Ketrenosee8e3652005-09-14 09:47:29 -05003614IPW2100_ORD(STAT_TX_HOST_REQUESTS, "requested Host Tx's (MSDU)"),
3615 IPW2100_ORD(STAT_TX_HOST_COMPLETE,
3616 "successful Host Tx's (MSDU)"),
3617 IPW2100_ORD(STAT_TX_DIR_DATA,
3618 "successful Directed Tx's (MSDU)"),
3619 IPW2100_ORD(STAT_TX_DIR_DATA1,
3620 "successful Directed Tx's (MSDU) @ 1MB"),
3621 IPW2100_ORD(STAT_TX_DIR_DATA2,
3622 "successful Directed Tx's (MSDU) @ 2MB"),
3623 IPW2100_ORD(STAT_TX_DIR_DATA5_5,
3624 "successful Directed Tx's (MSDU) @ 5_5MB"),
3625 IPW2100_ORD(STAT_TX_DIR_DATA11,
3626 "successful Directed Tx's (MSDU) @ 11MB"),
3627 IPW2100_ORD(STAT_TX_NODIR_DATA1,
3628 "successful Non_Directed Tx's (MSDU) @ 1MB"),
3629 IPW2100_ORD(STAT_TX_NODIR_DATA2,
3630 "successful Non_Directed Tx's (MSDU) @ 2MB"),
3631 IPW2100_ORD(STAT_TX_NODIR_DATA5_5,
3632 "successful Non_Directed Tx's (MSDU) @ 5.5MB"),
3633 IPW2100_ORD(STAT_TX_NODIR_DATA11,
3634 "successful Non_Directed Tx's (MSDU) @ 11MB"),
3635 IPW2100_ORD(STAT_NULL_DATA, "successful NULL data Tx's"),
3636 IPW2100_ORD(STAT_TX_RTS, "successful Tx RTS"),
3637 IPW2100_ORD(STAT_TX_CTS, "successful Tx CTS"),
3638 IPW2100_ORD(STAT_TX_ACK, "successful Tx ACK"),
3639 IPW2100_ORD(STAT_TX_ASSN, "successful Association Tx's"),
3640 IPW2100_ORD(STAT_TX_ASSN_RESP,
3641 "successful Association response Tx's"),
3642 IPW2100_ORD(STAT_TX_REASSN,
3643 "successful Reassociation Tx's"),
3644 IPW2100_ORD(STAT_TX_REASSN_RESP,
3645 "successful Reassociation response Tx's"),
3646 IPW2100_ORD(STAT_TX_PROBE,
3647 "probes successfully transmitted"),
3648 IPW2100_ORD(STAT_TX_PROBE_RESP,
3649 "probe responses successfully transmitted"),
3650 IPW2100_ORD(STAT_TX_BEACON, "tx beacon"),
3651 IPW2100_ORD(STAT_TX_ATIM, "Tx ATIM"),
3652 IPW2100_ORD(STAT_TX_DISASSN,
3653 "successful Disassociation TX"),
3654 IPW2100_ORD(STAT_TX_AUTH, "successful Authentication Tx"),
3655 IPW2100_ORD(STAT_TX_DEAUTH,
3656 "successful Deauthentication TX"),
3657 IPW2100_ORD(STAT_TX_TOTAL_BYTES,
3658 "Total successful Tx data bytes"),
3659 IPW2100_ORD(STAT_TX_RETRIES, "Tx retries"),
3660 IPW2100_ORD(STAT_TX_RETRY1, "Tx retries at 1MBPS"),
3661 IPW2100_ORD(STAT_TX_RETRY2, "Tx retries at 2MBPS"),
3662 IPW2100_ORD(STAT_TX_RETRY5_5, "Tx retries at 5.5MBPS"),
3663 IPW2100_ORD(STAT_TX_RETRY11, "Tx retries at 11MBPS"),
3664 IPW2100_ORD(STAT_TX_FAILURES, "Tx Failures"),
3665 IPW2100_ORD(STAT_TX_MAX_TRIES_IN_HOP,
3666 "times max tries in a hop failed"),
3667 IPW2100_ORD(STAT_TX_DISASSN_FAIL,
3668 "times disassociation failed"),
3669 IPW2100_ORD(STAT_TX_ERR_CTS, "missed/bad CTS frames"),
3670 IPW2100_ORD(STAT_TX_ERR_ACK, "tx err due to acks"),
3671 IPW2100_ORD(STAT_RX_HOST, "packets passed to host"),
3672 IPW2100_ORD(STAT_RX_DIR_DATA, "directed packets"),
3673 IPW2100_ORD(STAT_RX_DIR_DATA1, "directed packets at 1MB"),
3674 IPW2100_ORD(STAT_RX_DIR_DATA2, "directed packets at 2MB"),
3675 IPW2100_ORD(STAT_RX_DIR_DATA5_5,
3676 "directed packets at 5.5MB"),
3677 IPW2100_ORD(STAT_RX_DIR_DATA11, "directed packets at 11MB"),
3678 IPW2100_ORD(STAT_RX_NODIR_DATA, "nondirected packets"),
3679 IPW2100_ORD(STAT_RX_NODIR_DATA1,
3680 "nondirected packets at 1MB"),
3681 IPW2100_ORD(STAT_RX_NODIR_DATA2,
3682 "nondirected packets at 2MB"),
3683 IPW2100_ORD(STAT_RX_NODIR_DATA5_5,
3684 "nondirected packets at 5.5MB"),
3685 IPW2100_ORD(STAT_RX_NODIR_DATA11,
3686 "nondirected packets at 11MB"),
3687 IPW2100_ORD(STAT_RX_NULL_DATA, "null data rx's"),
3688 IPW2100_ORD(STAT_RX_RTS, "Rx RTS"), IPW2100_ORD(STAT_RX_CTS,
3689 "Rx CTS"),
3690 IPW2100_ORD(STAT_RX_ACK, "Rx ACK"),
3691 IPW2100_ORD(STAT_RX_CFEND, "Rx CF End"),
3692 IPW2100_ORD(STAT_RX_CFEND_ACK, "Rx CF End + CF Ack"),
3693 IPW2100_ORD(STAT_RX_ASSN, "Association Rx's"),
3694 IPW2100_ORD(STAT_RX_ASSN_RESP, "Association response Rx's"),
3695 IPW2100_ORD(STAT_RX_REASSN, "Reassociation Rx's"),
3696 IPW2100_ORD(STAT_RX_REASSN_RESP,
3697 "Reassociation response Rx's"),
3698 IPW2100_ORD(STAT_RX_PROBE, "probe Rx's"),
3699 IPW2100_ORD(STAT_RX_PROBE_RESP, "probe response Rx's"),
3700 IPW2100_ORD(STAT_RX_BEACON, "Rx beacon"),
3701 IPW2100_ORD(STAT_RX_ATIM, "Rx ATIM"),
3702 IPW2100_ORD(STAT_RX_DISASSN, "disassociation Rx"),
3703 IPW2100_ORD(STAT_RX_AUTH, "authentication Rx"),
3704 IPW2100_ORD(STAT_RX_DEAUTH, "deauthentication Rx"),
3705 IPW2100_ORD(STAT_RX_TOTAL_BYTES,
3706 "Total rx data bytes received"),
3707 IPW2100_ORD(STAT_RX_ERR_CRC, "packets with Rx CRC error"),
3708 IPW2100_ORD(STAT_RX_ERR_CRC1, "Rx CRC errors at 1MB"),
3709 IPW2100_ORD(STAT_RX_ERR_CRC2, "Rx CRC errors at 2MB"),
3710 IPW2100_ORD(STAT_RX_ERR_CRC5_5, "Rx CRC errors at 5.5MB"),
3711 IPW2100_ORD(STAT_RX_ERR_CRC11, "Rx CRC errors at 11MB"),
3712 IPW2100_ORD(STAT_RX_DUPLICATE1,
3713 "duplicate rx packets at 1MB"),
3714 IPW2100_ORD(STAT_RX_DUPLICATE2,
3715 "duplicate rx packets at 2MB"),
3716 IPW2100_ORD(STAT_RX_DUPLICATE5_5,
3717 "duplicate rx packets at 5.5MB"),
3718 IPW2100_ORD(STAT_RX_DUPLICATE11,
3719 "duplicate rx packets at 11MB"),
3720 IPW2100_ORD(STAT_RX_DUPLICATE, "duplicate rx packets"),
3721 IPW2100_ORD(PERS_DB_LOCK, "locking fw permanent db"),
3722 IPW2100_ORD(PERS_DB_SIZE, "size of fw permanent db"),
3723 IPW2100_ORD(PERS_DB_ADDR, "address of fw permanent db"),
3724 IPW2100_ORD(STAT_RX_INVALID_PROTOCOL,
3725 "rx frames with invalid protocol"),
3726 IPW2100_ORD(SYS_BOOT_TIME, "Boot time"),
3727 IPW2100_ORD(STAT_RX_NO_BUFFER,
3728 "rx frames rejected due to no buffer"),
3729 IPW2100_ORD(STAT_RX_MISSING_FRAG,
3730 "rx frames dropped due to missing fragment"),
3731 IPW2100_ORD(STAT_RX_ORPHAN_FRAG,
3732 "rx frames dropped due to non-sequential fragment"),
3733 IPW2100_ORD(STAT_RX_ORPHAN_FRAME,
3734 "rx frames dropped due to unmatched 1st frame"),
3735 IPW2100_ORD(STAT_RX_FRAG_AGEOUT,
3736 "rx frames dropped due to uncompleted frame"),
3737 IPW2100_ORD(STAT_RX_ICV_ERRORS,
3738 "ICV errors during decryption"),
3739 IPW2100_ORD(STAT_PSP_SUSPENSION, "times adapter suspended"),
3740 IPW2100_ORD(STAT_PSP_BCN_TIMEOUT, "beacon timeout"),
3741 IPW2100_ORD(STAT_PSP_POLL_TIMEOUT,
3742 "poll response timeouts"),
3743 IPW2100_ORD(STAT_PSP_NONDIR_TIMEOUT,
3744 "timeouts waiting for last {broad,multi}cast pkt"),
3745 IPW2100_ORD(STAT_PSP_RX_DTIMS, "PSP DTIMs received"),
3746 IPW2100_ORD(STAT_PSP_RX_TIMS, "PSP TIMs received"),
3747 IPW2100_ORD(STAT_PSP_STATION_ID, "PSP Station ID"),
3748 IPW2100_ORD(LAST_ASSN_TIME, "RTC time of last association"),
3749 IPW2100_ORD(STAT_PERCENT_MISSED_BCNS,
3750 "current calculation of % missed beacons"),
3751 IPW2100_ORD(STAT_PERCENT_RETRIES,
3752 "current calculation of % missed tx retries"),
3753 IPW2100_ORD(ASSOCIATED_AP_PTR,
3754 "0 if not associated, else pointer to AP table entry"),
3755 IPW2100_ORD(AVAILABLE_AP_CNT,
3756 "AP's decsribed in the AP table"),
3757 IPW2100_ORD(AP_LIST_PTR, "Ptr to list of available APs"),
3758 IPW2100_ORD(STAT_AP_ASSNS, "associations"),
3759 IPW2100_ORD(STAT_ASSN_FAIL, "association failures"),
3760 IPW2100_ORD(STAT_ASSN_RESP_FAIL,
3761 "failures due to response fail"),
3762 IPW2100_ORD(STAT_FULL_SCANS, "full scans"),
3763 IPW2100_ORD(CARD_DISABLED, "Card Disabled"),
3764 IPW2100_ORD(STAT_ROAM_INHIBIT,
3765 "times roaming was inhibited due to activity"),
3766 IPW2100_ORD(RSSI_AT_ASSN,
3767 "RSSI of associated AP at time of association"),
3768 IPW2100_ORD(STAT_ASSN_CAUSE1,
3769 "reassociation: no probe response or TX on hop"),
3770 IPW2100_ORD(STAT_ASSN_CAUSE2,
3771 "reassociation: poor tx/rx quality"),
3772 IPW2100_ORD(STAT_ASSN_CAUSE3,
3773 "reassociation: tx/rx quality (excessive AP load"),
3774 IPW2100_ORD(STAT_ASSN_CAUSE4,
3775 "reassociation: AP RSSI level"),
3776 IPW2100_ORD(STAT_ASSN_CAUSE5,
3777 "reassociations due to load leveling"),
3778 IPW2100_ORD(STAT_AUTH_FAIL, "times authentication failed"),
3779 IPW2100_ORD(STAT_AUTH_RESP_FAIL,
3780 "times authentication response failed"),
3781 IPW2100_ORD(STATION_TABLE_CNT,
3782 "entries in association table"),
3783 IPW2100_ORD(RSSI_AVG_CURR, "Current avg RSSI"),
3784 IPW2100_ORD(POWER_MGMT_MODE, "Power mode - 0=CAM, 1=PSP"),
3785 IPW2100_ORD(COUNTRY_CODE,
3786 "IEEE country code as recv'd from beacon"),
3787 IPW2100_ORD(COUNTRY_CHANNELS,
3788 "channels suported by country"),
3789 IPW2100_ORD(RESET_CNT, "adapter resets (warm)"),
3790 IPW2100_ORD(BEACON_INTERVAL, "Beacon interval"),
3791 IPW2100_ORD(ANTENNA_DIVERSITY,
3792 "TRUE if antenna diversity is disabled"),
3793 IPW2100_ORD(DTIM_PERIOD, "beacon intervals between DTIMs"),
3794 IPW2100_ORD(OUR_FREQ,
3795 "current radio freq lower digits - channel ID"),
3796 IPW2100_ORD(RTC_TIME, "current RTC time"),
3797 IPW2100_ORD(PORT_TYPE, "operating mode"),
3798 IPW2100_ORD(CURRENT_TX_RATE, "current tx rate"),
3799 IPW2100_ORD(SUPPORTED_RATES, "supported tx rates"),
3800 IPW2100_ORD(ATIM_WINDOW, "current ATIM Window"),
3801 IPW2100_ORD(BASIC_RATES, "basic tx rates"),
3802 IPW2100_ORD(NIC_HIGHEST_RATE, "NIC highest tx rate"),
3803 IPW2100_ORD(AP_HIGHEST_RATE, "AP highest tx rate"),
3804 IPW2100_ORD(CAPABILITIES,
3805 "Management frame capability field"),
3806 IPW2100_ORD(AUTH_TYPE, "Type of authentication"),
3807 IPW2100_ORD(RADIO_TYPE, "Adapter card platform type"),
3808 IPW2100_ORD(RTS_THRESHOLD,
3809 "Min packet length for RTS handshaking"),
3810 IPW2100_ORD(INT_MODE, "International mode"),
3811 IPW2100_ORD(FRAGMENTATION_THRESHOLD,
3812 "protocol frag threshold"),
3813 IPW2100_ORD(EEPROM_SRAM_DB_BLOCK_START_ADDRESS,
3814 "EEPROM offset in SRAM"),
3815 IPW2100_ORD(EEPROM_SRAM_DB_BLOCK_SIZE,
3816 "EEPROM size in SRAM"),
3817 IPW2100_ORD(EEPROM_SKU_CAPABILITY, "EEPROM SKU Capability"),
3818 IPW2100_ORD(EEPROM_IBSS_11B_CHANNELS,
3819 "EEPROM IBSS 11b channel set"),
3820 IPW2100_ORD(MAC_VERSION, "MAC Version"),
3821 IPW2100_ORD(MAC_REVISION, "MAC Revision"),
3822 IPW2100_ORD(RADIO_VERSION, "Radio Version"),
3823 IPW2100_ORD(NIC_MANF_DATE_TIME, "MANF Date/Time STAMP"),
3824 IPW2100_ORD(UCODE_VERSION, "Ucode Version"),};
James Ketrenos2c86c272005-03-23 17:32:29 -06003825
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003826static ssize_t show_registers(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003827 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003828{
3829 int i;
3830 struct ipw2100_priv *priv = dev_get_drvdata(d);
3831 struct net_device *dev = priv->net_dev;
James Ketrenosee8e3652005-09-14 09:47:29 -05003832 char *out = buf;
James Ketrenos2c86c272005-03-23 17:32:29 -06003833 u32 val = 0;
3834
3835 out += sprintf(out, "%30s [Address ] : Hex\n", "Register");
3836
Ahmed S. Darwish22d57432007-02-05 18:56:22 +02003837 for (i = 0; i < ARRAY_SIZE(hw_data); i++) {
James Ketrenos2c86c272005-03-23 17:32:29 -06003838 read_register(dev, hw_data[i].addr, &val);
3839 out += sprintf(out, "%30s [%08X] : %08X\n",
3840 hw_data[i].name, hw_data[i].addr, val);
3841 }
3842
3843 return out - buf;
3844}
James Ketrenosee8e3652005-09-14 09:47:29 -05003845
James Ketrenos2c86c272005-03-23 17:32:29 -06003846static DEVICE_ATTR(registers, S_IRUGO, show_registers, NULL);
3847
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003848static ssize_t show_hardware(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003849 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003850{
3851 struct ipw2100_priv *priv = dev_get_drvdata(d);
3852 struct net_device *dev = priv->net_dev;
James Ketrenosee8e3652005-09-14 09:47:29 -05003853 char *out = buf;
James Ketrenos2c86c272005-03-23 17:32:29 -06003854 int i;
3855
3856 out += sprintf(out, "%30s [Address ] : Hex\n", "NIC entry");
3857
Ahmed S. Darwish22d57432007-02-05 18:56:22 +02003858 for (i = 0; i < ARRAY_SIZE(nic_data); i++) {
James Ketrenos2c86c272005-03-23 17:32:29 -06003859 u8 tmp8;
3860 u16 tmp16;
3861 u32 tmp32;
3862
3863 switch (nic_data[i].size) {
3864 case 1:
3865 read_nic_byte(dev, nic_data[i].addr, &tmp8);
3866 out += sprintf(out, "%30s [%08X] : %02X\n",
3867 nic_data[i].name, nic_data[i].addr,
3868 tmp8);
3869 break;
3870 case 2:
3871 read_nic_word(dev, nic_data[i].addr, &tmp16);
3872 out += sprintf(out, "%30s [%08X] : %04X\n",
3873 nic_data[i].name, nic_data[i].addr,
3874 tmp16);
3875 break;
3876 case 4:
3877 read_nic_dword(dev, nic_data[i].addr, &tmp32);
3878 out += sprintf(out, "%30s [%08X] : %08X\n",
3879 nic_data[i].name, nic_data[i].addr,
3880 tmp32);
3881 break;
3882 }
3883 }
3884 return out - buf;
3885}
James Ketrenosee8e3652005-09-14 09:47:29 -05003886
James Ketrenos2c86c272005-03-23 17:32:29 -06003887static DEVICE_ATTR(hardware, S_IRUGO, show_hardware, NULL);
3888
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003889static ssize_t show_memory(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003890 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003891{
3892 struct ipw2100_priv *priv = dev_get_drvdata(d);
3893 struct net_device *dev = priv->net_dev;
3894 static unsigned long loop = 0;
3895 int len = 0;
3896 u32 buffer[4];
3897 int i;
3898 char line[81];
3899
3900 if (loop >= 0x30000)
3901 loop = 0;
3902
3903 /* sysfs provides us PAGE_SIZE buffer */
3904 while (len < PAGE_SIZE - 128 && loop < 0x30000) {
3905
James Ketrenosee8e3652005-09-14 09:47:29 -05003906 if (priv->snapshot[0])
3907 for (i = 0; i < 4; i++)
3908 buffer[i] =
3909 *(u32 *) SNAPSHOT_ADDR(loop + i * 4);
3910 else
3911 for (i = 0; i < 4; i++)
3912 read_nic_dword(dev, loop + i * 4, &buffer[i]);
James Ketrenos2c86c272005-03-23 17:32:29 -06003913
3914 if (priv->dump_raw)
3915 len += sprintf(buf + len,
3916 "%c%c%c%c"
3917 "%c%c%c%c"
3918 "%c%c%c%c"
3919 "%c%c%c%c",
James Ketrenosee8e3652005-09-14 09:47:29 -05003920 ((u8 *) buffer)[0x0],
3921 ((u8 *) buffer)[0x1],
3922 ((u8 *) buffer)[0x2],
3923 ((u8 *) buffer)[0x3],
3924 ((u8 *) buffer)[0x4],
3925 ((u8 *) buffer)[0x5],
3926 ((u8 *) buffer)[0x6],
3927 ((u8 *) buffer)[0x7],
3928 ((u8 *) buffer)[0x8],
3929 ((u8 *) buffer)[0x9],
3930 ((u8 *) buffer)[0xa],
3931 ((u8 *) buffer)[0xb],
3932 ((u8 *) buffer)[0xc],
3933 ((u8 *) buffer)[0xd],
3934 ((u8 *) buffer)[0xe],
3935 ((u8 *) buffer)[0xf]);
James Ketrenos2c86c272005-03-23 17:32:29 -06003936 else
3937 len += sprintf(buf + len, "%s\n",
3938 snprint_line(line, sizeof(line),
James Ketrenosee8e3652005-09-14 09:47:29 -05003939 (u8 *) buffer, 16, loop));
James Ketrenos2c86c272005-03-23 17:32:29 -06003940 loop += 16;
3941 }
3942
3943 return len;
3944}
3945
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003946static ssize_t store_memory(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003947 const char *buf, size_t count)
James Ketrenos2c86c272005-03-23 17:32:29 -06003948{
3949 struct ipw2100_priv *priv = dev_get_drvdata(d);
3950 struct net_device *dev = priv->net_dev;
3951 const char *p = buf;
3952
Zhu Yi8ed55a42006-01-24 13:49:20 +08003953 (void)dev; /* kill unused-var warning for debug-only code */
Jeff Garzikc2a8fad2005-11-09 00:49:38 -05003954
James Ketrenos2c86c272005-03-23 17:32:29 -06003955 if (count < 1)
3956 return count;
3957
3958 if (p[0] == '1' ||
3959 (count >= 2 && tolower(p[0]) == 'o' && tolower(p[1]) == 'n')) {
3960 IPW_DEBUG_INFO("%s: Setting memory dump to RAW mode.\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05003961 dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06003962 priv->dump_raw = 1;
3963
3964 } else if (p[0] == '0' || (count >= 2 && tolower(p[0]) == 'o' &&
James Ketrenosee8e3652005-09-14 09:47:29 -05003965 tolower(p[1]) == 'f')) {
James Ketrenos2c86c272005-03-23 17:32:29 -06003966 IPW_DEBUG_INFO("%s: Setting memory dump to HEX mode.\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05003967 dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06003968 priv->dump_raw = 0;
3969
3970 } else if (tolower(p[0]) == 'r') {
James Ketrenosee8e3652005-09-14 09:47:29 -05003971 IPW_DEBUG_INFO("%s: Resetting firmware snapshot.\n", dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06003972 ipw2100_snapshot_free(priv);
3973
3974 } else
3975 IPW_DEBUG_INFO("%s: Usage: 0|on = HEX, 1|off = RAW, "
James Ketrenosee8e3652005-09-14 09:47:29 -05003976 "reset = clear memory snapshot\n", dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06003977
3978 return count;
3979}
James Ketrenos2c86c272005-03-23 17:32:29 -06003980
James Ketrenosee8e3652005-09-14 09:47:29 -05003981static DEVICE_ATTR(memory, S_IWUSR | S_IRUGO, show_memory, store_memory);
James Ketrenos2c86c272005-03-23 17:32:29 -06003982
Andrew Mortonedfc43f2005-06-20 14:30:35 -07003983static ssize_t show_ordinals(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05003984 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06003985{
3986 struct ipw2100_priv *priv = dev_get_drvdata(d);
3987 u32 val = 0;
3988 int len = 0;
3989 u32 val_len;
3990 static int loop = 0;
3991
James Ketrenos82328352005-08-24 22:33:31 -05003992 if (priv->status & STATUS_RF_KILL_MASK)
3993 return 0;
3994
Ahmed S. Darwish22d57432007-02-05 18:56:22 +02003995 if (loop >= ARRAY_SIZE(ord_data))
James Ketrenos2c86c272005-03-23 17:32:29 -06003996 loop = 0;
3997
3998 /* sysfs provides us PAGE_SIZE buffer */
Ahmed S. Darwish22d57432007-02-05 18:56:22 +02003999 while (len < PAGE_SIZE - 128 && loop < ARRAY_SIZE(ord_data)) {
James Ketrenos2c86c272005-03-23 17:32:29 -06004000 val_len = sizeof(u32);
4001
4002 if (ipw2100_get_ordinal(priv, ord_data[loop].index, &val,
4003 &val_len))
4004 len += sprintf(buf + len, "[0x%02X] = ERROR %s\n",
4005 ord_data[loop].index,
4006 ord_data[loop].desc);
4007 else
4008 len += sprintf(buf + len, "[0x%02X] = 0x%08X %s\n",
4009 ord_data[loop].index, val,
4010 ord_data[loop].desc);
4011 loop++;
4012 }
4013
4014 return len;
4015}
James Ketrenosee8e3652005-09-14 09:47:29 -05004016
James Ketrenos2c86c272005-03-23 17:32:29 -06004017static DEVICE_ATTR(ordinals, S_IRUGO, show_ordinals, NULL);
4018
Andrew Mortonedfc43f2005-06-20 14:30:35 -07004019static ssize_t show_stats(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05004020 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06004021{
4022 struct ipw2100_priv *priv = dev_get_drvdata(d);
James Ketrenosee8e3652005-09-14 09:47:29 -05004023 char *out = buf;
James Ketrenos2c86c272005-03-23 17:32:29 -06004024
4025 out += sprintf(out, "interrupts: %d {tx: %d, rx: %d, other: %d}\n",
4026 priv->interrupts, priv->tx_interrupts,
4027 priv->rx_interrupts, priv->inta_other);
4028 out += sprintf(out, "firmware resets: %d\n", priv->resets);
4029 out += sprintf(out, "firmware hangs: %d\n", priv->hangs);
Brice Goglin0f52bf92005-12-01 01:41:46 -08004030#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06004031 out += sprintf(out, "packet mismatch image: %s\n",
4032 priv->snapshot[0] ? "YES" : "NO");
4033#endif
4034
4035 return out - buf;
4036}
James Ketrenos2c86c272005-03-23 17:32:29 -06004037
James Ketrenosee8e3652005-09-14 09:47:29 -05004038static DEVICE_ATTR(stats, S_IRUGO, show_stats, NULL);
James Ketrenos2c86c272005-03-23 17:32:29 -06004039
Jiri Bencc4aee8c2005-08-25 20:04:43 -04004040static int ipw2100_switch_mode(struct ipw2100_priv *priv, u32 mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06004041{
4042 int err;
4043
4044 if (mode == priv->ieee->iw_mode)
4045 return 0;
4046
4047 err = ipw2100_disable_adapter(priv);
4048 if (err) {
Jiri Benc797b4f72005-08-25 20:03:27 -04004049 printk(KERN_ERR DRV_NAME ": %s: Could not disable adapter %d\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06004050 priv->net_dev->name, err);
4051 return err;
4052 }
4053
4054 switch (mode) {
4055 case IW_MODE_INFRA:
4056 priv->net_dev->type = ARPHRD_ETHER;
4057 break;
4058 case IW_MODE_ADHOC:
4059 priv->net_dev->type = ARPHRD_ETHER;
4060 break;
4061#ifdef CONFIG_IPW2100_MONITOR
4062 case IW_MODE_MONITOR:
4063 priv->last_mode = priv->ieee->iw_mode;
Stefan Rompf15745a72006-02-21 18:36:17 +08004064 priv->net_dev->type = ARPHRD_IEEE80211_RADIOTAP;
James Ketrenos2c86c272005-03-23 17:32:29 -06004065 break;
James Ketrenosee8e3652005-09-14 09:47:29 -05004066#endif /* CONFIG_IPW2100_MONITOR */
James Ketrenos2c86c272005-03-23 17:32:29 -06004067 }
4068
4069 priv->ieee->iw_mode = mode;
4070
4071#ifdef CONFIG_PM
James Ketrenosee8e3652005-09-14 09:47:29 -05004072 /* Indicate ipw2100_download_firmware download firmware
James Ketrenos2c86c272005-03-23 17:32:29 -06004073 * from disk instead of memory. */
4074 ipw2100_firmware.version = 0;
4075#endif
4076
James Ketrenosee8e3652005-09-14 09:47:29 -05004077 printk(KERN_INFO "%s: Reseting on mode change.\n", priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06004078 priv->reset_backoff = 0;
4079 schedule_reset(priv);
4080
4081 return 0;
4082}
4083
Andrew Mortonedfc43f2005-06-20 14:30:35 -07004084static ssize_t show_internals(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05004085 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06004086{
4087 struct ipw2100_priv *priv = dev_get_drvdata(d);
4088 int len = 0;
4089
James Ketrenosee8e3652005-09-14 09:47:29 -05004090#define DUMP_VAR(x,y) len += sprintf(buf + len, # x ": %" y "\n", priv-> x)
James Ketrenos2c86c272005-03-23 17:32:29 -06004091
4092 if (priv->status & STATUS_ASSOCIATED)
4093 len += sprintf(buf + len, "connected: %lu\n",
4094 get_seconds() - priv->connect_start);
4095 else
4096 len += sprintf(buf + len, "not connected\n");
4097
John W. Linville274bfb82008-10-29 11:35:05 -04004098 DUMP_VAR(ieee->crypt_info.crypt[priv->ieee->crypt_info.tx_keyidx], "p");
James Ketrenosee8e3652005-09-14 09:47:29 -05004099 DUMP_VAR(status, "08lx");
4100 DUMP_VAR(config, "08lx");
4101 DUMP_VAR(capability, "08lx");
James Ketrenos2c86c272005-03-23 17:32:29 -06004102
James Ketrenosee8e3652005-09-14 09:47:29 -05004103 len +=
4104 sprintf(buf + len, "last_rtc: %lu\n",
4105 (unsigned long)priv->last_rtc);
James Ketrenos2c86c272005-03-23 17:32:29 -06004106
James Ketrenosee8e3652005-09-14 09:47:29 -05004107 DUMP_VAR(fatal_error, "d");
4108 DUMP_VAR(stop_hang_check, "d");
4109 DUMP_VAR(stop_rf_kill, "d");
4110 DUMP_VAR(messages_sent, "d");
James Ketrenos2c86c272005-03-23 17:32:29 -06004111
James Ketrenosee8e3652005-09-14 09:47:29 -05004112 DUMP_VAR(tx_pend_stat.value, "d");
4113 DUMP_VAR(tx_pend_stat.hi, "d");
James Ketrenos2c86c272005-03-23 17:32:29 -06004114
James Ketrenosee8e3652005-09-14 09:47:29 -05004115 DUMP_VAR(tx_free_stat.value, "d");
4116 DUMP_VAR(tx_free_stat.lo, "d");
James Ketrenos2c86c272005-03-23 17:32:29 -06004117
James Ketrenosee8e3652005-09-14 09:47:29 -05004118 DUMP_VAR(msg_free_stat.value, "d");
4119 DUMP_VAR(msg_free_stat.lo, "d");
James Ketrenos2c86c272005-03-23 17:32:29 -06004120
James Ketrenosee8e3652005-09-14 09:47:29 -05004121 DUMP_VAR(msg_pend_stat.value, "d");
4122 DUMP_VAR(msg_pend_stat.hi, "d");
James Ketrenos2c86c272005-03-23 17:32:29 -06004123
James Ketrenosee8e3652005-09-14 09:47:29 -05004124 DUMP_VAR(fw_pend_stat.value, "d");
4125 DUMP_VAR(fw_pend_stat.hi, "d");
James Ketrenos2c86c272005-03-23 17:32:29 -06004126
James Ketrenosee8e3652005-09-14 09:47:29 -05004127 DUMP_VAR(txq_stat.value, "d");
4128 DUMP_VAR(txq_stat.lo, "d");
James Ketrenos2c86c272005-03-23 17:32:29 -06004129
James Ketrenosee8e3652005-09-14 09:47:29 -05004130 DUMP_VAR(ieee->scans, "d");
4131 DUMP_VAR(reset_backoff, "d");
James Ketrenos2c86c272005-03-23 17:32:29 -06004132
4133 return len;
4134}
James Ketrenosee8e3652005-09-14 09:47:29 -05004135
James Ketrenos2c86c272005-03-23 17:32:29 -06004136static DEVICE_ATTR(internals, S_IRUGO, show_internals, NULL);
4137
Andrew Mortonedfc43f2005-06-20 14:30:35 -07004138static ssize_t show_bssinfo(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05004139 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06004140{
4141 struct ipw2100_priv *priv = dev_get_drvdata(d);
4142 char essid[IW_ESSID_MAX_SIZE + 1];
4143 u8 bssid[ETH_ALEN];
4144 u32 chan = 0;
James Ketrenosee8e3652005-09-14 09:47:29 -05004145 char *out = buf;
Hannes Ederb9da9e92009-02-14 11:50:26 +00004146 unsigned int length;
James Ketrenos2c86c272005-03-23 17:32:29 -06004147 int ret;
4148
James Ketrenos82328352005-08-24 22:33:31 -05004149 if (priv->status & STATUS_RF_KILL_MASK)
4150 return 0;
4151
James Ketrenos2c86c272005-03-23 17:32:29 -06004152 memset(essid, 0, sizeof(essid));
4153 memset(bssid, 0, sizeof(bssid));
4154
4155 length = IW_ESSID_MAX_SIZE;
4156 ret = ipw2100_get_ordinal(priv, IPW_ORD_STAT_ASSN_SSID, essid, &length);
4157 if (ret)
4158 IPW_DEBUG_INFO("failed querying ordinals at line %d\n",
4159 __LINE__);
4160
4161 length = sizeof(bssid);
4162 ret = ipw2100_get_ordinal(priv, IPW_ORD_STAT_ASSN_AP_BSSID,
4163 bssid, &length);
4164 if (ret)
4165 IPW_DEBUG_INFO("failed querying ordinals at line %d\n",
4166 __LINE__);
4167
4168 length = sizeof(u32);
4169 ret = ipw2100_get_ordinal(priv, IPW_ORD_OUR_FREQ, &chan, &length);
4170 if (ret)
4171 IPW_DEBUG_INFO("failed querying ordinals at line %d\n",
4172 __LINE__);
4173
4174 out += sprintf(out, "ESSID: %s\n", essid);
Johannes Berge1749612008-10-27 15:59:26 -07004175 out += sprintf(out, "BSSID: %pM\n", bssid);
James Ketrenos2c86c272005-03-23 17:32:29 -06004176 out += sprintf(out, "Channel: %d\n", chan);
4177
4178 return out - buf;
4179}
James Ketrenos2c86c272005-03-23 17:32:29 -06004180
James Ketrenosee8e3652005-09-14 09:47:29 -05004181static DEVICE_ATTR(bssinfo, S_IRUGO, show_bssinfo, NULL);
James Ketrenos2c86c272005-03-23 17:32:29 -06004182
Brice Goglin0f52bf92005-12-01 01:41:46 -08004183#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06004184static ssize_t show_debug_level(struct device_driver *d, char *buf)
4185{
4186 return sprintf(buf, "0x%08X\n", ipw2100_debug_level);
4187}
4188
James Ketrenos82328352005-08-24 22:33:31 -05004189static ssize_t store_debug_level(struct device_driver *d,
4190 const char *buf, size_t count)
James Ketrenos2c86c272005-03-23 17:32:29 -06004191{
4192 char *p = (char *)buf;
4193 u32 val;
4194
4195 if (p[1] == 'x' || p[1] == 'X' || p[0] == 'x' || p[0] == 'X') {
4196 p++;
4197 if (p[0] == 'x' || p[0] == 'X')
4198 p++;
4199 val = simple_strtoul(p, &p, 16);
4200 } else
4201 val = simple_strtoul(p, &p, 10);
4202 if (p == buf)
Zhu Yia1e695a2005-07-04 14:06:00 +08004203 IPW_DEBUG_INFO(": %s is not in hex or decimal form.\n", buf);
James Ketrenos2c86c272005-03-23 17:32:29 -06004204 else
4205 ipw2100_debug_level = val;
4206
4207 return strnlen(buf, count);
4208}
James Ketrenosee8e3652005-09-14 09:47:29 -05004209
James Ketrenos2c86c272005-03-23 17:32:29 -06004210static DRIVER_ATTR(debug_level, S_IWUSR | S_IRUGO, show_debug_level,
4211 store_debug_level);
Brice Goglin0f52bf92005-12-01 01:41:46 -08004212#endif /* CONFIG_IPW2100_DEBUG */
James Ketrenos2c86c272005-03-23 17:32:29 -06004213
Andrew Mortonedfc43f2005-06-20 14:30:35 -07004214static ssize_t show_fatal_error(struct device *d,
James Ketrenosee8e3652005-09-14 09:47:29 -05004215 struct device_attribute *attr, char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06004216{
4217 struct ipw2100_priv *priv = dev_get_drvdata(d);
4218 char *out = buf;
4219 int i;
4220
4221 if (priv->fatal_error)
James Ketrenosee8e3652005-09-14 09:47:29 -05004222 out += sprintf(out, "0x%08X\n", priv->fatal_error);
James Ketrenos2c86c272005-03-23 17:32:29 -06004223 else
4224 out += sprintf(out, "0\n");
4225
4226 for (i = 1; i <= IPW2100_ERROR_QUEUE; i++) {
4227 if (!priv->fatal_errors[(priv->fatal_index - i) %
4228 IPW2100_ERROR_QUEUE])
4229 continue;
4230
4231 out += sprintf(out, "%d. 0x%08X\n", i,
4232 priv->fatal_errors[(priv->fatal_index - i) %
4233 IPW2100_ERROR_QUEUE]);
4234 }
4235
4236 return out - buf;
4237}
4238
Andrew Mortonedfc43f2005-06-20 14:30:35 -07004239static ssize_t store_fatal_error(struct device *d,
James Ketrenosee8e3652005-09-14 09:47:29 -05004240 struct device_attribute *attr, const char *buf,
4241 size_t count)
James Ketrenos2c86c272005-03-23 17:32:29 -06004242{
4243 struct ipw2100_priv *priv = dev_get_drvdata(d);
4244 schedule_reset(priv);
4245 return count;
4246}
James Ketrenos2c86c272005-03-23 17:32:29 -06004247
James Ketrenosee8e3652005-09-14 09:47:29 -05004248static DEVICE_ATTR(fatal_error, S_IWUSR | S_IRUGO, show_fatal_error,
4249 store_fatal_error);
James Ketrenos2c86c272005-03-23 17:32:29 -06004250
Andrew Mortonedfc43f2005-06-20 14:30:35 -07004251static ssize_t show_scan_age(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05004252 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06004253{
4254 struct ipw2100_priv *priv = dev_get_drvdata(d);
4255 return sprintf(buf, "%d\n", priv->ieee->scan_age);
4256}
4257
Andrew Mortonedfc43f2005-06-20 14:30:35 -07004258static ssize_t store_scan_age(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05004259 const char *buf, size_t count)
James Ketrenos2c86c272005-03-23 17:32:29 -06004260{
4261 struct ipw2100_priv *priv = dev_get_drvdata(d);
4262 struct net_device *dev = priv->net_dev;
4263 char buffer[] = "00000000";
4264 unsigned long len =
4265 (sizeof(buffer) - 1) > count ? count : sizeof(buffer) - 1;
4266 unsigned long val;
4267 char *p = buffer;
4268
Zhu Yi8ed55a42006-01-24 13:49:20 +08004269 (void)dev; /* kill unused-var warning for debug-only code */
Jeff Garzikc2a8fad2005-11-09 00:49:38 -05004270
James Ketrenos2c86c272005-03-23 17:32:29 -06004271 IPW_DEBUG_INFO("enter\n");
4272
4273 strncpy(buffer, buf, len);
4274 buffer[len] = 0;
4275
4276 if (p[1] == 'x' || p[1] == 'X' || p[0] == 'x' || p[0] == 'X') {
4277 p++;
4278 if (p[0] == 'x' || p[0] == 'X')
4279 p++;
4280 val = simple_strtoul(p, &p, 16);
4281 } else
4282 val = simple_strtoul(p, &p, 10);
4283 if (p == buffer) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004284 IPW_DEBUG_INFO("%s: user supplied invalid value.\n", dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06004285 } else {
4286 priv->ieee->scan_age = val;
4287 IPW_DEBUG_INFO("set scan_age = %u\n", priv->ieee->scan_age);
4288 }
4289
4290 IPW_DEBUG_INFO("exit\n");
4291 return len;
4292}
James Ketrenosee8e3652005-09-14 09:47:29 -05004293
James Ketrenos2c86c272005-03-23 17:32:29 -06004294static DEVICE_ATTR(scan_age, S_IWUSR | S_IRUGO, show_scan_age, store_scan_age);
4295
Andrew Mortonedfc43f2005-06-20 14:30:35 -07004296static ssize_t show_rf_kill(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05004297 char *buf)
James Ketrenos2c86c272005-03-23 17:32:29 -06004298{
4299 /* 0 - RF kill not enabled
4300 1 - SW based RF kill active (sysfs)
4301 2 - HW based RF kill active
4302 3 - Both HW and SW baed RF kill active */
Greg Kroah-Hartman928841b2009-04-30 23:02:47 -07004303 struct ipw2100_priv *priv = dev_get_drvdata(d);
James Ketrenos2c86c272005-03-23 17:32:29 -06004304 int val = ((priv->status & STATUS_RF_KILL_SW) ? 0x1 : 0x0) |
James Ketrenosee8e3652005-09-14 09:47:29 -05004305 (rf_kill_active(priv) ? 0x2 : 0x0);
James Ketrenos2c86c272005-03-23 17:32:29 -06004306 return sprintf(buf, "%i\n", val);
4307}
4308
4309static int ipw_radio_kill_sw(struct ipw2100_priv *priv, int disable_radio)
4310{
4311 if ((disable_radio ? 1 : 0) ==
4312 (priv->status & STATUS_RF_KILL_SW ? 1 : 0))
James Ketrenosee8e3652005-09-14 09:47:29 -05004313 return 0;
James Ketrenos2c86c272005-03-23 17:32:29 -06004314
4315 IPW_DEBUG_RF_KILL("Manual SW RF Kill set to: RADIO %s\n",
4316 disable_radio ? "OFF" : "ON");
4317
Ingo Molnar752e3772006-02-28 07:20:54 +08004318 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06004319
4320 if (disable_radio) {
4321 priv->status |= STATUS_RF_KILL_SW;
4322 ipw2100_down(priv);
4323 } else {
4324 priv->status &= ~STATUS_RF_KILL_SW;
4325 if (rf_kill_active(priv)) {
4326 IPW_DEBUG_RF_KILL("Can not turn radio back on - "
4327 "disabled by HW switch\n");
4328 /* Make sure the RF_KILL check timer is running */
4329 priv->stop_rf_kill = 0;
4330 cancel_delayed_work(&priv->rf_kill);
Tejun Heobcb6d912011-01-26 12:12:50 +01004331 schedule_delayed_work(&priv->rf_kill,
4332 round_jiffies_relative(HZ));
James Ketrenos2c86c272005-03-23 17:32:29 -06004333 } else
4334 schedule_reset(priv);
4335 }
4336
Ingo Molnar752e3772006-02-28 07:20:54 +08004337 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06004338 return 1;
4339}
4340
Andrew Mortonedfc43f2005-06-20 14:30:35 -07004341static ssize_t store_rf_kill(struct device *d, struct device_attribute *attr,
James Ketrenosee8e3652005-09-14 09:47:29 -05004342 const char *buf, size_t count)
James Ketrenos2c86c272005-03-23 17:32:29 -06004343{
4344 struct ipw2100_priv *priv = dev_get_drvdata(d);
4345 ipw_radio_kill_sw(priv, buf[0] == '1');
4346 return count;
4347}
James Ketrenos2c86c272005-03-23 17:32:29 -06004348
James Ketrenosee8e3652005-09-14 09:47:29 -05004349static DEVICE_ATTR(rf_kill, S_IWUSR | S_IRUGO, show_rf_kill, store_rf_kill);
James Ketrenos2c86c272005-03-23 17:32:29 -06004350
4351static struct attribute *ipw2100_sysfs_entries[] = {
4352 &dev_attr_hardware.attr,
4353 &dev_attr_registers.attr,
4354 &dev_attr_ordinals.attr,
4355 &dev_attr_pci.attr,
4356 &dev_attr_stats.attr,
4357 &dev_attr_internals.attr,
4358 &dev_attr_bssinfo.attr,
4359 &dev_attr_memory.attr,
4360 &dev_attr_scan_age.attr,
4361 &dev_attr_fatal_error.attr,
4362 &dev_attr_rf_kill.attr,
4363 &dev_attr_cfg.attr,
4364 &dev_attr_status.attr,
4365 &dev_attr_capability.attr,
4366 NULL,
4367};
4368
4369static struct attribute_group ipw2100_attribute_group = {
4370 .attrs = ipw2100_sysfs_entries,
4371};
4372
James Ketrenos2c86c272005-03-23 17:32:29 -06004373static int status_queue_allocate(struct ipw2100_priv *priv, int entries)
4374{
4375 struct ipw2100_status_queue *q = &priv->status_queue;
4376
4377 IPW_DEBUG_INFO("enter\n");
4378
4379 q->size = entries * sizeof(struct ipw2100_status);
James Ketrenosee8e3652005-09-14 09:47:29 -05004380 q->drv =
4381 (struct ipw2100_status *)pci_alloc_consistent(priv->pci_dev,
4382 q->size, &q->nic);
James Ketrenos2c86c272005-03-23 17:32:29 -06004383 if (!q->drv) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004384 IPW_DEBUG_WARNING("Can not allocate status queue.\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06004385 return -ENOMEM;
4386 }
4387
4388 memset(q->drv, 0, q->size);
4389
4390 IPW_DEBUG_INFO("exit\n");
4391
4392 return 0;
4393}
4394
4395static void status_queue_free(struct ipw2100_priv *priv)
4396{
4397 IPW_DEBUG_INFO("enter\n");
4398
4399 if (priv->status_queue.drv) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004400 pci_free_consistent(priv->pci_dev, priv->status_queue.size,
4401 priv->status_queue.drv,
4402 priv->status_queue.nic);
James Ketrenos2c86c272005-03-23 17:32:29 -06004403 priv->status_queue.drv = NULL;
4404 }
4405
4406 IPW_DEBUG_INFO("exit\n");
4407}
4408
4409static int bd_queue_allocate(struct ipw2100_priv *priv,
4410 struct ipw2100_bd_queue *q, int entries)
4411{
4412 IPW_DEBUG_INFO("enter\n");
4413
4414 memset(q, 0, sizeof(struct ipw2100_bd_queue));
4415
4416 q->entries = entries;
4417 q->size = entries * sizeof(struct ipw2100_bd);
4418 q->drv = pci_alloc_consistent(priv->pci_dev, q->size, &q->nic);
4419 if (!q->drv) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004420 IPW_DEBUG_INFO
4421 ("can't allocate shared memory for buffer descriptors\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06004422 return -ENOMEM;
4423 }
4424 memset(q->drv, 0, q->size);
4425
4426 IPW_DEBUG_INFO("exit\n");
4427
4428 return 0;
4429}
4430
James Ketrenosee8e3652005-09-14 09:47:29 -05004431static void bd_queue_free(struct ipw2100_priv *priv, struct ipw2100_bd_queue *q)
James Ketrenos2c86c272005-03-23 17:32:29 -06004432{
4433 IPW_DEBUG_INFO("enter\n");
4434
4435 if (!q)
4436 return;
4437
4438 if (q->drv) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004439 pci_free_consistent(priv->pci_dev, q->size, q->drv, q->nic);
James Ketrenos2c86c272005-03-23 17:32:29 -06004440 q->drv = NULL;
4441 }
4442
4443 IPW_DEBUG_INFO("exit\n");
4444}
4445
James Ketrenosee8e3652005-09-14 09:47:29 -05004446static void bd_queue_initialize(struct ipw2100_priv *priv,
4447 struct ipw2100_bd_queue *q, u32 base, u32 size,
4448 u32 r, u32 w)
James Ketrenos2c86c272005-03-23 17:32:29 -06004449{
4450 IPW_DEBUG_INFO("enter\n");
4451
James Ketrenosee8e3652005-09-14 09:47:29 -05004452 IPW_DEBUG_INFO("initializing bd queue at virt=%p, phys=%08x\n", q->drv,
4453 (u32) q->nic);
James Ketrenos2c86c272005-03-23 17:32:29 -06004454
4455 write_register(priv->net_dev, base, q->nic);
4456 write_register(priv->net_dev, size, q->entries);
4457 write_register(priv->net_dev, r, q->oldest);
4458 write_register(priv->net_dev, w, q->next);
4459
4460 IPW_DEBUG_INFO("exit\n");
4461}
4462
Tejun Heobcb6d912011-01-26 12:12:50 +01004463static void ipw2100_kill_works(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06004464{
Tejun Heobcb6d912011-01-26 12:12:50 +01004465 priv->stop_rf_kill = 1;
4466 priv->stop_hang_check = 1;
4467 cancel_delayed_work_sync(&priv->reset_work);
4468 cancel_delayed_work_sync(&priv->security_work);
4469 cancel_delayed_work_sync(&priv->wx_event_work);
4470 cancel_delayed_work_sync(&priv->hang_check);
4471 cancel_delayed_work_sync(&priv->rf_kill);
4472 cancel_work_sync(&priv->scan_event_now);
4473 cancel_delayed_work_sync(&priv->scan_event_later);
James Ketrenos2c86c272005-03-23 17:32:29 -06004474}
4475
4476static int ipw2100_tx_allocate(struct ipw2100_priv *priv)
4477{
4478 int i, j, err = -EINVAL;
4479 void *v;
4480 dma_addr_t p;
4481
4482 IPW_DEBUG_INFO("enter\n");
4483
4484 err = bd_queue_allocate(priv, &priv->tx_queue, TX_QUEUE_LENGTH);
4485 if (err) {
4486 IPW_DEBUG_ERROR("%s: failed bd_queue_allocate\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05004487 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06004488 return err;
4489 }
4490
James Ketrenosee8e3652005-09-14 09:47:29 -05004491 priv->tx_buffers =
Joe Perchesefe4c452010-05-31 20:23:15 -07004492 kmalloc(TX_PENDED_QUEUE_LENGTH * sizeof(struct ipw2100_tx_packet),
4493 GFP_ATOMIC);
James Ketrenos2c86c272005-03-23 17:32:29 -06004494 if (!priv->tx_buffers) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004495 printk(KERN_ERR DRV_NAME
4496 ": %s: alloc failed form tx buffers.\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06004497 priv->net_dev->name);
4498 bd_queue_free(priv, &priv->tx_queue);
4499 return -ENOMEM;
4500 }
4501
4502 for (i = 0; i < TX_PENDED_QUEUE_LENGTH; i++) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004503 v = pci_alloc_consistent(priv->pci_dev,
4504 sizeof(struct ipw2100_data_header),
4505 &p);
James Ketrenos2c86c272005-03-23 17:32:29 -06004506 if (!v) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004507 printk(KERN_ERR DRV_NAME
4508 ": %s: PCI alloc failed for tx " "buffers.\n",
4509 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06004510 err = -ENOMEM;
4511 break;
4512 }
4513
4514 priv->tx_buffers[i].type = DATA;
James Ketrenosee8e3652005-09-14 09:47:29 -05004515 priv->tx_buffers[i].info.d_struct.data =
4516 (struct ipw2100_data_header *)v;
James Ketrenos2c86c272005-03-23 17:32:29 -06004517 priv->tx_buffers[i].info.d_struct.data_phys = p;
4518 priv->tx_buffers[i].info.d_struct.txb = NULL;
4519 }
4520
4521 if (i == TX_PENDED_QUEUE_LENGTH)
4522 return 0;
4523
4524 for (j = 0; j < i; j++) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004525 pci_free_consistent(priv->pci_dev,
4526 sizeof(struct ipw2100_data_header),
4527 priv->tx_buffers[j].info.d_struct.data,
4528 priv->tx_buffers[j].info.d_struct.
4529 data_phys);
James Ketrenos2c86c272005-03-23 17:32:29 -06004530 }
4531
4532 kfree(priv->tx_buffers);
4533 priv->tx_buffers = NULL;
4534
4535 return err;
4536}
4537
4538static void ipw2100_tx_initialize(struct ipw2100_priv *priv)
4539{
4540 int i;
4541
4542 IPW_DEBUG_INFO("enter\n");
4543
4544 /*
4545 * reinitialize packet info lists
4546 */
4547 INIT_LIST_HEAD(&priv->fw_pend_list);
4548 INIT_STAT(&priv->fw_pend_stat);
4549
4550 /*
4551 * reinitialize lists
4552 */
4553 INIT_LIST_HEAD(&priv->tx_pend_list);
4554 INIT_LIST_HEAD(&priv->tx_free_list);
4555 INIT_STAT(&priv->tx_pend_stat);
4556 INIT_STAT(&priv->tx_free_stat);
4557
4558 for (i = 0; i < TX_PENDED_QUEUE_LENGTH; i++) {
4559 /* We simply drop any SKBs that have been queued for
4560 * transmit */
4561 if (priv->tx_buffers[i].info.d_struct.txb) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004562 libipw_txb_free(priv->tx_buffers[i].info.d_struct.
James Ketrenosee8e3652005-09-14 09:47:29 -05004563 txb);
James Ketrenos2c86c272005-03-23 17:32:29 -06004564 priv->tx_buffers[i].info.d_struct.txb = NULL;
4565 }
4566
4567 list_add_tail(&priv->tx_buffers[i].list, &priv->tx_free_list);
4568 }
4569
4570 SET_STAT(&priv->tx_free_stat, i);
4571
4572 priv->tx_queue.oldest = 0;
4573 priv->tx_queue.available = priv->tx_queue.entries;
4574 priv->tx_queue.next = 0;
4575 INIT_STAT(&priv->txq_stat);
4576 SET_STAT(&priv->txq_stat, priv->tx_queue.available);
4577
4578 bd_queue_initialize(priv, &priv->tx_queue,
4579 IPW_MEM_HOST_SHARED_TX_QUEUE_BD_BASE,
4580 IPW_MEM_HOST_SHARED_TX_QUEUE_BD_SIZE,
4581 IPW_MEM_HOST_SHARED_TX_QUEUE_READ_INDEX,
4582 IPW_MEM_HOST_SHARED_TX_QUEUE_WRITE_INDEX);
4583
4584 IPW_DEBUG_INFO("exit\n");
4585
4586}
4587
4588static void ipw2100_tx_free(struct ipw2100_priv *priv)
4589{
4590 int i;
4591
4592 IPW_DEBUG_INFO("enter\n");
4593
4594 bd_queue_free(priv, &priv->tx_queue);
4595
4596 if (!priv->tx_buffers)
4597 return;
4598
4599 for (i = 0; i < TX_PENDED_QUEUE_LENGTH; i++) {
4600 if (priv->tx_buffers[i].info.d_struct.txb) {
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04004601 libipw_txb_free(priv->tx_buffers[i].info.d_struct.
James Ketrenosee8e3652005-09-14 09:47:29 -05004602 txb);
James Ketrenos2c86c272005-03-23 17:32:29 -06004603 priv->tx_buffers[i].info.d_struct.txb = NULL;
4604 }
4605 if (priv->tx_buffers[i].info.d_struct.data)
James Ketrenosee8e3652005-09-14 09:47:29 -05004606 pci_free_consistent(priv->pci_dev,
4607 sizeof(struct ipw2100_data_header),
4608 priv->tx_buffers[i].info.d_struct.
4609 data,
4610 priv->tx_buffers[i].info.d_struct.
4611 data_phys);
James Ketrenos2c86c272005-03-23 17:32:29 -06004612 }
4613
4614 kfree(priv->tx_buffers);
4615 priv->tx_buffers = NULL;
4616
4617 IPW_DEBUG_INFO("exit\n");
4618}
4619
James Ketrenos2c86c272005-03-23 17:32:29 -06004620static int ipw2100_rx_allocate(struct ipw2100_priv *priv)
4621{
4622 int i, j, err = -EINVAL;
4623
4624 IPW_DEBUG_INFO("enter\n");
4625
4626 err = bd_queue_allocate(priv, &priv->rx_queue, RX_QUEUE_LENGTH);
4627 if (err) {
4628 IPW_DEBUG_INFO("failed bd_queue_allocate\n");
4629 return err;
4630 }
4631
4632 err = status_queue_allocate(priv, RX_QUEUE_LENGTH);
4633 if (err) {
4634 IPW_DEBUG_INFO("failed status_queue_allocate\n");
4635 bd_queue_free(priv, &priv->rx_queue);
4636 return err;
4637 }
4638
4639 /*
4640 * allocate packets
4641 */
Joe Perchesefe4c452010-05-31 20:23:15 -07004642 priv->rx_buffers = kmalloc(RX_QUEUE_LENGTH *
4643 sizeof(struct ipw2100_rx_packet),
4644 GFP_KERNEL);
James Ketrenos2c86c272005-03-23 17:32:29 -06004645 if (!priv->rx_buffers) {
4646 IPW_DEBUG_INFO("can't allocate rx packet buffer table\n");
4647
4648 bd_queue_free(priv, &priv->rx_queue);
4649
4650 status_queue_free(priv);
4651
4652 return -ENOMEM;
4653 }
4654
4655 for (i = 0; i < RX_QUEUE_LENGTH; i++) {
4656 struct ipw2100_rx_packet *packet = &priv->rx_buffers[i];
4657
4658 err = ipw2100_alloc_skb(priv, packet);
4659 if (unlikely(err)) {
4660 err = -ENOMEM;
4661 break;
4662 }
4663
4664 /* The BD holds the cache aligned address */
4665 priv->rx_queue.drv[i].host_addr = packet->dma_addr;
4666 priv->rx_queue.drv[i].buf_length = IPW_RX_NIC_BUFFER_LENGTH;
4667 priv->status_queue.drv[i].status_fields = 0;
4668 }
4669
4670 if (i == RX_QUEUE_LENGTH)
4671 return 0;
4672
4673 for (j = 0; j < i; j++) {
4674 pci_unmap_single(priv->pci_dev, priv->rx_buffers[j].dma_addr,
4675 sizeof(struct ipw2100_rx_packet),
4676 PCI_DMA_FROMDEVICE);
4677 dev_kfree_skb(priv->rx_buffers[j].skb);
4678 }
4679
4680 kfree(priv->rx_buffers);
4681 priv->rx_buffers = NULL;
4682
4683 bd_queue_free(priv, &priv->rx_queue);
4684
4685 status_queue_free(priv);
4686
4687 return err;
4688}
4689
4690static void ipw2100_rx_initialize(struct ipw2100_priv *priv)
4691{
4692 IPW_DEBUG_INFO("enter\n");
4693
4694 priv->rx_queue.oldest = 0;
4695 priv->rx_queue.available = priv->rx_queue.entries - 1;
4696 priv->rx_queue.next = priv->rx_queue.entries - 1;
4697
4698 INIT_STAT(&priv->rxq_stat);
4699 SET_STAT(&priv->rxq_stat, priv->rx_queue.available);
4700
4701 bd_queue_initialize(priv, &priv->rx_queue,
4702 IPW_MEM_HOST_SHARED_RX_BD_BASE,
4703 IPW_MEM_HOST_SHARED_RX_BD_SIZE,
4704 IPW_MEM_HOST_SHARED_RX_READ_INDEX,
4705 IPW_MEM_HOST_SHARED_RX_WRITE_INDEX);
4706
4707 /* set up the status queue */
4708 write_register(priv->net_dev, IPW_MEM_HOST_SHARED_RX_STATUS_BASE,
4709 priv->status_queue.nic);
4710
4711 IPW_DEBUG_INFO("exit\n");
4712}
4713
4714static void ipw2100_rx_free(struct ipw2100_priv *priv)
4715{
4716 int i;
4717
4718 IPW_DEBUG_INFO("enter\n");
4719
4720 bd_queue_free(priv, &priv->rx_queue);
4721 status_queue_free(priv);
4722
4723 if (!priv->rx_buffers)
4724 return;
4725
4726 for (i = 0; i < RX_QUEUE_LENGTH; i++) {
4727 if (priv->rx_buffers[i].rxp) {
4728 pci_unmap_single(priv->pci_dev,
4729 priv->rx_buffers[i].dma_addr,
4730 sizeof(struct ipw2100_rx),
4731 PCI_DMA_FROMDEVICE);
4732 dev_kfree_skb(priv->rx_buffers[i].skb);
4733 }
4734 }
4735
4736 kfree(priv->rx_buffers);
4737 priv->rx_buffers = NULL;
4738
4739 IPW_DEBUG_INFO("exit\n");
4740}
4741
4742static int ipw2100_read_mac_address(struct ipw2100_priv *priv)
4743{
4744 u32 length = ETH_ALEN;
Joe Perches0795af52007-10-03 17:59:30 -07004745 u8 addr[ETH_ALEN];
James Ketrenos2c86c272005-03-23 17:32:29 -06004746
4747 int err;
4748
Joe Perches0795af52007-10-03 17:59:30 -07004749 err = ipw2100_get_ordinal(priv, IPW_ORD_STAT_ADAPTER_MAC, addr, &length);
James Ketrenos2c86c272005-03-23 17:32:29 -06004750 if (err) {
4751 IPW_DEBUG_INFO("MAC address read failed\n");
4752 return -EIO;
4753 }
James Ketrenos2c86c272005-03-23 17:32:29 -06004754
Joe Perches0795af52007-10-03 17:59:30 -07004755 memcpy(priv->net_dev->dev_addr, addr, ETH_ALEN);
Johannes Berge1749612008-10-27 15:59:26 -07004756 IPW_DEBUG_INFO("card MAC is %pM\n", priv->net_dev->dev_addr);
James Ketrenos2c86c272005-03-23 17:32:29 -06004757
4758 return 0;
4759}
4760
4761/********************************************************************
4762 *
4763 * Firmware Commands
4764 *
4765 ********************************************************************/
4766
Jiri Bencc4aee8c2005-08-25 20:04:43 -04004767static int ipw2100_set_mac_address(struct ipw2100_priv *priv, int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06004768{
4769 struct host_command cmd = {
4770 .host_command = ADAPTER_ADDRESS,
4771 .host_command_sequence = 0,
4772 .host_command_length = ETH_ALEN
4773 };
4774 int err;
4775
4776 IPW_DEBUG_HC("SET_MAC_ADDRESS\n");
4777
4778 IPW_DEBUG_INFO("enter\n");
4779
4780 if (priv->config & CFG_CUSTOM_MAC) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004781 memcpy(cmd.host_command_parameters, priv->mac_addr, ETH_ALEN);
James Ketrenos2c86c272005-03-23 17:32:29 -06004782 memcpy(priv->net_dev->dev_addr, priv->mac_addr, ETH_ALEN);
4783 } else
4784 memcpy(cmd.host_command_parameters, priv->net_dev->dev_addr,
4785 ETH_ALEN);
4786
4787 err = ipw2100_hw_send_command(priv, &cmd);
4788
4789 IPW_DEBUG_INFO("exit\n");
4790 return err;
4791}
4792
Jiri Bencc4aee8c2005-08-25 20:04:43 -04004793static int ipw2100_set_port_type(struct ipw2100_priv *priv, u32 port_type,
James Ketrenos2c86c272005-03-23 17:32:29 -06004794 int batch_mode)
4795{
4796 struct host_command cmd = {
4797 .host_command = PORT_TYPE,
4798 .host_command_sequence = 0,
4799 .host_command_length = sizeof(u32)
4800 };
4801 int err;
4802
4803 switch (port_type) {
4804 case IW_MODE_INFRA:
4805 cmd.host_command_parameters[0] = IPW_BSS;
4806 break;
4807 case IW_MODE_ADHOC:
4808 cmd.host_command_parameters[0] = IPW_IBSS;
4809 break;
4810 }
4811
4812 IPW_DEBUG_HC("PORT_TYPE: %s\n",
4813 port_type == IPW_IBSS ? "Ad-Hoc" : "Managed");
4814
4815 if (!batch_mode) {
4816 err = ipw2100_disable_adapter(priv);
4817 if (err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004818 printk(KERN_ERR DRV_NAME
4819 ": %s: Could not disable adapter %d\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06004820 priv->net_dev->name, err);
4821 return err;
4822 }
4823 }
4824
4825 /* send cmd to firmware */
4826 err = ipw2100_hw_send_command(priv, &cmd);
4827
4828 if (!batch_mode)
4829 ipw2100_enable_adapter(priv);
4830
4831 return err;
4832}
4833
Jiri Bencc4aee8c2005-08-25 20:04:43 -04004834static int ipw2100_set_channel(struct ipw2100_priv *priv, u32 channel,
4835 int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06004836{
4837 struct host_command cmd = {
4838 .host_command = CHANNEL,
4839 .host_command_sequence = 0,
4840 .host_command_length = sizeof(u32)
4841 };
4842 int err;
4843
4844 cmd.host_command_parameters[0] = channel;
4845
4846 IPW_DEBUG_HC("CHANNEL: %d\n", channel);
4847
4848 /* If BSS then we don't support channel selection */
4849 if (priv->ieee->iw_mode == IW_MODE_INFRA)
4850 return 0;
4851
4852 if ((channel != 0) &&
4853 ((channel < REG_MIN_CHANNEL) || (channel > REG_MAX_CHANNEL)))
4854 return -EINVAL;
4855
4856 if (!batch_mode) {
4857 err = ipw2100_disable_adapter(priv);
4858 if (err)
4859 return err;
4860 }
4861
4862 err = ipw2100_hw_send_command(priv, &cmd);
4863 if (err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05004864 IPW_DEBUG_INFO("Failed to set channel to %d", channel);
James Ketrenos2c86c272005-03-23 17:32:29 -06004865 return err;
4866 }
4867
4868 if (channel)
4869 priv->config |= CFG_STATIC_CHANNEL;
4870 else
4871 priv->config &= ~CFG_STATIC_CHANNEL;
4872
4873 priv->channel = channel;
4874
4875 if (!batch_mode) {
4876 err = ipw2100_enable_adapter(priv);
4877 if (err)
4878 return err;
4879 }
4880
4881 return 0;
4882}
4883
Jiri Bencc4aee8c2005-08-25 20:04:43 -04004884static int ipw2100_system_config(struct ipw2100_priv *priv, int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06004885{
4886 struct host_command cmd = {
4887 .host_command = SYSTEM_CONFIG,
4888 .host_command_sequence = 0,
4889 .host_command_length = 12,
4890 };
4891 u32 ibss_mask, len = sizeof(u32);
4892 int err;
4893
4894 /* Set system configuration */
4895
4896 if (!batch_mode) {
4897 err = ipw2100_disable_adapter(priv);
4898 if (err)
4899 return err;
4900 }
4901
4902 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
4903 cmd.host_command_parameters[0] |= IPW_CFG_IBSS_AUTO_START;
4904
4905 cmd.host_command_parameters[0] |= IPW_CFG_IBSS_MASK |
James Ketrenosee8e3652005-09-14 09:47:29 -05004906 IPW_CFG_BSS_MASK | IPW_CFG_802_1x_ENABLE;
James Ketrenos2c86c272005-03-23 17:32:29 -06004907
4908 if (!(priv->config & CFG_LONG_PREAMBLE))
4909 cmd.host_command_parameters[0] |= IPW_CFG_PREAMBLE_AUTO;
4910
4911 err = ipw2100_get_ordinal(priv,
4912 IPW_ORD_EEPROM_IBSS_11B_CHANNELS,
James Ketrenosee8e3652005-09-14 09:47:29 -05004913 &ibss_mask, &len);
James Ketrenos2c86c272005-03-23 17:32:29 -06004914 if (err)
4915 ibss_mask = IPW_IBSS_11B_DEFAULT_MASK;
4916
4917 cmd.host_command_parameters[1] = REG_CHANNEL_MASK;
4918 cmd.host_command_parameters[2] = REG_CHANNEL_MASK & ibss_mask;
4919
4920 /* 11b only */
James Ketrenosee8e3652005-09-14 09:47:29 -05004921 /*cmd.host_command_parameters[0] |= DIVERSITY_ANTENNA_A; */
James Ketrenos2c86c272005-03-23 17:32:29 -06004922
4923 err = ipw2100_hw_send_command(priv, &cmd);
4924 if (err)
4925 return err;
4926
4927/* If IPv6 is configured in the kernel then we don't want to filter out all
4928 * of the multicast packets as IPv6 needs some. */
4929#if !defined(CONFIG_IPV6) && !defined(CONFIG_IPV6_MODULE)
4930 cmd.host_command = ADD_MULTICAST;
4931 cmd.host_command_sequence = 0;
4932 cmd.host_command_length = 0;
4933
4934 ipw2100_hw_send_command(priv, &cmd);
4935#endif
4936 if (!batch_mode) {
4937 err = ipw2100_enable_adapter(priv);
4938 if (err)
4939 return err;
4940 }
4941
4942 return 0;
4943}
4944
Jiri Bencc4aee8c2005-08-25 20:04:43 -04004945static int ipw2100_set_tx_rates(struct ipw2100_priv *priv, u32 rate,
4946 int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06004947{
4948 struct host_command cmd = {
4949 .host_command = BASIC_TX_RATES,
4950 .host_command_sequence = 0,
4951 .host_command_length = 4
4952 };
4953 int err;
4954
4955 cmd.host_command_parameters[0] = rate & TX_RATE_MASK;
4956
4957 if (!batch_mode) {
4958 err = ipw2100_disable_adapter(priv);
4959 if (err)
4960 return err;
4961 }
4962
4963 /* Set BASIC TX Rate first */
4964 ipw2100_hw_send_command(priv, &cmd);
4965
4966 /* Set TX Rate */
4967 cmd.host_command = TX_RATES;
4968 ipw2100_hw_send_command(priv, &cmd);
4969
4970 /* Set MSDU TX Rate */
4971 cmd.host_command = MSDU_TX_RATES;
4972 ipw2100_hw_send_command(priv, &cmd);
4973
4974 if (!batch_mode) {
4975 err = ipw2100_enable_adapter(priv);
4976 if (err)
4977 return err;
4978 }
4979
4980 priv->tx_rates = rate;
4981
4982 return 0;
4983}
4984
James Ketrenosee8e3652005-09-14 09:47:29 -05004985static int ipw2100_set_power_mode(struct ipw2100_priv *priv, int power_level)
James Ketrenos2c86c272005-03-23 17:32:29 -06004986{
4987 struct host_command cmd = {
4988 .host_command = POWER_MODE,
4989 .host_command_sequence = 0,
4990 .host_command_length = 4
4991 };
4992 int err;
4993
4994 cmd.host_command_parameters[0] = power_level;
4995
4996 err = ipw2100_hw_send_command(priv, &cmd);
4997 if (err)
4998 return err;
4999
5000 if (power_level == IPW_POWER_MODE_CAM)
5001 priv->power_mode = IPW_POWER_LEVEL(priv->power_mode);
5002 else
5003 priv->power_mode = IPW_POWER_ENABLED | power_level;
5004
Robert P. J. Dayae800312007-01-31 02:39:40 -05005005#ifdef IPW2100_TX_POWER
James Ketrenosee8e3652005-09-14 09:47:29 -05005006 if (priv->port_type == IBSS && priv->adhoc_power != DFTL_IBSS_TX_POWER) {
James Ketrenos2c86c272005-03-23 17:32:29 -06005007 /* Set beacon interval */
5008 cmd.host_command = TX_POWER_INDEX;
James Ketrenosee8e3652005-09-14 09:47:29 -05005009 cmd.host_command_parameters[0] = (u32) priv->adhoc_power;
James Ketrenos2c86c272005-03-23 17:32:29 -06005010
5011 err = ipw2100_hw_send_command(priv, &cmd);
5012 if (err)
5013 return err;
5014 }
5015#endif
5016
5017 return 0;
5018}
5019
Jiri Bencc4aee8c2005-08-25 20:04:43 -04005020static int ipw2100_set_rts_threshold(struct ipw2100_priv *priv, u32 threshold)
James Ketrenos2c86c272005-03-23 17:32:29 -06005021{
5022 struct host_command cmd = {
5023 .host_command = RTS_THRESHOLD,
5024 .host_command_sequence = 0,
5025 .host_command_length = 4
5026 };
5027 int err;
5028
5029 if (threshold & RTS_DISABLED)
5030 cmd.host_command_parameters[0] = MAX_RTS_THRESHOLD;
5031 else
5032 cmd.host_command_parameters[0] = threshold & ~RTS_DISABLED;
5033
5034 err = ipw2100_hw_send_command(priv, &cmd);
5035 if (err)
5036 return err;
5037
5038 priv->rts_threshold = threshold;
5039
5040 return 0;
5041}
5042
5043#if 0
5044int ipw2100_set_fragmentation_threshold(struct ipw2100_priv *priv,
5045 u32 threshold, int batch_mode)
5046{
5047 struct host_command cmd = {
5048 .host_command = FRAG_THRESHOLD,
5049 .host_command_sequence = 0,
5050 .host_command_length = 4,
5051 .host_command_parameters[0] = 0,
5052 };
5053 int err;
5054
5055 if (!batch_mode) {
5056 err = ipw2100_disable_adapter(priv);
5057 if (err)
5058 return err;
5059 }
5060
5061 if (threshold == 0)
5062 threshold = DEFAULT_FRAG_THRESHOLD;
5063 else {
5064 threshold = max(threshold, MIN_FRAG_THRESHOLD);
5065 threshold = min(threshold, MAX_FRAG_THRESHOLD);
5066 }
5067
5068 cmd.host_command_parameters[0] = threshold;
5069
5070 IPW_DEBUG_HC("FRAG_THRESHOLD: %u\n", threshold);
5071
5072 err = ipw2100_hw_send_command(priv, &cmd);
5073
5074 if (!batch_mode)
5075 ipw2100_enable_adapter(priv);
5076
5077 if (!err)
5078 priv->frag_threshold = threshold;
5079
5080 return err;
5081}
5082#endif
5083
Jiri Bencc4aee8c2005-08-25 20:04:43 -04005084static int ipw2100_set_short_retry(struct ipw2100_priv *priv, u32 retry)
James Ketrenos2c86c272005-03-23 17:32:29 -06005085{
5086 struct host_command cmd = {
5087 .host_command = SHORT_RETRY_LIMIT,
5088 .host_command_sequence = 0,
5089 .host_command_length = 4
5090 };
5091 int err;
5092
5093 cmd.host_command_parameters[0] = retry;
5094
5095 err = ipw2100_hw_send_command(priv, &cmd);
5096 if (err)
5097 return err;
5098
5099 priv->short_retry_limit = retry;
5100
5101 return 0;
5102}
5103
Jiri Bencc4aee8c2005-08-25 20:04:43 -04005104static int ipw2100_set_long_retry(struct ipw2100_priv *priv, u32 retry)
James Ketrenos2c86c272005-03-23 17:32:29 -06005105{
5106 struct host_command cmd = {
5107 .host_command = LONG_RETRY_LIMIT,
5108 .host_command_sequence = 0,
5109 .host_command_length = 4
5110 };
5111 int err;
5112
5113 cmd.host_command_parameters[0] = retry;
5114
5115 err = ipw2100_hw_send_command(priv, &cmd);
5116 if (err)
5117 return err;
5118
5119 priv->long_retry_limit = retry;
5120
5121 return 0;
5122}
5123
James Ketrenosee8e3652005-09-14 09:47:29 -05005124static int ipw2100_set_mandatory_bssid(struct ipw2100_priv *priv, u8 * bssid,
Jiri Bencc4aee8c2005-08-25 20:04:43 -04005125 int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06005126{
5127 struct host_command cmd = {
5128 .host_command = MANDATORY_BSSID,
5129 .host_command_sequence = 0,
5130 .host_command_length = (bssid == NULL) ? 0 : ETH_ALEN
5131 };
5132 int err;
5133
Brice Goglin0f52bf92005-12-01 01:41:46 -08005134#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06005135 if (bssid != NULL)
Johannes Berge1749612008-10-27 15:59:26 -07005136 IPW_DEBUG_HC("MANDATORY_BSSID: %pM\n", bssid);
James Ketrenos2c86c272005-03-23 17:32:29 -06005137 else
5138 IPW_DEBUG_HC("MANDATORY_BSSID: <clear>\n");
5139#endif
5140 /* if BSSID is empty then we disable mandatory bssid mode */
5141 if (bssid != NULL)
James Ketrenos82328352005-08-24 22:33:31 -05005142 memcpy(cmd.host_command_parameters, bssid, ETH_ALEN);
James Ketrenos2c86c272005-03-23 17:32:29 -06005143
5144 if (!batch_mode) {
5145 err = ipw2100_disable_adapter(priv);
5146 if (err)
5147 return err;
5148 }
5149
5150 err = ipw2100_hw_send_command(priv, &cmd);
5151
5152 if (!batch_mode)
5153 ipw2100_enable_adapter(priv);
5154
5155 return err;
5156}
5157
James Ketrenos2c86c272005-03-23 17:32:29 -06005158static int ipw2100_disassociate_bssid(struct ipw2100_priv *priv)
5159{
5160 struct host_command cmd = {
5161 .host_command = DISASSOCIATION_BSSID,
5162 .host_command_sequence = 0,
5163 .host_command_length = ETH_ALEN
5164 };
5165 int err;
5166 int len;
5167
5168 IPW_DEBUG_HC("DISASSOCIATION_BSSID\n");
5169
5170 len = ETH_ALEN;
5171 /* The Firmware currently ignores the BSSID and just disassociates from
5172 * the currently associated AP -- but in the off chance that a future
5173 * firmware does use the BSSID provided here, we go ahead and try and
5174 * set it to the currently associated AP's BSSID */
5175 memcpy(cmd.host_command_parameters, priv->bssid, ETH_ALEN);
5176
5177 err = ipw2100_hw_send_command(priv, &cmd);
5178
5179 return err;
5180}
James Ketrenos2c86c272005-03-23 17:32:29 -06005181
5182static int ipw2100_set_wpa_ie(struct ipw2100_priv *,
5183 struct ipw2100_wpa_assoc_frame *, int)
James Ketrenosee8e3652005-09-14 09:47:29 -05005184 __attribute__ ((unused));
James Ketrenos2c86c272005-03-23 17:32:29 -06005185
5186static int ipw2100_set_wpa_ie(struct ipw2100_priv *priv,
5187 struct ipw2100_wpa_assoc_frame *wpa_frame,
5188 int batch_mode)
5189{
5190 struct host_command cmd = {
5191 .host_command = SET_WPA_IE,
5192 .host_command_sequence = 0,
5193 .host_command_length = sizeof(struct ipw2100_wpa_assoc_frame),
5194 };
5195 int err;
5196
5197 IPW_DEBUG_HC("SET_WPA_IE\n");
5198
5199 if (!batch_mode) {
5200 err = ipw2100_disable_adapter(priv);
5201 if (err)
5202 return err;
5203 }
5204
5205 memcpy(cmd.host_command_parameters, wpa_frame,
5206 sizeof(struct ipw2100_wpa_assoc_frame));
5207
5208 err = ipw2100_hw_send_command(priv, &cmd);
5209
5210 if (!batch_mode) {
5211 if (ipw2100_enable_adapter(priv))
5212 err = -EIO;
5213 }
5214
5215 return err;
5216}
5217
5218struct security_info_params {
5219 u32 allowed_ciphers;
5220 u16 version;
5221 u8 auth_mode;
5222 u8 replay_counters_number;
5223 u8 unicast_using_group;
Eric Dumazetba2d3582010-06-02 18:10:09 +00005224} __packed;
James Ketrenos2c86c272005-03-23 17:32:29 -06005225
Jiri Bencc4aee8c2005-08-25 20:04:43 -04005226static int ipw2100_set_security_information(struct ipw2100_priv *priv,
5227 int auth_mode,
5228 int security_level,
5229 int unicast_using_group,
5230 int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06005231{
5232 struct host_command cmd = {
5233 .host_command = SET_SECURITY_INFORMATION,
5234 .host_command_sequence = 0,
5235 .host_command_length = sizeof(struct security_info_params)
5236 };
5237 struct security_info_params *security =
James Ketrenosee8e3652005-09-14 09:47:29 -05005238 (struct security_info_params *)&cmd.host_command_parameters;
James Ketrenos2c86c272005-03-23 17:32:29 -06005239 int err;
5240 memset(security, 0, sizeof(*security));
5241
5242 /* If shared key AP authentication is turned on, then we need to
5243 * configure the firmware to try and use it.
5244 *
5245 * Actual data encryption/decryption is handled by the host. */
5246 security->auth_mode = auth_mode;
5247 security->unicast_using_group = unicast_using_group;
5248
5249 switch (security_level) {
5250 default:
5251 case SEC_LEVEL_0:
5252 security->allowed_ciphers = IPW_NONE_CIPHER;
5253 break;
5254 case SEC_LEVEL_1:
5255 security->allowed_ciphers = IPW_WEP40_CIPHER |
James Ketrenosee8e3652005-09-14 09:47:29 -05005256 IPW_WEP104_CIPHER;
James Ketrenos2c86c272005-03-23 17:32:29 -06005257 break;
5258 case SEC_LEVEL_2:
5259 security->allowed_ciphers = IPW_WEP40_CIPHER |
James Ketrenosee8e3652005-09-14 09:47:29 -05005260 IPW_WEP104_CIPHER | IPW_TKIP_CIPHER;
James Ketrenos2c86c272005-03-23 17:32:29 -06005261 break;
5262 case SEC_LEVEL_2_CKIP:
5263 security->allowed_ciphers = IPW_WEP40_CIPHER |
James Ketrenosee8e3652005-09-14 09:47:29 -05005264 IPW_WEP104_CIPHER | IPW_CKIP_CIPHER;
James Ketrenos2c86c272005-03-23 17:32:29 -06005265 break;
5266 case SEC_LEVEL_3:
5267 security->allowed_ciphers = IPW_WEP40_CIPHER |
James Ketrenosee8e3652005-09-14 09:47:29 -05005268 IPW_WEP104_CIPHER | IPW_TKIP_CIPHER | IPW_CCMP_CIPHER;
James Ketrenos2c86c272005-03-23 17:32:29 -06005269 break;
5270 }
5271
James Ketrenosee8e3652005-09-14 09:47:29 -05005272 IPW_DEBUG_HC
5273 ("SET_SECURITY_INFORMATION: auth:%d cipher:0x%02X (level %d)\n",
5274 security->auth_mode, security->allowed_ciphers, security_level);
James Ketrenos2c86c272005-03-23 17:32:29 -06005275
5276 security->replay_counters_number = 0;
5277
5278 if (!batch_mode) {
5279 err = ipw2100_disable_adapter(priv);
5280 if (err)
5281 return err;
5282 }
5283
5284 err = ipw2100_hw_send_command(priv, &cmd);
5285
5286 if (!batch_mode)
5287 ipw2100_enable_adapter(priv);
5288
5289 return err;
5290}
5291
James Ketrenosee8e3652005-09-14 09:47:29 -05005292static int ipw2100_set_tx_power(struct ipw2100_priv *priv, u32 tx_power)
James Ketrenos2c86c272005-03-23 17:32:29 -06005293{
5294 struct host_command cmd = {
5295 .host_command = TX_POWER_INDEX,
5296 .host_command_sequence = 0,
5297 .host_command_length = 4
5298 };
5299 int err = 0;
Zhu Yi3173ca02006-01-24 13:49:01 +08005300 u32 tmp = tx_power;
James Ketrenos2c86c272005-03-23 17:32:29 -06005301
Liu Hongf75459e2005-07-13 12:29:21 -05005302 if (tx_power != IPW_TX_POWER_DEFAULT)
Zhu Yi3173ca02006-01-24 13:49:01 +08005303 tmp = (tx_power - IPW_TX_POWER_MIN_DBM) * 16 /
5304 (IPW_TX_POWER_MAX_DBM - IPW_TX_POWER_MIN_DBM);
Liu Hongf75459e2005-07-13 12:29:21 -05005305
Zhu Yi3173ca02006-01-24 13:49:01 +08005306 cmd.host_command_parameters[0] = tmp;
James Ketrenos2c86c272005-03-23 17:32:29 -06005307
5308 if (priv->ieee->iw_mode == IW_MODE_ADHOC)
5309 err = ipw2100_hw_send_command(priv, &cmd);
5310 if (!err)
5311 priv->tx_power = tx_power;
5312
5313 return 0;
5314}
5315
Jiri Bencc4aee8c2005-08-25 20:04:43 -04005316static int ipw2100_set_ibss_beacon_interval(struct ipw2100_priv *priv,
5317 u32 interval, int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06005318{
5319 struct host_command cmd = {
5320 .host_command = BEACON_INTERVAL,
5321 .host_command_sequence = 0,
5322 .host_command_length = 4
5323 };
5324 int err;
5325
5326 cmd.host_command_parameters[0] = interval;
5327
5328 IPW_DEBUG_INFO("enter\n");
5329
5330 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
5331 if (!batch_mode) {
5332 err = ipw2100_disable_adapter(priv);
5333 if (err)
5334 return err;
5335 }
5336
5337 ipw2100_hw_send_command(priv, &cmd);
5338
5339 if (!batch_mode) {
5340 err = ipw2100_enable_adapter(priv);
5341 if (err)
5342 return err;
5343 }
5344 }
5345
5346 IPW_DEBUG_INFO("exit\n");
5347
5348 return 0;
5349}
5350
Hannes Edera3d1fd22008-12-26 00:14:41 -08005351static void ipw2100_queues_initialize(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06005352{
5353 ipw2100_tx_initialize(priv);
5354 ipw2100_rx_initialize(priv);
5355 ipw2100_msg_initialize(priv);
5356}
5357
Hannes Edera3d1fd22008-12-26 00:14:41 -08005358static void ipw2100_queues_free(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06005359{
5360 ipw2100_tx_free(priv);
5361 ipw2100_rx_free(priv);
5362 ipw2100_msg_free(priv);
5363}
5364
Hannes Edera3d1fd22008-12-26 00:14:41 -08005365static int ipw2100_queues_allocate(struct ipw2100_priv *priv)
James Ketrenos2c86c272005-03-23 17:32:29 -06005366{
5367 if (ipw2100_tx_allocate(priv) ||
James Ketrenosee8e3652005-09-14 09:47:29 -05005368 ipw2100_rx_allocate(priv) || ipw2100_msg_allocate(priv))
James Ketrenos2c86c272005-03-23 17:32:29 -06005369 goto fail;
5370
5371 return 0;
5372
James Ketrenosee8e3652005-09-14 09:47:29 -05005373 fail:
James Ketrenos2c86c272005-03-23 17:32:29 -06005374 ipw2100_tx_free(priv);
5375 ipw2100_rx_free(priv);
5376 ipw2100_msg_free(priv);
5377 return -ENOMEM;
5378}
5379
5380#define IPW_PRIVACY_CAPABLE 0x0008
5381
5382static int ipw2100_set_wep_flags(struct ipw2100_priv *priv, u32 flags,
5383 int batch_mode)
5384{
5385 struct host_command cmd = {
5386 .host_command = WEP_FLAGS,
5387 .host_command_sequence = 0,
5388 .host_command_length = 4
5389 };
5390 int err;
5391
5392 cmd.host_command_parameters[0] = flags;
5393
5394 IPW_DEBUG_HC("WEP_FLAGS: flags = 0x%08X\n", flags);
5395
5396 if (!batch_mode) {
5397 err = ipw2100_disable_adapter(priv);
5398 if (err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05005399 printk(KERN_ERR DRV_NAME
5400 ": %s: Could not disable adapter %d\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06005401 priv->net_dev->name, err);
5402 return err;
5403 }
5404 }
5405
5406 /* send cmd to firmware */
5407 err = ipw2100_hw_send_command(priv, &cmd);
5408
5409 if (!batch_mode)
5410 ipw2100_enable_adapter(priv);
5411
5412 return err;
5413}
5414
5415struct ipw2100_wep_key {
5416 u8 idx;
5417 u8 len;
5418 u8 key[13];
5419};
5420
5421/* Macros to ease up priting WEP keys */
5422#define WEP_FMT_64 "%02X%02X%02X%02X-%02X"
5423#define WEP_FMT_128 "%02X%02X%02X%02X-%02X%02X%02X%02X-%02X%02X%02X"
5424#define WEP_STR_64(x) x[0],x[1],x[2],x[3],x[4]
5425#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]
5426
James Ketrenos2c86c272005-03-23 17:32:29 -06005427/**
5428 * Set a the wep key
5429 *
5430 * @priv: struct to work on
5431 * @idx: index of the key we want to set
5432 * @key: ptr to the key data to set
5433 * @len: length of the buffer at @key
5434 * @batch_mode: FIXME perform the operation in batch mode, not
5435 * disabling the device.
5436 *
5437 * @returns 0 if OK, < 0 errno code on error.
5438 *
5439 * Fill out a command structure with the new wep key, length an
5440 * index and send it down the wire.
5441 */
5442static int ipw2100_set_key(struct ipw2100_priv *priv,
5443 int idx, char *key, int len, int batch_mode)
5444{
5445 int keylen = len ? (len <= 5 ? 5 : 13) : 0;
5446 struct host_command cmd = {
5447 .host_command = WEP_KEY_INFO,
5448 .host_command_sequence = 0,
5449 .host_command_length = sizeof(struct ipw2100_wep_key),
5450 };
James Ketrenosee8e3652005-09-14 09:47:29 -05005451 struct ipw2100_wep_key *wep_key = (void *)cmd.host_command_parameters;
James Ketrenos2c86c272005-03-23 17:32:29 -06005452 int err;
5453
5454 IPW_DEBUG_HC("WEP_KEY_INFO: index = %d, len = %d/%d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05005455 idx, keylen, len);
James Ketrenos2c86c272005-03-23 17:32:29 -06005456
5457 /* NOTE: We don't check cached values in case the firmware was reset
Adrian Bunk80f72282006-06-30 18:27:16 +02005458 * or some other problem is occurring. If the user is setting the key,
James Ketrenos2c86c272005-03-23 17:32:29 -06005459 * then we push the change */
5460
5461 wep_key->idx = idx;
5462 wep_key->len = keylen;
5463
5464 if (keylen) {
5465 memcpy(wep_key->key, key, len);
5466 memset(wep_key->key + len, 0, keylen - len);
5467 }
5468
5469 /* Will be optimized out on debug not being configured in */
5470 if (keylen == 0)
5471 IPW_DEBUG_WEP("%s: Clearing key %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05005472 priv->net_dev->name, wep_key->idx);
James Ketrenos2c86c272005-03-23 17:32:29 -06005473 else if (keylen == 5)
5474 IPW_DEBUG_WEP("%s: idx: %d, len: %d key: " WEP_FMT_64 "\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05005475 priv->net_dev->name, wep_key->idx, wep_key->len,
5476 WEP_STR_64(wep_key->key));
James Ketrenos2c86c272005-03-23 17:32:29 -06005477 else
5478 IPW_DEBUG_WEP("%s: idx: %d, len: %d key: " WEP_FMT_128
James Ketrenosee8e3652005-09-14 09:47:29 -05005479 "\n",
5480 priv->net_dev->name, wep_key->idx, wep_key->len,
5481 WEP_STR_128(wep_key->key));
James Ketrenos2c86c272005-03-23 17:32:29 -06005482
5483 if (!batch_mode) {
5484 err = ipw2100_disable_adapter(priv);
5485 /* FIXME: IPG: shouldn't this prink be in _disable_adapter()? */
5486 if (err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05005487 printk(KERN_ERR DRV_NAME
5488 ": %s: Could not disable adapter %d\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06005489 priv->net_dev->name, err);
5490 return err;
5491 }
5492 }
5493
5494 /* send cmd to firmware */
5495 err = ipw2100_hw_send_command(priv, &cmd);
5496
5497 if (!batch_mode) {
5498 int err2 = ipw2100_enable_adapter(priv);
5499 if (err == 0)
5500 err = err2;
5501 }
5502 return err;
5503}
5504
5505static int ipw2100_set_key_index(struct ipw2100_priv *priv,
5506 int idx, int batch_mode)
5507{
5508 struct host_command cmd = {
5509 .host_command = WEP_KEY_INDEX,
5510 .host_command_sequence = 0,
5511 .host_command_length = 4,
James Ketrenosee8e3652005-09-14 09:47:29 -05005512 .host_command_parameters = {idx},
James Ketrenos2c86c272005-03-23 17:32:29 -06005513 };
5514 int err;
5515
5516 IPW_DEBUG_HC("WEP_KEY_INDEX: index = %d\n", idx);
5517
5518 if (idx < 0 || idx > 3)
5519 return -EINVAL;
5520
5521 if (!batch_mode) {
5522 err = ipw2100_disable_adapter(priv);
5523 if (err) {
James Ketrenosee8e3652005-09-14 09:47:29 -05005524 printk(KERN_ERR DRV_NAME
5525 ": %s: Could not disable adapter %d\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06005526 priv->net_dev->name, err);
5527 return err;
5528 }
5529 }
5530
5531 /* send cmd to firmware */
5532 err = ipw2100_hw_send_command(priv, &cmd);
5533
5534 if (!batch_mode)
5535 ipw2100_enable_adapter(priv);
5536
5537 return err;
5538}
5539
James Ketrenosee8e3652005-09-14 09:47:29 -05005540static int ipw2100_configure_security(struct ipw2100_priv *priv, int batch_mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06005541{
5542 int i, err, auth_mode, sec_level, use_group;
5543
5544 if (!(priv->status & STATUS_RUNNING))
5545 return 0;
5546
5547 if (!batch_mode) {
5548 err = ipw2100_disable_adapter(priv);
5549 if (err)
5550 return err;
5551 }
5552
25b645b2005-07-12 15:45:30 -05005553 if (!priv->ieee->sec.enabled) {
James Ketrenosee8e3652005-09-14 09:47:29 -05005554 err =
5555 ipw2100_set_security_information(priv, IPW_AUTH_OPEN,
5556 SEC_LEVEL_0, 0, 1);
James Ketrenos2c86c272005-03-23 17:32:29 -06005557 } else {
5558 auth_mode = IPW_AUTH_OPEN;
Zhu Yicbbdd032006-01-24 13:48:53 +08005559 if (priv->ieee->sec.flags & SEC_AUTH_MODE) {
5560 if (priv->ieee->sec.auth_mode == WLAN_AUTH_SHARED_KEY)
5561 auth_mode = IPW_AUTH_SHARED;
5562 else if (priv->ieee->sec.auth_mode == WLAN_AUTH_LEAP)
5563 auth_mode = IPW_AUTH_LEAP_CISCO_ID;
5564 }
James Ketrenos2c86c272005-03-23 17:32:29 -06005565
5566 sec_level = SEC_LEVEL_0;
25b645b2005-07-12 15:45:30 -05005567 if (priv->ieee->sec.flags & SEC_LEVEL)
5568 sec_level = priv->ieee->sec.level;
James Ketrenos2c86c272005-03-23 17:32:29 -06005569
5570 use_group = 0;
25b645b2005-07-12 15:45:30 -05005571 if (priv->ieee->sec.flags & SEC_UNICAST_GROUP)
5572 use_group = priv->ieee->sec.unicast_uses_group;
James Ketrenos2c86c272005-03-23 17:32:29 -06005573
James Ketrenosee8e3652005-09-14 09:47:29 -05005574 err =
5575 ipw2100_set_security_information(priv, auth_mode, sec_level,
5576 use_group, 1);
James Ketrenos2c86c272005-03-23 17:32:29 -06005577 }
5578
5579 if (err)
5580 goto exit;
5581
25b645b2005-07-12 15:45:30 -05005582 if (priv->ieee->sec.enabled) {
James Ketrenos2c86c272005-03-23 17:32:29 -06005583 for (i = 0; i < 4; i++) {
25b645b2005-07-12 15:45:30 -05005584 if (!(priv->ieee->sec.flags & (1 << i))) {
5585 memset(priv->ieee->sec.keys[i], 0, WEP_KEY_LEN);
5586 priv->ieee->sec.key_sizes[i] = 0;
James Ketrenos2c86c272005-03-23 17:32:29 -06005587 } else {
5588 err = ipw2100_set_key(priv, i,
25b645b2005-07-12 15:45:30 -05005589 priv->ieee->sec.keys[i],
5590 priv->ieee->sec.
5591 key_sizes[i], 1);
James Ketrenos2c86c272005-03-23 17:32:29 -06005592 if (err)
5593 goto exit;
5594 }
5595 }
5596
John W. Linville274bfb82008-10-29 11:35:05 -04005597 ipw2100_set_key_index(priv, priv->ieee->crypt_info.tx_keyidx, 1);
James Ketrenos2c86c272005-03-23 17:32:29 -06005598 }
5599
5600 /* Always enable privacy so the Host can filter WEP packets if
5601 * encrypted data is sent up */
James Ketrenosee8e3652005-09-14 09:47:29 -05005602 err =
5603 ipw2100_set_wep_flags(priv,
25b645b2005-07-12 15:45:30 -05005604 priv->ieee->sec.
5605 enabled ? IPW_PRIVACY_CAPABLE : 0, 1);
James Ketrenos2c86c272005-03-23 17:32:29 -06005606 if (err)
5607 goto exit;
5608
5609 priv->status &= ~STATUS_SECURITY_UPDATED;
5610
James Ketrenosee8e3652005-09-14 09:47:29 -05005611 exit:
James Ketrenos2c86c272005-03-23 17:32:29 -06005612 if (!batch_mode)
5613 ipw2100_enable_adapter(priv);
5614
5615 return err;
5616}
5617
David Howellsc4028952006-11-22 14:57:56 +00005618static void ipw2100_security_work(struct work_struct *work)
James Ketrenos2c86c272005-03-23 17:32:29 -06005619{
David Howellsc4028952006-11-22 14:57:56 +00005620 struct ipw2100_priv *priv =
5621 container_of(work, struct ipw2100_priv, security_work.work);
5622
James Ketrenos2c86c272005-03-23 17:32:29 -06005623 /* If we happen to have reconnected before we get a chance to
5624 * process this, then update the security settings--which causes
5625 * a disassociation to occur */
5626 if (!(priv->status & STATUS_ASSOCIATED) &&
5627 priv->status & STATUS_SECURITY_UPDATED)
5628 ipw2100_configure_security(priv, 0);
5629}
5630
5631static void shim__set_security(struct net_device *dev,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005632 struct libipw_security *sec)
James Ketrenos2c86c272005-03-23 17:32:29 -06005633{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005634 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06005635 int i, force_update = 0;
5636
Ingo Molnar752e3772006-02-28 07:20:54 +08005637 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06005638 if (!(priv->status & STATUS_INITIALIZED))
5639 goto done;
5640
5641 for (i = 0; i < 4; i++) {
5642 if (sec->flags & (1 << i)) {
25b645b2005-07-12 15:45:30 -05005643 priv->ieee->sec.key_sizes[i] = sec->key_sizes[i];
James Ketrenos2c86c272005-03-23 17:32:29 -06005644 if (sec->key_sizes[i] == 0)
25b645b2005-07-12 15:45:30 -05005645 priv->ieee->sec.flags &= ~(1 << i);
James Ketrenos2c86c272005-03-23 17:32:29 -06005646 else
25b645b2005-07-12 15:45:30 -05005647 memcpy(priv->ieee->sec.keys[i], sec->keys[i],
James Ketrenos2c86c272005-03-23 17:32:29 -06005648 sec->key_sizes[i]);
Hong Liu054b08d2005-08-25 17:45:49 +08005649 if (sec->level == SEC_LEVEL_1) {
5650 priv->ieee->sec.flags |= (1 << i);
5651 priv->status |= STATUS_SECURITY_UPDATED;
5652 } else
5653 priv->ieee->sec.flags &= ~(1 << i);
James Ketrenos2c86c272005-03-23 17:32:29 -06005654 }
5655 }
5656
5657 if ((sec->flags & SEC_ACTIVE_KEY) &&
25b645b2005-07-12 15:45:30 -05005658 priv->ieee->sec.active_key != sec->active_key) {
James Ketrenos2c86c272005-03-23 17:32:29 -06005659 if (sec->active_key <= 3) {
25b645b2005-07-12 15:45:30 -05005660 priv->ieee->sec.active_key = sec->active_key;
5661 priv->ieee->sec.flags |= SEC_ACTIVE_KEY;
James Ketrenos2c86c272005-03-23 17:32:29 -06005662 } else
25b645b2005-07-12 15:45:30 -05005663 priv->ieee->sec.flags &= ~SEC_ACTIVE_KEY;
James Ketrenos2c86c272005-03-23 17:32:29 -06005664
5665 priv->status |= STATUS_SECURITY_UPDATED;
5666 }
5667
5668 if ((sec->flags & SEC_AUTH_MODE) &&
25b645b2005-07-12 15:45:30 -05005669 (priv->ieee->sec.auth_mode != sec->auth_mode)) {
5670 priv->ieee->sec.auth_mode = sec->auth_mode;
5671 priv->ieee->sec.flags |= SEC_AUTH_MODE;
James Ketrenos2c86c272005-03-23 17:32:29 -06005672 priv->status |= STATUS_SECURITY_UPDATED;
5673 }
5674
25b645b2005-07-12 15:45:30 -05005675 if (sec->flags & SEC_ENABLED && priv->ieee->sec.enabled != sec->enabled) {
5676 priv->ieee->sec.flags |= SEC_ENABLED;
5677 priv->ieee->sec.enabled = sec->enabled;
James Ketrenos2c86c272005-03-23 17:32:29 -06005678 priv->status |= STATUS_SECURITY_UPDATED;
5679 force_update = 1;
5680 }
5681
25b645b2005-07-12 15:45:30 -05005682 if (sec->flags & SEC_ENCRYPT)
5683 priv->ieee->sec.encrypt = sec->encrypt;
5684
5685 if (sec->flags & SEC_LEVEL && priv->ieee->sec.level != sec->level) {
5686 priv->ieee->sec.level = sec->level;
5687 priv->ieee->sec.flags |= SEC_LEVEL;
James Ketrenos2c86c272005-03-23 17:32:29 -06005688 priv->status |= STATUS_SECURITY_UPDATED;
5689 }
5690
5691 IPW_DEBUG_WEP("Security flags: %c %c%c%c%c %c%c%c%c\n",
25b645b2005-07-12 15:45:30 -05005692 priv->ieee->sec.flags & (1 << 8) ? '1' : '0',
5693 priv->ieee->sec.flags & (1 << 7) ? '1' : '0',
5694 priv->ieee->sec.flags & (1 << 6) ? '1' : '0',
5695 priv->ieee->sec.flags & (1 << 5) ? '1' : '0',
5696 priv->ieee->sec.flags & (1 << 4) ? '1' : '0',
5697 priv->ieee->sec.flags & (1 << 3) ? '1' : '0',
5698 priv->ieee->sec.flags & (1 << 2) ? '1' : '0',
5699 priv->ieee->sec.flags & (1 << 1) ? '1' : '0',
5700 priv->ieee->sec.flags & (1 << 0) ? '1' : '0');
James Ketrenos2c86c272005-03-23 17:32:29 -06005701
5702/* As a temporary work around to enable WPA until we figure out why
5703 * wpa_supplicant toggles the security capability of the driver, which
5704 * forces a disassocation with force_update...
5705 *
5706 * if (force_update || !(priv->status & STATUS_ASSOCIATED))*/
5707 if (!(priv->status & (STATUS_ASSOCIATED | STATUS_ASSOCIATING)))
5708 ipw2100_configure_security(priv, 0);
James Ketrenosee8e3652005-09-14 09:47:29 -05005709 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08005710 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06005711}
5712
5713static int ipw2100_adapter_setup(struct ipw2100_priv *priv)
5714{
5715 int err;
5716 int batch_mode = 1;
5717 u8 *bssid;
5718
5719 IPW_DEBUG_INFO("enter\n");
5720
5721 err = ipw2100_disable_adapter(priv);
5722 if (err)
5723 return err;
5724#ifdef CONFIG_IPW2100_MONITOR
5725 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
5726 err = ipw2100_set_channel(priv, priv->channel, batch_mode);
5727 if (err)
5728 return err;
5729
5730 IPW_DEBUG_INFO("exit\n");
5731
5732 return 0;
5733 }
James Ketrenosee8e3652005-09-14 09:47:29 -05005734#endif /* CONFIG_IPW2100_MONITOR */
James Ketrenos2c86c272005-03-23 17:32:29 -06005735
5736 err = ipw2100_read_mac_address(priv);
5737 if (err)
5738 return -EIO;
5739
5740 err = ipw2100_set_mac_address(priv, batch_mode);
5741 if (err)
5742 return err;
5743
5744 err = ipw2100_set_port_type(priv, priv->ieee->iw_mode, batch_mode);
5745 if (err)
5746 return err;
5747
5748 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
5749 err = ipw2100_set_channel(priv, priv->channel, batch_mode);
5750 if (err)
5751 return err;
5752 }
5753
James Ketrenosee8e3652005-09-14 09:47:29 -05005754 err = ipw2100_system_config(priv, batch_mode);
James Ketrenos2c86c272005-03-23 17:32:29 -06005755 if (err)
5756 return err;
5757
5758 err = ipw2100_set_tx_rates(priv, priv->tx_rates, batch_mode);
5759 if (err)
5760 return err;
5761
5762 /* Default to power mode OFF */
5763 err = ipw2100_set_power_mode(priv, IPW_POWER_MODE_CAM);
5764 if (err)
5765 return err;
5766
5767 err = ipw2100_set_rts_threshold(priv, priv->rts_threshold);
5768 if (err)
5769 return err;
5770
5771 if (priv->config & CFG_STATIC_BSSID)
5772 bssid = priv->bssid;
5773 else
5774 bssid = NULL;
5775 err = ipw2100_set_mandatory_bssid(priv, bssid, batch_mode);
5776 if (err)
5777 return err;
5778
5779 if (priv->config & CFG_STATIC_ESSID)
5780 err = ipw2100_set_essid(priv, priv->essid, priv->essid_len,
5781 batch_mode);
5782 else
5783 err = ipw2100_set_essid(priv, NULL, 0, batch_mode);
5784 if (err)
5785 return err;
5786
5787 err = ipw2100_configure_security(priv, batch_mode);
5788 if (err)
5789 return err;
5790
5791 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
James Ketrenosee8e3652005-09-14 09:47:29 -05005792 err =
5793 ipw2100_set_ibss_beacon_interval(priv,
5794 priv->beacon_interval,
5795 batch_mode);
James Ketrenos2c86c272005-03-23 17:32:29 -06005796 if (err)
5797 return err;
5798
5799 err = ipw2100_set_tx_power(priv, priv->tx_power);
5800 if (err)
5801 return err;
5802 }
5803
5804 /*
James Ketrenosee8e3652005-09-14 09:47:29 -05005805 err = ipw2100_set_fragmentation_threshold(
5806 priv, priv->frag_threshold, batch_mode);
5807 if (err)
5808 return err;
5809 */
James Ketrenos2c86c272005-03-23 17:32:29 -06005810
5811 IPW_DEBUG_INFO("exit\n");
5812
5813 return 0;
5814}
5815
James Ketrenos2c86c272005-03-23 17:32:29 -06005816/*************************************************************************
5817 *
5818 * EXTERNALLY CALLED METHODS
5819 *
5820 *************************************************************************/
5821
5822/* This method is called by the network layer -- not to be confused with
5823 * ipw2100_set_mac_address() declared above called by this driver (and this
5824 * method as well) to talk to the firmware */
5825static int ipw2100_set_address(struct net_device *dev, void *p)
5826{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005827 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06005828 struct sockaddr *addr = p;
5829 int err = 0;
5830
5831 if (!is_valid_ether_addr(addr->sa_data))
5832 return -EADDRNOTAVAIL;
5833
Ingo Molnar752e3772006-02-28 07:20:54 +08005834 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06005835
5836 priv->config |= CFG_CUSTOM_MAC;
5837 memcpy(priv->mac_addr, addr->sa_data, ETH_ALEN);
5838
5839 err = ipw2100_set_mac_address(priv, 0);
5840 if (err)
5841 goto done;
5842
5843 priv->reset_backoff = 0;
Ingo Molnar752e3772006-02-28 07:20:54 +08005844 mutex_unlock(&priv->action_mutex);
David Howellsc4028952006-11-22 14:57:56 +00005845 ipw2100_reset_adapter(&priv->reset_work.work);
James Ketrenos2c86c272005-03-23 17:32:29 -06005846 return 0;
5847
James Ketrenosee8e3652005-09-14 09:47:29 -05005848 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08005849 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06005850 return err;
5851}
5852
5853static int ipw2100_open(struct net_device *dev)
5854{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005855 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06005856 unsigned long flags;
5857 IPW_DEBUG_INFO("dev->open\n");
5858
5859 spin_lock_irqsave(&priv->low_lock, flags);
Jiri Benc3ce329c2005-08-25 20:07:01 -04005860 if (priv->status & STATUS_ASSOCIATED) {
5861 netif_carrier_on(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06005862 netif_start_queue(dev);
Jiri Benc3ce329c2005-08-25 20:07:01 -04005863 }
James Ketrenos2c86c272005-03-23 17:32:29 -06005864 spin_unlock_irqrestore(&priv->low_lock, flags);
5865
5866 return 0;
5867}
5868
5869static int ipw2100_close(struct net_device *dev)
5870{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005871 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06005872 unsigned long flags;
5873 struct list_head *element;
5874 struct ipw2100_tx_packet *packet;
5875
5876 IPW_DEBUG_INFO("enter\n");
5877
5878 spin_lock_irqsave(&priv->low_lock, flags);
5879
5880 if (priv->status & STATUS_ASSOCIATED)
5881 netif_carrier_off(dev);
5882 netif_stop_queue(dev);
5883
5884 /* Flush the TX queue ... */
5885 while (!list_empty(&priv->tx_pend_list)) {
5886 element = priv->tx_pend_list.next;
James Ketrenosee8e3652005-09-14 09:47:29 -05005887 packet = list_entry(element, struct ipw2100_tx_packet, list);
James Ketrenos2c86c272005-03-23 17:32:29 -06005888
5889 list_del(element);
5890 DEC_STAT(&priv->tx_pend_stat);
5891
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005892 libipw_txb_free(packet->info.d_struct.txb);
James Ketrenos2c86c272005-03-23 17:32:29 -06005893 packet->info.d_struct.txb = NULL;
5894
5895 list_add_tail(element, &priv->tx_free_list);
5896 INC_STAT(&priv->tx_free_stat);
5897 }
5898 spin_unlock_irqrestore(&priv->low_lock, flags);
5899
5900 IPW_DEBUG_INFO("exit\n");
5901
5902 return 0;
5903}
5904
James Ketrenos2c86c272005-03-23 17:32:29 -06005905/*
5906 * TODO: Fix this function... its just wrong
5907 */
5908static void ipw2100_tx_timeout(struct net_device *dev)
5909{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005910 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06005911
Stephen Hemmingerce55cba2009-03-20 19:36:38 +00005912 dev->stats.tx_errors++;
James Ketrenos2c86c272005-03-23 17:32:29 -06005913
5914#ifdef CONFIG_IPW2100_MONITOR
5915 if (priv->ieee->iw_mode == IW_MODE_MONITOR)
5916 return;
5917#endif
5918
5919 IPW_DEBUG_INFO("%s: TX timed out. Scheduling firmware restart.\n",
5920 dev->name);
5921 schedule_reset(priv);
5922}
5923
James Ketrenosee8e3652005-09-14 09:47:29 -05005924static int ipw2100_wpa_enable(struct ipw2100_priv *priv, int value)
5925{
James Ketrenos82328352005-08-24 22:33:31 -05005926 /* This is called when wpa_supplicant loads and closes the driver
5927 * interface. */
5928 priv->ieee->wpa_enabled = value;
5929 return 0;
James Ketrenos2c86c272005-03-23 17:32:29 -06005930}
5931
James Ketrenosee8e3652005-09-14 09:47:29 -05005932static int ipw2100_wpa_set_auth_algs(struct ipw2100_priv *priv, int value)
5933{
James Ketrenos2c86c272005-03-23 17:32:29 -06005934
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005935 struct libipw_device *ieee = priv->ieee;
5936 struct libipw_security sec = {
James Ketrenos2c86c272005-03-23 17:32:29 -06005937 .flags = SEC_AUTH_MODE,
5938 };
5939 int ret = 0;
5940
James Ketrenos82328352005-08-24 22:33:31 -05005941 if (value & IW_AUTH_ALG_SHARED_KEY) {
James Ketrenos2c86c272005-03-23 17:32:29 -06005942 sec.auth_mode = WLAN_AUTH_SHARED_KEY;
5943 ieee->open_wep = 0;
James Ketrenos82328352005-08-24 22:33:31 -05005944 } else if (value & IW_AUTH_ALG_OPEN_SYSTEM) {
James Ketrenos2c86c272005-03-23 17:32:29 -06005945 sec.auth_mode = WLAN_AUTH_OPEN;
5946 ieee->open_wep = 1;
Zhu Yicbbdd032006-01-24 13:48:53 +08005947 } else if (value & IW_AUTH_ALG_LEAP) {
5948 sec.auth_mode = WLAN_AUTH_LEAP;
5949 ieee->open_wep = 1;
James Ketrenos82328352005-08-24 22:33:31 -05005950 } else
5951 return -EINVAL;
James Ketrenos2c86c272005-03-23 17:32:29 -06005952
5953 if (ieee->set_security)
5954 ieee->set_security(ieee->dev, &sec);
5955 else
5956 ret = -EOPNOTSUPP;
5957
5958 return ret;
5959}
5960
Adrian Bunk3c398b82006-01-21 01:36:36 +01005961static void ipw2100_wpa_assoc_frame(struct ipw2100_priv *priv,
5962 char *wpa_ie, int wpa_ie_len)
James Ketrenosee8e3652005-09-14 09:47:29 -05005963{
James Ketrenos2c86c272005-03-23 17:32:29 -06005964
5965 struct ipw2100_wpa_assoc_frame frame;
5966
5967 frame.fixed_ie_mask = 0;
5968
5969 /* copy WPA IE */
5970 memcpy(frame.var_ie, wpa_ie, wpa_ie_len);
5971 frame.var_ie_len = wpa_ie_len;
5972
5973 /* make sure WPA is enabled */
5974 ipw2100_wpa_enable(priv, 1);
5975 ipw2100_set_wpa_ie(priv, &frame, 0);
5976}
5977
James Ketrenos2c86c272005-03-23 17:32:29 -06005978static void ipw_ethtool_get_drvinfo(struct net_device *dev,
5979 struct ethtool_drvinfo *info)
5980{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005981 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06005982 char fw_ver[64], ucode_ver[64];
5983
Rick Jones1f80c232011-11-15 10:40:49 -08005984 strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
5985 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
James Ketrenos2c86c272005-03-23 17:32:29 -06005986
5987 ipw2100_get_fwversion(priv, fw_ver, sizeof(fw_ver));
5988 ipw2100_get_ucodeversion(priv, ucode_ver, sizeof(ucode_ver));
5989
5990 snprintf(info->fw_version, sizeof(info->fw_version), "%s:%d:%s",
5991 fw_ver, priv->eeprom_version, ucode_ver);
5992
Rick Jones1f80c232011-11-15 10:40:49 -08005993 strlcpy(info->bus_info, pci_name(priv->pci_dev),
5994 sizeof(info->bus_info));
James Ketrenos2c86c272005-03-23 17:32:29 -06005995}
5996
5997static u32 ipw2100_ethtool_get_link(struct net_device *dev)
5998{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04005999 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenosee8e3652005-09-14 09:47:29 -05006000 return (priv->status & STATUS_ASSOCIATED) ? 1 : 0;
James Ketrenos2c86c272005-03-23 17:32:29 -06006001}
6002
Jeff Garzik7282d492006-09-13 14:30:00 -04006003static const struct ethtool_ops ipw2100_ethtool_ops = {
James Ketrenosee8e3652005-09-14 09:47:29 -05006004 .get_link = ipw2100_ethtool_get_link,
6005 .get_drvinfo = ipw_ethtool_get_drvinfo,
James Ketrenos2c86c272005-03-23 17:32:29 -06006006};
6007
David Howellsc4028952006-11-22 14:57:56 +00006008static void ipw2100_hang_check(struct work_struct *work)
James Ketrenos2c86c272005-03-23 17:32:29 -06006009{
David Howellsc4028952006-11-22 14:57:56 +00006010 struct ipw2100_priv *priv =
6011 container_of(work, struct ipw2100_priv, hang_check.work);
James Ketrenos2c86c272005-03-23 17:32:29 -06006012 unsigned long flags;
6013 u32 rtc = 0xa5a5a5a5;
6014 u32 len = sizeof(rtc);
6015 int restart = 0;
6016
6017 spin_lock_irqsave(&priv->low_lock, flags);
6018
6019 if (priv->fatal_error != 0) {
6020 /* If fatal_error is set then we need to restart */
6021 IPW_DEBUG_INFO("%s: Hardware fatal error detected.\n",
6022 priv->net_dev->name);
6023
6024 restart = 1;
6025 } else if (ipw2100_get_ordinal(priv, IPW_ORD_RTC_TIME, &rtc, &len) ||
6026 (rtc == priv->last_rtc)) {
6027 /* Check if firmware is hung */
6028 IPW_DEBUG_INFO("%s: Firmware RTC stalled.\n",
6029 priv->net_dev->name);
6030
6031 restart = 1;
6032 }
6033
6034 if (restart) {
6035 /* Kill timer */
6036 priv->stop_hang_check = 1;
6037 priv->hangs++;
6038
6039 /* Restart the NIC */
6040 schedule_reset(priv);
6041 }
6042
6043 priv->last_rtc = rtc;
6044
6045 if (!priv->stop_hang_check)
Tejun Heobcb6d912011-01-26 12:12:50 +01006046 schedule_delayed_work(&priv->hang_check, HZ / 2);
James Ketrenos2c86c272005-03-23 17:32:29 -06006047
6048 spin_unlock_irqrestore(&priv->low_lock, flags);
6049}
6050
David Howellsc4028952006-11-22 14:57:56 +00006051static void ipw2100_rf_kill(struct work_struct *work)
James Ketrenos2c86c272005-03-23 17:32:29 -06006052{
David Howellsc4028952006-11-22 14:57:56 +00006053 struct ipw2100_priv *priv =
6054 container_of(work, struct ipw2100_priv, rf_kill.work);
James Ketrenos2c86c272005-03-23 17:32:29 -06006055 unsigned long flags;
6056
6057 spin_lock_irqsave(&priv->low_lock, flags);
6058
6059 if (rf_kill_active(priv)) {
6060 IPW_DEBUG_RF_KILL("RF Kill active, rescheduling GPIO check\n");
6061 if (!priv->stop_rf_kill)
Tejun Heobcb6d912011-01-26 12:12:50 +01006062 schedule_delayed_work(&priv->rf_kill,
6063 round_jiffies_relative(HZ));
James Ketrenos2c86c272005-03-23 17:32:29 -06006064 goto exit_unlock;
6065 }
6066
6067 /* RF Kill is now disabled, so bring the device back up */
6068
6069 if (!(priv->status & STATUS_RF_KILL_MASK)) {
6070 IPW_DEBUG_RF_KILL("HW RF Kill no longer active, restarting "
6071 "device\n");
6072 schedule_reset(priv);
6073 } else
6074 IPW_DEBUG_RF_KILL("HW RF Kill deactivated. SW RF Kill still "
6075 "enabled\n");
6076
James Ketrenosee8e3652005-09-14 09:47:29 -05006077 exit_unlock:
James Ketrenos2c86c272005-03-23 17:32:29 -06006078 spin_unlock_irqrestore(&priv->low_lock, flags);
6079}
6080
6081static void ipw2100_irq_tasklet(struct ipw2100_priv *priv);
6082
Stephen Hemminger3e47fce2009-03-20 19:36:40 +00006083static const struct net_device_ops ipw2100_netdev_ops = {
6084 .ndo_open = ipw2100_open,
6085 .ndo_stop = ipw2100_close,
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006086 .ndo_start_xmit = libipw_xmit,
6087 .ndo_change_mtu = libipw_change_mtu,
Stephen Hemminger3e47fce2009-03-20 19:36:40 +00006088 .ndo_init = ipw2100_net_init,
6089 .ndo_tx_timeout = ipw2100_tx_timeout,
6090 .ndo_set_mac_address = ipw2100_set_address,
6091 .ndo_validate_addr = eth_validate_addr,
6092};
6093
Pavel Roskin27ae60f2010-03-12 00:01:22 -05006094/* Look into using netdev destructor to shutdown libipw? */
James Ketrenos2c86c272005-03-23 17:32:29 -06006095
James Ketrenosee8e3652005-09-14 09:47:29 -05006096static struct net_device *ipw2100_alloc_device(struct pci_dev *pci_dev,
Francois Romieu9b717072012-03-24 11:37:16 +01006097 void __iomem * ioaddr)
James Ketrenos2c86c272005-03-23 17:32:29 -06006098{
6099 struct ipw2100_priv *priv;
6100 struct net_device *dev;
6101
Pavel Roskin27ae60f2010-03-12 00:01:22 -05006102 dev = alloc_libipw(sizeof(struct ipw2100_priv), 0);
James Ketrenos2c86c272005-03-23 17:32:29 -06006103 if (!dev)
6104 return NULL;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006105 priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06006106 priv->ieee = netdev_priv(dev);
6107 priv->pci_dev = pci_dev;
6108 priv->net_dev = dev;
Francois Romieu9b717072012-03-24 11:37:16 +01006109 priv->ioaddr = ioaddr;
James Ketrenos2c86c272005-03-23 17:32:29 -06006110
6111 priv->ieee->hard_start_xmit = ipw2100_tx;
6112 priv->ieee->set_security = shim__set_security;
6113
James Ketrenos82328352005-08-24 22:33:31 -05006114 priv->ieee->perfect_rssi = -20;
6115 priv->ieee->worst_rssi = -85;
6116
Stephen Hemminger3e47fce2009-03-20 19:36:40 +00006117 dev->netdev_ops = &ipw2100_netdev_ops;
James Ketrenos2c86c272005-03-23 17:32:29 -06006118 dev->ethtool_ops = &ipw2100_ethtool_ops;
James Ketrenos2c86c272005-03-23 17:32:29 -06006119 dev->wireless_handlers = &ipw2100_wx_handler_def;
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006120 priv->wireless_data.libipw = priv->ieee;
James Ketrenoseaf8f53b2005-11-12 12:50:12 -06006121 dev->wireless_data = &priv->wireless_data;
James Ketrenosee8e3652005-09-14 09:47:29 -05006122 dev->watchdog_timeo = 3 * HZ;
James Ketrenos2c86c272005-03-23 17:32:29 -06006123 dev->irq = 0;
6124
James Ketrenos2c86c272005-03-23 17:32:29 -06006125 /* NOTE: We don't use the wireless_handlers hook
6126 * in dev as the system will start throwing WX requests
6127 * to us before we're actually initialized and it just
6128 * ends up causing problems. So, we just handle
6129 * the WX extensions through the ipw2100_ioctl interface */
6130
Jean Delvarec03983a2007-10-19 23:22:55 +02006131 /* memset() puts everything to 0, so we only have explicitly set
James Ketrenos2c86c272005-03-23 17:32:29 -06006132 * those values that need to be something else */
6133
6134 /* If power management is turned on, default to AUTO mode */
6135 priv->power_mode = IPW_POWER_AUTO;
6136
James Ketrenos82328352005-08-24 22:33:31 -05006137#ifdef CONFIG_IPW2100_MONITOR
6138 priv->config |= CFG_CRC_CHECK;
6139#endif
James Ketrenos2c86c272005-03-23 17:32:29 -06006140 priv->ieee->wpa_enabled = 0;
James Ketrenos2c86c272005-03-23 17:32:29 -06006141 priv->ieee->drop_unencrypted = 0;
6142 priv->ieee->privacy_invoked = 0;
6143 priv->ieee->ieee802_1x = 1;
James Ketrenos2c86c272005-03-23 17:32:29 -06006144
6145 /* Set module parameters */
Reinette Chatre21f8a732009-08-18 10:25:05 -07006146 switch (network_mode) {
James Ketrenos2c86c272005-03-23 17:32:29 -06006147 case 1:
6148 priv->ieee->iw_mode = IW_MODE_ADHOC;
6149 break;
6150#ifdef CONFIG_IPW2100_MONITOR
6151 case 2:
6152 priv->ieee->iw_mode = IW_MODE_MONITOR;
6153 break;
6154#endif
6155 default:
6156 case 0:
6157 priv->ieee->iw_mode = IW_MODE_INFRA;
6158 break;
6159 }
6160
6161 if (disable == 1)
6162 priv->status |= STATUS_RF_KILL_SW;
6163
6164 if (channel != 0 &&
James Ketrenosee8e3652005-09-14 09:47:29 -05006165 ((channel >= REG_MIN_CHANNEL) && (channel <= REG_MAX_CHANNEL))) {
James Ketrenos2c86c272005-03-23 17:32:29 -06006166 priv->config |= CFG_STATIC_CHANNEL;
6167 priv->channel = channel;
6168 }
6169
6170 if (associate)
6171 priv->config |= CFG_ASSOCIATE;
6172
6173 priv->beacon_interval = DEFAULT_BEACON_INTERVAL;
6174 priv->short_retry_limit = DEFAULT_SHORT_RETRY_LIMIT;
6175 priv->long_retry_limit = DEFAULT_LONG_RETRY_LIMIT;
6176 priv->rts_threshold = DEFAULT_RTS_THRESHOLD | RTS_DISABLED;
6177 priv->frag_threshold = DEFAULT_FTS | FRAG_DISABLED;
6178 priv->tx_power = IPW_TX_POWER_DEFAULT;
6179 priv->tx_rates = DEFAULT_TX_RATES;
6180
6181 strcpy(priv->nick, "ipw2100");
6182
6183 spin_lock_init(&priv->low_lock);
Ingo Molnar752e3772006-02-28 07:20:54 +08006184 mutex_init(&priv->action_mutex);
6185 mutex_init(&priv->adapter_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06006186
6187 init_waitqueue_head(&priv->wait_command_queue);
6188
6189 netif_carrier_off(dev);
6190
6191 INIT_LIST_HEAD(&priv->msg_free_list);
6192 INIT_LIST_HEAD(&priv->msg_pend_list);
6193 INIT_STAT(&priv->msg_free_stat);
6194 INIT_STAT(&priv->msg_pend_stat);
6195
6196 INIT_LIST_HEAD(&priv->tx_free_list);
6197 INIT_LIST_HEAD(&priv->tx_pend_list);
6198 INIT_STAT(&priv->tx_free_stat);
6199 INIT_STAT(&priv->tx_pend_stat);
6200
6201 INIT_LIST_HEAD(&priv->fw_pend_list);
6202 INIT_STAT(&priv->fw_pend_stat);
6203
David Howellsc4028952006-11-22 14:57:56 +00006204 INIT_DELAYED_WORK(&priv->reset_work, ipw2100_reset_adapter);
6205 INIT_DELAYED_WORK(&priv->security_work, ipw2100_security_work);
6206 INIT_DELAYED_WORK(&priv->wx_event_work, ipw2100_wx_event_work);
6207 INIT_DELAYED_WORK(&priv->hang_check, ipw2100_hang_check);
6208 INIT_DELAYED_WORK(&priv->rf_kill, ipw2100_rf_kill);
Dan Williamsd20c6782007-10-10 12:28:07 -04006209 INIT_WORK(&priv->scan_event_now, ipw2100_scan_event_now);
6210 INIT_DELAYED_WORK(&priv->scan_event_later, ipw2100_scan_event_later);
James Ketrenos2c86c272005-03-23 17:32:29 -06006211
6212 tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
6213 ipw2100_irq_tasklet, (unsigned long)priv);
6214
6215 /* NOTE: We do not start the deferred work for status checks yet */
6216 priv->stop_rf_kill = 1;
6217 priv->stop_hang_check = 1;
6218
6219 return dev;
6220}
6221
James Ketrenos2c86c272005-03-23 17:32:29 -06006222static int ipw2100_pci_init_one(struct pci_dev *pci_dev,
6223 const struct pci_device_id *ent)
6224{
Francois Romieu9b717072012-03-24 11:37:16 +01006225 void __iomem *ioaddr;
James Ketrenos2c86c272005-03-23 17:32:29 -06006226 struct net_device *dev = NULL;
6227 struct ipw2100_priv *priv = NULL;
6228 int err = 0;
6229 int registered = 0;
6230 u32 val;
6231
6232 IPW_DEBUG_INFO("enter\n");
6233
Francois Romieu9b717072012-03-24 11:37:16 +01006234 if (!(pci_resource_flags(pci_dev, 0) & IORESOURCE_MEM)) {
James Ketrenos2c86c272005-03-23 17:32:29 -06006235 IPW_DEBUG_INFO("weird - resource type is not memory\n");
6236 err = -ENODEV;
Francois Romieu9b717072012-03-24 11:37:16 +01006237 goto out;
James Ketrenos2c86c272005-03-23 17:32:29 -06006238 }
6239
Francois Romieu9b717072012-03-24 11:37:16 +01006240 ioaddr = pci_iomap(pci_dev, 0, 0);
6241 if (!ioaddr) {
James Ketrenos2c86c272005-03-23 17:32:29 -06006242 printk(KERN_WARNING DRV_NAME
6243 "Error calling ioremap_nocache.\n");
6244 err = -EIO;
6245 goto fail;
6246 }
6247
6248 /* allocate and initialize our net_device */
Francois Romieu9b717072012-03-24 11:37:16 +01006249 dev = ipw2100_alloc_device(pci_dev, ioaddr);
James Ketrenos2c86c272005-03-23 17:32:29 -06006250 if (!dev) {
6251 printk(KERN_WARNING DRV_NAME
6252 "Error calling ipw2100_alloc_device.\n");
6253 err = -ENOMEM;
6254 goto fail;
6255 }
6256
6257 /* set up PCI mappings for device */
6258 err = pci_enable_device(pci_dev);
6259 if (err) {
6260 printk(KERN_WARNING DRV_NAME
6261 "Error calling pci_enable_device.\n");
6262 return err;
6263 }
6264
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006265 priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06006266
6267 pci_set_master(pci_dev);
6268 pci_set_drvdata(pci_dev, priv);
6269
Yang Hongyang284901a2009-04-06 19:01:15 -07006270 err = pci_set_dma_mask(pci_dev, DMA_BIT_MASK(32));
James Ketrenos2c86c272005-03-23 17:32:29 -06006271 if (err) {
6272 printk(KERN_WARNING DRV_NAME
6273 "Error calling pci_set_dma_mask.\n");
6274 pci_disable_device(pci_dev);
6275 return err;
6276 }
6277
6278 err = pci_request_regions(pci_dev, DRV_NAME);
6279 if (err) {
6280 printk(KERN_WARNING DRV_NAME
6281 "Error calling pci_request_regions.\n");
6282 pci_disable_device(pci_dev);
6283 return err;
6284 }
6285
James Ketrenosee8e3652005-09-14 09:47:29 -05006286 /* We disable the RETRY_TIMEOUT register (0x41) to keep
James Ketrenos2c86c272005-03-23 17:32:29 -06006287 * PCI Tx retries from interfering with C3 CPU state */
6288 pci_read_config_dword(pci_dev, 0x40, &val);
6289 if ((val & 0x0000ff00) != 0)
6290 pci_write_config_dword(pci_dev, 0x40, val & 0xffff00ff);
6291
Pavel Machek8724a112005-06-20 14:28:43 -07006292 pci_set_power_state(pci_dev, PCI_D0);
James Ketrenos2c86c272005-03-23 17:32:29 -06006293
6294 if (!ipw2100_hw_is_adapter_in_system(dev)) {
6295 printk(KERN_WARNING DRV_NAME
6296 "Device not found via register read.\n");
6297 err = -ENODEV;
6298 goto fail;
6299 }
6300
6301 SET_NETDEV_DEV(dev, &pci_dev->dev);
6302
6303 /* Force interrupts to be shut off on the device */
6304 priv->status |= STATUS_INT_ENABLED;
6305 ipw2100_disable_interrupts(priv);
6306
6307 /* Allocate and initialize the Tx/Rx queues and lists */
6308 if (ipw2100_queues_allocate(priv)) {
6309 printk(KERN_WARNING DRV_NAME
Zhu Yi90c009a2006-12-05 14:41:32 +08006310 "Error calling ipw2100_queues_allocate.\n");
James Ketrenos2c86c272005-03-23 17:32:29 -06006311 err = -ENOMEM;
6312 goto fail;
6313 }
6314 ipw2100_queues_initialize(priv);
6315
6316 err = request_irq(pci_dev->irq,
Thomas Gleixner1fb9df52006-07-01 19:29:39 -07006317 ipw2100_interrupt, IRQF_SHARED, dev->name, priv);
James Ketrenos2c86c272005-03-23 17:32:29 -06006318 if (err) {
6319 printk(KERN_WARNING DRV_NAME
James Ketrenosee8e3652005-09-14 09:47:29 -05006320 "Error calling request_irq: %d.\n", pci_dev->irq);
James Ketrenos2c86c272005-03-23 17:32:29 -06006321 goto fail;
6322 }
6323 dev->irq = pci_dev->irq;
6324
6325 IPW_DEBUG_INFO("Attempting to register device...\n");
6326
James Ketrenos2c86c272005-03-23 17:32:29 -06006327 printk(KERN_INFO DRV_NAME
6328 ": Detected Intel PRO/Wireless 2100 Network Connection\n");
6329
6330 /* Bring up the interface. Pre 0.46, after we registered the
6331 * network device we would call ipw2100_up. This introduced a race
6332 * condition with newer hotplug configurations (network was coming
6333 * up and making calls before the device was initialized).
6334 *
6335 * If we called ipw2100_up before we registered the device, then the
6336 * device name wasn't registered. So, we instead use the net_dev->init
6337 * member to call a function that then just turns and calls ipw2100_up.
6338 * net_dev->init is called after name allocation but before the
6339 * notifier chain is called */
James Ketrenos2c86c272005-03-23 17:32:29 -06006340 err = register_netdev(dev);
6341 if (err) {
6342 printk(KERN_WARNING DRV_NAME
6343 "Error calling register_netdev.\n");
Zhu Yiefbd8092006-08-21 11:38:52 +08006344 goto fail;
James Ketrenos2c86c272005-03-23 17:32:29 -06006345 }
Stanislaw Gruszka7cabafc2011-09-14 16:47:50 +02006346 registered = 1;
6347
6348 err = ipw2100_wdev_init(dev);
6349 if (err)
6350 goto fail;
Zhu Yiefbd8092006-08-21 11:38:52 +08006351
6352 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06006353
6354 IPW_DEBUG_INFO("%s: Bound to %s\n", dev->name, pci_name(pci_dev));
6355
6356 /* perform this after register_netdev so that dev->name is set */
Jeff Garzikde897882006-10-01 07:31:09 -04006357 err = sysfs_create_group(&pci_dev->dev.kobj, &ipw2100_attribute_group);
6358 if (err)
6359 goto fail_unlock;
James Ketrenos2c86c272005-03-23 17:32:29 -06006360
6361 /* If the RF Kill switch is disabled, go ahead and complete the
6362 * startup sequence */
6363 if (!(priv->status & STATUS_RF_KILL_MASK)) {
6364 /* Enable the adapter - sends HOST_COMPLETE */
6365 if (ipw2100_enable_adapter(priv)) {
6366 printk(KERN_WARNING DRV_NAME
6367 ": %s: failed in call to enable adapter.\n",
6368 priv->net_dev->name);
6369 ipw2100_hw_stop_adapter(priv);
6370 err = -EIO;
6371 goto fail_unlock;
6372 }
6373
6374 /* Start a scan . . . */
6375 ipw2100_set_scan_options(priv);
6376 ipw2100_start_scan(priv);
6377 }
6378
6379 IPW_DEBUG_INFO("exit\n");
6380
6381 priv->status |= STATUS_INITIALIZED;
6382
Ingo Molnar752e3772006-02-28 07:20:54 +08006383 mutex_unlock(&priv->action_mutex);
Francois Romieu9b717072012-03-24 11:37:16 +01006384out:
6385 return err;
James Ketrenos2c86c272005-03-23 17:32:29 -06006386
James Ketrenosee8e3652005-09-14 09:47:29 -05006387 fail_unlock:
Ingo Molnar752e3772006-02-28 07:20:54 +08006388 mutex_unlock(&priv->action_mutex);
Stanislaw Gruszka7cabafc2011-09-14 16:47:50 +02006389 wiphy_unregister(priv->ieee->wdev.wiphy);
6390 kfree(priv->ieee->bg_band.channels);
James Ketrenosee8e3652005-09-14 09:47:29 -05006391 fail:
James Ketrenos2c86c272005-03-23 17:32:29 -06006392 if (dev) {
John W. Linville143d40f2009-11-06 12:58:20 -05006393 if (registered)
James Ketrenos2c86c272005-03-23 17:32:29 -06006394 unregister_netdev(dev);
6395
6396 ipw2100_hw_stop_adapter(priv);
6397
6398 ipw2100_disable_interrupts(priv);
6399
6400 if (dev->irq)
6401 free_irq(dev->irq, priv);
6402
Tejun Heobcb6d912011-01-26 12:12:50 +01006403 ipw2100_kill_works(priv);
James Ketrenos2c86c272005-03-23 17:32:29 -06006404
6405 /* These are safe to call even if they weren't allocated */
6406 ipw2100_queues_free(priv);
James Ketrenosee8e3652005-09-14 09:47:29 -05006407 sysfs_remove_group(&pci_dev->dev.kobj,
6408 &ipw2100_attribute_group);
James Ketrenos2c86c272005-03-23 17:32:29 -06006409
Pavel Roskin27ae60f2010-03-12 00:01:22 -05006410 free_libipw(dev, 0);
James Ketrenos2c86c272005-03-23 17:32:29 -06006411 pci_set_drvdata(pci_dev, NULL);
6412 }
6413
Francois Romieu9b717072012-03-24 11:37:16 +01006414 pci_iounmap(pci_dev, ioaddr);
James Ketrenos2c86c272005-03-23 17:32:29 -06006415
6416 pci_release_regions(pci_dev);
6417 pci_disable_device(pci_dev);
Francois Romieu9b717072012-03-24 11:37:16 +01006418 goto out;
James Ketrenos2c86c272005-03-23 17:32:29 -06006419}
6420
6421static void __devexit ipw2100_pci_remove_one(struct pci_dev *pci_dev)
6422{
6423 struct ipw2100_priv *priv = pci_get_drvdata(pci_dev);
6424 struct net_device *dev;
6425
6426 if (priv) {
Ingo Molnar752e3772006-02-28 07:20:54 +08006427 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06006428
6429 priv->status &= ~STATUS_INITIALIZED;
6430
6431 dev = priv->net_dev;
James Ketrenosee8e3652005-09-14 09:47:29 -05006432 sysfs_remove_group(&pci_dev->dev.kobj,
6433 &ipw2100_attribute_group);
James Ketrenos2c86c272005-03-23 17:32:29 -06006434
6435#ifdef CONFIG_PM
6436 if (ipw2100_firmware.version)
6437 ipw2100_release_firmware(priv, &ipw2100_firmware);
6438#endif
6439 /* Take down the hardware */
6440 ipw2100_down(priv);
6441
Ingo Molnar752e3772006-02-28 07:20:54 +08006442 /* Release the mutex so that the network subsystem can
James Ketrenos2c86c272005-03-23 17:32:29 -06006443 * complete any needed calls into the driver... */
Ingo Molnar752e3772006-02-28 07:20:54 +08006444 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06006445
6446 /* Unregister the device first - this results in close()
6447 * being called if the device is open. If we free storage
6448 * first, then close() will crash. */
6449 unregister_netdev(dev);
6450
Tejun Heobcb6d912011-01-26 12:12:50 +01006451 ipw2100_kill_works(priv);
James Ketrenos2c86c272005-03-23 17:32:29 -06006452
6453 ipw2100_queues_free(priv);
6454
6455 /* Free potential debugging firmware snapshot */
6456 ipw2100_snapshot_free(priv);
6457
6458 if (dev->irq)
6459 free_irq(dev->irq, priv);
6460
Francois Romieu9b717072012-03-24 11:37:16 +01006461 pci_iounmap(pci_dev, priv->ioaddr);
James Ketrenos2c86c272005-03-23 17:32:29 -06006462
Pavel Roskin27ae60f2010-03-12 00:01:22 -05006463 /* wiphy_unregister needs to be here, before free_libipw */
Matthew Garrettc26409a2009-11-11 14:36:30 -05006464 wiphy_unregister(priv->ieee->wdev.wiphy);
6465 kfree(priv->ieee->bg_band.channels);
Pavel Roskin27ae60f2010-03-12 00:01:22 -05006466 free_libipw(dev, 0);
James Ketrenos2c86c272005-03-23 17:32:29 -06006467 }
6468
6469 pci_release_regions(pci_dev);
6470 pci_disable_device(pci_dev);
6471
6472 IPW_DEBUG_INFO("exit\n");
6473}
6474
James Ketrenos2c86c272005-03-23 17:32:29 -06006475#ifdef CONFIG_PM
James Ketrenos2c86c272005-03-23 17:32:29 -06006476static int ipw2100_suspend(struct pci_dev *pci_dev, pm_message_t state)
James Ketrenos2c86c272005-03-23 17:32:29 -06006477{
6478 struct ipw2100_priv *priv = pci_get_drvdata(pci_dev);
6479 struct net_device *dev = priv->net_dev;
6480
James Ketrenosee8e3652005-09-14 09:47:29 -05006481 IPW_DEBUG_INFO("%s: Going into suspend...\n", dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06006482
Ingo Molnar752e3772006-02-28 07:20:54 +08006483 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06006484 if (priv->status & STATUS_INITIALIZED) {
6485 /* Take down the device; powers it off, etc. */
6486 ipw2100_down(priv);
6487 }
6488
6489 /* Remove the PRESENT state of the device */
6490 netif_device_detach(dev);
6491
James Ketrenos2c86c272005-03-23 17:32:29 -06006492 pci_save_state(pci_dev);
James Ketrenosee8e3652005-09-14 09:47:29 -05006493 pci_disable_device(pci_dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06006494 pci_set_power_state(pci_dev, PCI_D3hot);
James Ketrenos2c86c272005-03-23 17:32:29 -06006495
Dan Williamsc3d72b92009-02-11 13:26:06 -05006496 priv->suspend_at = get_seconds();
6497
Ingo Molnar752e3772006-02-28 07:20:54 +08006498 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06006499
6500 return 0;
6501}
6502
6503static int ipw2100_resume(struct pci_dev *pci_dev)
6504{
6505 struct ipw2100_priv *priv = pci_get_drvdata(pci_dev);
6506 struct net_device *dev = priv->net_dev;
John W. Linville02e0e5e2006-11-07 20:53:48 -05006507 int err;
James Ketrenos2c86c272005-03-23 17:32:29 -06006508 u32 val;
6509
6510 if (IPW2100_PM_DISABLED)
6511 return 0;
6512
Ingo Molnar752e3772006-02-28 07:20:54 +08006513 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06006514
James Ketrenosee8e3652005-09-14 09:47:29 -05006515 IPW_DEBUG_INFO("%s: Coming out of suspend...\n", dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06006516
James Ketrenos2c86c272005-03-23 17:32:29 -06006517 pci_set_power_state(pci_dev, PCI_D0);
John W. Linville02e0e5e2006-11-07 20:53:48 -05006518 err = pci_enable_device(pci_dev);
6519 if (err) {
6520 printk(KERN_ERR "%s: pci_enable_device failed on resume\n",
6521 dev->name);
Julia Lawall80c42af2008-07-21 09:58:11 +02006522 mutex_unlock(&priv->action_mutex);
John W. Linville02e0e5e2006-11-07 20:53:48 -05006523 return err;
6524 }
James Ketrenos2c86c272005-03-23 17:32:29 -06006525 pci_restore_state(pci_dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06006526
6527 /*
6528 * Suspend/Resume resets the PCI configuration space, so we have to
6529 * re-disable the RETRY_TIMEOUT register (0x41) to keep PCI Tx retries
6530 * from interfering with C3 CPU state. pci_restore_state won't help
6531 * here since it only restores the first 64 bytes pci config header.
6532 */
6533 pci_read_config_dword(pci_dev, 0x40, &val);
6534 if ((val & 0x0000ff00) != 0)
6535 pci_write_config_dword(pci_dev, 0x40, val & 0xffff00ff);
6536
6537 /* Set the device back into the PRESENT state; this will also wake
6538 * the queue of needed */
6539 netif_device_attach(dev);
6540
Dan Williamsc3d72b92009-02-11 13:26:06 -05006541 priv->suspend_time = get_seconds() - priv->suspend_at;
6542
James Ketrenosee8e3652005-09-14 09:47:29 -05006543 /* Bring the device back up */
6544 if (!(priv->status & STATUS_RF_KILL_SW))
6545 ipw2100_up(priv, 0);
James Ketrenos2c86c272005-03-23 17:32:29 -06006546
Ingo Molnar752e3772006-02-28 07:20:54 +08006547 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06006548
6549 return 0;
6550}
6551#endif
6552
Zhu Yi52ce3e9a72009-12-02 14:24:37 +08006553static void ipw2100_shutdown(struct pci_dev *pci_dev)
6554{
6555 struct ipw2100_priv *priv = pci_get_drvdata(pci_dev);
6556
6557 /* Take down the device; powers it off, etc. */
6558 ipw2100_down(priv);
6559
6560 pci_disable_device(pci_dev);
6561}
6562
James Ketrenos2c86c272005-03-23 17:32:29 -06006563#define IPW2100_DEV_ID(x) { PCI_VENDOR_ID_INTEL, 0x1043, 0x8086, x }
6564
Alexey Dobriyana3aa1882010-01-07 11:58:11 +00006565static DEFINE_PCI_DEVICE_TABLE(ipw2100_pci_id_table) = {
James Ketrenosee8e3652005-09-14 09:47:29 -05006566 IPW2100_DEV_ID(0x2520), /* IN 2100A mPCI 3A */
6567 IPW2100_DEV_ID(0x2521), /* IN 2100A mPCI 3B */
6568 IPW2100_DEV_ID(0x2524), /* IN 2100A mPCI 3B */
6569 IPW2100_DEV_ID(0x2525), /* IN 2100A mPCI 3B */
6570 IPW2100_DEV_ID(0x2526), /* IN 2100A mPCI Gen A3 */
6571 IPW2100_DEV_ID(0x2522), /* IN 2100 mPCI 3B */
6572 IPW2100_DEV_ID(0x2523), /* IN 2100 mPCI 3A */
6573 IPW2100_DEV_ID(0x2527), /* IN 2100 mPCI 3B */
6574 IPW2100_DEV_ID(0x2528), /* IN 2100 mPCI 3B */
6575 IPW2100_DEV_ID(0x2529), /* IN 2100 mPCI 3B */
6576 IPW2100_DEV_ID(0x252B), /* IN 2100 mPCI 3A */
6577 IPW2100_DEV_ID(0x252C), /* IN 2100 mPCI 3A */
6578 IPW2100_DEV_ID(0x252D), /* IN 2100 mPCI 3A */
James Ketrenos2c86c272005-03-23 17:32:29 -06006579
James Ketrenosee8e3652005-09-14 09:47:29 -05006580 IPW2100_DEV_ID(0x2550), /* IB 2100A mPCI 3B */
6581 IPW2100_DEV_ID(0x2551), /* IB 2100 mPCI 3B */
6582 IPW2100_DEV_ID(0x2553), /* IB 2100 mPCI 3B */
6583 IPW2100_DEV_ID(0x2554), /* IB 2100 mPCI 3B */
6584 IPW2100_DEV_ID(0x2555), /* IB 2100 mPCI 3B */
James Ketrenos2c86c272005-03-23 17:32:29 -06006585
James Ketrenosee8e3652005-09-14 09:47:29 -05006586 IPW2100_DEV_ID(0x2560), /* DE 2100A mPCI 3A */
6587 IPW2100_DEV_ID(0x2562), /* DE 2100A mPCI 3A */
6588 IPW2100_DEV_ID(0x2563), /* DE 2100A mPCI 3A */
6589 IPW2100_DEV_ID(0x2561), /* DE 2100 mPCI 3A */
6590 IPW2100_DEV_ID(0x2565), /* DE 2100 mPCI 3A */
6591 IPW2100_DEV_ID(0x2566), /* DE 2100 mPCI 3A */
6592 IPW2100_DEV_ID(0x2567), /* DE 2100 mPCI 3A */
James Ketrenos2c86c272005-03-23 17:32:29 -06006593
James Ketrenosee8e3652005-09-14 09:47:29 -05006594 IPW2100_DEV_ID(0x2570), /* GA 2100 mPCI 3B */
James Ketrenos2c86c272005-03-23 17:32:29 -06006595
James Ketrenosee8e3652005-09-14 09:47:29 -05006596 IPW2100_DEV_ID(0x2580), /* TO 2100A mPCI 3B */
6597 IPW2100_DEV_ID(0x2582), /* TO 2100A mPCI 3B */
6598 IPW2100_DEV_ID(0x2583), /* TO 2100A mPCI 3B */
6599 IPW2100_DEV_ID(0x2581), /* TO 2100 mPCI 3B */
6600 IPW2100_DEV_ID(0x2585), /* TO 2100 mPCI 3B */
6601 IPW2100_DEV_ID(0x2586), /* TO 2100 mPCI 3B */
6602 IPW2100_DEV_ID(0x2587), /* TO 2100 mPCI 3B */
James Ketrenos2c86c272005-03-23 17:32:29 -06006603
James Ketrenosee8e3652005-09-14 09:47:29 -05006604 IPW2100_DEV_ID(0x2590), /* SO 2100A mPCI 3B */
6605 IPW2100_DEV_ID(0x2592), /* SO 2100A mPCI 3B */
6606 IPW2100_DEV_ID(0x2591), /* SO 2100 mPCI 3B */
6607 IPW2100_DEV_ID(0x2593), /* SO 2100 mPCI 3B */
6608 IPW2100_DEV_ID(0x2596), /* SO 2100 mPCI 3B */
6609 IPW2100_DEV_ID(0x2598), /* SO 2100 mPCI 3B */
James Ketrenos2c86c272005-03-23 17:32:29 -06006610
James Ketrenosee8e3652005-09-14 09:47:29 -05006611 IPW2100_DEV_ID(0x25A0), /* HP 2100 mPCI 3B */
James Ketrenos2c86c272005-03-23 17:32:29 -06006612 {0,},
6613};
6614
6615MODULE_DEVICE_TABLE(pci, ipw2100_pci_id_table);
6616
6617static struct pci_driver ipw2100_pci_driver = {
6618 .name = DRV_NAME,
6619 .id_table = ipw2100_pci_id_table,
6620 .probe = ipw2100_pci_init_one,
6621 .remove = __devexit_p(ipw2100_pci_remove_one),
6622#ifdef CONFIG_PM
6623 .suspend = ipw2100_suspend,
6624 .resume = ipw2100_resume,
6625#endif
Zhu Yi52ce3e9a72009-12-02 14:24:37 +08006626 .shutdown = ipw2100_shutdown,
James Ketrenos2c86c272005-03-23 17:32:29 -06006627};
6628
James Ketrenos2c86c272005-03-23 17:32:29 -06006629/**
6630 * Initialize the ipw2100 driver/module
6631 *
6632 * @returns 0 if ok, < 0 errno node con error.
6633 *
6634 * Note: we cannot init the /proc stuff until the PCI driver is there,
6635 * or we risk an unlikely race condition on someone accessing
6636 * uninitialized data in the PCI dev struct through /proc.
6637 */
6638static int __init ipw2100_init(void)
6639{
6640 int ret;
6641
6642 printk(KERN_INFO DRV_NAME ": %s, %s\n", DRV_DESCRIPTION, DRV_VERSION);
6643 printk(KERN_INFO DRV_NAME ": %s\n", DRV_COPYRIGHT);
6644
John W. Linville2f81b472010-08-11 16:11:00 -04006645 pm_qos_add_request(&ipw2100_pm_qos_req, PM_QOS_CPU_DMA_LATENCY,
6646 PM_QOS_DEFAULT_VALUE);
6647
Jeff Garzik29917622006-08-19 17:48:59 -04006648 ret = pci_register_driver(&ipw2100_pci_driver);
Jeff Garzikde897882006-10-01 07:31:09 -04006649 if (ret)
6650 goto out;
James Ketrenos2c86c272005-03-23 17:32:29 -06006651
Brice Goglin0f52bf92005-12-01 01:41:46 -08006652#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06006653 ipw2100_debug_level = debug;
Jeff Garzikde897882006-10-01 07:31:09 -04006654 ret = driver_create_file(&ipw2100_pci_driver.driver,
6655 &driver_attr_debug_level);
James Ketrenos2c86c272005-03-23 17:32:29 -06006656#endif
6657
Jeff Garzikde897882006-10-01 07:31:09 -04006658out:
James Ketrenos2c86c272005-03-23 17:32:29 -06006659 return ret;
6660}
6661
James Ketrenos2c86c272005-03-23 17:32:29 -06006662/**
6663 * Cleanup ipw2100 driver registration
6664 */
6665static void __exit ipw2100_exit(void)
6666{
6667 /* FIXME: IPG: check that we have no instances of the devices open */
Brice Goglin0f52bf92005-12-01 01:41:46 -08006668#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06006669 driver_remove_file(&ipw2100_pci_driver.driver,
6670 &driver_attr_debug_level);
6671#endif
6672 pci_unregister_driver(&ipw2100_pci_driver);
James Bottomley82f68252010-07-05 22:53:06 +02006673 pm_qos_remove_request(&ipw2100_pm_qos_req);
James Ketrenos2c86c272005-03-23 17:32:29 -06006674}
6675
6676module_init(ipw2100_init);
6677module_exit(ipw2100_exit);
6678
James Ketrenos2c86c272005-03-23 17:32:29 -06006679static int ipw2100_wx_get_name(struct net_device *dev,
6680 struct iw_request_info *info,
6681 union iwreq_data *wrqu, char *extra)
6682{
6683 /*
6684 * This can be called at any time. No action lock required
6685 */
6686
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006687 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06006688 if (!(priv->status & STATUS_ASSOCIATED))
6689 strcpy(wrqu->name, "unassociated");
6690 else
6691 snprintf(wrqu->name, IFNAMSIZ, "IEEE 802.11b");
6692
6693 IPW_DEBUG_WX("Name: %s\n", wrqu->name);
6694 return 0;
6695}
6696
James Ketrenos2c86c272005-03-23 17:32:29 -06006697static int ipw2100_wx_set_freq(struct net_device *dev,
6698 struct iw_request_info *info,
6699 union iwreq_data *wrqu, char *extra)
6700{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006701 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06006702 struct iw_freq *fwrq = &wrqu->freq;
6703 int err = 0;
6704
6705 if (priv->ieee->iw_mode == IW_MODE_INFRA)
6706 return -EOPNOTSUPP;
6707
Ingo Molnar752e3772006-02-28 07:20:54 +08006708 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06006709 if (!(priv->status & STATUS_INITIALIZED)) {
6710 err = -EIO;
6711 goto done;
6712 }
6713
6714 /* if setting by freq convert to channel */
6715 if (fwrq->e == 1) {
James Ketrenosee8e3652005-09-14 09:47:29 -05006716 if ((fwrq->m >= (int)2.412e8 && fwrq->m <= (int)2.487e8)) {
James Ketrenos2c86c272005-03-23 17:32:29 -06006717 int f = fwrq->m / 100000;
6718 int c = 0;
6719
6720 while ((c < REG_MAX_CHANNEL) &&
6721 (f != ipw2100_frequencies[c]))
6722 c++;
6723
6724 /* hack to fall through */
6725 fwrq->e = 0;
6726 fwrq->m = c + 1;
6727 }
6728 }
6729
James Ketrenos82328352005-08-24 22:33:31 -05006730 if (fwrq->e > 0 || fwrq->m > 1000) {
6731 err = -EOPNOTSUPP;
6732 goto done;
6733 } else { /* Set the channel */
Frans Pop9fd1ea42010-03-24 19:46:31 +01006734 IPW_DEBUG_WX("SET Freq/Channel -> %d\n", fwrq->m);
James Ketrenos2c86c272005-03-23 17:32:29 -06006735 err = ipw2100_set_channel(priv, fwrq->m, 0);
6736 }
6737
James Ketrenosee8e3652005-09-14 09:47:29 -05006738 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08006739 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06006740 return err;
6741}
6742
James Ketrenos2c86c272005-03-23 17:32:29 -06006743static int ipw2100_wx_get_freq(struct net_device *dev,
6744 struct iw_request_info *info,
6745 union iwreq_data *wrqu, char *extra)
6746{
6747 /*
6748 * This can be called at any time. No action lock required
6749 */
6750
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006751 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06006752
6753 wrqu->freq.e = 0;
6754
6755 /* If we are associated, trying to associate, or have a statically
6756 * configured CHANNEL then return that; otherwise return ANY */
6757 if (priv->config & CFG_STATIC_CHANNEL ||
6758 priv->status & STATUS_ASSOCIATED)
6759 wrqu->freq.m = priv->channel;
6760 else
6761 wrqu->freq.m = 0;
6762
Frans Pop9fd1ea42010-03-24 19:46:31 +01006763 IPW_DEBUG_WX("GET Freq/Channel -> %d\n", priv->channel);
James Ketrenos2c86c272005-03-23 17:32:29 -06006764 return 0;
6765
6766}
6767
6768static int ipw2100_wx_set_mode(struct net_device *dev,
6769 struct iw_request_info *info,
6770 union iwreq_data *wrqu, char *extra)
6771{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006772 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06006773 int err = 0;
6774
Frans Pop9fd1ea42010-03-24 19:46:31 +01006775 IPW_DEBUG_WX("SET Mode -> %d\n", wrqu->mode);
James Ketrenos2c86c272005-03-23 17:32:29 -06006776
6777 if (wrqu->mode == priv->ieee->iw_mode)
6778 return 0;
6779
Ingo Molnar752e3772006-02-28 07:20:54 +08006780 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06006781 if (!(priv->status & STATUS_INITIALIZED)) {
6782 err = -EIO;
6783 goto done;
6784 }
6785
6786 switch (wrqu->mode) {
6787#ifdef CONFIG_IPW2100_MONITOR
6788 case IW_MODE_MONITOR:
6789 err = ipw2100_switch_mode(priv, IW_MODE_MONITOR);
6790 break;
James Ketrenosee8e3652005-09-14 09:47:29 -05006791#endif /* CONFIG_IPW2100_MONITOR */
James Ketrenos2c86c272005-03-23 17:32:29 -06006792 case IW_MODE_ADHOC:
6793 err = ipw2100_switch_mode(priv, IW_MODE_ADHOC);
6794 break;
6795 case IW_MODE_INFRA:
6796 case IW_MODE_AUTO:
6797 default:
6798 err = ipw2100_switch_mode(priv, IW_MODE_INFRA);
6799 break;
6800 }
6801
James Ketrenosee8e3652005-09-14 09:47:29 -05006802 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08006803 mutex_unlock(&priv->action_mutex);
James Ketrenosee8e3652005-09-14 09:47:29 -05006804 return err;
James Ketrenos2c86c272005-03-23 17:32:29 -06006805}
6806
6807static int ipw2100_wx_get_mode(struct net_device *dev,
6808 struct iw_request_info *info,
6809 union iwreq_data *wrqu, char *extra)
6810{
6811 /*
6812 * This can be called at any time. No action lock required
6813 */
6814
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006815 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06006816
6817 wrqu->mode = priv->ieee->iw_mode;
6818 IPW_DEBUG_WX("GET Mode -> %d\n", wrqu->mode);
6819
6820 return 0;
6821}
6822
James Ketrenos2c86c272005-03-23 17:32:29 -06006823#define POWER_MODES 5
6824
6825/* Values are in microsecond */
Jiri Bencc4aee8c2005-08-25 20:04:43 -04006826static const s32 timeout_duration[POWER_MODES] = {
James Ketrenos2c86c272005-03-23 17:32:29 -06006827 350000,
6828 250000,
6829 75000,
6830 37000,
6831 25000,
6832};
6833
Jiri Bencc4aee8c2005-08-25 20:04:43 -04006834static const s32 period_duration[POWER_MODES] = {
James Ketrenos2c86c272005-03-23 17:32:29 -06006835 400000,
6836 700000,
6837 1000000,
6838 1000000,
6839 1000000
6840};
6841
6842static int ipw2100_wx_get_range(struct net_device *dev,
6843 struct iw_request_info *info,
6844 union iwreq_data *wrqu, char *extra)
6845{
6846 /*
6847 * This can be called at any time. No action lock required
6848 */
6849
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006850 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06006851 struct iw_range *range = (struct iw_range *)extra;
6852 u16 val;
6853 int i, level;
6854
6855 wrqu->data.length = sizeof(*range);
6856 memset(range, 0, sizeof(*range));
6857
6858 /* Let's try to keep this struct in the same order as in
6859 * linux/include/wireless.h
6860 */
6861
6862 /* TODO: See what values we can set, and remove the ones we can't
6863 * set, or fill them with some default data.
6864 */
6865
6866 /* ~5 Mb/s real (802.11b) */
6867 range->throughput = 5 * 1000 * 1000;
6868
James Ketrenosee8e3652005-09-14 09:47:29 -05006869// range->sensitivity; /* signal level threshold range */
James Ketrenos2c86c272005-03-23 17:32:29 -06006870
6871 range->max_qual.qual = 100;
6872 /* TODO: Find real max RSSI and stick here */
6873 range->max_qual.level = 0;
6874 range->max_qual.noise = 0;
James Ketrenosee8e3652005-09-14 09:47:29 -05006875 range->max_qual.updated = 7; /* Updated all three */
James Ketrenos2c86c272005-03-23 17:32:29 -06006876
James Ketrenosee8e3652005-09-14 09:47:29 -05006877 range->avg_qual.qual = 70; /* > 8% missed beacons is 'bad' */
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02006878 /* TODO: Find real 'good' to 'bad' threshold value for RSSI */
James Ketrenos2c86c272005-03-23 17:32:29 -06006879 range->avg_qual.level = 20 + IPW2100_RSSI_TO_DBM;
6880 range->avg_qual.noise = 0;
James Ketrenosee8e3652005-09-14 09:47:29 -05006881 range->avg_qual.updated = 7; /* Updated all three */
James Ketrenos2c86c272005-03-23 17:32:29 -06006882
6883 range->num_bitrates = RATE_COUNT;
6884
6885 for (i = 0; i < RATE_COUNT && i < IW_MAX_BITRATES; i++) {
Stanislav Yakovlev4d94c152012-02-09 20:23:52 -05006886 range->bitrate[i] = ipw2100_bg_rates[i].bitrate * 100 * 1000;
James Ketrenos2c86c272005-03-23 17:32:29 -06006887 }
6888
6889 range->min_rts = MIN_RTS_THRESHOLD;
6890 range->max_rts = MAX_RTS_THRESHOLD;
6891 range->min_frag = MIN_FRAG_THRESHOLD;
6892 range->max_frag = MAX_FRAG_THRESHOLD;
6893
6894 range->min_pmp = period_duration[0]; /* Minimal PM period */
James Ketrenosee8e3652005-09-14 09:47:29 -05006895 range->max_pmp = period_duration[POWER_MODES - 1]; /* Maximal PM period */
6896 range->min_pmt = timeout_duration[POWER_MODES - 1]; /* Minimal PM timeout */
6897 range->max_pmt = timeout_duration[0]; /* Maximal PM timeout */
James Ketrenos2c86c272005-03-23 17:32:29 -06006898
James Ketrenosee8e3652005-09-14 09:47:29 -05006899 /* How to decode max/min PM period */
James Ketrenos2c86c272005-03-23 17:32:29 -06006900 range->pmp_flags = IW_POWER_PERIOD;
James Ketrenosee8e3652005-09-14 09:47:29 -05006901 /* How to decode max/min PM period */
James Ketrenos2c86c272005-03-23 17:32:29 -06006902 range->pmt_flags = IW_POWER_TIMEOUT;
6903 /* What PM options are supported */
6904 range->pm_capa = IW_POWER_TIMEOUT | IW_POWER_PERIOD;
6905
6906 range->encoding_size[0] = 5;
James Ketrenosee8e3652005-09-14 09:47:29 -05006907 range->encoding_size[1] = 13; /* Different token sizes */
6908 range->num_encoding_sizes = 2; /* Number of entry in the list */
6909 range->max_encoding_tokens = WEP_KEYS; /* Max number of tokens */
6910// range->encoding_login_index; /* token index for login token */
James Ketrenos2c86c272005-03-23 17:32:29 -06006911
6912 if (priv->ieee->iw_mode == IW_MODE_ADHOC) {
6913 range->txpower_capa = IW_TXPOW_DBM;
6914 range->num_txpower = IW_MAX_TXPOWER;
James Ketrenosee8e3652005-09-14 09:47:29 -05006915 for (i = 0, level = (IPW_TX_POWER_MAX_DBM * 16);
6916 i < IW_MAX_TXPOWER;
6917 i++, level -=
6918 ((IPW_TX_POWER_MAX_DBM -
6919 IPW_TX_POWER_MIN_DBM) * 16) / (IW_MAX_TXPOWER - 1))
James Ketrenos2c86c272005-03-23 17:32:29 -06006920 range->txpower[i] = level / 16;
6921 } else {
6922 range->txpower_capa = 0;
6923 range->num_txpower = 0;
6924 }
6925
James Ketrenos2c86c272005-03-23 17:32:29 -06006926 /* Set the Wireless Extension versions */
6927 range->we_version_compiled = WIRELESS_EXT;
Dan Williams166c3432006-01-09 11:04:31 -05006928 range->we_version_source = 18;
James Ketrenos2c86c272005-03-23 17:32:29 -06006929
James Ketrenosee8e3652005-09-14 09:47:29 -05006930// range->retry_capa; /* What retry options are supported */
6931// range->retry_flags; /* How to decode max/min retry limit */
6932// range->r_time_flags; /* How to decode max/min retry life */
6933// range->min_retry; /* Minimal number of retries */
6934// range->max_retry; /* Maximal number of retries */
6935// range->min_r_time; /* Minimal retry lifetime */
6936// range->max_r_time; /* Maximal retry lifetime */
James Ketrenos2c86c272005-03-23 17:32:29 -06006937
James Ketrenosee8e3652005-09-14 09:47:29 -05006938 range->num_channels = FREQ_COUNT;
James Ketrenos2c86c272005-03-23 17:32:29 -06006939
6940 val = 0;
6941 for (i = 0; i < FREQ_COUNT; i++) {
6942 // TODO: Include only legal frequencies for some countries
James Ketrenosee8e3652005-09-14 09:47:29 -05006943// if (local->channel_mask & (1 << i)) {
6944 range->freq[val].i = i + 1;
6945 range->freq[val].m = ipw2100_frequencies[i] * 100000;
6946 range->freq[val].e = 1;
6947 val++;
6948// }
James Ketrenos2c86c272005-03-23 17:32:29 -06006949 if (val == IW_MAX_FREQUENCIES)
James Ketrenosee8e3652005-09-14 09:47:29 -05006950 break;
James Ketrenos2c86c272005-03-23 17:32:29 -06006951 }
6952 range->num_frequency = val;
6953
James Ketrenoseaf8f53b2005-11-12 12:50:12 -06006954 /* Event capability (kernel + driver) */
6955 range->event_capa[0] = (IW_EVENT_CAPA_K_0 |
6956 IW_EVENT_CAPA_MASK(SIOCGIWAP));
6957 range->event_capa[1] = IW_EVENT_CAPA_K_1;
6958
Dan Williams166c3432006-01-09 11:04:31 -05006959 range->enc_capa = IW_ENC_CAPA_WPA | IW_ENC_CAPA_WPA2 |
6960 IW_ENC_CAPA_CIPHER_TKIP | IW_ENC_CAPA_CIPHER_CCMP;
6961
James Ketrenos2c86c272005-03-23 17:32:29 -06006962 IPW_DEBUG_WX("GET Range\n");
6963
6964 return 0;
6965}
6966
6967static int ipw2100_wx_set_wap(struct net_device *dev,
6968 struct iw_request_info *info,
6969 union iwreq_data *wrqu, char *extra)
6970{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04006971 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06006972 int err = 0;
6973
6974 static const unsigned char any[] = {
6975 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
6976 };
6977 static const unsigned char off[] = {
6978 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
6979 };
6980
6981 // sanity checks
6982 if (wrqu->ap_addr.sa_family != ARPHRD_ETHER)
6983 return -EINVAL;
6984
Ingo Molnar752e3772006-02-28 07:20:54 +08006985 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06006986 if (!(priv->status & STATUS_INITIALIZED)) {
6987 err = -EIO;
6988 goto done;
6989 }
6990
6991 if (!memcmp(any, wrqu->ap_addr.sa_data, ETH_ALEN) ||
6992 !memcmp(off, wrqu->ap_addr.sa_data, ETH_ALEN)) {
6993 /* we disable mandatory BSSID association */
6994 IPW_DEBUG_WX("exit - disable mandatory BSSID\n");
6995 priv->config &= ~CFG_STATIC_BSSID;
6996 err = ipw2100_set_mandatory_bssid(priv, NULL, 0);
6997 goto done;
6998 }
6999
7000 priv->config |= CFG_STATIC_BSSID;
7001 memcpy(priv->mandatory_bssid_mac, wrqu->ap_addr.sa_data, ETH_ALEN);
7002
7003 err = ipw2100_set_mandatory_bssid(priv, wrqu->ap_addr.sa_data, 0);
7004
Johannes Berge1749612008-10-27 15:59:26 -07007005 IPW_DEBUG_WX("SET BSSID -> %pM\n", wrqu->ap_addr.sa_data);
James Ketrenos2c86c272005-03-23 17:32:29 -06007006
James Ketrenosee8e3652005-09-14 09:47:29 -05007007 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08007008 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007009 return err;
7010}
7011
7012static int ipw2100_wx_get_wap(struct net_device *dev,
7013 struct iw_request_info *info,
7014 union iwreq_data *wrqu, char *extra)
7015{
7016 /*
7017 * This can be called at any time. No action lock required
7018 */
7019
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007020 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06007021
7022 /* If we are associated, trying to associate, or have a statically
7023 * configured BSSID then return that; otherwise return ANY */
James Ketrenosee8e3652005-09-14 09:47:29 -05007024 if (priv->config & CFG_STATIC_BSSID || priv->status & STATUS_ASSOCIATED) {
James Ketrenos2c86c272005-03-23 17:32:29 -06007025 wrqu->ap_addr.sa_family = ARPHRD_ETHER;
James Ketrenos82328352005-08-24 22:33:31 -05007026 memcpy(wrqu->ap_addr.sa_data, priv->bssid, ETH_ALEN);
James Ketrenos2c86c272005-03-23 17:32:29 -06007027 } else
7028 memset(wrqu->ap_addr.sa_data, 0, ETH_ALEN);
7029
Johannes Berge1749612008-10-27 15:59:26 -07007030 IPW_DEBUG_WX("Getting WAP BSSID: %pM\n", wrqu->ap_addr.sa_data);
James Ketrenos2c86c272005-03-23 17:32:29 -06007031 return 0;
7032}
7033
7034static int ipw2100_wx_set_essid(struct net_device *dev,
7035 struct iw_request_info *info,
7036 union iwreq_data *wrqu, char *extra)
7037{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007038 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenosee8e3652005-09-14 09:47:29 -05007039 char *essid = ""; /* ANY */
James Ketrenos2c86c272005-03-23 17:32:29 -06007040 int length = 0;
7041 int err = 0;
John W. Linville9387b7c2008-09-30 20:59:05 -04007042 DECLARE_SSID_BUF(ssid);
James Ketrenos2c86c272005-03-23 17:32:29 -06007043
Ingo Molnar752e3772006-02-28 07:20:54 +08007044 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007045 if (!(priv->status & STATUS_INITIALIZED)) {
7046 err = -EIO;
7047 goto done;
7048 }
7049
7050 if (wrqu->essid.flags && wrqu->essid.length) {
Jean Tourrilhes5b63bae2006-08-29 18:00:48 -07007051 length = wrqu->essid.length;
James Ketrenos2c86c272005-03-23 17:32:29 -06007052 essid = extra;
7053 }
7054
7055 if (length == 0) {
7056 IPW_DEBUG_WX("Setting ESSID to ANY\n");
7057 priv->config &= ~CFG_STATIC_ESSID;
7058 err = ipw2100_set_essid(priv, NULL, 0, 0);
7059 goto done;
7060 }
7061
7062 length = min(length, IW_ESSID_MAX_SIZE);
7063
7064 priv->config |= CFG_STATIC_ESSID;
7065
7066 if (priv->essid_len == length && !memcmp(priv->essid, extra, length)) {
7067 IPW_DEBUG_WX("ESSID set to current ESSID.\n");
7068 err = 0;
7069 goto done;
7070 }
7071
John W. Linville9387b7c2008-09-30 20:59:05 -04007072 IPW_DEBUG_WX("Setting ESSID: '%s' (%d)\n",
7073 print_ssid(ssid, essid, length), length);
James Ketrenos2c86c272005-03-23 17:32:29 -06007074
7075 priv->essid_len = length;
7076 memcpy(priv->essid, essid, priv->essid_len);
7077
7078 err = ipw2100_set_essid(priv, essid, length, 0);
7079
James Ketrenosee8e3652005-09-14 09:47:29 -05007080 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08007081 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007082 return err;
7083}
7084
7085static int ipw2100_wx_get_essid(struct net_device *dev,
7086 struct iw_request_info *info,
7087 union iwreq_data *wrqu, char *extra)
7088{
7089 /*
7090 * This can be called at any time. No action lock required
7091 */
7092
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007093 struct ipw2100_priv *priv = libipw_priv(dev);
John W. Linville9387b7c2008-09-30 20:59:05 -04007094 DECLARE_SSID_BUF(ssid);
James Ketrenos2c86c272005-03-23 17:32:29 -06007095
7096 /* If we are associated, trying to associate, or have a statically
7097 * configured ESSID then return that; otherwise return ANY */
James Ketrenosee8e3652005-09-14 09:47:29 -05007098 if (priv->config & CFG_STATIC_ESSID || priv->status & STATUS_ASSOCIATED) {
James Ketrenos2c86c272005-03-23 17:32:29 -06007099 IPW_DEBUG_WX("Getting essid: '%s'\n",
John W. Linville9387b7c2008-09-30 20:59:05 -04007100 print_ssid(ssid, priv->essid, priv->essid_len));
James Ketrenos2c86c272005-03-23 17:32:29 -06007101 memcpy(extra, priv->essid, priv->essid_len);
7102 wrqu->essid.length = priv->essid_len;
James Ketrenosee8e3652005-09-14 09:47:29 -05007103 wrqu->essid.flags = 1; /* active */
James Ketrenos2c86c272005-03-23 17:32:29 -06007104 } else {
7105 IPW_DEBUG_WX("Getting essid: ANY\n");
7106 wrqu->essid.length = 0;
James Ketrenosee8e3652005-09-14 09:47:29 -05007107 wrqu->essid.flags = 0; /* active */
James Ketrenos2c86c272005-03-23 17:32:29 -06007108 }
7109
7110 return 0;
7111}
7112
7113static int ipw2100_wx_set_nick(struct net_device *dev,
7114 struct iw_request_info *info,
7115 union iwreq_data *wrqu, char *extra)
7116{
7117 /*
7118 * This can be called at any time. No action lock required
7119 */
7120
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007121 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06007122
7123 if (wrqu->data.length > IW_ESSID_MAX_SIZE)
7124 return -E2BIG;
7125
James Ketrenosee8e3652005-09-14 09:47:29 -05007126 wrqu->data.length = min((size_t) wrqu->data.length, sizeof(priv->nick));
James Ketrenos2c86c272005-03-23 17:32:29 -06007127 memset(priv->nick, 0, sizeof(priv->nick));
James Ketrenosee8e3652005-09-14 09:47:29 -05007128 memcpy(priv->nick, extra, wrqu->data.length);
James Ketrenos2c86c272005-03-23 17:32:29 -06007129
Frans Pop9fd1ea42010-03-24 19:46:31 +01007130 IPW_DEBUG_WX("SET Nickname -> %s\n", priv->nick);
James Ketrenos2c86c272005-03-23 17:32:29 -06007131
7132 return 0;
7133}
7134
7135static int ipw2100_wx_get_nick(struct net_device *dev,
7136 struct iw_request_info *info,
7137 union iwreq_data *wrqu, char *extra)
7138{
7139 /*
7140 * This can be called at any time. No action lock required
7141 */
7142
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007143 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06007144
Jean Tourrilhes5b63bae2006-08-29 18:00:48 -07007145 wrqu->data.length = strlen(priv->nick);
James Ketrenos2c86c272005-03-23 17:32:29 -06007146 memcpy(extra, priv->nick, wrqu->data.length);
James Ketrenosee8e3652005-09-14 09:47:29 -05007147 wrqu->data.flags = 1; /* active */
James Ketrenos2c86c272005-03-23 17:32:29 -06007148
Frans Pop9fd1ea42010-03-24 19:46:31 +01007149 IPW_DEBUG_WX("GET Nickname -> %s\n", extra);
James Ketrenos2c86c272005-03-23 17:32:29 -06007150
7151 return 0;
7152}
7153
7154static int ipw2100_wx_set_rate(struct net_device *dev,
7155 struct iw_request_info *info,
7156 union iwreq_data *wrqu, char *extra)
7157{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007158 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06007159 u32 target_rate = wrqu->bitrate.value;
7160 u32 rate;
7161 int err = 0;
7162
Ingo Molnar752e3772006-02-28 07:20:54 +08007163 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007164 if (!(priv->status & STATUS_INITIALIZED)) {
7165 err = -EIO;
7166 goto done;
7167 }
7168
7169 rate = 0;
7170
7171 if (target_rate == 1000000 ||
7172 (!wrqu->bitrate.fixed && target_rate > 1000000))
7173 rate |= TX_RATE_1_MBIT;
7174 if (target_rate == 2000000 ||
7175 (!wrqu->bitrate.fixed && target_rate > 2000000))
7176 rate |= TX_RATE_2_MBIT;
7177 if (target_rate == 5500000 ||
7178 (!wrqu->bitrate.fixed && target_rate > 5500000))
7179 rate |= TX_RATE_5_5_MBIT;
7180 if (target_rate == 11000000 ||
7181 (!wrqu->bitrate.fixed && target_rate > 11000000))
7182 rate |= TX_RATE_11_MBIT;
7183 if (rate == 0)
7184 rate = DEFAULT_TX_RATES;
7185
7186 err = ipw2100_set_tx_rates(priv, rate, 0);
7187
Frans Pop9fd1ea42010-03-24 19:46:31 +01007188 IPW_DEBUG_WX("SET Rate -> %04X\n", rate);
James Ketrenosee8e3652005-09-14 09:47:29 -05007189 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08007190 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007191 return err;
7192}
7193
James Ketrenos2c86c272005-03-23 17:32:29 -06007194static int ipw2100_wx_get_rate(struct net_device *dev,
7195 struct iw_request_info *info,
7196 union iwreq_data *wrqu, char *extra)
7197{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007198 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06007199 int val;
Hannes Ederb9da9e92009-02-14 11:50:26 +00007200 unsigned int len = sizeof(val);
James Ketrenos2c86c272005-03-23 17:32:29 -06007201 int err = 0;
7202
7203 if (!(priv->status & STATUS_ENABLED) ||
7204 priv->status & STATUS_RF_KILL_MASK ||
7205 !(priv->status & STATUS_ASSOCIATED)) {
7206 wrqu->bitrate.value = 0;
7207 return 0;
7208 }
7209
Ingo Molnar752e3772006-02-28 07:20:54 +08007210 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007211 if (!(priv->status & STATUS_INITIALIZED)) {
7212 err = -EIO;
7213 goto done;
7214 }
7215
7216 err = ipw2100_get_ordinal(priv, IPW_ORD_CURRENT_TX_RATE, &val, &len);
7217 if (err) {
7218 IPW_DEBUG_WX("failed querying ordinals.\n");
Julia Lawall80c42af2008-07-21 09:58:11 +02007219 goto done;
James Ketrenos2c86c272005-03-23 17:32:29 -06007220 }
7221
7222 switch (val & TX_RATE_MASK) {
7223 case TX_RATE_1_MBIT:
7224 wrqu->bitrate.value = 1000000;
7225 break;
7226 case TX_RATE_2_MBIT:
7227 wrqu->bitrate.value = 2000000;
7228 break;
7229 case TX_RATE_5_5_MBIT:
7230 wrqu->bitrate.value = 5500000;
7231 break;
7232 case TX_RATE_11_MBIT:
7233 wrqu->bitrate.value = 11000000;
7234 break;
7235 default:
7236 wrqu->bitrate.value = 0;
7237 }
7238
Frans Pop9fd1ea42010-03-24 19:46:31 +01007239 IPW_DEBUG_WX("GET Rate -> %d\n", wrqu->bitrate.value);
James Ketrenos2c86c272005-03-23 17:32:29 -06007240
James Ketrenosee8e3652005-09-14 09:47:29 -05007241 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08007242 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007243 return err;
7244}
7245
7246static int ipw2100_wx_set_rts(struct net_device *dev,
7247 struct iw_request_info *info,
7248 union iwreq_data *wrqu, char *extra)
7249{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007250 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06007251 int value, err;
7252
7253 /* Auto RTS not yet supported */
7254 if (wrqu->rts.fixed == 0)
7255 return -EINVAL;
7256
Ingo Molnar752e3772006-02-28 07:20:54 +08007257 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007258 if (!(priv->status & STATUS_INITIALIZED)) {
7259 err = -EIO;
7260 goto done;
7261 }
7262
7263 if (wrqu->rts.disabled)
7264 value = priv->rts_threshold | RTS_DISABLED;
7265 else {
James Ketrenosee8e3652005-09-14 09:47:29 -05007266 if (wrqu->rts.value < 1 || wrqu->rts.value > 2304) {
James Ketrenos2c86c272005-03-23 17:32:29 -06007267 err = -EINVAL;
7268 goto done;
7269 }
7270 value = wrqu->rts.value;
7271 }
7272
7273 err = ipw2100_set_rts_threshold(priv, value);
7274
Frans Pop9fd1ea42010-03-24 19:46:31 +01007275 IPW_DEBUG_WX("SET RTS Threshold -> 0x%08X\n", value);
James Ketrenosee8e3652005-09-14 09:47:29 -05007276 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08007277 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007278 return err;
7279}
7280
7281static int ipw2100_wx_get_rts(struct net_device *dev,
7282 struct iw_request_info *info,
7283 union iwreq_data *wrqu, char *extra)
7284{
7285 /*
7286 * This can be called at any time. No action lock required
7287 */
7288
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007289 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06007290
7291 wrqu->rts.value = priv->rts_threshold & ~RTS_DISABLED;
James Ketrenosee8e3652005-09-14 09:47:29 -05007292 wrqu->rts.fixed = 1; /* no auto select */
James Ketrenos2c86c272005-03-23 17:32:29 -06007293
7294 /* If RTS is set to the default value, then it is disabled */
7295 wrqu->rts.disabled = (priv->rts_threshold & RTS_DISABLED) ? 1 : 0;
7296
Frans Pop9fd1ea42010-03-24 19:46:31 +01007297 IPW_DEBUG_WX("GET RTS Threshold -> 0x%08X\n", wrqu->rts.value);
James Ketrenos2c86c272005-03-23 17:32:29 -06007298
7299 return 0;
7300}
7301
7302static int ipw2100_wx_set_txpow(struct net_device *dev,
7303 struct iw_request_info *info,
7304 union iwreq_data *wrqu, char *extra)
7305{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007306 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06007307 int err = 0, value;
Zhu Yib6e4da72006-01-24 13:49:32 +08007308
7309 if (ipw_radio_kill_sw(priv, wrqu->txpower.disabled))
7310 return -EINPROGRESS;
James Ketrenos2c86c272005-03-23 17:32:29 -06007311
7312 if (priv->ieee->iw_mode != IW_MODE_ADHOC)
Zhu Yib6e4da72006-01-24 13:49:32 +08007313 return 0;
7314
7315 if ((wrqu->txpower.flags & IW_TXPOW_TYPE) != IW_TXPOW_DBM)
James Ketrenos2c86c272005-03-23 17:32:29 -06007316 return -EINVAL;
7317
Zhu Yib6e4da72006-01-24 13:49:32 +08007318 if (wrqu->txpower.fixed == 0)
James Ketrenos2c86c272005-03-23 17:32:29 -06007319 value = IPW_TX_POWER_DEFAULT;
7320 else {
7321 if (wrqu->txpower.value < IPW_TX_POWER_MIN_DBM ||
7322 wrqu->txpower.value > IPW_TX_POWER_MAX_DBM)
7323 return -EINVAL;
7324
Liu Hongf75459e2005-07-13 12:29:21 -05007325 value = wrqu->txpower.value;
James Ketrenos2c86c272005-03-23 17:32:29 -06007326 }
7327
Ingo Molnar752e3772006-02-28 07:20:54 +08007328 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007329 if (!(priv->status & STATUS_INITIALIZED)) {
7330 err = -EIO;
7331 goto done;
7332 }
7333
7334 err = ipw2100_set_tx_power(priv, value);
7335
Frans Pop9fd1ea42010-03-24 19:46:31 +01007336 IPW_DEBUG_WX("SET TX Power -> %d\n", value);
James Ketrenos2c86c272005-03-23 17:32:29 -06007337
James Ketrenosee8e3652005-09-14 09:47:29 -05007338 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08007339 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007340 return err;
7341}
7342
7343static int ipw2100_wx_get_txpow(struct net_device *dev,
7344 struct iw_request_info *info,
7345 union iwreq_data *wrqu, char *extra)
7346{
7347 /*
7348 * This can be called at any time. No action lock required
7349 */
7350
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007351 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06007352
Zhu Yib6e4da72006-01-24 13:49:32 +08007353 wrqu->txpower.disabled = (priv->status & STATUS_RF_KILL_MASK) ? 1 : 0;
James Ketrenos2c86c272005-03-23 17:32:29 -06007354
7355 if (priv->tx_power == IPW_TX_POWER_DEFAULT) {
Zhu Yib6e4da72006-01-24 13:49:32 +08007356 wrqu->txpower.fixed = 0;
7357 wrqu->txpower.value = IPW_TX_POWER_MAX_DBM;
James Ketrenos2c86c272005-03-23 17:32:29 -06007358 } else {
Zhu Yib6e4da72006-01-24 13:49:32 +08007359 wrqu->txpower.fixed = 1;
7360 wrqu->txpower.value = priv->tx_power;
James Ketrenos2c86c272005-03-23 17:32:29 -06007361 }
7362
Zhu Yib6e4da72006-01-24 13:49:32 +08007363 wrqu->txpower.flags = IW_TXPOW_DBM;
James Ketrenos2c86c272005-03-23 17:32:29 -06007364
Frans Pop9fd1ea42010-03-24 19:46:31 +01007365 IPW_DEBUG_WX("GET TX Power -> %d\n", wrqu->txpower.value);
James Ketrenos2c86c272005-03-23 17:32:29 -06007366
7367 return 0;
7368}
7369
7370static int ipw2100_wx_set_frag(struct net_device *dev,
7371 struct iw_request_info *info,
7372 union iwreq_data *wrqu, char *extra)
7373{
7374 /*
7375 * This can be called at any time. No action lock required
7376 */
7377
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007378 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06007379
7380 if (!wrqu->frag.fixed)
7381 return -EINVAL;
7382
7383 if (wrqu->frag.disabled) {
7384 priv->frag_threshold |= FRAG_DISABLED;
7385 priv->ieee->fts = DEFAULT_FTS;
7386 } else {
7387 if (wrqu->frag.value < MIN_FRAG_THRESHOLD ||
7388 wrqu->frag.value > MAX_FRAG_THRESHOLD)
7389 return -EINVAL;
7390
7391 priv->ieee->fts = wrqu->frag.value & ~0x1;
7392 priv->frag_threshold = priv->ieee->fts;
7393 }
7394
Frans Pop9fd1ea42010-03-24 19:46:31 +01007395 IPW_DEBUG_WX("SET Frag Threshold -> %d\n", priv->ieee->fts);
James Ketrenos2c86c272005-03-23 17:32:29 -06007396
7397 return 0;
7398}
7399
7400static int ipw2100_wx_get_frag(struct net_device *dev,
7401 struct iw_request_info *info,
7402 union iwreq_data *wrqu, char *extra)
7403{
7404 /*
7405 * This can be called at any time. No action lock required
7406 */
7407
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007408 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06007409 wrqu->frag.value = priv->frag_threshold & ~FRAG_DISABLED;
7410 wrqu->frag.fixed = 0; /* no auto select */
7411 wrqu->frag.disabled = (priv->frag_threshold & FRAG_DISABLED) ? 1 : 0;
7412
Frans Pop9fd1ea42010-03-24 19:46:31 +01007413 IPW_DEBUG_WX("GET Frag Threshold -> %d\n", wrqu->frag.value);
James Ketrenos2c86c272005-03-23 17:32:29 -06007414
7415 return 0;
7416}
7417
7418static int ipw2100_wx_set_retry(struct net_device *dev,
7419 struct iw_request_info *info,
7420 union iwreq_data *wrqu, char *extra)
7421{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007422 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06007423 int err = 0;
7424
James Ketrenosee8e3652005-09-14 09:47:29 -05007425 if (wrqu->retry.flags & IW_RETRY_LIFETIME || wrqu->retry.disabled)
James Ketrenos2c86c272005-03-23 17:32:29 -06007426 return -EINVAL;
7427
7428 if (!(wrqu->retry.flags & IW_RETRY_LIMIT))
7429 return 0;
7430
Ingo Molnar752e3772006-02-28 07:20:54 +08007431 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007432 if (!(priv->status & STATUS_INITIALIZED)) {
7433 err = -EIO;
7434 goto done;
7435 }
7436
Jean Tourrilhes5b63bae2006-08-29 18:00:48 -07007437 if (wrqu->retry.flags & IW_RETRY_SHORT) {
James Ketrenos2c86c272005-03-23 17:32:29 -06007438 err = ipw2100_set_short_retry(priv, wrqu->retry.value);
Frans Pop9fd1ea42010-03-24 19:46:31 +01007439 IPW_DEBUG_WX("SET Short Retry Limit -> %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05007440 wrqu->retry.value);
James Ketrenos2c86c272005-03-23 17:32:29 -06007441 goto done;
7442 }
7443
Jean Tourrilhes5b63bae2006-08-29 18:00:48 -07007444 if (wrqu->retry.flags & IW_RETRY_LONG) {
James Ketrenos2c86c272005-03-23 17:32:29 -06007445 err = ipw2100_set_long_retry(priv, wrqu->retry.value);
Frans Pop9fd1ea42010-03-24 19:46:31 +01007446 IPW_DEBUG_WX("SET Long Retry Limit -> %d\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05007447 wrqu->retry.value);
James Ketrenos2c86c272005-03-23 17:32:29 -06007448 goto done;
7449 }
7450
7451 err = ipw2100_set_short_retry(priv, wrqu->retry.value);
7452 if (!err)
7453 err = ipw2100_set_long_retry(priv, wrqu->retry.value);
7454
Frans Pop9fd1ea42010-03-24 19:46:31 +01007455 IPW_DEBUG_WX("SET Both Retry Limits -> %d\n", wrqu->retry.value);
James Ketrenos2c86c272005-03-23 17:32:29 -06007456
James Ketrenosee8e3652005-09-14 09:47:29 -05007457 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08007458 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007459 return err;
7460}
7461
7462static int ipw2100_wx_get_retry(struct net_device *dev,
7463 struct iw_request_info *info,
7464 union iwreq_data *wrqu, char *extra)
7465{
7466 /*
7467 * This can be called at any time. No action lock required
7468 */
7469
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007470 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06007471
James Ketrenosee8e3652005-09-14 09:47:29 -05007472 wrqu->retry.disabled = 0; /* can't be disabled */
James Ketrenos2c86c272005-03-23 17:32:29 -06007473
James Ketrenosee8e3652005-09-14 09:47:29 -05007474 if ((wrqu->retry.flags & IW_RETRY_TYPE) == IW_RETRY_LIFETIME)
James Ketrenos2c86c272005-03-23 17:32:29 -06007475 return -EINVAL;
7476
Jean Tourrilhes5b63bae2006-08-29 18:00:48 -07007477 if (wrqu->retry.flags & IW_RETRY_LONG) {
7478 wrqu->retry.flags = IW_RETRY_LIMIT | IW_RETRY_LONG;
James Ketrenos2c86c272005-03-23 17:32:29 -06007479 wrqu->retry.value = priv->long_retry_limit;
7480 } else {
7481 wrqu->retry.flags =
7482 (priv->short_retry_limit !=
7483 priv->long_retry_limit) ?
Jean Tourrilhes5b63bae2006-08-29 18:00:48 -07007484 IW_RETRY_LIMIT | IW_RETRY_SHORT : IW_RETRY_LIMIT;
James Ketrenos2c86c272005-03-23 17:32:29 -06007485
7486 wrqu->retry.value = priv->short_retry_limit;
7487 }
7488
Frans Pop9fd1ea42010-03-24 19:46:31 +01007489 IPW_DEBUG_WX("GET Retry -> %d\n", wrqu->retry.value);
James Ketrenos2c86c272005-03-23 17:32:29 -06007490
7491 return 0;
7492}
7493
7494static int ipw2100_wx_set_scan(struct net_device *dev,
7495 struct iw_request_info *info,
7496 union iwreq_data *wrqu, char *extra)
7497{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007498 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06007499 int err = 0;
7500
Ingo Molnar752e3772006-02-28 07:20:54 +08007501 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007502 if (!(priv->status & STATUS_INITIALIZED)) {
7503 err = -EIO;
7504 goto done;
7505 }
7506
7507 IPW_DEBUG_WX("Initiating scan...\n");
Dan Williamsd20c6782007-10-10 12:28:07 -04007508
7509 priv->user_requested_scan = 1;
James Ketrenosee8e3652005-09-14 09:47:29 -05007510 if (ipw2100_set_scan_options(priv) || ipw2100_start_scan(priv)) {
James Ketrenos2c86c272005-03-23 17:32:29 -06007511 IPW_DEBUG_WX("Start scan failed.\n");
7512
7513 /* TODO: Mark a scan as pending so when hardware initialized
7514 * a scan starts */
7515 }
7516
James Ketrenosee8e3652005-09-14 09:47:29 -05007517 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08007518 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007519 return err;
7520}
7521
7522static int ipw2100_wx_get_scan(struct net_device *dev,
7523 struct iw_request_info *info,
7524 union iwreq_data *wrqu, char *extra)
7525{
7526 /*
7527 * This can be called at any time. No action lock required
7528 */
7529
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007530 struct ipw2100_priv *priv = libipw_priv(dev);
7531 return libipw_wx_get_scan(priv->ieee, info, wrqu, extra);
James Ketrenos2c86c272005-03-23 17:32:29 -06007532}
7533
James Ketrenos2c86c272005-03-23 17:32:29 -06007534/*
7535 * Implementation based on code in hostap-driver v0.1.3 hostap_ioctl.c
7536 */
7537static int ipw2100_wx_set_encode(struct net_device *dev,
7538 struct iw_request_info *info,
7539 union iwreq_data *wrqu, char *key)
7540{
7541 /*
7542 * No check of STATUS_INITIALIZED required
7543 */
7544
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007545 struct ipw2100_priv *priv = libipw_priv(dev);
7546 return libipw_wx_set_encode(priv->ieee, info, wrqu, key);
James Ketrenos2c86c272005-03-23 17:32:29 -06007547}
7548
7549static int ipw2100_wx_get_encode(struct net_device *dev,
7550 struct iw_request_info *info,
7551 union iwreq_data *wrqu, char *key)
7552{
7553 /*
7554 * This can be called at any time. No action lock required
7555 */
7556
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007557 struct ipw2100_priv *priv = libipw_priv(dev);
7558 return libipw_wx_get_encode(priv->ieee, info, wrqu, key);
James Ketrenos2c86c272005-03-23 17:32:29 -06007559}
7560
7561static int ipw2100_wx_set_power(struct net_device *dev,
James Ketrenosee8e3652005-09-14 09:47:29 -05007562 struct iw_request_info *info,
7563 union iwreq_data *wrqu, char *extra)
James Ketrenos2c86c272005-03-23 17:32:29 -06007564{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007565 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06007566 int err = 0;
7567
Ingo Molnar752e3772006-02-28 07:20:54 +08007568 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007569 if (!(priv->status & STATUS_INITIALIZED)) {
7570 err = -EIO;
7571 goto done;
7572 }
7573
7574 if (wrqu->power.disabled) {
7575 priv->power_mode = IPW_POWER_LEVEL(priv->power_mode);
7576 err = ipw2100_set_power_mode(priv, IPW_POWER_MODE_CAM);
7577 IPW_DEBUG_WX("SET Power Management Mode -> off\n");
7578 goto done;
7579 }
7580
7581 switch (wrqu->power.flags & IW_POWER_MODE) {
James Ketrenosee8e3652005-09-14 09:47:29 -05007582 case IW_POWER_ON: /* If not specified */
7583 case IW_POWER_MODE: /* If set all mask */
Jean Delvarec03983a2007-10-19 23:22:55 +02007584 case IW_POWER_ALL_R: /* If explicitly state all */
James Ketrenos2c86c272005-03-23 17:32:29 -06007585 break;
James Ketrenosee8e3652005-09-14 09:47:29 -05007586 default: /* Otherwise we don't support it */
James Ketrenos2c86c272005-03-23 17:32:29 -06007587 IPW_DEBUG_WX("SET PM Mode: %X not supported.\n",
7588 wrqu->power.flags);
7589 err = -EOPNOTSUPP;
7590 goto done;
7591 }
7592
7593 /* If the user hasn't specified a power management mode yet, default
7594 * to BATTERY */
7595 priv->power_mode = IPW_POWER_ENABLED | priv->power_mode;
7596 err = ipw2100_set_power_mode(priv, IPW_POWER_LEVEL(priv->power_mode));
7597
James Ketrenosee8e3652005-09-14 09:47:29 -05007598 IPW_DEBUG_WX("SET Power Management Mode -> 0x%02X\n", priv->power_mode);
James Ketrenos2c86c272005-03-23 17:32:29 -06007599
James Ketrenosee8e3652005-09-14 09:47:29 -05007600 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08007601 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007602 return err;
7603
7604}
7605
7606static int ipw2100_wx_get_power(struct net_device *dev,
James Ketrenosee8e3652005-09-14 09:47:29 -05007607 struct iw_request_info *info,
7608 union iwreq_data *wrqu, char *extra)
James Ketrenos2c86c272005-03-23 17:32:29 -06007609{
7610 /*
7611 * This can be called at any time. No action lock required
7612 */
7613
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007614 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06007615
James Ketrenos82328352005-08-24 22:33:31 -05007616 if (!(priv->power_mode & IPW_POWER_ENABLED))
James Ketrenos2c86c272005-03-23 17:32:29 -06007617 wrqu->power.disabled = 1;
James Ketrenos82328352005-08-24 22:33:31 -05007618 else {
James Ketrenos2c86c272005-03-23 17:32:29 -06007619 wrqu->power.disabled = 0;
7620 wrqu->power.flags = 0;
7621 }
7622
7623 IPW_DEBUG_WX("GET Power Management Mode -> %02X\n", priv->power_mode);
7624
7625 return 0;
7626}
7627
James Ketrenos82328352005-08-24 22:33:31 -05007628/*
7629 * WE-18 WPA support
7630 */
7631
7632/* SIOCSIWGENIE */
7633static int ipw2100_wx_set_genie(struct net_device *dev,
7634 struct iw_request_info *info,
7635 union iwreq_data *wrqu, char *extra)
7636{
7637
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007638 struct ipw2100_priv *priv = libipw_priv(dev);
7639 struct libipw_device *ieee = priv->ieee;
James Ketrenos82328352005-08-24 22:33:31 -05007640 u8 *buf;
7641
7642 if (!ieee->wpa_enabled)
7643 return -EOPNOTSUPP;
7644
7645 if (wrqu->data.length > MAX_WPA_IE_LEN ||
7646 (wrqu->data.length && extra == NULL))
7647 return -EINVAL;
7648
7649 if (wrqu->data.length) {
Eric Sesterhennc3a9392e2006-10-23 22:20:15 +02007650 buf = kmemdup(extra, wrqu->data.length, GFP_KERNEL);
James Ketrenos82328352005-08-24 22:33:31 -05007651 if (buf == NULL)
7652 return -ENOMEM;
7653
James Ketrenos82328352005-08-24 22:33:31 -05007654 kfree(ieee->wpa_ie);
7655 ieee->wpa_ie = buf;
7656 ieee->wpa_ie_len = wrqu->data.length;
7657 } else {
7658 kfree(ieee->wpa_ie);
7659 ieee->wpa_ie = NULL;
7660 ieee->wpa_ie_len = 0;
7661 }
7662
7663 ipw2100_wpa_assoc_frame(priv, ieee->wpa_ie, ieee->wpa_ie_len);
7664
7665 return 0;
7666}
7667
7668/* SIOCGIWGENIE */
7669static int ipw2100_wx_get_genie(struct net_device *dev,
7670 struct iw_request_info *info,
7671 union iwreq_data *wrqu, char *extra)
7672{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007673 struct ipw2100_priv *priv = libipw_priv(dev);
7674 struct libipw_device *ieee = priv->ieee;
James Ketrenos82328352005-08-24 22:33:31 -05007675
7676 if (ieee->wpa_ie_len == 0 || ieee->wpa_ie == NULL) {
7677 wrqu->data.length = 0;
7678 return 0;
7679 }
7680
7681 if (wrqu->data.length < ieee->wpa_ie_len)
7682 return -E2BIG;
7683
7684 wrqu->data.length = ieee->wpa_ie_len;
7685 memcpy(extra, ieee->wpa_ie, ieee->wpa_ie_len);
7686
7687 return 0;
7688}
7689
7690/* SIOCSIWAUTH */
7691static int ipw2100_wx_set_auth(struct net_device *dev,
7692 struct iw_request_info *info,
7693 union iwreq_data *wrqu, char *extra)
7694{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007695 struct ipw2100_priv *priv = libipw_priv(dev);
7696 struct libipw_device *ieee = priv->ieee;
James Ketrenos82328352005-08-24 22:33:31 -05007697 struct iw_param *param = &wrqu->param;
John W. Linville274bfb82008-10-29 11:35:05 -04007698 struct lib80211_crypt_data *crypt;
James Ketrenos82328352005-08-24 22:33:31 -05007699 unsigned long flags;
7700 int ret = 0;
7701
7702 switch (param->flags & IW_AUTH_INDEX) {
7703 case IW_AUTH_WPA_VERSION:
7704 case IW_AUTH_CIPHER_PAIRWISE:
7705 case IW_AUTH_CIPHER_GROUP:
7706 case IW_AUTH_KEY_MGMT:
7707 /*
7708 * ipw2200 does not use these parameters
7709 */
7710 break;
7711
7712 case IW_AUTH_TKIP_COUNTERMEASURES:
John W. Linville274bfb82008-10-29 11:35:05 -04007713 crypt = priv->ieee->crypt_info.crypt[priv->ieee->crypt_info.tx_keyidx];
James Ketrenos991d1cc2005-10-13 09:26:48 +00007714 if (!crypt || !crypt->ops->set_flags || !crypt->ops->get_flags)
James Ketrenos82328352005-08-24 22:33:31 -05007715 break;
James Ketrenos82328352005-08-24 22:33:31 -05007716
7717 flags = crypt->ops->get_flags(crypt->priv);
7718
7719 if (param->value)
7720 flags |= IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
7721 else
7722 flags &= ~IEEE80211_CRYPTO_TKIP_COUNTERMEASURES;
7723
7724 crypt->ops->set_flags(flags, crypt->priv);
7725
7726 break;
7727
7728 case IW_AUTH_DROP_UNENCRYPTED:{
7729 /* HACK:
7730 *
7731 * wpa_supplicant calls set_wpa_enabled when the driver
7732 * is loaded and unloaded, regardless of if WPA is being
7733 * used. No other calls are made which can be used to
7734 * determine if encryption will be used or not prior to
7735 * association being expected. If encryption is not being
7736 * used, drop_unencrypted is set to false, else true -- we
7737 * can use this to determine if the CAP_PRIVACY_ON bit should
7738 * be set.
7739 */
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007740 struct libipw_security sec = {
James Ketrenos82328352005-08-24 22:33:31 -05007741 .flags = SEC_ENABLED,
7742 .enabled = param->value,
7743 };
7744 priv->ieee->drop_unencrypted = param->value;
7745 /* We only change SEC_LEVEL for open mode. Others
7746 * are set by ipw_wpa_set_encryption.
7747 */
7748 if (!param->value) {
7749 sec.flags |= SEC_LEVEL;
7750 sec.level = SEC_LEVEL_0;
7751 } else {
7752 sec.flags |= SEC_LEVEL;
7753 sec.level = SEC_LEVEL_1;
7754 }
7755 if (priv->ieee->set_security)
7756 priv->ieee->set_security(priv->ieee->dev, &sec);
7757 break;
7758 }
7759
7760 case IW_AUTH_80211_AUTH_ALG:
7761 ret = ipw2100_wpa_set_auth_algs(priv, param->value);
7762 break;
7763
7764 case IW_AUTH_WPA_ENABLED:
7765 ret = ipw2100_wpa_enable(priv, param->value);
7766 break;
7767
7768 case IW_AUTH_RX_UNENCRYPTED_EAPOL:
7769 ieee->ieee802_1x = param->value;
7770 break;
7771
7772 //case IW_AUTH_ROAMING_CONTROL:
7773 case IW_AUTH_PRIVACY_INVOKED:
7774 ieee->privacy_invoked = param->value;
7775 break;
7776
7777 default:
7778 return -EOPNOTSUPP;
7779 }
7780 return ret;
7781}
7782
7783/* SIOCGIWAUTH */
7784static int ipw2100_wx_get_auth(struct net_device *dev,
7785 struct iw_request_info *info,
7786 union iwreq_data *wrqu, char *extra)
7787{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007788 struct ipw2100_priv *priv = libipw_priv(dev);
7789 struct libipw_device *ieee = priv->ieee;
John W. Linville274bfb82008-10-29 11:35:05 -04007790 struct lib80211_crypt_data *crypt;
James Ketrenos82328352005-08-24 22:33:31 -05007791 struct iw_param *param = &wrqu->param;
7792 int ret = 0;
7793
7794 switch (param->flags & IW_AUTH_INDEX) {
7795 case IW_AUTH_WPA_VERSION:
7796 case IW_AUTH_CIPHER_PAIRWISE:
7797 case IW_AUTH_CIPHER_GROUP:
7798 case IW_AUTH_KEY_MGMT:
7799 /*
7800 * wpa_supplicant will control these internally
7801 */
7802 ret = -EOPNOTSUPP;
7803 break;
7804
7805 case IW_AUTH_TKIP_COUNTERMEASURES:
John W. Linville274bfb82008-10-29 11:35:05 -04007806 crypt = priv->ieee->crypt_info.crypt[priv->ieee->crypt_info.tx_keyidx];
James Ketrenos82328352005-08-24 22:33:31 -05007807 if (!crypt || !crypt->ops->get_flags) {
7808 IPW_DEBUG_WARNING("Can't get TKIP countermeasures: "
7809 "crypt not set!\n");
7810 break;
7811 }
7812
7813 param->value = (crypt->ops->get_flags(crypt->priv) &
7814 IEEE80211_CRYPTO_TKIP_COUNTERMEASURES) ? 1 : 0;
7815
7816 break;
7817
7818 case IW_AUTH_DROP_UNENCRYPTED:
7819 param->value = ieee->drop_unencrypted;
7820 break;
7821
7822 case IW_AUTH_80211_AUTH_ALG:
25b645b2005-07-12 15:45:30 -05007823 param->value = priv->ieee->sec.auth_mode;
James Ketrenos82328352005-08-24 22:33:31 -05007824 break;
7825
7826 case IW_AUTH_WPA_ENABLED:
7827 param->value = ieee->wpa_enabled;
7828 break;
7829
7830 case IW_AUTH_RX_UNENCRYPTED_EAPOL:
7831 param->value = ieee->ieee802_1x;
7832 break;
7833
7834 case IW_AUTH_ROAMING_CONTROL:
7835 case IW_AUTH_PRIVACY_INVOKED:
7836 param->value = ieee->privacy_invoked;
7837 break;
7838
7839 default:
7840 return -EOPNOTSUPP;
7841 }
7842 return 0;
7843}
7844
7845/* SIOCSIWENCODEEXT */
7846static int ipw2100_wx_set_encodeext(struct net_device *dev,
7847 struct iw_request_info *info,
7848 union iwreq_data *wrqu, char *extra)
7849{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007850 struct ipw2100_priv *priv = libipw_priv(dev);
7851 return libipw_wx_set_encodeext(priv->ieee, info, wrqu, extra);
James Ketrenos82328352005-08-24 22:33:31 -05007852}
7853
7854/* SIOCGIWENCODEEXT */
7855static int ipw2100_wx_get_encodeext(struct net_device *dev,
7856 struct iw_request_info *info,
7857 union iwreq_data *wrqu, char *extra)
7858{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007859 struct ipw2100_priv *priv = libipw_priv(dev);
7860 return libipw_wx_get_encodeext(priv->ieee, info, wrqu, extra);
James Ketrenos82328352005-08-24 22:33:31 -05007861}
7862
7863/* SIOCSIWMLME */
7864static int ipw2100_wx_set_mlme(struct net_device *dev,
7865 struct iw_request_info *info,
7866 union iwreq_data *wrqu, char *extra)
7867{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007868 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos82328352005-08-24 22:33:31 -05007869 struct iw_mlme *mlme = (struct iw_mlme *)extra;
Al Viro1edd3a52007-12-21 00:15:18 -05007870 __le16 reason;
James Ketrenos82328352005-08-24 22:33:31 -05007871
7872 reason = cpu_to_le16(mlme->reason_code);
7873
7874 switch (mlme->cmd) {
7875 case IW_MLME_DEAUTH:
7876 // silently ignore
7877 break;
7878
7879 case IW_MLME_DISASSOC:
7880 ipw2100_disassociate_bssid(priv);
7881 break;
7882
7883 default:
7884 return -EOPNOTSUPP;
7885 }
7886 return 0;
7887}
James Ketrenos2c86c272005-03-23 17:32:29 -06007888
7889/*
7890 *
7891 * IWPRIV handlers
7892 *
7893 */
7894#ifdef CONFIG_IPW2100_MONITOR
7895static int ipw2100_wx_set_promisc(struct net_device *dev,
7896 struct iw_request_info *info,
7897 union iwreq_data *wrqu, char *extra)
7898{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007899 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06007900 int *parms = (int *)extra;
7901 int enable = (parms[0] > 0);
7902 int err = 0;
7903
Ingo Molnar752e3772006-02-28 07:20:54 +08007904 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007905 if (!(priv->status & STATUS_INITIALIZED)) {
7906 err = -EIO;
7907 goto done;
7908 }
7909
7910 if (enable) {
7911 if (priv->ieee->iw_mode == IW_MODE_MONITOR) {
7912 err = ipw2100_set_channel(priv, parms[1], 0);
7913 goto done;
7914 }
7915 priv->channel = parms[1];
7916 err = ipw2100_switch_mode(priv, IW_MODE_MONITOR);
7917 } else {
7918 if (priv->ieee->iw_mode == IW_MODE_MONITOR)
7919 err = ipw2100_switch_mode(priv, priv->last_mode);
7920 }
James Ketrenosee8e3652005-09-14 09:47:29 -05007921 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08007922 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007923 return err;
7924}
7925
7926static int ipw2100_wx_reset(struct net_device *dev,
7927 struct iw_request_info *info,
7928 union iwreq_data *wrqu, char *extra)
7929{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007930 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06007931 if (priv->status & STATUS_INITIALIZED)
7932 schedule_reset(priv);
7933 return 0;
7934}
7935
7936#endif
7937
7938static int ipw2100_wx_set_powermode(struct net_device *dev,
7939 struct iw_request_info *info,
7940 union iwreq_data *wrqu, char *extra)
7941{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007942 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06007943 int err = 0, mode = *(int *)extra;
7944
Ingo Molnar752e3772006-02-28 07:20:54 +08007945 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007946 if (!(priv->status & STATUS_INITIALIZED)) {
7947 err = -EIO;
7948 goto done;
7949 }
7950
Zhu Yi9f3b2412007-07-12 16:09:24 +08007951 if ((mode < 0) || (mode > POWER_MODES))
James Ketrenos2c86c272005-03-23 17:32:29 -06007952 mode = IPW_POWER_AUTO;
7953
Zhu Yi9f3b2412007-07-12 16:09:24 +08007954 if (IPW_POWER_LEVEL(priv->power_mode) != mode)
James Ketrenos2c86c272005-03-23 17:32:29 -06007955 err = ipw2100_set_power_mode(priv, mode);
James Ketrenosee8e3652005-09-14 09:47:29 -05007956 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08007957 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06007958 return err;
7959}
7960
7961#define MAX_POWER_STRING 80
7962static int ipw2100_wx_get_powermode(struct net_device *dev,
7963 struct iw_request_info *info,
7964 union iwreq_data *wrqu, char *extra)
7965{
7966 /*
7967 * This can be called at any time. No action lock required
7968 */
7969
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04007970 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06007971 int level = IPW_POWER_LEVEL(priv->power_mode);
7972 s32 timeout, period;
7973
7974 if (!(priv->power_mode & IPW_POWER_ENABLED)) {
7975 snprintf(extra, MAX_POWER_STRING,
7976 "Power save level: %d (Off)", level);
7977 } else {
7978 switch (level) {
7979 case IPW_POWER_MODE_CAM:
7980 snprintf(extra, MAX_POWER_STRING,
7981 "Power save level: %d (None)", level);
7982 break;
7983 case IPW_POWER_AUTO:
James Ketrenosee8e3652005-09-14 09:47:29 -05007984 snprintf(extra, MAX_POWER_STRING,
Zhu Yi9f3b2412007-07-12 16:09:24 +08007985 "Power save level: %d (Auto)", level);
James Ketrenos2c86c272005-03-23 17:32:29 -06007986 break;
7987 default:
7988 timeout = timeout_duration[level - 1] / 1000;
7989 period = period_duration[level - 1] / 1000;
7990 snprintf(extra, MAX_POWER_STRING,
7991 "Power save level: %d "
7992 "(Timeout %dms, Period %dms)",
7993 level, timeout, period);
7994 }
7995 }
7996
7997 wrqu->data.length = strlen(extra) + 1;
7998
7999 return 0;
8000}
8001
James Ketrenos2c86c272005-03-23 17:32:29 -06008002static int ipw2100_wx_set_preamble(struct net_device *dev,
8003 struct iw_request_info *info,
8004 union iwreq_data *wrqu, char *extra)
8005{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008006 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06008007 int err, mode = *(int *)extra;
8008
Ingo Molnar752e3772006-02-28 07:20:54 +08008009 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06008010 if (!(priv->status & STATUS_INITIALIZED)) {
8011 err = -EIO;
8012 goto done;
8013 }
8014
8015 if (mode == 1)
8016 priv->config |= CFG_LONG_PREAMBLE;
8017 else if (mode == 0)
8018 priv->config &= ~CFG_LONG_PREAMBLE;
8019 else {
8020 err = -EINVAL;
8021 goto done;
8022 }
8023
8024 err = ipw2100_system_config(priv, 0);
8025
James Ketrenosee8e3652005-09-14 09:47:29 -05008026 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08008027 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06008028 return err;
8029}
8030
8031static int ipw2100_wx_get_preamble(struct net_device *dev,
James Ketrenosee8e3652005-09-14 09:47:29 -05008032 struct iw_request_info *info,
8033 union iwreq_data *wrqu, char *extra)
James Ketrenos2c86c272005-03-23 17:32:29 -06008034{
8035 /*
8036 * This can be called at any time. No action lock required
8037 */
8038
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008039 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06008040
8041 if (priv->config & CFG_LONG_PREAMBLE)
8042 snprintf(wrqu->name, IFNAMSIZ, "long (1)");
8043 else
8044 snprintf(wrqu->name, IFNAMSIZ, "auto (0)");
8045
8046 return 0;
8047}
8048
James Ketrenos82328352005-08-24 22:33:31 -05008049#ifdef CONFIG_IPW2100_MONITOR
8050static int ipw2100_wx_set_crc_check(struct net_device *dev,
8051 struct iw_request_info *info,
8052 union iwreq_data *wrqu, char *extra)
James Ketrenos2c86c272005-03-23 17:32:29 -06008053{
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008054 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos82328352005-08-24 22:33:31 -05008055 int err, mode = *(int *)extra;
8056
Ingo Molnar752e3772006-02-28 07:20:54 +08008057 mutex_lock(&priv->action_mutex);
James Ketrenos82328352005-08-24 22:33:31 -05008058 if (!(priv->status & STATUS_INITIALIZED)) {
8059 err = -EIO;
8060 goto done;
8061 }
8062
8063 if (mode == 1)
8064 priv->config |= CFG_CRC_CHECK;
8065 else if (mode == 0)
8066 priv->config &= ~CFG_CRC_CHECK;
8067 else {
8068 err = -EINVAL;
8069 goto done;
8070 }
8071 err = 0;
8072
8073 done:
Ingo Molnar752e3772006-02-28 07:20:54 +08008074 mutex_unlock(&priv->action_mutex);
James Ketrenos82328352005-08-24 22:33:31 -05008075 return err;
8076}
8077
8078static int ipw2100_wx_get_crc_check(struct net_device *dev,
8079 struct iw_request_info *info,
8080 union iwreq_data *wrqu, char *extra)
8081{
8082 /*
8083 * This can be called at any time. No action lock required
8084 */
8085
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008086 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos82328352005-08-24 22:33:31 -05008087
8088 if (priv->config & CFG_CRC_CHECK)
8089 snprintf(wrqu->name, IFNAMSIZ, "CRC checked (1)");
8090 else
8091 snprintf(wrqu->name, IFNAMSIZ, "CRC ignored (0)");
8092
8093 return 0;
8094}
8095#endif /* CONFIG_IPW2100_MONITOR */
8096
James Ketrenosee8e3652005-09-14 09:47:29 -05008097static iw_handler ipw2100_wx_handlers[] = {
Stanislav Yakovlev06d9b6a2012-02-23 17:31:24 -05008098 IW_HANDLER(SIOCGIWNAME, ipw2100_wx_get_name),
8099 IW_HANDLER(SIOCSIWFREQ, ipw2100_wx_set_freq),
8100 IW_HANDLER(SIOCGIWFREQ, ipw2100_wx_get_freq),
8101 IW_HANDLER(SIOCSIWMODE, ipw2100_wx_set_mode),
8102 IW_HANDLER(SIOCGIWMODE, ipw2100_wx_get_mode),
8103 IW_HANDLER(SIOCGIWRANGE, ipw2100_wx_get_range),
8104 IW_HANDLER(SIOCSIWAP, ipw2100_wx_set_wap),
8105 IW_HANDLER(SIOCGIWAP, ipw2100_wx_get_wap),
8106 IW_HANDLER(SIOCSIWMLME, ipw2100_wx_set_mlme),
8107 IW_HANDLER(SIOCSIWSCAN, ipw2100_wx_set_scan),
8108 IW_HANDLER(SIOCGIWSCAN, ipw2100_wx_get_scan),
8109 IW_HANDLER(SIOCSIWESSID, ipw2100_wx_set_essid),
8110 IW_HANDLER(SIOCGIWESSID, ipw2100_wx_get_essid),
8111 IW_HANDLER(SIOCSIWNICKN, ipw2100_wx_set_nick),
8112 IW_HANDLER(SIOCGIWNICKN, ipw2100_wx_get_nick),
8113 IW_HANDLER(SIOCSIWRATE, ipw2100_wx_set_rate),
8114 IW_HANDLER(SIOCGIWRATE, ipw2100_wx_get_rate),
8115 IW_HANDLER(SIOCSIWRTS, ipw2100_wx_set_rts),
8116 IW_HANDLER(SIOCGIWRTS, ipw2100_wx_get_rts),
8117 IW_HANDLER(SIOCSIWFRAG, ipw2100_wx_set_frag),
8118 IW_HANDLER(SIOCGIWFRAG, ipw2100_wx_get_frag),
8119 IW_HANDLER(SIOCSIWTXPOW, ipw2100_wx_set_txpow),
8120 IW_HANDLER(SIOCGIWTXPOW, ipw2100_wx_get_txpow),
8121 IW_HANDLER(SIOCSIWRETRY, ipw2100_wx_set_retry),
8122 IW_HANDLER(SIOCGIWRETRY, ipw2100_wx_get_retry),
8123 IW_HANDLER(SIOCSIWENCODE, ipw2100_wx_set_encode),
8124 IW_HANDLER(SIOCGIWENCODE, ipw2100_wx_get_encode),
8125 IW_HANDLER(SIOCSIWPOWER, ipw2100_wx_set_power),
8126 IW_HANDLER(SIOCGIWPOWER, ipw2100_wx_get_power),
8127 IW_HANDLER(SIOCSIWGENIE, ipw2100_wx_set_genie),
8128 IW_HANDLER(SIOCGIWGENIE, ipw2100_wx_get_genie),
8129 IW_HANDLER(SIOCSIWAUTH, ipw2100_wx_set_auth),
8130 IW_HANDLER(SIOCGIWAUTH, ipw2100_wx_get_auth),
8131 IW_HANDLER(SIOCSIWENCODEEXT, ipw2100_wx_set_encodeext),
8132 IW_HANDLER(SIOCGIWENCODEEXT, ipw2100_wx_get_encodeext),
James Ketrenos2c86c272005-03-23 17:32:29 -06008133};
8134
8135#define IPW2100_PRIV_SET_MONITOR SIOCIWFIRSTPRIV
8136#define IPW2100_PRIV_RESET SIOCIWFIRSTPRIV+1
8137#define IPW2100_PRIV_SET_POWER SIOCIWFIRSTPRIV+2
8138#define IPW2100_PRIV_GET_POWER SIOCIWFIRSTPRIV+3
8139#define IPW2100_PRIV_SET_LONGPREAMBLE SIOCIWFIRSTPRIV+4
8140#define IPW2100_PRIV_GET_LONGPREAMBLE SIOCIWFIRSTPRIV+5
James Ketrenos82328352005-08-24 22:33:31 -05008141#define IPW2100_PRIV_SET_CRC_CHECK SIOCIWFIRSTPRIV+6
8142#define IPW2100_PRIV_GET_CRC_CHECK SIOCIWFIRSTPRIV+7
James Ketrenos2c86c272005-03-23 17:32:29 -06008143
8144static const struct iw_priv_args ipw2100_private_args[] = {
8145
8146#ifdef CONFIG_IPW2100_MONITOR
8147 {
James Ketrenosee8e3652005-09-14 09:47:29 -05008148 IPW2100_PRIV_SET_MONITOR,
8149 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 2, 0, "monitor"},
James Ketrenos2c86c272005-03-23 17:32:29 -06008150 {
James Ketrenosee8e3652005-09-14 09:47:29 -05008151 IPW2100_PRIV_RESET,
8152 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 0, 0, "reset"},
8153#endif /* CONFIG_IPW2100_MONITOR */
James Ketrenos2c86c272005-03-23 17:32:29 -06008154
8155 {
James Ketrenosee8e3652005-09-14 09:47:29 -05008156 IPW2100_PRIV_SET_POWER,
8157 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1, 0, "set_power"},
James Ketrenos2c86c272005-03-23 17:32:29 -06008158 {
James Ketrenosee8e3652005-09-14 09:47:29 -05008159 IPW2100_PRIV_GET_POWER,
8160 0, IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | MAX_POWER_STRING,
8161 "get_power"},
James Ketrenos2c86c272005-03-23 17:32:29 -06008162 {
James Ketrenosee8e3652005-09-14 09:47:29 -05008163 IPW2100_PRIV_SET_LONGPREAMBLE,
8164 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1, 0, "set_preamble"},
James Ketrenos2c86c272005-03-23 17:32:29 -06008165 {
James Ketrenosee8e3652005-09-14 09:47:29 -05008166 IPW2100_PRIV_GET_LONGPREAMBLE,
8167 0, IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | IFNAMSIZ, "get_preamble"},
James Ketrenos82328352005-08-24 22:33:31 -05008168#ifdef CONFIG_IPW2100_MONITOR
8169 {
8170 IPW2100_PRIV_SET_CRC_CHECK,
8171 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1, 0, "set_crc_check"},
8172 {
8173 IPW2100_PRIV_GET_CRC_CHECK,
8174 0, IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_FIXED | IFNAMSIZ, "get_crc_check"},
8175#endif /* CONFIG_IPW2100_MONITOR */
James Ketrenos2c86c272005-03-23 17:32:29 -06008176};
8177
8178static iw_handler ipw2100_private_handler[] = {
8179#ifdef CONFIG_IPW2100_MONITOR
8180 ipw2100_wx_set_promisc,
8181 ipw2100_wx_reset,
James Ketrenosee8e3652005-09-14 09:47:29 -05008182#else /* CONFIG_IPW2100_MONITOR */
James Ketrenos2c86c272005-03-23 17:32:29 -06008183 NULL,
8184 NULL,
James Ketrenosee8e3652005-09-14 09:47:29 -05008185#endif /* CONFIG_IPW2100_MONITOR */
James Ketrenos2c86c272005-03-23 17:32:29 -06008186 ipw2100_wx_set_powermode,
8187 ipw2100_wx_get_powermode,
8188 ipw2100_wx_set_preamble,
8189 ipw2100_wx_get_preamble,
James Ketrenos82328352005-08-24 22:33:31 -05008190#ifdef CONFIG_IPW2100_MONITOR
8191 ipw2100_wx_set_crc_check,
8192 ipw2100_wx_get_crc_check,
8193#else /* CONFIG_IPW2100_MONITOR */
8194 NULL,
8195 NULL,
8196#endif /* CONFIG_IPW2100_MONITOR */
James Ketrenos2c86c272005-03-23 17:32:29 -06008197};
8198
James Ketrenos2c86c272005-03-23 17:32:29 -06008199/*
8200 * Get wireless statistics.
8201 * Called by /proc/net/wireless
8202 * Also called by SIOCGIWSTATS
8203 */
James Ketrenosee8e3652005-09-14 09:47:29 -05008204static struct iw_statistics *ipw2100_wx_wireless_stats(struct net_device *dev)
James Ketrenos2c86c272005-03-23 17:32:29 -06008205{
8206 enum {
8207 POOR = 30,
8208 FAIR = 60,
8209 GOOD = 80,
8210 VERY_GOOD = 90,
8211 EXCELLENT = 95,
8212 PERFECT = 100
8213 };
8214 int rssi_qual;
8215 int tx_qual;
8216 int beacon_qual;
Reinette Chatre21f8a732009-08-18 10:25:05 -07008217 int quality;
James Ketrenos2c86c272005-03-23 17:32:29 -06008218
John W. Linvilleb0a4e7d2009-08-20 14:48:03 -04008219 struct ipw2100_priv *priv = libipw_priv(dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06008220 struct iw_statistics *wstats;
Reinette Chatre21f8a732009-08-18 10:25:05 -07008221 u32 rssi, tx_retries, missed_beacons, tx_failures;
James Ketrenos2c86c272005-03-23 17:32:29 -06008222 u32 ord_len = sizeof(u32);
8223
8224 if (!priv)
James Ketrenosee8e3652005-09-14 09:47:29 -05008225 return (struct iw_statistics *)NULL;
James Ketrenos2c86c272005-03-23 17:32:29 -06008226
8227 wstats = &priv->wstats;
8228
8229 /* if hw is disabled, then ipw2100_get_ordinal() can't be called.
8230 * ipw2100_wx_wireless_stats seems to be called before fw is
8231 * initialized. STATUS_ASSOCIATED will only be set if the hw is up
8232 * and associated; if not associcated, the values are all meaningless
8233 * anyway, so set them all to NULL and INVALID */
8234 if (!(priv->status & STATUS_ASSOCIATED)) {
8235 wstats->miss.beacon = 0;
8236 wstats->discard.retries = 0;
8237 wstats->qual.qual = 0;
8238 wstats->qual.level = 0;
8239 wstats->qual.noise = 0;
8240 wstats->qual.updated = 7;
8241 wstats->qual.updated |= IW_QUAL_NOISE_INVALID |
James Ketrenosee8e3652005-09-14 09:47:29 -05008242 IW_QUAL_QUAL_INVALID | IW_QUAL_LEVEL_INVALID;
James Ketrenos2c86c272005-03-23 17:32:29 -06008243 return wstats;
8244 }
8245
8246 if (ipw2100_get_ordinal(priv, IPW_ORD_STAT_PERCENT_MISSED_BCNS,
8247 &missed_beacons, &ord_len))
8248 goto fail_get_ordinal;
8249
James Ketrenosee8e3652005-09-14 09:47:29 -05008250 /* If we don't have a connection the quality and level is 0 */
James Ketrenos2c86c272005-03-23 17:32:29 -06008251 if (!(priv->status & STATUS_ASSOCIATED)) {
8252 wstats->qual.qual = 0;
8253 wstats->qual.level = 0;
8254 } else {
8255 if (ipw2100_get_ordinal(priv, IPW_ORD_RSSI_AVG_CURR,
8256 &rssi, &ord_len))
8257 goto fail_get_ordinal;
8258 wstats->qual.level = rssi + IPW2100_RSSI_TO_DBM;
8259 if (rssi < 10)
8260 rssi_qual = rssi * POOR / 10;
8261 else if (rssi < 15)
8262 rssi_qual = (rssi - 10) * (FAIR - POOR) / 5 + POOR;
8263 else if (rssi < 20)
8264 rssi_qual = (rssi - 15) * (GOOD - FAIR) / 5 + FAIR;
8265 else if (rssi < 30)
8266 rssi_qual = (rssi - 20) * (VERY_GOOD - GOOD) /
James Ketrenosee8e3652005-09-14 09:47:29 -05008267 10 + GOOD;
James Ketrenos2c86c272005-03-23 17:32:29 -06008268 else
8269 rssi_qual = (rssi - 30) * (PERFECT - VERY_GOOD) /
James Ketrenosee8e3652005-09-14 09:47:29 -05008270 10 + VERY_GOOD;
James Ketrenos2c86c272005-03-23 17:32:29 -06008271
8272 if (ipw2100_get_ordinal(priv, IPW_ORD_STAT_PERCENT_RETRIES,
8273 &tx_retries, &ord_len))
8274 goto fail_get_ordinal;
8275
8276 if (tx_retries > 75)
8277 tx_qual = (90 - tx_retries) * POOR / 15;
8278 else if (tx_retries > 70)
8279 tx_qual = (75 - tx_retries) * (FAIR - POOR) / 5 + POOR;
8280 else if (tx_retries > 65)
8281 tx_qual = (70 - tx_retries) * (GOOD - FAIR) / 5 + FAIR;
8282 else if (tx_retries > 50)
8283 tx_qual = (65 - tx_retries) * (VERY_GOOD - GOOD) /
James Ketrenosee8e3652005-09-14 09:47:29 -05008284 15 + GOOD;
James Ketrenos2c86c272005-03-23 17:32:29 -06008285 else
8286 tx_qual = (50 - tx_retries) *
James Ketrenosee8e3652005-09-14 09:47:29 -05008287 (PERFECT - VERY_GOOD) / 50 + VERY_GOOD;
James Ketrenos2c86c272005-03-23 17:32:29 -06008288
8289 if (missed_beacons > 50)
8290 beacon_qual = (60 - missed_beacons) * POOR / 10;
8291 else if (missed_beacons > 40)
8292 beacon_qual = (50 - missed_beacons) * (FAIR - POOR) /
James Ketrenosee8e3652005-09-14 09:47:29 -05008293 10 + POOR;
James Ketrenos2c86c272005-03-23 17:32:29 -06008294 else if (missed_beacons > 32)
8295 beacon_qual = (40 - missed_beacons) * (GOOD - FAIR) /
James Ketrenosee8e3652005-09-14 09:47:29 -05008296 18 + FAIR;
James Ketrenos2c86c272005-03-23 17:32:29 -06008297 else if (missed_beacons > 20)
8298 beacon_qual = (32 - missed_beacons) *
James Ketrenosee8e3652005-09-14 09:47:29 -05008299 (VERY_GOOD - GOOD) / 20 + GOOD;
James Ketrenos2c86c272005-03-23 17:32:29 -06008300 else
8301 beacon_qual = (20 - missed_beacons) *
James Ketrenosee8e3652005-09-14 09:47:29 -05008302 (PERFECT - VERY_GOOD) / 20 + VERY_GOOD;
James Ketrenos2c86c272005-03-23 17:32:29 -06008303
Reinette Chatre21f8a732009-08-18 10:25:05 -07008304 quality = min(tx_qual, rssi_qual);
8305 quality = min(beacon_qual, quality);
James Ketrenos2c86c272005-03-23 17:32:29 -06008306
Brice Goglin0f52bf92005-12-01 01:41:46 -08008307#ifdef CONFIG_IPW2100_DEBUG
James Ketrenos2c86c272005-03-23 17:32:29 -06008308 if (beacon_qual == quality)
8309 IPW_DEBUG_WX("Quality clamped by Missed Beacons\n");
8310 else if (tx_qual == quality)
8311 IPW_DEBUG_WX("Quality clamped by Tx Retries\n");
8312 else if (quality != 100)
8313 IPW_DEBUG_WX("Quality clamped by Signal Strength\n");
8314 else
8315 IPW_DEBUG_WX("Quality not clamped.\n");
8316#endif
8317
8318 wstats->qual.qual = quality;
8319 wstats->qual.level = rssi + IPW2100_RSSI_TO_DBM;
8320 }
8321
8322 wstats->qual.noise = 0;
8323 wstats->qual.updated = 7;
8324 wstats->qual.updated |= IW_QUAL_NOISE_INVALID;
8325
James Ketrenosee8e3652005-09-14 09:47:29 -05008326 /* FIXME: this is percent and not a # */
James Ketrenos2c86c272005-03-23 17:32:29 -06008327 wstats->miss.beacon = missed_beacons;
8328
8329 if (ipw2100_get_ordinal(priv, IPW_ORD_STAT_TX_FAILURES,
8330 &tx_failures, &ord_len))
8331 goto fail_get_ordinal;
8332 wstats->discard.retries = tx_failures;
8333
8334 return wstats;
8335
James Ketrenosee8e3652005-09-14 09:47:29 -05008336 fail_get_ordinal:
James Ketrenos2c86c272005-03-23 17:32:29 -06008337 IPW_DEBUG_WX("failed querying ordinals.\n");
8338
James Ketrenosee8e3652005-09-14 09:47:29 -05008339 return (struct iw_statistics *)NULL;
James Ketrenos2c86c272005-03-23 17:32:29 -06008340}
8341
James Ketrenoseaf8f53b2005-11-12 12:50:12 -06008342static struct iw_handler_def ipw2100_wx_handler_def = {
8343 .standard = ipw2100_wx_handlers,
Denis Chengff8ac602007-09-02 18:30:18 +08008344 .num_standard = ARRAY_SIZE(ipw2100_wx_handlers),
8345 .num_private = ARRAY_SIZE(ipw2100_private_handler),
8346 .num_private_args = ARRAY_SIZE(ipw2100_private_args),
James Ketrenoseaf8f53b2005-11-12 12:50:12 -06008347 .private = (iw_handler *) ipw2100_private_handler,
8348 .private_args = (struct iw_priv_args *)ipw2100_private_args,
8349 .get_wireless_stats = ipw2100_wx_wireless_stats,
8350};
8351
David Howellsc4028952006-11-22 14:57:56 +00008352static void ipw2100_wx_event_work(struct work_struct *work)
James Ketrenos2c86c272005-03-23 17:32:29 -06008353{
David Howellsc4028952006-11-22 14:57:56 +00008354 struct ipw2100_priv *priv =
8355 container_of(work, struct ipw2100_priv, wx_event_work.work);
James Ketrenos2c86c272005-03-23 17:32:29 -06008356 union iwreq_data wrqu;
Hannes Ederb9da9e92009-02-14 11:50:26 +00008357 unsigned int len = ETH_ALEN;
James Ketrenos2c86c272005-03-23 17:32:29 -06008358
8359 if (priv->status & STATUS_STOPPING)
8360 return;
8361
Ingo Molnar752e3772006-02-28 07:20:54 +08008362 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06008363
8364 IPW_DEBUG_WX("enter\n");
8365
Ingo Molnar752e3772006-02-28 07:20:54 +08008366 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06008367
8368 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
8369
8370 /* Fetch BSSID from the hardware */
8371 if (!(priv->status & (STATUS_ASSOCIATING | STATUS_ASSOCIATED)) ||
8372 priv->status & STATUS_RF_KILL_MASK ||
8373 ipw2100_get_ordinal(priv, IPW_ORD_STAT_ASSN_AP_BSSID,
James Ketrenosee8e3652005-09-14 09:47:29 -05008374 &priv->bssid, &len)) {
James Ketrenos2c86c272005-03-23 17:32:29 -06008375 memset(wrqu.ap_addr.sa_data, 0, ETH_ALEN);
8376 } else {
8377 /* We now have the BSSID, so can finish setting to the full
8378 * associated state */
8379 memcpy(wrqu.ap_addr.sa_data, priv->bssid, ETH_ALEN);
James Ketrenos82328352005-08-24 22:33:31 -05008380 memcpy(priv->ieee->bssid, priv->bssid, ETH_ALEN);
James Ketrenos2c86c272005-03-23 17:32:29 -06008381 priv->status &= ~STATUS_ASSOCIATING;
8382 priv->status |= STATUS_ASSOCIATED;
8383 netif_carrier_on(priv->net_dev);
James Ketrenos82328352005-08-24 22:33:31 -05008384 netif_wake_queue(priv->net_dev);
James Ketrenos2c86c272005-03-23 17:32:29 -06008385 }
8386
8387 if (!(priv->status & STATUS_ASSOCIATED)) {
8388 IPW_DEBUG_WX("Configuring ESSID\n");
Ingo Molnar752e3772006-02-28 07:20:54 +08008389 mutex_lock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06008390 /* This is a disassociation event, so kick the firmware to
8391 * look for another AP */
8392 if (priv->config & CFG_STATIC_ESSID)
James Ketrenosee8e3652005-09-14 09:47:29 -05008393 ipw2100_set_essid(priv, priv->essid, priv->essid_len,
8394 0);
James Ketrenos2c86c272005-03-23 17:32:29 -06008395 else
8396 ipw2100_set_essid(priv, NULL, 0, 0);
Ingo Molnar752e3772006-02-28 07:20:54 +08008397 mutex_unlock(&priv->action_mutex);
James Ketrenos2c86c272005-03-23 17:32:29 -06008398 }
8399
8400 wireless_send_event(priv->net_dev, SIOCGIWAP, &wrqu, NULL);
8401}
8402
8403#define IPW2100_FW_MAJOR_VERSION 1
8404#define IPW2100_FW_MINOR_VERSION 3
8405
8406#define IPW2100_FW_MINOR(x) ((x & 0xff) >> 8)
8407#define IPW2100_FW_MAJOR(x) (x & 0xff)
8408
8409#define IPW2100_FW_VERSION ((IPW2100_FW_MINOR_VERSION << 8) | \
8410 IPW2100_FW_MAJOR_VERSION)
8411
8412#define IPW2100_FW_PREFIX "ipw2100-" __stringify(IPW2100_FW_MAJOR_VERSION) \
8413"." __stringify(IPW2100_FW_MINOR_VERSION)
8414
8415#define IPW2100_FW_NAME(x) IPW2100_FW_PREFIX "" x ".fw"
8416
James Ketrenos2c86c272005-03-23 17:32:29 -06008417/*
8418
8419BINARY FIRMWARE HEADER FORMAT
8420
8421offset length desc
84220 2 version
84232 2 mode == 0:BSS,1:IBSS,2:MONITOR
84244 4 fw_len
84258 4 uc_len
8426C fw_len firmware data
842712 + fw_len uc_len microcode data
8428
8429*/
8430
8431struct ipw2100_fw_header {
8432 short version;
8433 short mode;
8434 unsigned int fw_size;
8435 unsigned int uc_size;
Eric Dumazetba2d3582010-06-02 18:10:09 +00008436} __packed;
James Ketrenos2c86c272005-03-23 17:32:29 -06008437
James Ketrenos2c86c272005-03-23 17:32:29 -06008438static int ipw2100_mod_firmware_load(struct ipw2100_fw *fw)
8439{
8440 struct ipw2100_fw_header *h =
James Ketrenosee8e3652005-09-14 09:47:29 -05008441 (struct ipw2100_fw_header *)fw->fw_entry->data;
James Ketrenos2c86c272005-03-23 17:32:29 -06008442
8443 if (IPW2100_FW_MAJOR(h->version) != IPW2100_FW_MAJOR_VERSION) {
Jiri Benc797b4f72005-08-25 20:03:27 -04008444 printk(KERN_WARNING DRV_NAME ": Firmware image not compatible "
James Ketrenos2c86c272005-03-23 17:32:29 -06008445 "(detected version id of %u). "
8446 "See Documentation/networking/README.ipw2100\n",
8447 h->version);
8448 return 1;
8449 }
8450
8451 fw->version = h->version;
8452 fw->fw.data = fw->fw_entry->data + sizeof(struct ipw2100_fw_header);
8453 fw->fw.size = h->fw_size;
8454 fw->uc.data = fw->fw.data + h->fw_size;
8455 fw->uc.size = h->uc_size;
8456
8457 return 0;
8458}
8459
Jiri Bencc4aee8c2005-08-25 20:04:43 -04008460static int ipw2100_get_firmware(struct ipw2100_priv *priv,
8461 struct ipw2100_fw *fw)
James Ketrenos2c86c272005-03-23 17:32:29 -06008462{
8463 char *fw_name;
8464 int rc;
8465
8466 IPW_DEBUG_INFO("%s: Using hotplug firmware load.\n",
James Ketrenosee8e3652005-09-14 09:47:29 -05008467 priv->net_dev->name);
James Ketrenos2c86c272005-03-23 17:32:29 -06008468
8469 switch (priv->ieee->iw_mode) {
8470 case IW_MODE_ADHOC:
8471 fw_name = IPW2100_FW_NAME("-i");
8472 break;
8473#ifdef CONFIG_IPW2100_MONITOR
8474 case IW_MODE_MONITOR:
8475 fw_name = IPW2100_FW_NAME("-p");
8476 break;
8477#endif
8478 case IW_MODE_INFRA:
8479 default:
8480 fw_name = IPW2100_FW_NAME("");
8481 break;
8482 }
8483
8484 rc = request_firmware(&fw->fw_entry, fw_name, &priv->pci_dev->dev);
8485
8486 if (rc < 0) {
Jiri Benc797b4f72005-08-25 20:03:27 -04008487 printk(KERN_ERR DRV_NAME ": "
James Ketrenos2c86c272005-03-23 17:32:29 -06008488 "%s: Firmware '%s' not available or load failed.\n",
8489 priv->net_dev->name, fw_name);
8490 return rc;
8491 }
Jiri Bencaaa4d302005-06-07 14:58:41 +02008492 IPW_DEBUG_INFO("firmware data %p size %zd\n", fw->fw_entry->data,
James Ketrenosee8e3652005-09-14 09:47:29 -05008493 fw->fw_entry->size);
James Ketrenos2c86c272005-03-23 17:32:29 -06008494
8495 ipw2100_mod_firmware_load(fw);
8496
8497 return 0;
8498}
8499
Ben Hutchingsa278ea32009-11-07 21:58:47 +00008500MODULE_FIRMWARE(IPW2100_FW_NAME("-i"));
8501#ifdef CONFIG_IPW2100_MONITOR
8502MODULE_FIRMWARE(IPW2100_FW_NAME("-p"));
8503#endif
8504MODULE_FIRMWARE(IPW2100_FW_NAME(""));
8505
Jiri Bencc4aee8c2005-08-25 20:04:43 -04008506static void ipw2100_release_firmware(struct ipw2100_priv *priv,
8507 struct ipw2100_fw *fw)
James Ketrenos2c86c272005-03-23 17:32:29 -06008508{
8509 fw->version = 0;
8510 if (fw->fw_entry)
8511 release_firmware(fw->fw_entry);
8512 fw->fw_entry = NULL;
8513}
8514
Jiri Bencc4aee8c2005-08-25 20:04:43 -04008515static int ipw2100_get_fwversion(struct ipw2100_priv *priv, char *buf,
8516 size_t max)
James Ketrenos2c86c272005-03-23 17:32:29 -06008517{
8518 char ver[MAX_FW_VERSION_LEN];
8519 u32 len = MAX_FW_VERSION_LEN;
8520 u32 tmp;
8521 int i;
8522 /* firmware version is an ascii string (max len of 14) */
James Ketrenosee8e3652005-09-14 09:47:29 -05008523 if (ipw2100_get_ordinal(priv, IPW_ORD_STAT_FW_VER_NUM, ver, &len))
James Ketrenos2c86c272005-03-23 17:32:29 -06008524 return -EIO;
8525 tmp = max;
8526 if (len >= max)
8527 len = max - 1;
8528 for (i = 0; i < len; i++)
8529 buf[i] = ver[i];
8530 buf[i] = '\0';
8531 return tmp;
8532}
8533
Jiri Bencc4aee8c2005-08-25 20:04:43 -04008534static int ipw2100_get_ucodeversion(struct ipw2100_priv *priv, char *buf,
8535 size_t max)
James Ketrenos2c86c272005-03-23 17:32:29 -06008536{
8537 u32 ver;
8538 u32 len = sizeof(ver);
8539 /* microcode version is a 32 bit integer */
James Ketrenosee8e3652005-09-14 09:47:29 -05008540 if (ipw2100_get_ordinal(priv, IPW_ORD_UCODE_VERSION, &ver, &len))
James Ketrenos2c86c272005-03-23 17:32:29 -06008541 return -EIO;
8542 return snprintf(buf, max, "%08X", ver);
8543}
8544
8545/*
8546 * On exit, the firmware will have been freed from the fw list
8547 */
James Ketrenosee8e3652005-09-14 09:47:29 -05008548static int ipw2100_fw_download(struct ipw2100_priv *priv, struct ipw2100_fw *fw)
James Ketrenos2c86c272005-03-23 17:32:29 -06008549{
8550 /* firmware is constructed of N contiguous entries, each entry is
8551 * structured as:
8552 *
8553 * offset sie desc
8554 * 0 4 address to write to
8555 * 4 2 length of data run
James Ketrenosee8e3652005-09-14 09:47:29 -05008556 * 6 length data
James Ketrenos2c86c272005-03-23 17:32:29 -06008557 */
8558 unsigned int addr;
8559 unsigned short len;
8560
8561 const unsigned char *firmware_data = fw->fw.data;
8562 unsigned int firmware_data_left = fw->fw.size;
8563
8564 while (firmware_data_left > 0) {
James Ketrenosee8e3652005-09-14 09:47:29 -05008565 addr = *(u32 *) (firmware_data);
8566 firmware_data += 4;
James Ketrenos2c86c272005-03-23 17:32:29 -06008567 firmware_data_left -= 4;
8568
James Ketrenosee8e3652005-09-14 09:47:29 -05008569 len = *(u16 *) (firmware_data);
8570 firmware_data += 2;
James Ketrenos2c86c272005-03-23 17:32:29 -06008571 firmware_data_left -= 2;
8572
8573 if (len > 32) {
Jiri Benc797b4f72005-08-25 20:03:27 -04008574 printk(KERN_ERR DRV_NAME ": "
James Ketrenos2c86c272005-03-23 17:32:29 -06008575 "Invalid firmware run-length of %d bytes\n",
8576 len);
8577 return -EINVAL;
8578 }
8579
8580 write_nic_memory(priv->net_dev, addr, len, firmware_data);
James Ketrenosee8e3652005-09-14 09:47:29 -05008581 firmware_data += len;
James Ketrenos2c86c272005-03-23 17:32:29 -06008582 firmware_data_left -= len;
8583 }
8584
8585 return 0;
8586}
8587
8588struct symbol_alive_response {
8589 u8 cmd_id;
8590 u8 seq_num;
8591 u8 ucode_rev;
8592 u8 eeprom_valid;
8593 u16 valid_flags;
8594 u8 IEEE_addr[6];
8595 u16 flags;
8596 u16 pcb_rev;
8597 u16 clock_settle_time; // 1us LSB
8598 u16 powerup_settle_time; // 1us LSB
8599 u16 hop_settle_time; // 1us LSB
8600 u8 date[3]; // month, day, year
8601 u8 time[2]; // hours, minutes
8602 u8 ucode_valid;
8603};
8604
Jiri Bencc4aee8c2005-08-25 20:04:43 -04008605static int ipw2100_ucode_download(struct ipw2100_priv *priv,
8606 struct ipw2100_fw *fw)
James Ketrenos2c86c272005-03-23 17:32:29 -06008607{
8608 struct net_device *dev = priv->net_dev;
8609 const unsigned char *microcode_data = fw->uc.data;
8610 unsigned int microcode_data_left = fw->uc.size;
Francois Romieu9b717072012-03-24 11:37:16 +01008611 void __iomem *reg = priv->ioaddr;
James Ketrenos2c86c272005-03-23 17:32:29 -06008612
8613 struct symbol_alive_response response;
8614 int i, j;
8615 u8 data;
8616
8617 /* Symbol control */
8618 write_nic_word(dev, IPW2100_CONTROL_REG, 0x703);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008619 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008620 write_nic_word(dev, IPW2100_CONTROL_REG, 0x707);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008621 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008622
8623 /* HW config */
8624 write_nic_byte(dev, 0x210014, 0x72); /* fifo width =16 */
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008625 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008626 write_nic_byte(dev, 0x210014, 0x72); /* fifo width =16 */
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008627 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008628
8629 /* EN_CS_ACCESS bit to reset control store pointer */
8630 write_nic_byte(dev, 0x210000, 0x40);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008631 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008632 write_nic_byte(dev, 0x210000, 0x0);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008633 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008634 write_nic_byte(dev, 0x210000, 0x40);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008635 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008636
8637 /* copy microcode from buffer into Symbol */
8638
8639 while (microcode_data_left > 0) {
8640 write_nic_byte(dev, 0x210010, *microcode_data++);
8641 write_nic_byte(dev, 0x210010, *microcode_data++);
8642 microcode_data_left -= 2;
8643 }
8644
8645 /* EN_CS_ACCESS bit to reset the control store pointer */
8646 write_nic_byte(dev, 0x210000, 0x0);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008647 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008648
8649 /* Enable System (Reg 0)
8650 * first enable causes garbage in RX FIFO */
8651 write_nic_byte(dev, 0x210000, 0x0);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008652 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008653 write_nic_byte(dev, 0x210000, 0x80);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008654 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008655
8656 /* Reset External Baseband Reg */
8657 write_nic_word(dev, IPW2100_CONTROL_REG, 0x703);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008658 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008659 write_nic_word(dev, IPW2100_CONTROL_REG, 0x707);
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008660 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008661
8662 /* HW Config (Reg 5) */
8663 write_nic_byte(dev, 0x210014, 0x72); // fifo width =16
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008664 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008665 write_nic_byte(dev, 0x210014, 0x72); // fifo width =16
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008666 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008667
8668 /* Enable System (Reg 0)
8669 * second enable should be OK */
8670 write_nic_byte(dev, 0x210000, 0x00); // clear enable system
viro@ftp.linux.org.uk2be041a2005-09-05 03:26:08 +01008671 readl(reg);
James Ketrenos2c86c272005-03-23 17:32:29 -06008672 write_nic_byte(dev, 0x210000, 0x80); // set enable system
8673
8674 /* check Symbol is enabled - upped this from 5 as it wasn't always
8675 * catching the update */
8676 for (i = 0; i < 10; i++) {
8677 udelay(10);
8678
8679 /* check Dino is enabled bit */
8680 read_nic_byte(dev, 0x210000, &data);
8681 if (data & 0x1)
8682 break;
8683 }
8684
8685 if (i == 10) {
Jiri Benc797b4f72005-08-25 20:03:27 -04008686 printk(KERN_ERR DRV_NAME ": %s: Error initializing Symbol\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06008687 dev->name);
8688 return -EIO;
8689 }
8690
8691 /* Get Symbol alive response */
8692 for (i = 0; i < 30; i++) {
8693 /* Read alive response structure */
8694 for (j = 0;
James Ketrenosee8e3652005-09-14 09:47:29 -05008695 j < (sizeof(struct symbol_alive_response) >> 1); j++)
8696 read_nic_word(dev, 0x210004, ((u16 *) & response) + j);
James Ketrenos2c86c272005-03-23 17:32:29 -06008697
James Ketrenosee8e3652005-09-14 09:47:29 -05008698 if ((response.cmd_id == 1) && (response.ucode_valid == 0x1))
James Ketrenos2c86c272005-03-23 17:32:29 -06008699 break;
8700 udelay(10);
8701 }
8702
8703 if (i == 30) {
James Ketrenosee8e3652005-09-14 09:47:29 -05008704 printk(KERN_ERR DRV_NAME
8705 ": %s: No response from Symbol - hw not alive\n",
James Ketrenos2c86c272005-03-23 17:32:29 -06008706 dev->name);
James Ketrenosee8e3652005-09-14 09:47:29 -05008707 printk_buf(IPW_DL_ERROR, (u8 *) & response, sizeof(response));
James Ketrenos2c86c272005-03-23 17:32:29 -06008708 return -EIO;
8709 }
8710
8711 return 0;
8712}