blob: 64f90722b01b0d3fe4097b1e00e1ec4785a79e66 [file] [log] [blame]
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001/* src/prism2/driver/prism2sta.c
Ioana Ciornei60ec47f2015-09-30 22:28:32 +03002 *
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 */
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -070052
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -070053#include <linux/module.h>
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -070054#include <linux/kernel.h>
55#include <linux/sched.h>
56#include <linux/types.h>
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -070057#include <linux/slab.h>
58#include <linux/wireless.h>
59#include <linux/netdevice.h>
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -070060#include <linux/workqueue.h>
Moritz Muehlenhoffae262302009-01-21 22:00:45 +010061#include <linux/byteorder/generic.h>
Ioana Ciornei7078db92015-03-18 15:26:05 +020062#include <linux/etherdevice.h>
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -070063
Andrew Elwellef1a0ed2010-02-18 23:56:12 +010064#include <linux/io.h>
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -070065#include <linux/delay.h>
66#include <asm/byteorder.h>
67#include <linux/if_arp.h>
Moritz Muehlenhoff28b17a42009-01-21 22:00:41 +010068#include <linux/if_ether.h>
Moritz Muehlenhoff7f6e0e42009-01-25 21:54:55 +010069#include <linux/bitops.h>
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -070070
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -070071#include "p80211types.h"
72#include "p80211hdr.h"
73#include "p80211mgmt.h"
74#include "p80211conv.h"
75#include "p80211msg.h"
76#include "p80211netdev.h"
77#include "p80211req.h"
78#include "p80211metadef.h"
79#include "p80211metastruct.h"
80#include "hfa384x.h"
81#include "prism2mgmt.h"
82
Solomon Peachye02c69b2008-10-29 10:42:59 -040083static char *dev_info = "prism2_usb";
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -070084static wlandevice_t *create_wlan(void);
85
Moritz Muehlenhofff3422882009-02-08 02:21:04 +010086int prism2_reset_holdtime = 30; /* Reset hold time in ms */
87int prism2_reset_settletime = 100; /* Reset settle time in ms */
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -070088
Mithlesh Thukral297f06c2009-06-10 19:36:11 +053089static int prism2_doreset; /* Do a reset at init? */
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -070090
Moritz Muehlenhofff3422882009-02-08 02:21:04 +010091module_param(prism2_doreset, int, 0644);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -070092MODULE_PARM_DESC(prism2_doreset, "Issue a reset on initialization");
93
Moritz Muehlenhofff3422882009-02-08 02:21:04 +010094module_param(prism2_reset_holdtime, int, 0644);
95MODULE_PARM_DESC(prism2_reset_holdtime, "reset hold time in ms");
96module_param(prism2_reset_settletime, int, 0644);
97MODULE_PARM_DESC(prism2_reset_settletime, "reset settle time in ms");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -070098
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -070099MODULE_LICENSE("Dual MPL/GPL");
100
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530101static int prism2sta_open(wlandevice_t *wlandev);
102static int prism2sta_close(wlandevice_t *wlandev);
103static void prism2sta_reset(wlandevice_t *wlandev);
104static int prism2sta_txframe(wlandevice_t *wlandev, struct sk_buff *skb,
Edgardo Hames93df38e2010-07-30 22:51:55 -0300105 union p80211_hdr *p80211_hdr,
Edgardo Hames51e48962010-07-31 13:06:52 -0300106 struct p80211_metawep *p80211_wep);
Edgardo Hames3d049432010-08-02 17:17:17 -0300107static int prism2sta_mlmerequest(wlandevice_t *wlandev, struct p80211msg *msg);
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530108static int prism2sta_getcardinfo(wlandevice_t *wlandev);
109static int prism2sta_globalsetup(wlandevice_t *wlandev);
110static int prism2sta_setmulticast(wlandevice_t *wlandev, netdevice_t *dev);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700111
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530112static void prism2sta_inf_handover(wlandevice_t *wlandev,
113 hfa384x_InfFrame_t *inf);
114static void prism2sta_inf_tallies(wlandevice_t *wlandev,
115 hfa384x_InfFrame_t *inf);
116static void prism2sta_inf_hostscanresults(wlandevice_t *wlandev,
117 hfa384x_InfFrame_t *inf);
118static void prism2sta_inf_scanresults(wlandevice_t *wlandev,
119 hfa384x_InfFrame_t *inf);
120static void prism2sta_inf_chinforesults(wlandevice_t *wlandev,
121 hfa384x_InfFrame_t *inf);
122static void prism2sta_inf_linkstatus(wlandevice_t *wlandev,
123 hfa384x_InfFrame_t *inf);
124static void prism2sta_inf_assocstatus(wlandevice_t *wlandev,
125 hfa384x_InfFrame_t *inf);
126static void prism2sta_inf_authreq(wlandevice_t *wlandev,
127 hfa384x_InfFrame_t *inf);
128static void prism2sta_inf_authreq_defer(wlandevice_t *wlandev,
129 hfa384x_InfFrame_t *inf);
130static void prism2sta_inf_psusercnt(wlandevice_t *wlandev,
131 hfa384x_InfFrame_t *inf);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700132
Ioana Ciornei60ec47f2015-09-30 22:28:32 +0300133/*
134 * prism2sta_open
135 *
136 * WLAN device open method. Called from p80211netdev when kernel
137 * device open (start) method is called in response to the
138 * SIOCSIIFFLAGS ioctl changing the flags bit IFF_UP
139 * from clear to set.
140 *
141 * Arguments:
142 * wlandev wlan device structure
143 *
144 * Returns:
145 * 0 success
146 * >0 f/w reported error
147 * <0 driver reported error
148 *
149 * Side effects:
150 *
151 * Call context:
152 * process thread
153 */
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530154static int prism2sta_open(wlandevice_t *wlandev)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700155{
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700156 /* We don't currently have to do anything else.
157 * The setup of the MAC should be subsequently completed via
158 * the mlme commands.
159 * Higher layers know we're ready from dev->start==1 and
160 * dev->tbusy==0. Our rx path knows to pass up received/
161 * frames because of dev->flags&IFF_UP is true.
162 */
163
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700164 return 0;
165}
166
Ioana Ciornei60ec47f2015-09-30 22:28:32 +0300167/*
168 * prism2sta_close
169 *
170 * WLAN device close method. Called from p80211netdev when kernel
171 * device close method is called in response to the
172 * SIOCSIIFFLAGS ioctl changing the flags bit IFF_UP
173 * from set to clear.
174 *
175 * Arguments:
176 * wlandev wlan device structure
177 *
178 * Returns:
179 * 0 success
180 * >0 f/w reported error
181 * <0 driver reported error
182 *
183 * Side effects:
184 *
185 * Call context:
186 * process thread
187 */
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530188static int prism2sta_close(wlandevice_t *wlandev)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700189{
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700190 /* We don't currently have to do anything else.
191 * Higher layers know we're not ready from dev->start==0 and
192 * dev->tbusy==1. Our rx path knows to not pass up received
193 * frames because of dev->flags&IFF_UP is false.
194 */
195
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700196 return 0;
197}
198
Ioana Ciornei60ec47f2015-09-30 22:28:32 +0300199/*
200 * prism2sta_reset
201 *
202 * Currently not implemented.
203 *
204 * Arguments:
205 * wlandev wlan device structure
206 * none
207 *
208 * Returns:
209 * nothing
210 *
211 * Side effects:
212 *
213 * Call context:
214 * process thread
215 */
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530216static void prism2sta_reset(wlandevice_t *wlandev)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700217{
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700218}
219
Ioana Ciornei60ec47f2015-09-30 22:28:32 +0300220/*
221 * prism2sta_txframe
222 *
223 * Takes a frame from p80211 and queues it for transmission.
224 *
225 * Arguments:
226 * wlandev wlan device structure
227 * pb packet buffer struct. Contains an 802.11
228 * data frame.
229 * p80211_hdr points to the 802.11 header for the packet.
230 * Returns:
231 * 0 Success and more buffs available
232 * 1 Success but no more buffs
233 * 2 Allocation failure
234 * 4 Buffer full or queue busy
235 *
236 * Side effects:
237 *
238 * Call context:
239 * process thread
240 */
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530241static int prism2sta_txframe(wlandevice_t *wlandev, struct sk_buff *skb,
Edgardo Hames93df38e2010-07-30 22:51:55 -0300242 union p80211_hdr *p80211_hdr,
Edgardo Hames51e48962010-07-31 13:06:52 -0300243 struct p80211_metawep *p80211_wep)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700244{
Janani Ravichandran94889152016-02-25 14:33:59 -0500245 hfa384x_t *hw = wlandev->priv;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700246
247 /* If necessary, set the 802.11 WEP bit */
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100248 if ((wlandev->hostwep & (HOSTWEP_PRIVACYINVOKED | HOSTWEP_ENCRYPT)) ==
249 HOSTWEP_PRIVACYINVOKED) {
Moritz Muehlenhoffae262302009-01-21 22:00:45 +0100250 p80211_hdr->a3.fc |= cpu_to_le16(WLAN_SET_FC_ISWEP(1));
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700251 }
252
Aya Mahfouz9110e0a2015-02-27 14:49:27 +0200253 return hfa384x_drvr_txframe(hw, skb, p80211_hdr, p80211_wep);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700254}
255
Ioana Ciornei60ec47f2015-09-30 22:28:32 +0300256/*
257 * prism2sta_mlmerequest
258 *
259 * wlan command message handler. All we do here is pass the message
260 * over to the prism2sta_mgmt_handler.
261 *
262 * Arguments:
263 * wlandev wlan device structure
264 * msg wlan command message
265 * Returns:
266 * 0 success
267 * <0 successful acceptance of message, but we're
268 * waiting for an async process to finish before
269 * we're done with the msg. When the asynch
270 * process is done, we'll call the p80211
271 * function p80211req_confirm() .
272 * >0 An error occurred while we were handling
273 * the message.
274 *
275 * Side effects:
276 *
277 * Call context:
278 * process thread
279 */
Edgardo Hames3d049432010-08-02 17:17:17 -0300280static int prism2sta_mlmerequest(wlandevice_t *wlandev, struct p80211msg *msg)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700281{
Janani Ravichandran94889152016-02-25 14:33:59 -0500282 hfa384x_t *hw = wlandev->priv;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700283
284 int result = 0;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700285
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100286 switch (msg->msgcode) {
287 case DIDmsg_dot11req_mibget:
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +0100288 pr_debug("Received mibget request\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700289 result = prism2mgmt_mibset_mibget(wlandev, msg);
290 break;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100291 case DIDmsg_dot11req_mibset:
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +0100292 pr_debug("Received mibset request\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700293 result = prism2mgmt_mibset_mibget(wlandev, msg);
294 break;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100295 case DIDmsg_dot11req_scan:
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +0100296 pr_debug("Received scan request\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700297 result = prism2mgmt_scan(wlandev, msg);
298 break;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100299 case DIDmsg_dot11req_scan_results:
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +0100300 pr_debug("Received scan_results request\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700301 result = prism2mgmt_scan_results(wlandev, msg);
302 break;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100303 case DIDmsg_dot11req_start:
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +0100304 pr_debug("Received mlme start request\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700305 result = prism2mgmt_start(wlandev, msg);
306 break;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100307 /*
308 * Prism2 specific messages
309 */
310 case DIDmsg_p2req_readpda:
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +0100311 pr_debug("Received mlme readpda request\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700312 result = prism2mgmt_readpda(wlandev, msg);
313 break;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100314 case DIDmsg_p2req_ramdl_state:
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +0100315 pr_debug("Received mlme ramdl_state request\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700316 result = prism2mgmt_ramdl_state(wlandev, msg);
317 break;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100318 case DIDmsg_p2req_ramdl_write:
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +0100319 pr_debug("Received mlme ramdl_write request\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700320 result = prism2mgmt_ramdl_write(wlandev, msg);
321 break;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100322 case DIDmsg_p2req_flashdl_state:
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +0100323 pr_debug("Received mlme flashdl_state request\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700324 result = prism2mgmt_flashdl_state(wlandev, msg);
325 break;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100326 case DIDmsg_p2req_flashdl_write:
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +0100327 pr_debug("Received mlme flashdl_write request\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700328 result = prism2mgmt_flashdl_write(wlandev, msg);
329 break;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100330 /*
331 * Linux specific messages
332 */
333 case DIDmsg_lnxreq_hostwep:
334 break; /* ignore me. */
335 case DIDmsg_lnxreq_ifstate:
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700336 {
Edgardo Hamesb6bb56e2010-08-02 16:20:39 -0300337 struct p80211msg_lnxreq_ifstate *ifstatemsg;
Johannes Stadlingerf9d01752014-06-19 21:20:20 +0200338
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100339 pr_debug("Received mlme ifstate request\n");
Edgardo Hamesb6bb56e2010-08-02 16:20:39 -0300340 ifstatemsg = (struct p80211msg_lnxreq_ifstate *) msg;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100341 result =
342 prism2sta_ifstate(wlandev,
343 ifstatemsg->ifstate.data);
344 ifstatemsg->resultcode.status =
345 P80211ENUM_msgitem_status_data_ok;
346 ifstatemsg->resultcode.data = result;
347 result = 0;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700348 }
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100349 break;
350 case DIDmsg_lnxreq_wlansniff:
351 pr_debug("Received mlme wlansniff request\n");
352 result = prism2mgmt_wlansniff(wlandev, msg);
353 break;
354 case DIDmsg_lnxreq_autojoin:
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +0100355 pr_debug("Received mlme autojoin request\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700356 result = prism2mgmt_autojoin(wlandev, msg);
357 break;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100358 case DIDmsg_lnxreq_commsquality:{
Edgardo Hamesb6bb56e2010-08-02 16:20:39 -0300359 struct p80211msg_lnxreq_commsquality *qualmsg;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700360
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100361 pr_debug("Received commsquality request\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700362
Edgardo Hamesb6bb56e2010-08-02 16:20:39 -0300363 qualmsg = (struct p80211msg_lnxreq_commsquality *) msg;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700364
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100365 qualmsg->link.status =
366 P80211ENUM_msgitem_status_data_ok;
367 qualmsg->level.status =
368 P80211ENUM_msgitem_status_data_ok;
369 qualmsg->noise.status =
370 P80211ENUM_msgitem_status_data_ok;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700371
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530372 qualmsg->link.data = le16_to_cpu(hw->qual.CQ_currBSS);
373 qualmsg->level.data = le16_to_cpu(hw->qual.ASL_currBSS);
374 qualmsg->noise.data = le16_to_cpu(hw->qual.ANL_currFC);
Karl Reltoncb3126e2010-06-03 23:04:06 +0100375 qualmsg->txrate.data = hw->txrate;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700376
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100377 break;
378 }
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700379 default:
Vitaly Osipov02d9b1e2014-05-18 16:59:36 +1000380 netdev_warn(wlandev->netdev,
381 "Unknown mgmt request message 0x%08x",
382 msg->msgcode);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700383 break;
384 }
385
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700386 return result;
387}
388
Ioana Ciornei60ec47f2015-09-30 22:28:32 +0300389/*
390 * prism2sta_ifstate
391 *
392 * Interface state. This is the primary WLAN interface enable/disable
393 * handler. Following the driver/load/deviceprobe sequence, this
394 * function must be called with a state of "enable" before any other
395 * commands will be accepted.
396 *
397 * Arguments:
398 * wlandev wlan device structure
399 * msgp ptr to msg buffer
400 *
401 * Returns:
402 * A p80211 message resultcode value.
403 *
404 * Side effects:
405 *
406 * Call context:
407 * process thread (usually)
408 * interrupt
409 */
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530410u32 prism2sta_ifstate(wlandevice_t *wlandev, u32 ifstate)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700411{
Janani Ravichandran94889152016-02-25 14:33:59 -0500412 hfa384x_t *hw = wlandev->priv;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100413 u32 result;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700414
415 result = P80211ENUM_resultcode_implementation_failure;
416
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +0100417 pr_debug("Current MSD state(%d), requesting(%d)\n",
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530418 wlandev->msdstate, ifstate);
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100419 switch (ifstate) {
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700420 case P80211ENUM_ifstate_fwload:
421 switch (wlandev->msdstate) {
422 case WLAN_MSD_HWPRESENT:
423 wlandev->msdstate = WLAN_MSD_FWLOAD_PENDING;
424 /*
425 * Initialize the device+driver sufficiently
426 * for firmware loading.
427 */
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530428 result = hfa384x_drvr_start(hw);
429 if (result) {
Tugce Sirin80135b12014-03-17 16:01:51 +0200430 netdev_err(wlandev->netdev,
chaehyun lim613462e2015-05-15 22:13:43 +0900431 "hfa384x_drvr_start() failed,result=%d\n",
432 (int)result);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700433 result =
Christos Tzoumakisf9bd6492010-05-07 06:17:24 +0300434 P80211ENUM_resultcode_implementation_failure;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700435 wlandev->msdstate = WLAN_MSD_HWPRESENT;
436 break;
437 }
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700438 wlandev->msdstate = WLAN_MSD_FWLOAD;
439 result = P80211ENUM_resultcode_success;
440 break;
441 case WLAN_MSD_FWLOAD:
442 hfa384x_cmd_initialize(hw);
443 result = P80211ENUM_resultcode_success;
444 break;
445 case WLAN_MSD_RUNNING:
Vitaly Osipov02d9b1e2014-05-18 16:59:36 +1000446 netdev_warn(wlandev->netdev,
Johannes Stadlinger392cdc92014-06-19 21:20:19 +0200447 "Cannot enter fwload state from enable state, you must disable first.\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700448 result = P80211ENUM_resultcode_invalid_parameters;
449 break;
450 case WLAN_MSD_HWFAIL:
451 default:
452 /* probe() had a problem or the msdstate contains
453 * an unrecognized value, there's nothing we can do.
454 */
455 result = P80211ENUM_resultcode_implementation_failure;
456 break;
457 }
458 break;
459 case P80211ENUM_ifstate_enable:
460 switch (wlandev->msdstate) {
461 case WLAN_MSD_HWPRESENT:
462 case WLAN_MSD_FWLOAD:
463 wlandev->msdstate = WLAN_MSD_RUNNING_PENDING;
464 /* Initialize the device+driver for full
465 * operation. Note that this might me an FWLOAD to
466 * to RUNNING transition so we must not do a chip
467 * or board level reset. Note that on failure,
468 * the MSD state is set to HWPRESENT because we
469 * can't make any assumptions about the state
470 * of the hardware or a previous firmware load.
471 */
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530472 result = hfa384x_drvr_start(hw);
473 if (result) {
Tugce Sirin80135b12014-03-17 16:01:51 +0200474 netdev_err(wlandev->netdev,
chaehyun lim613462e2015-05-15 22:13:43 +0900475 "hfa384x_drvr_start() failed,result=%d\n",
476 (int)result);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700477 result =
Christos Tzoumakisf9bd6492010-05-07 06:17:24 +0300478 P80211ENUM_resultcode_implementation_failure;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700479 wlandev->msdstate = WLAN_MSD_HWPRESENT;
480 break;
481 }
482
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530483 result = prism2sta_getcardinfo(wlandev);
484 if (result) {
Tugce Sirin80135b12014-03-17 16:01:51 +0200485 netdev_err(wlandev->netdev,
chaehyun lim613462e2015-05-15 22:13:43 +0900486 "prism2sta_getcardinfo() failed,result=%d\n",
487 (int)result);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700488 result =
Christos Tzoumakisf9bd6492010-05-07 06:17:24 +0300489 P80211ENUM_resultcode_implementation_failure;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700490 hfa384x_drvr_stop(hw);
491 wlandev->msdstate = WLAN_MSD_HWPRESENT;
492 break;
493 }
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530494 result = prism2sta_globalsetup(wlandev);
495 if (result) {
Tugce Sirin80135b12014-03-17 16:01:51 +0200496 netdev_err(wlandev->netdev,
chaehyun lim613462e2015-05-15 22:13:43 +0900497 "prism2sta_globalsetup() failed,result=%d\n",
498 (int)result);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700499 result =
Christos Tzoumakisf9bd6492010-05-07 06:17:24 +0300500 P80211ENUM_resultcode_implementation_failure;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700501 hfa384x_drvr_stop(hw);
502 wlandev->msdstate = WLAN_MSD_HWPRESENT;
503 break;
504 }
505 wlandev->msdstate = WLAN_MSD_RUNNING;
506 hw->join_ap = 0;
507 hw->join_retries = 60;
508 result = P80211ENUM_resultcode_success;
509 break;
510 case WLAN_MSD_RUNNING:
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100511 /* Do nothing, we're already in this state. */
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700512 result = P80211ENUM_resultcode_success;
513 break;
514 case WLAN_MSD_HWFAIL:
515 default:
516 /* probe() had a problem or the msdstate contains
517 * an unrecognized value, there's nothing we can do.
518 */
519 result = P80211ENUM_resultcode_implementation_failure;
520 break;
521 }
522 break;
523 case P80211ENUM_ifstate_disable:
524 switch (wlandev->msdstate) {
525 case WLAN_MSD_HWPRESENT:
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100526 /* Do nothing, we're already in this state. */
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700527 result = P80211ENUM_resultcode_success;
528 break;
529 case WLAN_MSD_FWLOAD:
530 case WLAN_MSD_RUNNING:
531 wlandev->msdstate = WLAN_MSD_HWPRESENT_PENDING;
532 /*
533 * TODO: Shut down the MAC completely. Here a chip
534 * or board level reset is probably called for.
535 * After a "disable" _all_ results are lost, even
536 * those from a fwload.
537 */
538 if (!wlandev->hwremoved)
539 netif_carrier_off(wlandev->netdev);
540
541 hfa384x_drvr_stop(hw);
542
543 wlandev->macmode = WLAN_MACMODE_NONE;
544 wlandev->msdstate = WLAN_MSD_HWPRESENT;
545 result = P80211ENUM_resultcode_success;
546 break;
547 case WLAN_MSD_HWFAIL:
548 default:
549 /* probe() had a problem or the msdstate contains
550 * an unrecognized value, there's nothing we can do.
551 */
552 result = P80211ENUM_resultcode_implementation_failure;
553 break;
554 }
555 break;
556 default:
557 result = P80211ENUM_resultcode_invalid_parameters;
558 break;
559 }
560
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700561 return result;
562}
563
Ioana Ciornei60ec47f2015-09-30 22:28:32 +0300564/*
565 * prism2sta_getcardinfo
566 *
567 * Collect the NICID, firmware version and any other identifiers
568 * we'd like to have in host-side data structures.
569 *
570 * Arguments:
571 * wlandev wlan device structure
572 *
573 * Returns:
574 * 0 success
575 * >0 f/w reported error
576 * <0 driver reported error
577 *
578 * Side effects:
579 *
580 * Call context:
581 * Either.
582 */
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530583static int prism2sta_getcardinfo(wlandevice_t *wlandev)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700584{
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100585 int result = 0;
Janani Ravichandran94889152016-02-25 14:33:59 -0500586 hfa384x_t *hw = wlandev->priv;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100587 u16 temp;
588 u8 snum[HFA384x_RID_NICSERIALNUMBER_LEN];
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700589
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700590 /* Collect version and compatibility info */
591 /* Some are critical, some are not */
592 /* NIC identity */
593 result = hfa384x_drvr_getconfig(hw, HFA384x_RID_NICIDENTITY,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100594 &hw->ident_nic,
595 sizeof(hfa384x_compident_t));
596 if (result) {
Tugce Sirin80135b12014-03-17 16:01:51 +0200597 netdev_err(wlandev->netdev, "Failed to retrieve NICIDENTITY\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700598 goto failed;
599 }
600
601 /* get all the nic id fields in host byte order */
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +0100602 hw->ident_nic.id = le16_to_cpu(hw->ident_nic.id);
603 hw->ident_nic.variant = le16_to_cpu(hw->ident_nic.variant);
604 hw->ident_nic.major = le16_to_cpu(hw->ident_nic.major);
605 hw->ident_nic.minor = le16_to_cpu(hw->ident_nic.minor);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700606
Tugce Sirin1f997412014-03-17 16:02:05 +0200607 netdev_info(wlandev->netdev, "ident: nic h/w: id=0x%02x %d.%d.%d\n",
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100608 hw->ident_nic.id, hw->ident_nic.major,
609 hw->ident_nic.minor, hw->ident_nic.variant);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700610
611 /* Primary f/w identity */
612 result = hfa384x_drvr_getconfig(hw, HFA384x_RID_PRIIDENTITY,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100613 &hw->ident_pri_fw,
614 sizeof(hfa384x_compident_t));
615 if (result) {
Tugce Sirin80135b12014-03-17 16:01:51 +0200616 netdev_err(wlandev->netdev, "Failed to retrieve PRIIDENTITY\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700617 goto failed;
618 }
619
620 /* get all the private fw id fields in host byte order */
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +0100621 hw->ident_pri_fw.id = le16_to_cpu(hw->ident_pri_fw.id);
622 hw->ident_pri_fw.variant = le16_to_cpu(hw->ident_pri_fw.variant);
623 hw->ident_pri_fw.major = le16_to_cpu(hw->ident_pri_fw.major);
624 hw->ident_pri_fw.minor = le16_to_cpu(hw->ident_pri_fw.minor);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700625
Tugce Sirin1f997412014-03-17 16:02:05 +0200626 netdev_info(wlandev->netdev, "ident: pri f/w: id=0x%02x %d.%d.%d\n",
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100627 hw->ident_pri_fw.id, hw->ident_pri_fw.major,
628 hw->ident_pri_fw.minor, hw->ident_pri_fw.variant);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700629
630 /* Station (Secondary?) f/w identity */
631 result = hfa384x_drvr_getconfig(hw, HFA384x_RID_STAIDENTITY,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100632 &hw->ident_sta_fw,
633 sizeof(hfa384x_compident_t));
634 if (result) {
Tugce Sirin80135b12014-03-17 16:01:51 +0200635 netdev_err(wlandev->netdev, "Failed to retrieve STAIDENTITY\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700636 goto failed;
637 }
638
639 if (hw->ident_nic.id < 0x8000) {
Tugce Sirin80135b12014-03-17 16:01:51 +0200640 netdev_err(wlandev->netdev,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100641 "FATAL: Card is not an Intersil Prism2/2.5/3\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700642 result = -1;
643 goto failed;
644 }
645
646 /* get all the station fw id fields in host byte order */
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +0100647 hw->ident_sta_fw.id = le16_to_cpu(hw->ident_sta_fw.id);
648 hw->ident_sta_fw.variant = le16_to_cpu(hw->ident_sta_fw.variant);
649 hw->ident_sta_fw.major = le16_to_cpu(hw->ident_sta_fw.major);
650 hw->ident_sta_fw.minor = le16_to_cpu(hw->ident_sta_fw.minor);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700651
652 /* strip out the 'special' variant bits */
Moritz Muehlenhoff7f6e0e42009-01-25 21:54:55 +0100653 hw->mm_mods = hw->ident_sta_fw.variant & (BIT(14) | BIT(15));
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100654 hw->ident_sta_fw.variant &= ~((u16) (BIT(14) | BIT(15)));
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700655
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100656 if (hw->ident_sta_fw.id == 0x1f) {
Tugce Sirin1f997412014-03-17 16:02:05 +0200657 netdev_info(wlandev->netdev,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100658 "ident: sta f/w: id=0x%02x %d.%d.%d\n",
659 hw->ident_sta_fw.id, hw->ident_sta_fw.major,
660 hw->ident_sta_fw.minor, hw->ident_sta_fw.variant);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700661 } else {
Tugce Sirin1f997412014-03-17 16:02:05 +0200662 netdev_info(wlandev->netdev,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100663 "ident: ap f/w: id=0x%02x %d.%d.%d\n",
664 hw->ident_sta_fw.id, hw->ident_sta_fw.major,
665 hw->ident_sta_fw.minor, hw->ident_sta_fw.variant);
Masanari Iida1a6dfce2014-12-01 00:29:00 +0900666 netdev_err(wlandev->netdev, "Unsupported Tertiary AP firmware loaded!\n");
Solomon Peachy5db8dcc2008-10-27 11:14:02 -0400667 goto failed;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700668 }
669
670 /* Compatibility range, Modem supplier */
671 result = hfa384x_drvr_getconfig(hw, HFA384x_RID_MFISUPRANGE,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100672 &hw->cap_sup_mfi,
673 sizeof(hfa384x_caplevel_t));
674 if (result) {
Tugce Sirin80135b12014-03-17 16:01:51 +0200675 netdev_err(wlandev->netdev, "Failed to retrieve MFISUPRANGE\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700676 goto failed;
677 }
678
679 /* get all the Compatibility range, modem interface supplier
Ioana Ciornei60ec47f2015-09-30 22:28:32 +0300680 * fields in byte order
681 */
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +0100682 hw->cap_sup_mfi.role = le16_to_cpu(hw->cap_sup_mfi.role);
683 hw->cap_sup_mfi.id = le16_to_cpu(hw->cap_sup_mfi.id);
684 hw->cap_sup_mfi.variant = le16_to_cpu(hw->cap_sup_mfi.variant);
685 hw->cap_sup_mfi.bottom = le16_to_cpu(hw->cap_sup_mfi.bottom);
686 hw->cap_sup_mfi.top = le16_to_cpu(hw->cap_sup_mfi.top);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700687
Tugce Sirin1f997412014-03-17 16:02:05 +0200688 netdev_info(wlandev->netdev,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100689 "MFI:SUP:role=0x%02x:id=0x%02x:var=0x%02x:b/t=%d/%d\n",
690 hw->cap_sup_mfi.role, hw->cap_sup_mfi.id,
691 hw->cap_sup_mfi.variant, hw->cap_sup_mfi.bottom,
692 hw->cap_sup_mfi.top);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700693
694 /* Compatibility range, Controller supplier */
695 result = hfa384x_drvr_getconfig(hw, HFA384x_RID_CFISUPRANGE,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100696 &hw->cap_sup_cfi,
697 sizeof(hfa384x_caplevel_t));
698 if (result) {
Tugce Sirin80135b12014-03-17 16:01:51 +0200699 netdev_err(wlandev->netdev, "Failed to retrieve CFISUPRANGE\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700700 goto failed;
701 }
702
703 /* get all the Compatibility range, controller interface supplier
Ioana Ciornei60ec47f2015-09-30 22:28:32 +0300704 * fields in byte order
705 */
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +0100706 hw->cap_sup_cfi.role = le16_to_cpu(hw->cap_sup_cfi.role);
707 hw->cap_sup_cfi.id = le16_to_cpu(hw->cap_sup_cfi.id);
708 hw->cap_sup_cfi.variant = le16_to_cpu(hw->cap_sup_cfi.variant);
709 hw->cap_sup_cfi.bottom = le16_to_cpu(hw->cap_sup_cfi.bottom);
710 hw->cap_sup_cfi.top = le16_to_cpu(hw->cap_sup_cfi.top);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700711
Tugce Sirin1f997412014-03-17 16:02:05 +0200712 netdev_info(wlandev->netdev,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100713 "CFI:SUP:role=0x%02x:id=0x%02x:var=0x%02x:b/t=%d/%d\n",
714 hw->cap_sup_cfi.role, hw->cap_sup_cfi.id,
715 hw->cap_sup_cfi.variant, hw->cap_sup_cfi.bottom,
716 hw->cap_sup_cfi.top);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700717
718 /* Compatibility range, Primary f/w supplier */
719 result = hfa384x_drvr_getconfig(hw, HFA384x_RID_PRISUPRANGE,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100720 &hw->cap_sup_pri,
721 sizeof(hfa384x_caplevel_t));
722 if (result) {
Tugce Sirin80135b12014-03-17 16:01:51 +0200723 netdev_err(wlandev->netdev, "Failed to retrieve PRISUPRANGE\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700724 goto failed;
725 }
726
727 /* get all the Compatibility range, primary firmware supplier
Ioana Ciornei60ec47f2015-09-30 22:28:32 +0300728 * fields in byte order
729 */
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +0100730 hw->cap_sup_pri.role = le16_to_cpu(hw->cap_sup_pri.role);
731 hw->cap_sup_pri.id = le16_to_cpu(hw->cap_sup_pri.id);
732 hw->cap_sup_pri.variant = le16_to_cpu(hw->cap_sup_pri.variant);
733 hw->cap_sup_pri.bottom = le16_to_cpu(hw->cap_sup_pri.bottom);
734 hw->cap_sup_pri.top = le16_to_cpu(hw->cap_sup_pri.top);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700735
Tugce Sirin1f997412014-03-17 16:02:05 +0200736 netdev_info(wlandev->netdev,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100737 "PRI:SUP:role=0x%02x:id=0x%02x:var=0x%02x:b/t=%d/%d\n",
738 hw->cap_sup_pri.role, hw->cap_sup_pri.id,
739 hw->cap_sup_pri.variant, hw->cap_sup_pri.bottom,
740 hw->cap_sup_pri.top);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700741
742 /* Compatibility range, Station f/w supplier */
743 result = hfa384x_drvr_getconfig(hw, HFA384x_RID_STASUPRANGE,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100744 &hw->cap_sup_sta,
745 sizeof(hfa384x_caplevel_t));
746 if (result) {
Tugce Sirin80135b12014-03-17 16:01:51 +0200747 netdev_err(wlandev->netdev, "Failed to retrieve STASUPRANGE\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700748 goto failed;
749 }
750
751 /* get all the Compatibility range, station firmware supplier
Ioana Ciornei60ec47f2015-09-30 22:28:32 +0300752 * fields in byte order
753 */
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +0100754 hw->cap_sup_sta.role = le16_to_cpu(hw->cap_sup_sta.role);
755 hw->cap_sup_sta.id = le16_to_cpu(hw->cap_sup_sta.id);
756 hw->cap_sup_sta.variant = le16_to_cpu(hw->cap_sup_sta.variant);
757 hw->cap_sup_sta.bottom = le16_to_cpu(hw->cap_sup_sta.bottom);
758 hw->cap_sup_sta.top = le16_to_cpu(hw->cap_sup_sta.top);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700759
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100760 if (hw->cap_sup_sta.id == 0x04) {
Tugce Sirin1f997412014-03-17 16:02:05 +0200761 netdev_info(wlandev->netdev,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100762 "STA:SUP:role=0x%02x:id=0x%02x:var=0x%02x:b/t=%d/%d\n",
763 hw->cap_sup_sta.role, hw->cap_sup_sta.id,
764 hw->cap_sup_sta.variant, hw->cap_sup_sta.bottom,
765 hw->cap_sup_sta.top);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700766 } else {
Tugce Sirin1f997412014-03-17 16:02:05 +0200767 netdev_info(wlandev->netdev,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100768 "AP:SUP:role=0x%02x:id=0x%02x:var=0x%02x:b/t=%d/%d\n",
769 hw->cap_sup_sta.role, hw->cap_sup_sta.id,
770 hw->cap_sup_sta.variant, hw->cap_sup_sta.bottom,
771 hw->cap_sup_sta.top);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700772 }
773
774 /* Compatibility range, primary f/w actor, CFI supplier */
775 result = hfa384x_drvr_getconfig(hw, HFA384x_RID_PRI_CFIACTRANGES,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100776 &hw->cap_act_pri_cfi,
777 sizeof(hfa384x_caplevel_t));
778 if (result) {
Tugce Sirin80135b12014-03-17 16:01:51 +0200779 netdev_err(wlandev->netdev, "Failed to retrieve PRI_CFIACTRANGES\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700780 goto failed;
781 }
782
783 /* get all the Compatibility range, primary f/w actor, CFI supplier
Ioana Ciornei60ec47f2015-09-30 22:28:32 +0300784 * fields in byte order
785 */
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +0100786 hw->cap_act_pri_cfi.role = le16_to_cpu(hw->cap_act_pri_cfi.role);
787 hw->cap_act_pri_cfi.id = le16_to_cpu(hw->cap_act_pri_cfi.id);
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530788 hw->cap_act_pri_cfi.variant = le16_to_cpu(hw->cap_act_pri_cfi.variant);
789 hw->cap_act_pri_cfi.bottom = le16_to_cpu(hw->cap_act_pri_cfi.bottom);
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +0100790 hw->cap_act_pri_cfi.top = le16_to_cpu(hw->cap_act_pri_cfi.top);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700791
Tugce Sirin1f997412014-03-17 16:02:05 +0200792 netdev_info(wlandev->netdev,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100793 "PRI-CFI:ACT:role=0x%02x:id=0x%02x:var=0x%02x:b/t=%d/%d\n",
794 hw->cap_act_pri_cfi.role, hw->cap_act_pri_cfi.id,
795 hw->cap_act_pri_cfi.variant, hw->cap_act_pri_cfi.bottom,
796 hw->cap_act_pri_cfi.top);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700797
798 /* Compatibility range, sta f/w actor, CFI supplier */
799 result = hfa384x_drvr_getconfig(hw, HFA384x_RID_STA_CFIACTRANGES,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100800 &hw->cap_act_sta_cfi,
801 sizeof(hfa384x_caplevel_t));
802 if (result) {
Tugce Sirin80135b12014-03-17 16:01:51 +0200803 netdev_err(wlandev->netdev, "Failed to retrieve STA_CFIACTRANGES\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700804 goto failed;
805 }
806
807 /* get all the Compatibility range, station f/w actor, CFI supplier
Ioana Ciornei60ec47f2015-09-30 22:28:32 +0300808 * fields in byte order
809 */
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +0100810 hw->cap_act_sta_cfi.role = le16_to_cpu(hw->cap_act_sta_cfi.role);
811 hw->cap_act_sta_cfi.id = le16_to_cpu(hw->cap_act_sta_cfi.id);
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530812 hw->cap_act_sta_cfi.variant = le16_to_cpu(hw->cap_act_sta_cfi.variant);
813 hw->cap_act_sta_cfi.bottom = le16_to_cpu(hw->cap_act_sta_cfi.bottom);
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +0100814 hw->cap_act_sta_cfi.top = le16_to_cpu(hw->cap_act_sta_cfi.top);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700815
Tugce Sirin1f997412014-03-17 16:02:05 +0200816 netdev_info(wlandev->netdev,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100817 "STA-CFI:ACT:role=0x%02x:id=0x%02x:var=0x%02x:b/t=%d/%d\n",
818 hw->cap_act_sta_cfi.role, hw->cap_act_sta_cfi.id,
819 hw->cap_act_sta_cfi.variant, hw->cap_act_sta_cfi.bottom,
820 hw->cap_act_sta_cfi.top);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700821
822 /* Compatibility range, sta f/w actor, MFI supplier */
823 result = hfa384x_drvr_getconfig(hw, HFA384x_RID_STA_MFIACTRANGES,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100824 &hw->cap_act_sta_mfi,
825 sizeof(hfa384x_caplevel_t));
826 if (result) {
Tugce Sirin80135b12014-03-17 16:01:51 +0200827 netdev_err(wlandev->netdev, "Failed to retrieve STA_MFIACTRANGES\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700828 goto failed;
829 }
830
831 /* get all the Compatibility range, station f/w actor, MFI supplier
Ioana Ciornei60ec47f2015-09-30 22:28:32 +0300832 * fields in byte order
833 */
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +0100834 hw->cap_act_sta_mfi.role = le16_to_cpu(hw->cap_act_sta_mfi.role);
835 hw->cap_act_sta_mfi.id = le16_to_cpu(hw->cap_act_sta_mfi.id);
Mithlesh Thukral75f49e02009-05-25 19:06:16 +0530836 hw->cap_act_sta_mfi.variant = le16_to_cpu(hw->cap_act_sta_mfi.variant);
837 hw->cap_act_sta_mfi.bottom = le16_to_cpu(hw->cap_act_sta_mfi.bottom);
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +0100838 hw->cap_act_sta_mfi.top = le16_to_cpu(hw->cap_act_sta_mfi.top);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700839
Tugce Sirin1f997412014-03-17 16:02:05 +0200840 netdev_info(wlandev->netdev,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100841 "STA-MFI:ACT:role=0x%02x:id=0x%02x:var=0x%02x:b/t=%d/%d\n",
842 hw->cap_act_sta_mfi.role, hw->cap_act_sta_mfi.id,
843 hw->cap_act_sta_mfi.variant, hw->cap_act_sta_mfi.bottom,
844 hw->cap_act_sta_mfi.top);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700845
846 /* Serial Number */
847 result = hfa384x_drvr_getconfig(hw, HFA384x_RID_NICSERIALNUMBER,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100848 snum, HFA384x_RID_NICSERIALNUMBER_LEN);
849 if (!result) {
Andy Shevchenko068c11d2014-10-13 15:55:29 -0700850 netdev_info(wlandev->netdev, "Prism2 card SN: %*pEhp\n",
851 HFA384x_RID_NICSERIALNUMBER_LEN, snum);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700852 } else {
Tugce Sirin80135b12014-03-17 16:01:51 +0200853 netdev_err(wlandev->netdev, "Failed to retrieve Prism2 Card SN\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700854 goto failed;
855 }
856
857 /* Collect the MAC address */
858 result = hfa384x_drvr_getconfig(hw, HFA384x_RID_CNFOWNMACADDR,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100859 wlandev->netdev->dev_addr, ETH_ALEN);
860 if (result != 0) {
Tugce Sirin80135b12014-03-17 16:01:51 +0200861 netdev_err(wlandev->netdev, "Failed to retrieve mac address\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700862 goto failed;
863 }
864
865 /* short preamble is always implemented */
866 wlandev->nsdcaps |= P80211_NSDCAP_SHORT_PREAMBLE;
867
868 /* find out if hardware wep is implemented */
869 hfa384x_drvr_getconfig16(hw, HFA384x_RID_PRIVACYOPTIMP, &temp);
870 if (temp)
871 wlandev->nsdcaps |= P80211_NSDCAP_HARDWAREWEP;
872
873 /* get the dBm Scaling constant */
874 hfa384x_drvr_getconfig16(hw, HFA384x_RID_CNFDBMADJUST, &temp);
875 hw->dbmadjust = temp;
876
877 /* Only enable scan by default on newer firmware */
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100878 if (HFA384x_FIRMWARE_VERSION(hw->ident_sta_fw.major,
879 hw->ident_sta_fw.minor,
880 hw->ident_sta_fw.variant) <
881 HFA384x_FIRMWARE_VERSION(1, 5, 5)) {
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700882 wlandev->nsdcaps |= P80211_NSDCAP_NOSCAN;
883 }
884
885 /* TODO: Set any internally managed config items */
886
887 goto done;
888failed:
Tugce Sirin80135b12014-03-17 16:01:51 +0200889 netdev_err(wlandev->netdev, "Failed, result=%d\n", result);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700890done:
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700891 return result;
892}
893
Ioana Ciornei60ec47f2015-09-30 22:28:32 +0300894/*
895 * prism2sta_globalsetup
896 *
897 * Set any global RIDs that we want to set at device activation.
898 *
899 * Arguments:
900 * wlandev wlan device structure
901 *
902 * Returns:
903 * 0 success
904 * >0 f/w reported error
905 * <0 driver reported error
906 *
907 * Side effects:
908 *
909 * Call context:
910 * process thread
911 */
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530912static int prism2sta_globalsetup(wlandevice_t *wlandev)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700913{
Janani Ravichandran94889152016-02-25 14:33:59 -0500914 hfa384x_t *hw = wlandev->priv;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700915
916 /* Set the maximum frame size */
917 return hfa384x_drvr_setconfig16(hw, HFA384x_RID_CNFMAXDATALEN,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100918 WLAN_DATA_MAXLEN);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700919}
920
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530921static int prism2sta_setmulticast(wlandevice_t *wlandev, netdevice_t *dev)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700922{
923 int result = 0;
Janani Ravichandran94889152016-02-25 14:33:59 -0500924 hfa384x_t *hw = wlandev->priv;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700925
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100926 u16 promisc;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700927
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700928 /* If we're not ready, what's the point? */
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100929 if (hw->state != HFA384x_STATE_RUNNING)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700930 goto exit;
931
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100932 if ((dev->flags & (IFF_PROMISC | IFF_ALLMULTI)) != 0)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700933 promisc = P80211ENUM_truth_true;
934 else
935 promisc = P80211ENUM_truth_false;
936
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100937 result =
938 hfa384x_drvr_setconfig16_async(hw, HFA384x_RID_PROMISCMODE,
939 promisc);
940exit:
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700941 return result;
942}
943
Ioana Ciornei60ec47f2015-09-30 22:28:32 +0300944/*
945 * prism2sta_inf_handover
946 *
947 * Handles the receipt of a Handover info frame. Should only be present
948 * in APs only.
949 *
950 * Arguments:
951 * wlandev wlan device structure
952 * inf ptr to info frame (contents in hfa384x order)
953 *
954 * Returns:
955 * nothing
956 *
957 * Side effects:
958 *
959 * Call context:
960 * interrupt
961 */
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530962static void prism2sta_inf_handover(wlandevice_t *wlandev,
963 hfa384x_InfFrame_t *inf)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700964{
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +0100965 pr_debug("received infoframe:HANDOVER (unhandled)\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700966}
967
Ioana Ciornei60ec47f2015-09-30 22:28:32 +0300968/*
969 * prism2sta_inf_tallies
970 *
971 * Handles the receipt of a CommTallies info frame.
972 *
973 * Arguments:
974 * wlandev wlan device structure
975 * inf ptr to info frame (contents in hfa384x order)
976 *
977 * Returns:
978 * nothing
979 *
980 * Side effects:
981 *
982 * Call context:
983 * interrupt
984 */
Mithlesh Thukral297f06c2009-06-10 19:36:11 +0530985static void prism2sta_inf_tallies(wlandevice_t *wlandev,
986 hfa384x_InfFrame_t *inf)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700987{
Janani Ravichandran94889152016-02-25 14:33:59 -0500988 hfa384x_t *hw = wlandev->priv;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100989 u16 *src16;
990 u32 *dst;
991 u32 *src32;
992 int i;
993 int cnt;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700994
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700995 /*
Ioana Ciornei60ec47f2015-09-30 22:28:32 +0300996 * Determine if these are 16-bit or 32-bit tallies, based on the
997 * record length of the info record.
Moritz Muehlenhofff3422882009-02-08 02:21:04 +0100998 */
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -0700999
Solomon Peachyaaad4302008-10-29 10:42:53 -04001000 cnt = sizeof(hfa384x_CommTallies32_t) / sizeof(u32);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001001 if (inf->framelen > 22) {
Svenne Krap5dd8acc2010-02-14 18:59:00 +01001002 dst = (u32 *) &hw->tallies;
1003 src32 = (u32 *) &inf->info.commtallies32;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001004 for (i = 0; i < cnt; i++, dst++, src32++)
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +01001005 *dst += le32_to_cpu(*src32);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001006 } else {
Svenne Krap5dd8acc2010-02-14 18:59:00 +01001007 dst = (u32 *) &hw->tallies;
1008 src16 = (u16 *) &inf->info.commtallies16;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001009 for (i = 0; i < cnt; i++, dst++, src16++)
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +01001010 *dst += le16_to_cpu(*src16);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001011 }
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001012}
1013
Ioana Ciornei60ec47f2015-09-30 22:28:32 +03001014/*
1015 * prism2sta_inf_scanresults
1016 *
1017 * Handles the receipt of a Scan Results info frame.
1018 *
1019 * Arguments:
1020 * wlandev wlan device structure
1021 * inf ptr to info frame (contents in hfa384x order)
1022 *
1023 * Returns:
1024 * nothing
1025 *
1026 * Side effects:
1027 *
1028 * Call context:
1029 * interrupt
1030 */
Mithlesh Thukral297f06c2009-06-10 19:36:11 +05301031static void prism2sta_inf_scanresults(wlandevice_t *wlandev,
1032 hfa384x_InfFrame_t *inf)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001033{
1034
Janani Ravichandran94889152016-02-25 14:33:59 -05001035 hfa384x_t *hw = wlandev->priv;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001036 int nbss;
1037 hfa384x_ScanResult_t *sr = &(inf->info.scanresult);
1038 int i;
1039 hfa384x_JoinRequest_data_t joinreq;
1040 int result;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001041
1042 /* Get the number of results, first in bytes, then in results */
Solomon Peachyaaad4302008-10-29 10:42:53 -04001043 nbss = (inf->framelen * sizeof(u16)) -
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001044 sizeof(inf->infotype) - sizeof(inf->info.scanresult.scanreason);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001045 nbss /= sizeof(hfa384x_ScanResultSub_t);
1046
1047 /* Print em */
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +01001048 pr_debug("rx scanresults, reason=%d, nbss=%d:\n",
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301049 inf->info.scanresult.scanreason, nbss);
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001050 for (i = 0; i < nbss; i++) {
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +01001051 pr_debug("chid=%d anl=%d sl=%d bcnint=%d\n",
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301052 sr->result[i].chid,
1053 sr->result[i].anl,
1054 sr->result[i].sl, sr->result[i].bcnint);
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +01001055 pr_debug(" capinfo=0x%04x proberesp_rate=%d\n",
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301056 sr->result[i].capinfo, sr->result[i].proberesp_rate);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001057 }
1058 /* issue a join request */
1059 joinreq.channel = sr->result[0].chid;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001060 memcpy(joinreq.bssid, sr->result[0].bssid, WLAN_BSSID_LEN);
1061 result = hfa384x_drvr_setconfig(hw,
1062 HFA384x_RID_JOINREQUEST,
1063 &joinreq, HFA384x_RID_JOINREQUEST_LEN);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001064 if (result) {
Tugce Sirin80135b12014-03-17 16:01:51 +02001065 netdev_err(wlandev->netdev, "setconfig(joinreq) failed, result=%d\n",
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001066 result);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001067 }
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001068}
1069
Ioana Ciornei60ec47f2015-09-30 22:28:32 +03001070/*
1071 * prism2sta_inf_hostscanresults
1072 *
1073 * Handles the receipt of a Scan Results info frame.
1074 *
1075 * Arguments:
1076 * wlandev wlan device structure
1077 * inf ptr to info frame (contents in hfa384x order)
1078 *
1079 * Returns:
1080 * nothing
1081 *
1082 * Side effects:
1083 *
1084 * Call context:
1085 * interrupt
1086 */
Mithlesh Thukral297f06c2009-06-10 19:36:11 +05301087static void prism2sta_inf_hostscanresults(wlandevice_t *wlandev,
1088 hfa384x_InfFrame_t *inf)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001089{
Janani Ravichandran94889152016-02-25 14:33:59 -05001090 hfa384x_t *hw = wlandev->priv;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001091 int nbss;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001092
1093 nbss = (inf->framelen - 3) / 32;
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +01001094 pr_debug("Received %d hostscan results\n", nbss);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001095
1096 if (nbss > 32)
1097 nbss = 32;
1098
Moritz Muehlenhoff7c98f712009-02-09 19:33:42 +01001099 kfree(hw->scanresults);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001100
Xenia Ragiadakou57e6d782013-05-13 05:07:15 +03001101 hw->scanresults = kmemdup(inf, sizeof(hfa384x_InfFrame_t), GFP_ATOMIC);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001102
1103 if (nbss == 0)
1104 nbss = -1;
1105
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001106 /* Notify/wake the sleeping caller. */
1107 hw->scanflag = nbss;
1108 wake_up_interruptible(&hw->cmdq);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001109};
1110
Ioana Ciornei60ec47f2015-09-30 22:28:32 +03001111/*
1112 * prism2sta_inf_chinforesults
1113 *
1114 * Handles the receipt of a Channel Info Results info frame.
1115 *
1116 * Arguments:
1117 * wlandev wlan device structure
1118 * inf ptr to info frame (contents in hfa384x order)
1119 *
1120 * Returns:
1121 * nothing
1122 *
1123 * Side effects:
1124 *
1125 * Call context:
1126 * interrupt
1127 */
Mithlesh Thukral297f06c2009-06-10 19:36:11 +05301128static void prism2sta_inf_chinforesults(wlandevice_t *wlandev,
1129 hfa384x_InfFrame_t *inf)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001130{
Janani Ravichandran94889152016-02-25 14:33:59 -05001131 hfa384x_t *hw = wlandev->priv;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001132 unsigned int i, n;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001133
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001134 hw->channel_info.results.scanchannels =
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +01001135 le16_to_cpu(inf->info.chinforesult.scanchannels);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001136
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001137 for (i = 0, n = 0; i < HFA384x_CHINFORESULT_MAX; i++) {
Dan Carpentera0cdd2e2013-02-27 08:12:06 +03001138 hfa384x_ChInfoResultSub_t *result;
1139 hfa384x_ChInfoResultSub_t *chinforesult;
1140 int chan;
1141
1142 if (!(hw->channel_info.results.scanchannels & (1 << i)))
1143 continue;
1144
1145 result = &inf->info.chinforesult.result[n];
1146 chan = le16_to_cpu(result->chid) - 1;
1147
Dan Carpenter72c1c062013-02-27 08:13:45 +03001148 if (chan < 0 || chan >= HFA384x_CHINFORESULT_MAX)
1149 continue;
1150
Dan Carpentera0cdd2e2013-02-27 08:12:06 +03001151 chinforesult = &hw->channel_info.results.result[chan];
1152 chinforesult->chid = chan;
1153 chinforesult->anl = le16_to_cpu(result->anl);
1154 chinforesult->pnl = le16_to_cpu(result->pnl);
1155 chinforesult->active = le16_to_cpu(result->active);
1156
1157 pr_debug("chinfo: channel %d, %s level (avg/peak)=%d/%d dB, pcf %d\n",
1158 chan + 1,
1159 (chinforesult->active & HFA384x_CHINFORESULT_BSSACTIVE)
1160 ? "signal" : "noise",
1161 chinforesult->anl, chinforesult->pnl,
1162 (chinforesult->active & HFA384x_CHINFORESULT_PCFACTIVE)
1163 ? 1 : 0);
1164 n++;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001165 }
1166 atomic_set(&hw->channel_info.done, 2);
1167
1168 hw->channel_info.count = n;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001169}
1170
1171void prism2sta_processing_defer(struct work_struct *data)
1172{
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001173 hfa384x_t *hw = container_of(data, struct hfa384x, link_bh);
1174 wlandevice_t *wlandev = hw->wlandev;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001175 hfa384x_bytestr32_t ssid;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001176 int result;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001177
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001178 /* First let's process the auth frames */
1179 {
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001180 struct sk_buff *skb;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001181 hfa384x_InfFrame_t *inf;
1182
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001183 while ((skb = skb_dequeue(&hw->authq))) {
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001184 inf = (hfa384x_InfFrame_t *) skb->data;
1185 prism2sta_inf_authreq_defer(wlandev, inf);
1186 }
1187
1188 }
1189
1190 /* Now let's handle the linkstatus stuff */
1191 if (hw->link_status == hw->link_status_new)
Devendra Naga5d6f5052012-09-13 15:01:39 +05301192 return;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001193
1194 hw->link_status = hw->link_status_new;
1195
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001196 switch (hw->link_status) {
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001197 case HFA384x_LINK_NOTCONNECTED:
1198 /* I'm currently assuming that this is the initial link
1199 * state. It should only be possible immediately
1200 * following an Enable command.
1201 * Response:
1202 * Block Transmits, Ignore receives of data frames
1203 */
1204 netif_carrier_off(wlandev->netdev);
1205
Tugce Sirin1f997412014-03-17 16:02:05 +02001206 netdev_info(wlandev->netdev, "linkstatus=NOTCONNECTED (unhandled)\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001207 break;
1208
1209 case HFA384x_LINK_CONNECTED:
1210 /* This one indicates a successful scan/join/auth/assoc.
1211 * When we have the full MLME complement, this event will
1212 * signify successful completion of both mlme_authenticate
1213 * and mlme_associate. State management will get a little
1214 * ugly here.
1215 * Response:
1216 * Indicate authentication and/or association
1217 * Enable Transmits, Receives and pass up data frames
1218 */
1219
1220 netif_carrier_on(wlandev->netdev);
1221
Christos Tzoumakisf9bd6492010-05-07 06:17:24 +03001222 /* If we are joining a specific AP, set our
1223 * state and reset retries
1224 */
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001225 if (hw->join_ap == 1)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001226 hw->join_ap = 2;
1227 hw->join_retries = 60;
1228
1229 /* Don't call this in monitor mode */
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001230 if (wlandev->netdev->type == ARPHRD_ETHER) {
1231 u16 portstatus;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001232
Tugce Sirin1f997412014-03-17 16:02:05 +02001233 netdev_info(wlandev->netdev, "linkstatus=CONNECTED\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001234
1235 /* For non-usb devices, we can use the sync versions */
1236 /* Collect the BSSID, and set state to allow tx */
1237
1238 result = hfa384x_drvr_getconfig(hw,
Christos Tzoumakisf9bd6492010-05-07 06:17:24 +03001239 HFA384x_RID_CURRENTBSSID,
1240 wlandev->bssid,
1241 WLAN_BSSID_LEN);
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001242 if (result) {
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301243 pr_debug
1244 ("getconfig(0x%02x) failed, result = %d\n",
1245 HFA384x_RID_CURRENTBSSID, result);
Devendra Naga5d6f5052012-09-13 15:01:39 +05301246 return;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001247 }
1248
1249 result = hfa384x_drvr_getconfig(hw,
1250 HFA384x_RID_CURRENTSSID,
1251 &ssid, sizeof(ssid));
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001252 if (result) {
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301253 pr_debug
1254 ("getconfig(0x%02x) failed, result = %d\n",
1255 HFA384x_RID_CURRENTSSID, result);
Devendra Naga5d6f5052012-09-13 15:01:39 +05301256 return;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001257 }
chaehyun lim613462e2015-05-15 22:13:43 +09001258 prism2mgmt_bytestr2pstr(
1259 (struct hfa384x_bytestr *) &ssid,
1260 (p80211pstrd_t *) &wlandev->ssid);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001261
1262 /* Collect the port status */
1263 result = hfa384x_drvr_getconfig16(hw,
Christos Tzoumakisf9bd6492010-05-07 06:17:24 +03001264 HFA384x_RID_PORTSTATUS,
1265 &portstatus);
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001266 if (result) {
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301267 pr_debug
1268 ("getconfig(0x%02x) failed, result = %d\n",
1269 HFA384x_RID_PORTSTATUS, result);
Devendra Naga5d6f5052012-09-13 15:01:39 +05301270 return;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001271 }
1272 wlandev->macmode =
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001273 (portstatus == HFA384x_PSTATUS_CONN_IBSS) ?
1274 WLAN_MACMODE_IBSS_STA : WLAN_MACMODE_ESS_STA;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001275
Karl Reltoncb3126e2010-06-03 23:04:06 +01001276 /* signal back up to cfg80211 layer */
1277 prism2_connect_result(wlandev, P80211ENUM_truth_false);
1278
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001279 /* Get the ball rolling on the comms quality stuff */
1280 prism2sta_commsqual_defer(&hw->commsqual_bh);
1281 }
1282 break;
1283
1284 case HFA384x_LINK_DISCONNECTED:
1285 /* This one indicates that our association is gone. We've
1286 * lost connection with the AP and/or been disassociated.
1287 * This indicates that the MAC has completely cleared it's
1288 * associated state. We * should send a deauth indication
1289 * (implying disassoc) up * to the MLME.
1290 * Response:
1291 * Indicate Deauthentication
1292 * Block Transmits, Ignore receives of data frames
1293 */
Karl Reltoncb3126e2010-06-03 23:04:06 +01001294 if (wlandev->netdev->type == ARPHRD_ETHER)
Tugce Sirin1f997412014-03-17 16:02:05 +02001295 netdev_info(wlandev->netdev,
Karl Reltoncb3126e2010-06-03 23:04:06 +01001296 "linkstatus=DISCONNECTED (unhandled)\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001297 wlandev->macmode = WLAN_MACMODE_NONE;
1298
1299 netif_carrier_off(wlandev->netdev);
1300
Karl Reltoncb3126e2010-06-03 23:04:06 +01001301 /* signal back up to cfg80211 layer */
1302 prism2_disconnected(wlandev);
1303
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001304 break;
1305
1306 case HFA384x_LINK_AP_CHANGE:
1307 /* This one indicates that the MAC has decided to and
1308 * successfully completed a change to another AP. We
1309 * should probably implement a reassociation indication
1310 * in response to this one. I'm thinking that the the
1311 * p80211 layer needs to be notified in case of
1312 * buffering/queueing issues. User mode also needs to be
1313 * notified so that any BSS dependent elements can be
1314 * updated.
1315 * associated state. We * should send a deauth indication
1316 * (implying disassoc) up * to the MLME.
1317 * Response:
1318 * Indicate Reassociation
1319 * Enable Transmits, Receives and pass up data frames
1320 */
Tugce Sirin1f997412014-03-17 16:02:05 +02001321 netdev_info(wlandev->netdev, "linkstatus=AP_CHANGE\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001322
1323 result = hfa384x_drvr_getconfig(hw,
1324 HFA384x_RID_CURRENTBSSID,
1325 wlandev->bssid, WLAN_BSSID_LEN);
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001326 if (result) {
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301327 pr_debug("getconfig(0x%02x) failed, result = %d\n",
1328 HFA384x_RID_CURRENTBSSID, result);
Devendra Naga5d6f5052012-09-13 15:01:39 +05301329 return;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001330 }
1331
1332 result = hfa384x_drvr_getconfig(hw,
1333 HFA384x_RID_CURRENTSSID,
1334 &ssid, sizeof(ssid));
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001335 if (result) {
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301336 pr_debug("getconfig(0x%02x) failed, result = %d\n",
1337 HFA384x_RID_CURRENTSSID, result);
Devendra Naga5d6f5052012-09-13 15:01:39 +05301338 return;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001339 }
Himangi Saraogib2119912013-11-02 18:11:44 +05301340 prism2mgmt_bytestr2pstr((struct hfa384x_bytestr *) &ssid,
Svenne Krap5dd8acc2010-02-14 18:59:00 +01001341 (p80211pstrd_t *) &wlandev->ssid);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001342
1343 hw->link_status = HFA384x_LINK_CONNECTED;
1344 netif_carrier_on(wlandev->netdev);
1345
Karl Reltoncb3126e2010-06-03 23:04:06 +01001346 /* signal back up to cfg80211 layer */
1347 prism2_roamed(wlandev);
1348
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001349 break;
1350
1351 case HFA384x_LINK_AP_OUTOFRANGE:
1352 /* This one indicates that the MAC has decided that the
1353 * AP is out of range, but hasn't found a better candidate
1354 * so the MAC maintains its "associated" state in case
1355 * we get back in range. We should block transmits and
1356 * receives in this state. Do we need an indication here?
1357 * Probably not since a polling user-mode element would
1358 * get this status from from p2PortStatus(FD40). What about
1359 * p80211?
1360 * Response:
1361 * Block Transmits, Ignore receives of data frames
1362 */
Tugce Sirin1f997412014-03-17 16:02:05 +02001363 netdev_info(wlandev->netdev, "linkstatus=AP_OUTOFRANGE (unhandled)\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001364
1365 netif_carrier_off(wlandev->netdev);
1366
1367 break;
1368
1369 case HFA384x_LINK_AP_INRANGE:
1370 /* This one indicates that the MAC has decided that the
1371 * AP is back in range. We continue working with our
1372 * existing association.
1373 * Response:
1374 * Enable Transmits, Receives and pass up data frames
1375 */
Tugce Sirin1f997412014-03-17 16:02:05 +02001376 netdev_info(wlandev->netdev, "linkstatus=AP_INRANGE\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001377
1378 hw->link_status = HFA384x_LINK_CONNECTED;
1379 netif_carrier_on(wlandev->netdev);
1380
1381 break;
1382
1383 case HFA384x_LINK_ASSOCFAIL:
1384 /* This one is actually a peer to CONNECTED. We've
1385 * requested a join for a given SSID and optionally BSSID.
1386 * We can use this one to indicate authentication and
1387 * association failures. The trick is going to be
1388 * 1) identifying the failure, and 2) state management.
1389 * Response:
1390 * Disable Transmits, Ignore receives of data frames
1391 */
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001392 if (hw->join_ap && --hw->join_retries > 0) {
1393 hfa384x_JoinRequest_data_t joinreq;
Johannes Stadlingerf9d01752014-06-19 21:20:20 +02001394
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001395 joinreq = hw->joinreq;
1396 /* Send the join request */
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001397 hfa384x_drvr_setconfig(hw,
1398 HFA384x_RID_JOINREQUEST,
1399 &joinreq,
1400 HFA384x_RID_JOINREQUEST_LEN);
Tugce Sirin1f997412014-03-17 16:02:05 +02001401 netdev_info(wlandev->netdev,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001402 "linkstatus=ASSOCFAIL (re-submitting join)\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001403 } else {
Tugce Sirin1f997412014-03-17 16:02:05 +02001404 netdev_info(wlandev->netdev, "linkstatus=ASSOCFAIL (unhandled)\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001405 }
1406
1407 netif_carrier_off(wlandev->netdev);
1408
Karl Reltoncb3126e2010-06-03 23:04:06 +01001409 /* signal back up to cfg80211 layer */
1410 prism2_connect_result(wlandev, P80211ENUM_truth_true);
1411
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001412 break;
1413
1414 default:
1415 /* This is bad, IO port problems? */
Vitaly Osipov02d9b1e2014-05-18 16:59:36 +10001416 netdev_warn(wlandev->netdev,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001417 "unknown linkstatus=0x%02x\n", hw->link_status);
Devendra Naga5d6f5052012-09-13 15:01:39 +05301418 return;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001419 }
1420
1421 wlandev->linkstatus = (hw->link_status == HFA384x_LINK_CONNECTED);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001422}
1423
Ioana Ciornei60ec47f2015-09-30 22:28:32 +03001424/*
1425 * prism2sta_inf_linkstatus
1426 *
1427 * Handles the receipt of a Link Status info frame.
1428 *
1429 * Arguments:
1430 * wlandev wlan device structure
1431 * inf ptr to info frame (contents in hfa384x order)
1432 *
1433 * Returns:
1434 * nothing
1435 *
1436 * Side effects:
1437 *
1438 * Call context:
1439 * interrupt
1440 */
Mithlesh Thukral297f06c2009-06-10 19:36:11 +05301441static void prism2sta_inf_linkstatus(wlandevice_t *wlandev,
1442 hfa384x_InfFrame_t *inf)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001443{
Janani Ravichandran94889152016-02-25 14:33:59 -05001444 hfa384x_t *hw = wlandev->priv;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001445
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +01001446 hw->link_status_new = le16_to_cpu(inf->info.linkstatus.linkstatus);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001447
1448 schedule_work(&hw->link_bh);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001449}
1450
Ioana Ciornei60ec47f2015-09-30 22:28:32 +03001451/*
1452 * prism2sta_inf_assocstatus
1453 *
1454 * Handles the receipt of an Association Status info frame. Should
1455 * be present in APs only.
1456 *
1457 * Arguments:
1458 * wlandev wlan device structure
1459 * inf ptr to info frame (contents in hfa384x order)
1460 *
1461 * Returns:
1462 * nothing
1463 *
1464 * Side effects:
1465 *
1466 * Call context:
1467 * interrupt
1468 */
Mithlesh Thukral297f06c2009-06-10 19:36:11 +05301469static void prism2sta_inf_assocstatus(wlandevice_t *wlandev,
1470 hfa384x_InfFrame_t *inf)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001471{
Janani Ravichandran94889152016-02-25 14:33:59 -05001472 hfa384x_t *hw = wlandev->priv;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001473 hfa384x_AssocStatus_t rec;
1474 int i;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001475
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001476 memcpy(&rec, &inf->info.assocstatus, sizeof(rec));
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +01001477 rec.assocstatus = le16_to_cpu(rec.assocstatus);
1478 rec.reason = le16_to_cpu(rec.reason);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001479
1480 /*
Ioana Ciornei60ec47f2015-09-30 22:28:32 +03001481 * Find the address in the list of authenticated stations.
1482 * If it wasn't found, then this address has not been previously
1483 * authenticated and something weird has happened if this is
1484 * anything other than an "authentication failed" message.
1485 * If the address was found, then set the "associated" flag for
1486 * that station, based on whether the station is associating or
1487 * losing its association. Something weird has also happened
1488 * if we find the address in the list of authenticated stations
1489 * but we are getting an "authentication failed" message.
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001490 */
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001491
1492 for (i = 0; i < hw->authlist.cnt; i++)
Maciek Borzeckia305cf32015-10-03 16:01:36 +02001493 if (ether_addr_equal(rec.sta_addr, hw->authlist.addr[i]))
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001494 break;
1495
1496 if (i >= hw->authlist.cnt) {
1497 if (rec.assocstatus != HFA384x_ASSOCSTATUS_AUTHFAIL)
Vitaly Osipov02d9b1e2014-05-18 16:59:36 +10001498 netdev_warn(wlandev->netdev,
Christos Tzoumakisf9bd6492010-05-07 06:17:24 +03001499 "assocstatus info frame received for non-authenticated station.\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001500 } else {
1501 hw->authlist.assoc[i] =
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001502 (rec.assocstatus == HFA384x_ASSOCSTATUS_STAASSOC ||
1503 rec.assocstatus == HFA384x_ASSOCSTATUS_REASSOC);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001504
1505 if (rec.assocstatus == HFA384x_ASSOCSTATUS_AUTHFAIL)
Vitaly Osipov02d9b1e2014-05-18 16:59:36 +10001506 netdev_warn(wlandev->netdev,
Christos Tzoumakisf9bd6492010-05-07 06:17:24 +03001507"authfail assocstatus info frame received for authenticated station.\n");
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001508 }
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001509}
1510
Ioana Ciornei60ec47f2015-09-30 22:28:32 +03001511/*
1512 * prism2sta_inf_authreq
1513 *
1514 * Handles the receipt of an Authentication Request info frame. Should
1515 * be present in APs only.
1516 *
1517 * Arguments:
1518 * wlandev wlan device structure
1519 * inf ptr to info frame (contents in hfa384x order)
1520 *
1521 * Returns:
1522 * nothing
1523 *
1524 * Side effects:
1525 *
1526 * Call context:
1527 * interrupt
1528 *
1529 */
Mithlesh Thukral297f06c2009-06-10 19:36:11 +05301530static void prism2sta_inf_authreq(wlandevice_t *wlandev,
1531 hfa384x_InfFrame_t *inf)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001532{
Janani Ravichandran94889152016-02-25 14:33:59 -05001533 hfa384x_t *hw = wlandev->priv;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001534 struct sk_buff *skb;
1535
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001536 skb = dev_alloc_skb(sizeof(*inf));
1537 if (skb) {
1538 skb_put(skb, sizeof(*inf));
1539 memcpy(skb->data, inf, sizeof(*inf));
1540 skb_queue_tail(&hw->authq, skb);
1541 schedule_work(&hw->link_bh);
1542 }
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001543}
1544
Mithlesh Thukral297f06c2009-06-10 19:36:11 +05301545static void prism2sta_inf_authreq_defer(wlandevice_t *wlandev,
1546 hfa384x_InfFrame_t *inf)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001547{
Janani Ravichandran94889152016-02-25 14:33:59 -05001548 hfa384x_t *hw = wlandev->priv;
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001549 hfa384x_authenticateStation_data_t rec;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001550
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001551 int i, added, result, cnt;
1552 u8 *addr;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001553
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001554 /*
Ioana Ciornei60ec47f2015-09-30 22:28:32 +03001555 * Build the AuthenticateStation record. Initialize it for denying
1556 * authentication.
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001557 */
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001558
Ioana Ciornei7078db92015-03-18 15:26:05 +02001559 ether_addr_copy(rec.address, inf->info.authreq.sta_addr);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001560 rec.status = P80211ENUM_status_unspec_failure;
1561
1562 /*
Ioana Ciornei60ec47f2015-09-30 22:28:32 +03001563 * Authenticate based on the access mode.
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001564 */
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001565
1566 switch (hw->accessmode) {
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001567 case WLAN_ACCESS_NONE:
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001568
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001569 /*
Ioana Ciornei60ec47f2015-09-30 22:28:32 +03001570 * Deny all new authentications. However, if a station
1571 * is ALREADY authenticated, then accept it.
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001572 */
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001573
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001574 for (i = 0; i < hw->authlist.cnt; i++)
Maciek Borzeckia305cf32015-10-03 16:01:36 +02001575 if (ether_addr_equal(rec.address,
1576 hw->authlist.addr[i])) {
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001577 rec.status = P80211ENUM_status_successful;
1578 break;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001579 }
1580
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001581 break;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001582
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001583 case WLAN_ACCESS_ALL:
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001584
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001585 /*
Ioana Ciornei60ec47f2015-09-30 22:28:32 +03001586 * Allow all authentications.
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001587 */
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001588
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001589 rec.status = P80211ENUM_status_successful;
1590 break;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001591
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001592 case WLAN_ACCESS_ALLOW:
1593
1594 /*
Ioana Ciornei60ec47f2015-09-30 22:28:32 +03001595 * Only allow the authentication if the MAC address
1596 * is in the list of allowed addresses.
1597 *
1598 * Since this is the interrupt handler, we may be here
1599 * while the access list is in the middle of being
1600 * updated. Choose the list which is currently okay.
1601 * See "prism2mib_priv_accessallow()" for details.
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001602 */
1603
1604 if (hw->allow.modify == 0) {
1605 cnt = hw->allow.cnt;
1606 addr = hw->allow.addr[0];
1607 } else {
1608 cnt = hw->allow.cnt1;
1609 addr = hw->allow.addr1[0];
1610 }
1611
1612 for (i = 0; i < cnt; i++, addr += ETH_ALEN)
Maciek Borzeckia305cf32015-10-03 16:01:36 +02001613 if (ether_addr_equal(rec.address, addr)) {
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001614 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_DENY:
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001621
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001622 /*
Ioana Ciornei60ec47f2015-09-30 22:28:32 +03001623 * Allow the authentication UNLESS the MAC address is
1624 * in the list of denied addresses.
1625 *
1626 * Since this is the interrupt handler, we may be here
1627 * while the access list is in the middle of being
1628 * updated. Choose the list which is currently okay.
1629 * See "prism2mib_priv_accessdeny()" for details.
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001630 */
1631
1632 if (hw->deny.modify == 0) {
1633 cnt = hw->deny.cnt;
1634 addr = hw->deny.addr[0];
1635 } else {
1636 cnt = hw->deny.cnt1;
1637 addr = hw->deny.addr1[0];
1638 }
1639
1640 rec.status = P80211ENUM_status_successful;
1641
1642 for (i = 0; i < cnt; i++, addr += ETH_ALEN)
Maciek Borzeckia305cf32015-10-03 16:01:36 +02001643 if (ether_addr_equal(rec.address, addr)) {
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001644 rec.status = P80211ENUM_status_unspec_failure;
1645 break;
1646 }
1647
1648 break;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001649 }
1650
1651 /*
Ioana Ciornei60ec47f2015-09-30 22:28:32 +03001652 * If the authentication is okay, then add the MAC address to the
1653 * list of authenticated stations. Don't add the address if it
1654 * is already in the list. (802.11b does not seem to disallow
1655 * a station from issuing an authentication request when the
1656 * station is already authenticated. Does this sort of thing
1657 * ever happen? We might as well do the check just in case.)
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001658 */
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001659
1660 added = 0;
1661
1662 if (rec.status == P80211ENUM_status_successful) {
1663 for (i = 0; i < hw->authlist.cnt; i++)
Maciek Borzeckia305cf32015-10-03 16:01:36 +02001664 if (ether_addr_equal(rec.address,
1665 hw->authlist.addr[i]))
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001666 break;
1667
1668 if (i >= hw->authlist.cnt) {
1669 if (hw->authlist.cnt >= WLAN_AUTH_MAX) {
1670 rec.status = P80211ENUM_status_ap_full;
1671 } else {
chaehyun lim613462e2015-05-15 22:13:43 +09001672 ether_addr_copy(
1673 hw->authlist.addr[hw->authlist.cnt],
1674 rec.address);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001675 hw->authlist.cnt++;
1676 added = 1;
1677 }
1678 }
1679 }
1680
1681 /*
Ioana Ciornei60ec47f2015-09-30 22:28:32 +03001682 * Send back the results of the authentication. If this doesn't work,
1683 * then make sure to remove the address from the authenticated list if
1684 * it was added.
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001685 */
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001686
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +01001687 rec.status = cpu_to_le16(rec.status);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001688 rec.algorithm = inf->info.authreq.algorithm;
1689
1690 result = hfa384x_drvr_setconfig(hw, HFA384x_RID_AUTHENTICATESTA,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001691 &rec, sizeof(rec));
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001692 if (result) {
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001693 if (added)
1694 hw->authlist.cnt--;
Tugce Sirin80135b12014-03-17 16:01:51 +02001695 netdev_err(wlandev->netdev,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001696 "setconfig(authenticatestation) failed, result=%d\n",
1697 result);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001698 }
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001699}
1700
Ioana Ciornei60ec47f2015-09-30 22:28:32 +03001701/*
1702 * prism2sta_inf_psusercnt
1703 *
1704 * Handles the receipt of a PowerSaveUserCount info frame. Should
1705 * be present in APs only.
1706 *
1707 * Arguments:
1708 * wlandev wlan device structure
1709 * inf ptr to info frame (contents in hfa384x order)
1710 *
1711 * Returns:
1712 * nothing
1713 *
1714 * Side effects:
1715 *
1716 * Call context:
1717 * interrupt
1718 */
Mithlesh Thukral297f06c2009-06-10 19:36:11 +05301719static void prism2sta_inf_psusercnt(wlandevice_t *wlandev,
1720 hfa384x_InfFrame_t *inf)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001721{
Janani Ravichandran94889152016-02-25 14:33:59 -05001722 hfa384x_t *hw = wlandev->priv;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001723
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +01001724 hw->psusercount = le16_to_cpu(inf->info.psusercnt.usercnt);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001725}
1726
Ioana Ciornei60ec47f2015-09-30 22:28:32 +03001727/*
1728 * prism2sta_ev_info
1729 *
1730 * Handles the Info event.
1731 *
1732 * Arguments:
1733 * wlandev wlan device structure
1734 * inf ptr to a generic info frame
1735 *
1736 * Returns:
1737 * nothing
1738 *
1739 * Side effects:
1740 *
1741 * Call context:
1742 * interrupt
1743 */
Mithlesh Thukral297f06c2009-06-10 19:36:11 +05301744void prism2sta_ev_info(wlandevice_t *wlandev, hfa384x_InfFrame_t *inf)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001745{
Moritz Muehlenhoff18c7f792009-02-18 19:50:07 +01001746 inf->infotype = le16_to_cpu(inf->infotype);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001747 /* Dispatch */
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001748 switch (inf->infotype) {
1749 case HFA384x_IT_HANDOVERADDR:
1750 prism2sta_inf_handover(wlandev, inf);
1751 break;
1752 case HFA384x_IT_COMMTALLIES:
1753 prism2sta_inf_tallies(wlandev, inf);
1754 break;
1755 case HFA384x_IT_HOSTSCANRESULTS:
1756 prism2sta_inf_hostscanresults(wlandev, inf);
1757 break;
1758 case HFA384x_IT_SCANRESULTS:
1759 prism2sta_inf_scanresults(wlandev, inf);
1760 break;
1761 case HFA384x_IT_CHINFORESULTS:
1762 prism2sta_inf_chinforesults(wlandev, inf);
1763 break;
1764 case HFA384x_IT_LINKSTATUS:
1765 prism2sta_inf_linkstatus(wlandev, inf);
1766 break;
1767 case HFA384x_IT_ASSOCSTATUS:
1768 prism2sta_inf_assocstatus(wlandev, inf);
1769 break;
1770 case HFA384x_IT_AUTHREQ:
1771 prism2sta_inf_authreq(wlandev, inf);
1772 break;
1773 case HFA384x_IT_PSUSERCNT:
1774 prism2sta_inf_psusercnt(wlandev, inf);
1775 break;
1776 case HFA384x_IT_KEYIDCHANGED:
Vitaly Osipov02d9b1e2014-05-18 16:59:36 +10001777 netdev_warn(wlandev->netdev, "Unhandled IT_KEYIDCHANGED\n");
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001778 break;
1779 case HFA384x_IT_ASSOCREQ:
Vitaly Osipov02d9b1e2014-05-18 16:59:36 +10001780 netdev_warn(wlandev->netdev, "Unhandled IT_ASSOCREQ\n");
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001781 break;
1782 case HFA384x_IT_MICFAILURE:
Vitaly Osipov02d9b1e2014-05-18 16:59:36 +10001783 netdev_warn(wlandev->netdev, "Unhandled IT_MICFAILURE\n");
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001784 break;
1785 default:
Vitaly Osipov02d9b1e2014-05-18 16:59:36 +10001786 netdev_warn(wlandev->netdev,
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001787 "Unknown info type=0x%02x\n", inf->infotype);
1788 break;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001789 }
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001790}
1791
Ioana Ciornei60ec47f2015-09-30 22:28:32 +03001792/*
1793 * prism2sta_ev_txexc
1794 *
1795 * Handles the TxExc event. A Transmit Exception event indicates
1796 * that the MAC's TX process was unsuccessful - so the packet did
1797 * not get transmitted.
1798 *
1799 * Arguments:
1800 * wlandev wlan device structure
1801 * status tx frame status word
1802 *
1803 * Returns:
1804 * nothing
1805 *
1806 * Side effects:
1807 *
1808 * Call context:
1809 * interrupt
1810 */
Mithlesh Thukral297f06c2009-06-10 19:36:11 +05301811void prism2sta_ev_txexc(wlandevice_t *wlandev, u16 status)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001812{
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +01001813 pr_debug("TxExc status=0x%x.\n", status);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001814}
1815
Ioana Ciornei60ec47f2015-09-30 22:28:32 +03001816/*
1817 * prism2sta_ev_tx
1818 *
1819 * Handles the Tx event.
1820 *
1821 * Arguments:
1822 * wlandev wlan device structure
1823 * status tx frame status word
1824 * Returns:
1825 * nothing
1826 *
1827 * Side effects:
1828 *
1829 * Call context:
1830 * interrupt
1831 */
Mithlesh Thukral297f06c2009-06-10 19:36:11 +05301832void prism2sta_ev_tx(wlandevice_t *wlandev, u16 status)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001833{
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +01001834 pr_debug("Tx Complete, status=0x%04x\n", status);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001835 /* update linux network stats */
Tobias Klauser9630f6b2014-07-08 08:37:00 +02001836 wlandev->netdev->stats.tx_packets++;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001837}
1838
Ioana Ciornei60ec47f2015-09-30 22:28:32 +03001839/*
Ioana Ciornei60ec47f2015-09-30 22:28:32 +03001840 * prism2sta_ev_alloc
1841 *
1842 * Handles the Alloc event.
1843 *
1844 * Arguments:
1845 * wlandev wlan device structure
1846 *
1847 * Returns:
1848 * nothing
1849 *
1850 * Side effects:
1851 *
1852 * Call context:
1853 * interrupt
1854 */
Mithlesh Thukral297f06c2009-06-10 19:36:11 +05301855void prism2sta_ev_alloc(wlandevice_t *wlandev)
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001856{
Solomon Peachycbec30c2008-10-29 10:42:57 -04001857 netif_wake_queue(wlandev->netdev);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001858}
1859
Ioana Ciornei60ec47f2015-09-30 22:28:32 +03001860/*
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001861* create_wlan
1862*
1863* Called at module init time. This creates the wlandevice_t structure
1864* and initializes it with relevant bits.
1865*
1866* Arguments:
1867* none
1868*
1869* Returns:
1870* the created wlandevice_t structure.
1871*
1872* Side effects:
Christos Tzoumakisf9bd6492010-05-07 06:17:24 +03001873* also allocates the priv/hw structures.
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001874*
1875* Call context:
1876* process thread
1877*
Ioana Ciornei60ec47f2015-09-30 22:28:32 +03001878*/
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001879static wlandevice_t *create_wlan(void)
1880{
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001881 wlandevice_t *wlandev = NULL;
1882 hfa384x_t *hw = NULL;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001883
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001884 /* Alloc our structures */
Devendra Naga1a46eaf2012-07-14 13:26:59 +05451885 wlandev = kzalloc(sizeof(wlandevice_t), GFP_KERNEL);
1886 hw = kzalloc(sizeof(hfa384x_t), GFP_KERNEL);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001887
1888 if (!wlandev || !hw) {
Moritz Muehlenhoff7c98f712009-02-09 19:33:42 +01001889 kfree(wlandev);
1890 kfree(hw);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001891 return NULL;
1892 }
1893
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001894 /* Initialize the network device object. */
1895 wlandev->nsdname = dev_info;
1896 wlandev->msdstate = WLAN_MSD_HWPRESENT_PENDING;
1897 wlandev->priv = hw;
1898 wlandev->open = prism2sta_open;
1899 wlandev->close = prism2sta_close;
1900 wlandev->reset = prism2sta_reset;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001901 wlandev->txframe = prism2sta_txframe;
1902 wlandev->mlmerequest = prism2sta_mlmerequest;
1903 wlandev->set_multicast_list = prism2sta_setmulticast;
1904 wlandev->tx_timeout = hfa384x_tx_timeout;
1905
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001906 wlandev->nsdcaps = P80211_NSDCAP_HWFRAGMENT | P80211_NSDCAP_AUTOJOIN;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001907
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001908 /* Initialize the device private data structure. */
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001909 hw->dot11_desired_bss_type = 1;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001910
1911 return wlandev;
1912}
1913
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001914void prism2sta_commsqual_defer(struct work_struct *data)
1915{
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001916 hfa384x_t *hw = container_of(data, struct hfa384x, commsqual_bh);
1917 wlandevice_t *wlandev = hw->wlandev;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001918 hfa384x_bytestr32_t ssid;
Edgardo Hamesb6bb56e2010-08-02 16:20:39 -03001919 struct p80211msg_dot11req_mibget msg;
1920 p80211item_uint32_t *mibitem = (p80211item_uint32_t *)
1921 &msg.mibattribute.data;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001922 int result = 0;
1923
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001924 if (hw->wlandev->hwremoved)
Devendra Naga102db1f2012-09-09 18:41:00 +05301925 return;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001926
1927 /* we don't care if we're in AP mode */
1928 if ((wlandev->macmode == WLAN_MACMODE_NONE) ||
1929 (wlandev->macmode == WLAN_MACMODE_ESS_AP)) {
Devendra Naga102db1f2012-09-09 18:41:00 +05301930 return;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001931 }
1932
1933 /* It only makes sense to poll these in non-IBSS */
1934 if (wlandev->macmode != WLAN_MACMODE_IBSS_STA) {
Christos Tzoumakisf9bd6492010-05-07 06:17:24 +03001935 result = hfa384x_drvr_getconfig(
1936 hw, HFA384x_RID_DBMCOMMSQUALITY,
1937 &hw->qual, HFA384x_RID_DBMCOMMSQUALITY_LEN);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001938
1939 if (result) {
Tugce Sirin80135b12014-03-17 16:01:51 +02001940 netdev_err(wlandev->netdev, "error fetching commsqual\n");
Devendra Naga102db1f2012-09-09 18:41:00 +05301941 return;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001942 }
1943
Moritz Muehlenhoffa7cf7ba2009-02-08 02:01:00 +01001944 pr_debug("commsqual %d %d %d\n",
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301945 le16_to_cpu(hw->qual.CQ_currBSS),
1946 le16_to_cpu(hw->qual.ASL_currBSS),
1947 le16_to_cpu(hw->qual.ANL_currFC));
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001948 }
1949
Karl Reltoncb3126e2010-06-03 23:04:06 +01001950 /* Get the signal rate */
1951 msg.msgcode = DIDmsg_dot11req_mibget;
1952 mibitem->did = DIDmib_p2_p2MAC_p2CurrentTxRate;
Edgardo Hamesb6bb56e2010-08-02 16:20:39 -03001953 result = p80211req_dorequest(wlandev, (u8 *) &msg);
Karl Reltoncb3126e2010-06-03 23:04:06 +01001954
1955 if (result) {
1956 pr_debug("get signal rate failed, result = %d\n",
1957 result);
Devendra Naga102db1f2012-09-09 18:41:00 +05301958 return;
Karl Reltoncb3126e2010-06-03 23:04:06 +01001959 }
1960
1961 switch (mibitem->data) {
1962 case HFA384x_RATEBIT_1:
1963 hw->txrate = 10;
1964 break;
1965 case HFA384x_RATEBIT_2:
1966 hw->txrate = 20;
1967 break;
1968 case HFA384x_RATEBIT_5dot5:
1969 hw->txrate = 55;
1970 break;
1971 case HFA384x_RATEBIT_11:
1972 hw->txrate = 110;
1973 break;
1974 default:
1975 pr_debug("Bad ratebit (%d)\n", mibitem->data);
1976 }
1977
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001978 /* Lastly, we need to make sure the BSSID didn't change on us */
1979 result = hfa384x_drvr_getconfig(hw,
1980 HFA384x_RID_CURRENTBSSID,
1981 wlandev->bssid, WLAN_BSSID_LEN);
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001982 if (result) {
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301983 pr_debug("getconfig(0x%02x) failed, result = %d\n",
1984 HFA384x_RID_CURRENTBSSID, result);
Devendra Naga102db1f2012-09-09 18:41:00 +05301985 return;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001986 }
1987
1988 result = hfa384x_drvr_getconfig(hw,
1989 HFA384x_RID_CURRENTSSID,
1990 &ssid, sizeof(ssid));
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01001991 if (result) {
Mithlesh Thukral75f49e02009-05-25 19:06:16 +05301992 pr_debug("getconfig(0x%02x) failed, result = %d\n",
1993 HFA384x_RID_CURRENTSSID, result);
Devendra Naga102db1f2012-09-09 18:41:00 +05301994 return;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001995 }
Himangi Saraogib2119912013-11-02 18:11:44 +05301996 prism2mgmt_bytestr2pstr((struct hfa384x_bytestr *) &ssid,
Svenne Krap5dd8acc2010-02-14 18:59:00 +01001997 (p80211pstrd_t *) &wlandev->ssid);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07001998
1999 /* Reschedule timer */
2000 mod_timer(&hw->commsqual_timer, jiffies + HZ);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07002001}
2002
2003void prism2sta_commsqual_timer(unsigned long data)
2004{
Moritz Muehlenhofff3422882009-02-08 02:21:04 +01002005 hfa384x_t *hw = (hfa384x_t *) data;
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07002006
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07002007 schedule_work(&hw->commsqual_bh);
Greg Kroah-Hartman00b3ed12008-10-02 11:29:28 -07002008}