1 // SPDX-License-Identifier: (GPL-2.0 OR MPL-1.1)
2 /* src/prism2/driver/prism2sta.c
4 * Implements the station functionality for prism2
6 * Copyright (C) 1999 AbsoluteValue Systems, Inc. All Rights Reserved.
7 * --------------------------------------------------------------------
11 * The contents of this file are subject to the Mozilla Public
12 * License Version 1.1 (the "License"); you may not use this file
13 * except in compliance with the License. You may obtain a copy of
14 * the License at http://www.mozilla.org/MPL/
16 * Software distributed under the License is distributed on an "AS
17 * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
18 * implied. See the License for the specific language governing
19 * rights and limitations under the License.
21 * Alternatively, the contents of this file may be used under the
22 * terms of the GNU Public License version 2 (the "GPL"), in which
23 * case the provisions of the GPL are applicable instead of the
24 * above. If you wish to allow the use of your version of this file
25 * only under the terms of the GPL and not to allow others to use
26 * your version of this file under the MPL, indicate your decision
27 * by deleting the provisions above and replace them with the notice
28 * and other provisions required by the GPL. If you do not delete
29 * the provisions above, a recipient may use your version of this
30 * file under either the MPL or the GPL.
32 * --------------------------------------------------------------------
34 * Inquiries regarding the linux-wlan Open Source project can be
37 * AbsoluteValue Systems Inc.
39 * http://www.linux-wlan.com
41 * --------------------------------------------------------------------
43 * Portions of the development of this software were funded by
44 * Intersil Corporation as part of PRISM(R) chipset product development.
46 * --------------------------------------------------------------------
48 * This file implements the module and linux pcmcia routines for the
51 * --------------------------------------------------------------------
54 #include <linux/module.h>
55 #include <linux/kernel.h>
56 #include <linux/sched.h>
57 #include <linux/types.h>
58 #include <linux/slab.h>
59 #include <linux/wireless.h>
60 #include <linux/netdevice.h>
61 #include <linux/workqueue.h>
62 #include <linux/byteorder/generic.h>
63 #include <linux/etherdevice.h>
66 #include <linux/delay.h>
67 #include <asm/byteorder.h>
68 #include <linux/if_arp.h>
69 #include <linux/if_ether.h>
70 #include <linux/bitops.h>
72 #include "p80211types.h"
73 #include "p80211hdr.h"
74 #include "p80211mgmt.h"
75 #include "p80211conv.h"
76 #include "p80211msg.h"
77 #include "p80211netdev.h"
78 #include "p80211req.h"
79 #include "p80211metadef.h"
80 #include "p80211metastruct.h"
82 #include "prism2mgmt.h"
84 static char *dev_info
= "prism2_usb";
85 static struct wlandevice
*create_wlan(void);
87 int prism2_reset_holdtime
= 30; /* Reset hold time in ms */
88 int prism2_reset_settletime
= 100; /* Reset settle time in ms */
90 static int prism2_doreset
; /* Do a reset at init? */
92 module_param(prism2_doreset
, int, 0644);
93 MODULE_PARM_DESC(prism2_doreset
, "Issue a reset on initialization");
95 module_param(prism2_reset_holdtime
, int, 0644);
96 MODULE_PARM_DESC(prism2_reset_holdtime
, "reset hold time in ms");
97 module_param(prism2_reset_settletime
, int, 0644);
98 MODULE_PARM_DESC(prism2_reset_settletime
, "reset settle time in ms");
100 MODULE_LICENSE("Dual MPL/GPL");
102 static int prism2sta_open(struct wlandevice
*wlandev
);
103 static int prism2sta_close(struct wlandevice
*wlandev
);
104 static void prism2sta_reset(struct wlandevice
*wlandev
);
105 static int prism2sta_txframe(struct wlandevice
*wlandev
, struct sk_buff
*skb
,
106 union p80211_hdr
*p80211_hdr
,
107 struct p80211_metawep
*p80211_wep
);
108 static int prism2sta_mlmerequest(struct wlandevice
*wlandev
,
109 struct p80211msg
*msg
);
110 static int prism2sta_getcardinfo(struct wlandevice
*wlandev
);
111 static int prism2sta_globalsetup(struct wlandevice
*wlandev
);
112 static int prism2sta_setmulticast(struct wlandevice
*wlandev
,
113 struct net_device
*dev
);
115 static void prism2sta_inf_handover(struct wlandevice
*wlandev
,
116 struct hfa384x_inf_frame
*inf
);
117 static void prism2sta_inf_tallies(struct wlandevice
*wlandev
,
118 struct hfa384x_inf_frame
*inf
);
119 static void prism2sta_inf_hostscanresults(struct wlandevice
*wlandev
,
120 struct hfa384x_inf_frame
*inf
);
121 static void prism2sta_inf_scanresults(struct wlandevice
*wlandev
,
122 struct hfa384x_inf_frame
*inf
);
123 static void prism2sta_inf_chinforesults(struct wlandevice
*wlandev
,
124 struct hfa384x_inf_frame
*inf
);
125 static void prism2sta_inf_linkstatus(struct wlandevice
*wlandev
,
126 struct hfa384x_inf_frame
*inf
);
127 static void prism2sta_inf_assocstatus(struct wlandevice
*wlandev
,
128 struct hfa384x_inf_frame
*inf
);
129 static void prism2sta_inf_authreq(struct wlandevice
*wlandev
,
130 struct hfa384x_inf_frame
*inf
);
131 static void prism2sta_inf_authreq_defer(struct wlandevice
*wlandev
,
132 struct hfa384x_inf_frame
*inf
);
133 static void prism2sta_inf_psusercnt(struct wlandevice
*wlandev
,
134 struct hfa384x_inf_frame
*inf
);
139 * WLAN device open method. Called from p80211netdev when kernel
140 * device open (start) method is called in response to the
141 * SIOCSIIFFLAGS ioctl changing the flags bit IFF_UP
145 * wlandev wlan device structure
149 * >0 f/w reported error
150 * <0 driver reported error
157 static int prism2sta_open(struct wlandevice
*wlandev
)
159 /* We don't currently have to do anything else.
160 * The setup of the MAC should be subsequently completed via
162 * Higher layers know we're ready from dev->start==1 and
163 * dev->tbusy==0. Our rx path knows to pass up received/
164 * frames because of dev->flags&IFF_UP is true.
173 * WLAN device close method. Called from p80211netdev when kernel
174 * device close method is called in response to the
175 * SIOCSIIFFLAGS ioctl changing the flags bit IFF_UP
179 * wlandev wlan device structure
183 * >0 f/w reported error
184 * <0 driver reported error
191 static int prism2sta_close(struct wlandevice
*wlandev
)
193 /* We don't currently have to do anything else.
194 * Higher layers know we're not ready from dev->start==0 and
195 * dev->tbusy==1. Our rx path knows to not pass up received
196 * frames because of dev->flags&IFF_UP is false.
205 * Currently not implemented.
208 * wlandev wlan device structure
219 static void prism2sta_reset(struct wlandevice
*wlandev
)
226 * Takes a frame from p80211 and queues it for transmission.
229 * wlandev wlan device structure
230 * pb packet buffer struct. Contains an 802.11
232 * p80211_hdr points to the 802.11 header for the packet.
234 * 0 Success and more buffs available
235 * 1 Success but no more buffs
236 * 2 Allocation failure
237 * 4 Buffer full or queue busy
244 static int prism2sta_txframe(struct wlandevice
*wlandev
, struct sk_buff
*skb
,
245 union p80211_hdr
*p80211_hdr
,
246 struct p80211_metawep
*p80211_wep
)
248 struct hfa384x
*hw
= wlandev
->priv
;
250 /* If necessary, set the 802.11 WEP bit */
251 if ((wlandev
->hostwep
& (HOSTWEP_PRIVACYINVOKED
| HOSTWEP_ENCRYPT
)) ==
252 HOSTWEP_PRIVACYINVOKED
) {
253 p80211_hdr
->a3
.fc
|= cpu_to_le16(WLAN_SET_FC_ISWEP(1));
256 return hfa384x_drvr_txframe(hw
, skb
, p80211_hdr
, p80211_wep
);
260 * prism2sta_mlmerequest
262 * wlan command message handler. All we do here is pass the message
263 * over to the prism2sta_mgmt_handler.
266 * wlandev wlan device structure
267 * msg wlan command message
270 * <0 successful acceptance of message, but we're
271 * waiting for an async process to finish before
272 * we're done with the msg. When the asynch
273 * process is done, we'll call the p80211
274 * function p80211req_confirm() .
275 * >0 An error occurred while we were handling
283 static int prism2sta_mlmerequest(struct wlandevice
*wlandev
,
284 struct p80211msg
*msg
)
286 struct hfa384x
*hw
= wlandev
->priv
;
290 switch (msg
->msgcode
) {
291 case DIDMSG_DOT11REQ_MIBGET
:
292 pr_debug("Received mibget request\n");
293 result
= prism2mgmt_mibset_mibget(wlandev
, msg
);
295 case DIDMSG_DOT11REQ_MIBSET
:
296 pr_debug("Received mibset request\n");
297 result
= prism2mgmt_mibset_mibget(wlandev
, msg
);
299 case DIDMSG_DOT11REQ_SCAN
:
300 pr_debug("Received scan request\n");
301 result
= prism2mgmt_scan(wlandev
, msg
);
303 case DIDMSG_DOT11REQ_SCAN_RESULTS
:
304 pr_debug("Received scan_results request\n");
305 result
= prism2mgmt_scan_results(wlandev
, msg
);
307 case DIDMSG_DOT11REQ_START
:
308 pr_debug("Received mlme start request\n");
309 result
= prism2mgmt_start(wlandev
, msg
);
312 * Prism2 specific messages
314 case DIDMSG_P2REQ_READPDA
:
315 pr_debug("Received mlme readpda request\n");
316 result
= prism2mgmt_readpda(wlandev
, msg
);
318 case DIDMSG_P2REQ_RAMDL_STATE
:
319 pr_debug("Received mlme ramdl_state request\n");
320 result
= prism2mgmt_ramdl_state(wlandev
, msg
);
322 case DIDMSG_P2REQ_RAMDL_WRITE
:
323 pr_debug("Received mlme ramdl_write request\n");
324 result
= prism2mgmt_ramdl_write(wlandev
, msg
);
326 case DIDMSG_P2REQ_FLASHDL_STATE
:
327 pr_debug("Received mlme flashdl_state request\n");
328 result
= prism2mgmt_flashdl_state(wlandev
, msg
);
330 case DIDMSG_P2REQ_FLASHDL_WRITE
:
331 pr_debug("Received mlme flashdl_write request\n");
332 result
= prism2mgmt_flashdl_write(wlandev
, msg
);
335 * Linux specific messages
337 case DIDMSG_LNXREQ_HOSTWEP
:
338 break; /* ignore me. */
339 case DIDMSG_LNXREQ_IFSTATE
: {
340 struct p80211msg_lnxreq_ifstate
*ifstatemsg
;
342 pr_debug("Received mlme ifstate request\n");
343 ifstatemsg
= (struct p80211msg_lnxreq_ifstate
*)msg
;
344 result
= prism2sta_ifstate(wlandev
,
345 ifstatemsg
->ifstate
.data
);
346 ifstatemsg
->resultcode
.status
=
347 P80211ENUM_msgitem_status_data_ok
;
348 ifstatemsg
->resultcode
.data
= result
;
352 case DIDMSG_LNXREQ_WLANSNIFF
:
353 pr_debug("Received mlme wlansniff request\n");
354 result
= prism2mgmt_wlansniff(wlandev
, msg
);
356 case DIDMSG_LNXREQ_AUTOJOIN
:
357 pr_debug("Received mlme autojoin request\n");
358 result
= prism2mgmt_autojoin(wlandev
, msg
);
360 case DIDMSG_LNXREQ_COMMSQUALITY
: {
361 struct p80211msg_lnxreq_commsquality
*qualmsg
;
363 pr_debug("Received commsquality request\n");
365 qualmsg
= (struct p80211msg_lnxreq_commsquality
*)msg
;
367 qualmsg
->link
.status
= P80211ENUM_msgitem_status_data_ok
;
368 qualmsg
->level
.status
= P80211ENUM_msgitem_status_data_ok
;
369 qualmsg
->noise
.status
= P80211ENUM_msgitem_status_data_ok
;
371 qualmsg
->link
.data
= le16_to_cpu(hw
->qual
.cq_curr_bss
);
372 qualmsg
->level
.data
= le16_to_cpu(hw
->qual
.asl_curr_bss
);
373 qualmsg
->noise
.data
= le16_to_cpu(hw
->qual
.anl_curr_fc
);
374 qualmsg
->txrate
.data
= hw
->txrate
;
379 netdev_warn(wlandev
->netdev
,
380 "Unknown mgmt request message 0x%08x",
391 * Interface state. This is the primary WLAN interface enable/disable
392 * handler. Following the driver/load/deviceprobe sequence, this
393 * function must be called with a state of "enable" before any other
394 * commands will be accepted.
397 * wlandev wlan device structure
398 * msgp ptr to msg buffer
401 * A p80211 message resultcode value.
406 * process thread (usually)
409 u32
prism2sta_ifstate(struct wlandevice
*wlandev
, u32 ifstate
)
411 struct hfa384x
*hw
= wlandev
->priv
;
414 result
= P80211ENUM_resultcode_implementation_failure
;
416 pr_debug("Current MSD state(%d), requesting(%d)\n",
417 wlandev
->msdstate
, ifstate
);
419 case P80211ENUM_ifstate_fwload
:
420 switch (wlandev
->msdstate
) {
421 case WLAN_MSD_HWPRESENT
:
422 wlandev
->msdstate
= WLAN_MSD_FWLOAD_PENDING
;
424 * Initialize the device+driver sufficiently
425 * for firmware loading.
427 result
= hfa384x_drvr_start(hw
);
429 netdev_err(wlandev
->netdev
,
430 "hfa384x_drvr_start() failed,result=%d\n",
433 P80211ENUM_resultcode_implementation_failure
;
434 wlandev
->msdstate
= WLAN_MSD_HWPRESENT
;
437 wlandev
->msdstate
= WLAN_MSD_FWLOAD
;
438 result
= P80211ENUM_resultcode_success
;
440 case WLAN_MSD_FWLOAD
:
441 hfa384x_cmd_initialize(hw
);
442 result
= P80211ENUM_resultcode_success
;
444 case WLAN_MSD_RUNNING
:
445 netdev_warn(wlandev
->netdev
,
446 "Cannot enter fwload state from enable state, you must disable first.\n");
447 result
= P80211ENUM_resultcode_invalid_parameters
;
449 case WLAN_MSD_HWFAIL
:
451 /* probe() had a problem or the msdstate contains
452 * an unrecognized value, there's nothing we can do.
454 result
= P80211ENUM_resultcode_implementation_failure
;
458 case P80211ENUM_ifstate_enable
:
459 switch (wlandev
->msdstate
) {
460 case WLAN_MSD_HWPRESENT
:
461 case WLAN_MSD_FWLOAD
:
462 wlandev
->msdstate
= WLAN_MSD_RUNNING_PENDING
;
463 /* Initialize the device+driver for full
464 * operation. Note that this might me an FWLOAD
465 * to RUNNING transition so we must not do a chip
466 * or board level reset. Note that on failure,
467 * the MSD state is set to HWPRESENT because we
468 * can't make any assumptions about the state
469 * of the hardware or a previous firmware load.
471 result
= hfa384x_drvr_start(hw
);
473 netdev_err(wlandev
->netdev
,
474 "hfa384x_drvr_start() failed,result=%d\n",
477 P80211ENUM_resultcode_implementation_failure
;
478 wlandev
->msdstate
= WLAN_MSD_HWPRESENT
;
482 result
= prism2sta_getcardinfo(wlandev
);
484 netdev_err(wlandev
->netdev
,
485 "prism2sta_getcardinfo() failed,result=%d\n",
488 P80211ENUM_resultcode_implementation_failure
;
489 hfa384x_drvr_stop(hw
);
490 wlandev
->msdstate
= WLAN_MSD_HWPRESENT
;
493 result
= prism2sta_globalsetup(wlandev
);
495 netdev_err(wlandev
->netdev
,
496 "prism2sta_globalsetup() failed,result=%d\n",
499 P80211ENUM_resultcode_implementation_failure
;
500 hfa384x_drvr_stop(hw
);
501 wlandev
->msdstate
= WLAN_MSD_HWPRESENT
;
504 wlandev
->msdstate
= WLAN_MSD_RUNNING
;
506 hw
->join_retries
= 60;
507 result
= P80211ENUM_resultcode_success
;
509 case WLAN_MSD_RUNNING
:
510 /* Do nothing, we're already in this state. */
511 result
= P80211ENUM_resultcode_success
;
513 case WLAN_MSD_HWFAIL
:
515 /* probe() had a problem or the msdstate contains
516 * an unrecognized value, there's nothing we can do.
518 result
= P80211ENUM_resultcode_implementation_failure
;
522 case P80211ENUM_ifstate_disable
:
523 switch (wlandev
->msdstate
) {
524 case WLAN_MSD_HWPRESENT
:
525 /* Do nothing, we're already in this state. */
526 result
= P80211ENUM_resultcode_success
;
528 case WLAN_MSD_FWLOAD
:
529 case WLAN_MSD_RUNNING
:
530 wlandev
->msdstate
= WLAN_MSD_HWPRESENT_PENDING
;
532 * TODO: Shut down the MAC completely. Here a chip
533 * or board level reset is probably called for.
534 * After a "disable" _all_ results are lost, even
535 * those from a fwload.
537 if (!wlandev
->hwremoved
)
538 netif_carrier_off(wlandev
->netdev
);
540 hfa384x_drvr_stop(hw
);
542 wlandev
->macmode
= WLAN_MACMODE_NONE
;
543 wlandev
->msdstate
= WLAN_MSD_HWPRESENT
;
544 result
= P80211ENUM_resultcode_success
;
546 case WLAN_MSD_HWFAIL
:
548 /* probe() had a problem or the msdstate contains
549 * an unrecognized value, there's nothing we can do.
551 result
= P80211ENUM_resultcode_implementation_failure
;
556 result
= P80211ENUM_resultcode_invalid_parameters
;
564 * prism2sta_getcardinfo
566 * Collect the NICID, firmware version and any other identifiers
567 * we'd like to have in host-side data structures.
570 * wlandev wlan device structure
574 * >0 f/w reported error
575 * <0 driver reported error
582 static int prism2sta_getcardinfo(struct wlandevice
*wlandev
)
585 struct hfa384x
*hw
= wlandev
->priv
;
587 u8 snum
[HFA384x_RID_NICSERIALNUMBER_LEN
];
589 /* Collect version and compatibility info */
590 /* Some are critical, some are not */
592 result
= hfa384x_drvr_getconfig(hw
, HFA384x_RID_NICIDENTITY
,
594 sizeof(struct hfa384x_compident
));
596 netdev_err(wlandev
->netdev
, "Failed to retrieve NICIDENTITY\n");
600 /* get all the nic id fields in host byte order */
601 le16_to_cpus(&hw
->ident_nic
.id
);
602 le16_to_cpus(&hw
->ident_nic
.variant
);
603 le16_to_cpus(&hw
->ident_nic
.major
);
604 le16_to_cpus(&hw
->ident_nic
.minor
);
606 netdev_info(wlandev
->netdev
, "ident: nic h/w: id=0x%02x %d.%d.%d\n",
607 hw
->ident_nic
.id
, hw
->ident_nic
.major
,
608 hw
->ident_nic
.minor
, hw
->ident_nic
.variant
);
610 /* Primary f/w identity */
611 result
= hfa384x_drvr_getconfig(hw
, HFA384x_RID_PRIIDENTITY
,
613 sizeof(struct hfa384x_compident
));
615 netdev_err(wlandev
->netdev
, "Failed to retrieve PRIIDENTITY\n");
619 /* get all the private fw id fields in host byte order */
620 le16_to_cpus(&hw
->ident_pri_fw
.id
);
621 le16_to_cpus(&hw
->ident_pri_fw
.variant
);
622 le16_to_cpus(&hw
->ident_pri_fw
.major
);
623 le16_to_cpus(&hw
->ident_pri_fw
.minor
);
625 netdev_info(wlandev
->netdev
, "ident: pri f/w: id=0x%02x %d.%d.%d\n",
626 hw
->ident_pri_fw
.id
, hw
->ident_pri_fw
.major
,
627 hw
->ident_pri_fw
.minor
, hw
->ident_pri_fw
.variant
);
629 /* Station (Secondary?) f/w identity */
630 result
= hfa384x_drvr_getconfig(hw
, HFA384x_RID_STAIDENTITY
,
632 sizeof(struct hfa384x_compident
));
634 netdev_err(wlandev
->netdev
, "Failed to retrieve STAIDENTITY\n");
638 if (hw
->ident_nic
.id
< 0x8000) {
639 netdev_err(wlandev
->netdev
,
640 "FATAL: Card is not an Intersil Prism2/2.5/3\n");
645 /* get all the station fw id fields in host byte order */
646 le16_to_cpus(&hw
->ident_sta_fw
.id
);
647 le16_to_cpus(&hw
->ident_sta_fw
.variant
);
648 le16_to_cpus(&hw
->ident_sta_fw
.major
);
649 le16_to_cpus(&hw
->ident_sta_fw
.minor
);
651 /* strip out the 'special' variant bits */
652 hw
->mm_mods
= hw
->ident_sta_fw
.variant
& GENMASK(15, 14);
653 hw
->ident_sta_fw
.variant
&= ~((u16
)GENMASK(15, 14));
655 if (hw
->ident_sta_fw
.id
== 0x1f) {
656 netdev_info(wlandev
->netdev
,
657 "ident: sta f/w: id=0x%02x %d.%d.%d\n",
658 hw
->ident_sta_fw
.id
, hw
->ident_sta_fw
.major
,
659 hw
->ident_sta_fw
.minor
, hw
->ident_sta_fw
.variant
);
661 netdev_info(wlandev
->netdev
,
662 "ident: ap f/w: id=0x%02x %d.%d.%d\n",
663 hw
->ident_sta_fw
.id
, hw
->ident_sta_fw
.major
,
664 hw
->ident_sta_fw
.minor
, hw
->ident_sta_fw
.variant
);
665 netdev_err(wlandev
->netdev
, "Unsupported Tertiary AP firmware loaded!\n");
669 /* Compatibility range, Modem supplier */
670 result
= hfa384x_drvr_getconfig(hw
, HFA384x_RID_MFISUPRANGE
,
672 sizeof(struct hfa384x_caplevel
));
674 netdev_err(wlandev
->netdev
, "Failed to retrieve MFISUPRANGE\n");
678 /* get all the Compatibility range, modem interface supplier
679 * fields in byte order
681 le16_to_cpus(&hw
->cap_sup_mfi
.role
);
682 le16_to_cpus(&hw
->cap_sup_mfi
.id
);
683 le16_to_cpus(&hw
->cap_sup_mfi
.variant
);
684 le16_to_cpus(&hw
->cap_sup_mfi
.bottom
);
685 le16_to_cpus(&hw
->cap_sup_mfi
.top
);
687 netdev_info(wlandev
->netdev
,
688 "MFI:SUP:role=0x%02x:id=0x%02x:var=0x%02x:b/t=%d/%d\n",
689 hw
->cap_sup_mfi
.role
, hw
->cap_sup_mfi
.id
,
690 hw
->cap_sup_mfi
.variant
, hw
->cap_sup_mfi
.bottom
,
691 hw
->cap_sup_mfi
.top
);
693 /* Compatibility range, Controller supplier */
694 result
= hfa384x_drvr_getconfig(hw
, HFA384x_RID_CFISUPRANGE
,
696 sizeof(struct hfa384x_caplevel
));
698 netdev_err(wlandev
->netdev
, "Failed to retrieve CFISUPRANGE\n");
702 /* get all the Compatibility range, controller interface supplier
703 * fields in byte order
705 le16_to_cpus(&hw
->cap_sup_cfi
.role
);
706 le16_to_cpus(&hw
->cap_sup_cfi
.id
);
707 le16_to_cpus(&hw
->cap_sup_cfi
.variant
);
708 le16_to_cpus(&hw
->cap_sup_cfi
.bottom
);
709 le16_to_cpus(&hw
->cap_sup_cfi
.top
);
711 netdev_info(wlandev
->netdev
,
712 "CFI:SUP:role=0x%02x:id=0x%02x:var=0x%02x:b/t=%d/%d\n",
713 hw
->cap_sup_cfi
.role
, hw
->cap_sup_cfi
.id
,
714 hw
->cap_sup_cfi
.variant
, hw
->cap_sup_cfi
.bottom
,
715 hw
->cap_sup_cfi
.top
);
717 /* Compatibility range, Primary f/w supplier */
718 result
= hfa384x_drvr_getconfig(hw
, HFA384x_RID_PRISUPRANGE
,
720 sizeof(struct hfa384x_caplevel
));
722 netdev_err(wlandev
->netdev
, "Failed to retrieve PRISUPRANGE\n");
726 /* get all the Compatibility range, primary firmware supplier
727 * fields in byte order
729 le16_to_cpus(&hw
->cap_sup_pri
.role
);
730 le16_to_cpus(&hw
->cap_sup_pri
.id
);
731 le16_to_cpus(&hw
->cap_sup_pri
.variant
);
732 le16_to_cpus(&hw
->cap_sup_pri
.bottom
);
733 le16_to_cpus(&hw
->cap_sup_pri
.top
);
735 netdev_info(wlandev
->netdev
,
736 "PRI:SUP:role=0x%02x:id=0x%02x:var=0x%02x:b/t=%d/%d\n",
737 hw
->cap_sup_pri
.role
, hw
->cap_sup_pri
.id
,
738 hw
->cap_sup_pri
.variant
, hw
->cap_sup_pri
.bottom
,
739 hw
->cap_sup_pri
.top
);
741 /* Compatibility range, Station f/w supplier */
742 result
= hfa384x_drvr_getconfig(hw
, HFA384x_RID_STASUPRANGE
,
744 sizeof(struct hfa384x_caplevel
));
746 netdev_err(wlandev
->netdev
, "Failed to retrieve STASUPRANGE\n");
750 /* get all the Compatibility range, station firmware supplier
751 * fields in byte order
753 le16_to_cpus(&hw
->cap_sup_sta
.role
);
754 le16_to_cpus(&hw
->cap_sup_sta
.id
);
755 le16_to_cpus(&hw
->cap_sup_sta
.variant
);
756 le16_to_cpus(&hw
->cap_sup_sta
.bottom
);
757 le16_to_cpus(&hw
->cap_sup_sta
.top
);
759 if (hw
->cap_sup_sta
.id
== 0x04) {
760 netdev_info(wlandev
->netdev
,
761 "STA:SUP:role=0x%02x:id=0x%02x:var=0x%02x:b/t=%d/%d\n",
762 hw
->cap_sup_sta
.role
, hw
->cap_sup_sta
.id
,
763 hw
->cap_sup_sta
.variant
, hw
->cap_sup_sta
.bottom
,
764 hw
->cap_sup_sta
.top
);
766 netdev_info(wlandev
->netdev
,
767 "AP:SUP:role=0x%02x:id=0x%02x:var=0x%02x:b/t=%d/%d\n",
768 hw
->cap_sup_sta
.role
, hw
->cap_sup_sta
.id
,
769 hw
->cap_sup_sta
.variant
, hw
->cap_sup_sta
.bottom
,
770 hw
->cap_sup_sta
.top
);
773 /* Compatibility range, primary f/w actor, CFI supplier */
774 result
= hfa384x_drvr_getconfig(hw
, HFA384x_RID_PRI_CFIACTRANGES
,
775 &hw
->cap_act_pri_cfi
,
776 sizeof(struct hfa384x_caplevel
));
778 netdev_err(wlandev
->netdev
, "Failed to retrieve PRI_CFIACTRANGES\n");
782 /* get all the Compatibility range, primary f/w actor, CFI supplier
783 * fields in byte order
785 le16_to_cpus(&hw
->cap_act_pri_cfi
.role
);
786 le16_to_cpus(&hw
->cap_act_pri_cfi
.id
);
787 le16_to_cpus(&hw
->cap_act_pri_cfi
.variant
);
788 le16_to_cpus(&hw
->cap_act_pri_cfi
.bottom
);
789 le16_to_cpus(&hw
->cap_act_pri_cfi
.top
);
791 netdev_info(wlandev
->netdev
,
792 "PRI-CFI:ACT:role=0x%02x:id=0x%02x:var=0x%02x:b/t=%d/%d\n",
793 hw
->cap_act_pri_cfi
.role
, hw
->cap_act_pri_cfi
.id
,
794 hw
->cap_act_pri_cfi
.variant
, hw
->cap_act_pri_cfi
.bottom
,
795 hw
->cap_act_pri_cfi
.top
);
797 /* Compatibility range, sta f/w actor, CFI supplier */
798 result
= hfa384x_drvr_getconfig(hw
, HFA384x_RID_STA_CFIACTRANGES
,
799 &hw
->cap_act_sta_cfi
,
800 sizeof(struct hfa384x_caplevel
));
802 netdev_err(wlandev
->netdev
, "Failed to retrieve STA_CFIACTRANGES\n");
806 /* get all the Compatibility range, station f/w actor, CFI supplier
807 * fields in byte order
809 le16_to_cpus(&hw
->cap_act_sta_cfi
.role
);
810 le16_to_cpus(&hw
->cap_act_sta_cfi
.id
);
811 le16_to_cpus(&hw
->cap_act_sta_cfi
.variant
);
812 le16_to_cpus(&hw
->cap_act_sta_cfi
.bottom
);
813 le16_to_cpus(&hw
->cap_act_sta_cfi
.top
);
815 netdev_info(wlandev
->netdev
,
816 "STA-CFI:ACT:role=0x%02x:id=0x%02x:var=0x%02x:b/t=%d/%d\n",
817 hw
->cap_act_sta_cfi
.role
, hw
->cap_act_sta_cfi
.id
,
818 hw
->cap_act_sta_cfi
.variant
, hw
->cap_act_sta_cfi
.bottom
,
819 hw
->cap_act_sta_cfi
.top
);
821 /* Compatibility range, sta f/w actor, MFI supplier */
822 result
= hfa384x_drvr_getconfig(hw
, HFA384x_RID_STA_MFIACTRANGES
,
823 &hw
->cap_act_sta_mfi
,
824 sizeof(struct hfa384x_caplevel
));
826 netdev_err(wlandev
->netdev
, "Failed to retrieve STA_MFIACTRANGES\n");
830 /* get all the Compatibility range, station f/w actor, MFI supplier
831 * fields in byte order
833 le16_to_cpus(&hw
->cap_act_sta_mfi
.role
);
834 le16_to_cpus(&hw
->cap_act_sta_mfi
.id
);
835 le16_to_cpus(&hw
->cap_act_sta_mfi
.variant
);
836 le16_to_cpus(&hw
->cap_act_sta_mfi
.bottom
);
837 le16_to_cpus(&hw
->cap_act_sta_mfi
.top
);
839 netdev_info(wlandev
->netdev
,
840 "STA-MFI:ACT:role=0x%02x:id=0x%02x:var=0x%02x:b/t=%d/%d\n",
841 hw
->cap_act_sta_mfi
.role
, hw
->cap_act_sta_mfi
.id
,
842 hw
->cap_act_sta_mfi
.variant
, hw
->cap_act_sta_mfi
.bottom
,
843 hw
->cap_act_sta_mfi
.top
);
846 result
= hfa384x_drvr_getconfig(hw
, HFA384x_RID_NICSERIALNUMBER
,
847 snum
, HFA384x_RID_NICSERIALNUMBER_LEN
);
849 netdev_info(wlandev
->netdev
, "Prism2 card SN: %*pE\n",
850 HFA384x_RID_NICSERIALNUMBER_LEN
, snum
);
852 netdev_err(wlandev
->netdev
, "Failed to retrieve Prism2 Card SN\n");
856 /* Collect the MAC address */
857 result
= hfa384x_drvr_getconfig(hw
, HFA384x_RID_CNFOWNMACADDR
,
858 wlandev
->netdev
->dev_addr
, ETH_ALEN
);
860 netdev_err(wlandev
->netdev
, "Failed to retrieve mac address\n");
864 /* short preamble is always implemented */
865 wlandev
->nsdcaps
|= P80211_NSDCAP_SHORT_PREAMBLE
;
867 /* find out if hardware wep is implemented */
868 hfa384x_drvr_getconfig16(hw
, HFA384x_RID_PRIVACYOPTIMP
, &temp
);
870 wlandev
->nsdcaps
|= P80211_NSDCAP_HARDWAREWEP
;
872 /* get the dBm Scaling constant */
873 hfa384x_drvr_getconfig16(hw
, HFA384x_RID_CNFDBMADJUST
, &temp
);
874 hw
->dbmadjust
= temp
;
876 /* Only enable scan by default on newer firmware */
877 if (HFA384x_FIRMWARE_VERSION(hw
->ident_sta_fw
.major
,
878 hw
->ident_sta_fw
.minor
,
879 hw
->ident_sta_fw
.variant
) <
880 HFA384x_FIRMWARE_VERSION(1, 5, 5)) {
881 wlandev
->nsdcaps
|= P80211_NSDCAP_NOSCAN
;
884 /* TODO: Set any internally managed config items */
888 netdev_err(wlandev
->netdev
, "Failed, result=%d\n", result
);
894 * prism2sta_globalsetup
896 * Set any global RIDs that we want to set at device activation.
899 * wlandev wlan device structure
903 * >0 f/w reported error
904 * <0 driver reported error
911 static int prism2sta_globalsetup(struct wlandevice
*wlandev
)
913 struct hfa384x
*hw
= wlandev
->priv
;
915 /* Set the maximum frame size */
916 return hfa384x_drvr_setconfig16(hw
, HFA384x_RID_CNFMAXDATALEN
,
920 static int prism2sta_setmulticast(struct wlandevice
*wlandev
,
921 struct net_device
*dev
)
924 struct hfa384x
*hw
= wlandev
->priv
;
928 /* If we're not ready, what's the point? */
929 if (hw
->state
!= HFA384x_STATE_RUNNING
)
932 if ((dev
->flags
& (IFF_PROMISC
| IFF_ALLMULTI
)) != 0)
933 promisc
= P80211ENUM_truth_true
;
935 promisc
= P80211ENUM_truth_false
;
938 hfa384x_drvr_setconfig16_async(hw
, HFA384x_RID_PROMISCMODE
,
945 * prism2sta_inf_handover
947 * Handles the receipt of a Handover info frame. Should only be present
951 * wlandev wlan device structure
952 * inf ptr to info frame (contents in hfa384x order)
962 static void prism2sta_inf_handover(struct wlandevice
*wlandev
,
963 struct hfa384x_inf_frame
*inf
)
965 pr_debug("received infoframe:HANDOVER (unhandled)\n");
969 * prism2sta_inf_tallies
971 * Handles the receipt of a CommTallies info frame.
974 * wlandev wlan device structure
975 * inf ptr to info frame (contents in hfa384x order)
985 static void prism2sta_inf_tallies(struct wlandevice
*wlandev
,
986 struct hfa384x_inf_frame
*inf
)
988 struct hfa384x
*hw
= wlandev
->priv
;
996 * Determine if these are 16-bit or 32-bit tallies, based on the
997 * record length of the info record.
1000 cnt
= sizeof(struct hfa384x_comm_tallies_32
) / sizeof(u32
);
1001 if (inf
->framelen
> 22) {
1002 dst
= (u32
*)&hw
->tallies
;
1003 src32
= (__le32
*)&inf
->info
.commtallies32
;
1004 for (i
= 0; i
< cnt
; i
++, dst
++, src32
++)
1005 *dst
+= le32_to_cpu(*src32
);
1007 dst
= (u32
*)&hw
->tallies
;
1008 src16
= (__le16
*)&inf
->info
.commtallies16
;
1009 for (i
= 0; i
< cnt
; i
++, dst
++, src16
++)
1010 *dst
+= le16_to_cpu(*src16
);
1015 * prism2sta_inf_scanresults
1017 * Handles the receipt of a Scan Results info frame.
1020 * wlandev wlan device structure
1021 * inf ptr to info frame (contents in hfa384x order)
1031 static void prism2sta_inf_scanresults(struct wlandevice
*wlandev
,
1032 struct hfa384x_inf_frame
*inf
)
1034 struct hfa384x
*hw
= wlandev
->priv
;
1036 struct hfa384x_scan_result
*sr
= &inf
->info
.scanresult
;
1038 struct hfa384x_join_request_data joinreq
;
1041 /* Get the number of results, first in bytes, then in results */
1042 nbss
= (inf
->framelen
* sizeof(u16
)) -
1043 sizeof(inf
->infotype
) - sizeof(inf
->info
.scanresult
.scanreason
);
1044 nbss
/= sizeof(struct hfa384x_scan_result_sub
);
1047 pr_debug("rx scanresults, reason=%d, nbss=%d:\n",
1048 inf
->info
.scanresult
.scanreason
, nbss
);
1049 for (i
= 0; i
< nbss
; i
++) {
1050 pr_debug("chid=%d anl=%d sl=%d bcnint=%d\n",
1053 sr
->result
[i
].sl
, sr
->result
[i
].bcnint
);
1054 pr_debug(" capinfo=0x%04x proberesp_rate=%d\n",
1055 sr
->result
[i
].capinfo
, sr
->result
[i
].proberesp_rate
);
1057 /* issue a join request */
1058 joinreq
.channel
= sr
->result
[0].chid
;
1059 memcpy(joinreq
.bssid
, sr
->result
[0].bssid
, WLAN_BSSID_LEN
);
1060 result
= hfa384x_drvr_setconfig(hw
,
1061 HFA384x_RID_JOINREQUEST
,
1062 &joinreq
, HFA384x_RID_JOINREQUEST_LEN
);
1064 netdev_err(wlandev
->netdev
, "setconfig(joinreq) failed, result=%d\n",
1070 * prism2sta_inf_hostscanresults
1072 * Handles the receipt of a Scan Results info frame.
1075 * wlandev wlan device structure
1076 * inf ptr to info frame (contents in hfa384x order)
1086 static void prism2sta_inf_hostscanresults(struct wlandevice
*wlandev
,
1087 struct hfa384x_inf_frame
*inf
)
1089 struct hfa384x
*hw
= wlandev
->priv
;
1092 nbss
= (inf
->framelen
- 3) / 32;
1093 pr_debug("Received %d hostscan results\n", nbss
);
1098 kfree(hw
->scanresults
);
1100 hw
->scanresults
= kmemdup(inf
, sizeof(*inf
), GFP_ATOMIC
);
1105 /* Notify/wake the sleeping caller. */
1106 hw
->scanflag
= nbss
;
1107 wake_up_interruptible(&hw
->cmdq
);
1111 * prism2sta_inf_chinforesults
1113 * Handles the receipt of a Channel Info Results info frame.
1116 * wlandev wlan device structure
1117 * inf ptr to info frame (contents in hfa384x order)
1127 static void prism2sta_inf_chinforesults(struct wlandevice
*wlandev
,
1128 struct hfa384x_inf_frame
*inf
)
1130 struct hfa384x
*hw
= wlandev
->priv
;
1133 hw
->channel_info
.results
.scanchannels
=
1134 inf
->info
.chinforesult
.scanchannels
;
1136 for (i
= 0, n
= 0; i
< HFA384x_CHINFORESULT_MAX
; i
++) {
1137 struct hfa384x_ch_info_result_sub
*result
;
1138 struct hfa384x_ch_info_result_sub
*chinforesult
;
1141 if (!(hw
->channel_info
.results
.scanchannels
& (1 << i
)))
1144 result
= &inf
->info
.chinforesult
.result
[n
];
1145 chan
= result
->chid
- 1;
1147 if (chan
< 0 || chan
>= HFA384x_CHINFORESULT_MAX
)
1150 chinforesult
= &hw
->channel_info
.results
.result
[chan
];
1151 chinforesult
->chid
= chan
;
1152 chinforesult
->anl
= result
->anl
;
1153 chinforesult
->pnl
= result
->pnl
;
1154 chinforesult
->active
= result
->active
;
1156 pr_debug("chinfo: channel %d, %s level (avg/peak)=%d/%d dB, pcf %d\n",
1158 (chinforesult
->active
& HFA384x_CHINFORESULT_BSSACTIVE
)
1159 ? "signal" : "noise",
1160 chinforesult
->anl
, chinforesult
->pnl
,
1161 (chinforesult
->active
& HFA384x_CHINFORESULT_PCFACTIVE
)
1165 atomic_set(&hw
->channel_info
.done
, 2);
1167 hw
->channel_info
.count
= n
;
1170 void prism2sta_processing_defer(struct work_struct
*data
)
1172 struct hfa384x
*hw
= container_of(data
, struct hfa384x
, link_bh
);
1173 struct wlandevice
*wlandev
= hw
->wlandev
;
1174 struct hfa384x_bytestr32 ssid
;
1177 /* First let's process the auth frames */
1179 struct sk_buff
*skb
;
1180 struct hfa384x_inf_frame
*inf
;
1182 while ((skb
= skb_dequeue(&hw
->authq
))) {
1183 inf
= (struct hfa384x_inf_frame
*)skb
->data
;
1184 prism2sta_inf_authreq_defer(wlandev
, inf
);
1188 /* Now let's handle the linkstatus stuff */
1189 if (hw
->link_status
== hw
->link_status_new
)
1192 hw
->link_status
= hw
->link_status_new
;
1194 switch (hw
->link_status
) {
1195 case HFA384x_LINK_NOTCONNECTED
:
1196 /* I'm currently assuming that this is the initial link
1197 * state. It should only be possible immediately
1198 * following an Enable command.
1200 * Block Transmits, Ignore receives of data frames
1202 netif_carrier_off(wlandev
->netdev
);
1204 netdev_info(wlandev
->netdev
, "linkstatus=NOTCONNECTED (unhandled)\n");
1207 case HFA384x_LINK_CONNECTED
:
1208 /* This one indicates a successful scan/join/auth/assoc.
1209 * When we have the full MLME complement, this event will
1210 * signify successful completion of both mlme_authenticate
1211 * and mlme_associate. State management will get a little
1214 * Indicate authentication and/or association
1215 * Enable Transmits, Receives and pass up data frames
1218 netif_carrier_on(wlandev
->netdev
);
1220 /* If we are joining a specific AP, set our
1221 * state and reset retries
1223 if (hw
->join_ap
== 1)
1225 hw
->join_retries
= 60;
1227 /* Don't call this in monitor mode */
1228 if (wlandev
->netdev
->type
== ARPHRD_ETHER
) {
1231 netdev_info(wlandev
->netdev
, "linkstatus=CONNECTED\n");
1233 /* For non-usb devices, we can use the sync versions */
1234 /* Collect the BSSID, and set state to allow tx */
1236 result
= hfa384x_drvr_getconfig(hw
,
1237 HFA384x_RID_CURRENTBSSID
,
1242 ("getconfig(0x%02x) failed, result = %d\n",
1243 HFA384x_RID_CURRENTBSSID
, result
);
1247 result
= hfa384x_drvr_getconfig(hw
,
1248 HFA384x_RID_CURRENTSSID
,
1249 &ssid
, sizeof(ssid
));
1252 ("getconfig(0x%02x) failed, result = %d\n",
1253 HFA384x_RID_CURRENTSSID
, result
);
1256 prism2mgmt_bytestr2pstr((struct hfa384x_bytestr
*)&ssid
,
1257 (struct p80211pstrd
*)&wlandev
->ssid
);
1259 /* Collect the port status */
1260 result
= hfa384x_drvr_getconfig16(hw
,
1261 HFA384x_RID_PORTSTATUS
,
1265 ("getconfig(0x%02x) failed, result = %d\n",
1266 HFA384x_RID_PORTSTATUS
, result
);
1270 (portstatus
== HFA384x_PSTATUS_CONN_IBSS
) ?
1271 WLAN_MACMODE_IBSS_STA
: WLAN_MACMODE_ESS_STA
;
1273 /* signal back up to cfg80211 layer */
1274 prism2_connect_result(wlandev
, P80211ENUM_truth_false
);
1276 /* Get the ball rolling on the comms quality stuff */
1277 prism2sta_commsqual_defer(&hw
->commsqual_bh
);
1281 case HFA384x_LINK_DISCONNECTED
:
1282 /* This one indicates that our association is gone. We've
1283 * lost connection with the AP and/or been disassociated.
1284 * This indicates that the MAC has completely cleared it's
1285 * associated state. We * should send a deauth indication
1286 * (implying disassoc) up * to the MLME.
1288 * Indicate Deauthentication
1289 * Block Transmits, Ignore receives of data frames
1291 if (wlandev
->netdev
->type
== ARPHRD_ETHER
)
1292 netdev_info(wlandev
->netdev
,
1293 "linkstatus=DISCONNECTED (unhandled)\n");
1294 wlandev
->macmode
= WLAN_MACMODE_NONE
;
1296 netif_carrier_off(wlandev
->netdev
);
1298 /* signal back up to cfg80211 layer */
1299 prism2_disconnected(wlandev
);
1303 case HFA384x_LINK_AP_CHANGE
:
1304 /* This one indicates that the MAC has decided to and
1305 * successfully completed a change to another AP. We
1306 * should probably implement a reassociation indication
1307 * in response to this one. I'm thinking that the
1308 * p80211 layer needs to be notified in case of
1309 * buffering/queueing issues. User mode also needs to be
1310 * notified so that any BSS dependent elements can be
1312 * associated state. We * should send a deauth indication
1313 * (implying disassoc) up * to the MLME.
1315 * Indicate Reassociation
1316 * Enable Transmits, Receives and pass up data frames
1318 netdev_info(wlandev
->netdev
, "linkstatus=AP_CHANGE\n");
1320 result
= hfa384x_drvr_getconfig(hw
,
1321 HFA384x_RID_CURRENTBSSID
,
1322 wlandev
->bssid
, WLAN_BSSID_LEN
);
1324 pr_debug("getconfig(0x%02x) failed, result = %d\n",
1325 HFA384x_RID_CURRENTBSSID
, result
);
1329 result
= hfa384x_drvr_getconfig(hw
,
1330 HFA384x_RID_CURRENTSSID
,
1331 &ssid
, sizeof(ssid
));
1333 pr_debug("getconfig(0x%02x) failed, result = %d\n",
1334 HFA384x_RID_CURRENTSSID
, result
);
1337 prism2mgmt_bytestr2pstr((struct hfa384x_bytestr
*)&ssid
,
1338 (struct p80211pstrd
*)&wlandev
->ssid
);
1340 hw
->link_status
= HFA384x_LINK_CONNECTED
;
1341 netif_carrier_on(wlandev
->netdev
);
1343 /* signal back up to cfg80211 layer */
1344 prism2_roamed(wlandev
);
1348 case HFA384x_LINK_AP_OUTOFRANGE
:
1349 /* This one indicates that the MAC has decided that the
1350 * AP is out of range, but hasn't found a better candidate
1351 * so the MAC maintains its "associated" state in case
1352 * we get back in range. We should block transmits and
1353 * receives in this state. Do we need an indication here?
1354 * Probably not since a polling user-mode element would
1355 * get this status from p2PortStatus(FD40). What about
1358 * Block Transmits, Ignore receives of data frames
1360 netdev_info(wlandev
->netdev
, "linkstatus=AP_OUTOFRANGE (unhandled)\n");
1362 netif_carrier_off(wlandev
->netdev
);
1366 case HFA384x_LINK_AP_INRANGE
:
1367 /* This one indicates that the MAC has decided that the
1368 * AP is back in range. We continue working with our
1369 * existing association.
1371 * Enable Transmits, Receives and pass up data frames
1373 netdev_info(wlandev
->netdev
, "linkstatus=AP_INRANGE\n");
1375 hw
->link_status
= HFA384x_LINK_CONNECTED
;
1376 netif_carrier_on(wlandev
->netdev
);
1380 case HFA384x_LINK_ASSOCFAIL
:
1381 /* This one is actually a peer to CONNECTED. We've
1382 * requested a join for a given SSID and optionally BSSID.
1383 * We can use this one to indicate authentication and
1384 * association failures. The trick is going to be
1385 * 1) identifying the failure, and 2) state management.
1387 * Disable Transmits, Ignore receives of data frames
1389 if (hw
->join_ap
&& --hw
->join_retries
> 0) {
1390 struct hfa384x_join_request_data joinreq
;
1392 joinreq
= hw
->joinreq
;
1393 /* Send the join request */
1394 hfa384x_drvr_setconfig(hw
,
1395 HFA384x_RID_JOINREQUEST
,
1397 HFA384x_RID_JOINREQUEST_LEN
);
1398 netdev_info(wlandev
->netdev
,
1399 "linkstatus=ASSOCFAIL (re-submitting join)\n");
1401 netdev_info(wlandev
->netdev
, "linkstatus=ASSOCFAIL (unhandled)\n");
1404 netif_carrier_off(wlandev
->netdev
);
1406 /* signal back up to cfg80211 layer */
1407 prism2_connect_result(wlandev
, P80211ENUM_truth_true
);
1412 /* This is bad, IO port problems? */
1413 netdev_warn(wlandev
->netdev
,
1414 "unknown linkstatus=0x%02x\n", hw
->link_status
);
1418 wlandev
->linkstatus
= (hw
->link_status
== HFA384x_LINK_CONNECTED
);
1422 * prism2sta_inf_linkstatus
1424 * Handles the receipt of a Link Status info frame.
1427 * wlandev wlan device structure
1428 * inf ptr to info frame (contents in hfa384x order)
1438 static void prism2sta_inf_linkstatus(struct wlandevice
*wlandev
,
1439 struct hfa384x_inf_frame
*inf
)
1441 struct hfa384x
*hw
= wlandev
->priv
;
1443 hw
->link_status_new
= le16_to_cpu(inf
->info
.linkstatus
.linkstatus
);
1445 schedule_work(&hw
->link_bh
);
1449 * prism2sta_inf_assocstatus
1451 * Handles the receipt of an Association Status info frame. Should
1452 * be present in APs only.
1455 * wlandev wlan device structure
1456 * inf ptr to info frame (contents in hfa384x order)
1466 static void prism2sta_inf_assocstatus(struct wlandevice
*wlandev
,
1467 struct hfa384x_inf_frame
*inf
)
1469 struct hfa384x
*hw
= wlandev
->priv
;
1470 struct hfa384x_assoc_status rec
;
1473 memcpy(&rec
, &inf
->info
.assocstatus
, sizeof(rec
));
1474 le16_to_cpus(&rec
.assocstatus
);
1475 le16_to_cpus(&rec
.reason
);
1478 * Find the address in the list of authenticated stations.
1479 * If it wasn't found, then this address has not been previously
1480 * authenticated and something weird has happened if this is
1481 * anything other than an "authentication failed" message.
1482 * If the address was found, then set the "associated" flag for
1483 * that station, based on whether the station is associating or
1484 * losing its association. Something weird has also happened
1485 * if we find the address in the list of authenticated stations
1486 * but we are getting an "authentication failed" message.
1489 for (i
= 0; i
< hw
->authlist
.cnt
; i
++)
1490 if (ether_addr_equal(rec
.sta_addr
, hw
->authlist
.addr
[i
]))
1493 if (i
>= hw
->authlist
.cnt
) {
1494 if (rec
.assocstatus
!= HFA384x_ASSOCSTATUS_AUTHFAIL
)
1495 netdev_warn(wlandev
->netdev
,
1496 "assocstatus info frame received for non-authenticated station.\n");
1498 hw
->authlist
.assoc
[i
] =
1499 (rec
.assocstatus
== HFA384x_ASSOCSTATUS_STAASSOC
||
1500 rec
.assocstatus
== HFA384x_ASSOCSTATUS_REASSOC
);
1502 if (rec
.assocstatus
== HFA384x_ASSOCSTATUS_AUTHFAIL
)
1503 netdev_warn(wlandev
->netdev
,
1504 "authfail assocstatus info frame received for authenticated station.\n");
1509 * prism2sta_inf_authreq
1511 * Handles the receipt of an Authentication Request info frame. Should
1512 * be present in APs only.
1515 * wlandev wlan device structure
1516 * inf ptr to info frame (contents in hfa384x order)
1527 static void prism2sta_inf_authreq(struct wlandevice
*wlandev
,
1528 struct hfa384x_inf_frame
*inf
)
1530 struct hfa384x
*hw
= wlandev
->priv
;
1531 struct sk_buff
*skb
;
1533 skb
= dev_alloc_skb(sizeof(*inf
));
1535 skb_put(skb
, sizeof(*inf
));
1536 memcpy(skb
->data
, inf
, sizeof(*inf
));
1537 skb_queue_tail(&hw
->authq
, skb
);
1538 schedule_work(&hw
->link_bh
);
1542 static void prism2sta_inf_authreq_defer(struct wlandevice
*wlandev
,
1543 struct hfa384x_inf_frame
*inf
)
1545 struct hfa384x
*hw
= wlandev
->priv
;
1546 struct hfa384x_authenticate_station_data rec
;
1548 int i
, added
, result
, cnt
;
1552 * Build the AuthenticateStation record. Initialize it for denying
1556 ether_addr_copy(rec
.address
, inf
->info
.authreq
.sta_addr
);
1557 rec
.status
= cpu_to_le16(P80211ENUM_status_unspec_failure
);
1560 * Authenticate based on the access mode.
1563 switch (hw
->accessmode
) {
1564 case WLAN_ACCESS_NONE
:
1567 * Deny all new authentications. However, if a station
1568 * is ALREADY authenticated, then accept it.
1571 for (i
= 0; i
< hw
->authlist
.cnt
; i
++)
1572 if (ether_addr_equal(rec
.address
,
1573 hw
->authlist
.addr
[i
])) {
1574 rec
.status
= cpu_to_le16(P80211ENUM_status_successful
);
1580 case WLAN_ACCESS_ALL
:
1583 * Allow all authentications.
1586 rec
.status
= cpu_to_le16(P80211ENUM_status_successful
);
1589 case WLAN_ACCESS_ALLOW
:
1592 * Only allow the authentication if the MAC address
1593 * is in the list of allowed addresses.
1595 * Since this is the interrupt handler, we may be here
1596 * while the access list is in the middle of being
1597 * updated. Choose the list which is currently okay.
1598 * See "prism2mib_priv_accessallow()" for details.
1601 if (hw
->allow
.modify
== 0) {
1602 cnt
= hw
->allow
.cnt
;
1603 addr
= hw
->allow
.addr
[0];
1605 cnt
= hw
->allow
.cnt1
;
1606 addr
= hw
->allow
.addr1
[0];
1609 for (i
= 0; i
< cnt
; i
++, addr
+= ETH_ALEN
)
1610 if (ether_addr_equal(rec
.address
, addr
)) {
1611 rec
.status
= cpu_to_le16(P80211ENUM_status_successful
);
1617 case WLAN_ACCESS_DENY
:
1620 * Allow the authentication UNLESS the MAC address is
1621 * in the list of denied addresses.
1623 * Since this is the interrupt handler, we may be here
1624 * while the access list is in the middle of being
1625 * updated. Choose the list which is currently okay.
1626 * See "prism2mib_priv_accessdeny()" for details.
1629 if (hw
->deny
.modify
== 0) {
1631 addr
= hw
->deny
.addr
[0];
1633 cnt
= hw
->deny
.cnt1
;
1634 addr
= hw
->deny
.addr1
[0];
1637 rec
.status
= cpu_to_le16(P80211ENUM_status_successful
);
1639 for (i
= 0; i
< cnt
; i
++, addr
+= ETH_ALEN
)
1640 if (ether_addr_equal(rec
.address
, addr
)) {
1641 rec
.status
= cpu_to_le16(P80211ENUM_status_unspec_failure
);
1649 * If the authentication is okay, then add the MAC address to the
1650 * list of authenticated stations. Don't add the address if it
1651 * is already in the list. (802.11b does not seem to disallow
1652 * a station from issuing an authentication request when the
1653 * station is already authenticated. Does this sort of thing
1654 * ever happen? We might as well do the check just in case.)
1659 if (rec
.status
== cpu_to_le16(P80211ENUM_status_successful
)) {
1660 for (i
= 0; i
< hw
->authlist
.cnt
; i
++)
1661 if (ether_addr_equal(rec
.address
,
1662 hw
->authlist
.addr
[i
]))
1665 if (i
>= hw
->authlist
.cnt
) {
1666 if (hw
->authlist
.cnt
>= WLAN_AUTH_MAX
) {
1667 rec
.status
= cpu_to_le16(P80211ENUM_status_ap_full
);
1669 ether_addr_copy(hw
->authlist
.addr
[hw
->authlist
.cnt
],
1678 * Send back the results of the authentication. If this doesn't work,
1679 * then make sure to remove the address from the authenticated list if
1683 rec
.algorithm
= inf
->info
.authreq
.algorithm
;
1685 result
= hfa384x_drvr_setconfig(hw
, HFA384x_RID_AUTHENTICATESTA
,
1690 netdev_err(wlandev
->netdev
,
1691 "setconfig(authenticatestation) failed, result=%d\n",
1697 * prism2sta_inf_psusercnt
1699 * Handles the receipt of a PowerSaveUserCount info frame. Should
1700 * be present in APs only.
1703 * wlandev wlan device structure
1704 * inf ptr to info frame (contents in hfa384x order)
1714 static void prism2sta_inf_psusercnt(struct wlandevice
*wlandev
,
1715 struct hfa384x_inf_frame
*inf
)
1717 struct hfa384x
*hw
= wlandev
->priv
;
1719 hw
->psusercount
= le16_to_cpu(inf
->info
.psusercnt
.usercnt
);
1725 * Handles the Info event.
1728 * wlandev wlan device structure
1729 * inf ptr to a generic info frame
1739 void prism2sta_ev_info(struct wlandevice
*wlandev
,
1740 struct hfa384x_inf_frame
*inf
)
1742 le16_to_cpus(&inf
->infotype
);
1744 switch (inf
->infotype
) {
1745 case HFA384x_IT_HANDOVERADDR
:
1746 prism2sta_inf_handover(wlandev
, inf
);
1748 case HFA384x_IT_COMMTALLIES
:
1749 prism2sta_inf_tallies(wlandev
, inf
);
1751 case HFA384x_IT_HOSTSCANRESULTS
:
1752 prism2sta_inf_hostscanresults(wlandev
, inf
);
1754 case HFA384x_IT_SCANRESULTS
:
1755 prism2sta_inf_scanresults(wlandev
, inf
);
1757 case HFA384x_IT_CHINFORESULTS
:
1758 prism2sta_inf_chinforesults(wlandev
, inf
);
1760 case HFA384x_IT_LINKSTATUS
:
1761 prism2sta_inf_linkstatus(wlandev
, inf
);
1763 case HFA384x_IT_ASSOCSTATUS
:
1764 prism2sta_inf_assocstatus(wlandev
, inf
);
1766 case HFA384x_IT_AUTHREQ
:
1767 prism2sta_inf_authreq(wlandev
, inf
);
1769 case HFA384x_IT_PSUSERCNT
:
1770 prism2sta_inf_psusercnt(wlandev
, inf
);
1772 case HFA384x_IT_KEYIDCHANGED
:
1773 netdev_warn(wlandev
->netdev
, "Unhandled IT_KEYIDCHANGED\n");
1775 case HFA384x_IT_ASSOCREQ
:
1776 netdev_warn(wlandev
->netdev
, "Unhandled IT_ASSOCREQ\n");
1778 case HFA384x_IT_MICFAILURE
:
1779 netdev_warn(wlandev
->netdev
, "Unhandled IT_MICFAILURE\n");
1782 netdev_warn(wlandev
->netdev
,
1783 "Unknown info type=0x%02x\n", inf
->infotype
);
1789 * prism2sta_ev_txexc
1791 * Handles the TxExc event. A Transmit Exception event indicates
1792 * that the MAC's TX process was unsuccessful - so the packet did
1793 * not get transmitted.
1796 * wlandev wlan device structure
1797 * status tx frame status word
1807 void prism2sta_ev_txexc(struct wlandevice
*wlandev
, u16 status
)
1809 pr_debug("TxExc status=0x%x.\n", status
);
1815 * Handles the Tx event.
1818 * wlandev wlan device structure
1819 * status tx frame status word
1828 void prism2sta_ev_tx(struct wlandevice
*wlandev
, u16 status
)
1830 pr_debug("Tx Complete, status=0x%04x\n", status
);
1831 /* update linux network stats */
1832 wlandev
->netdev
->stats
.tx_packets
++;
1836 * prism2sta_ev_alloc
1838 * Handles the Alloc event.
1841 * wlandev wlan device structure
1851 void prism2sta_ev_alloc(struct wlandevice
*wlandev
)
1853 netif_wake_queue(wlandev
->netdev
);
1859 * Called at module init time. This creates the struct wlandevice structure
1860 * and initializes it with relevant bits.
1866 * the created struct wlandevice structure.
1869 * also allocates the priv/hw structures.
1875 static struct wlandevice
*create_wlan(void)
1877 struct wlandevice
*wlandev
= NULL
;
1878 struct hfa384x
*hw
= NULL
;
1880 /* Alloc our structures */
1881 wlandev
= kzalloc(sizeof(*wlandev
), GFP_KERNEL
);
1882 hw
= kzalloc(sizeof(*hw
), GFP_KERNEL
);
1884 if (!wlandev
|| !hw
) {
1890 /* Initialize the network device object. */
1891 wlandev
->nsdname
= dev_info
;
1892 wlandev
->msdstate
= WLAN_MSD_HWPRESENT_PENDING
;
1894 wlandev
->open
= prism2sta_open
;
1895 wlandev
->close
= prism2sta_close
;
1896 wlandev
->reset
= prism2sta_reset
;
1897 wlandev
->txframe
= prism2sta_txframe
;
1898 wlandev
->mlmerequest
= prism2sta_mlmerequest
;
1899 wlandev
->set_multicast_list
= prism2sta_setmulticast
;
1900 wlandev
->tx_timeout
= hfa384x_tx_timeout
;
1902 wlandev
->nsdcaps
= P80211_NSDCAP_HWFRAGMENT
| P80211_NSDCAP_AUTOJOIN
;
1904 /* Initialize the device private data structure. */
1905 hw
->dot11_desired_bss_type
= 1;
1910 void prism2sta_commsqual_defer(struct work_struct
*data
)
1912 struct hfa384x
*hw
= container_of(data
, struct hfa384x
, commsqual_bh
);
1913 struct wlandevice
*wlandev
= hw
->wlandev
;
1914 struct hfa384x_bytestr32 ssid
;
1915 struct p80211msg_dot11req_mibget msg
;
1916 struct p80211item_uint32
*mibitem
= (struct p80211item_uint32
*)
1917 &msg
.mibattribute
.data
;
1920 if (hw
->wlandev
->hwremoved
)
1923 /* we don't care if we're in AP mode */
1924 if ((wlandev
->macmode
== WLAN_MACMODE_NONE
) ||
1925 (wlandev
->macmode
== WLAN_MACMODE_ESS_AP
)) {
1929 /* It only makes sense to poll these in non-IBSS */
1930 if (wlandev
->macmode
!= WLAN_MACMODE_IBSS_STA
) {
1931 result
= hfa384x_drvr_getconfig(hw
, HFA384x_RID_DBMCOMMSQUALITY
,
1932 &hw
->qual
, HFA384x_RID_DBMCOMMSQUALITY_LEN
);
1935 netdev_err(wlandev
->netdev
, "error fetching commsqual\n");
1939 pr_debug("commsqual %d %d %d\n",
1940 le16_to_cpu(hw
->qual
.cq_curr_bss
),
1941 le16_to_cpu(hw
->qual
.asl_curr_bss
),
1942 le16_to_cpu(hw
->qual
.anl_curr_fc
));
1945 /* Get the signal rate */
1946 msg
.msgcode
= DIDMSG_DOT11REQ_MIBGET
;
1947 mibitem
->did
= DIDMIB_P2_MAC_CURRENTTXRATE
;
1948 result
= p80211req_dorequest(wlandev
, (u8
*)&msg
);
1951 pr_debug("get signal rate failed, result = %d\n",
1956 switch (mibitem
->data
) {
1957 case HFA384x_RATEBIT_1
:
1960 case HFA384x_RATEBIT_2
:
1963 case HFA384x_RATEBIT_5dot5
:
1966 case HFA384x_RATEBIT_11
:
1970 pr_debug("Bad ratebit (%d)\n", mibitem
->data
);
1973 /* Lastly, we need to make sure the BSSID didn't change on us */
1974 result
= hfa384x_drvr_getconfig(hw
,
1975 HFA384x_RID_CURRENTBSSID
,
1976 wlandev
->bssid
, WLAN_BSSID_LEN
);
1978 pr_debug("getconfig(0x%02x) failed, result = %d\n",
1979 HFA384x_RID_CURRENTBSSID
, result
);
1983 result
= hfa384x_drvr_getconfig(hw
,
1984 HFA384x_RID_CURRENTSSID
,
1985 &ssid
, sizeof(ssid
));
1987 pr_debug("getconfig(0x%02x) failed, result = %d\n",
1988 HFA384x_RID_CURRENTSSID
, result
);
1991 prism2mgmt_bytestr2pstr((struct hfa384x_bytestr
*)&ssid
,
1992 (struct p80211pstrd
*)&wlandev
->ssid
);
1994 /* Reschedule timer */
1995 mod_timer(&hw
->commsqual_timer
, jiffies
+ HZ
);
1998 void prism2sta_commsqual_timer(struct timer_list
*t
)
2000 struct hfa384x
*hw
= from_timer(hw
, t
, commsqual_timer
);
2002 schedule_work(&hw
->commsqual_bh
);