blob: ed751f418db96ebcd64b2dc3ad5d6048ce447b8c [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/version.h>
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -070054#include <linux/module.h>
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -070055#include <linux/moduleparam.h>
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -070056#include <linux/kernel.h>
57#include <linux/sched.h>
58#include <linux/types.h>
59#include <linux/init.h>
60#include <linux/slab.h>
61#include <linux/wireless.h>
62#include <linux/netdevice.h>
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -070063#include <linux/workqueue.h>
Moritz Muehlenhoffae262302009-01-21 22:00:45 +010064#include <linux/byteorder/generic.h>
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +010065#include <linux/ctype.h>
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -070066
Andrew Elwellef1a0ed2010-02-18 23:56:12 +010067#include <linux/io.h>
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -070068#include <linux/delay.h>
69#include <asm/byteorder.h>
70#include <linux/if_arp.h>
Moritz Muehlenhoff28b17a42009-01-21 22:00:41 +010071#include <linux/if_ether.h>
Moritz Muehlenhoff7f6e0e42009-01-25 21:54:55 +010072#include <linux/bitops.h>
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -070073
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -070074#include "p80211types.h"
75#include "p80211hdr.h"
76#include "p80211mgmt.h"
77#include "p80211conv.h"
78#include "p80211msg.h"
79#include "p80211netdev.h"
80#include "p80211req.h"
81#include "p80211metadef.h"
82#include "p80211metastruct.h"
83#include "hfa384x.h"
84#include "prism2mgmt.h"
85
Moritz Muehlenhoff16910552009-02-01 13:39:16 +010086/* Create a string of printable chars from something that might not be */
87/* It's recommended that the str be 4*len + 1 bytes long */
88#define wlan_mkprintstr(buf, buflen, str, strlen) \
89{ \
90 int i = 0; \
91 int j = 0; \
92 memset(str, 0, (strlen)); \
93 for (i = 0; i < (buflen); i++) { \
Moritz Muehlenhofff3422882009-02-08 02:21:04 +010094 if (isprint((buf)[i])) { \
Moritz Muehlenhoff16910552009-02-01 13:39:16 +010095 (str)[j] = (buf)[i]; \
96 j++; \
97 } else { \
98 (str)[j] = '\\'; \
99 (str)[j+1] = 'x'; \
Andy Shevchenkocfa54892010-07-22 19:57:11 +0300100 (str)[j+2] = hex_asc_hi((buf)[i]); \
101 (str)[j+3] = hex_asc_lo((buf)[i]); \
Moritz Muehlenhoff16910552009-02-01 13:39:16 +0100102 j += 4; \
103 } \
104 } \
105}
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700106
Solomon Peachye02c69b2008-10-29 10:42:59 -0400107static char *dev_info = "prism2_usb";
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700108static wlandevice_t *create_wlan(void);
109
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100110int prism2_reset_holdtime = 30; /* Reset hold time in ms */
111int prism2_reset_settletime = 100; /* Reset settle time in ms */
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700112
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530113static int prism2_doreset; /* Do a reset at init? */
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700114
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100115module_param(prism2_doreset, int, 0644);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700116MODULE_PARM_DESC(prism2_doreset, "Issue a reset on initialization");
117
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100118module_param(prism2_reset_holdtime, int, 0644);
119MODULE_PARM_DESC(prism2_reset_holdtime, "reset hold time in ms");
120module_param(prism2_reset_settletime, int, 0644);
121MODULE_PARM_DESC(prism2_reset_settletime, "reset settle time in ms");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700122
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700123MODULE_LICENSE("Dual MPL/GPL");
124
Karl Reltoncb3126e2010-06-03 23:04:06 +0100125void prism2_connect_result(wlandevice_t *wlandev, u8 failed);
126void prism2_disconnected(wlandevice_t *wlandev);
127void prism2_roamed(wlandevice_t *wlandev);
128
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530129static int prism2sta_open(wlandevice_t *wlandev);
130static int prism2sta_close(wlandevice_t *wlandev);
131static void prism2sta_reset(wlandevice_t *wlandev);
132static int prism2sta_txframe(wlandevice_t *wlandev, struct sk_buff *skb,
Edgardo Hames93df38e2010-07-30 22:51:55 -0300133 union p80211_hdr *p80211_hdr,
Edgardo Hames51e48962010-07-31 13:06:52 -0300134 struct p80211_metawep *p80211_wep);
Edgardo Hames3d049432010-08-02 17:17:17 -0300135static int prism2sta_mlmerequest(wlandevice_t *wlandev, struct p80211msg *msg);
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530136static int prism2sta_getcardinfo(wlandevice_t *wlandev);
137static int prism2sta_globalsetup(wlandevice_t *wlandev);
138static int prism2sta_setmulticast(wlandevice_t *wlandev, netdevice_t *dev);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700139
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530140static void prism2sta_inf_handover(wlandevice_t *wlandev,
141 hfa384x_InfFrame_t *inf);
142static void prism2sta_inf_tallies(wlandevice_t *wlandev,
143 hfa384x_InfFrame_t *inf);
144static void prism2sta_inf_hostscanresults(wlandevice_t *wlandev,
145 hfa384x_InfFrame_t *inf);
146static void prism2sta_inf_scanresults(wlandevice_t *wlandev,
147 hfa384x_InfFrame_t *inf);
148static void prism2sta_inf_chinforesults(wlandevice_t *wlandev,
149 hfa384x_InfFrame_t *inf);
150static void prism2sta_inf_linkstatus(wlandevice_t *wlandev,
151 hfa384x_InfFrame_t *inf);
152static void prism2sta_inf_assocstatus(wlandevice_t *wlandev,
153 hfa384x_InfFrame_t *inf);
154static void prism2sta_inf_authreq(wlandevice_t *wlandev,
155 hfa384x_InfFrame_t *inf);
156static void prism2sta_inf_authreq_defer(wlandevice_t *wlandev,
157 hfa384x_InfFrame_t *inf);
158static void prism2sta_inf_psusercnt(wlandevice_t *wlandev,
159 hfa384x_InfFrame_t *inf);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700160
161/*----------------------------------------------------------------
162* prism2sta_open
163*
164* WLAN device open method. Called from p80211netdev when kernel
165* device open (start) method is called in response to the
166* SIOCSIIFFLAGS ioctl changing the flags bit IFF_UP
167* from clear to set.
168*
169* Arguments:
170* wlandev wlan device structure
171*
172* Returns:
173* 0 success
174* >0 f/w reported error
175* <0 driver reported error
176*
177* Side effects:
178*
179* Call context:
180* process thread
181----------------------------------------------------------------*/
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530182static int prism2sta_open(wlandevice_t *wlandev)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700183{
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700184 /* We don't currently have to do anything else.
185 * The setup of the MAC should be subsequently completed via
186 * the mlme commands.
187 * Higher layers know we're ready from dev->start==1 and
188 * dev->tbusy==0. Our rx path knows to pass up received/
189 * frames because of dev->flags&IFF_UP is true.
190 */
191
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700192 return 0;
193}
194
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700195/*----------------------------------------------------------------
196* prism2sta_close
197*
198* WLAN device close method. Called from p80211netdev when kernel
199* device close method is called in response to the
200* SIOCSIIFFLAGS ioctl changing the flags bit IFF_UP
201* from set to clear.
202*
203* Arguments:
204* wlandev wlan device structure
205*
206* Returns:
207* 0 success
208* >0 f/w reported error
209* <0 driver reported error
210*
211* Side effects:
212*
213* Call context:
214* process thread
215----------------------------------------------------------------*/
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530216static int prism2sta_close(wlandevice_t *wlandev)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700217{
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700218 /* We don't currently have to do anything else.
219 * Higher layers know we're not ready from dev->start==0 and
220 * dev->tbusy==1. Our rx path knows to not pass up received
221 * frames because of dev->flags&IFF_UP is false.
222 */
223
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700224 return 0;
225}
226
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700227/*----------------------------------------------------------------
228* prism2sta_reset
229*
230* Not currently implented.
231*
232* Arguments:
233* wlandev wlan device structure
234* none
235*
236* Returns:
237* nothing
238*
239* Side effects:
240*
241* Call context:
242* process thread
243----------------------------------------------------------------*/
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530244static void prism2sta_reset(wlandevice_t *wlandev)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700245{
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700246 return;
247}
248
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700249/*----------------------------------------------------------------
250* prism2sta_txframe
251*
252* Takes a frame from p80211 and queues it for transmission.
253*
254* Arguments:
255* wlandev wlan device structure
256* pb packet buffer struct. Contains an 802.11
257* data frame.
258* p80211_hdr points to the 802.11 header for the packet.
259* Returns:
260* 0 Success and more buffs available
261* 1 Success but no more buffs
262* 2 Allocation failure
263* 4 Buffer full or queue busy
264*
265* Side effects:
266*
267* Call context:
268* process thread
269----------------------------------------------------------------*/
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530270static int prism2sta_txframe(wlandevice_t *wlandev, struct sk_buff *skb,
Edgardo Hames93df38e2010-07-30 22:51:55 -0300271 union p80211_hdr *p80211_hdr,
Edgardo Hames51e48962010-07-31 13:06:52 -0300272 struct p80211_metawep *p80211_wep)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700273{
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100274 hfa384x_t *hw = (hfa384x_t *) wlandev->priv;
275 int result;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700276
277 /* If necessary, set the 802.11 WEP bit */
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100278 if ((wlandev->hostwep & (HOSTWEP_PRIVACYINVOKED | HOSTWEP_ENCRYPT)) ==
279 HOSTWEP_PRIVACYINVOKED) {
Moritz Muehlenhoffae262302009-01-21 22:00:45 +0100280 p80211_hdr->a3.fc |= cpu_to_le16(WLAN_SET_FC_ISWEP(1));
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700281 }
282
283 result = hfa384x_drvr_txframe(hw, skb, p80211_hdr, p80211_wep);
284
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700285 return result;
286}
287
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700288/*----------------------------------------------------------------
289* prism2sta_mlmerequest
290*
291* wlan command message handler. All we do here is pass the message
292* over to the prism2sta_mgmt_handler.
293*
294* Arguments:
295* wlandev wlan device structure
296* msg wlan command message
297* Returns:
298* 0 success
299* <0 successful acceptance of message, but we're
300* waiting for an async process to finish before
301* we're done with the msg. When the asynch
302* process is done, we'll call the p80211
303* function p80211req_confirm() .
304* >0 An error occurred while we were handling
305* the message.
306*
307* Side effects:
308*
309* Call context:
310* process thread
311----------------------------------------------------------------*/
Edgardo Hames3d049432010-08-02 17:17:17 -0300312static int prism2sta_mlmerequest(wlandevice_t *wlandev, struct p80211msg *msg)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700313{
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100314 hfa384x_t *hw = (hfa384x_t *) wlandev->priv;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700315
316 int result = 0;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700317
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100318 switch (msg->msgcode) {
319 case DIDmsg_dot11req_mibget:
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +0100320 pr_debug("Received mibget request\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700321 result = prism2mgmt_mibset_mibget(wlandev, msg);
322 break;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100323 case DIDmsg_dot11req_mibset:
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +0100324 pr_debug("Received mibset request\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700325 result = prism2mgmt_mibset_mibget(wlandev, msg);
326 break;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100327 case DIDmsg_dot11req_scan:
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +0100328 pr_debug("Received scan request\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700329 result = prism2mgmt_scan(wlandev, msg);
330 break;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100331 case DIDmsg_dot11req_scan_results:
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +0100332 pr_debug("Received scan_results request\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700333 result = prism2mgmt_scan_results(wlandev, msg);
334 break;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100335 case DIDmsg_dot11req_start:
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +0100336 pr_debug("Received mlme start request\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700337 result = prism2mgmt_start(wlandev, msg);
338 break;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100339 /*
340 * Prism2 specific messages
341 */
342 case DIDmsg_p2req_readpda:
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +0100343 pr_debug("Received mlme readpda request\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700344 result = prism2mgmt_readpda(wlandev, msg);
345 break;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100346 case DIDmsg_p2req_ramdl_state:
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +0100347 pr_debug("Received mlme ramdl_state request\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700348 result = prism2mgmt_ramdl_state(wlandev, msg);
349 break;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100350 case DIDmsg_p2req_ramdl_write:
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +0100351 pr_debug("Received mlme ramdl_write request\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700352 result = prism2mgmt_ramdl_write(wlandev, msg);
353 break;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100354 case DIDmsg_p2req_flashdl_state:
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +0100355 pr_debug("Received mlme flashdl_state request\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700356 result = prism2mgmt_flashdl_state(wlandev, msg);
357 break;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100358 case DIDmsg_p2req_flashdl_write:
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +0100359 pr_debug("Received mlme flashdl_write request\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700360 result = prism2mgmt_flashdl_write(wlandev, msg);
361 break;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100362 /*
363 * Linux specific messages
364 */
365 case DIDmsg_lnxreq_hostwep:
366 break; /* ignore me. */
367 case DIDmsg_lnxreq_ifstate:
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700368 {
Edgardo Hamesb6bb56e2010-08-02 16:20:39 -0300369 struct p80211msg_lnxreq_ifstate *ifstatemsg;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100370 pr_debug("Received mlme ifstate request\n");
Edgardo Hamesb6bb56e2010-08-02 16:20:39 -0300371 ifstatemsg = (struct p80211msg_lnxreq_ifstate *) msg;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100372 result =
373 prism2sta_ifstate(wlandev,
374 ifstatemsg->ifstate.data);
375 ifstatemsg->resultcode.status =
376 P80211ENUM_msgitem_status_data_ok;
377 ifstatemsg->resultcode.data = result;
378 result = 0;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700379 }
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100380 break;
381 case DIDmsg_lnxreq_wlansniff:
382 pr_debug("Received mlme wlansniff request\n");
383 result = prism2mgmt_wlansniff(wlandev, msg);
384 break;
385 case DIDmsg_lnxreq_autojoin:
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +0100386 pr_debug("Received mlme autojoin request\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700387 result = prism2mgmt_autojoin(wlandev, msg);
388 break;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100389 case DIDmsg_lnxreq_commsquality:{
Edgardo Hamesb6bb56e2010-08-02 16:20:39 -0300390 struct p80211msg_lnxreq_commsquality *qualmsg;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700391
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100392 pr_debug("Received commsquality request\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700393
Edgardo Hamesb6bb56e2010-08-02 16:20:39 -0300394 qualmsg = (struct p80211msg_lnxreq_commsquality *) msg;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700395
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100396 qualmsg->link.status =
397 P80211ENUM_msgitem_status_data_ok;
398 qualmsg->level.status =
399 P80211ENUM_msgitem_status_data_ok;
400 qualmsg->noise.status =
401 P80211ENUM_msgitem_status_data_ok;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700402
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530403 qualmsg->link.data = le16_to_cpu(hw->qual.CQ_currBSS);
404 qualmsg->level.data = le16_to_cpu(hw->qual.ASL_currBSS);
405 qualmsg->noise.data = le16_to_cpu(hw->qual.ANL_currFC);
Karl Reltoncb3126e2010-06-03 23:04:06 +0100406 qualmsg->txrate.data = hw->txrate;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700407
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100408 break;
409 }
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700410 default:
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100411 printk(KERN_WARNING "Unknown mgmt request message 0x%08x",
412 msg->msgcode);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700413 break;
414 }
415
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700416 return result;
417}
418
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700419/*----------------------------------------------------------------
420* prism2sta_ifstate
421*
422* Interface state. This is the primary WLAN interface enable/disable
423* handler. Following the driver/load/deviceprobe sequence, this
424* function must be called with a state of "enable" before any other
425* commands will be accepted.
426*
427* Arguments:
428* wlandev wlan device structure
429* msgp ptr to msg buffer
430*
431* Returns:
Christos Tzoumakisf9bd6492010-05-07 06:17:24 +0300432* A p80211 message resultcode value.
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700433*
434* Side effects:
435*
436* Call context:
437* process thread (usually)
438* interrupt
439----------------------------------------------------------------*/
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530440u32 prism2sta_ifstate(wlandevice_t *wlandev, u32 ifstate)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700441{
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100442 hfa384x_t *hw = (hfa384x_t *) wlandev->priv;
443 u32 result;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700444
445 result = P80211ENUM_resultcode_implementation_failure;
446
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +0100447 pr_debug("Current MSD state(%d), requesting(%d)\n",
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530448 wlandev->msdstate, ifstate);
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100449 switch (ifstate) {
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700450 case P80211ENUM_ifstate_fwload:
451 switch (wlandev->msdstate) {
452 case WLAN_MSD_HWPRESENT:
453 wlandev->msdstate = WLAN_MSD_FWLOAD_PENDING;
454 /*
455 * Initialize the device+driver sufficiently
456 * for firmware loading.
457 */
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530458 result = hfa384x_drvr_start(hw);
459 if (result) {
Moritz Muehlenhoffedbd6062009-01-25 21:55:00 +0100460 printk(KERN_ERR
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100461 "hfa384x_drvr_start() failed,"
462 "result=%d\n", (int)result);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700463 result =
Christos Tzoumakisf9bd6492010-05-07 06:17:24 +0300464 P80211ENUM_resultcode_implementation_failure;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700465 wlandev->msdstate = WLAN_MSD_HWPRESENT;
466 break;
467 }
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700468 wlandev->msdstate = WLAN_MSD_FWLOAD;
469 result = P80211ENUM_resultcode_success;
470 break;
471 case WLAN_MSD_FWLOAD:
472 hfa384x_cmd_initialize(hw);
473 result = P80211ENUM_resultcode_success;
474 break;
475 case WLAN_MSD_RUNNING:
Moritz Muehlenhoff9b9556e2009-01-25 21:55:01 +0100476 printk(KERN_WARNING
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100477 "Cannot enter fwload state from enable state,"
478 "you must disable first.\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700479 result = P80211ENUM_resultcode_invalid_parameters;
480 break;
481 case WLAN_MSD_HWFAIL:
482 default:
483 /* probe() had a problem or the msdstate contains
484 * an unrecognized value, there's nothing we can do.
485 */
486 result = P80211ENUM_resultcode_implementation_failure;
487 break;
488 }
489 break;
490 case P80211ENUM_ifstate_enable:
491 switch (wlandev->msdstate) {
492 case WLAN_MSD_HWPRESENT:
493 case WLAN_MSD_FWLOAD:
494 wlandev->msdstate = WLAN_MSD_RUNNING_PENDING;
495 /* Initialize the device+driver for full
496 * operation. Note that this might me an FWLOAD to
497 * to RUNNING transition so we must not do a chip
498 * or board level reset. Note that on failure,
499 * the MSD state is set to HWPRESENT because we
500 * can't make any assumptions about the state
501 * of the hardware or a previous firmware load.
502 */
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530503 result = hfa384x_drvr_start(hw);
504 if (result) {
Moritz Muehlenhoffedbd6062009-01-25 21:55:00 +0100505 printk(KERN_ERR
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100506 "hfa384x_drvr_start() failed,"
507 "result=%d\n", (int)result);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700508 result =
Christos Tzoumakisf9bd6492010-05-07 06:17:24 +0300509 P80211ENUM_resultcode_implementation_failure;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700510 wlandev->msdstate = WLAN_MSD_HWPRESENT;
511 break;
512 }
513
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530514 result = prism2sta_getcardinfo(wlandev);
515 if (result) {
Moritz Muehlenhoffedbd6062009-01-25 21:55:00 +0100516 printk(KERN_ERR
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100517 "prism2sta_getcardinfo() failed,"
518 "result=%d\n", (int)result);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700519 result =
Christos Tzoumakisf9bd6492010-05-07 06:17:24 +0300520 P80211ENUM_resultcode_implementation_failure;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700521 hfa384x_drvr_stop(hw);
522 wlandev->msdstate = WLAN_MSD_HWPRESENT;
523 break;
524 }
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530525 result = prism2sta_globalsetup(wlandev);
526 if (result) {
Moritz Muehlenhoffedbd6062009-01-25 21:55:00 +0100527 printk(KERN_ERR
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100528 "prism2sta_globalsetup() failed,"
529 "result=%d\n", (int)result);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700530 result =
Christos Tzoumakisf9bd6492010-05-07 06:17:24 +0300531 P80211ENUM_resultcode_implementation_failure;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700532 hfa384x_drvr_stop(hw);
533 wlandev->msdstate = WLAN_MSD_HWPRESENT;
534 break;
535 }
536 wlandev->msdstate = WLAN_MSD_RUNNING;
537 hw->join_ap = 0;
538 hw->join_retries = 60;
539 result = P80211ENUM_resultcode_success;
540 break;
541 case WLAN_MSD_RUNNING:
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100542 /* Do nothing, we're already in this state. */
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700543 result = P80211ENUM_resultcode_success;
544 break;
545 case WLAN_MSD_HWFAIL:
546 default:
547 /* probe() had a problem or the msdstate contains
548 * an unrecognized value, there's nothing we can do.
549 */
550 result = P80211ENUM_resultcode_implementation_failure;
551 break;
552 }
553 break;
554 case P80211ENUM_ifstate_disable:
555 switch (wlandev->msdstate) {
556 case WLAN_MSD_HWPRESENT:
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100557 /* Do nothing, we're already in this state. */
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700558 result = P80211ENUM_resultcode_success;
559 break;
560 case WLAN_MSD_FWLOAD:
561 case WLAN_MSD_RUNNING:
562 wlandev->msdstate = WLAN_MSD_HWPRESENT_PENDING;
563 /*
564 * TODO: Shut down the MAC completely. Here a chip
565 * or board level reset is probably called for.
566 * After a "disable" _all_ results are lost, even
567 * those from a fwload.
568 */
569 if (!wlandev->hwremoved)
570 netif_carrier_off(wlandev->netdev);
571
572 hfa384x_drvr_stop(hw);
573
574 wlandev->macmode = WLAN_MACMODE_NONE;
575 wlandev->msdstate = WLAN_MSD_HWPRESENT;
576 result = P80211ENUM_resultcode_success;
577 break;
578 case WLAN_MSD_HWFAIL:
579 default:
580 /* probe() had a problem or the msdstate contains
581 * an unrecognized value, there's nothing we can do.
582 */
583 result = P80211ENUM_resultcode_implementation_failure;
584 break;
585 }
586 break;
587 default:
588 result = P80211ENUM_resultcode_invalid_parameters;
589 break;
590 }
591
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700592 return result;
593}
594
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700595/*----------------------------------------------------------------
596* prism2sta_getcardinfo
597*
598* Collect the NICID, firmware version and any other identifiers
599* we'd like to have in host-side data structures.
600*
601* Arguments:
602* wlandev wlan device structure
603*
604* Returns:
605* 0 success
606* >0 f/w reported error
607* <0 driver reported error
608*
609* Side effects:
610*
611* Call context:
612* Either.
613----------------------------------------------------------------*/
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530614static int prism2sta_getcardinfo(wlandevice_t *wlandev)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700615{
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100616 int result = 0;
617 hfa384x_t *hw = (hfa384x_t *) wlandev->priv;
618 u16 temp;
619 u8 snum[HFA384x_RID_NICSERIALNUMBER_LEN];
620 char pstr[(HFA384x_RID_NICSERIALNUMBER_LEN * 4) + 1];
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700621
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700622 /* Collect version and compatibility info */
623 /* Some are critical, some are not */
624 /* NIC identity */
625 result = hfa384x_drvr_getconfig(hw, HFA384x_RID_NICIDENTITY,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100626 &hw->ident_nic,
627 sizeof(hfa384x_compident_t));
628 if (result) {
Moritz Muehlenhoffedbd6062009-01-25 21:55:00 +0100629 printk(KERN_ERR "Failed to retrieve NICIDENTITY\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700630 goto failed;
631 }
632
633 /* get all the nic id fields in host byte order */
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +0100634 hw->ident_nic.id = le16_to_cpu(hw->ident_nic.id);
635 hw->ident_nic.variant = le16_to_cpu(hw->ident_nic.variant);
636 hw->ident_nic.major = le16_to_cpu(hw->ident_nic.major);
637 hw->ident_nic.minor = le16_to_cpu(hw->ident_nic.minor);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700638
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100639 printk(KERN_INFO "ident: nic h/w: id=0x%02x %d.%d.%d\n",
640 hw->ident_nic.id, hw->ident_nic.major,
641 hw->ident_nic.minor, hw->ident_nic.variant);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700642
643 /* Primary f/w identity */
644 result = hfa384x_drvr_getconfig(hw, HFA384x_RID_PRIIDENTITY,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100645 &hw->ident_pri_fw,
646 sizeof(hfa384x_compident_t));
647 if (result) {
Moritz Muehlenhoffedbd6062009-01-25 21:55:00 +0100648 printk(KERN_ERR "Failed to retrieve PRIIDENTITY\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700649 goto failed;
650 }
651
652 /* get all the private fw id fields in host byte order */
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +0100653 hw->ident_pri_fw.id = le16_to_cpu(hw->ident_pri_fw.id);
654 hw->ident_pri_fw.variant = le16_to_cpu(hw->ident_pri_fw.variant);
655 hw->ident_pri_fw.major = le16_to_cpu(hw->ident_pri_fw.major);
656 hw->ident_pri_fw.minor = le16_to_cpu(hw->ident_pri_fw.minor);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700657
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100658 printk(KERN_INFO "ident: pri f/w: id=0x%02x %d.%d.%d\n",
659 hw->ident_pri_fw.id, hw->ident_pri_fw.major,
660 hw->ident_pri_fw.minor, hw->ident_pri_fw.variant);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700661
662 /* Station (Secondary?) f/w identity */
663 result = hfa384x_drvr_getconfig(hw, HFA384x_RID_STAIDENTITY,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100664 &hw->ident_sta_fw,
665 sizeof(hfa384x_compident_t));
666 if (result) {
Moritz Muehlenhoffedbd6062009-01-25 21:55:00 +0100667 printk(KERN_ERR "Failed to retrieve STAIDENTITY\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700668 goto failed;
669 }
670
671 if (hw->ident_nic.id < 0x8000) {
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100672 printk(KERN_ERR
673 "FATAL: Card is not an Intersil Prism2/2.5/3\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700674 result = -1;
675 goto failed;
676 }
677
678 /* get all the station fw id fields in host byte order */
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +0100679 hw->ident_sta_fw.id = le16_to_cpu(hw->ident_sta_fw.id);
680 hw->ident_sta_fw.variant = le16_to_cpu(hw->ident_sta_fw.variant);
681 hw->ident_sta_fw.major = le16_to_cpu(hw->ident_sta_fw.major);
682 hw->ident_sta_fw.minor = le16_to_cpu(hw->ident_sta_fw.minor);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700683
684 /* strip out the 'special' variant bits */
Moritz Muehlenhoff7f6e0e42009-01-25 21:54:55 +0100685 hw->mm_mods = hw->ident_sta_fw.variant & (BIT(14) | BIT(15));
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100686 hw->ident_sta_fw.variant &= ~((u16) (BIT(14) | BIT(15)));
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700687
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100688 if (hw->ident_sta_fw.id == 0x1f) {
Moritz Muehlenhoff350f2f4b2009-01-25 21:54:57 +0100689 printk(KERN_INFO
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100690 "ident: sta f/w: id=0x%02x %d.%d.%d\n",
691 hw->ident_sta_fw.id, hw->ident_sta_fw.major,
692 hw->ident_sta_fw.minor, hw->ident_sta_fw.variant);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700693 } else {
Moritz Muehlenhoff350f2f4b2009-01-25 21:54:57 +0100694 printk(KERN_INFO
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100695 "ident: ap f/w: id=0x%02x %d.%d.%d\n",
696 hw->ident_sta_fw.id, hw->ident_sta_fw.major,
697 hw->ident_sta_fw.minor, hw->ident_sta_fw.variant);
Moritz Muehlenhoffedbd6062009-01-25 21:55:00 +0100698 printk(KERN_ERR "Unsupported Tertiary AP firmeare loaded!\n");
Solomon Peachy5db8dcc2008-10-27 11:14:02 -0400699 goto failed;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700700 }
701
702 /* Compatibility range, Modem supplier */
703 result = hfa384x_drvr_getconfig(hw, HFA384x_RID_MFISUPRANGE,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100704 &hw->cap_sup_mfi,
705 sizeof(hfa384x_caplevel_t));
706 if (result) {
Moritz Muehlenhoffedbd6062009-01-25 21:55:00 +0100707 printk(KERN_ERR "Failed to retrieve MFISUPRANGE\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700708 goto failed;
709 }
710
711 /* get all the Compatibility range, modem interface supplier
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100712 fields in byte order */
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +0100713 hw->cap_sup_mfi.role = le16_to_cpu(hw->cap_sup_mfi.role);
714 hw->cap_sup_mfi.id = le16_to_cpu(hw->cap_sup_mfi.id);
715 hw->cap_sup_mfi.variant = le16_to_cpu(hw->cap_sup_mfi.variant);
716 hw->cap_sup_mfi.bottom = le16_to_cpu(hw->cap_sup_mfi.bottom);
717 hw->cap_sup_mfi.top = le16_to_cpu(hw->cap_sup_mfi.top);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700718
Moritz Muehlenhoff350f2f4b2009-01-25 21:54:57 +0100719 printk(KERN_INFO
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100720 "MFI:SUP:role=0x%02x:id=0x%02x:var=0x%02x:b/t=%d/%d\n",
721 hw->cap_sup_mfi.role, hw->cap_sup_mfi.id,
722 hw->cap_sup_mfi.variant, hw->cap_sup_mfi.bottom,
723 hw->cap_sup_mfi.top);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700724
725 /* Compatibility range, Controller supplier */
726 result = hfa384x_drvr_getconfig(hw, HFA384x_RID_CFISUPRANGE,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100727 &hw->cap_sup_cfi,
728 sizeof(hfa384x_caplevel_t));
729 if (result) {
Moritz Muehlenhoffedbd6062009-01-25 21:55:00 +0100730 printk(KERN_ERR "Failed to retrieve CFISUPRANGE\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700731 goto failed;
732 }
733
734 /* get all the Compatibility range, controller interface supplier
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100735 fields in byte order */
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +0100736 hw->cap_sup_cfi.role = le16_to_cpu(hw->cap_sup_cfi.role);
737 hw->cap_sup_cfi.id = le16_to_cpu(hw->cap_sup_cfi.id);
738 hw->cap_sup_cfi.variant = le16_to_cpu(hw->cap_sup_cfi.variant);
739 hw->cap_sup_cfi.bottom = le16_to_cpu(hw->cap_sup_cfi.bottom);
740 hw->cap_sup_cfi.top = le16_to_cpu(hw->cap_sup_cfi.top);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700741
Moritz Muehlenhoff350f2f4b2009-01-25 21:54:57 +0100742 printk(KERN_INFO
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100743 "CFI:SUP:role=0x%02x:id=0x%02x:var=0x%02x:b/t=%d/%d\n",
744 hw->cap_sup_cfi.role, hw->cap_sup_cfi.id,
745 hw->cap_sup_cfi.variant, hw->cap_sup_cfi.bottom,
746 hw->cap_sup_cfi.top);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700747
748 /* Compatibility range, Primary f/w supplier */
749 result = hfa384x_drvr_getconfig(hw, HFA384x_RID_PRISUPRANGE,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100750 &hw->cap_sup_pri,
751 sizeof(hfa384x_caplevel_t));
752 if (result) {
Moritz Muehlenhoffedbd6062009-01-25 21:55:00 +0100753 printk(KERN_ERR "Failed to retrieve PRISUPRANGE\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700754 goto failed;
755 }
756
757 /* get all the Compatibility range, primary firmware supplier
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100758 fields in byte order */
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +0100759 hw->cap_sup_pri.role = le16_to_cpu(hw->cap_sup_pri.role);
760 hw->cap_sup_pri.id = le16_to_cpu(hw->cap_sup_pri.id);
761 hw->cap_sup_pri.variant = le16_to_cpu(hw->cap_sup_pri.variant);
762 hw->cap_sup_pri.bottom = le16_to_cpu(hw->cap_sup_pri.bottom);
763 hw->cap_sup_pri.top = le16_to_cpu(hw->cap_sup_pri.top);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700764
Moritz Muehlenhoff350f2f4b2009-01-25 21:54:57 +0100765 printk(KERN_INFO
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100766 "PRI:SUP:role=0x%02x:id=0x%02x:var=0x%02x:b/t=%d/%d\n",
767 hw->cap_sup_pri.role, hw->cap_sup_pri.id,
768 hw->cap_sup_pri.variant, hw->cap_sup_pri.bottom,
769 hw->cap_sup_pri.top);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700770
771 /* Compatibility range, Station f/w supplier */
772 result = hfa384x_drvr_getconfig(hw, HFA384x_RID_STASUPRANGE,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100773 &hw->cap_sup_sta,
774 sizeof(hfa384x_caplevel_t));
775 if (result) {
Moritz Muehlenhoffedbd6062009-01-25 21:55:00 +0100776 printk(KERN_ERR "Failed to retrieve STASUPRANGE\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700777 goto failed;
778 }
779
780 /* get all the Compatibility range, station firmware supplier
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100781 fields in byte order */
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +0100782 hw->cap_sup_sta.role = le16_to_cpu(hw->cap_sup_sta.role);
783 hw->cap_sup_sta.id = le16_to_cpu(hw->cap_sup_sta.id);
784 hw->cap_sup_sta.variant = le16_to_cpu(hw->cap_sup_sta.variant);
785 hw->cap_sup_sta.bottom = le16_to_cpu(hw->cap_sup_sta.bottom);
786 hw->cap_sup_sta.top = le16_to_cpu(hw->cap_sup_sta.top);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700787
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100788 if (hw->cap_sup_sta.id == 0x04) {
Moritz Muehlenhoff350f2f4b2009-01-25 21:54:57 +0100789 printk(KERN_INFO
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100790 "STA:SUP:role=0x%02x:id=0x%02x:var=0x%02x:b/t=%d/%d\n",
791 hw->cap_sup_sta.role, hw->cap_sup_sta.id,
792 hw->cap_sup_sta.variant, hw->cap_sup_sta.bottom,
793 hw->cap_sup_sta.top);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700794 } else {
Moritz Muehlenhoff350f2f4b2009-01-25 21:54:57 +0100795 printk(KERN_INFO
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100796 "AP:SUP:role=0x%02x:id=0x%02x:var=0x%02x:b/t=%d/%d\n",
797 hw->cap_sup_sta.role, hw->cap_sup_sta.id,
798 hw->cap_sup_sta.variant, hw->cap_sup_sta.bottom,
799 hw->cap_sup_sta.top);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700800 }
801
802 /* Compatibility range, primary f/w actor, CFI supplier */
803 result = hfa384x_drvr_getconfig(hw, HFA384x_RID_PRI_CFIACTRANGES,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100804 &hw->cap_act_pri_cfi,
805 sizeof(hfa384x_caplevel_t));
806 if (result) {
Moritz Muehlenhoffedbd6062009-01-25 21:55:00 +0100807 printk(KERN_ERR "Failed to retrieve PRI_CFIACTRANGES\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700808 goto failed;
809 }
810
811 /* get all the Compatibility range, primary f/w actor, CFI supplier
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100812 fields in byte order */
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +0100813 hw->cap_act_pri_cfi.role = le16_to_cpu(hw->cap_act_pri_cfi.role);
814 hw->cap_act_pri_cfi.id = le16_to_cpu(hw->cap_act_pri_cfi.id);
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530815 hw->cap_act_pri_cfi.variant = le16_to_cpu(hw->cap_act_pri_cfi.variant);
816 hw->cap_act_pri_cfi.bottom = le16_to_cpu(hw->cap_act_pri_cfi.bottom);
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +0100817 hw->cap_act_pri_cfi.top = le16_to_cpu(hw->cap_act_pri_cfi.top);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700818
Moritz Muehlenhoff350f2f4b2009-01-25 21:54:57 +0100819 printk(KERN_INFO
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100820 "PRI-CFI:ACT:role=0x%02x:id=0x%02x:var=0x%02x:b/t=%d/%d\n",
821 hw->cap_act_pri_cfi.role, hw->cap_act_pri_cfi.id,
822 hw->cap_act_pri_cfi.variant, hw->cap_act_pri_cfi.bottom,
823 hw->cap_act_pri_cfi.top);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700824
825 /* Compatibility range, sta f/w actor, CFI supplier */
826 result = hfa384x_drvr_getconfig(hw, HFA384x_RID_STA_CFIACTRANGES,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100827 &hw->cap_act_sta_cfi,
828 sizeof(hfa384x_caplevel_t));
829 if (result) {
Moritz Muehlenhoffedbd6062009-01-25 21:55:00 +0100830 printk(KERN_ERR "Failed to retrieve STA_CFIACTRANGES\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700831 goto failed;
832 }
833
834 /* get all the Compatibility range, station f/w actor, CFI supplier
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100835 fields in byte order */
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +0100836 hw->cap_act_sta_cfi.role = le16_to_cpu(hw->cap_act_sta_cfi.role);
837 hw->cap_act_sta_cfi.id = le16_to_cpu(hw->cap_act_sta_cfi.id);
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530838 hw->cap_act_sta_cfi.variant = le16_to_cpu(hw->cap_act_sta_cfi.variant);
839 hw->cap_act_sta_cfi.bottom = le16_to_cpu(hw->cap_act_sta_cfi.bottom);
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +0100840 hw->cap_act_sta_cfi.top = le16_to_cpu(hw->cap_act_sta_cfi.top);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700841
Moritz Muehlenhoff350f2f4b2009-01-25 21:54:57 +0100842 printk(KERN_INFO
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100843 "STA-CFI:ACT:role=0x%02x:id=0x%02x:var=0x%02x:b/t=%d/%d\n",
844 hw->cap_act_sta_cfi.role, hw->cap_act_sta_cfi.id,
845 hw->cap_act_sta_cfi.variant, hw->cap_act_sta_cfi.bottom,
846 hw->cap_act_sta_cfi.top);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700847
848 /* Compatibility range, sta f/w actor, MFI supplier */
849 result = hfa384x_drvr_getconfig(hw, HFA384x_RID_STA_MFIACTRANGES,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100850 &hw->cap_act_sta_mfi,
851 sizeof(hfa384x_caplevel_t));
852 if (result) {
Moritz Muehlenhoffedbd6062009-01-25 21:55:00 +0100853 printk(KERN_ERR "Failed to retrieve STA_MFIACTRANGES\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700854 goto failed;
855 }
856
857 /* get all the Compatibility range, station f/w actor, MFI supplier
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100858 fields in byte order */
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +0100859 hw->cap_act_sta_mfi.role = le16_to_cpu(hw->cap_act_sta_mfi.role);
860 hw->cap_act_sta_mfi.id = le16_to_cpu(hw->cap_act_sta_mfi.id);
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530861 hw->cap_act_sta_mfi.variant = le16_to_cpu(hw->cap_act_sta_mfi.variant);
862 hw->cap_act_sta_mfi.bottom = le16_to_cpu(hw->cap_act_sta_mfi.bottom);
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +0100863 hw->cap_act_sta_mfi.top = le16_to_cpu(hw->cap_act_sta_mfi.top);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700864
Moritz Muehlenhoff350f2f4b2009-01-25 21:54:57 +0100865 printk(KERN_INFO
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100866 "STA-MFI:ACT:role=0x%02x:id=0x%02x:var=0x%02x:b/t=%d/%d\n",
867 hw->cap_act_sta_mfi.role, hw->cap_act_sta_mfi.id,
868 hw->cap_act_sta_mfi.variant, hw->cap_act_sta_mfi.bottom,
869 hw->cap_act_sta_mfi.top);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700870
871 /* Serial Number */
872 result = hfa384x_drvr_getconfig(hw, HFA384x_RID_NICSERIALNUMBER,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100873 snum, HFA384x_RID_NICSERIALNUMBER_LEN);
874 if (!result) {
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700875 wlan_mkprintstr(snum, HFA384x_RID_NICSERIALNUMBER_LEN,
876 pstr, sizeof(pstr));
Moritz Muehlenhoff350f2f4b2009-01-25 21:54:57 +0100877 printk(KERN_INFO "Prism2 card SN: %s\n", pstr);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700878 } else {
Moritz Muehlenhoffedbd6062009-01-25 21:55:00 +0100879 printk(KERN_ERR "Failed to retrieve Prism2 Card SN\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700880 goto failed;
881 }
882
883 /* Collect the MAC address */
884 result = hfa384x_drvr_getconfig(hw, HFA384x_RID_CNFOWNMACADDR,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100885 wlandev->netdev->dev_addr, ETH_ALEN);
886 if (result != 0) {
Moritz Muehlenhoffedbd6062009-01-25 21:55:00 +0100887 printk(KERN_ERR "Failed to retrieve mac address\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700888 goto failed;
889 }
890
891 /* short preamble is always implemented */
892 wlandev->nsdcaps |= P80211_NSDCAP_SHORT_PREAMBLE;
893
894 /* find out if hardware wep is implemented */
895 hfa384x_drvr_getconfig16(hw, HFA384x_RID_PRIVACYOPTIMP, &temp);
896 if (temp)
897 wlandev->nsdcaps |= P80211_NSDCAP_HARDWAREWEP;
898
899 /* get the dBm Scaling constant */
900 hfa384x_drvr_getconfig16(hw, HFA384x_RID_CNFDBMADJUST, &temp);
901 hw->dbmadjust = temp;
902
903 /* Only enable scan by default on newer firmware */
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100904 if (HFA384x_FIRMWARE_VERSION(hw->ident_sta_fw.major,
905 hw->ident_sta_fw.minor,
906 hw->ident_sta_fw.variant) <
907 HFA384x_FIRMWARE_VERSION(1, 5, 5)) {
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700908 wlandev->nsdcaps |= P80211_NSDCAP_NOSCAN;
909 }
910
911 /* TODO: Set any internally managed config items */
912
913 goto done;
914failed:
Moritz Muehlenhoffedbd6062009-01-25 21:55:00 +0100915 printk(KERN_ERR "Failed, result=%d\n", result);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700916done:
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700917 return result;
918}
919
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700920/*----------------------------------------------------------------
921* prism2sta_globalsetup
922*
923* Set any global RIDs that we want to set at device activation.
924*
925* Arguments:
926* wlandev wlan device structure
927*
928* Returns:
929* 0 success
930* >0 f/w reported error
931* <0 driver reported error
932*
933* Side effects:
934*
935* Call context:
936* process thread
937----------------------------------------------------------------*/
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530938static int prism2sta_globalsetup(wlandevice_t *wlandev)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700939{
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100940 hfa384x_t *hw = (hfa384x_t *) wlandev->priv;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700941
942 /* Set the maximum frame size */
943 return hfa384x_drvr_setconfig16(hw, HFA384x_RID_CNFMAXDATALEN,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100944 WLAN_DATA_MAXLEN);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700945}
946
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530947static int prism2sta_setmulticast(wlandevice_t *wlandev, netdevice_t *dev)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700948{
949 int result = 0;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100950 hfa384x_t *hw = (hfa384x_t *) wlandev->priv;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700951
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100952 u16 promisc;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700953
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700954 /* If we're not ready, what's the point? */
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100955 if (hw->state != HFA384x_STATE_RUNNING)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700956 goto exit;
957
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100958 if ((dev->flags & (IFF_PROMISC | IFF_ALLMULTI)) != 0)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700959 promisc = P80211ENUM_truth_true;
960 else
961 promisc = P80211ENUM_truth_false;
962
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100963 result =
964 hfa384x_drvr_setconfig16_async(hw, HFA384x_RID_PROMISCMODE,
965 promisc);
966exit:
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700967 return result;
968}
969
970/*----------------------------------------------------------------
971* prism2sta_inf_handover
972*
973* Handles the receipt of a Handover info frame. Should only be present
974* in APs only.
975*
976* Arguments:
977* wlandev wlan device structure
978* inf ptr to info frame (contents in hfa384x order)
979*
980* Returns:
981* nothing
982*
983* Side effects:
984*
985* Call context:
986* interrupt
987----------------------------------------------------------------*/
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530988static void prism2sta_inf_handover(wlandevice_t *wlandev,
989 hfa384x_InfFrame_t *inf)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700990{
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +0100991 pr_debug("received infoframe:HANDOVER (unhandled)\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700992 return;
993}
994
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700995/*----------------------------------------------------------------
996* prism2sta_inf_tallies
997*
998* Handles the receipt of a CommTallies info frame.
999*
1000* Arguments:
1001* wlandev wlan device structure
1002* inf ptr to info frame (contents in hfa384x order)
1003*
1004* Returns:
1005* nothing
1006*
1007* Side effects:
1008*
1009* Call context:
1010* interrupt
1011----------------------------------------------------------------*/
Mithlesh Thukral297f06c2009-06-10 19:36:11 +05301012static void prism2sta_inf_tallies(wlandevice_t *wlandev,
1013 hfa384x_InfFrame_t *inf)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001014{
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001015 hfa384x_t *hw = (hfa384x_t *) wlandev->priv;
1016 u16 *src16;
1017 u32 *dst;
1018 u32 *src32;
1019 int i;
1020 int cnt;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001021
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001022 /*
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001023 ** Determine if these are 16-bit or 32-bit tallies, based on the
1024 ** record length of the info record.
1025 */
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001026
Solomon Peachyaaad4302008-10-29 10:42:53 -04001027 cnt = sizeof(hfa384x_CommTallies32_t) / sizeof(u32);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001028 if (inf->framelen > 22) {
Svenne Krap5dd8acc2010-02-14 18:59:00 +01001029 dst = (u32 *) &hw->tallies;
1030 src32 = (u32 *) &inf->info.commtallies32;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001031 for (i = 0; i < cnt; i++, dst++, src32++)
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +01001032 *dst += le32_to_cpu(*src32);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001033 } else {
Svenne Krap5dd8acc2010-02-14 18:59:00 +01001034 dst = (u32 *) &hw->tallies;
1035 src16 = (u16 *) &inf->info.commtallies16;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001036 for (i = 0; i < cnt; i++, dst++, src16++)
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +01001037 *dst += le16_to_cpu(*src16);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001038 }
1039
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001040 return;
1041}
1042
1043/*----------------------------------------------------------------
1044* prism2sta_inf_scanresults
1045*
1046* Handles the receipt of a Scan Results info frame.
1047*
1048* Arguments:
1049* wlandev wlan device structure
1050* inf ptr to info frame (contents in hfa384x order)
1051*
1052* Returns:
1053* nothing
1054*
1055* Side effects:
1056*
1057* Call context:
1058* interrupt
1059----------------------------------------------------------------*/
Mithlesh Thukral297f06c2009-06-10 19:36:11 +05301060static void prism2sta_inf_scanresults(wlandevice_t *wlandev,
1061 hfa384x_InfFrame_t *inf)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001062{
1063
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001064 hfa384x_t *hw = (hfa384x_t *) wlandev->priv;
1065 int nbss;
1066 hfa384x_ScanResult_t *sr = &(inf->info.scanresult);
1067 int i;
1068 hfa384x_JoinRequest_data_t joinreq;
1069 int result;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001070
1071 /* Get the number of results, first in bytes, then in results */
Solomon Peachyaaad4302008-10-29 10:42:53 -04001072 nbss = (inf->framelen * sizeof(u16)) -
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001073 sizeof(inf->infotype) - sizeof(inf->info.scanresult.scanreason);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001074 nbss /= sizeof(hfa384x_ScanResultSub_t);
1075
1076 /* Print em */
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +01001077 pr_debug("rx scanresults, reason=%d, nbss=%d:\n",
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301078 inf->info.scanresult.scanreason, nbss);
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001079 for (i = 0; i < nbss; i++) {
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +01001080 pr_debug("chid=%d anl=%d sl=%d bcnint=%d\n",
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301081 sr->result[i].chid,
1082 sr->result[i].anl,
1083 sr->result[i].sl, sr->result[i].bcnint);
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +01001084 pr_debug(" capinfo=0x%04x proberesp_rate=%d\n",
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301085 sr->result[i].capinfo, sr->result[i].proberesp_rate);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001086 }
1087 /* issue a join request */
1088 joinreq.channel = sr->result[0].chid;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001089 memcpy(joinreq.bssid, sr->result[0].bssid, WLAN_BSSID_LEN);
1090 result = hfa384x_drvr_setconfig(hw,
1091 HFA384x_RID_JOINREQUEST,
1092 &joinreq, HFA384x_RID_JOINREQUEST_LEN);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001093 if (result) {
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001094 printk(KERN_ERR "setconfig(joinreq) failed, result=%d\n",
1095 result);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001096 }
1097
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001098 return;
1099}
1100
1101/*----------------------------------------------------------------
1102* prism2sta_inf_hostscanresults
1103*
1104* Handles the receipt of a Scan Results info frame.
1105*
1106* Arguments:
1107* wlandev wlan device structure
1108* inf ptr to info frame (contents in hfa384x order)
1109*
1110* Returns:
1111* nothing
1112*
1113* Side effects:
1114*
1115* Call context:
1116* interrupt
1117----------------------------------------------------------------*/
Mithlesh Thukral297f06c2009-06-10 19:36:11 +05301118static void prism2sta_inf_hostscanresults(wlandevice_t *wlandev,
1119 hfa384x_InfFrame_t *inf)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001120{
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001121 hfa384x_t *hw = (hfa384x_t *) wlandev->priv;
1122 int nbss;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001123
1124 nbss = (inf->framelen - 3) / 32;
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +01001125 pr_debug("Received %d hostscan results\n", nbss);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001126
1127 if (nbss > 32)
1128 nbss = 32;
1129
Moritz Muehlenhoff7c98f712009-02-09 19:33:42 +01001130 kfree(hw->scanresults);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001131
1132 hw->scanresults = kmalloc(sizeof(hfa384x_InfFrame_t), GFP_ATOMIC);
1133 memcpy(hw->scanresults, inf, sizeof(hfa384x_InfFrame_t));
1134
1135 if (nbss == 0)
1136 nbss = -1;
1137
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001138 /* Notify/wake the sleeping caller. */
1139 hw->scanflag = nbss;
1140 wake_up_interruptible(&hw->cmdq);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001141};
1142
1143/*----------------------------------------------------------------
1144* prism2sta_inf_chinforesults
1145*
1146* Handles the receipt of a Channel Info Results info frame.
1147*
1148* Arguments:
1149* wlandev wlan device structure
1150* inf ptr to info frame (contents in hfa384x order)
1151*
1152* Returns:
1153* nothing
1154*
1155* Side effects:
1156*
1157* Call context:
1158* interrupt
1159----------------------------------------------------------------*/
Mithlesh Thukral297f06c2009-06-10 19:36:11 +05301160static void prism2sta_inf_chinforesults(wlandevice_t *wlandev,
1161 hfa384x_InfFrame_t *inf)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001162{
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001163 hfa384x_t *hw = (hfa384x_t *) wlandev->priv;
1164 unsigned int i, n;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001165
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001166 hw->channel_info.results.scanchannels =
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +01001167 le16_to_cpu(inf->info.chinforesult.scanchannels);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001168
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001169 for (i = 0, n = 0; i < HFA384x_CHINFORESULT_MAX; i++) {
1170 if (hw->channel_info.results.scanchannels & (1 << i)) {
1171 int channel =
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301172 le16_to_cpu(inf->info.chinforesult.result[n].chid) -
1173 1;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001174 hfa384x_ChInfoResultSub_t *chinforesult =
1175 &hw->channel_info.results.result[channel];
1176 chinforesult->chid = channel;
1177 chinforesult->anl =
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301178 le16_to_cpu(inf->info.chinforesult.result[n].anl);
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001179 chinforesult->pnl =
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301180 le16_to_cpu(inf->info.chinforesult.result[n].pnl);
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001181 chinforesult->active =
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +01001182 le16_to_cpu(inf->info.chinforesult.result[n].
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301183 active);
Christos Tzoumakisf9bd6492010-05-07 06:17:24 +03001184 pr_debug
1185 ("chinfo: channel %d, %s level (avg/peak)=%d/%d dB, pcf %d\n",
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301186 channel + 1,
1187 chinforesult->
1188 active & HFA384x_CHINFORESULT_BSSACTIVE ? "signal"
1189 : "noise", chinforesult->anl, chinforesult->pnl,
1190 chinforesult->
1191 active & HFA384x_CHINFORESULT_PCFACTIVE ? 1 : 0);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001192 n++;
1193 }
1194 }
1195 atomic_set(&hw->channel_info.done, 2);
1196
1197 hw->channel_info.count = n;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001198 return;
1199}
1200
1201void prism2sta_processing_defer(struct work_struct *data)
1202{
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001203 hfa384x_t *hw = container_of(data, struct hfa384x, link_bh);
1204 wlandevice_t *wlandev = hw->wlandev;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001205 hfa384x_bytestr32_t ssid;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001206 int result;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001207
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001208 /* First let's process the auth frames */
1209 {
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001210 struct sk_buff *skb;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001211 hfa384x_InfFrame_t *inf;
1212
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001213 while ((skb = skb_dequeue(&hw->authq))) {
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001214 inf = (hfa384x_InfFrame_t *) skb->data;
1215 prism2sta_inf_authreq_defer(wlandev, inf);
1216 }
1217
1218 }
1219
1220 /* Now let's handle the linkstatus stuff */
1221 if (hw->link_status == hw->link_status_new)
1222 goto failed;
1223
1224 hw->link_status = hw->link_status_new;
1225
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001226 switch (hw->link_status) {
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001227 case HFA384x_LINK_NOTCONNECTED:
1228 /* I'm currently assuming that this is the initial link
1229 * state. It should only be possible immediately
1230 * following an Enable command.
1231 * Response:
1232 * Block Transmits, Ignore receives of data frames
1233 */
1234 netif_carrier_off(wlandev->netdev);
1235
Moritz Muehlenhoff350f2f4b2009-01-25 21:54:57 +01001236 printk(KERN_INFO "linkstatus=NOTCONNECTED (unhandled)\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001237 break;
1238
1239 case HFA384x_LINK_CONNECTED:
1240 /* This one indicates a successful scan/join/auth/assoc.
1241 * When we have the full MLME complement, this event will
1242 * signify successful completion of both mlme_authenticate
1243 * and mlme_associate. State management will get a little
1244 * ugly here.
1245 * Response:
1246 * Indicate authentication and/or association
1247 * Enable Transmits, Receives and pass up data frames
1248 */
1249
1250 netif_carrier_on(wlandev->netdev);
1251
Christos Tzoumakisf9bd6492010-05-07 06:17:24 +03001252 /* If we are joining a specific AP, set our
1253 * state and reset retries
1254 */
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001255 if (hw->join_ap == 1)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001256 hw->join_ap = 2;
1257 hw->join_retries = 60;
1258
1259 /* Don't call this in monitor mode */
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001260 if (wlandev->netdev->type == ARPHRD_ETHER) {
1261 u16 portstatus;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001262
Moritz Muehlenhoff350f2f4b2009-01-25 21:54:57 +01001263 printk(KERN_INFO "linkstatus=CONNECTED\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001264
1265 /* For non-usb devices, we can use the sync versions */
1266 /* Collect the BSSID, and set state to allow tx */
1267
1268 result = hfa384x_drvr_getconfig(hw,
Christos Tzoumakisf9bd6492010-05-07 06:17:24 +03001269 HFA384x_RID_CURRENTBSSID,
1270 wlandev->bssid,
1271 WLAN_BSSID_LEN);
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001272 if (result) {
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301273 pr_debug
1274 ("getconfig(0x%02x) failed, result = %d\n",
1275 HFA384x_RID_CURRENTBSSID, result);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001276 goto failed;
1277 }
1278
1279 result = hfa384x_drvr_getconfig(hw,
1280 HFA384x_RID_CURRENTSSID,
1281 &ssid, sizeof(ssid));
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001282 if (result) {
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301283 pr_debug
1284 ("getconfig(0x%02x) failed, result = %d\n",
1285 HFA384x_RID_CURRENTSSID, result);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001286 goto failed;
1287 }
Svenne Krap5dd8acc2010-02-14 18:59:00 +01001288 prism2mgmt_bytestr2pstr((hfa384x_bytestr_t *) &ssid,
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301289 (p80211pstrd_t *) &
1290 wlandev->ssid);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001291
1292 /* Collect the port status */
1293 result = hfa384x_drvr_getconfig16(hw,
Christos Tzoumakisf9bd6492010-05-07 06:17:24 +03001294 HFA384x_RID_PORTSTATUS,
1295 &portstatus);
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001296 if (result) {
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301297 pr_debug
1298 ("getconfig(0x%02x) failed, result = %d\n",
1299 HFA384x_RID_PORTSTATUS, result);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001300 goto failed;
1301 }
1302 wlandev->macmode =
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001303 (portstatus == HFA384x_PSTATUS_CONN_IBSS) ?
1304 WLAN_MACMODE_IBSS_STA : WLAN_MACMODE_ESS_STA;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001305
Karl Reltoncb3126e2010-06-03 23:04:06 +01001306 /* signal back up to cfg80211 layer */
1307 prism2_connect_result(wlandev, P80211ENUM_truth_false);
1308
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001309 /* Get the ball rolling on the comms quality stuff */
1310 prism2sta_commsqual_defer(&hw->commsqual_bh);
1311 }
1312 break;
1313
1314 case HFA384x_LINK_DISCONNECTED:
1315 /* This one indicates that our association is gone. We've
1316 * lost connection with the AP and/or been disassociated.
1317 * This indicates that the MAC has completely cleared it's
1318 * associated state. We * should send a deauth indication
1319 * (implying disassoc) up * to the MLME.
1320 * Response:
1321 * Indicate Deauthentication
1322 * Block Transmits, Ignore receives of data frames
1323 */
Karl Reltoncb3126e2010-06-03 23:04:06 +01001324 if (wlandev->netdev->type == ARPHRD_ETHER)
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001325 printk(KERN_INFO
Karl Reltoncb3126e2010-06-03 23:04:06 +01001326 "linkstatus=DISCONNECTED (unhandled)\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001327 wlandev->macmode = WLAN_MACMODE_NONE;
1328
1329 netif_carrier_off(wlandev->netdev);
1330
Karl Reltoncb3126e2010-06-03 23:04:06 +01001331 /* signal back up to cfg80211 layer */
1332 prism2_disconnected(wlandev);
1333
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001334 break;
1335
1336 case HFA384x_LINK_AP_CHANGE:
1337 /* This one indicates that the MAC has decided to and
1338 * successfully completed a change to another AP. We
1339 * should probably implement a reassociation indication
1340 * in response to this one. I'm thinking that the the
1341 * p80211 layer needs to be notified in case of
1342 * buffering/queueing issues. User mode also needs to be
1343 * notified so that any BSS dependent elements can be
1344 * updated.
1345 * associated state. We * should send a deauth indication
1346 * (implying disassoc) up * to the MLME.
1347 * Response:
1348 * Indicate Reassociation
1349 * Enable Transmits, Receives and pass up data frames
1350 */
Moritz Muehlenhoff350f2f4b2009-01-25 21:54:57 +01001351 printk(KERN_INFO "linkstatus=AP_CHANGE\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001352
1353 result = hfa384x_drvr_getconfig(hw,
1354 HFA384x_RID_CURRENTBSSID,
1355 wlandev->bssid, WLAN_BSSID_LEN);
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001356 if (result) {
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301357 pr_debug("getconfig(0x%02x) failed, result = %d\n",
1358 HFA384x_RID_CURRENTBSSID, result);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001359 goto failed;
1360 }
1361
1362 result = hfa384x_drvr_getconfig(hw,
1363 HFA384x_RID_CURRENTSSID,
1364 &ssid, sizeof(ssid));
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001365 if (result) {
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301366 pr_debug("getconfig(0x%02x) failed, result = %d\n",
1367 HFA384x_RID_CURRENTSSID, result);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001368 goto failed;
1369 }
Svenne Krap5dd8acc2010-02-14 18:59:00 +01001370 prism2mgmt_bytestr2pstr((hfa384x_bytestr_t *) &ssid,
1371 (p80211pstrd_t *) &wlandev->ssid);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001372
1373 hw->link_status = HFA384x_LINK_CONNECTED;
1374 netif_carrier_on(wlandev->netdev);
1375
Karl Reltoncb3126e2010-06-03 23:04:06 +01001376 /* signal back up to cfg80211 layer */
1377 prism2_roamed(wlandev);
1378
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001379 break;
1380
1381 case HFA384x_LINK_AP_OUTOFRANGE:
1382 /* This one indicates that the MAC has decided that the
1383 * AP is out of range, but hasn't found a better candidate
1384 * so the MAC maintains its "associated" state in case
1385 * we get back in range. We should block transmits and
1386 * receives in this state. Do we need an indication here?
1387 * Probably not since a polling user-mode element would
1388 * get this status from from p2PortStatus(FD40). What about
1389 * p80211?
1390 * Response:
1391 * Block Transmits, Ignore receives of data frames
1392 */
Moritz Muehlenhoff350f2f4b2009-01-25 21:54:57 +01001393 printk(KERN_INFO "linkstatus=AP_OUTOFRANGE (unhandled)\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001394
1395 netif_carrier_off(wlandev->netdev);
1396
1397 break;
1398
1399 case HFA384x_LINK_AP_INRANGE:
1400 /* This one indicates that the MAC has decided that the
1401 * AP is back in range. We continue working with our
1402 * existing association.
1403 * Response:
1404 * Enable Transmits, Receives and pass up data frames
1405 */
Moritz Muehlenhoff350f2f4b2009-01-25 21:54:57 +01001406 printk(KERN_INFO "linkstatus=AP_INRANGE\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001407
1408 hw->link_status = HFA384x_LINK_CONNECTED;
1409 netif_carrier_on(wlandev->netdev);
1410
1411 break;
1412
1413 case HFA384x_LINK_ASSOCFAIL:
1414 /* This one is actually a peer to CONNECTED. We've
1415 * requested a join for a given SSID and optionally BSSID.
1416 * We can use this one to indicate authentication and
1417 * association failures. The trick is going to be
1418 * 1) identifying the failure, and 2) state management.
1419 * Response:
1420 * Disable Transmits, Ignore receives of data frames
1421 */
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001422 if (hw->join_ap && --hw->join_retries > 0) {
1423 hfa384x_JoinRequest_data_t joinreq;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001424 joinreq = hw->joinreq;
1425 /* Send the join request */
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001426 hfa384x_drvr_setconfig(hw,
1427 HFA384x_RID_JOINREQUEST,
1428 &joinreq,
1429 HFA384x_RID_JOINREQUEST_LEN);
1430 printk(KERN_INFO
1431 "linkstatus=ASSOCFAIL (re-submitting join)\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001432 } else {
Moritz Muehlenhoff350f2f4b2009-01-25 21:54:57 +01001433 printk(KERN_INFO "linkstatus=ASSOCFAIL (unhandled)\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001434 }
1435
1436 netif_carrier_off(wlandev->netdev);
1437
Karl Reltoncb3126e2010-06-03 23:04:06 +01001438 /* signal back up to cfg80211 layer */
1439 prism2_connect_result(wlandev, P80211ENUM_truth_true);
1440
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001441 break;
1442
1443 default:
1444 /* This is bad, IO port problems? */
Moritz Muehlenhoff9b9556e2009-01-25 21:55:01 +01001445 printk(KERN_WARNING
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001446 "unknown linkstatus=0x%02x\n", hw->link_status);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001447 goto failed;
1448 break;
1449 }
1450
1451 wlandev->linkstatus = (hw->link_status == HFA384x_LINK_CONNECTED);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001452
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001453failed:
1454 return;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001455}
1456
1457/*----------------------------------------------------------------
1458* prism2sta_inf_linkstatus
1459*
1460* Handles the receipt of a Link Status info frame.
1461*
1462* Arguments:
1463* wlandev wlan device structure
1464* inf ptr to info frame (contents in hfa384x order)
1465*
1466* Returns:
1467* nothing
1468*
1469* Side effects:
1470*
1471* Call context:
1472* interrupt
1473----------------------------------------------------------------*/
Mithlesh Thukral297f06c2009-06-10 19:36:11 +05301474static void prism2sta_inf_linkstatus(wlandevice_t *wlandev,
1475 hfa384x_InfFrame_t *inf)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001476{
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001477 hfa384x_t *hw = (hfa384x_t *) wlandev->priv;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001478
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +01001479 hw->link_status_new = le16_to_cpu(inf->info.linkstatus.linkstatus);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001480
1481 schedule_work(&hw->link_bh);
1482
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001483 return;
1484}
1485
1486/*----------------------------------------------------------------
1487* prism2sta_inf_assocstatus
1488*
1489* Handles the receipt of an Association Status info frame. Should
1490* be present in APs only.
1491*
1492* Arguments:
1493* wlandev wlan device structure
1494* inf ptr to info frame (contents in hfa384x order)
1495*
1496* Returns:
1497* nothing
1498*
1499* Side effects:
1500*
1501* Call context:
1502* interrupt
1503----------------------------------------------------------------*/
Mithlesh Thukral297f06c2009-06-10 19:36:11 +05301504static void prism2sta_inf_assocstatus(wlandevice_t *wlandev,
1505 hfa384x_InfFrame_t *inf)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001506{
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001507 hfa384x_t *hw = (hfa384x_t *) wlandev->priv;
1508 hfa384x_AssocStatus_t rec;
1509 int i;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001510
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001511 memcpy(&rec, &inf->info.assocstatus, sizeof(rec));
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +01001512 rec.assocstatus = le16_to_cpu(rec.assocstatus);
1513 rec.reason = le16_to_cpu(rec.reason);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001514
1515 /*
Christos Tzoumakisf9bd6492010-05-07 06:17:24 +03001516 ** Find the address in the list of authenticated stations.
1517 ** If it wasn't found, then this address has not been previously
1518 ** authenticated and something weird has happened if this is
1519 ** anything other than an "authentication failed" message.
1520 ** If the address was found, then set the "associated" flag for
1521 ** that station, based on whether the station is associating or
1522 ** losing its association. Something weird has also happened
1523 ** if we find the address in the list of authenticated stations
1524 ** but we are getting an "authentication failed" message.
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001525 */
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001526
1527 for (i = 0; i < hw->authlist.cnt; i++)
Moritz Muehlenhoff28b17a42009-01-21 22:00:41 +01001528 if (memcmp(rec.sta_addr, hw->authlist.addr[i], ETH_ALEN) == 0)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001529 break;
1530
1531 if (i >= hw->authlist.cnt) {
1532 if (rec.assocstatus != HFA384x_ASSOCSTATUS_AUTHFAIL)
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001533 printk(KERN_WARNING
Christos Tzoumakisf9bd6492010-05-07 06:17:24 +03001534 "assocstatus info frame received for non-authenticated station.\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001535 } else {
1536 hw->authlist.assoc[i] =
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001537 (rec.assocstatus == HFA384x_ASSOCSTATUS_STAASSOC ||
1538 rec.assocstatus == HFA384x_ASSOCSTATUS_REASSOC);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001539
1540 if (rec.assocstatus == HFA384x_ASSOCSTATUS_AUTHFAIL)
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001541 printk(KERN_WARNING
Christos Tzoumakisf9bd6492010-05-07 06:17:24 +03001542"authfail assocstatus info frame received for authenticated station.\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001543 }
1544
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001545 return;
1546}
1547
1548/*----------------------------------------------------------------
1549* prism2sta_inf_authreq
1550*
1551* Handles the receipt of an Authentication Request info frame. Should
1552* be present in APs only.
1553*
1554* Arguments:
1555* wlandev wlan device structure
1556* inf ptr to info frame (contents in hfa384x order)
1557*
1558* Returns:
1559* nothing
1560*
1561* Side effects:
1562*
1563* Call context:
1564* interrupt
1565*
1566----------------------------------------------------------------*/
Mithlesh Thukral297f06c2009-06-10 19:36:11 +05301567static void prism2sta_inf_authreq(wlandevice_t *wlandev,
1568 hfa384x_InfFrame_t *inf)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001569{
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001570 hfa384x_t *hw = (hfa384x_t *) wlandev->priv;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001571 struct sk_buff *skb;
1572
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001573 skb = dev_alloc_skb(sizeof(*inf));
1574 if (skb) {
1575 skb_put(skb, sizeof(*inf));
1576 memcpy(skb->data, inf, sizeof(*inf));
1577 skb_queue_tail(&hw->authq, skb);
1578 schedule_work(&hw->link_bh);
1579 }
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001580}
1581
Mithlesh Thukral297f06c2009-06-10 19:36:11 +05301582static void prism2sta_inf_authreq_defer(wlandevice_t *wlandev,
1583 hfa384x_InfFrame_t *inf)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001584{
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001585 hfa384x_t *hw = (hfa384x_t *) wlandev->priv;
1586 hfa384x_authenticateStation_data_t rec;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001587
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001588 int i, added, result, cnt;
1589 u8 *addr;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001590
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001591 /*
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001592 ** Build the AuthenticateStation record. Initialize it for denying
1593 ** authentication.
1594 */
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001595
Moritz Muehlenhoff28b17a42009-01-21 22:00:41 +01001596 memcpy(rec.address, inf->info.authreq.sta_addr, ETH_ALEN);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001597 rec.status = P80211ENUM_status_unspec_failure;
1598
1599 /*
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001600 ** Authenticate based on the access mode.
1601 */
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001602
1603 switch (hw->accessmode) {
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001604 case WLAN_ACCESS_NONE:
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001605
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001606 /*
1607 ** Deny all new authentications. However, if a station
1608 ** is ALREADY authenticated, then accept it.
1609 */
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001610
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001611 for (i = 0; i < hw->authlist.cnt; i++)
1612 if (memcmp(rec.address, hw->authlist.addr[i],
1613 ETH_ALEN) == 0) {
1614 rec.status = P80211ENUM_status_successful;
1615 break;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001616 }
1617
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001618 break;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001619
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001620 case WLAN_ACCESS_ALL:
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001621
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001622 /*
1623 ** Allow all authentications.
1624 */
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001625
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001626 rec.status = P80211ENUM_status_successful;
1627 break;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001628
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001629 case WLAN_ACCESS_ALLOW:
1630
1631 /*
1632 ** Only allow the authentication if the MAC address
1633 ** is in the list of allowed addresses.
1634 **
1635 ** Since this is the interrupt handler, we may be here
1636 ** while the access list is in the middle of being
1637 ** updated. Choose the list which is currently okay.
1638 ** See "prism2mib_priv_accessallow()" for details.
1639 */
1640
1641 if (hw->allow.modify == 0) {
1642 cnt = hw->allow.cnt;
1643 addr = hw->allow.addr[0];
1644 } else {
1645 cnt = hw->allow.cnt1;
1646 addr = hw->allow.addr1[0];
1647 }
1648
1649 for (i = 0; i < cnt; i++, addr += ETH_ALEN)
1650 if (memcmp(rec.address, addr, ETH_ALEN) == 0) {
1651 rec.status = P80211ENUM_status_successful;
1652 break;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001653 }
1654
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001655 break;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001656
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001657 case WLAN_ACCESS_DENY:
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001658
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001659 /*
1660 ** Allow the authentication UNLESS the MAC address is
1661 ** in the list of denied addresses.
1662 **
1663 ** Since this is the interrupt handler, we may be here
1664 ** while the access list is in the middle of being
1665 ** updated. Choose the list which is currently okay.
1666 ** See "prism2mib_priv_accessdeny()" for details.
1667 */
1668
1669 if (hw->deny.modify == 0) {
1670 cnt = hw->deny.cnt;
1671 addr = hw->deny.addr[0];
1672 } else {
1673 cnt = hw->deny.cnt1;
1674 addr = hw->deny.addr1[0];
1675 }
1676
1677 rec.status = P80211ENUM_status_successful;
1678
1679 for (i = 0; i < cnt; i++, addr += ETH_ALEN)
1680 if (memcmp(rec.address, addr, ETH_ALEN) == 0) {
1681 rec.status = P80211ENUM_status_unspec_failure;
1682 break;
1683 }
1684
1685 break;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001686 }
1687
1688 /*
Christos Tzoumakisf9bd6492010-05-07 06:17:24 +03001689 ** If the authentication is okay, then add the MAC address to the
1690 ** list of authenticated stations. Don't add the address if it
1691 ** is already in the list. (802.11b does not seem to disallow
1692 ** a station from issuing an authentication request when the
1693 ** station is already authenticated. Does this sort of thing
1694 ** ever happen? We might as well do the check just in case.)
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001695 */
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001696
1697 added = 0;
1698
1699 if (rec.status == P80211ENUM_status_successful) {
1700 for (i = 0; i < hw->authlist.cnt; i++)
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001701 if (memcmp(rec.address, hw->authlist.addr[i], ETH_ALEN)
1702 == 0)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001703 break;
1704
1705 if (i >= hw->authlist.cnt) {
1706 if (hw->authlist.cnt >= WLAN_AUTH_MAX) {
1707 rec.status = P80211ENUM_status_ap_full;
1708 } else {
1709 memcpy(hw->authlist.addr[hw->authlist.cnt],
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001710 rec.address, ETH_ALEN);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001711 hw->authlist.cnt++;
1712 added = 1;
1713 }
1714 }
1715 }
1716
1717 /*
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001718 ** Send back the results of the authentication. If this doesn't work,
1719 ** then make sure to remove the address from the authenticated list if
1720 ** it was added.
1721 */
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001722
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +01001723 rec.status = cpu_to_le16(rec.status);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001724 rec.algorithm = inf->info.authreq.algorithm;
1725
1726 result = hfa384x_drvr_setconfig(hw, HFA384x_RID_AUTHENTICATESTA,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001727 &rec, sizeof(rec));
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001728 if (result) {
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001729 if (added)
1730 hw->authlist.cnt--;
1731 printk(KERN_ERR
1732 "setconfig(authenticatestation) failed, result=%d\n",
1733 result);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001734 }
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001735 return;
1736}
1737
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001738/*----------------------------------------------------------------
1739* prism2sta_inf_psusercnt
1740*
1741* Handles the receipt of a PowerSaveUserCount info frame. Should
1742* be present in APs only.
1743*
1744* Arguments:
1745* wlandev wlan device structure
1746* inf ptr to info frame (contents in hfa384x order)
1747*
1748* Returns:
1749* nothing
1750*
1751* Side effects:
1752*
1753* Call context:
1754* interrupt
1755----------------------------------------------------------------*/
Mithlesh Thukral297f06c2009-06-10 19:36:11 +05301756static void prism2sta_inf_psusercnt(wlandevice_t *wlandev,
1757 hfa384x_InfFrame_t *inf)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001758{
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001759 hfa384x_t *hw = (hfa384x_t *) wlandev->priv;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001760
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +01001761 hw->psusercount = le16_to_cpu(inf->info.psusercnt.usercnt);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001762
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001763 return;
1764}
1765
1766/*----------------------------------------------------------------
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001767* prism2sta_ev_info
1768*
1769* Handles the Info event.
1770*
1771* Arguments:
1772* wlandev wlan device structure
1773* inf ptr to a generic info frame
1774*
1775* Returns:
1776* nothing
1777*
1778* Side effects:
1779*
1780* Call context:
1781* interrupt
1782----------------------------------------------------------------*/
Mithlesh Thukral297f06c2009-06-10 19:36:11 +05301783void prism2sta_ev_info(wlandevice_t *wlandev, hfa384x_InfFrame_t *inf)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001784{
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +01001785 inf->infotype = le16_to_cpu(inf->infotype);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001786 /* Dispatch */
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001787 switch (inf->infotype) {
1788 case HFA384x_IT_HANDOVERADDR:
1789 prism2sta_inf_handover(wlandev, inf);
1790 break;
1791 case HFA384x_IT_COMMTALLIES:
1792 prism2sta_inf_tallies(wlandev, inf);
1793 break;
1794 case HFA384x_IT_HOSTSCANRESULTS:
1795 prism2sta_inf_hostscanresults(wlandev, inf);
1796 break;
1797 case HFA384x_IT_SCANRESULTS:
1798 prism2sta_inf_scanresults(wlandev, inf);
1799 break;
1800 case HFA384x_IT_CHINFORESULTS:
1801 prism2sta_inf_chinforesults(wlandev, inf);
1802 break;
1803 case HFA384x_IT_LINKSTATUS:
1804 prism2sta_inf_linkstatus(wlandev, inf);
1805 break;
1806 case HFA384x_IT_ASSOCSTATUS:
1807 prism2sta_inf_assocstatus(wlandev, inf);
1808 break;
1809 case HFA384x_IT_AUTHREQ:
1810 prism2sta_inf_authreq(wlandev, inf);
1811 break;
1812 case HFA384x_IT_PSUSERCNT:
1813 prism2sta_inf_psusercnt(wlandev, inf);
1814 break;
1815 case HFA384x_IT_KEYIDCHANGED:
1816 printk(KERN_WARNING "Unhandled IT_KEYIDCHANGED\n");
1817 break;
1818 case HFA384x_IT_ASSOCREQ:
1819 printk(KERN_WARNING "Unhandled IT_ASSOCREQ\n");
1820 break;
1821 case HFA384x_IT_MICFAILURE:
1822 printk(KERN_WARNING "Unhandled IT_MICFAILURE\n");
1823 break;
1824 default:
1825 printk(KERN_WARNING
1826 "Unknown info type=0x%02x\n", inf->infotype);
1827 break;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001828 }
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001829 return;
1830}
1831
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001832/*----------------------------------------------------------------
1833* prism2sta_ev_txexc
1834*
1835* Handles the TxExc event. A Transmit Exception event indicates
1836* that the MAC's TX process was unsuccessful - so the packet did
1837* not get transmitted.
1838*
1839* Arguments:
1840* wlandev wlan device structure
1841* status tx frame status word
1842*
1843* Returns:
1844* nothing
1845*
1846* Side effects:
1847*
1848* Call context:
1849* interrupt
1850----------------------------------------------------------------*/
Mithlesh Thukral297f06c2009-06-10 19:36:11 +05301851void prism2sta_ev_txexc(wlandevice_t *wlandev, u16 status)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001852{
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +01001853 pr_debug("TxExc status=0x%x.\n", status);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001854
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001855 return;
1856}
1857
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001858/*----------------------------------------------------------------
1859* prism2sta_ev_tx
1860*
1861* Handles the Tx event.
1862*
1863* Arguments:
1864* wlandev wlan device structure
1865* status tx frame status word
1866* Returns:
1867* nothing
1868*
1869* Side effects:
1870*
1871* Call context:
1872* interrupt
1873----------------------------------------------------------------*/
Mithlesh Thukral297f06c2009-06-10 19:36:11 +05301874void prism2sta_ev_tx(wlandevice_t *wlandev, u16 status)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001875{
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +01001876 pr_debug("Tx Complete, status=0x%04x\n", status);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001877 /* update linux network stats */
1878 wlandev->linux_stats.tx_packets++;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001879 return;
1880}
1881
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001882/*----------------------------------------------------------------
1883* prism2sta_ev_rx
1884*
1885* Handles the Rx event.
1886*
1887* Arguments:
1888* wlandev wlan device structure
1889*
1890* Returns:
1891* nothing
1892*
1893* Side effects:
1894*
1895* Call context:
1896* interrupt
1897----------------------------------------------------------------*/
Mithlesh Thukral297f06c2009-06-10 19:36:11 +05301898void prism2sta_ev_rx(wlandevice_t *wlandev, struct sk_buff *skb)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001899{
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001900 p80211netdev_rx(wlandev, skb);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001901 return;
1902}
1903
1904/*----------------------------------------------------------------
1905* prism2sta_ev_alloc
1906*
1907* Handles the Alloc event.
1908*
1909* Arguments:
1910* wlandev wlan device structure
1911*
1912* Returns:
1913* nothing
1914*
1915* Side effects:
1916*
1917* Call context:
1918* interrupt
1919----------------------------------------------------------------*/
Mithlesh Thukral297f06c2009-06-10 19:36:11 +05301920void prism2sta_ev_alloc(wlandevice_t *wlandev)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001921{
Solomon Peachycbec30c2008-10-29 10:42:57 -04001922 netif_wake_queue(wlandev->netdev);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001923 return;
1924}
1925
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001926/*----------------------------------------------------------------
1927* create_wlan
1928*
1929* Called at module init time. This creates the wlandevice_t structure
1930* and initializes it with relevant bits.
1931*
1932* Arguments:
1933* none
1934*
1935* Returns:
1936* the created wlandevice_t structure.
1937*
1938* Side effects:
Christos Tzoumakisf9bd6492010-05-07 06:17:24 +03001939* also allocates the priv/hw structures.
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001940*
1941* Call context:
1942* process thread
1943*
1944----------------------------------------------------------------*/
1945static wlandevice_t *create_wlan(void)
1946{
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001947 wlandevice_t *wlandev = NULL;
1948 hfa384x_t *hw = NULL;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001949
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001950 /* Alloc our structures */
1951 wlandev = kmalloc(sizeof(wlandevice_t), GFP_KERNEL);
1952 hw = kmalloc(sizeof(hfa384x_t), GFP_KERNEL);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001953
1954 if (!wlandev || !hw) {
Moritz Muehlenhoffedbd6062009-01-25 21:55:00 +01001955 printk(KERN_ERR "%s: Memory allocation failure.\n", dev_info);
Moritz Muehlenhoff7c98f712009-02-09 19:33:42 +01001956 kfree(wlandev);
1957 kfree(hw);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001958 return NULL;
1959 }
1960
1961 /* Clear all the structs */
1962 memset(wlandev, 0, sizeof(wlandevice_t));
1963 memset(hw, 0, sizeof(hfa384x_t));
1964
1965 /* Initialize the network device object. */
1966 wlandev->nsdname = dev_info;
1967 wlandev->msdstate = WLAN_MSD_HWPRESENT_PENDING;
1968 wlandev->priv = hw;
1969 wlandev->open = prism2sta_open;
1970 wlandev->close = prism2sta_close;
1971 wlandev->reset = prism2sta_reset;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001972 wlandev->txframe = prism2sta_txframe;
1973 wlandev->mlmerequest = prism2sta_mlmerequest;
1974 wlandev->set_multicast_list = prism2sta_setmulticast;
1975 wlandev->tx_timeout = hfa384x_tx_timeout;
1976
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001977 wlandev->nsdcaps = P80211_NSDCAP_HWFRAGMENT | P80211_NSDCAP_AUTOJOIN;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001978
1979 /* Initialize the device private data stucture. */
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001980 hw->dot11_desired_bss_type = 1;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001981
1982 return wlandev;
1983}
1984
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001985void prism2sta_commsqual_defer(struct work_struct *data)
1986{
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001987 hfa384x_t *hw = container_of(data, struct hfa384x, commsqual_bh);
1988 wlandevice_t *wlandev = hw->wlandev;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001989 hfa384x_bytestr32_t ssid;
Edgardo Hamesb6bb56e2010-08-02 16:20:39 -03001990 struct p80211msg_dot11req_mibget msg;
1991 p80211item_uint32_t *mibitem = (p80211item_uint32_t *)
1992 &msg.mibattribute.data;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001993 int result = 0;
1994
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001995 if (hw->wlandev->hwremoved)
1996 goto done;
1997
1998 /* we don't care if we're in AP mode */
1999 if ((wlandev->macmode == WLAN_MACMODE_NONE) ||
2000 (wlandev->macmode == WLAN_MACMODE_ESS_AP)) {
2001 goto done;
2002 }
2003
2004 /* It only makes sense to poll these in non-IBSS */
2005 if (wlandev->macmode != WLAN_MACMODE_IBSS_STA) {
Christos Tzoumakisf9bd6492010-05-07 06:17:24 +03002006 result = hfa384x_drvr_getconfig(
2007 hw, HFA384x_RID_DBMCOMMSQUALITY,
2008 &hw->qual, HFA384x_RID_DBMCOMMSQUALITY_LEN);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07002009
2010 if (result) {
Moritz Muehlenhoffedbd6062009-01-25 21:55:00 +01002011 printk(KERN_ERR "error fetching commsqual\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07002012 goto done;
2013 }
2014
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +01002015 pr_debug("commsqual %d %d %d\n",
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05302016 le16_to_cpu(hw->qual.CQ_currBSS),
2017 le16_to_cpu(hw->qual.ASL_currBSS),
2018 le16_to_cpu(hw->qual.ANL_currFC));
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07002019 }
2020
Karl Reltoncb3126e2010-06-03 23:04:06 +01002021 /* Get the signal rate */
2022 msg.msgcode = DIDmsg_dot11req_mibget;
2023 mibitem->did = DIDmib_p2_p2MAC_p2CurrentTxRate;
Edgardo Hamesb6bb56e2010-08-02 16:20:39 -03002024 result = p80211req_dorequest(wlandev, (u8 *) &msg);
Karl Reltoncb3126e2010-06-03 23:04:06 +01002025
2026 if (result) {
2027 pr_debug("get signal rate failed, result = %d\n",
2028 result);
2029 goto done;
2030 }
2031
2032 switch (mibitem->data) {
2033 case HFA384x_RATEBIT_1:
2034 hw->txrate = 10;
2035 break;
2036 case HFA384x_RATEBIT_2:
2037 hw->txrate = 20;
2038 break;
2039 case HFA384x_RATEBIT_5dot5:
2040 hw->txrate = 55;
2041 break;
2042 case HFA384x_RATEBIT_11:
2043 hw->txrate = 110;
2044 break;
2045 default:
2046 pr_debug("Bad ratebit (%d)\n", mibitem->data);
2047 }
2048
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07002049 /* Lastly, we need to make sure the BSSID didn't change on us */
2050 result = hfa384x_drvr_getconfig(hw,
2051 HFA384x_RID_CURRENTBSSID,
2052 wlandev->bssid, WLAN_BSSID_LEN);
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01002053 if (result) {
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05302054 pr_debug("getconfig(0x%02x) failed, result = %d\n",
2055 HFA384x_RID_CURRENTBSSID, result);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07002056 goto done;
2057 }
2058
2059 result = hfa384x_drvr_getconfig(hw,
2060 HFA384x_RID_CURRENTSSID,
2061 &ssid, sizeof(ssid));
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01002062 if (result) {
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05302063 pr_debug("getconfig(0x%02x) failed, result = %d\n",
2064 HFA384x_RID_CURRENTSSID, result);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07002065 goto done;
2066 }
Svenne Krap5dd8acc2010-02-14 18:59:00 +01002067 prism2mgmt_bytestr2pstr((hfa384x_bytestr_t *) &ssid,
2068 (p80211pstrd_t *) &wlandev->ssid);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07002069
2070 /* Reschedule timer */
2071 mod_timer(&hw->commsqual_timer, jiffies + HZ);
2072
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01002073done:
Moritz Muehlenhoff8a251b52009-01-21 22:00:44 +01002074 ;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07002075}
2076
2077void prism2sta_commsqual_timer(unsigned long data)
2078{
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01002079 hfa384x_t *hw = (hfa384x_t *) data;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07002080
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07002081 schedule_work(&hw->commsqual_bh);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07002082}