blob: 417aea5e01cd6b08fac4f235b8443d55678d6e9b [file] [log] [blame]
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001/* src/prism2/driver/prism2sta.c
2*
3* Implements the station functionality for prism2
4*
5* Copyright (C) 1999 AbsoluteValue Systems, Inc. All Rights Reserved.
6* --------------------------------------------------------------------
7*
8* linux-wlan
9*
10* The contents of this file are subject to the Mozilla Public
11* License Version 1.1 (the "License"); you may not use this file
12* except in compliance with the License. You may obtain a copy of
13* the License at http://www.mozilla.org/MPL/
14*
15* Software distributed under the License is distributed on an "AS
16* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
17* implied. See the License for the specific language governing
18* rights and limitations under the License.
19*
20* Alternatively, the contents of this file may be used under the
21* terms of the GNU Public License version 2 (the "GPL"), in which
22* case the provisions of the GPL are applicable instead of the
23* above. If you wish to allow the use of your version of this file
24* only under the terms of the GPL and not to allow others to use
25* your version of this file under the MPL, indicate your decision
26* by deleting the provisions above and replace them with the notice
27* and other provisions required by the GPL. If you do not delete
28* the provisions above, a recipient may use your version of this
29* file under either the MPL or the GPL.
30*
31* --------------------------------------------------------------------
32*
33* Inquiries regarding the linux-wlan Open Source project can be
34* made directly to:
35*
36* AbsoluteValue Systems Inc.
37* info@linux-wlan.com
38* http://www.linux-wlan.com
39*
40* --------------------------------------------------------------------
41*
42* Portions of the development of this software were funded by
43* Intersil Corporation as part of PRISM(R) chipset product development.
44*
45* --------------------------------------------------------------------
46*
47* This file implements the module and linux pcmcia routines for the
48* prism2 driver.
49*
50* --------------------------------------------------------------------
51*/
52
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -070053#include <linux/module.h>
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -070054#include <linux/moduleparam.h>
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -070055#include <linux/kernel.h>
56#include <linux/sched.h>
57#include <linux/types.h>
58#include <linux/init.h>
59#include <linux/slab.h>
60#include <linux/wireless.h>
61#include <linux/netdevice.h>
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -070062#include <linux/workqueue.h>
Moritz Muehlenhoffae262302009-01-21 22:00:45 +010063#include <linux/byteorder/generic.h>
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +010064#include <linux/ctype.h>
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -070065
Andrew Elwellef1a0ed2010-02-18 23:56:12 +010066#include <linux/io.h>
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -070067#include <linux/delay.h>
68#include <asm/byteorder.h>
69#include <linux/if_arp.h>
Moritz Muehlenhoff28b17a42009-01-21 22:00:41 +010070#include <linux/if_ether.h>
Moritz Muehlenhoff7f6e0e42009-01-25 21:54:55 +010071#include <linux/bitops.h>
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -070072
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -070073#include "p80211types.h"
74#include "p80211hdr.h"
75#include "p80211mgmt.h"
76#include "p80211conv.h"
77#include "p80211msg.h"
78#include "p80211netdev.h"
79#include "p80211req.h"
80#include "p80211metadef.h"
81#include "p80211metastruct.h"
82#include "hfa384x.h"
83#include "prism2mgmt.h"
84
Moritz Muehlenhoff16910552009-02-01 13:39:16 +010085/* Create a string of printable chars from something that might not be */
86/* It's recommended that the str be 4*len + 1 bytes long */
87#define wlan_mkprintstr(buf, buflen, str, strlen) \
88{ \
89 int i = 0; \
90 int j = 0; \
91 memset(str, 0, (strlen)); \
92 for (i = 0; i < (buflen); i++) { \
Moritz Muehlenhofff3422882009-02-08 02:21:04 +010093 if (isprint((buf)[i])) { \
Moritz Muehlenhoff16910552009-02-01 13:39:16 +010094 (str)[j] = (buf)[i]; \
95 j++; \
96 } else { \
97 (str)[j] = '\\'; \
98 (str)[j+1] = 'x'; \
Andy Shevchenkocfa54892010-07-22 19:57:11 +030099 (str)[j+2] = hex_asc_hi((buf)[i]); \
100 (str)[j+3] = hex_asc_lo((buf)[i]); \
Moritz Muehlenhoff16910552009-02-01 13:39:16 +0100101 j += 4; \
102 } \
103 } \
104}
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700105
Solomon Peachye02c69b2008-10-29 10:42:59 -0400106static char *dev_info = "prism2_usb";
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700107static wlandevice_t *create_wlan(void);
108
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100109int prism2_reset_holdtime = 30; /* Reset hold time in ms */
110int prism2_reset_settletime = 100; /* Reset settle time in ms */
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700111
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530112static int prism2_doreset; /* Do a reset at init? */
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700113
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100114module_param(prism2_doreset, int, 0644);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700115MODULE_PARM_DESC(prism2_doreset, "Issue a reset on initialization");
116
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100117module_param(prism2_reset_holdtime, int, 0644);
118MODULE_PARM_DESC(prism2_reset_holdtime, "reset hold time in ms");
119module_param(prism2_reset_settletime, int, 0644);
120MODULE_PARM_DESC(prism2_reset_settletime, "reset settle time in ms");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700121
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700122MODULE_LICENSE("Dual MPL/GPL");
123
Karl Reltoncb3126e2010-06-03 23:04:06 +0100124void prism2_connect_result(wlandevice_t *wlandev, u8 failed);
125void prism2_disconnected(wlandevice_t *wlandev);
126void prism2_roamed(wlandevice_t *wlandev);
127
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530128static int prism2sta_open(wlandevice_t *wlandev);
129static int prism2sta_close(wlandevice_t *wlandev);
130static void prism2sta_reset(wlandevice_t *wlandev);
131static int prism2sta_txframe(wlandevice_t *wlandev, struct sk_buff *skb,
Edgardo Hames93df38e2010-07-30 22:51:55 -0300132 union p80211_hdr *p80211_hdr,
Edgardo Hames51e48962010-07-31 13:06:52 -0300133 struct p80211_metawep *p80211_wep);
Edgardo Hames3d049432010-08-02 17:17:17 -0300134static int prism2sta_mlmerequest(wlandevice_t *wlandev, struct p80211msg *msg);
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530135static int prism2sta_getcardinfo(wlandevice_t *wlandev);
136static int prism2sta_globalsetup(wlandevice_t *wlandev);
137static int prism2sta_setmulticast(wlandevice_t *wlandev, netdevice_t *dev);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700138
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530139static void prism2sta_inf_handover(wlandevice_t *wlandev,
140 hfa384x_InfFrame_t *inf);
141static void prism2sta_inf_tallies(wlandevice_t *wlandev,
142 hfa384x_InfFrame_t *inf);
143static void prism2sta_inf_hostscanresults(wlandevice_t *wlandev,
144 hfa384x_InfFrame_t *inf);
145static void prism2sta_inf_scanresults(wlandevice_t *wlandev,
146 hfa384x_InfFrame_t *inf);
147static void prism2sta_inf_chinforesults(wlandevice_t *wlandev,
148 hfa384x_InfFrame_t *inf);
149static void prism2sta_inf_linkstatus(wlandevice_t *wlandev,
150 hfa384x_InfFrame_t *inf);
151static void prism2sta_inf_assocstatus(wlandevice_t *wlandev,
152 hfa384x_InfFrame_t *inf);
153static void prism2sta_inf_authreq(wlandevice_t *wlandev,
154 hfa384x_InfFrame_t *inf);
155static void prism2sta_inf_authreq_defer(wlandevice_t *wlandev,
156 hfa384x_InfFrame_t *inf);
157static void prism2sta_inf_psusercnt(wlandevice_t *wlandev,
158 hfa384x_InfFrame_t *inf);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700159
160/*----------------------------------------------------------------
161* prism2sta_open
162*
163* WLAN device open method. Called from p80211netdev when kernel
164* device open (start) method is called in response to the
165* SIOCSIIFFLAGS ioctl changing the flags bit IFF_UP
166* from clear to set.
167*
168* Arguments:
169* wlandev wlan device structure
170*
171* Returns:
172* 0 success
173* >0 f/w reported error
174* <0 driver reported error
175*
176* Side effects:
177*
178* Call context:
179* process thread
180----------------------------------------------------------------*/
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530181static int prism2sta_open(wlandevice_t *wlandev)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700182{
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700183 /* We don't currently have to do anything else.
184 * The setup of the MAC should be subsequently completed via
185 * the mlme commands.
186 * Higher layers know we're ready from dev->start==1 and
187 * dev->tbusy==0. Our rx path knows to pass up received/
188 * frames because of dev->flags&IFF_UP is true.
189 */
190
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700191 return 0;
192}
193
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700194/*----------------------------------------------------------------
195* prism2sta_close
196*
197* WLAN device close method. Called from p80211netdev when kernel
198* device close method is called in response to the
199* SIOCSIIFFLAGS ioctl changing the flags bit IFF_UP
200* from set to clear.
201*
202* Arguments:
203* wlandev wlan device structure
204*
205* Returns:
206* 0 success
207* >0 f/w reported error
208* <0 driver reported error
209*
210* Side effects:
211*
212* Call context:
213* process thread
214----------------------------------------------------------------*/
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530215static int prism2sta_close(wlandevice_t *wlandev)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700216{
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700217 /* We don't currently have to do anything else.
218 * Higher layers know we're not ready from dev->start==0 and
219 * dev->tbusy==1. Our rx path knows to not pass up received
220 * frames because of dev->flags&IFF_UP is false.
221 */
222
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700223 return 0;
224}
225
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700226/*----------------------------------------------------------------
227* prism2sta_reset
228*
229* Not currently implented.
230*
231* Arguments:
232* wlandev wlan device structure
233* none
234*
235* Returns:
236* nothing
237*
238* Side effects:
239*
240* Call context:
241* process thread
242----------------------------------------------------------------*/
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530243static void prism2sta_reset(wlandevice_t *wlandev)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700244{
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700245 return;
246}
247
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700248/*----------------------------------------------------------------
249* prism2sta_txframe
250*
251* Takes a frame from p80211 and queues it for transmission.
252*
253* Arguments:
254* wlandev wlan device structure
255* pb packet buffer struct. Contains an 802.11
256* data frame.
257* p80211_hdr points to the 802.11 header for the packet.
258* Returns:
259* 0 Success and more buffs available
260* 1 Success but no more buffs
261* 2 Allocation failure
262* 4 Buffer full or queue busy
263*
264* Side effects:
265*
266* Call context:
267* process thread
268----------------------------------------------------------------*/
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530269static int prism2sta_txframe(wlandevice_t *wlandev, struct sk_buff *skb,
Edgardo Hames93df38e2010-07-30 22:51:55 -0300270 union p80211_hdr *p80211_hdr,
Edgardo Hames51e48962010-07-31 13:06:52 -0300271 struct p80211_metawep *p80211_wep)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700272{
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100273 hfa384x_t *hw = (hfa384x_t *) wlandev->priv;
274 int result;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700275
276 /* If necessary, set the 802.11 WEP bit */
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100277 if ((wlandev->hostwep & (HOSTWEP_PRIVACYINVOKED | HOSTWEP_ENCRYPT)) ==
278 HOSTWEP_PRIVACYINVOKED) {
Moritz Muehlenhoffae262302009-01-21 22:00:45 +0100279 p80211_hdr->a3.fc |= cpu_to_le16(WLAN_SET_FC_ISWEP(1));
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700280 }
281
282 result = hfa384x_drvr_txframe(hw, skb, p80211_hdr, p80211_wep);
283
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700284 return result;
285}
286
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700287/*----------------------------------------------------------------
288* prism2sta_mlmerequest
289*
290* wlan command message handler. All we do here is pass the message
291* over to the prism2sta_mgmt_handler.
292*
293* Arguments:
294* wlandev wlan device structure
295* msg wlan command message
296* Returns:
297* 0 success
298* <0 successful acceptance of message, but we're
299* waiting for an async process to finish before
300* we're done with the msg. When the asynch
301* process is done, we'll call the p80211
302* function p80211req_confirm() .
303* >0 An error occurred while we were handling
304* the message.
305*
306* Side effects:
307*
308* Call context:
309* process thread
310----------------------------------------------------------------*/
Edgardo Hames3d049432010-08-02 17:17:17 -0300311static int prism2sta_mlmerequest(wlandevice_t *wlandev, struct p80211msg *msg)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700312{
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100313 hfa384x_t *hw = (hfa384x_t *) wlandev->priv;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700314
315 int result = 0;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700316
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100317 switch (msg->msgcode) {
318 case DIDmsg_dot11req_mibget:
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +0100319 pr_debug("Received mibget request\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700320 result = prism2mgmt_mibset_mibget(wlandev, msg);
321 break;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100322 case DIDmsg_dot11req_mibset:
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +0100323 pr_debug("Received mibset request\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700324 result = prism2mgmt_mibset_mibget(wlandev, msg);
325 break;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100326 case DIDmsg_dot11req_scan:
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +0100327 pr_debug("Received scan request\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700328 result = prism2mgmt_scan(wlandev, msg);
329 break;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100330 case DIDmsg_dot11req_scan_results:
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +0100331 pr_debug("Received scan_results request\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700332 result = prism2mgmt_scan_results(wlandev, msg);
333 break;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100334 case DIDmsg_dot11req_start:
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +0100335 pr_debug("Received mlme start request\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700336 result = prism2mgmt_start(wlandev, msg);
337 break;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100338 /*
339 * Prism2 specific messages
340 */
341 case DIDmsg_p2req_readpda:
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +0100342 pr_debug("Received mlme readpda request\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700343 result = prism2mgmt_readpda(wlandev, msg);
344 break;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100345 case DIDmsg_p2req_ramdl_state:
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +0100346 pr_debug("Received mlme ramdl_state request\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700347 result = prism2mgmt_ramdl_state(wlandev, msg);
348 break;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100349 case DIDmsg_p2req_ramdl_write:
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +0100350 pr_debug("Received mlme ramdl_write request\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700351 result = prism2mgmt_ramdl_write(wlandev, msg);
352 break;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100353 case DIDmsg_p2req_flashdl_state:
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +0100354 pr_debug("Received mlme flashdl_state request\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700355 result = prism2mgmt_flashdl_state(wlandev, msg);
356 break;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100357 case DIDmsg_p2req_flashdl_write:
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +0100358 pr_debug("Received mlme flashdl_write request\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700359 result = prism2mgmt_flashdl_write(wlandev, msg);
360 break;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100361 /*
362 * Linux specific messages
363 */
364 case DIDmsg_lnxreq_hostwep:
365 break; /* ignore me. */
366 case DIDmsg_lnxreq_ifstate:
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700367 {
Edgardo Hamesb6bb56e2010-08-02 16:20:39 -0300368 struct p80211msg_lnxreq_ifstate *ifstatemsg;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100369 pr_debug("Received mlme ifstate request\n");
Edgardo Hamesb6bb56e2010-08-02 16:20:39 -0300370 ifstatemsg = (struct p80211msg_lnxreq_ifstate *) msg;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100371 result =
372 prism2sta_ifstate(wlandev,
373 ifstatemsg->ifstate.data);
374 ifstatemsg->resultcode.status =
375 P80211ENUM_msgitem_status_data_ok;
376 ifstatemsg->resultcode.data = result;
377 result = 0;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700378 }
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100379 break;
380 case DIDmsg_lnxreq_wlansniff:
381 pr_debug("Received mlme wlansniff request\n");
382 result = prism2mgmt_wlansniff(wlandev, msg);
383 break;
384 case DIDmsg_lnxreq_autojoin:
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +0100385 pr_debug("Received mlme autojoin request\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700386 result = prism2mgmt_autojoin(wlandev, msg);
387 break;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100388 case DIDmsg_lnxreq_commsquality:{
Edgardo Hamesb6bb56e2010-08-02 16:20:39 -0300389 struct p80211msg_lnxreq_commsquality *qualmsg;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700390
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100391 pr_debug("Received commsquality request\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700392
Edgardo Hamesb6bb56e2010-08-02 16:20:39 -0300393 qualmsg = (struct p80211msg_lnxreq_commsquality *) msg;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700394
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100395 qualmsg->link.status =
396 P80211ENUM_msgitem_status_data_ok;
397 qualmsg->level.status =
398 P80211ENUM_msgitem_status_data_ok;
399 qualmsg->noise.status =
400 P80211ENUM_msgitem_status_data_ok;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700401
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530402 qualmsg->link.data = le16_to_cpu(hw->qual.CQ_currBSS);
403 qualmsg->level.data = le16_to_cpu(hw->qual.ASL_currBSS);
404 qualmsg->noise.data = le16_to_cpu(hw->qual.ANL_currFC);
Karl Reltoncb3126e2010-06-03 23:04:06 +0100405 qualmsg->txrate.data = hw->txrate;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700406
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100407 break;
408 }
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700409 default:
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100410 printk(KERN_WARNING "Unknown mgmt request message 0x%08x",
411 msg->msgcode);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700412 break;
413 }
414
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700415 return result;
416}
417
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700418/*----------------------------------------------------------------
419* prism2sta_ifstate
420*
421* Interface state. This is the primary WLAN interface enable/disable
422* handler. Following the driver/load/deviceprobe sequence, this
423* function must be called with a state of "enable" before any other
424* commands will be accepted.
425*
426* Arguments:
427* wlandev wlan device structure
428* msgp ptr to msg buffer
429*
430* Returns:
Christos Tzoumakisf9bd6492010-05-07 06:17:24 +0300431* A p80211 message resultcode value.
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700432*
433* Side effects:
434*
435* Call context:
436* process thread (usually)
437* interrupt
438----------------------------------------------------------------*/
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530439u32 prism2sta_ifstate(wlandevice_t *wlandev, u32 ifstate)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700440{
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100441 hfa384x_t *hw = (hfa384x_t *) wlandev->priv;
442 u32 result;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700443
444 result = P80211ENUM_resultcode_implementation_failure;
445
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +0100446 pr_debug("Current MSD state(%d), requesting(%d)\n",
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530447 wlandev->msdstate, ifstate);
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100448 switch (ifstate) {
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700449 case P80211ENUM_ifstate_fwload:
450 switch (wlandev->msdstate) {
451 case WLAN_MSD_HWPRESENT:
452 wlandev->msdstate = WLAN_MSD_FWLOAD_PENDING;
453 /*
454 * Initialize the device+driver sufficiently
455 * for firmware loading.
456 */
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530457 result = hfa384x_drvr_start(hw);
458 if (result) {
Moritz Muehlenhoffedbd6062009-01-25 21:55:00 +0100459 printk(KERN_ERR
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100460 "hfa384x_drvr_start() failed,"
461 "result=%d\n", (int)result);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700462 result =
Christos Tzoumakisf9bd6492010-05-07 06:17:24 +0300463 P80211ENUM_resultcode_implementation_failure;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700464 wlandev->msdstate = WLAN_MSD_HWPRESENT;
465 break;
466 }
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700467 wlandev->msdstate = WLAN_MSD_FWLOAD;
468 result = P80211ENUM_resultcode_success;
469 break;
470 case WLAN_MSD_FWLOAD:
471 hfa384x_cmd_initialize(hw);
472 result = P80211ENUM_resultcode_success;
473 break;
474 case WLAN_MSD_RUNNING:
Moritz Muehlenhoff9b9556e2009-01-25 21:55:01 +0100475 printk(KERN_WARNING
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100476 "Cannot enter fwload state from enable state,"
477 "you must disable first.\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700478 result = P80211ENUM_resultcode_invalid_parameters;
479 break;
480 case WLAN_MSD_HWFAIL:
481 default:
482 /* probe() had a problem or the msdstate contains
483 * an unrecognized value, there's nothing we can do.
484 */
485 result = P80211ENUM_resultcode_implementation_failure;
486 break;
487 }
488 break;
489 case P80211ENUM_ifstate_enable:
490 switch (wlandev->msdstate) {
491 case WLAN_MSD_HWPRESENT:
492 case WLAN_MSD_FWLOAD:
493 wlandev->msdstate = WLAN_MSD_RUNNING_PENDING;
494 /* Initialize the device+driver for full
495 * operation. Note that this might me an FWLOAD to
496 * to RUNNING transition so we must not do a chip
497 * or board level reset. Note that on failure,
498 * the MSD state is set to HWPRESENT because we
499 * can't make any assumptions about the state
500 * of the hardware or a previous firmware load.
501 */
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530502 result = hfa384x_drvr_start(hw);
503 if (result) {
Moritz Muehlenhoffedbd6062009-01-25 21:55:00 +0100504 printk(KERN_ERR
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100505 "hfa384x_drvr_start() failed,"
506 "result=%d\n", (int)result);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700507 result =
Christos Tzoumakisf9bd6492010-05-07 06:17:24 +0300508 P80211ENUM_resultcode_implementation_failure;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700509 wlandev->msdstate = WLAN_MSD_HWPRESENT;
510 break;
511 }
512
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530513 result = prism2sta_getcardinfo(wlandev);
514 if (result) {
Moritz Muehlenhoffedbd6062009-01-25 21:55:00 +0100515 printk(KERN_ERR
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100516 "prism2sta_getcardinfo() failed,"
517 "result=%d\n", (int)result);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700518 result =
Christos Tzoumakisf9bd6492010-05-07 06:17:24 +0300519 P80211ENUM_resultcode_implementation_failure;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700520 hfa384x_drvr_stop(hw);
521 wlandev->msdstate = WLAN_MSD_HWPRESENT;
522 break;
523 }
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530524 result = prism2sta_globalsetup(wlandev);
525 if (result) {
Moritz Muehlenhoffedbd6062009-01-25 21:55:00 +0100526 printk(KERN_ERR
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100527 "prism2sta_globalsetup() failed,"
528 "result=%d\n", (int)result);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700529 result =
Christos Tzoumakisf9bd6492010-05-07 06:17:24 +0300530 P80211ENUM_resultcode_implementation_failure;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700531 hfa384x_drvr_stop(hw);
532 wlandev->msdstate = WLAN_MSD_HWPRESENT;
533 break;
534 }
535 wlandev->msdstate = WLAN_MSD_RUNNING;
536 hw->join_ap = 0;
537 hw->join_retries = 60;
538 result = P80211ENUM_resultcode_success;
539 break;
540 case WLAN_MSD_RUNNING:
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100541 /* Do nothing, we're already in this state. */
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700542 result = P80211ENUM_resultcode_success;
543 break;
544 case WLAN_MSD_HWFAIL:
545 default:
546 /* probe() had a problem or the msdstate contains
547 * an unrecognized value, there's nothing we can do.
548 */
549 result = P80211ENUM_resultcode_implementation_failure;
550 break;
551 }
552 break;
553 case P80211ENUM_ifstate_disable:
554 switch (wlandev->msdstate) {
555 case WLAN_MSD_HWPRESENT:
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100556 /* Do nothing, we're already in this state. */
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700557 result = P80211ENUM_resultcode_success;
558 break;
559 case WLAN_MSD_FWLOAD:
560 case WLAN_MSD_RUNNING:
561 wlandev->msdstate = WLAN_MSD_HWPRESENT_PENDING;
562 /*
563 * TODO: Shut down the MAC completely. Here a chip
564 * or board level reset is probably called for.
565 * After a "disable" _all_ results are lost, even
566 * those from a fwload.
567 */
568 if (!wlandev->hwremoved)
569 netif_carrier_off(wlandev->netdev);
570
571 hfa384x_drvr_stop(hw);
572
573 wlandev->macmode = WLAN_MACMODE_NONE;
574 wlandev->msdstate = WLAN_MSD_HWPRESENT;
575 result = P80211ENUM_resultcode_success;
576 break;
577 case WLAN_MSD_HWFAIL:
578 default:
579 /* probe() had a problem or the msdstate contains
580 * an unrecognized value, there's nothing we can do.
581 */
582 result = P80211ENUM_resultcode_implementation_failure;
583 break;
584 }
585 break;
586 default:
587 result = P80211ENUM_resultcode_invalid_parameters;
588 break;
589 }
590
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700591 return result;
592}
593
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700594/*----------------------------------------------------------------
595* prism2sta_getcardinfo
596*
597* Collect the NICID, firmware version and any other identifiers
598* we'd like to have in host-side data structures.
599*
600* Arguments:
601* wlandev wlan device structure
602*
603* Returns:
604* 0 success
605* >0 f/w reported error
606* <0 driver reported error
607*
608* Side effects:
609*
610* Call context:
611* Either.
612----------------------------------------------------------------*/
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530613static int prism2sta_getcardinfo(wlandevice_t *wlandev)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700614{
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100615 int result = 0;
616 hfa384x_t *hw = (hfa384x_t *) wlandev->priv;
617 u16 temp;
618 u8 snum[HFA384x_RID_NICSERIALNUMBER_LEN];
619 char pstr[(HFA384x_RID_NICSERIALNUMBER_LEN * 4) + 1];
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700620
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700621 /* Collect version and compatibility info */
622 /* Some are critical, some are not */
623 /* NIC identity */
624 result = hfa384x_drvr_getconfig(hw, HFA384x_RID_NICIDENTITY,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100625 &hw->ident_nic,
626 sizeof(hfa384x_compident_t));
627 if (result) {
Moritz Muehlenhoffedbd6062009-01-25 21:55:00 +0100628 printk(KERN_ERR "Failed to retrieve NICIDENTITY\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700629 goto failed;
630 }
631
632 /* get all the nic id fields in host byte order */
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +0100633 hw->ident_nic.id = le16_to_cpu(hw->ident_nic.id);
634 hw->ident_nic.variant = le16_to_cpu(hw->ident_nic.variant);
635 hw->ident_nic.major = le16_to_cpu(hw->ident_nic.major);
636 hw->ident_nic.minor = le16_to_cpu(hw->ident_nic.minor);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700637
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100638 printk(KERN_INFO "ident: nic h/w: id=0x%02x %d.%d.%d\n",
639 hw->ident_nic.id, hw->ident_nic.major,
640 hw->ident_nic.minor, hw->ident_nic.variant);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700641
642 /* Primary f/w identity */
643 result = hfa384x_drvr_getconfig(hw, HFA384x_RID_PRIIDENTITY,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100644 &hw->ident_pri_fw,
645 sizeof(hfa384x_compident_t));
646 if (result) {
Moritz Muehlenhoffedbd6062009-01-25 21:55:00 +0100647 printk(KERN_ERR "Failed to retrieve PRIIDENTITY\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700648 goto failed;
649 }
650
651 /* get all the private fw id fields in host byte order */
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +0100652 hw->ident_pri_fw.id = le16_to_cpu(hw->ident_pri_fw.id);
653 hw->ident_pri_fw.variant = le16_to_cpu(hw->ident_pri_fw.variant);
654 hw->ident_pri_fw.major = le16_to_cpu(hw->ident_pri_fw.major);
655 hw->ident_pri_fw.minor = le16_to_cpu(hw->ident_pri_fw.minor);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700656
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100657 printk(KERN_INFO "ident: pri f/w: id=0x%02x %d.%d.%d\n",
658 hw->ident_pri_fw.id, hw->ident_pri_fw.major,
659 hw->ident_pri_fw.minor, hw->ident_pri_fw.variant);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700660
661 /* Station (Secondary?) f/w identity */
662 result = hfa384x_drvr_getconfig(hw, HFA384x_RID_STAIDENTITY,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100663 &hw->ident_sta_fw,
664 sizeof(hfa384x_compident_t));
665 if (result) {
Moritz Muehlenhoffedbd6062009-01-25 21:55:00 +0100666 printk(KERN_ERR "Failed to retrieve STAIDENTITY\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700667 goto failed;
668 }
669
670 if (hw->ident_nic.id < 0x8000) {
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100671 printk(KERN_ERR
672 "FATAL: Card is not an Intersil Prism2/2.5/3\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700673 result = -1;
674 goto failed;
675 }
676
677 /* get all the station fw id fields in host byte order */
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +0100678 hw->ident_sta_fw.id = le16_to_cpu(hw->ident_sta_fw.id);
679 hw->ident_sta_fw.variant = le16_to_cpu(hw->ident_sta_fw.variant);
680 hw->ident_sta_fw.major = le16_to_cpu(hw->ident_sta_fw.major);
681 hw->ident_sta_fw.minor = le16_to_cpu(hw->ident_sta_fw.minor);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700682
683 /* strip out the 'special' variant bits */
Moritz Muehlenhoff7f6e0e42009-01-25 21:54:55 +0100684 hw->mm_mods = hw->ident_sta_fw.variant & (BIT(14) | BIT(15));
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100685 hw->ident_sta_fw.variant &= ~((u16) (BIT(14) | BIT(15)));
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700686
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100687 if (hw->ident_sta_fw.id == 0x1f) {
Moritz Muehlenhoff350f2f4b2009-01-25 21:54:57 +0100688 printk(KERN_INFO
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100689 "ident: sta f/w: id=0x%02x %d.%d.%d\n",
690 hw->ident_sta_fw.id, hw->ident_sta_fw.major,
691 hw->ident_sta_fw.minor, hw->ident_sta_fw.variant);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700692 } else {
Moritz Muehlenhoff350f2f4b2009-01-25 21:54:57 +0100693 printk(KERN_INFO
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100694 "ident: ap f/w: id=0x%02x %d.%d.%d\n",
695 hw->ident_sta_fw.id, hw->ident_sta_fw.major,
696 hw->ident_sta_fw.minor, hw->ident_sta_fw.variant);
Moritz Muehlenhoffedbd6062009-01-25 21:55:00 +0100697 printk(KERN_ERR "Unsupported Tertiary AP firmeare loaded!\n");
Solomon Peachy5db8dcc2008-10-27 11:14:02 -0400698 goto failed;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700699 }
700
701 /* Compatibility range, Modem supplier */
702 result = hfa384x_drvr_getconfig(hw, HFA384x_RID_MFISUPRANGE,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100703 &hw->cap_sup_mfi,
704 sizeof(hfa384x_caplevel_t));
705 if (result) {
Moritz Muehlenhoffedbd6062009-01-25 21:55:00 +0100706 printk(KERN_ERR "Failed to retrieve MFISUPRANGE\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700707 goto failed;
708 }
709
710 /* get all the Compatibility range, modem interface supplier
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100711 fields in byte order */
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +0100712 hw->cap_sup_mfi.role = le16_to_cpu(hw->cap_sup_mfi.role);
713 hw->cap_sup_mfi.id = le16_to_cpu(hw->cap_sup_mfi.id);
714 hw->cap_sup_mfi.variant = le16_to_cpu(hw->cap_sup_mfi.variant);
715 hw->cap_sup_mfi.bottom = le16_to_cpu(hw->cap_sup_mfi.bottom);
716 hw->cap_sup_mfi.top = le16_to_cpu(hw->cap_sup_mfi.top);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700717
Moritz Muehlenhoff350f2f4b2009-01-25 21:54:57 +0100718 printk(KERN_INFO
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100719 "MFI:SUP:role=0x%02x:id=0x%02x:var=0x%02x:b/t=%d/%d\n",
720 hw->cap_sup_mfi.role, hw->cap_sup_mfi.id,
721 hw->cap_sup_mfi.variant, hw->cap_sup_mfi.bottom,
722 hw->cap_sup_mfi.top);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700723
724 /* Compatibility range, Controller supplier */
725 result = hfa384x_drvr_getconfig(hw, HFA384x_RID_CFISUPRANGE,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100726 &hw->cap_sup_cfi,
727 sizeof(hfa384x_caplevel_t));
728 if (result) {
Moritz Muehlenhoffedbd6062009-01-25 21:55:00 +0100729 printk(KERN_ERR "Failed to retrieve CFISUPRANGE\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700730 goto failed;
731 }
732
733 /* get all the Compatibility range, controller interface supplier
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100734 fields in byte order */
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +0100735 hw->cap_sup_cfi.role = le16_to_cpu(hw->cap_sup_cfi.role);
736 hw->cap_sup_cfi.id = le16_to_cpu(hw->cap_sup_cfi.id);
737 hw->cap_sup_cfi.variant = le16_to_cpu(hw->cap_sup_cfi.variant);
738 hw->cap_sup_cfi.bottom = le16_to_cpu(hw->cap_sup_cfi.bottom);
739 hw->cap_sup_cfi.top = le16_to_cpu(hw->cap_sup_cfi.top);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700740
Moritz Muehlenhoff350f2f4b2009-01-25 21:54:57 +0100741 printk(KERN_INFO
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100742 "CFI:SUP:role=0x%02x:id=0x%02x:var=0x%02x:b/t=%d/%d\n",
743 hw->cap_sup_cfi.role, hw->cap_sup_cfi.id,
744 hw->cap_sup_cfi.variant, hw->cap_sup_cfi.bottom,
745 hw->cap_sup_cfi.top);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700746
747 /* Compatibility range, Primary f/w supplier */
748 result = hfa384x_drvr_getconfig(hw, HFA384x_RID_PRISUPRANGE,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100749 &hw->cap_sup_pri,
750 sizeof(hfa384x_caplevel_t));
751 if (result) {
Moritz Muehlenhoffedbd6062009-01-25 21:55:00 +0100752 printk(KERN_ERR "Failed to retrieve PRISUPRANGE\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700753 goto failed;
754 }
755
756 /* get all the Compatibility range, primary firmware supplier
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100757 fields in byte order */
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +0100758 hw->cap_sup_pri.role = le16_to_cpu(hw->cap_sup_pri.role);
759 hw->cap_sup_pri.id = le16_to_cpu(hw->cap_sup_pri.id);
760 hw->cap_sup_pri.variant = le16_to_cpu(hw->cap_sup_pri.variant);
761 hw->cap_sup_pri.bottom = le16_to_cpu(hw->cap_sup_pri.bottom);
762 hw->cap_sup_pri.top = le16_to_cpu(hw->cap_sup_pri.top);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700763
Moritz Muehlenhoff350f2f4b2009-01-25 21:54:57 +0100764 printk(KERN_INFO
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100765 "PRI:SUP:role=0x%02x:id=0x%02x:var=0x%02x:b/t=%d/%d\n",
766 hw->cap_sup_pri.role, hw->cap_sup_pri.id,
767 hw->cap_sup_pri.variant, hw->cap_sup_pri.bottom,
768 hw->cap_sup_pri.top);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700769
770 /* Compatibility range, Station f/w supplier */
771 result = hfa384x_drvr_getconfig(hw, HFA384x_RID_STASUPRANGE,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100772 &hw->cap_sup_sta,
773 sizeof(hfa384x_caplevel_t));
774 if (result) {
Moritz Muehlenhoffedbd6062009-01-25 21:55:00 +0100775 printk(KERN_ERR "Failed to retrieve STASUPRANGE\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700776 goto failed;
777 }
778
779 /* get all the Compatibility range, station firmware supplier
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100780 fields in byte order */
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +0100781 hw->cap_sup_sta.role = le16_to_cpu(hw->cap_sup_sta.role);
782 hw->cap_sup_sta.id = le16_to_cpu(hw->cap_sup_sta.id);
783 hw->cap_sup_sta.variant = le16_to_cpu(hw->cap_sup_sta.variant);
784 hw->cap_sup_sta.bottom = le16_to_cpu(hw->cap_sup_sta.bottom);
785 hw->cap_sup_sta.top = le16_to_cpu(hw->cap_sup_sta.top);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700786
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100787 if (hw->cap_sup_sta.id == 0x04) {
Moritz Muehlenhoff350f2f4b2009-01-25 21:54:57 +0100788 printk(KERN_INFO
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100789 "STA:SUP:role=0x%02x:id=0x%02x:var=0x%02x:b/t=%d/%d\n",
790 hw->cap_sup_sta.role, hw->cap_sup_sta.id,
791 hw->cap_sup_sta.variant, hw->cap_sup_sta.bottom,
792 hw->cap_sup_sta.top);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700793 } else {
Moritz Muehlenhoff350f2f4b2009-01-25 21:54:57 +0100794 printk(KERN_INFO
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100795 "AP:SUP:role=0x%02x:id=0x%02x:var=0x%02x:b/t=%d/%d\n",
796 hw->cap_sup_sta.role, hw->cap_sup_sta.id,
797 hw->cap_sup_sta.variant, hw->cap_sup_sta.bottom,
798 hw->cap_sup_sta.top);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700799 }
800
801 /* Compatibility range, primary f/w actor, CFI supplier */
802 result = hfa384x_drvr_getconfig(hw, HFA384x_RID_PRI_CFIACTRANGES,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100803 &hw->cap_act_pri_cfi,
804 sizeof(hfa384x_caplevel_t));
805 if (result) {
Moritz Muehlenhoffedbd6062009-01-25 21:55:00 +0100806 printk(KERN_ERR "Failed to retrieve PRI_CFIACTRANGES\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700807 goto failed;
808 }
809
810 /* get all the Compatibility range, primary f/w actor, CFI supplier
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100811 fields in byte order */
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +0100812 hw->cap_act_pri_cfi.role = le16_to_cpu(hw->cap_act_pri_cfi.role);
813 hw->cap_act_pri_cfi.id = le16_to_cpu(hw->cap_act_pri_cfi.id);
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530814 hw->cap_act_pri_cfi.variant = le16_to_cpu(hw->cap_act_pri_cfi.variant);
815 hw->cap_act_pri_cfi.bottom = le16_to_cpu(hw->cap_act_pri_cfi.bottom);
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +0100816 hw->cap_act_pri_cfi.top = le16_to_cpu(hw->cap_act_pri_cfi.top);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700817
Moritz Muehlenhoff350f2f4b2009-01-25 21:54:57 +0100818 printk(KERN_INFO
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100819 "PRI-CFI:ACT:role=0x%02x:id=0x%02x:var=0x%02x:b/t=%d/%d\n",
820 hw->cap_act_pri_cfi.role, hw->cap_act_pri_cfi.id,
821 hw->cap_act_pri_cfi.variant, hw->cap_act_pri_cfi.bottom,
822 hw->cap_act_pri_cfi.top);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700823
824 /* Compatibility range, sta f/w actor, CFI supplier */
825 result = hfa384x_drvr_getconfig(hw, HFA384x_RID_STA_CFIACTRANGES,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100826 &hw->cap_act_sta_cfi,
827 sizeof(hfa384x_caplevel_t));
828 if (result) {
Moritz Muehlenhoffedbd6062009-01-25 21:55:00 +0100829 printk(KERN_ERR "Failed to retrieve STA_CFIACTRANGES\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700830 goto failed;
831 }
832
833 /* get all the Compatibility range, station f/w actor, CFI supplier
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100834 fields in byte order */
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +0100835 hw->cap_act_sta_cfi.role = le16_to_cpu(hw->cap_act_sta_cfi.role);
836 hw->cap_act_sta_cfi.id = le16_to_cpu(hw->cap_act_sta_cfi.id);
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530837 hw->cap_act_sta_cfi.variant = le16_to_cpu(hw->cap_act_sta_cfi.variant);
838 hw->cap_act_sta_cfi.bottom = le16_to_cpu(hw->cap_act_sta_cfi.bottom);
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +0100839 hw->cap_act_sta_cfi.top = le16_to_cpu(hw->cap_act_sta_cfi.top);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700840
Moritz Muehlenhoff350f2f4b2009-01-25 21:54:57 +0100841 printk(KERN_INFO
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100842 "STA-CFI:ACT:role=0x%02x:id=0x%02x:var=0x%02x:b/t=%d/%d\n",
843 hw->cap_act_sta_cfi.role, hw->cap_act_sta_cfi.id,
844 hw->cap_act_sta_cfi.variant, hw->cap_act_sta_cfi.bottom,
845 hw->cap_act_sta_cfi.top);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700846
847 /* Compatibility range, sta f/w actor, MFI supplier */
848 result = hfa384x_drvr_getconfig(hw, HFA384x_RID_STA_MFIACTRANGES,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100849 &hw->cap_act_sta_mfi,
850 sizeof(hfa384x_caplevel_t));
851 if (result) {
Moritz Muehlenhoffedbd6062009-01-25 21:55:00 +0100852 printk(KERN_ERR "Failed to retrieve STA_MFIACTRANGES\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700853 goto failed;
854 }
855
856 /* get all the Compatibility range, station f/w actor, MFI supplier
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100857 fields in byte order */
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +0100858 hw->cap_act_sta_mfi.role = le16_to_cpu(hw->cap_act_sta_mfi.role);
859 hw->cap_act_sta_mfi.id = le16_to_cpu(hw->cap_act_sta_mfi.id);
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530860 hw->cap_act_sta_mfi.variant = le16_to_cpu(hw->cap_act_sta_mfi.variant);
861 hw->cap_act_sta_mfi.bottom = le16_to_cpu(hw->cap_act_sta_mfi.bottom);
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +0100862 hw->cap_act_sta_mfi.top = le16_to_cpu(hw->cap_act_sta_mfi.top);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700863
Moritz Muehlenhoff350f2f4b2009-01-25 21:54:57 +0100864 printk(KERN_INFO
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100865 "STA-MFI:ACT:role=0x%02x:id=0x%02x:var=0x%02x:b/t=%d/%d\n",
866 hw->cap_act_sta_mfi.role, hw->cap_act_sta_mfi.id,
867 hw->cap_act_sta_mfi.variant, hw->cap_act_sta_mfi.bottom,
868 hw->cap_act_sta_mfi.top);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700869
870 /* Serial Number */
871 result = hfa384x_drvr_getconfig(hw, HFA384x_RID_NICSERIALNUMBER,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100872 snum, HFA384x_RID_NICSERIALNUMBER_LEN);
873 if (!result) {
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700874 wlan_mkprintstr(snum, HFA384x_RID_NICSERIALNUMBER_LEN,
875 pstr, sizeof(pstr));
Moritz Muehlenhoff350f2f4b2009-01-25 21:54:57 +0100876 printk(KERN_INFO "Prism2 card SN: %s\n", pstr);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700877 } else {
Moritz Muehlenhoffedbd6062009-01-25 21:55:00 +0100878 printk(KERN_ERR "Failed to retrieve Prism2 Card SN\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700879 goto failed;
880 }
881
882 /* Collect the MAC address */
883 result = hfa384x_drvr_getconfig(hw, HFA384x_RID_CNFOWNMACADDR,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100884 wlandev->netdev->dev_addr, ETH_ALEN);
885 if (result != 0) {
Moritz Muehlenhoffedbd6062009-01-25 21:55:00 +0100886 printk(KERN_ERR "Failed to retrieve mac address\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700887 goto failed;
888 }
889
890 /* short preamble is always implemented */
891 wlandev->nsdcaps |= P80211_NSDCAP_SHORT_PREAMBLE;
892
893 /* find out if hardware wep is implemented */
894 hfa384x_drvr_getconfig16(hw, HFA384x_RID_PRIVACYOPTIMP, &temp);
895 if (temp)
896 wlandev->nsdcaps |= P80211_NSDCAP_HARDWAREWEP;
897
898 /* get the dBm Scaling constant */
899 hfa384x_drvr_getconfig16(hw, HFA384x_RID_CNFDBMADJUST, &temp);
900 hw->dbmadjust = temp;
901
902 /* Only enable scan by default on newer firmware */
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100903 if (HFA384x_FIRMWARE_VERSION(hw->ident_sta_fw.major,
904 hw->ident_sta_fw.minor,
905 hw->ident_sta_fw.variant) <
906 HFA384x_FIRMWARE_VERSION(1, 5, 5)) {
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700907 wlandev->nsdcaps |= P80211_NSDCAP_NOSCAN;
908 }
909
910 /* TODO: Set any internally managed config items */
911
912 goto done;
913failed:
Moritz Muehlenhoffedbd6062009-01-25 21:55:00 +0100914 printk(KERN_ERR "Failed, result=%d\n", result);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700915done:
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700916 return result;
917}
918
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700919/*----------------------------------------------------------------
920* prism2sta_globalsetup
921*
922* Set any global RIDs that we want to set at device activation.
923*
924* Arguments:
925* wlandev wlan device structure
926*
927* Returns:
928* 0 success
929* >0 f/w reported error
930* <0 driver reported error
931*
932* Side effects:
933*
934* Call context:
935* process thread
936----------------------------------------------------------------*/
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530937static int prism2sta_globalsetup(wlandevice_t *wlandev)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700938{
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100939 hfa384x_t *hw = (hfa384x_t *) wlandev->priv;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700940
941 /* Set the maximum frame size */
942 return hfa384x_drvr_setconfig16(hw, HFA384x_RID_CNFMAXDATALEN,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100943 WLAN_DATA_MAXLEN);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700944}
945
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530946static int prism2sta_setmulticast(wlandevice_t *wlandev, netdevice_t *dev)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700947{
948 int result = 0;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100949 hfa384x_t *hw = (hfa384x_t *) wlandev->priv;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700950
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100951 u16 promisc;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700952
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700953 /* If we're not ready, what's the point? */
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100954 if (hw->state != HFA384x_STATE_RUNNING)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700955 goto exit;
956
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100957 if ((dev->flags & (IFF_PROMISC | IFF_ALLMULTI)) != 0)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700958 promisc = P80211ENUM_truth_true;
959 else
960 promisc = P80211ENUM_truth_false;
961
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100962 result =
963 hfa384x_drvr_setconfig16_async(hw, HFA384x_RID_PROMISCMODE,
964 promisc);
965exit:
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700966 return result;
967}
968
969/*----------------------------------------------------------------
970* prism2sta_inf_handover
971*
972* Handles the receipt of a Handover info frame. Should only be present
973* in APs only.
974*
975* Arguments:
976* wlandev wlan device structure
977* inf ptr to info frame (contents in hfa384x order)
978*
979* Returns:
980* nothing
981*
982* Side effects:
983*
984* Call context:
985* interrupt
986----------------------------------------------------------------*/
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530987static void prism2sta_inf_handover(wlandevice_t *wlandev,
988 hfa384x_InfFrame_t *inf)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700989{
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +0100990 pr_debug("received infoframe:HANDOVER (unhandled)\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700991 return;
992}
993
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700994/*----------------------------------------------------------------
995* prism2sta_inf_tallies
996*
997* Handles the receipt of a CommTallies info frame.
998*
999* Arguments:
1000* wlandev wlan device structure
1001* inf ptr to info frame (contents in hfa384x order)
1002*
1003* Returns:
1004* nothing
1005*
1006* Side effects:
1007*
1008* Call context:
1009* interrupt
1010----------------------------------------------------------------*/
Mithlesh Thukral297f06c2009-06-10 19:36:11 +05301011static void prism2sta_inf_tallies(wlandevice_t *wlandev,
1012 hfa384x_InfFrame_t *inf)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001013{
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001014 hfa384x_t *hw = (hfa384x_t *) wlandev->priv;
1015 u16 *src16;
1016 u32 *dst;
1017 u32 *src32;
1018 int i;
1019 int cnt;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001020
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001021 /*
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001022 ** Determine if these are 16-bit or 32-bit tallies, based on the
1023 ** record length of the info record.
1024 */
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001025
Solomon Peachyaaad4302008-10-29 10:42:53 -04001026 cnt = sizeof(hfa384x_CommTallies32_t) / sizeof(u32);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001027 if (inf->framelen > 22) {
Svenne Krap5dd8acc2010-02-14 18:59:00 +01001028 dst = (u32 *) &hw->tallies;
1029 src32 = (u32 *) &inf->info.commtallies32;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001030 for (i = 0; i < cnt; i++, dst++, src32++)
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +01001031 *dst += le32_to_cpu(*src32);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001032 } else {
Svenne Krap5dd8acc2010-02-14 18:59:00 +01001033 dst = (u32 *) &hw->tallies;
1034 src16 = (u16 *) &inf->info.commtallies16;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001035 for (i = 0; i < cnt; i++, dst++, src16++)
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +01001036 *dst += le16_to_cpu(*src16);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001037 }
1038
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001039 return;
1040}
1041
1042/*----------------------------------------------------------------
1043* prism2sta_inf_scanresults
1044*
1045* Handles the receipt of a Scan Results info frame.
1046*
1047* Arguments:
1048* wlandev wlan device structure
1049* inf ptr to info frame (contents in hfa384x order)
1050*
1051* Returns:
1052* nothing
1053*
1054* Side effects:
1055*
1056* Call context:
1057* interrupt
1058----------------------------------------------------------------*/
Mithlesh Thukral297f06c2009-06-10 19:36:11 +05301059static void prism2sta_inf_scanresults(wlandevice_t *wlandev,
1060 hfa384x_InfFrame_t *inf)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001061{
1062
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001063 hfa384x_t *hw = (hfa384x_t *) wlandev->priv;
1064 int nbss;
1065 hfa384x_ScanResult_t *sr = &(inf->info.scanresult);
1066 int i;
1067 hfa384x_JoinRequest_data_t joinreq;
1068 int result;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001069
1070 /* Get the number of results, first in bytes, then in results */
Solomon Peachyaaad4302008-10-29 10:42:53 -04001071 nbss = (inf->framelen * sizeof(u16)) -
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001072 sizeof(inf->infotype) - sizeof(inf->info.scanresult.scanreason);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001073 nbss /= sizeof(hfa384x_ScanResultSub_t);
1074
1075 /* Print em */
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +01001076 pr_debug("rx scanresults, reason=%d, nbss=%d:\n",
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301077 inf->info.scanresult.scanreason, nbss);
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001078 for (i = 0; i < nbss; i++) {
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +01001079 pr_debug("chid=%d anl=%d sl=%d bcnint=%d\n",
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301080 sr->result[i].chid,
1081 sr->result[i].anl,
1082 sr->result[i].sl, sr->result[i].bcnint);
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +01001083 pr_debug(" capinfo=0x%04x proberesp_rate=%d\n",
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301084 sr->result[i].capinfo, sr->result[i].proberesp_rate);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001085 }
1086 /* issue a join request */
1087 joinreq.channel = sr->result[0].chid;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001088 memcpy(joinreq.bssid, sr->result[0].bssid, WLAN_BSSID_LEN);
1089 result = hfa384x_drvr_setconfig(hw,
1090 HFA384x_RID_JOINREQUEST,
1091 &joinreq, HFA384x_RID_JOINREQUEST_LEN);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001092 if (result) {
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001093 printk(KERN_ERR "setconfig(joinreq) failed, result=%d\n",
1094 result);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001095 }
1096
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001097 return;
1098}
1099
1100/*----------------------------------------------------------------
1101* prism2sta_inf_hostscanresults
1102*
1103* Handles the receipt of a Scan Results info frame.
1104*
1105* Arguments:
1106* wlandev wlan device structure
1107* inf ptr to info frame (contents in hfa384x order)
1108*
1109* Returns:
1110* nothing
1111*
1112* Side effects:
1113*
1114* Call context:
1115* interrupt
1116----------------------------------------------------------------*/
Mithlesh Thukral297f06c2009-06-10 19:36:11 +05301117static void prism2sta_inf_hostscanresults(wlandevice_t *wlandev,
1118 hfa384x_InfFrame_t *inf)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001119{
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001120 hfa384x_t *hw = (hfa384x_t *) wlandev->priv;
1121 int nbss;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001122
1123 nbss = (inf->framelen - 3) / 32;
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +01001124 pr_debug("Received %d hostscan results\n", nbss);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001125
1126 if (nbss > 32)
1127 nbss = 32;
1128
Moritz Muehlenhoff7c98f712009-02-09 19:33:42 +01001129 kfree(hw->scanresults);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001130
1131 hw->scanresults = kmalloc(sizeof(hfa384x_InfFrame_t), GFP_ATOMIC);
1132 memcpy(hw->scanresults, inf, sizeof(hfa384x_InfFrame_t));
1133
1134 if (nbss == 0)
1135 nbss = -1;
1136
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001137 /* Notify/wake the sleeping caller. */
1138 hw->scanflag = nbss;
1139 wake_up_interruptible(&hw->cmdq);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001140};
1141
1142/*----------------------------------------------------------------
1143* prism2sta_inf_chinforesults
1144*
1145* Handles the receipt of a Channel Info Results info frame.
1146*
1147* Arguments:
1148* wlandev wlan device structure
1149* inf ptr to info frame (contents in hfa384x order)
1150*
1151* Returns:
1152* nothing
1153*
1154* Side effects:
1155*
1156* Call context:
1157* interrupt
1158----------------------------------------------------------------*/
Mithlesh Thukral297f06c2009-06-10 19:36:11 +05301159static void prism2sta_inf_chinforesults(wlandevice_t *wlandev,
1160 hfa384x_InfFrame_t *inf)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001161{
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001162 hfa384x_t *hw = (hfa384x_t *) wlandev->priv;
1163 unsigned int i, n;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001164
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001165 hw->channel_info.results.scanchannels =
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +01001166 le16_to_cpu(inf->info.chinforesult.scanchannels);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001167
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001168 for (i = 0, n = 0; i < HFA384x_CHINFORESULT_MAX; i++) {
1169 if (hw->channel_info.results.scanchannels & (1 << i)) {
1170 int channel =
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301171 le16_to_cpu(inf->info.chinforesult.result[n].chid) -
1172 1;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001173 hfa384x_ChInfoResultSub_t *chinforesult =
1174 &hw->channel_info.results.result[channel];
1175 chinforesult->chid = channel;
1176 chinforesult->anl =
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301177 le16_to_cpu(inf->info.chinforesult.result[n].anl);
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001178 chinforesult->pnl =
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301179 le16_to_cpu(inf->info.chinforesult.result[n].pnl);
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001180 chinforesult->active =
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +01001181 le16_to_cpu(inf->info.chinforesult.result[n].
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301182 active);
Christos Tzoumakisf9bd6492010-05-07 06:17:24 +03001183 pr_debug
1184 ("chinfo: channel %d, %s level (avg/peak)=%d/%d dB, pcf %d\n",
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301185 channel + 1,
1186 chinforesult->
1187 active & HFA384x_CHINFORESULT_BSSACTIVE ? "signal"
1188 : "noise", chinforesult->anl, chinforesult->pnl,
1189 chinforesult->
1190 active & HFA384x_CHINFORESULT_PCFACTIVE ? 1 : 0);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001191 n++;
1192 }
1193 }
1194 atomic_set(&hw->channel_info.done, 2);
1195
1196 hw->channel_info.count = n;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001197 return;
1198}
1199
1200void prism2sta_processing_defer(struct work_struct *data)
1201{
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001202 hfa384x_t *hw = container_of(data, struct hfa384x, link_bh);
1203 wlandevice_t *wlandev = hw->wlandev;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001204 hfa384x_bytestr32_t ssid;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001205 int result;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001206
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001207 /* First let's process the auth frames */
1208 {
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001209 struct sk_buff *skb;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001210 hfa384x_InfFrame_t *inf;
1211
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001212 while ((skb = skb_dequeue(&hw->authq))) {
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001213 inf = (hfa384x_InfFrame_t *) skb->data;
1214 prism2sta_inf_authreq_defer(wlandev, inf);
1215 }
1216
1217 }
1218
1219 /* Now let's handle the linkstatus stuff */
1220 if (hw->link_status == hw->link_status_new)
1221 goto failed;
1222
1223 hw->link_status = hw->link_status_new;
1224
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001225 switch (hw->link_status) {
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001226 case HFA384x_LINK_NOTCONNECTED:
1227 /* I'm currently assuming that this is the initial link
1228 * state. It should only be possible immediately
1229 * following an Enable command.
1230 * Response:
1231 * Block Transmits, Ignore receives of data frames
1232 */
1233 netif_carrier_off(wlandev->netdev);
1234
Moritz Muehlenhoff350f2f4b2009-01-25 21:54:57 +01001235 printk(KERN_INFO "linkstatus=NOTCONNECTED (unhandled)\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001236 break;
1237
1238 case HFA384x_LINK_CONNECTED:
1239 /* This one indicates a successful scan/join/auth/assoc.
1240 * When we have the full MLME complement, this event will
1241 * signify successful completion of both mlme_authenticate
1242 * and mlme_associate. State management will get a little
1243 * ugly here.
1244 * Response:
1245 * Indicate authentication and/or association
1246 * Enable Transmits, Receives and pass up data frames
1247 */
1248
1249 netif_carrier_on(wlandev->netdev);
1250
Christos Tzoumakisf9bd6492010-05-07 06:17:24 +03001251 /* If we are joining a specific AP, set our
1252 * state and reset retries
1253 */
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001254 if (hw->join_ap == 1)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001255 hw->join_ap = 2;
1256 hw->join_retries = 60;
1257
1258 /* Don't call this in monitor mode */
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001259 if (wlandev->netdev->type == ARPHRD_ETHER) {
1260 u16 portstatus;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001261
Moritz Muehlenhoff350f2f4b2009-01-25 21:54:57 +01001262 printk(KERN_INFO "linkstatus=CONNECTED\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001263
1264 /* For non-usb devices, we can use the sync versions */
1265 /* Collect the BSSID, and set state to allow tx */
1266
1267 result = hfa384x_drvr_getconfig(hw,
Christos Tzoumakisf9bd6492010-05-07 06:17:24 +03001268 HFA384x_RID_CURRENTBSSID,
1269 wlandev->bssid,
1270 WLAN_BSSID_LEN);
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001271 if (result) {
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301272 pr_debug
1273 ("getconfig(0x%02x) failed, result = %d\n",
1274 HFA384x_RID_CURRENTBSSID, result);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001275 goto failed;
1276 }
1277
1278 result = hfa384x_drvr_getconfig(hw,
1279 HFA384x_RID_CURRENTSSID,
1280 &ssid, sizeof(ssid));
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001281 if (result) {
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301282 pr_debug
1283 ("getconfig(0x%02x) failed, result = %d\n",
1284 HFA384x_RID_CURRENTSSID, result);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001285 goto failed;
1286 }
Svenne Krap5dd8acc2010-02-14 18:59:00 +01001287 prism2mgmt_bytestr2pstr((hfa384x_bytestr_t *) &ssid,
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301288 (p80211pstrd_t *) &
1289 wlandev->ssid);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001290
1291 /* Collect the port status */
1292 result = hfa384x_drvr_getconfig16(hw,
Christos Tzoumakisf9bd6492010-05-07 06:17:24 +03001293 HFA384x_RID_PORTSTATUS,
1294 &portstatus);
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001295 if (result) {
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301296 pr_debug
1297 ("getconfig(0x%02x) failed, result = %d\n",
1298 HFA384x_RID_PORTSTATUS, result);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001299 goto failed;
1300 }
1301 wlandev->macmode =
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001302 (portstatus == HFA384x_PSTATUS_CONN_IBSS) ?
1303 WLAN_MACMODE_IBSS_STA : WLAN_MACMODE_ESS_STA;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001304
Karl Reltoncb3126e2010-06-03 23:04:06 +01001305 /* signal back up to cfg80211 layer */
1306 prism2_connect_result(wlandev, P80211ENUM_truth_false);
1307
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001308 /* Get the ball rolling on the comms quality stuff */
1309 prism2sta_commsqual_defer(&hw->commsqual_bh);
1310 }
1311 break;
1312
1313 case HFA384x_LINK_DISCONNECTED:
1314 /* This one indicates that our association is gone. We've
1315 * lost connection with the AP and/or been disassociated.
1316 * This indicates that the MAC has completely cleared it's
1317 * associated state. We * should send a deauth indication
1318 * (implying disassoc) up * to the MLME.
1319 * Response:
1320 * Indicate Deauthentication
1321 * Block Transmits, Ignore receives of data frames
1322 */
Karl Reltoncb3126e2010-06-03 23:04:06 +01001323 if (wlandev->netdev->type == ARPHRD_ETHER)
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001324 printk(KERN_INFO
Karl Reltoncb3126e2010-06-03 23:04:06 +01001325 "linkstatus=DISCONNECTED (unhandled)\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001326 wlandev->macmode = WLAN_MACMODE_NONE;
1327
1328 netif_carrier_off(wlandev->netdev);
1329
Karl Reltoncb3126e2010-06-03 23:04:06 +01001330 /* signal back up to cfg80211 layer */
1331 prism2_disconnected(wlandev);
1332
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001333 break;
1334
1335 case HFA384x_LINK_AP_CHANGE:
1336 /* This one indicates that the MAC has decided to and
1337 * successfully completed a change to another AP. We
1338 * should probably implement a reassociation indication
1339 * in response to this one. I'm thinking that the the
1340 * p80211 layer needs to be notified in case of
1341 * buffering/queueing issues. User mode also needs to be
1342 * notified so that any BSS dependent elements can be
1343 * updated.
1344 * associated state. We * should send a deauth indication
1345 * (implying disassoc) up * to the MLME.
1346 * Response:
1347 * Indicate Reassociation
1348 * Enable Transmits, Receives and pass up data frames
1349 */
Moritz Muehlenhoff350f2f4b2009-01-25 21:54:57 +01001350 printk(KERN_INFO "linkstatus=AP_CHANGE\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001351
1352 result = hfa384x_drvr_getconfig(hw,
1353 HFA384x_RID_CURRENTBSSID,
1354 wlandev->bssid, WLAN_BSSID_LEN);
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001355 if (result) {
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301356 pr_debug("getconfig(0x%02x) failed, result = %d\n",
1357 HFA384x_RID_CURRENTBSSID, result);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001358 goto failed;
1359 }
1360
1361 result = hfa384x_drvr_getconfig(hw,
1362 HFA384x_RID_CURRENTSSID,
1363 &ssid, sizeof(ssid));
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001364 if (result) {
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301365 pr_debug("getconfig(0x%02x) failed, result = %d\n",
1366 HFA384x_RID_CURRENTSSID, result);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001367 goto failed;
1368 }
Svenne Krap5dd8acc2010-02-14 18:59:00 +01001369 prism2mgmt_bytestr2pstr((hfa384x_bytestr_t *) &ssid,
1370 (p80211pstrd_t *) &wlandev->ssid);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001371
1372 hw->link_status = HFA384x_LINK_CONNECTED;
1373 netif_carrier_on(wlandev->netdev);
1374
Karl Reltoncb3126e2010-06-03 23:04:06 +01001375 /* signal back up to cfg80211 layer */
1376 prism2_roamed(wlandev);
1377
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001378 break;
1379
1380 case HFA384x_LINK_AP_OUTOFRANGE:
1381 /* This one indicates that the MAC has decided that the
1382 * AP is out of range, but hasn't found a better candidate
1383 * so the MAC maintains its "associated" state in case
1384 * we get back in range. We should block transmits and
1385 * receives in this state. Do we need an indication here?
1386 * Probably not since a polling user-mode element would
1387 * get this status from from p2PortStatus(FD40). What about
1388 * p80211?
1389 * Response:
1390 * Block Transmits, Ignore receives of data frames
1391 */
Moritz Muehlenhoff350f2f4b2009-01-25 21:54:57 +01001392 printk(KERN_INFO "linkstatus=AP_OUTOFRANGE (unhandled)\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001393
1394 netif_carrier_off(wlandev->netdev);
1395
1396 break;
1397
1398 case HFA384x_LINK_AP_INRANGE:
1399 /* This one indicates that the MAC has decided that the
1400 * AP is back in range. We continue working with our
1401 * existing association.
1402 * Response:
1403 * Enable Transmits, Receives and pass up data frames
1404 */
Moritz Muehlenhoff350f2f4b2009-01-25 21:54:57 +01001405 printk(KERN_INFO "linkstatus=AP_INRANGE\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001406
1407 hw->link_status = HFA384x_LINK_CONNECTED;
1408 netif_carrier_on(wlandev->netdev);
1409
1410 break;
1411
1412 case HFA384x_LINK_ASSOCFAIL:
1413 /* This one is actually a peer to CONNECTED. We've
1414 * requested a join for a given SSID and optionally BSSID.
1415 * We can use this one to indicate authentication and
1416 * association failures. The trick is going to be
1417 * 1) identifying the failure, and 2) state management.
1418 * Response:
1419 * Disable Transmits, Ignore receives of data frames
1420 */
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001421 if (hw->join_ap && --hw->join_retries > 0) {
1422 hfa384x_JoinRequest_data_t joinreq;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001423 joinreq = hw->joinreq;
1424 /* Send the join request */
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001425 hfa384x_drvr_setconfig(hw,
1426 HFA384x_RID_JOINREQUEST,
1427 &joinreq,
1428 HFA384x_RID_JOINREQUEST_LEN);
1429 printk(KERN_INFO
1430 "linkstatus=ASSOCFAIL (re-submitting join)\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001431 } else {
Moritz Muehlenhoff350f2f4b2009-01-25 21:54:57 +01001432 printk(KERN_INFO "linkstatus=ASSOCFAIL (unhandled)\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001433 }
1434
1435 netif_carrier_off(wlandev->netdev);
1436
Karl Reltoncb3126e2010-06-03 23:04:06 +01001437 /* signal back up to cfg80211 layer */
1438 prism2_connect_result(wlandev, P80211ENUM_truth_true);
1439
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001440 break;
1441
1442 default:
1443 /* This is bad, IO port problems? */
Moritz Muehlenhoff9b9556e2009-01-25 21:55:01 +01001444 printk(KERN_WARNING
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001445 "unknown linkstatus=0x%02x\n", hw->link_status);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001446 goto failed;
1447 break;
1448 }
1449
1450 wlandev->linkstatus = (hw->link_status == HFA384x_LINK_CONNECTED);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001451
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001452failed:
1453 return;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001454}
1455
1456/*----------------------------------------------------------------
1457* prism2sta_inf_linkstatus
1458*
1459* Handles the receipt of a Link Status info frame.
1460*
1461* Arguments:
1462* wlandev wlan device structure
1463* inf ptr to info frame (contents in hfa384x order)
1464*
1465* Returns:
1466* nothing
1467*
1468* Side effects:
1469*
1470* Call context:
1471* interrupt
1472----------------------------------------------------------------*/
Mithlesh Thukral297f06c2009-06-10 19:36:11 +05301473static void prism2sta_inf_linkstatus(wlandevice_t *wlandev,
1474 hfa384x_InfFrame_t *inf)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001475{
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001476 hfa384x_t *hw = (hfa384x_t *) wlandev->priv;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001477
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +01001478 hw->link_status_new = le16_to_cpu(inf->info.linkstatus.linkstatus);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001479
1480 schedule_work(&hw->link_bh);
1481
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001482 return;
1483}
1484
1485/*----------------------------------------------------------------
1486* prism2sta_inf_assocstatus
1487*
1488* Handles the receipt of an Association Status info frame. Should
1489* be present in APs only.
1490*
1491* Arguments:
1492* wlandev wlan device structure
1493* inf ptr to info frame (contents in hfa384x order)
1494*
1495* Returns:
1496* nothing
1497*
1498* Side effects:
1499*
1500* Call context:
1501* interrupt
1502----------------------------------------------------------------*/
Mithlesh Thukral297f06c2009-06-10 19:36:11 +05301503static void prism2sta_inf_assocstatus(wlandevice_t *wlandev,
1504 hfa384x_InfFrame_t *inf)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001505{
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001506 hfa384x_t *hw = (hfa384x_t *) wlandev->priv;
1507 hfa384x_AssocStatus_t rec;
1508 int i;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001509
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001510 memcpy(&rec, &inf->info.assocstatus, sizeof(rec));
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +01001511 rec.assocstatus = le16_to_cpu(rec.assocstatus);
1512 rec.reason = le16_to_cpu(rec.reason);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001513
1514 /*
Christos Tzoumakisf9bd6492010-05-07 06:17:24 +03001515 ** Find the address in the list of authenticated stations.
1516 ** If it wasn't found, then this address has not been previously
1517 ** authenticated and something weird has happened if this is
1518 ** anything other than an "authentication failed" message.
1519 ** If the address was found, then set the "associated" flag for
1520 ** that station, based on whether the station is associating or
1521 ** losing its association. Something weird has also happened
1522 ** if we find the address in the list of authenticated stations
1523 ** but we are getting an "authentication failed" message.
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001524 */
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001525
1526 for (i = 0; i < hw->authlist.cnt; i++)
Moritz Muehlenhoff28b17a42009-01-21 22:00:41 +01001527 if (memcmp(rec.sta_addr, hw->authlist.addr[i], ETH_ALEN) == 0)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001528 break;
1529
1530 if (i >= hw->authlist.cnt) {
1531 if (rec.assocstatus != HFA384x_ASSOCSTATUS_AUTHFAIL)
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001532 printk(KERN_WARNING
Christos Tzoumakisf9bd6492010-05-07 06:17:24 +03001533 "assocstatus info frame received for non-authenticated station.\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001534 } else {
1535 hw->authlist.assoc[i] =
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001536 (rec.assocstatus == HFA384x_ASSOCSTATUS_STAASSOC ||
1537 rec.assocstatus == HFA384x_ASSOCSTATUS_REASSOC);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001538
1539 if (rec.assocstatus == HFA384x_ASSOCSTATUS_AUTHFAIL)
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001540 printk(KERN_WARNING
Christos Tzoumakisf9bd6492010-05-07 06:17:24 +03001541"authfail assocstatus info frame received for authenticated station.\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001542 }
1543
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001544 return;
1545}
1546
1547/*----------------------------------------------------------------
1548* prism2sta_inf_authreq
1549*
1550* Handles the receipt of an Authentication Request info frame. Should
1551* be present in APs only.
1552*
1553* Arguments:
1554* wlandev wlan device structure
1555* inf ptr to info frame (contents in hfa384x order)
1556*
1557* Returns:
1558* nothing
1559*
1560* Side effects:
1561*
1562* Call context:
1563* interrupt
1564*
1565----------------------------------------------------------------*/
Mithlesh Thukral297f06c2009-06-10 19:36:11 +05301566static void prism2sta_inf_authreq(wlandevice_t *wlandev,
1567 hfa384x_InfFrame_t *inf)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001568{
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001569 hfa384x_t *hw = (hfa384x_t *) wlandev->priv;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001570 struct sk_buff *skb;
1571
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001572 skb = dev_alloc_skb(sizeof(*inf));
1573 if (skb) {
1574 skb_put(skb, sizeof(*inf));
1575 memcpy(skb->data, inf, sizeof(*inf));
1576 skb_queue_tail(&hw->authq, skb);
1577 schedule_work(&hw->link_bh);
1578 }
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001579}
1580
Mithlesh Thukral297f06c2009-06-10 19:36:11 +05301581static void prism2sta_inf_authreq_defer(wlandevice_t *wlandev,
1582 hfa384x_InfFrame_t *inf)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001583{
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001584 hfa384x_t *hw = (hfa384x_t *) wlandev->priv;
1585 hfa384x_authenticateStation_data_t rec;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001586
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001587 int i, added, result, cnt;
1588 u8 *addr;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001589
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001590 /*
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001591 ** Build the AuthenticateStation record. Initialize it for denying
1592 ** authentication.
1593 */
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001594
Moritz Muehlenhoff28b17a42009-01-21 22:00:41 +01001595 memcpy(rec.address, inf->info.authreq.sta_addr, ETH_ALEN);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001596 rec.status = P80211ENUM_status_unspec_failure;
1597
1598 /*
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001599 ** Authenticate based on the access mode.
1600 */
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001601
1602 switch (hw->accessmode) {
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001603 case WLAN_ACCESS_NONE:
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001604
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001605 /*
1606 ** Deny all new authentications. However, if a station
1607 ** is ALREADY authenticated, then accept it.
1608 */
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001609
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001610 for (i = 0; i < hw->authlist.cnt; i++)
1611 if (memcmp(rec.address, hw->authlist.addr[i],
1612 ETH_ALEN) == 0) {
1613 rec.status = P80211ENUM_status_successful;
1614 break;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001615 }
1616
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001617 break;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001618
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001619 case WLAN_ACCESS_ALL:
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001620
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001621 /*
1622 ** Allow all authentications.
1623 */
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001624
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001625 rec.status = P80211ENUM_status_successful;
1626 break;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001627
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001628 case WLAN_ACCESS_ALLOW:
1629
1630 /*
1631 ** Only allow the authentication if the MAC address
1632 ** is in the list of allowed addresses.
1633 **
1634 ** Since this is the interrupt handler, we may be here
1635 ** while the access list is in the middle of being
1636 ** updated. Choose the list which is currently okay.
1637 ** See "prism2mib_priv_accessallow()" for details.
1638 */
1639
1640 if (hw->allow.modify == 0) {
1641 cnt = hw->allow.cnt;
1642 addr = hw->allow.addr[0];
1643 } else {
1644 cnt = hw->allow.cnt1;
1645 addr = hw->allow.addr1[0];
1646 }
1647
1648 for (i = 0; i < cnt; i++, addr += ETH_ALEN)
1649 if (memcmp(rec.address, addr, ETH_ALEN) == 0) {
1650 rec.status = P80211ENUM_status_successful;
1651 break;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001652 }
1653
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001654 break;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001655
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001656 case WLAN_ACCESS_DENY:
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001657
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001658 /*
1659 ** Allow the authentication UNLESS the MAC address is
1660 ** in the list of denied addresses.
1661 **
1662 ** Since this is the interrupt handler, we may be here
1663 ** while the access list is in the middle of being
1664 ** updated. Choose the list which is currently okay.
1665 ** See "prism2mib_priv_accessdeny()" for details.
1666 */
1667
1668 if (hw->deny.modify == 0) {
1669 cnt = hw->deny.cnt;
1670 addr = hw->deny.addr[0];
1671 } else {
1672 cnt = hw->deny.cnt1;
1673 addr = hw->deny.addr1[0];
1674 }
1675
1676 rec.status = P80211ENUM_status_successful;
1677
1678 for (i = 0; i < cnt; i++, addr += ETH_ALEN)
1679 if (memcmp(rec.address, addr, ETH_ALEN) == 0) {
1680 rec.status = P80211ENUM_status_unspec_failure;
1681 break;
1682 }
1683
1684 break;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001685 }
1686
1687 /*
Christos Tzoumakisf9bd6492010-05-07 06:17:24 +03001688 ** If the authentication is okay, then add the MAC address to the
1689 ** list of authenticated stations. Don't add the address if it
1690 ** is already in the list. (802.11b does not seem to disallow
1691 ** a station from issuing an authentication request when the
1692 ** station is already authenticated. Does this sort of thing
1693 ** ever happen? We might as well do the check just in case.)
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001694 */
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001695
1696 added = 0;
1697
1698 if (rec.status == P80211ENUM_status_successful) {
1699 for (i = 0; i < hw->authlist.cnt; i++)
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001700 if (memcmp(rec.address, hw->authlist.addr[i], ETH_ALEN)
1701 == 0)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001702 break;
1703
1704 if (i >= hw->authlist.cnt) {
1705 if (hw->authlist.cnt >= WLAN_AUTH_MAX) {
1706 rec.status = P80211ENUM_status_ap_full;
1707 } else {
1708 memcpy(hw->authlist.addr[hw->authlist.cnt],
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001709 rec.address, ETH_ALEN);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001710 hw->authlist.cnt++;
1711 added = 1;
1712 }
1713 }
1714 }
1715
1716 /*
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001717 ** Send back the results of the authentication. If this doesn't work,
1718 ** then make sure to remove the address from the authenticated list if
1719 ** it was added.
1720 */
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001721
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +01001722 rec.status = cpu_to_le16(rec.status);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001723 rec.algorithm = inf->info.authreq.algorithm;
1724
1725 result = hfa384x_drvr_setconfig(hw, HFA384x_RID_AUTHENTICATESTA,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001726 &rec, sizeof(rec));
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001727 if (result) {
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001728 if (added)
1729 hw->authlist.cnt--;
1730 printk(KERN_ERR
1731 "setconfig(authenticatestation) failed, result=%d\n",
1732 result);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001733 }
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001734 return;
1735}
1736
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001737/*----------------------------------------------------------------
1738* prism2sta_inf_psusercnt
1739*
1740* Handles the receipt of a PowerSaveUserCount info frame. Should
1741* be present in APs only.
1742*
1743* Arguments:
1744* wlandev wlan device structure
1745* inf ptr to info frame (contents in hfa384x order)
1746*
1747* Returns:
1748* nothing
1749*
1750* Side effects:
1751*
1752* Call context:
1753* interrupt
1754----------------------------------------------------------------*/
Mithlesh Thukral297f06c2009-06-10 19:36:11 +05301755static void prism2sta_inf_psusercnt(wlandevice_t *wlandev,
1756 hfa384x_InfFrame_t *inf)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001757{
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001758 hfa384x_t *hw = (hfa384x_t *) wlandev->priv;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001759
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +01001760 hw->psusercount = le16_to_cpu(inf->info.psusercnt.usercnt);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001761
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001762 return;
1763}
1764
1765/*----------------------------------------------------------------
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001766* prism2sta_ev_info
1767*
1768* Handles the Info event.
1769*
1770* Arguments:
1771* wlandev wlan device structure
1772* inf ptr to a generic info frame
1773*
1774* Returns:
1775* nothing
1776*
1777* Side effects:
1778*
1779* Call context:
1780* interrupt
1781----------------------------------------------------------------*/
Mithlesh Thukral297f06c2009-06-10 19:36:11 +05301782void prism2sta_ev_info(wlandevice_t *wlandev, hfa384x_InfFrame_t *inf)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001783{
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +01001784 inf->infotype = le16_to_cpu(inf->infotype);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001785 /* Dispatch */
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001786 switch (inf->infotype) {
1787 case HFA384x_IT_HANDOVERADDR:
1788 prism2sta_inf_handover(wlandev, inf);
1789 break;
1790 case HFA384x_IT_COMMTALLIES:
1791 prism2sta_inf_tallies(wlandev, inf);
1792 break;
1793 case HFA384x_IT_HOSTSCANRESULTS:
1794 prism2sta_inf_hostscanresults(wlandev, inf);
1795 break;
1796 case HFA384x_IT_SCANRESULTS:
1797 prism2sta_inf_scanresults(wlandev, inf);
1798 break;
1799 case HFA384x_IT_CHINFORESULTS:
1800 prism2sta_inf_chinforesults(wlandev, inf);
1801 break;
1802 case HFA384x_IT_LINKSTATUS:
1803 prism2sta_inf_linkstatus(wlandev, inf);
1804 break;
1805 case HFA384x_IT_ASSOCSTATUS:
1806 prism2sta_inf_assocstatus(wlandev, inf);
1807 break;
1808 case HFA384x_IT_AUTHREQ:
1809 prism2sta_inf_authreq(wlandev, inf);
1810 break;
1811 case HFA384x_IT_PSUSERCNT:
1812 prism2sta_inf_psusercnt(wlandev, inf);
1813 break;
1814 case HFA384x_IT_KEYIDCHANGED:
1815 printk(KERN_WARNING "Unhandled IT_KEYIDCHANGED\n");
1816 break;
1817 case HFA384x_IT_ASSOCREQ:
1818 printk(KERN_WARNING "Unhandled IT_ASSOCREQ\n");
1819 break;
1820 case HFA384x_IT_MICFAILURE:
1821 printk(KERN_WARNING "Unhandled IT_MICFAILURE\n");
1822 break;
1823 default:
1824 printk(KERN_WARNING
1825 "Unknown info type=0x%02x\n", inf->infotype);
1826 break;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001827 }
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001828 return;
1829}
1830
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001831/*----------------------------------------------------------------
1832* prism2sta_ev_txexc
1833*
1834* Handles the TxExc event. A Transmit Exception event indicates
1835* that the MAC's TX process was unsuccessful - so the packet did
1836* not get transmitted.
1837*
1838* Arguments:
1839* wlandev wlan device structure
1840* status tx frame status word
1841*
1842* Returns:
1843* nothing
1844*
1845* Side effects:
1846*
1847* Call context:
1848* interrupt
1849----------------------------------------------------------------*/
Mithlesh Thukral297f06c2009-06-10 19:36:11 +05301850void prism2sta_ev_txexc(wlandevice_t *wlandev, u16 status)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001851{
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +01001852 pr_debug("TxExc status=0x%x.\n", status);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001853
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001854 return;
1855}
1856
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001857/*----------------------------------------------------------------
1858* prism2sta_ev_tx
1859*
1860* Handles the Tx event.
1861*
1862* Arguments:
1863* wlandev wlan device structure
1864* status tx frame status word
1865* Returns:
1866* nothing
1867*
1868* Side effects:
1869*
1870* Call context:
1871* interrupt
1872----------------------------------------------------------------*/
Mithlesh Thukral297f06c2009-06-10 19:36:11 +05301873void prism2sta_ev_tx(wlandevice_t *wlandev, u16 status)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001874{
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +01001875 pr_debug("Tx Complete, status=0x%04x\n", status);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001876 /* update linux network stats */
1877 wlandev->linux_stats.tx_packets++;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001878 return;
1879}
1880
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001881/*----------------------------------------------------------------
1882* prism2sta_ev_rx
1883*
1884* Handles the Rx event.
1885*
1886* Arguments:
1887* wlandev wlan device structure
1888*
1889* Returns:
1890* nothing
1891*
1892* Side effects:
1893*
1894* Call context:
1895* interrupt
1896----------------------------------------------------------------*/
Mithlesh Thukral297f06c2009-06-10 19:36:11 +05301897void prism2sta_ev_rx(wlandevice_t *wlandev, struct sk_buff *skb)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001898{
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001899 p80211netdev_rx(wlandev, skb);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001900 return;
1901}
1902
1903/*----------------------------------------------------------------
1904* prism2sta_ev_alloc
1905*
1906* Handles the Alloc event.
1907*
1908* Arguments:
1909* wlandev wlan device structure
1910*
1911* Returns:
1912* nothing
1913*
1914* Side effects:
1915*
1916* Call context:
1917* interrupt
1918----------------------------------------------------------------*/
Mithlesh Thukral297f06c2009-06-10 19:36:11 +05301919void prism2sta_ev_alloc(wlandevice_t *wlandev)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001920{
Solomon Peachycbec30c2008-10-29 10:42:57 -04001921 netif_wake_queue(wlandev->netdev);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001922 return;
1923}
1924
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001925/*----------------------------------------------------------------
1926* create_wlan
1927*
1928* Called at module init time. This creates the wlandevice_t structure
1929* and initializes it with relevant bits.
1930*
1931* Arguments:
1932* none
1933*
1934* Returns:
1935* the created wlandevice_t structure.
1936*
1937* Side effects:
Christos Tzoumakisf9bd6492010-05-07 06:17:24 +03001938* also allocates the priv/hw structures.
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001939*
1940* Call context:
1941* process thread
1942*
1943----------------------------------------------------------------*/
1944static wlandevice_t *create_wlan(void)
1945{
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001946 wlandevice_t *wlandev = NULL;
1947 hfa384x_t *hw = NULL;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001948
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001949 /* Alloc our structures */
1950 wlandev = kmalloc(sizeof(wlandevice_t), GFP_KERNEL);
1951 hw = kmalloc(sizeof(hfa384x_t), GFP_KERNEL);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001952
1953 if (!wlandev || !hw) {
Moritz Muehlenhoffedbd6062009-01-25 21:55:00 +01001954 printk(KERN_ERR "%s: Memory allocation failure.\n", dev_info);
Moritz Muehlenhoff7c98f712009-02-09 19:33:42 +01001955 kfree(wlandev);
1956 kfree(hw);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001957 return NULL;
1958 }
1959
1960 /* Clear all the structs */
1961 memset(wlandev, 0, sizeof(wlandevice_t));
1962 memset(hw, 0, sizeof(hfa384x_t));
1963
1964 /* Initialize the network device object. */
1965 wlandev->nsdname = dev_info;
1966 wlandev->msdstate = WLAN_MSD_HWPRESENT_PENDING;
1967 wlandev->priv = hw;
1968 wlandev->open = prism2sta_open;
1969 wlandev->close = prism2sta_close;
1970 wlandev->reset = prism2sta_reset;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001971 wlandev->txframe = prism2sta_txframe;
1972 wlandev->mlmerequest = prism2sta_mlmerequest;
1973 wlandev->set_multicast_list = prism2sta_setmulticast;
1974 wlandev->tx_timeout = hfa384x_tx_timeout;
1975
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001976 wlandev->nsdcaps = P80211_NSDCAP_HWFRAGMENT | P80211_NSDCAP_AUTOJOIN;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001977
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001978 /* Initialize the device private data structure. */
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001979 hw->dot11_desired_bss_type = 1;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001980
1981 return wlandev;
1982}
1983
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001984void prism2sta_commsqual_defer(struct work_struct *data)
1985{
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001986 hfa384x_t *hw = container_of(data, struct hfa384x, commsqual_bh);
1987 wlandevice_t *wlandev = hw->wlandev;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001988 hfa384x_bytestr32_t ssid;
Edgardo Hamesb6bb56e2010-08-02 16:20:39 -03001989 struct p80211msg_dot11req_mibget msg;
1990 p80211item_uint32_t *mibitem = (p80211item_uint32_t *)
1991 &msg.mibattribute.data;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001992 int result = 0;
1993
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001994 if (hw->wlandev->hwremoved)
1995 goto done;
1996
1997 /* we don't care if we're in AP mode */
1998 if ((wlandev->macmode == WLAN_MACMODE_NONE) ||
1999 (wlandev->macmode == WLAN_MACMODE_ESS_AP)) {
2000 goto done;
2001 }
2002
2003 /* It only makes sense to poll these in non-IBSS */
2004 if (wlandev->macmode != WLAN_MACMODE_IBSS_STA) {
Christos Tzoumakisf9bd6492010-05-07 06:17:24 +03002005 result = hfa384x_drvr_getconfig(
2006 hw, HFA384x_RID_DBMCOMMSQUALITY,
2007 &hw->qual, HFA384x_RID_DBMCOMMSQUALITY_LEN);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07002008
2009 if (result) {
Moritz Muehlenhoffedbd6062009-01-25 21:55:00 +01002010 printk(KERN_ERR "error fetching commsqual\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07002011 goto done;
2012 }
2013
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +01002014 pr_debug("commsqual %d %d %d\n",
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05302015 le16_to_cpu(hw->qual.CQ_currBSS),
2016 le16_to_cpu(hw->qual.ASL_currBSS),
2017 le16_to_cpu(hw->qual.ANL_currFC));
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07002018 }
2019
Karl Reltoncb3126e2010-06-03 23:04:06 +01002020 /* Get the signal rate */
2021 msg.msgcode = DIDmsg_dot11req_mibget;
2022 mibitem->did = DIDmib_p2_p2MAC_p2CurrentTxRate;
Edgardo Hamesb6bb56e2010-08-02 16:20:39 -03002023 result = p80211req_dorequest(wlandev, (u8 *) &msg);
Karl Reltoncb3126e2010-06-03 23:04:06 +01002024
2025 if (result) {
2026 pr_debug("get signal rate failed, result = %d\n",
2027 result);
2028 goto done;
2029 }
2030
2031 switch (mibitem->data) {
2032 case HFA384x_RATEBIT_1:
2033 hw->txrate = 10;
2034 break;
2035 case HFA384x_RATEBIT_2:
2036 hw->txrate = 20;
2037 break;
2038 case HFA384x_RATEBIT_5dot5:
2039 hw->txrate = 55;
2040 break;
2041 case HFA384x_RATEBIT_11:
2042 hw->txrate = 110;
2043 break;
2044 default:
2045 pr_debug("Bad ratebit (%d)\n", mibitem->data);
2046 }
2047
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07002048 /* Lastly, we need to make sure the BSSID didn't change on us */
2049 result = hfa384x_drvr_getconfig(hw,
2050 HFA384x_RID_CURRENTBSSID,
2051 wlandev->bssid, WLAN_BSSID_LEN);
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01002052 if (result) {
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05302053 pr_debug("getconfig(0x%02x) failed, result = %d\n",
2054 HFA384x_RID_CURRENTBSSID, result);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07002055 goto done;
2056 }
2057
2058 result = hfa384x_drvr_getconfig(hw,
2059 HFA384x_RID_CURRENTSSID,
2060 &ssid, sizeof(ssid));
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01002061 if (result) {
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05302062 pr_debug("getconfig(0x%02x) failed, result = %d\n",
2063 HFA384x_RID_CURRENTSSID, result);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07002064 goto done;
2065 }
Svenne Krap5dd8acc2010-02-14 18:59:00 +01002066 prism2mgmt_bytestr2pstr((hfa384x_bytestr_t *) &ssid,
2067 (p80211pstrd_t *) &wlandev->ssid);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07002068
2069 /* Reschedule timer */
2070 mod_timer(&hw->commsqual_timer, jiffies + HZ);
2071
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01002072done:
Moritz Muehlenhoff8a251b52009-01-21 22:00:44 +01002073 ;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07002074}
2075
2076void prism2sta_commsqual_timer(unsigned long data)
2077{
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01002078 hfa384x_t *hw = (hfa384x_t *) data;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07002079
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07002080 schedule_work(&hw->commsqual_bh);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07002081}