blob: 187507e2d935c06bfcf6c8b6ab67075ac5047030 [file] [log] [blame]
Jeff Johnson295189b2012-06-20 16:38:30 -07001/*
Mukul Sharma1fd6efd2015-02-14 00:29:14 +05302 * Copyright (c) 2012-2015 The Linux Foundation. All rights reserved.
Kiet Lam842dad02014-02-18 18:44:02 -08003 *
4 * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
5 *
6 *
7 * Permission to use, copy, modify, and/or distribute this software for
8 * any purpose with or without fee is hereby granted, provided that the
9 * above copyright notice and this permission notice appear in all
10 * copies.
11 *
12 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
13 * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
14 * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
15 * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
16 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
17 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
18 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
19 * PERFORMANCE OF THIS SOFTWARE.
20 */
21
22/*
Kiet Lama7f454d2014-07-24 12:04:06 -070023 * This file was originally distributed by Qualcomm Atheros, Inc.
24 * under proprietary terms before Copyright ownership was assigned
25 * to the Linux Foundation.
Gopichand Nakkala92f07d82013-01-08 21:16:34 -080026 */
Kiet Lam842dad02014-02-18 18:44:02 -080027
28
Kiet Lama7f454d2014-07-24 12:04:06 -070029
30
Jeff Johnson295189b2012-06-20 16:38:30 -070031/*========================================================================
32
33 \file wlan_hdd_main.c
34
35 \brief WLAN Host Device Driver implementation
36
Jeff Johnson295189b2012-06-20 16:38:30 -070037
38 ========================================================================*/
39
40/**=========================================================================
41
42 EDIT HISTORY FOR FILE
43
44
45 This section contains comments describing changes made to the module.
46 Notice that changes are listed in reverse chronological order.
47
48
49 $Header:$ $DateTime: $ $Author: $
50
51
52 when who what, where, why
53 -------- --- --------------------------------------------------------
54 04/5/09 Shailender Created module.
55 02/24/10 Sudhir.S.Kohalli Added to support param for SoftAP module
56 06/03/10 js - Added support to hostapd driven deauth/disassoc/mic failure
57 ==========================================================================*/
58
59/*--------------------------------------------------------------------------
60 Include Files
61 ------------------------------------------------------------------------*/
62//#include <wlan_qct_driver.h>
63#include <wlan_hdd_includes.h>
Jeff Johnson295189b2012-06-20 16:38:30 -070064#include <vos_api.h>
65#include <vos_sched.h>
Jeff Johnson295189b2012-06-20 16:38:30 -070066#include <linux/etherdevice.h>
67#include <linux/firmware.h>
Jeff Johnson295189b2012-06-20 16:38:30 -070068#ifdef ANI_BUS_TYPE_PLATFORM
69#include <linux/wcnss_wlan.h>
70#endif //ANI_BUS_TYPE_PLATFORM
71#ifdef ANI_BUS_TYPE_PCI
72#include "wcnss_wlan.h"
73#endif /* ANI_BUS_TYPE_PCI */
74#include <wlan_hdd_tx_rx.h>
75#include <palTimer.h>
76#include <wniApi.h>
77#include <wlan_nlink_srv.h>
78#include <wlan_btc_svc.h>
79#include <wlan_hdd_cfg.h>
80#include <wlan_ptt_sock_svc.h>
Vinay Krishna Erannad938c422014-03-10 17:14:21 +053081#include <wlan_logging_sock_svc.h>
Jeff Johnson295189b2012-06-20 16:38:30 -070082#include <wlan_hdd_wowl.h>
83#include <wlan_hdd_misc.h>
84#include <wlan_hdd_wext.h>
85#ifdef WLAN_BTAMP_FEATURE
86#include <bap_hdd_main.h>
87#include <bapInternal.h>
88#endif // WLAN_BTAMP_FEATURE
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053089#include "wlan_hdd_trace.h"
90#include "vos_types.h"
91#include "vos_trace.h"
Jeff Johnson295189b2012-06-20 16:38:30 -070092#include <linux/wireless.h>
93#include <net/cfg80211.h>
Vinay Krishna Erannad9cbdb32014-01-16 12:59:10 +053094#include <linux/inetdevice.h>
95#include <net/addrconf.h>
Jeff Johnson295189b2012-06-20 16:38:30 -070096#include "wlan_hdd_cfg80211.h"
97#include "wlan_hdd_p2p.h"
Jeff Johnson295189b2012-06-20 16:38:30 -070098#include <linux/rtnetlink.h>
Jeff Johnson295189b2012-06-20 16:38:30 -070099int wlan_hdd_ftm_start(hdd_context_t *pAdapter);
Jeff Johnson295189b2012-06-20 16:38:30 -0700100#include "sapApi.h"
101#include <linux/semaphore.h>
Srinivas Girigowda0c69aee2013-10-09 17:21:01 -0700102#include <linux/ctype.h>
Arun Kumar Khandavalli74fe3032014-03-17 20:35:34 +0530103#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,10,0))
104#include <soc/qcom/subsystem_restart.h>
105#else
Jeff Johnson295189b2012-06-20 16:38:30 -0700106#include <mach/subsystem_restart.h>
Arun Kumar Khandavalli74fe3032014-03-17 20:35:34 +0530107#endif
Jeff Johnson295189b2012-06-20 16:38:30 -0700108#include <wlan_hdd_hostapd.h>
109#include <wlan_hdd_softap_tx_rx.h>
Jeff Johnson295189b2012-06-20 16:38:30 -0700110#include "cfgApi.h"
Jeff Johnson295189b2012-06-20 16:38:30 -0700111#include "wlan_hdd_dev_pwr.h"
112#ifdef WLAN_BTAMP_FEATURE
113#include "bap_hdd_misc.h"
114#endif
Jeff Johnson295189b2012-06-20 16:38:30 -0700115#include "wlan_qct_pal_trace.h"
Jeff Johnson295189b2012-06-20 16:38:30 -0700116#include "qwlan_version.h"
Yathish9f22e662012-12-10 14:21:35 -0800117#include "wlan_qct_wda.h"
Chilam NG571c65a2013-01-19 12:27:36 +0530118#ifdef FEATURE_WLAN_TDLS
119#include "wlan_hdd_tdls.h"
120#endif
Yue Ma0d4891e2013-08-06 17:01:45 -0700121#include "wlan_hdd_debugfs.h"
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +0530122#include "sapInternal.h"
Jeff Johnson295189b2012-06-20 16:38:30 -0700123
124#ifdef MODULE
125#define WLAN_MODULE_NAME module_name(THIS_MODULE)
126#else
127#define WLAN_MODULE_NAME "wlan"
128#endif
129
130#ifdef TIMER_MANAGER
131#define TIMER_MANAGER_STR " +TIMER_MANAGER"
132#else
133#define TIMER_MANAGER_STR ""
134#endif
135
136#ifdef MEMORY_DEBUG
137#define MEMORY_DEBUG_STR " +MEMORY_DEBUG"
138#else
139#define MEMORY_DEBUG_STR ""
140#endif
Kaushik, Sushant7005e372014-04-08 11:36:54 +0530141#define MAX_WAIT_FOR_ROC_COMPLETION 3
Jeff Johnson295189b2012-06-20 16:38:30 -0700142/* the Android framework expects this param even though we don't use it */
143#define BUF_LEN 20
Jeff Johnson76052702013-04-16 13:55:05 -0700144static char fwpath_buffer[BUF_LEN];
145static struct kparam_string fwpath = {
146 .string = fwpath_buffer,
147 .maxlen = BUF_LEN,
148};
Arif Hussain66559122013-11-21 10:11:40 -0800149
150static char *country_code;
151static int enable_11d = -1;
152static int enable_dfs_chan_scan = -1;
c_hpothu92367912014-05-01 15:18:17 +0530153static int gbcnMissRate = -1;
Arif Hussain66559122013-11-21 10:11:40 -0800154
Madan Mohan Koyyalamudi05f313c2012-09-18 19:19:15 -0700155#ifndef MODULE
Madan Mohan Koyyalamudidfd6aa82012-10-18 20:18:43 -0700156static int wlan_hdd_inited;
Madan Mohan Koyyalamudi05f313c2012-09-18 19:19:15 -0700157#endif
Jeff Johnson295189b2012-06-20 16:38:30 -0700158
Jeff Johnsone7245742012-09-05 17:12:55 -0700159/*
Jeff Johnson72a40512013-12-19 10:14:15 -0800160 * spinlock for synchronizing asynchronous request/response
161 * (full description of use in wlan_hdd_main.h)
162 */
163DEFINE_SPINLOCK(hdd_context_lock);
164
165/*
Jeff Johnsone7245742012-09-05 17:12:55 -0700166 * The rate at which the driver sends RESTART event to supplicant
167 * once the function 'vos_wlanRestart()' is called
168 *
169 */
170#define WLAN_HDD_RESTART_RETRY_DELAY_MS 5000 /* 5 second */
171#define WLAN_HDD_RESTART_RETRY_MAX_CNT 5 /* 5 retries */
Varun Reddy Yeturu6d99ac82013-05-08 14:15:35 -0700172
173/*
174 * Size of Driver command strings from upper layer
175 */
176#define SIZE_OF_SETROAMMODE 11 /* size of SETROAMMODE */
177#define SIZE_OF_GETROAMMODE 11 /* size of GETROAMMODE */
178
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -0800179#if defined(FEATURE_WLAN_ESE) && defined(FEATURE_WLAN_ESE_UPLOAD)
Srinivas Girigowda5cecb202013-10-08 09:13:25 -0700180#define TID_MIN_VALUE 0
181#define TID_MAX_VALUE 15
182static VOS_STATUS hdd_get_tsm_stats(hdd_adapter_t *pAdapter, const tANI_U8 tid,
183 tAniTrafStrmMetrics* pTsmMetrics);
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -0800184static VOS_STATUS hdd_parse_ese_beacon_req(tANI_U8 *pValue,
185 tCsrEseBeaconReq *pEseBcnReq);
186#endif /* FEATURE_WLAN_ESE && FEATURE_WLAN_ESE_UPLOAD */
Srinivas Girigowda5cecb202013-10-08 09:13:25 -0700187
Atul Mittal1d722422014-03-19 11:15:07 +0530188/*
189 * Maximum buffer size used for returning the data back to user space
190 */
191#define WLAN_MAX_BUF_SIZE 1024
192#define WLAN_PRIV_DATA_MAX_LEN 8192
Sudhir Sattayappa Kohalli37620692013-08-05 14:02:26 -0700193
c_hpothu92367912014-05-01 15:18:17 +0530194//wait time for beacon miss rate.
195#define BCN_MISS_RATE_TIME 500
196
Sameer Thalappil50dc0092013-02-19 17:23:33 -0800197#ifdef WLAN_OPEN_SOURCE
Jeff Johnson295189b2012-06-20 16:38:30 -0700198static struct wake_lock wlan_wake_lock;
Jeff Johnsone7245742012-09-05 17:12:55 -0700199#endif
Jeff Johnson295189b2012-06-20 16:38:30 -0700200/* set when SSR is needed after unload */
Madan Mohan Koyyalamudib5da5332012-10-15 17:23:21 -0700201static e_hdd_ssr_required isSsrRequired = HDD_SSR_NOT_REQUIRED;
Jeff Johnson295189b2012-06-20 16:38:30 -0700202
203//internal function declaration
Jeff Johnsone7245742012-09-05 17:12:55 -0700204static VOS_STATUS wlan_hdd_framework_restart(hdd_context_t *pHddCtx);
205static void wlan_hdd_restart_init(hdd_context_t *pHddCtx);
206static void wlan_hdd_restart_deinit(hdd_context_t *pHddCtx);
207void wlan_hdd_restart_timer_cb(v_PVOID_t usrDataForCallback);
Sameer Thalappil45931fb2013-02-01 11:18:05 -0800208void hdd_set_wlan_suspend_mode(bool suspend);
Jeff Johnsone7245742012-09-05 17:12:55 -0700209
Jeff Johnson295189b2012-06-20 16:38:30 -0700210v_U16_t hdd_select_queue(struct net_device *dev,
211 struct sk_buff *skb);
212
213#ifdef WLAN_FEATURE_PACKET_FILTERING
214static void hdd_set_multicast_list(struct net_device *dev);
215#endif
216
217void hdd_wlan_initial_scan(hdd_adapter_t *pAdapter);
218
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -0800219#if defined (WLAN_FEATURE_VOWIFI_11R) || defined (FEATURE_WLAN_ESE) || defined(FEATURE_WLAN_LFR)
Srinivas Girigowdade697412013-02-14 16:31:48 -0800220void hdd_getBand_helper(hdd_context_t *pHddCtx, int *pBand);
221static VOS_STATUS hdd_parse_channellist(tANI_U8 *pValue, tANI_U8 *pChannelList, tANI_U8 *pNumChannels);
Srinivas Girigowda100eb322013-03-15 16:48:20 -0700222static VOS_STATUS hdd_parse_send_action_frame_data(tANI_U8 *pValue, tANI_U8 *pTargetApBssid,
223 tANI_U8 *pChannel, tANI_U8 *pDwellTime,
224 tANI_U8 **pBuf, tANI_U8 *pBufLen);
Varun Reddy Yeturu920df212013-05-22 08:07:23 -0700225static VOS_STATUS hdd_parse_reassoc_command_data(tANI_U8 *pValue,
226 tANI_U8 *pTargetApBssid,
227 tANI_U8 *pChannel);
Srinivas Girigowdade697412013-02-14 16:31:48 -0800228#endif
Ratheesh S P21280412015-05-19 14:21:52 +0530229
230/* Store WLAN driver info in a global variable such that crash debugger
231 can extract it from driver debug symbol and crashdump for post processing */
232tANI_U8 g_wlan_driver[ ] = "pronto_driver";
233
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -0800234#if defined(FEATURE_WLAN_ESE) && defined(FEATURE_WLAN_ESE_UPLOAD)
Srinivas Girigowda5cecb202013-10-08 09:13:25 -0700235VOS_STATUS hdd_parse_get_cckm_ie(tANI_U8 *pValue, tANI_U8 **pCckmIe, tANI_U8 *pCckmIeLen);
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -0800236#endif /* FEATURE_WLAN_ESE && FEATURE_WLAN_ESE_UPLOAD */
Srinivas Girigowda5cecb202013-10-08 09:13:25 -0700237
Mihir Shetee1093ba2014-01-21 20:13:32 +0530238static VOS_STATUS wlan_hdd_init_channels(hdd_context_t *pHddCtx);
Sushant Kaushik8bc7df22014-04-09 17:55:29 +0530239const char * hdd_device_modetoString(v_U8_t device_mode)
240{
241 switch(device_mode)
242 {
243 CASE_RETURN_STRING( WLAN_HDD_INFRA_STATION );
244 CASE_RETURN_STRING( WLAN_HDD_SOFTAP );
245 CASE_RETURN_STRING( WLAN_HDD_P2P_CLIENT );
246 CASE_RETURN_STRING( WLAN_HDD_P2P_GO );
247 CASE_RETURN_STRING( WLAN_HDD_MONITOR);
248 CASE_RETURN_STRING( WLAN_HDD_FTM );
249 CASE_RETURN_STRING( WLAN_HDD_IBSS );
250 CASE_RETURN_STRING( WLAN_HDD_P2P_DEVICE );
251 default:
252 return "device_mode Unknown";
253 }
254}
Mihir Shetee1093ba2014-01-21 20:13:32 +0530255
Mukul Sharmaa78cf6b2015-02-24 16:59:01 +0530256static int __hdd_netdev_notifier_call(struct notifier_block * nb,
Jeff Johnson295189b2012-06-20 16:38:30 -0700257 unsigned long state,
258 void *ndev)
259{
260 struct net_device *dev = ndev;
Madan Mohan Koyyalamudi2a1ba772012-10-11 14:59:06 -0700261 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
Jeff Johnson27cee452013-03-27 11:10:24 -0700262 hdd_context_t *pHddCtx;
Jeff Johnson295189b2012-06-20 16:38:30 -0700263#ifdef WLAN_BTAMP_FEATURE
264 VOS_STATUS status;
Jeff Johnson295189b2012-06-20 16:38:30 -0700265#endif
Mahesh A Saptasagar2395ee62014-05-21 19:12:21 +0530266 long result;
Jeff Johnson295189b2012-06-20 16:38:30 -0700267
268 //Make sure that this callback corresponds to our device.
Jeff Johnson27cee452013-03-27 11:10:24 -0700269 if ((strncmp(dev->name, "wlan", 4)) &&
Amar Singhal4c723bd2013-03-25 18:14:15 -0700270 (strncmp(dev->name, "p2p", 3)))
271 return NOTIFY_DONE;
272
Jeff Johnson295189b2012-06-20 16:38:30 -0700273 if (!dev->ieee80211_ptr)
Jeff Johnson27cee452013-03-27 11:10:24 -0700274 return NOTIFY_DONE;
Jeff Johnson295189b2012-06-20 16:38:30 -0700275
Jeff Johnson27cee452013-03-27 11:10:24 -0700276 if (NULL == pAdapter)
Jeff Johnson295189b2012-06-20 16:38:30 -0700277 {
Jeff Johnsona8a1a482012-12-12 16:49:33 -0800278 hddLog(VOS_TRACE_LEVEL_FATAL,"%s: HDD Adapter Null Pointer", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -0700279 VOS_ASSERT(0);
280 return NOTIFY_DONE;
281 }
282
Jeff Johnson27cee452013-03-27 11:10:24 -0700283 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
284 if (NULL == pHddCtx)
285 {
286 hddLog(VOS_TRACE_LEVEL_FATAL,"%s: HDD Context Null Pointer", __func__);
287 VOS_ASSERT(0);
288 return NOTIFY_DONE;
289 }
Sameer Thalappil14067972014-01-23 14:54:54 -0800290 if (pHddCtx->isLogpInProgress)
291 return NOTIFY_DONE;
292
Jeff Johnson27cee452013-03-27 11:10:24 -0700293
294 hddLog(VOS_TRACE_LEVEL_INFO, "%s: %s New Net Device State = %lu",
295 __func__, dev->name, state);
Jeff Johnson295189b2012-06-20 16:38:30 -0700296
297 switch (state) {
298 case NETDEV_REGISTER:
299 break;
300
301 case NETDEV_UNREGISTER:
302 break;
303
304 case NETDEV_UP:
305 break;
306
307 case NETDEV_DOWN:
308 break;
309
310 case NETDEV_CHANGE:
Jeff Johnsone7245742012-09-05 17:12:55 -0700311 if(TRUE == pAdapter->isLinkUpSvcNeeded)
312 complete(&pAdapter->linkup_event_var);
Jeff Johnson295189b2012-06-20 16:38:30 -0700313 break;
314
315 case NETDEV_GOING_DOWN:
Mahesh A Saptasagar2395ee62014-05-21 19:12:21 +0530316 result = wlan_hdd_scan_abort(pAdapter);
Girish Gowli4bf7a632014-06-12 13:42:11 +0530317 if (result < 0)
Mahesh A Saptasagar2395ee62014-05-21 19:12:21 +0530318 {
319 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
320 "%s: Timeout occurred while waiting for abortscan %ld",
321 __func__, result);
Jeff Johnson295189b2012-06-20 16:38:30 -0700322 }
323 else
324 {
325 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Mahesh A Saptasagar2395ee62014-05-21 19:12:21 +0530326 "%s: Scan Abort Successful" , __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -0700327 }
328#ifdef WLAN_BTAMP_FEATURE
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -0700329 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,"%s: disabling AMP", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -0700330 status = WLANBAP_StopAmp();
331 if(VOS_STATUS_SUCCESS != status )
332 {
333 pHddCtx->isAmpAllowed = VOS_TRUE;
334 hddLog(VOS_TRACE_LEVEL_FATAL,
335 "%s: Failed to stop AMP", __func__);
336 }
337 else
338 {
339 //a state m/c implementation in PAL is TBD to avoid this delay
340 msleep(500);
Jeff Johnson04dd8a82012-06-29 20:41:40 -0700341 if ( pHddCtx->isAmpAllowed )
342 {
343 WLANBAP_DeregisterFromHCI();
344 pHddCtx->isAmpAllowed = VOS_FALSE;
345 }
Jeff Johnson295189b2012-06-20 16:38:30 -0700346 }
347#endif //WLAN_BTAMP_FEATURE
348 break;
349
350 default:
351 break;
352 }
353
354 return NOTIFY_DONE;
355}
356
Mukul Sharmaa78cf6b2015-02-24 16:59:01 +0530357static int hdd_netdev_notifier_call(struct notifier_block * nb,
358 unsigned long state,
359 void *ndev)
360{
361 int ret;
362 vos_ssr_protect(__func__);
363 ret = __hdd_netdev_notifier_call( nb, state, ndev);
364 vos_ssr_unprotect(__func__);
365 return ret;
366}
367
Jeff Johnson295189b2012-06-20 16:38:30 -0700368struct notifier_block hdd_netdev_notifier = {
369 .notifier_call = hdd_netdev_notifier_call,
370};
371
372/*---------------------------------------------------------------------------
373 * Function definitions
374 *-------------------------------------------------------------------------*/
Jeff Johnson295189b2012-06-20 16:38:30 -0700375void hdd_unregister_mcast_bcast_filter(hdd_context_t *pHddCtx);
376void hdd_register_mcast_bcast_filter(hdd_context_t *pHddCtx);
Jeff Johnson295189b2012-06-20 16:38:30 -0700377//variable to hold the insmod parameters
Madan Mohan Koyyalamudidfd6aa82012-10-18 20:18:43 -0700378static int con_mode;
Madan Mohan Koyyalamudi2331c8a2012-09-18 18:14:48 -0700379#ifndef MODULE
380/* current con_mode - used only for statically linked driver
381 * con_mode is changed by userspace to indicate a mode change which will
382 * result in calling the module exit and init functions. The module
383 * exit function will clean up based on the value of con_mode prior to it
384 * being changed by userspace. So curr_con_mode records the current con_mode
385 * for exit when con_mode becomes the next mode for init
386 */
Madan Mohan Koyyalamudidfd6aa82012-10-18 20:18:43 -0700387static int curr_con_mode;
Jeff Johnson295189b2012-06-20 16:38:30 -0700388#endif
389
Varun Reddy Yeturu587e6802013-01-24 12:21:41 -0800390/**---------------------------------------------------------------------------
391
392 \brief hdd_vos_trace_enable() - Configure initial VOS Trace enable
393
394 Called immediately after the cfg.ini is read in order to configure
395 the desired trace levels.
396
397 \param - moduleId - module whose trace level is being configured
398 \param - bitmask - bitmask of log levels to be enabled
399
400 \return - void
401
402 --------------------------------------------------------------------------*/
403static void hdd_vos_trace_enable(VOS_MODULE_ID moduleId, v_U32_t bitmask)
404{
405 wpt_tracelevel level;
406
407 /* if the bitmask is the default value, then a bitmask was not
408 specified in cfg.ini, so leave the logging level alone (it
409 will remain at the "compiled in" default value) */
410 if (CFG_VOS_TRACE_ENABLE_DEFAULT == bitmask)
411 {
412 return;
413 }
414
415 /* a mask was specified. start by disabling all logging */
416 vos_trace_setValue(moduleId, VOS_TRACE_LEVEL_NONE, 0);
417
418 /* now cycle through the bitmask until all "set" bits are serviced */
419 level = VOS_TRACE_LEVEL_FATAL;
420 while (0 != bitmask)
421 {
422 if (bitmask & 1)
423 {
424 vos_trace_setValue(moduleId, level, 1);
425 }
426 level++;
427 bitmask >>= 1;
428 }
429}
430
431
Jeff Johnson295189b2012-06-20 16:38:30 -0700432/**---------------------------------------------------------------------------
433
434 \brief hdd_wdi_trace_enable() - Configure initial WDI Trace enable
435
436 Called immediately after the cfg.ini is read in order to configure
437 the desired trace levels in the WDI.
438
439 \param - moduleId - module whose trace level is being configured
440 \param - bitmask - bitmask of log levels to be enabled
441
442 \return - void
443
444 --------------------------------------------------------------------------*/
445static void hdd_wdi_trace_enable(wpt_moduleid moduleId, v_U32_t bitmask)
446{
447 wpt_tracelevel level;
448
449 /* if the bitmask is the default value, then a bitmask was not
450 specified in cfg.ini, so leave the logging level alone (it
451 will remain at the "compiled in" default value) */
452 if (CFG_WDI_TRACE_ENABLE_DEFAULT == bitmask)
453 {
454 return;
455 }
456
457 /* a mask was specified. start by disabling all logging */
458 wpalTraceSetLevel(moduleId, eWLAN_PAL_TRACE_LEVEL_NONE, 0);
459
460 /* now cycle through the bitmask until all "set" bits are serviced */
461 level = eWLAN_PAL_TRACE_LEVEL_FATAL;
462 while (0 != bitmask)
463 {
464 if (bitmask & 1)
465 {
466 wpalTraceSetLevel(moduleId, level, 1);
467 }
468 level++;
469 bitmask >>= 1;
470 }
471}
Jeff Johnson295189b2012-06-20 16:38:30 -0700472
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +0530473/*
474 * FUNCTION: wlan_hdd_validate_context
475 * This function is used to check the HDD context
476 */
477int wlan_hdd_validate_context(hdd_context_t *pHddCtx)
478{
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +0530479
480 if (NULL == pHddCtx || NULL == pHddCtx->cfg_ini)
481 {
Mahesh A Saptasagar886997a2015-03-04 13:15:51 +0530482 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +0530483 "%s: HDD context is Null", __func__);
484 return -ENODEV;
485 }
486
487 if (pHddCtx->isLogpInProgress)
488 {
Mahesh A Saptasagar886997a2015-03-04 13:15:51 +0530489 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
c_hpothu8adb97b2014-12-08 19:38:20 +0530490 "%s: LOGP %s. Ignore!!", __func__,
491 vos_is_wlan_in_badState(VOS_MODULE_ID_HDD, NULL)
492 ?"failed":"in Progress");
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +0530493 return -EAGAIN;
494 }
495
Mihir Shete18156292014-03-11 15:38:30 +0530496 if (WLAN_HDD_IS_LOAD_UNLOAD_IN_PROGRESS(pHddCtx))
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +0530497 {
Mahesh A Saptasagar886997a2015-03-04 13:15:51 +0530498 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +0530499 "%s: Unloading/Loading in Progress. Ignore!!!", __func__);
500 return -EAGAIN;
501 }
502 return 0;
503}
Tushnim Bhattacharyya71ccecc2013-10-14 16:22:56 -0700504#ifdef CONFIG_ENABLE_LINUX_REG
505void hdd_checkandupdate_phymode( hdd_context_t *pHddCtx)
506{
507 hdd_adapter_t *pAdapter = NULL;
508 hdd_station_ctx_t *pHddStaCtx = NULL;
509 eCsrPhyMode phyMode;
510 hdd_config_t *cfg_param = NULL;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +0530511
Tushnim Bhattacharyya71ccecc2013-10-14 16:22:56 -0700512 if (NULL == pHddCtx)
513 {
514 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
515 "HDD Context is null !!");
516 return ;
517 }
518
519 pAdapter = hdd_get_adapter(pHddCtx, WLAN_HDD_INFRA_STATION);
520 if (NULL == pAdapter)
521 {
522 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
523 "pAdapter is null !!");
524 return ;
525 }
526
527 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
528 if (NULL == pHddStaCtx)
529 {
530 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
531 "pHddStaCtx is null !!");
532 return ;
533 }
534
535 cfg_param = pHddCtx->cfg_ini;
536 if (NULL == cfg_param)
537 {
538 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
539 "cfg_params not available !!");
540 return ;
541 }
542
543 phyMode = sme_GetPhyMode(WLAN_HDD_GET_HAL_CTX(pAdapter));
544
545 if (!pHddCtx->isVHT80Allowed)
546 {
547 if ((eCSR_DOT11_MODE_AUTO == phyMode) ||
548 (eCSR_DOT11_MODE_11ac == phyMode) ||
549 (eCSR_DOT11_MODE_11ac_ONLY == phyMode))
550 {
551 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
552 "Setting phymode to 11n!!");
553 sme_SetPhyMode(WLAN_HDD_GET_HAL_CTX(pAdapter), eCSR_DOT11_MODE_11n);
554 }
555 }
556 else
557 {
558 /*New country Supports 11ac as well resetting value back from .ini*/
559 sme_SetPhyMode(WLAN_HDD_GET_HAL_CTX(pAdapter),
560 hdd_cfg_xlate_to_csr_phy_mode(cfg_param->dot11Mode));
561 return ;
562 }
563
564 if ((eConnectionState_Associated == pHddStaCtx->conn_info.connState) &&
565 ((eCSR_CFG_DOT11_MODE_11AC_ONLY == pHddStaCtx->conn_info.dot11Mode) ||
566 (eCSR_CFG_DOT11_MODE_11AC == pHddStaCtx->conn_info.dot11Mode)))
567 {
568 VOS_STATUS vosStatus;
569
570 // need to issue a disconnect to CSR.
571 INIT_COMPLETION(pAdapter->disconnect_comp_var);
572 vosStatus = sme_RoamDisconnect(WLAN_HDD_GET_HAL_CTX(pAdapter),
573 pAdapter->sessionId,
574 eCSR_DISCONNECT_REASON_UNSPECIFIED );
575
576 if (VOS_STATUS_SUCCESS == vosStatus)
c_hpothu6ff1c3c2013-10-01 19:01:57 +0530577 {
578 long ret;
579
580 ret = wait_for_completion_interruptible_timeout(&pAdapter->disconnect_comp_var,
Tushnim Bhattacharyya71ccecc2013-10-14 16:22:56 -0700581 msecs_to_jiffies(WLAN_WAIT_TIME_DISCONNECT));
c_hpothu6ff1c3c2013-10-01 19:01:57 +0530582 if (0 >= ret)
583 hddLog(LOGE, FL("failure waiting for disconnect_comp_var %ld"),
584 ret);
585 }
Tushnim Bhattacharyya71ccecc2013-10-14 16:22:56 -0700586
587 }
588}
589#else
Gopichand Nakkaladacbcb52013-04-18 16:41:54 +0530590void hdd_checkandupdate_phymode( hdd_adapter_t *pAdapter, char *country_code)
591{
592 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
593 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
594 hdd_config_t *cfg_param;
595 eCsrPhyMode phyMode;
c_hpothu6ff1c3c2013-10-01 19:01:57 +0530596 long ret;
Gopichand Nakkaladacbcb52013-04-18 16:41:54 +0530597
598 if (NULL == pHddCtx)
599 {
600 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
601 "HDD Context is null !!");
602 return ;
603 }
604
605 cfg_param = pHddCtx->cfg_ini;
606
607 if (NULL == cfg_param)
608 {
609 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
610 "cfg_params not available !!");
611 return ;
612 }
613
614 phyMode = sme_GetPhyMode(WLAN_HDD_GET_HAL_CTX(pAdapter));
615
616 if (NULL != strstr(cfg_param->listOfNon11acCountryCode, country_code))
617 {
618 if ((eCSR_DOT11_MODE_AUTO == phyMode) ||
619 (eCSR_DOT11_MODE_11ac == phyMode) ||
620 (eCSR_DOT11_MODE_11ac_ONLY == phyMode))
621 {
622 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
623 "Setting phymode to 11n!!");
624 sme_SetPhyMode(WLAN_HDD_GET_HAL_CTX(pAdapter), eCSR_DOT11_MODE_11n);
625 }
626 }
627 else
628 {
629 /*New country Supports 11ac as well resetting value back from .ini*/
630 sme_SetPhyMode(WLAN_HDD_GET_HAL_CTX(pAdapter),
631 hdd_cfg_xlate_to_csr_phy_mode(cfg_param->dot11Mode));
632 return ;
633 }
634
635 if ((eConnectionState_Associated == pHddStaCtx->conn_info.connState) &&
636 ((eCSR_CFG_DOT11_MODE_11AC_ONLY == pHddStaCtx->conn_info.dot11Mode) ||
637 (eCSR_CFG_DOT11_MODE_11AC == pHddStaCtx->conn_info.dot11Mode)))
638 {
639 VOS_STATUS vosStatus;
640
641 // need to issue a disconnect to CSR.
642 INIT_COMPLETION(pAdapter->disconnect_comp_var);
643 vosStatus = sme_RoamDisconnect(WLAN_HDD_GET_HAL_CTX(pAdapter),
644 pAdapter->sessionId,
645 eCSR_DISCONNECT_REASON_UNSPECIFIED );
646
647 if (VOS_STATUS_SUCCESS == vosStatus)
c_hpothu6ff1c3c2013-10-01 19:01:57 +0530648 {
649 ret = wait_for_completion_interruptible_timeout(&pAdapter->disconnect_comp_var,
Gopichand Nakkaladacbcb52013-04-18 16:41:54 +0530650 msecs_to_jiffies(WLAN_WAIT_TIME_DISCONNECT));
c_hpothu6ff1c3c2013-10-01 19:01:57 +0530651 if (ret <= 0)
652 {
653 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
654 "wait on disconnect_comp_var is failed %ld", ret);
655 }
656 }
Gopichand Nakkaladacbcb52013-04-18 16:41:54 +0530657
658 }
659}
Tushnim Bhattacharyya71ccecc2013-10-14 16:22:56 -0700660#endif //CONFIG_ENABLE_LINUX_REG
Gopichand Nakkaladacbcb52013-04-18 16:41:54 +0530661
Tushnim Bhattacharyya9cdf6082013-04-21 16:33:30 -0700662void hdd_checkandupdate_dfssetting( hdd_adapter_t *pAdapter, char *country_code)
663{
664 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
665 hdd_config_t *cfg_param;
666
667 if (NULL == pHddCtx)
668 {
669 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
670 "HDD Context is null !!");
671 return ;
672 }
673
674 cfg_param = pHddCtx->cfg_ini;
675
676 if (NULL == cfg_param)
677 {
678 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
679 "cfg_params not available !!");
680 return ;
681 }
682
Agarwal Ashish738843c2014-09-25 12:27:56 +0530683 if (NULL != strstr(cfg_param->listOfNonDfsCountryCode, country_code) ||
684 pHddCtx->disable_dfs_flag == TRUE)
Tushnim Bhattacharyya9cdf6082013-04-21 16:33:30 -0700685 {
686 /*New country doesn't support DFS */
687 sme_UpdateDfsSetting(WLAN_HDD_GET_HAL_CTX(pAdapter), 0);
688 }
689 else
690 {
691 /*New country Supports DFS as well resetting value back from .ini*/
692 sme_UpdateDfsSetting(WLAN_HDD_GET_HAL_CTX(pAdapter), cfg_param->enableDFSChnlScan);
693 }
694
695}
696
Rajeev79dbe4c2013-10-05 11:03:42 +0530697#ifdef FEATURE_WLAN_BATCH_SCAN
698
699/**---------------------------------------------------------------------------
700
701 \brief hdd_extract_assigned_int_from_str() - Extracts assigned integer from
702 input string
703
704 This function extracts assigned integer from string in below format:
705 "STRING=10" : extracts integer 10 from this string
706
707 \param - pInPtr Pointer to input string
708 \param - base Base for string to int conversion(10 for decimal 16 for hex)
709 \param - pOutPtr Pointer to variable in which extracted integer needs to be
710 assigned
711 \param - pLastArg to tell whether it is last arguement in input string or
712 not
713
714 \return - NULL for failure cases
715 pointer to next arguement in input string for success cases
716 --------------------------------------------------------------------------*/
717static tANI_U8 *
718hdd_extract_assigned_int_from_str
719(
720 tANI_U8 *pInPtr,
721 tANI_U8 base,
722 tANI_U32 *pOutPtr,
723 tANI_U8 *pLastArg
724)
725{
726 int tempInt;
727 int v = 0;
728 char buf[32];
729 int val = 0;
730 *pLastArg = FALSE;
731
732 pInPtr = strnchr(pInPtr, strlen(pInPtr), EQUALS_TO_ASCII_VALUE);
733 if (NULL == pInPtr)
734 {
735 return NULL;
736 }
737
738 pInPtr++;
739
740 while ((SPACE_ASCII_VALUE == *pInPtr) && ('\0' != *pInPtr)) pInPtr++;
741
742 val = sscanf(pInPtr, "%32s ", buf);
743 if (val < 0 && val > strlen(pInPtr))
744 {
745 return NULL;
746 }
747 pInPtr += val;
748 v = kstrtos32(buf, base, &tempInt);
749 if (v < 0)
750 {
751 return NULL;
752 }
Rajeev Kumar4d93d842014-01-02 18:31:21 -0800753 if (tempInt < 0)
754 {
755 tempInt = 0;
756 }
Rajeev79dbe4c2013-10-05 11:03:42 +0530757 *pOutPtr = tempInt;
758
759 pInPtr = strnchr(pInPtr, strlen(pInPtr), SPACE_ASCII_VALUE);
760 if (NULL == pInPtr)
761 {
762 *pLastArg = TRUE;
763 return NULL;
764 }
765 while ((SPACE_ASCII_VALUE == *pInPtr) && ('\0' != *pInPtr)) pInPtr++;
766
767 return pInPtr;
768}
769
770/**---------------------------------------------------------------------------
771
772 \brief hdd_extract_assigned_char_from_str() - Extracts assigned char from
773 input string
774
775 This function extracts assigned character from string in below format:
776 "STRING=A" : extracts char 'A' from this string
777
778 \param - pInPtr Pointer to input string
779 \param - pOutPtr Pointer to variable in which extracted char needs to be
780 assigned
781 \param - pLastArg to tell whether it is last arguement in input string or
782 not
783
784 \return - NULL for failure cases
785 pointer to next arguement in input string for success cases
786 --------------------------------------------------------------------------*/
787static tANI_U8 *
788hdd_extract_assigned_char_from_str
789(
790 tANI_U8 *pInPtr,
791 tANI_U8 *pOutPtr,
792 tANI_U8 *pLastArg
793)
794{
795 *pLastArg = FALSE;
796
797 pInPtr = strnchr(pInPtr, strlen(pInPtr), EQUALS_TO_ASCII_VALUE);
798 if (NULL == pInPtr)
799 {
800 return NULL;
801 }
802
803 pInPtr++;
804
805 while ((SPACE_ASCII_VALUE == *pInPtr) && ('\0' != *pInPtr)) pInPtr++;
806
807 *pOutPtr = *pInPtr;
808
809 pInPtr = strnchr(pInPtr, strlen(pInPtr), SPACE_ASCII_VALUE);
810 if (NULL == pInPtr)
811 {
812 *pLastArg = TRUE;
813 return NULL;
814 }
815 while ((SPACE_ASCII_VALUE == *pInPtr) && ('\0' != *pInPtr)) pInPtr++;
816
817 return pInPtr;
818}
819
820
821/**---------------------------------------------------------------------------
822
823 \brief hdd_parse_set_batchscan_command () - HDD parse set batch scan command
824
825 This function parses set batch scan command in below format:
826 WLS_BATCHING_SET <space> followed by below arguements
827 "SCANFREQ=XX" : Optional defaults to 30 sec
828 "MSCAN=XX" : Required number of scans to attempt to batch
829 "BESTN=XX" : Best Network (RSSI) defaults to 16
830 "CHANNEL=<X,Y>" : optional defaults to all channels, can list 'A'or` B.
831 A. implies only 5 GHz , B. implies only 2.4GHz
832 "RTT=X" : optional defaults to 0
833 returns the MIN of MSCAN or the max # of scans firmware can cache or -1 on
834 error
835
836 For example input commands:
837 1) WLS_BATCHING_SET SCANFREQ=60 MSCAN=10 BESTN=20 CHANNEL=A RTT=0 -> This is
838 translated into set batch scan with following parameters:
839 a) Frequence 60 seconds
840 b) Batch 10 scans together
841 c) Best RSSI to be 20
842 d) 5GHz band only
843 e) RTT is equal to 0
844
845 \param - pValue Pointer to input channel list
846 \param - pHddSetBatchScanReq Pointer to HDD batch scan request structure
847
848 \return - 0 for success non-zero for failure
849
850 --------------------------------------------------------------------------*/
851static int
852hdd_parse_set_batchscan_command
853(
854 tANI_U8 *pValue,
855 tSirSetBatchScanReq *pHddSetBatchScanReq
856)
857{
858 tANI_U8 *inPtr = pValue;
859 tANI_U8 val = 0;
860 tANI_U8 lastArg = 0;
Rajeev Kumar45e64a72013-11-18 19:48:15 -0800861 tANI_U32 nScanFreq;
862 tANI_U32 nMscan;
863 tANI_U32 nBestN;
864 tANI_U8 ucRfBand;
865 tANI_U32 nRtt;
Rajeev Kumarc933d982013-11-18 20:04:20 -0800866 tANI_U32 temp;
Rajeev79dbe4c2013-10-05 11:03:42 +0530867
868 /*initialize default values*/
Rajeev Kumar45e64a72013-11-18 19:48:15 -0800869 nScanFreq = HDD_SET_BATCH_SCAN_DEFAULT_FREQ;
870 ucRfBand = HDD_SET_BATCH_SCAN_DEFAULT_BAND;
871 nRtt = 0;
872 nBestN = HDD_SET_BATCH_SCAN_BEST_NETWORK;
Rajeev79dbe4c2013-10-05 11:03:42 +0530873
874 /*go to space after WLS_BATCHING_SET command*/
875 inPtr = strnchr(pValue, strlen(pValue), SPACE_ASCII_VALUE);
876 /*no argument after the command*/
877 if (NULL == inPtr)
878 {
879 return -EINVAL;
880 }
881
882 /*no space after the command*/
883 else if (SPACE_ASCII_VALUE != *inPtr)
884 {
885 return -EINVAL;
886 }
887
888 /*removing empty spaces*/
889 while ((SPACE_ASCII_VALUE == *inPtr) && ('\0' != *inPtr)) inPtr++;
890
891 /*no argument followed by spaces*/
892 if ('\0' == *inPtr)
893 {
894 return -EINVAL;
895 }
896
897 /*check and parse SCANFREQ*/
898 if ((strncmp(inPtr, "SCANFREQ", 8) == 0))
899 {
900 inPtr = hdd_extract_assigned_int_from_str(inPtr, 10,
Rajeev Kumarc933d982013-11-18 20:04:20 -0800901 &temp, &lastArg);
Rajeev Kumar45e64a72013-11-18 19:48:15 -0800902
Rajeev Kumarc933d982013-11-18 20:04:20 -0800903 if (0 != temp)
Rajeev Kumar45e64a72013-11-18 19:48:15 -0800904 {
Rajeev Kumarc933d982013-11-18 20:04:20 -0800905 nScanFreq = temp;
Rajeev Kumar45e64a72013-11-18 19:48:15 -0800906 }
907
Rajeev79dbe4c2013-10-05 11:03:42 +0530908 if ( (NULL == inPtr) || (TRUE == lastArg))
909 {
910 return -EINVAL;
911 }
912 }
913
914 /*check and parse MSCAN*/
915 if ((strncmp(inPtr, "MSCAN", 5) == 0))
916 {
917 inPtr = hdd_extract_assigned_int_from_str(inPtr, 10,
Rajeev Kumar45e64a72013-11-18 19:48:15 -0800918 &nMscan, &lastArg);
919
920 if (0 == nMscan)
921 {
922 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
923 "invalid MSCAN=%d", nMscan);
924 return -EINVAL;
925 }
926
Rajeev79dbe4c2013-10-05 11:03:42 +0530927 if (TRUE == lastArg)
928 {
929 goto done;
930 }
931 else if (NULL == inPtr)
932 {
933 return -EINVAL;
934 }
935 }
936 else
937 {
938 return -EINVAL;
939 }
940
941 /*check and parse BESTN*/
942 if ((strncmp(inPtr, "BESTN", 5) == 0))
943 {
944 inPtr = hdd_extract_assigned_int_from_str(inPtr, 10,
Rajeev Kumarc933d982013-11-18 20:04:20 -0800945 &temp, &lastArg);
Rajeev Kumar45e64a72013-11-18 19:48:15 -0800946
Rajeev Kumarc933d982013-11-18 20:04:20 -0800947 if (0 != temp)
Rajeev Kumar45e64a72013-11-18 19:48:15 -0800948 {
Rajeev Kumarc933d982013-11-18 20:04:20 -0800949 nBestN = temp;
Rajeev Kumar45e64a72013-11-18 19:48:15 -0800950 }
951
Rajeev79dbe4c2013-10-05 11:03:42 +0530952 if (TRUE == lastArg)
953 {
954 goto done;
955 }
956 else if (NULL == inPtr)
957 {
958 return -EINVAL;
959 }
960 }
961
962 /*check and parse CHANNEL*/
963 if ((strncmp(inPtr, "CHANNEL", 7) == 0))
964 {
965 inPtr = hdd_extract_assigned_char_from_str(inPtr, &val, &lastArg);
Rajeev Kumarc933d982013-11-18 20:04:20 -0800966
Rajeev79dbe4c2013-10-05 11:03:42 +0530967 if (('A' == val) || ('a' == val))
968 {
c_hpothuebf89732014-02-25 13:00:24 +0530969 ucRfBand = HDD_SET_BATCH_SCAN_5GHz_BAND_ONLY;
Rajeev79dbe4c2013-10-05 11:03:42 +0530970 }
971 else if (('B' == val) || ('b' == val))
972 {
c_hpothuebf89732014-02-25 13:00:24 +0530973 ucRfBand = HDD_SET_BATCH_SCAN_24GHz_BAND_ONLY;
Rajeev79dbe4c2013-10-05 11:03:42 +0530974 }
975 else
976 {
Rajeev Kumarc933d982013-11-18 20:04:20 -0800977 ucRfBand = HDD_SET_BATCH_SCAN_DEFAULT_BAND;
978 }
979
980 if (TRUE == lastArg)
981 {
982 goto done;
983 }
984 else if (NULL == inPtr)
985 {
Rajeev79dbe4c2013-10-05 11:03:42 +0530986 return -EINVAL;
987 }
988 }
989
990 /*check and parse RTT*/
991 if ((strncmp(inPtr, "RTT", 3) == 0))
992 {
993 inPtr = hdd_extract_assigned_int_from_str(inPtr, 10,
Rajeev Kumar45e64a72013-11-18 19:48:15 -0800994 &nRtt, &lastArg);
Rajeev79dbe4c2013-10-05 11:03:42 +0530995 if (TRUE == lastArg)
996 {
997 goto done;
998 }
999 if (NULL == inPtr)
1000 {
1001 return -EINVAL;
1002 }
1003 }
1004
1005
1006done:
1007
Rajeev Kumar45e64a72013-11-18 19:48:15 -08001008 pHddSetBatchScanReq->scanFrequency = nScanFreq;
1009 pHddSetBatchScanReq->numberOfScansToBatch = nMscan;
1010 pHddSetBatchScanReq->bestNetwork = nBestN;
1011 pHddSetBatchScanReq->rfBand = ucRfBand;
1012 pHddSetBatchScanReq->rtt = nRtt;
1013
Rajeev79dbe4c2013-10-05 11:03:42 +05301014 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
1015 "Received WLS_BATCHING_SET with SCANFREQ=%d "
1016 "MSCAN=%d BESTN=%d CHANNEL=%d RTT=%d",
1017 pHddSetBatchScanReq->scanFrequency,
1018 pHddSetBatchScanReq->numberOfScansToBatch,
1019 pHddSetBatchScanReq->bestNetwork,
1020 pHddSetBatchScanReq->rfBand,
1021 pHddSetBatchScanReq->rtt);
1022
1023 return 0;
1024}/*End of hdd_parse_set_batchscan_command*/
1025
1026/**---------------------------------------------------------------------------
1027
1028 \brief hdd_set_batch_scan_req_callback () - This function is called after
1029 receiving set batch scan response from FW and it saves set batch scan
1030 response data FW to HDD context and sets the completion event on
1031 which hdd_ioctl is waiting
1032
1033 \param - callbackContext Pointer to HDD adapter
1034 \param - pRsp Pointer to set batch scan response data received from FW
1035
1036 \return - nothing
1037
1038 --------------------------------------------------------------------------*/
1039static void hdd_set_batch_scan_req_callback
1040(
1041 void *callbackContext,
1042 tSirSetBatchScanRsp *pRsp
1043)
1044{
1045 hdd_adapter_t* pAdapter = (hdd_adapter_t*)callbackContext;
1046 tSirSetBatchScanRsp *pHddSetBatchScanRsp;
1047
1048 /*sanity check*/
1049 if (WLAN_HDD_ADAPTER_MAGIC != pAdapter->magic)
1050 {
1051 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
1052 "%s: Invalid pAdapter magic", __func__);
1053 VOS_ASSERT(0);
1054 return;
1055 }
1056 pHddSetBatchScanRsp = &pAdapter->hddSetBatchScanRsp;
1057
1058 /*save set batch scan response*/
1059 pHddSetBatchScanRsp->nScansToBatch = pRsp->nScansToBatch;
1060
1061 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO_HIGH,
1062 "Received set batch scan rsp from FW with nScansToBatch=%d",
1063 pHddSetBatchScanRsp->nScansToBatch);
1064
1065 pAdapter->hdd_wait_for_set_batch_scan_rsp = FALSE;
1066 complete(&pAdapter->hdd_set_batch_scan_req_var);
1067
1068 return;
1069}/*End of hdd_set_batch_scan_req_callback*/
1070
1071
1072/**---------------------------------------------------------------------------
1073
1074 \brief hdd_populate_batch_scan_rsp_queue () - This function stores AP meta
1075 info in hdd batch scan response queue
1076
1077 \param - pAdapter Pointer to hdd adapter
1078 \param - pAPMetaInfo Pointer to access point meta info
1079 \param - scanId scan ID of batch scan response
1080 \param - isLastAp tells whether AP is last AP in batch scan response or not
1081
1082 \return - nothing
1083
1084 --------------------------------------------------------------------------*/
1085static void hdd_populate_batch_scan_rsp_queue( hdd_adapter_t* pAdapter,
1086 tpSirBatchScanNetworkInfo pApMetaInfo, tANI_U32 scanId, v_BOOL_t isLastAp)
1087{
1088 tHddBatchScanRsp *pHead;
1089 tHddBatchScanRsp *pNode;
1090 tHddBatchScanRsp *pPrev;
1091 tHddBatchScanRsp *pTemp;
1092 tANI_U8 ssidLen;
1093
1094 /*head of hdd batch scan response queue*/
1095 pHead = pAdapter->pBatchScanRsp;
1096
1097 pNode = (tHddBatchScanRsp *)vos_mem_malloc(sizeof(tHddBatchScanRsp));
1098 if (NULL == pNode)
1099 {
1100 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
1101 "%s: Could not allocate memory", __func__);
1102 VOS_ASSERT(0);
1103 return;
1104 }
1105
1106 vos_mem_copy(pNode->ApInfo.bssid, pApMetaInfo->bssid,
1107 sizeof(pNode->ApInfo.bssid));
1108 ssidLen = strlen(pApMetaInfo->ssid);
1109 if (SIR_MAX_SSID_SIZE < ssidLen)
1110 {
1111 /*invalid scan result*/
1112 vos_mem_free(pNode);
1113 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
1114 "%s: Invalid AP meta info ssidlen %d", __func__, ssidLen);
1115 return;
1116 }
1117 vos_mem_copy(pNode->ApInfo.ssid, pApMetaInfo->ssid, ssidLen);
1118 /*null terminate ssid*/
1119 pNode->ApInfo.ssid[ssidLen] = '\0';
1120 pNode->ApInfo.ch = pApMetaInfo->ch;
1121 pNode->ApInfo.rssi = pApMetaInfo->rssi;
1122 pNode->ApInfo.age = pApMetaInfo->timestamp;
1123 pNode->ApInfo.batchId = scanId;
1124 pNode->ApInfo.isLastAp = isLastAp;
1125
1126 pNode->pNext = NULL;
1127 if (NULL == pHead)
1128 {
1129 pAdapter->pBatchScanRsp = pNode;
1130 }
1131 else
1132 {
1133 pTemp = pHead;
1134 while (NULL != pTemp)
1135 {
1136 pPrev = pTemp;
1137 pTemp = pTemp->pNext;
1138 }
1139 pPrev->pNext = pNode;
1140 }
1141
1142 return;
1143}/*End of hdd_populate_batch_scan_rsp_queue*/
1144
1145/**---------------------------------------------------------------------------
1146
1147 \brief hdd_batch_scan_result_ind_callback () - This function is called after
1148 receiving batch scan response indication from FW. It saves get batch scan
1149 response data in HDD batch scan response queue. This callback sets the
1150 completion event on which hdd_ioctl is waiting only after getting complete
1151 batch scan response data from FW
1152
1153 \param - callbackContext Pointer to HDD adapter
1154 \param - pRsp Pointer to get batch scan response data received from FW
1155
1156 \return - nothing
1157
1158 --------------------------------------------------------------------------*/
1159static void hdd_batch_scan_result_ind_callback
1160(
1161 void *callbackContext,
1162 void *pRsp
1163)
1164{
1165 v_BOOL_t isLastAp;
1166 tANI_U32 numApMetaInfo;
Rajeev Kumarce651e42013-10-21 18:57:15 -07001167 tANI_U32 numNetworkInScanList;
Rajeev79dbe4c2013-10-05 11:03:42 +05301168 tANI_U32 numberScanList;
1169 tANI_U32 nextScanListOffset;
1170 tANI_U32 nextApMetaInfoOffset;
1171 hdd_adapter_t* pAdapter;
1172 tpSirBatchScanList pScanList;
1173 tpSirBatchScanNetworkInfo pApMetaInfo;
1174 tpSirBatchScanResultIndParam pBatchScanRsp;/*batch scan rsp data from FW*/
1175 tSirSetBatchScanReq *pReq;
1176
1177 pAdapter = (hdd_adapter_t *)callbackContext;
1178 /*sanity check*/
Rajeev Kumar5286bb92013-12-05 11:52:10 -08001179 if ((NULL == pAdapter) || (WLAN_HDD_ADAPTER_MAGIC != pAdapter->magic))
Rajeev79dbe4c2013-10-05 11:03:42 +05301180 {
1181 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
1182 "%s: Invalid pAdapter magic", __func__);
1183 VOS_ASSERT(0);
1184 return;
1185 }
1186
1187 /*initialize locals*/
1188 pReq = &pAdapter->hddSetBatchScanReq;
1189 pBatchScanRsp = (tpSirBatchScanResultIndParam)pRsp;
1190 isLastAp = FALSE;
1191 numApMetaInfo = 0;
Rajeev Kumarce651e42013-10-21 18:57:15 -07001192 numNetworkInScanList = 0;
Rajeev79dbe4c2013-10-05 11:03:42 +05301193 numberScanList = 0;
1194 nextScanListOffset = 0;
1195 nextApMetaInfoOffset = 0;
1196 pScanList = NULL;
1197 pApMetaInfo = NULL;
1198
1199 if ((NULL == pBatchScanRsp) || (NULL == pReq))
1200 {
1201 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
1202 "%s: pBatchScanRsp is %p pReq %p", __func__, pBatchScanRsp, pReq);
1203 isLastAp = TRUE;
1204 goto done;
1205 }
1206
1207 pAdapter->numScanList = numberScanList = pBatchScanRsp->numScanLists;
1208 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
1209 "Batch scan rsp: numberScalList %d", numberScanList);
1210
1211 if ((!numberScanList) || (numberScanList > pReq->numberOfScansToBatch))
1212 {
1213 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
1214 "%s: numberScanList %d", __func__, numberScanList);
1215 isLastAp = TRUE;
1216 goto done;
1217 }
1218
1219 while (numberScanList)
1220 {
Rajeev Kumarce651e42013-10-21 18:57:15 -07001221 pScanList = (tpSirBatchScanList)((tANI_U8 *)pBatchScanRsp->scanResults +
Rajeev79dbe4c2013-10-05 11:03:42 +05301222 nextScanListOffset);
1223 if (NULL == pScanList)
1224 {
1225 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
1226 "%s: pScanList is %p", __func__, pScanList);
1227 isLastAp = TRUE;
1228 goto done;
1229 }
Rajeev Kumarce651e42013-10-21 18:57:15 -07001230 numNetworkInScanList = numApMetaInfo = pScanList->numNetworksInScanList;
Rajeev79dbe4c2013-10-05 11:03:42 +05301231 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Rajeev Kumarce651e42013-10-21 18:57:15 -07001232 "Batch scan rsp: numApMetaInfo %d scanId %d",
1233 numApMetaInfo, pScanList->scanId);
Rajeev79dbe4c2013-10-05 11:03:42 +05301234
1235 if ((!numApMetaInfo) || (numApMetaInfo > pReq->bestNetwork))
1236 {
1237 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
1238 "%s: numApMetaInfo %d", __func__, numApMetaInfo);
1239 isLastAp = TRUE;
1240 goto done;
1241 }
1242
Rajeev Kumarce651e42013-10-21 18:57:15 -07001243 /*Initialize next AP meta info offset for next scan list*/
1244 nextApMetaInfoOffset = 0;
1245
Rajeev79dbe4c2013-10-05 11:03:42 +05301246 while (numApMetaInfo)
1247 {
1248 pApMetaInfo = (tpSirBatchScanNetworkInfo)(pScanList->scanList +
1249 nextApMetaInfoOffset);
1250 if (NULL == pApMetaInfo)
1251 {
1252 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
1253 "%s: pApMetaInfo is %p", __func__, pApMetaInfo);
1254 isLastAp = TRUE;
1255 goto done;
1256 }
1257 /*calculate AP age*/
1258 pApMetaInfo->timestamp =
1259 pBatchScanRsp->timestamp - pApMetaInfo->timestamp;
1260
1261 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO_HIGH,
Arif Hussaina7c8e412013-11-20 11:06:42 -08001262 "%s: bssId "MAC_ADDRESS_STR
1263 " ch %d rssi %d timestamp %d", __func__,
1264 MAC_ADDR_ARRAY(pApMetaInfo->bssid),
1265 pApMetaInfo->ch, pApMetaInfo->rssi,
1266 pApMetaInfo->timestamp);
Rajeev79dbe4c2013-10-05 11:03:42 +05301267
1268 /*mark last AP in batch scan response*/
1269 if ((TRUE == pBatchScanRsp->isLastResult) &&
1270 (1 == numberScanList) && (1 == numApMetaInfo))
1271 {
1272 isLastAp = TRUE;
1273 }
1274
1275 mutex_lock(&pAdapter->hdd_batch_scan_lock);
1276 /*store batch scan repsonse in hdd queue*/
1277 hdd_populate_batch_scan_rsp_queue(pAdapter, pApMetaInfo,
1278 pScanList->scanId, isLastAp);
1279 mutex_unlock(&pAdapter->hdd_batch_scan_lock);
1280
1281 nextApMetaInfoOffset += sizeof(tSirBatchScanNetworkInfo);
1282 numApMetaInfo--;
1283 }
1284
Rajeev Kumarce651e42013-10-21 18:57:15 -07001285 nextScanListOffset += ((sizeof(tSirBatchScanList) - sizeof(tANI_U8))
1286 + (sizeof(tSirBatchScanNetworkInfo)
1287 * numNetworkInScanList));
Rajeev79dbe4c2013-10-05 11:03:42 +05301288 numberScanList--;
1289 }
1290
1291done:
1292
1293 /*notify hdd_ioctl only if complete batch scan rsp is received and it was
1294 requested from hdd_ioctl*/
1295 if ((TRUE == pAdapter->hdd_wait_for_get_batch_scan_rsp) &&
1296 (TRUE == isLastAp))
1297 {
1298 pAdapter->hdd_wait_for_get_batch_scan_rsp = FALSE;
1299 complete(&pAdapter->hdd_get_batch_scan_req_var);
1300 }
1301
1302 return;
1303}/*End of hdd_batch_scan_result_ind_callback*/
1304
1305/**---------------------------------------------------------------------------
1306
1307 \brief hdd_format_batch_scan_rsp () - This function formats batch scan
1308 response as per batch scan FR request format by putting proper markers
1309
1310 \param - pDest pointer to destination buffer
1311 \param - cur_len current length
1312 \param - tot_len total remaining size which can be written to user space
1313 \param - pApMetaInfo Pointer to get batch scan response AP meta info
1314 \param - pAdapter Pointer to HDD adapter
1315
1316 \return - ret no of characters written
1317
1318 --------------------------------------------------------------------------*/
1319static tANI_U32
1320hdd_format_batch_scan_rsp
1321(
1322 tANI_U8 *pDest,
1323 tANI_U32 cur_len,
1324 tANI_U32 tot_len,
1325 tHddBatchScanRsp *pApMetaInfo,
1326 hdd_adapter_t* pAdapter
1327)
1328{
1329 tANI_U32 ret = 0;
1330 tANI_U32 rem_len = 0;
1331 tANI_U8 temp_len = 0;
1332 tANI_U8 temp_total_len = 0;
1333 tANI_U8 temp[HDD_BATCH_SCAN_AP_META_INFO_SIZE];
1334 tANI_U8 *pTemp = temp;
1335
1336 /*Batch scan reponse needs to be returned to user space in
1337 following format:
1338 "scancount=X\n" where X is the number of scans in current batch
1339 batch
1340 "trunc\n" optional present if current scan truncated
1341 "bssid=XX:XX:XX:XX:XX:XX\n"
1342 "ssid=XXXX\n"
1343 "freq=X\n" frequency in Mhz
1344 "level=XX\n"
1345 "age=X\n" ms
1346 "dist=X\n" cm (-1 if not available)
1347 "errror=X\n" (-1if not available)
1348 "====\n" (end of ap marker)
1349 "####\n" (end of scan marker)
1350 "----\n" (end of results)*/
1351 /*send scan result in above format to user space based on
1352 available length*/
1353 /*The GET response may have more data than the driver can return in its
1354 buffer. In that case the buffer should be filled to the nearest complete
1355 scan, ending with "%%%%".Subsequent callsshould return the remaining data
1356 starting with the next scan (optional .trunc\n., .apcount=X\n., etc).
1357 The final buffer should end with "----\n"*/
1358
1359 /*sanity*/
1360 if (cur_len > tot_len)
1361 {
1362 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
1363 "%s: invaid cur_len %d tot_len %d", __func__, cur_len, tot_len);
1364 return 0;
1365 }
1366 else
1367 {
1368 rem_len = (tot_len - cur_len);
1369 }
1370
1371 /*end scan marker*/
1372 if (pApMetaInfo->ApInfo.batchId != pAdapter->prev_batch_id)
1373 {
1374 temp_len = snprintf(pTemp, sizeof(temp), "####\n");
1375 pTemp += temp_len;
1376 temp_total_len += temp_len;
1377 }
1378
1379 /*bssid*/
1380 temp_len = snprintf(pTemp, sizeof(temp),
1381 "bssid=0x%x:0x%x:0x%x:0x%x:0x%x:0x%x\n",
1382 pApMetaInfo->ApInfo.bssid[0], pApMetaInfo->ApInfo.bssid[1],
1383 pApMetaInfo->ApInfo.bssid[2], pApMetaInfo->ApInfo.bssid[3],
1384 pApMetaInfo->ApInfo.bssid[4], pApMetaInfo->ApInfo.bssid[5]);
1385 pTemp += temp_len;
1386 temp_total_len += temp_len;
1387
1388 /*ssid*/
1389 temp_len = snprintf(pTemp, (sizeof(temp) - temp_total_len), "ssid=%s\n",
1390 pApMetaInfo->ApInfo.ssid);
1391 pTemp += temp_len;
1392 temp_total_len += temp_len;
1393
1394 /*freq*/
1395 temp_len = snprintf(pTemp, (sizeof(temp) - temp_total_len), "freq=%d\n",
Rajeev Kumarc40f7512013-11-04 14:13:23 -08001396 sme_ChnToFreq(pApMetaInfo->ApInfo.ch));
Rajeev79dbe4c2013-10-05 11:03:42 +05301397 pTemp += temp_len;
1398 temp_total_len += temp_len;
1399
1400 /*level*/
1401 temp_len = snprintf(pTemp, (sizeof(temp) - temp_total_len), "level=%d\n",
1402 pApMetaInfo->ApInfo.rssi);
1403 pTemp += temp_len;
1404 temp_total_len += temp_len;
1405
1406 /*age*/
Jeff Johnson02797792013-10-26 19:17:13 -07001407 temp_len = snprintf(pTemp, (sizeof(temp) - temp_total_len), "age=%d\n",
Rajeev79dbe4c2013-10-05 11:03:42 +05301408 pApMetaInfo->ApInfo.age);
1409 pTemp += temp_len;
1410 temp_total_len += temp_len;
1411
1412 /*dist*/
1413 temp_len = snprintf(pTemp, (sizeof(temp) - temp_total_len), "dist=-1\n");
1414 pTemp += temp_len;
1415 temp_total_len += temp_len;
1416
1417 /*error*/
1418 temp_len = snprintf(pTemp, (sizeof(temp) - temp_total_len), "error=-1\n");
1419 pTemp += temp_len;
1420 temp_total_len += temp_len;
1421
1422 /*end AP marker*/
1423 temp_len = snprintf(pTemp, (sizeof(temp) - temp_total_len), "====\n");
1424 pTemp += temp_len;
1425 temp_total_len += temp_len;
1426
1427 /*last AP in batch scan response*/
1428 if(TRUE == pApMetaInfo->ApInfo.isLastAp)
1429 {
1430 /*end scan marker*/
1431 temp_len = snprintf(pTemp, (sizeof(temp) - temp_total_len), "####\n");
1432 pTemp += temp_len;
1433 temp_total_len += temp_len;
1434
1435 /*end batch scan result marker*/
1436 temp_len = snprintf(pTemp, (sizeof(temp) - temp_total_len), "----\n");
1437 pTemp += temp_len;
1438 temp_total_len += temp_len;
Kiet Lamaa8e15a2014-02-11 23:30:06 -08001439
Rajeev79dbe4c2013-10-05 11:03:42 +05301440 }
1441
1442 if (temp_total_len < rem_len)
1443 {
1444 ret = temp_total_len + 1;
1445 strlcpy(pDest, temp, ret);
1446 pAdapter->isTruncated = FALSE;
1447 }
1448 else
1449 {
1450 pAdapter->isTruncated = TRUE;
1451 if (rem_len >= strlen("%%%%"))
1452 {
Rajeev Kumarc933d982013-11-18 20:04:20 -08001453 ret = snprintf(pDest, sizeof(temp), "%%%%");
Rajeev79dbe4c2013-10-05 11:03:42 +05301454 }
Rajeev Kumarc933d982013-11-18 20:04:20 -08001455 else
Rajeev79dbe4c2013-10-05 11:03:42 +05301456 {
1457 ret = 0;
1458 }
1459 }
1460
1461 return ret;
1462
1463}/*End of hdd_format_batch_scan_rsp*/
1464
1465/**---------------------------------------------------------------------------
1466
1467 \brief hdd_populate_user_batch_scan_rsp() - This function populates user data
1468 buffer starting with head of hdd batch scan response queue
1469
1470 \param - pAdapter Pointer to HDD adapter
1471 \param - pDest Pointer to user data buffer
1472 \param - cur_len current offset in user buffer
1473 \param - rem_len remaining no of bytes in user buffer
1474
1475 \return - number of bytes written in user buffer
1476
1477 --------------------------------------------------------------------------*/
1478
1479tANI_U32 hdd_populate_user_batch_scan_rsp
1480(
1481 hdd_adapter_t* pAdapter,
1482 tANI_U8 *pDest,
1483 tANI_U32 cur_len,
1484 tANI_U32 rem_len
1485)
1486{
1487 tHddBatchScanRsp *pHead;
1488 tHddBatchScanRsp *pPrev;
1489 tANI_U32 len;
1490
Rajeev79dbe4c2013-10-05 11:03:42 +05301491 pAdapter->isTruncated = FALSE;
1492
1493 /*head of hdd batch scan response queue*/
1494 pHead = pAdapter->pBatchScanRsp;
1495 while (pHead)
1496 {
1497 len = hdd_format_batch_scan_rsp(pDest, cur_len, rem_len, pHead,
1498 pAdapter);
1499 pDest += len;
Rajeev Kumar292d2bb2013-10-23 15:01:44 -07001500 pDest--;
Rajeev79dbe4c2013-10-05 11:03:42 +05301501 cur_len += len;
1502 if(TRUE == pAdapter->isTruncated)
1503 {
1504 /*result is truncated return rest of scan rsp in next req*/
1505 cur_len = rem_len;
1506 break;
1507 }
1508 pPrev = pHead;
1509 pHead = pHead->pNext;
1510 pAdapter->pBatchScanRsp = pHead;
Rajeev Kumarbe17d8b2014-01-10 15:39:45 -08001511 if (TRUE == pPrev->ApInfo.isLastAp)
1512 {
1513 pAdapter->prev_batch_id = 0;
1514 }
1515 else
1516 {
1517 pAdapter->prev_batch_id = pPrev->ApInfo.batchId;
1518 }
Rajeev79dbe4c2013-10-05 11:03:42 +05301519 vos_mem_free(pPrev);
Srinivas Girigowda8d2348f2013-12-12 12:14:15 -08001520 pPrev = NULL;
Rajeev79dbe4c2013-10-05 11:03:42 +05301521 }
1522
1523 return cur_len;
1524}/*End of hdd_populate_user_batch_scan_rsp*/
1525
1526/**---------------------------------------------------------------------------
1527
1528 \brief hdd_return_batch_scan_rsp_to_user () - This function returns batch
1529 scan response data from HDD queue to user space
1530 It does following in detail:
1531 a) if HDD has enough data in its queue then it 1st copies data to user
1532 space and then send get batch scan indication message to FW. In this
1533 case it does not wait on any event and batch scan response data will
1534 be populated in HDD response queue in MC thread context after receiving
1535 indication from FW
1536 b) else send get batch scan indication message to FW and wait on an event
1537 which will be set once HDD receives complete batch scan response from
1538 FW and then this function returns batch scan response to user space
1539
1540 \param - pAdapter Pointer to HDD adapter
1541 \param - pPrivData Pointer to priv_data
1542
1543 \return - 0 for success -EFAULT for failure
1544
1545 --------------------------------------------------------------------------*/
1546
1547int hdd_return_batch_scan_rsp_to_user
1548(
1549 hdd_adapter_t* pAdapter,
1550 hdd_priv_data_t *pPrivData,
1551 tANI_U8 *command
1552)
1553{
1554 tANI_U8 *pDest;
1555 tANI_U32 count = 0;
1556 tANI_U32 len = 0;
1557 tANI_U32 cur_len = 0;
1558 tANI_U32 rem_len = 0;
1559 eHalStatus halStatus;
1560 unsigned long rc;
1561 tSirTriggerBatchScanResultInd *pReq;
1562
1563 pReq = &pAdapter->hddTriggerBatchScanResultInd;
1564 pReq->param = 0;/*batch scan client*/
1565 pDest = (tANI_U8 *)(command + pPrivData->used_len);
1566 pAdapter->hdd_wait_for_get_batch_scan_rsp = FALSE;
1567
1568 cur_len = pPrivData->used_len;
1569 if (pPrivData->total_len > pPrivData->used_len)
1570 {
1571 rem_len = pPrivData->total_len - pPrivData->used_len;
1572 }
1573 else
1574 {
1575 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
1576 "%s: Invalid user data buffer total_len %d used_len %d",
1577 __func__, pPrivData->total_len, pPrivData->used_len);
1578 return -EFAULT;
1579 }
1580
1581 mutex_lock(&pAdapter->hdd_batch_scan_lock);
1582 len = hdd_populate_user_batch_scan_rsp(pAdapter, pDest,
1583 cur_len, rem_len);
1584 mutex_unlock(&pAdapter->hdd_batch_scan_lock);
1585
1586 /*enough scan result available in cache to return to user space or
1587 scan result needs to be fetched 1st from fw and then return*/
Rajeev Kumar99db6262013-11-11 15:23:36 -08001588 if (len == cur_len)
Rajeev79dbe4c2013-10-05 11:03:42 +05301589 {
1590 pAdapter->hdd_wait_for_get_batch_scan_rsp = TRUE;
1591 halStatus = sme_TriggerBatchScanResultInd(
1592 WLAN_HDD_GET_HAL_CTX(pAdapter), pReq,
1593 pAdapter->sessionId, hdd_batch_scan_result_ind_callback,
1594 pAdapter);
1595 if ( eHAL_STATUS_SUCCESS == halStatus )
1596 {
1597 if (TRUE == pAdapter->hdd_wait_for_get_batch_scan_rsp)
1598 {
1599 INIT_COMPLETION(pAdapter->hdd_get_batch_scan_req_var);
1600 rc = wait_for_completion_timeout(
1601 &pAdapter->hdd_get_batch_scan_req_var,
1602 msecs_to_jiffies(HDD_GET_BATCH_SCAN_RSP_TIME_OUT));
1603 if (0 == rc)
1604 {
1605 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
1606 "%s: Timeout waiting to fetch batch scan rsp from fw",
1607 __func__);
1608 return -EFAULT;
1609 }
1610 }
1611
1612 len = snprintf(pDest, HDD_BATCH_SCAN_AP_META_INFO_SIZE,
Jeff Johnson02797792013-10-26 19:17:13 -07001613 "scancount=%u\n", pAdapter->numScanList);
Rajeev79dbe4c2013-10-05 11:03:42 +05301614 pDest += len;
1615 cur_len += len;
1616
1617 mutex_lock(&pAdapter->hdd_batch_scan_lock);
1618 len = hdd_populate_user_batch_scan_rsp(pAdapter, pDest,
1619 cur_len, rem_len);
1620 mutex_unlock(&pAdapter->hdd_batch_scan_lock);
1621
1622 count = 0;
1623 len = (len - pPrivData->used_len);
1624 pDest = (command + pPrivData->used_len);
1625 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Rajeev Kumar99db6262013-11-11 15:23:36 -08001626 "NEW BATCH SCAN RESULT:");
Rajeev79dbe4c2013-10-05 11:03:42 +05301627 while(count < len)
1628 {
1629 printk("%c", *(pDest + count));
1630 count++;
1631 }
1632 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
1633 "%s: copy %d data to user buffer", __func__, len);
1634 if (copy_to_user(pPrivData->buf, pDest, len))
1635 {
1636 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
1637 "%s: failed to copy data to user buffer", __func__);
1638 return -EFAULT;
1639 }
1640 }
1641 else
1642 {
1643 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
1644 "sme_GetBatchScanScan returned failure halStatus %d",
1645 halStatus);
1646 return -EINVAL;
1647 }
1648 }
1649 else
1650 {
Rajeev79dbe4c2013-10-05 11:03:42 +05301651 count = 0;
1652 len = (len - pPrivData->used_len);
1653 pDest = (command + pPrivData->used_len);
1654 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Rajeev Kumar99db6262013-11-11 15:23:36 -08001655 "REMAINING TRUNCATED BATCH SCAN RESULT:");
Rajeev79dbe4c2013-10-05 11:03:42 +05301656 while(count < len)
1657 {
1658 printk("%c", *(pDest + count));
1659 count++;
1660 }
Rajeev Kumar99db6262013-11-11 15:23:36 -08001661 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
1662 "%s: copy %d data to user buffer", __func__, len);
Rajeev79dbe4c2013-10-05 11:03:42 +05301663 if (copy_to_user(pPrivData->buf, pDest, len))
1664 {
1665 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
1666 "%s: failed to copy data to user buffer", __func__);
1667 return -EFAULT;
1668 }
Rajeev79dbe4c2013-10-05 11:03:42 +05301669 }
1670
1671 return 0;
1672} /*End of hdd_return_batch_scan_rsp_to_user*/
1673
Rajeev Kumar8b373292014-01-08 20:36:55 -08001674
1675/**---------------------------------------------------------------------------
1676
1677 \brief hdd_handle_batch_scan_ioctl () - This function handles WLS_BATCHING
1678 IOCTLs from user space. Following BATCH SCAN DEV IOCTs are handled:
1679 WLS_BATCHING VERSION
1680 WLS_BATCHING SET
1681 WLS_BATCHING GET
1682 WLS_BATCHING STOP
1683
1684 \param - pAdapter Pointer to HDD adapter
1685 \param - pPrivdata Pointer to priv_data
1686 \param - command Pointer to command
1687
1688 \return - 0 for success -EFAULT for failure
1689
1690 --------------------------------------------------------------------------*/
1691
1692int hdd_handle_batch_scan_ioctl
1693(
1694 hdd_adapter_t *pAdapter,
1695 hdd_priv_data_t *pPrivdata,
1696 tANI_U8 *command
1697)
1698{
1699 int ret = 0;
Yue Mae36e3552014-03-05 17:06:20 -08001700 hdd_context_t *pHddCtx;
1701
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05301702 ENTER();
1703
Yue Mae36e3552014-03-05 17:06:20 -08001704 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
1705 ret = wlan_hdd_validate_context(pHddCtx);
1706 if (ret)
1707 {
Yue Mae36e3552014-03-05 17:06:20 -08001708 goto exit;
1709 }
Rajeev Kumar8b373292014-01-08 20:36:55 -08001710
1711 if (strncmp(command, "WLS_BATCHING VERSION", 20) == 0)
1712 {
1713 char extra[32];
1714 tANI_U8 len = 0;
1715 tANI_U8 version = HDD_BATCH_SCAN_VERSION;
1716
1717 if (FALSE == sme_IsFeatureSupportedByFW(BATCH_SCAN))
1718 {
1719 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
1720 "%s: Batch scan feature is not supported by FW", __func__);
1721 ret = -EINVAL;
1722 goto exit;
1723 }
1724
1725 len = scnprintf(extra, sizeof(extra), "WLS_BATCHING_VERSION %d",
1726 version);
1727 if (copy_to_user(pPrivdata->buf, &extra, len + 1))
1728 {
1729 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
1730 "%s: failed to copy data to user buffer", __func__);
1731 ret = -EFAULT;
1732 goto exit;
1733 }
1734 ret = HDD_BATCH_SCAN_VERSION;
1735 }
1736 else if (strncmp(command, "WLS_BATCHING SET", 16) == 0)
1737 {
1738 int status;
1739 tANI_U8 *value = (command + 16);
1740 eHalStatus halStatus;
1741 unsigned long rc;
1742 tSirSetBatchScanReq *pReq = &pAdapter->hddSetBatchScanReq;
1743 tSirSetBatchScanRsp *pRsp = &pAdapter->hddSetBatchScanRsp;
1744
1745 if (FALSE == sme_IsFeatureSupportedByFW(BATCH_SCAN))
1746 {
1747 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
1748 "%s: Batch scan feature is not supported by FW", __func__);
1749 ret = -EINVAL;
1750 goto exit;
1751 }
1752
1753 if ((WLAN_HDD_INFRA_STATION != pAdapter->device_mode) &&
1754 (WLAN_HDD_P2P_CLIENT != pAdapter->device_mode) &&
1755 (WLAN_HDD_P2P_GO != pAdapter->device_mode) &&
1756 (WLAN_HDD_P2P_DEVICE != pAdapter->device_mode))
1757 {
1758 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Sushant Kaushik8bc7df22014-04-09 17:55:29 +05301759 "Received WLS_BATCHING SET command in invalid mode %s (%d) "
Rajeev Kumar8b373292014-01-08 20:36:55 -08001760 "WLS_BATCHING_SET is only allowed in infra STA/P2P client mode",
Sushant Kaushik8bc7df22014-04-09 17:55:29 +05301761 hdd_device_modetoString(pAdapter->device_mode),
1762 pAdapter->device_mode);
Rajeev Kumar8b373292014-01-08 20:36:55 -08001763 ret = -EINVAL;
1764 goto exit;
1765 }
1766
1767 status = hdd_parse_set_batchscan_command(value, pReq);
1768 if (status)
1769 {
1770 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
1771 "Invalid WLS_BATCHING SET command");
1772 ret = -EINVAL;
1773 goto exit;
1774 }
1775
1776
1777 pAdapter->hdd_wait_for_set_batch_scan_rsp = TRUE;
1778 halStatus = sme_SetBatchScanReq(WLAN_HDD_GET_HAL_CTX(pAdapter), pReq,
1779 pAdapter->sessionId, hdd_set_batch_scan_req_callback,
1780 pAdapter);
1781
1782 if ( eHAL_STATUS_SUCCESS == halStatus )
1783 {
Mahesh A Saptasagar5f568172014-05-14 17:02:33 +05301784 char extra[32];
1785 tANI_U8 len = 0;
1786 tANI_U8 mScan = 0;
1787
Rajeev Kumar8b373292014-01-08 20:36:55 -08001788 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
1789 "sme_SetBatchScanReq returned success halStatus %d",
1790 halStatus);
1791 if (TRUE == pAdapter->hdd_wait_for_set_batch_scan_rsp)
1792 {
1793 INIT_COMPLETION(pAdapter->hdd_set_batch_scan_req_var);
1794 rc = wait_for_completion_timeout(
1795 &pAdapter->hdd_set_batch_scan_req_var,
1796 msecs_to_jiffies(HDD_SET_BATCH_SCAN_REQ_TIME_OUT));
1797 if (0 == rc)
1798 {
1799 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
1800 "%s: Timeout waiting for set batch scan to complete",
1801 __func__);
1802 ret = -EINVAL;
1803 goto exit;
1804 }
1805 }
1806 if ( !pRsp->nScansToBatch )
1807 {
1808 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
1809 "%s: Received set batch scan failure response from FW",
1810 __func__);
1811 ret = -EINVAL;
1812 goto exit;
1813 }
1814 /*As per the Batch Scan Framework API we should return the MIN of
1815 either MSCAN or the max # of scans firmware can cache*/
Mahesh A Saptasagar5f568172014-05-14 17:02:33 +05301816 mScan = MIN(pReq->numberOfScansToBatch , pRsp->nScansToBatch);
Rajeev Kumar8b373292014-01-08 20:36:55 -08001817
1818 pAdapter->batchScanState = eHDD_BATCH_SCAN_STATE_STARTED;
1819
1820 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
1821 "%s: request MSCAN %d response MSCAN %d ret %d",
Mahesh A Saptasagar5f568172014-05-14 17:02:33 +05301822 __func__, pReq->numberOfScansToBatch, pRsp->nScansToBatch, mScan);
1823 len = scnprintf(extra, sizeof(extra), "%d", mScan);
1824 if (copy_to_user(pPrivdata->buf, &extra, len + 1))
1825 {
1826 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
1827 "%s: failed to copy MSCAN value to user buffer", __func__);
1828 ret = -EFAULT;
1829 goto exit;
1830 }
Rajeev Kumar8b373292014-01-08 20:36:55 -08001831 }
1832 else
1833 {
1834 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
1835 "sme_SetBatchScanReq returned failure halStatus %d",
1836 halStatus);
1837 ret = -EINVAL;
1838 goto exit;
1839 }
1840 }
1841 else if (strncmp(command, "WLS_BATCHING STOP", 17) == 0)
1842 {
1843 eHalStatus halStatus;
1844 tSirStopBatchScanInd *pInd = &pAdapter->hddStopBatchScanInd;
1845 pInd->param = 0;
1846
1847 if (FALSE == sme_IsFeatureSupportedByFW(BATCH_SCAN))
1848 {
1849 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
1850 "%s: Batch scan feature is not supported by FW", __func__);
1851 ret = -EINVAL;
1852 goto exit;
1853 }
1854
1855 if (eHDD_BATCH_SCAN_STATE_STARTED != pAdapter->batchScanState)
1856 {
Deepthi Gowribfd17132014-11-14 17:59:04 +05301857 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_WARN,
Rajeev Kumar8b373292014-01-08 20:36:55 -08001858 "Batch scan is not yet enabled batch scan state %d",
1859 pAdapter->batchScanState);
1860 ret = -EINVAL;
1861 goto exit;
1862 }
1863
Kiet Lamaa8e15a2014-02-11 23:30:06 -08001864 mutex_lock(&pAdapter->hdd_batch_scan_lock);
1865 hdd_deinit_batch_scan(pAdapter);
1866 mutex_unlock(&pAdapter->hdd_batch_scan_lock);
1867
Rajeev Kumar8b373292014-01-08 20:36:55 -08001868 pAdapter->batchScanState = eHDD_BATCH_SCAN_STATE_STOPPED;
1869
1870 halStatus = sme_StopBatchScanInd(WLAN_HDD_GET_HAL_CTX(pAdapter), pInd,
1871 pAdapter->sessionId);
1872 if ( eHAL_STATUS_SUCCESS == halStatus )
1873 {
1874 ret = 0;
1875 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
1876 "sme_StopBatchScanInd returned success halStatus %d",
1877 halStatus);
1878 }
1879 else
1880 {
1881 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
1882 "sme_StopBatchScanInd returned failure halStatus %d",
1883 halStatus);
1884 ret = -EINVAL;
1885 goto exit;
1886 }
1887 }
1888 else if (strncmp(command, "WLS_BATCHING GET", 16) == 0)
1889 {
1890 tANI_U32 remain_len;
1891
1892 if (FALSE == sme_IsFeatureSupportedByFW(BATCH_SCAN))
1893 {
1894 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
1895 "%s: Batch scan feature is not supported by FW", __func__);
1896 ret = -EINVAL;
1897 goto exit;
1898 }
1899
1900 if (eHDD_BATCH_SCAN_STATE_STARTED != pAdapter->batchScanState)
1901 {
Deepthi Gowribfd17132014-11-14 17:59:04 +05301902 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_WARN,
Rajeev Kumar8b373292014-01-08 20:36:55 -08001903 "Batch scan is not yet enabled could not return results"
1904 "Batch Scan state %d",
1905 pAdapter->batchScanState);
1906 ret = -EINVAL;
1907 goto exit;
1908 }
1909
1910 pPrivdata->used_len = 16;
1911 remain_len = pPrivdata->total_len - pPrivdata->used_len;
1912 if (remain_len < pPrivdata->total_len)
1913 {
1914 /*Clear previous batch scan response data if any*/
1915 vos_mem_zero((tANI_U8 *)(command + pPrivdata->used_len), remain_len);
1916 }
1917 else
1918 {
1919 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
1920 "Invalid total length from user space can't fetch batch"
1921 " scan response total_len %d used_len %d remain len %d",
1922 pPrivdata->total_len, pPrivdata->used_len, remain_len);
1923 ret = -EINVAL;
1924 goto exit;
1925 }
1926 ret = hdd_return_batch_scan_rsp_to_user(pAdapter, pPrivdata, command);
1927 }
1928
1929exit:
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05301930 EXIT();
Rajeev Kumar8b373292014-01-08 20:36:55 -08001931 return ret;
1932}
1933
1934
Rajeev79dbe4c2013-10-05 11:03:42 +05301935#endif/*End of FEATURE_WLAN_BATCH_SCAN*/
1936
c_hpothu92367912014-05-01 15:18:17 +05301937static void getBcnMissRateCB(VOS_STATUS status, int bcnMissRate, void *data)
1938{
c_hpothu39eb1e32014-06-26 16:31:50 +05301939 bcnMissRateContext_t *pCBCtx;
1940
1941 if (NULL == data)
1942 {
1943 hddLog(VOS_TRACE_LEVEL_ERROR, FL("argument data is NULL"));
1944 return;
1945 }
c_hpothu92367912014-05-01 15:18:17 +05301946
1947 /* there is a race condition that exists between this callback
1948 function and the caller since the caller could time out either
1949 before or while this code is executing. we use a spinlock to
1950 serialize these actions */
1951 spin_lock(&hdd_context_lock);
1952
c_hpothu39eb1e32014-06-26 16:31:50 +05301953 pCBCtx = (bcnMissRateContext_t *)data;
c_hpothu92367912014-05-01 15:18:17 +05301954 gbcnMissRate = -1;
1955
c_hpothu39eb1e32014-06-26 16:31:50 +05301956 if (pCBCtx->magic != BCN_MISS_RATE_CONTEXT_MAGIC)
c_hpothu92367912014-05-01 15:18:17 +05301957 {
1958 hddLog(VOS_TRACE_LEVEL_ERROR,
c_hpothu39eb1e32014-06-26 16:31:50 +05301959 FL("invalid context magic: %08x"), pCBCtx->magic);
c_hpothu92367912014-05-01 15:18:17 +05301960 spin_unlock(&hdd_context_lock);
1961 return ;
1962 }
1963
1964 if (VOS_STATUS_SUCCESS == status)
1965 {
c_hpothu39eb1e32014-06-26 16:31:50 +05301966 gbcnMissRate = bcnMissRate;
c_hpothu92367912014-05-01 15:18:17 +05301967 }
c_hpothu39eb1e32014-06-26 16:31:50 +05301968 else
1969 {
1970 hddLog(VOS_TRACE_LEVEL_ERROR, FL("failed to get bcnMissRate"));
1971 }
1972
c_hpothu92367912014-05-01 15:18:17 +05301973 complete(&(pCBCtx->completion));
1974 spin_unlock(&hdd_context_lock);
1975
1976 return;
1977}
1978
Abhishek Singh08aa7762014-12-16 13:59:03 +05301979void hdd_FWStatisCB( VOS_STATUS status,
1980 tSirFwStatsResult *fwStatsResult, void *pContext )
Satyanarayana Dash72806012014-12-02 14:30:08 +05301981{
1982 fwStatsContext_t *fwStatsCtx;
Satyanarayana Dash72806012014-12-02 14:30:08 +05301983 hdd_adapter_t *pAdapter;
1984
1985 hddLog(VOS_TRACE_LEVEL_INFO, FL(" with status = %d"),status);
1986
Abhishek Singh08aa7762014-12-16 13:59:03 +05301987 if (NULL == pContext)
Satyanarayana Dash72806012014-12-02 14:30:08 +05301988 {
1989 hddLog(VOS_TRACE_LEVEL_ERROR, FL("argument data is NULL"));
1990 return;
1991 }
1992 /* there is a race condition that exists between this callback
1993 function and the caller since the caller could time out either
1994 before or while this code is executing. we use a spinlock to
1995 serialize these actions */
1996 spin_lock(&hdd_context_lock);
Abhishek Singh08aa7762014-12-16 13:59:03 +05301997 fwStatsCtx = (fwStatsContext_t *) pContext;
Satyanarayana Dash72806012014-12-02 14:30:08 +05301998 if (fwStatsCtx->magic != FW_STATS_CONTEXT_MAGIC)
1999 {
2000 hddLog(VOS_TRACE_LEVEL_ERROR,
2001 FL("invalid context magic: %08x"), fwStatsCtx->magic);
2002 spin_unlock(&hdd_context_lock);
2003 return;
2004 }
2005 pAdapter = fwStatsCtx->pAdapter;
2006 if ((NULL == pAdapter) || (WLAN_HDD_ADAPTER_MAGIC != pAdapter->magic))
2007 {
2008 hddLog(VOS_TRACE_LEVEL_ERROR,
2009 FL("pAdapter returned is NULL or invalid"));
2010 spin_unlock(&hdd_context_lock);
2011 return;
2012 }
2013 pAdapter->fwStatsRsp.type = 0;
Abhishek Singh08aa7762014-12-16 13:59:03 +05302014 if ((VOS_STATUS_SUCCESS == status) && (NULL != fwStatsResult))
Satyanarayana Dash72806012014-12-02 14:30:08 +05302015 {
Satyanarayana Dash72806012014-12-02 14:30:08 +05302016 switch( fwStatsResult->type )
2017 {
2018 case FW_UBSP_STATS:
2019 {
Abhishek Singh08aa7762014-12-16 13:59:03 +05302020 memcpy(&pAdapter->fwStatsRsp,fwStatsResult,sizeof(tSirFwStatsResult));
Satyanarayana Dash72806012014-12-02 14:30:08 +05302021 hddLog(VOS_TRACE_LEVEL_INFO,
2022 FL("ubsp_enter_cnt = %d ubsp_jump_ddr_cnt = %d"),
Abhishek Singh08aa7762014-12-16 13:59:03 +05302023 pAdapter->fwStatsRsp.fwStatsData.ubspStats.ubsp_enter_cnt,
2024 pAdapter->fwStatsRsp.fwStatsData.ubspStats.ubsp_jump_ddr_cnt);
Satyanarayana Dash72806012014-12-02 14:30:08 +05302025 }
2026 break;
2027 default:
2028 {
2029 hddLog(VOS_TRACE_LEVEL_ERROR,
2030 FL(" No handling for stats type %d"),fwStatsResult->type);
2031 }
2032 }
2033 }
2034 complete(&(fwStatsCtx->completion));
2035 spin_unlock(&hdd_context_lock);
2036 return;
2037}
2038
Rajesh Babu Prathipatic7baf6f2014-05-30 10:08:16 +05302039static int hdd_get_dwell_time(hdd_config_t *pCfg, tANI_U8 *command, char *extra, tANI_U8 n, tANI_U8 *len)
2040{
2041 int ret = 0;
2042
2043 if (!pCfg || !command || !extra || !len)
2044 {
2045 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2046 "%s: argument passsed for GETDWELLTIME is incorrect", __func__);
2047 ret = -EINVAL;
2048 return ret;
2049 }
2050
2051 if (strncmp(command, "GETDWELLTIME ACTIVE MAX", 23) == 0)
2052 {
2053 *len = scnprintf(extra, n, "GETDWELLTIME ACTIVE MAX %u\n",
2054 (int)pCfg->nActiveMaxChnTime);
2055 return ret;
2056 }
2057 else if (strncmp(command, "GETDWELLTIME ACTIVE MIN", 23) == 0)
2058 {
2059 *len = scnprintf(extra, n, "GETDWELLTIME ACTIVE MIN %u\n",
2060 (int)pCfg->nActiveMinChnTime);
2061 return ret;
2062 }
2063 else if (strncmp(command, "GETDWELLTIME PASSIVE MAX", 24) == 0)
2064 {
2065 *len = scnprintf(extra, n, "GETDWELLTIME PASSIVE MAX %u\n",
2066 (int)pCfg->nPassiveMaxChnTime);
2067 return ret;
2068 }
2069 else if (strncmp(command, "GETDWELLTIME PASSIVE MIN", 24) == 0)
2070 {
2071 *len = scnprintf(extra, n, "GETDWELLTIME PASSIVE MIN %u\n",
2072 (int)pCfg->nPassiveMinChnTime);
2073 return ret;
2074 }
Rajesh Babu Prathipati0fd227e2014-07-05 12:50:00 +05302075 else if (strncmp(command, "GETDWELLTIME", 12) == 0)
2076 {
2077 *len = scnprintf(extra, n, "GETDWELLTIME %u \n",
2078 (int)pCfg->nActiveMaxChnTime);
2079 return ret;
2080 }
Rajesh Babu Prathipatic7baf6f2014-05-30 10:08:16 +05302081 else
2082 {
2083 ret = -EINVAL;
2084 }
2085
2086 return ret;
2087}
2088
2089static int hdd_set_dwell_time(hdd_adapter_t *pAdapter, tANI_U8 *command)
2090{
Rajesh Babu Prathipatib09815c2014-07-05 11:22:24 +05302091 tHalHandle hHal;
Rajesh Babu Prathipatic7baf6f2014-05-30 10:08:16 +05302092 hdd_config_t *pCfg;
2093 tANI_U8 *value = command;
2094 int val = 0, ret = 0, temp = 0;
Rajesh Babu Prathipatib09815c2014-07-05 11:22:24 +05302095 tSmeConfigParams smeConfig;
Rajesh Babu Prathipatic7baf6f2014-05-30 10:08:16 +05302096
Rajesh Babu Prathipatib09815c2014-07-05 11:22:24 +05302097 if (!pAdapter || !command || !(pCfg = (WLAN_HDD_GET_CTX(pAdapter))->cfg_ini)
2098 || !(hHal = (WLAN_HDD_GET_HAL_CTX(pAdapter))))
Rajesh Babu Prathipatic7baf6f2014-05-30 10:08:16 +05302099 {
2100 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2101 "%s: argument passed for SETDWELLTIME is incorrect", __func__);
2102 ret = -EINVAL;
2103 return ret;
2104 }
2105
Rajesh Babu Prathipatib09815c2014-07-05 11:22:24 +05302106 vos_mem_zero(&smeConfig, sizeof(smeConfig));
2107 sme_GetConfigParam(hHal, &smeConfig);
2108
Rajesh Babu Prathipatic7baf6f2014-05-30 10:08:16 +05302109 if (strncmp(command, "SETDWELLTIME ACTIVE MAX", 23) == 0 )
2110 {
2111 value = value + 24;
2112 temp = kstrtou32(value, 10, &val);
2113 if (temp != 0 || val < CFG_ACTIVE_MAX_CHANNEL_TIME_MIN ||
2114 val > CFG_ACTIVE_MAX_CHANNEL_TIME_MAX )
2115 {
2116 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2117 "%s: argument passed for SETDWELLTIME ACTIVE MAX is incorrect", __func__);
2118 ret = -EFAULT;
2119 return ret;
2120 }
2121 pCfg->nActiveMaxChnTime = val;
Rajesh Babu Prathipatib09815c2014-07-05 11:22:24 +05302122 smeConfig.csrConfig.nActiveMaxChnTime = val;
2123 sme_UpdateConfig(hHal, &smeConfig);
Rajesh Babu Prathipatic7baf6f2014-05-30 10:08:16 +05302124 }
2125 else if (strncmp(command, "SETDWELLTIME ACTIVE MIN", 23) == 0)
2126 {
2127 value = value + 24;
2128 temp = kstrtou32(value, 10, &val);
2129 if (temp !=0 || val < CFG_ACTIVE_MIN_CHANNEL_TIME_MIN ||
2130 val > CFG_ACTIVE_MIN_CHANNEL_TIME_MAX )
2131 {
2132 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2133 "%s: argument passsed for SETDWELLTIME ACTIVE MIN is incorrect", __func__);
2134 ret = -EFAULT;
2135 return ret;
2136 }
2137 pCfg->nActiveMinChnTime = val;
Rajesh Babu Prathipatib09815c2014-07-05 11:22:24 +05302138 smeConfig.csrConfig.nActiveMinChnTime = val;
2139 sme_UpdateConfig(hHal, &smeConfig);
Rajesh Babu Prathipatic7baf6f2014-05-30 10:08:16 +05302140 }
2141 else if (strncmp(command, "SETDWELLTIME PASSIVE MAX", 24) == 0)
2142 {
2143 value = value + 25;
2144 temp = kstrtou32(value, 10, &val);
2145 if (temp != 0 || val < CFG_PASSIVE_MAX_CHANNEL_TIME_MIN ||
2146 val > CFG_PASSIVE_MAX_CHANNEL_TIME_MAX )
2147 {
2148 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2149 "%s: argument passed for SETDWELLTIME PASSIVE MAX is incorrect", __func__);
2150 ret = -EFAULT;
2151 return ret;
2152 }
2153 pCfg->nPassiveMaxChnTime = val;
Rajesh Babu Prathipatib09815c2014-07-05 11:22:24 +05302154 smeConfig.csrConfig.nPassiveMaxChnTime = val;
2155 sme_UpdateConfig(hHal, &smeConfig);
Rajesh Babu Prathipatic7baf6f2014-05-30 10:08:16 +05302156 }
2157 else if (strncmp(command, "SETDWELLTIME PASSIVE MIN", 24) == 0)
2158 {
2159 value = value + 25;
2160 temp = kstrtou32(value, 10, &val);
2161 if (temp != 0 || val < CFG_PASSIVE_MIN_CHANNEL_TIME_MIN ||
2162 val > CFG_PASSIVE_MIN_CHANNEL_TIME_MAX )
2163 {
2164 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2165 "%s: argument passed for SETDWELLTIME PASSIVE MIN is incorrect", __func__);
2166 ret = -EFAULT;
2167 return ret;
2168 }
2169 pCfg->nPassiveMinChnTime = val;
Rajesh Babu Prathipatib09815c2014-07-05 11:22:24 +05302170 smeConfig.csrConfig.nPassiveMinChnTime = val;
2171 sme_UpdateConfig(hHal, &smeConfig);
Rajesh Babu Prathipatic7baf6f2014-05-30 10:08:16 +05302172 }
Rajesh Babu Prathipati0fd227e2014-07-05 12:50:00 +05302173 else if (strncmp(command, "SETDWELLTIME", 12) == 0)
2174 {
2175 value = value + 13;
2176 temp = kstrtou32(value, 10, &val);
2177 if (temp != 0 || val < CFG_ACTIVE_MAX_CHANNEL_TIME_MIN ||
2178 val > CFG_ACTIVE_MAX_CHANNEL_TIME_MAX )
2179 {
2180 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2181 "%s: argument passed for SETDWELLTIME is incorrect", __func__);
2182 ret = -EFAULT;
2183 return ret;
2184 }
2185 pCfg->nActiveMaxChnTime = val;
2186 smeConfig.csrConfig.nActiveMaxChnTime = val;
2187 sme_UpdateConfig(hHal, &smeConfig);
2188 }
Rajesh Babu Prathipatic7baf6f2014-05-30 10:08:16 +05302189 else
2190 {
2191 ret = -EINVAL;
2192 }
2193
2194 return ret;
2195}
2196
Jeff Johnsond6e7b3f2014-03-20 12:12:11 -07002197static int hdd_driver_command(hdd_adapter_t *pAdapter,
2198 hdd_priv_data_t *ppriv_data)
Jeff Johnson295189b2012-06-20 16:38:30 -07002199{
Jeff Johnson295189b2012-06-20 16:38:30 -07002200 hdd_priv_data_t priv_data;
2201 tANI_U8 *command = NULL;
Kaushik, Sushant96122442014-10-21 16:40:18 +05302202 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
2203 hdd_scaninfo_t *pScanInfo = NULL;
Jeff Johnsond6e7b3f2014-03-20 12:12:11 -07002204 int ret = 0;
Kaushik, Sushant96122442014-10-21 16:40:18 +05302205 int status;
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05302206
2207 ENTER();
Jeff Johnsond6e7b3f2014-03-20 12:12:11 -07002208 /*
2209 * Note that valid pointers are provided by caller
2210 */
Jeff Johnson295189b2012-06-20 16:38:30 -07002211
Jeff Johnsond6e7b3f2014-03-20 12:12:11 -07002212 /* copy to local struct to avoid numerous changes to legacy code */
2213 priv_data = *ppriv_data;
Jeff Johnson295189b2012-06-20 16:38:30 -07002214
Jeff Johnsond6e7b3f2014-03-20 12:12:11 -07002215 if (priv_data.total_len <= 0 ||
2216 priv_data.total_len > WLAN_PRIV_DATA_MAX_LEN)
Sameer Thalappil8ef3a0e2013-04-05 14:36:04 -07002217 {
Jeff Johnsond6e7b3f2014-03-20 12:12:11 -07002218 hddLog(VOS_TRACE_LEVEL_WARN,
2219 "%s:invalid priv_data.total_len(%d)!!!", __func__,
2220 priv_data.total_len);
Srinivas Girigowda0c69aee2013-10-09 17:21:01 -07002221 ret = -EINVAL;
2222 goto exit;
2223 }
Kaushik, Sushant96122442014-10-21 16:40:18 +05302224 status = wlan_hdd_validate_context(pHddCtx);
2225 if (0 != status)
2226 {
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05302227 ret = -EINVAL;
2228 goto exit;
Kaushik, Sushant96122442014-10-21 16:40:18 +05302229 }
Srinivas Girigowda0c69aee2013-10-09 17:21:01 -07002230 /* Allocate +1 for '\0' */
2231 command = kmalloc(priv_data.total_len + 1, GFP_KERNEL);
Jeff Johnson295189b2012-06-20 16:38:30 -07002232 if (!command)
2233 {
Jeff Johnsond6e7b3f2014-03-20 12:12:11 -07002234 hddLog(VOS_TRACE_LEVEL_ERROR,
2235 "%s: failed to allocate memory", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07002236 ret = -ENOMEM;
2237 goto exit;
2238 }
2239
2240 if (copy_from_user(command, priv_data.buf, priv_data.total_len))
2241 {
2242 ret = -EFAULT;
2243 goto exit;
2244 }
2245
Jeff Johnsond6e7b3f2014-03-20 12:12:11 -07002246 /* Make sure the command is NUL-terminated */
Srinivas Girigowda0c69aee2013-10-09 17:21:01 -07002247 command[priv_data.total_len] = '\0';
2248
Jeff Johnsond6e7b3f2014-03-20 12:12:11 -07002249 /* at one time the following block of code was conditional. braces
2250 * have been retained to avoid re-indenting the legacy code
2251 */
Jeff Johnson295189b2012-06-20 16:38:30 -07002252 {
2253 hdd_context_t *pHddCtx = (hdd_context_t*)pAdapter->pHddCtx;
2254
2255 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Madan Mohan Koyyalamudif9bdd4e2012-10-30 18:05:03 -07002256 "%s: Received %s cmd from Wi-Fi GUI***", __func__, command);
Jeff Johnson295189b2012-06-20 16:38:30 -07002257
2258 if (strncmp(command, "P2P_DEV_ADDR", 12) == 0 )
2259 {
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05302260 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
2261 TRACE_CODE_HDD_P2P_DEV_ADDR_IOCTL,
2262 pAdapter->sessionId, (unsigned)
2263 (*(pHddCtx->p2pDeviceAddress.bytes+2)<<24 |
2264 *(pHddCtx->p2pDeviceAddress.bytes+3)<<16 |
2265 *(pHddCtx->p2pDeviceAddress.bytes+4)<<8 |
2266 *(pHddCtx->p2pDeviceAddress.bytes+5))));
Jeff Johnson295189b2012-06-20 16:38:30 -07002267 if (copy_to_user(priv_data.buf, pHddCtx->p2pDeviceAddress.bytes,
2268 sizeof(tSirMacAddr)))
2269 {
2270 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
Arif Hussain6d2a3322013-11-17 19:50:10 -08002271 "%s: failed to copy data to user buffer", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07002272 ret = -EFAULT;
2273 }
2274 }
Amar Singhal0974e402013-02-12 14:27:46 -08002275 else if(strncmp(command, "SETBAND", 7) == 0)
Jeff Johnson295189b2012-06-20 16:38:30 -07002276 {
Amar Singhal0974e402013-02-12 14:27:46 -08002277 tANI_U8 *ptr = command ;
Srinivas Girigowdade697412013-02-14 16:31:48 -08002278
Jeff Johnson295189b2012-06-20 16:38:30 -07002279 /* Change band request received */
Srinivas Girigowdade697412013-02-14 16:31:48 -08002280
2281 /* First 8 bytes will have "SETBAND " and
Jeff Johnson295189b2012-06-20 16:38:30 -07002282 * 9 byte will have band setting value */
Madan Mohan Koyyalamudi8bdd3112012-09-24 13:55:14 -07002283 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Amar Singhal0974e402013-02-12 14:27:46 -08002284 "%s: SetBandCommand Info comm %s UL %d, TL %d", __func__, command, priv_data.used_len, priv_data.total_len);
Jeff Johnson295189b2012-06-20 16:38:30 -07002285 /* Change band request received */
Jeff Johnsond6e7b3f2014-03-20 12:12:11 -07002286 ret = hdd_setBand_helper(pAdapter->dev, ptr);
Abhishek Singh2ec36ab2014-08-07 16:14:25 +05302287 if(ret < 0)
c_hpothu6ff1c3c2013-10-01 19:01:57 +05302288 VOS_TRACE( VOS_MODULE_ID_VOSS, VOS_TRACE_LEVEL_ERROR,
Jeff Johnsond6e7b3f2014-03-20 12:12:11 -07002289 "%s: failed to set band ret=%d", __func__, ret);
Srinivas Girigowdade697412013-02-14 16:31:48 -08002290 }
Kiet Lamf040f472013-11-20 21:15:23 +05302291 else if(strncmp(command, "SETWMMPS", 8) == 0)
2292 {
2293 tANI_U8 *ptr = command;
2294 ret = hdd_wmmps_helper(pAdapter, ptr);
2295 }
Agarwal Ashishef54a182014-12-16 15:07:31 +05302296
2297 else if(strncmp(command, "TDLSSCAN", 8) == 0)
2298 {
2299 tANI_U8 *ptr = command;
2300 ret = hdd_set_tdls_scan_type(pAdapter, ptr);
2301 }
2302
Jeff Johnson32d95a32012-09-10 13:15:23 -07002303 else if ( strncasecmp(command, "COUNTRY", 7) == 0 )
2304 {
2305 char *country_code;
2306
2307 country_code = command + 8;
Tushnim Bhattacharyya9cdf6082013-04-21 16:33:30 -07002308
Sameer Thalappilda4eb6a2013-09-25 11:45:07 -07002309 INIT_COMPLETION(pAdapter->change_country_code);
Tushnim Bhattacharyya9cdf6082013-04-21 16:33:30 -07002310 hdd_checkandupdate_dfssetting(pAdapter, country_code);
Tushnim Bhattacharyya71ccecc2013-10-14 16:22:56 -07002311#ifndef CONFIG_ENABLE_LINUX_REG
Gopichand Nakkaladacbcb52013-04-18 16:41:54 +05302312 hdd_checkandupdate_phymode(pAdapter, country_code);
Tushnim Bhattacharyya71ccecc2013-10-14 16:22:56 -07002313#endif
Sameer Thalappilda4eb6a2013-09-25 11:45:07 -07002314 ret = (int)sme_ChangeCountryCode(pHddCtx->hHal,
2315 (void *)(tSmeChangeCountryCallback)
2316 wlan_hdd_change_country_code_callback,
Abhishek Singha306a442013-11-07 18:39:01 +05302317 country_code, pAdapter, pHddCtx->pvosContext, eSIR_TRUE, eSIR_TRUE);
Sameer Thalappilda4eb6a2013-09-25 11:45:07 -07002318 if (eHAL_STATUS_SUCCESS == ret)
2319 {
2320 ret = wait_for_completion_interruptible_timeout(
2321 &pAdapter->change_country_code,
2322 msecs_to_jiffies(WLAN_WAIT_TIME_COUNTRY));
2323 if (0 >= ret)
2324 {
Jeff Johnsond6e7b3f2014-03-20 12:12:11 -07002325 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: SME while setting country code timed out %d",
c_hpothu6ff1c3c2013-10-01 19:01:57 +05302326 __func__, ret);
Sameer Thalappilda4eb6a2013-09-25 11:45:07 -07002327 }
2328 }
2329 else
Jeff Johnson32d95a32012-09-10 13:15:23 -07002330 {
2331 VOS_TRACE( VOS_MODULE_ID_VOSS, VOS_TRACE_LEVEL_FATAL,
Jeff Johnsond6e7b3f2014-03-20 12:12:11 -07002332 "%s: SME Change Country code fail ret=%d", __func__, ret);
Sameer Thalappilda4eb6a2013-09-25 11:45:07 -07002333 ret = -EINVAL;
Jeff Johnson32d95a32012-09-10 13:15:23 -07002334 }
Sameer Thalappilda4eb6a2013-09-25 11:45:07 -07002335
Madan Mohan Koyyalamudi1bed5982012-10-22 14:38:06 -07002336 }
2337 /*
2338 command should be a string having format
2339 SET_SAP_CHANNEL_LIST <num of channels> <the channels seperated by spaces>
2340 */
Amar Singhal0974e402013-02-12 14:27:46 -08002341 else if(strncmp(command, "SET_SAP_CHANNEL_LIST", 20) == 0)
Madan Mohan Koyyalamudi1bed5982012-10-22 14:38:06 -07002342 {
Amar Singhal0974e402013-02-12 14:27:46 -08002343 tANI_U8 *ptr = command;
Madan Mohan Koyyalamudi1bed5982012-10-22 14:38:06 -07002344
2345 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07002346 " Received Command to Set Preferred Channels for SAP in %s", __func__);
Madan Mohan Koyyalamudi1bed5982012-10-22 14:38:06 -07002347
Mahesh Kumar Kalikot Veetil2aad8d82013-02-07 12:31:28 -08002348 ret = sapSetPreferredChannel(ptr);
Jeff Johnson32d95a32012-09-10 13:15:23 -07002349 }
Sameer Thalappil45931fb2013-02-01 11:18:05 -08002350 else if(strncmp(command, "SETSUSPENDMODE", 14) == 0)
2351 {
2352 int suspend = 0;
2353 tANI_U8 *ptr = (tANI_U8*)command + 15;
2354
2355 suspend = *ptr - '0';
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05302356 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
2357 TRACE_CODE_HDD_SETSUSPENDMODE_IOCTL,
2358 pAdapter->sessionId, suspend));
Sameer Thalappil45931fb2013-02-01 11:18:05 -08002359 hdd_set_wlan_suspend_mode(suspend);
2360 }
Srinivas Girigowdade697412013-02-14 16:31:48 -08002361#ifdef WLAN_FEATURE_NEIGHBOR_ROAMING
2362 else if (strncmp(command, "SETROAMTRIGGER", 14) == 0)
2363 {
2364 tANI_U8 *value = command;
Srinivas Girigowdacb4c6412013-07-02 10:19:12 -07002365 tANI_S8 rssi = 0;
Srinivas Girigowdade697412013-02-14 16:31:48 -08002366 tANI_U8 lookUpThreshold = CFG_NEIGHBOR_LOOKUP_RSSI_THRESHOLD_DEFAULT;
2367 eHalStatus status = eHAL_STATUS_SUCCESS;
2368
2369 /* Move pointer to ahead of SETROAMTRIGGER<delimiter> */
2370 value = value + 15;
2371
Srinivas Girigowdacb4c6412013-07-02 10:19:12 -07002372 /* Convert the value from ascii to integer */
2373 ret = kstrtos8(value, 10, &rssi);
2374 if (ret < 0)
2375 {
2376 /* If the input value is greater than max value of datatype, then also
2377 kstrtou8 fails */
2378 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2379 "%s: kstrtou8 failed Input value may be out of range[%d - %d]",
Srinivas Girigowdafa7157d2013-10-31 10:14:22 -07002380 __func__,
Srinivas Girigowdacb4c6412013-07-02 10:19:12 -07002381 CFG_NEIGHBOR_LOOKUP_RSSI_THRESHOLD_MIN,
2382 CFG_NEIGHBOR_LOOKUP_RSSI_THRESHOLD_MAX);
2383 ret = -EINVAL;
2384 goto exit;
2385 }
2386
Srinivas Girigowdade697412013-02-14 16:31:48 -08002387 lookUpThreshold = abs(rssi);
Srinivas Girigowdacb4c6412013-07-02 10:19:12 -07002388
Srinivas Girigowdade697412013-02-14 16:31:48 -08002389 if ((lookUpThreshold < CFG_NEIGHBOR_LOOKUP_RSSI_THRESHOLD_MIN) ||
2390 (lookUpThreshold > CFG_NEIGHBOR_LOOKUP_RSSI_THRESHOLD_MAX))
2391 {
2392 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2393 "Neighbor lookup threshold value %d is out of range"
2394 " (Min: %d Max: %d)", lookUpThreshold,
2395 CFG_NEIGHBOR_LOOKUP_RSSI_THRESHOLD_MIN,
2396 CFG_NEIGHBOR_LOOKUP_RSSI_THRESHOLD_MAX);
2397 ret = -EINVAL;
2398 goto exit;
2399 }
2400
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05302401 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
2402 TRACE_CODE_HDD_SETROAMTRIGGER_IOCTL,
2403 pAdapter->sessionId, lookUpThreshold));
Srinivas Girigowdade697412013-02-14 16:31:48 -08002404 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
2405 "%s: Received Command to Set Roam trigger"
2406 " (Neighbor lookup threshold) = %d", __func__, lookUpThreshold);
2407
2408 pHddCtx->cfg_ini->nNeighborLookupRssiThreshold = lookUpThreshold;
2409 status = sme_setNeighborLookupRssiThreshold((tHalHandle)(pHddCtx->hHal), lookUpThreshold);
2410 if (eHAL_STATUS_SUCCESS != status)
2411 {
2412 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2413 "%s: Failed to set roam trigger, try again", __func__);
2414 ret = -EPERM;
2415 goto exit;
2416 }
2417
2418 /* Set Reassoc threshold to (lookup rssi threshold + 5 dBm) */
mukul sharmad6e1fdd2014-06-23 19:19:09 +05302419 pHddCtx->cfg_ini->nNeighborReassocRssiThreshold = lookUpThreshold + 5;
Srinivas Girigowdade697412013-02-14 16:31:48 -08002420 sme_setNeighborReassocRssiThreshold((tHalHandle)(pHddCtx->hHal), lookUpThreshold + 5);
2421 }
2422 else if (strncmp(command, "GETROAMTRIGGER", 14) == 0)
2423 {
2424 tANI_U8 lookUpThreshold = sme_getNeighborLookupRssiThreshold((tHalHandle)(pHddCtx->hHal));
2425 int rssi = (-1) * lookUpThreshold;
2426 char extra[32];
2427 tANI_U8 len = 0;
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05302428 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
2429 TRACE_CODE_HDD_GETROAMTRIGGER_IOCTL,
2430 pAdapter->sessionId, lookUpThreshold));
Sameer Thalappilb0a30232013-09-27 15:37:48 -07002431 len = scnprintf(extra, sizeof(extra), "%s %d", command, rssi);
Srinivas Girigowdade697412013-02-14 16:31:48 -08002432 if (copy_to_user(priv_data.buf, &extra, len + 1))
2433 {
2434 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2435 "%s: failed to copy data to user buffer", __func__);
2436 ret = -EFAULT;
2437 goto exit;
2438 }
2439 }
2440 else if (strncmp(command, "SETROAMSCANPERIOD", 17) == 0)
2441 {
2442 tANI_U8 *value = command;
Srinivas Girigowdacb4c6412013-07-02 10:19:12 -07002443 tANI_U8 roamScanPeriod = 0;
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07002444 tANI_U16 neighborEmptyScanRefreshPeriod = CFG_EMPTY_SCAN_REFRESH_PERIOD_DEFAULT;
Srinivas Girigowdacb4c6412013-07-02 10:19:12 -07002445
Srinivas Girigowdade697412013-02-14 16:31:48 -08002446 /* input refresh period is in terms of seconds */
2447 /* Move pointer to ahead of SETROAMSCANPERIOD<delimiter> */
2448 value = value + 18;
2449 /* Convert the value from ascii to integer */
Srinivas Girigowdacb4c6412013-07-02 10:19:12 -07002450 ret = kstrtou8(value, 10, &roamScanPeriod);
Srinivas Girigowdade697412013-02-14 16:31:48 -08002451 if (ret < 0)
2452 {
2453 /* If the input value is greater than max value of datatype, then also
Srinivas Girigowdacb4c6412013-07-02 10:19:12 -07002454 kstrtou8 fails */
Srinivas Girigowdade697412013-02-14 16:31:48 -08002455 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Srinivas Girigowdacb4c6412013-07-02 10:19:12 -07002456 "%s: kstrtou8 failed Input value may be out of range[%d - %d]",
Srinivas Girigowdade697412013-02-14 16:31:48 -08002457 __func__,
Srinivas Girigowdab8edd1e2013-03-19 11:42:08 -07002458 (CFG_EMPTY_SCAN_REFRESH_PERIOD_MIN/1000),
2459 (CFG_EMPTY_SCAN_REFRESH_PERIOD_MAX/1000));
Srinivas Girigowdade697412013-02-14 16:31:48 -08002460 ret = -EINVAL;
2461 goto exit;
2462 }
2463
Srinivas Girigowdacb4c6412013-07-02 10:19:12 -07002464 if ((roamScanPeriod < (CFG_EMPTY_SCAN_REFRESH_PERIOD_MIN/1000)) ||
2465 (roamScanPeriod > (CFG_EMPTY_SCAN_REFRESH_PERIOD_MAX/1000)))
Srinivas Girigowdade697412013-02-14 16:31:48 -08002466 {
2467 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Srinivas Girigowdacb4c6412013-07-02 10:19:12 -07002468 "Roam scan period value %d is out of range"
2469 " (Min: %d Max: %d)", roamScanPeriod,
Srinivas Girigowdab8edd1e2013-03-19 11:42:08 -07002470 (CFG_EMPTY_SCAN_REFRESH_PERIOD_MIN/1000),
2471 (CFG_EMPTY_SCAN_REFRESH_PERIOD_MAX/1000));
Srinivas Girigowdade697412013-02-14 16:31:48 -08002472 ret = -EINVAL;
2473 goto exit;
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05302474 }
2475 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
2476 TRACE_CODE_HDD_SETROAMSCANPERIOD_IOCTL,
2477 pAdapter->sessionId, roamScanPeriod));
Srinivas Girigowdacb4c6412013-07-02 10:19:12 -07002478 neighborEmptyScanRefreshPeriod = roamScanPeriod * 1000;
Srinivas Girigowdade697412013-02-14 16:31:48 -08002479
2480 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
2481 "%s: Received Command to Set roam scan period"
Srinivas Girigowdacb4c6412013-07-02 10:19:12 -07002482 " (Empty Scan refresh period) = %d", __func__, roamScanPeriod);
Srinivas Girigowdade697412013-02-14 16:31:48 -08002483
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07002484 pHddCtx->cfg_ini->nEmptyScanRefreshPeriod = neighborEmptyScanRefreshPeriod;
2485 sme_UpdateEmptyScanRefreshPeriod((tHalHandle)(pHddCtx->hHal), neighborEmptyScanRefreshPeriod);
Srinivas Girigowdade697412013-02-14 16:31:48 -08002486 }
2487 else if (strncmp(command, "GETROAMSCANPERIOD", 17) == 0)
2488 {
2489 tANI_U16 nEmptyScanRefreshPeriod = sme_getEmptyScanRefreshPeriod((tHalHandle)(pHddCtx->hHal));
2490 char extra[32];
2491 tANI_U8 len = 0;
2492
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05302493 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
2494 TRACE_CODE_HDD_GETROAMSCANPERIOD_IOCTL,
2495 pAdapter->sessionId, nEmptyScanRefreshPeriod));
Sameer Thalappilb0a30232013-09-27 15:37:48 -07002496 len = scnprintf(extra, sizeof(extra), "%s %d",
2497 "GETROAMSCANPERIOD", (nEmptyScanRefreshPeriod/1000));
Srinivas Girigowdade697412013-02-14 16:31:48 -08002498 /* Returned value is in units of seconds */
2499 if (copy_to_user(priv_data.buf, &extra, len + 1))
2500 {
2501 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2502 "%s: failed to copy data to user buffer", __func__);
2503 ret = -EFAULT;
2504 goto exit;
2505 }
2506 }
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07002507 else if (strncmp(command, "SETROAMSCANREFRESHPERIOD", 24) == 0)
2508 {
2509 tANI_U8 *value = command;
Srinivas Girigowdacb4c6412013-07-02 10:19:12 -07002510 tANI_U8 roamScanRefreshPeriod = 0;
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07002511 tANI_U16 neighborScanRefreshPeriod = CFG_NEIGHBOR_SCAN_RESULTS_REFRESH_PERIOD_DEFAULT;
Srinivas Girigowdacb4c6412013-07-02 10:19:12 -07002512
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07002513 /* input refresh period is in terms of seconds */
2514 /* Move pointer to ahead of SETROAMSCANREFRESHPERIOD<delimiter> */
2515 value = value + 25;
Srinivas Girigowdacb4c6412013-07-02 10:19:12 -07002516
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07002517 /* Convert the value from ascii to integer */
Srinivas Girigowdacb4c6412013-07-02 10:19:12 -07002518 ret = kstrtou8(value, 10, &roamScanRefreshPeriod);
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07002519 if (ret < 0)
2520 {
2521 /* If the input value is greater than max value of datatype, then also
Srinivas Girigowdacb4c6412013-07-02 10:19:12 -07002522 kstrtou8 fails */
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07002523 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Srinivas Girigowdacb4c6412013-07-02 10:19:12 -07002524 "%s: kstrtou8 failed Input value may be out of range[%d - %d]",
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07002525 __func__,
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07002526 (CFG_NEIGHBOR_SCAN_RESULTS_REFRESH_PERIOD_MIN/1000),
2527 (CFG_NEIGHBOR_SCAN_RESULTS_REFRESH_PERIOD_MAX/1000));
2528 ret = -EINVAL;
2529 goto exit;
2530 }
2531
Srinivas Girigowdacb4c6412013-07-02 10:19:12 -07002532 if ((roamScanRefreshPeriod < (CFG_NEIGHBOR_SCAN_RESULTS_REFRESH_PERIOD_MIN/1000)) ||
2533 (roamScanRefreshPeriod > (CFG_NEIGHBOR_SCAN_RESULTS_REFRESH_PERIOD_MAX/1000)))
2534 {
2535 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2536 "Neighbor scan results refresh period value %d is out of range"
2537 " (Min: %d Max: %d)", roamScanRefreshPeriod,
2538 (CFG_NEIGHBOR_SCAN_RESULTS_REFRESH_PERIOD_MIN/1000),
2539 (CFG_NEIGHBOR_SCAN_RESULTS_REFRESH_PERIOD_MAX/1000));
2540 ret = -EINVAL;
2541 goto exit;
2542 }
2543 neighborScanRefreshPeriod = roamScanRefreshPeriod * 1000;
2544
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07002545 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
2546 "%s: Received Command to Set roam scan refresh period"
Srinivas Girigowdacb4c6412013-07-02 10:19:12 -07002547 " (Scan refresh period) = %d", __func__, roamScanRefreshPeriod);
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07002548
2549 pHddCtx->cfg_ini->nNeighborResultsRefreshPeriod = neighborScanRefreshPeriod;
2550 sme_setNeighborScanRefreshPeriod((tHalHandle)(pHddCtx->hHal), neighborScanRefreshPeriod);
2551 }
2552 else if (strncmp(command, "GETROAMSCANREFRESHPERIOD", 24) == 0)
2553 {
2554 tANI_U16 value = sme_getNeighborScanRefreshPeriod((tHalHandle)(pHddCtx->hHal));
2555 char extra[32];
2556 tANI_U8 len = 0;
2557
Sameer Thalappilb0a30232013-09-27 15:37:48 -07002558 len = scnprintf(extra, sizeof(extra), "%s %d",
2559 "GETROAMSCANREFRESHPERIOD", (value/1000));
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07002560 /* Returned value is in units of seconds */
2561 if (copy_to_user(priv_data.buf, &extra, len + 1))
2562 {
2563 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2564 "%s: failed to copy data to user buffer", __func__);
2565 ret = -EFAULT;
2566 goto exit;
2567 }
2568 }
Varun Reddy Yeturu6d99ac82013-05-08 14:15:35 -07002569#ifdef FEATURE_WLAN_LFR
2570 /* SETROAMMODE */
2571 else if (strncmp(command, "SETROAMMODE", SIZE_OF_SETROAMMODE) == 0)
2572 {
2573 tANI_U8 *value = command;
2574 tANI_BOOLEAN roamMode = CFG_LFR_FEATURE_ENABLED_DEFAULT;
2575
2576 /* Move pointer to ahead of SETROAMMODE<delimiter> */
2577 value = value + SIZE_OF_SETROAMMODE + 1;
2578
2579 /* Convert the value from ascii to integer */
2580 ret = kstrtou8(value, SIZE_OF_SETROAMMODE, &roamMode);
2581 if (ret < 0)
2582 {
2583 /* If the input value is greater than max value of datatype, then also
2584 kstrtou8 fails */
2585 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2586 "%s: kstrtou8 failed range [%d - %d]", __func__,
2587 CFG_LFR_FEATURE_ENABLED_MIN,
2588 CFG_LFR_FEATURE_ENABLED_MAX);
2589 ret = -EINVAL;
2590 goto exit;
2591 }
2592 if ((roamMode < CFG_LFR_FEATURE_ENABLED_MIN) ||
2593 (roamMode > CFG_LFR_FEATURE_ENABLED_MAX))
2594 {
2595 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2596 "Roam Mode value %d is out of range"
2597 " (Min: %d Max: %d)", roamMode,
2598 CFG_LFR_FEATURE_ENABLED_MIN,
2599 CFG_LFR_FEATURE_ENABLED_MAX);
2600 ret = -EINVAL;
2601 goto exit;
2602 }
2603
2604 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
2605 "%s: Received Command to Set Roam Mode = %d", __func__, roamMode);
2606 /*
2607 * Note that
2608 * SETROAMMODE 0 is to enable LFR while
2609 * SETROAMMODE 1 is to disable LFR, but
2610 * NotifyIsFastRoamIniFeatureEnabled 0/1 is to enable/disable.
2611 * So, we have to invert the value to call sme_UpdateIsFastRoamIniFeatureEnabled.
2612 */
2613 if (CFG_LFR_FEATURE_ENABLED_MIN == roamMode)
2614 roamMode = CFG_LFR_FEATURE_ENABLED_MAX; /* Roam enable */
2615 else
2616 roamMode = CFG_LFR_FEATURE_ENABLED_MIN; /* Roam disable */
2617
2618 pHddCtx->cfg_ini->isFastRoamIniFeatureEnabled = roamMode;
2619 sme_UpdateIsFastRoamIniFeatureEnabled((tHalHandle)(pHddCtx->hHal), roamMode);
2620 }
2621 /* GETROAMMODE */
Mahesh A Saptasagarec7d1092015-04-02 13:41:34 +05302622 else if (strncmp(command, "GETROAMMODE", SIZE_OF_GETROAMMODE) == 0)
Varun Reddy Yeturu6d99ac82013-05-08 14:15:35 -07002623 {
2624 tANI_BOOLEAN roamMode = sme_getIsLfrFeatureEnabled((tHalHandle)(pHddCtx->hHal));
2625 char extra[32];
2626 tANI_U8 len = 0;
2627
2628 /*
2629 * roamMode value shall be inverted because the sementics is different.
2630 */
2631 if (CFG_LFR_FEATURE_ENABLED_MIN == roamMode)
2632 roamMode = CFG_LFR_FEATURE_ENABLED_MAX;
2633 else
2634 roamMode = CFG_LFR_FEATURE_ENABLED_MIN;
2635
Sameer Thalappilb0a30232013-09-27 15:37:48 -07002636 len = scnprintf(extra, sizeof(extra), "%s %d", command, roamMode);
Varun Reddy Yeturu6d99ac82013-05-08 14:15:35 -07002637 if (copy_to_user(priv_data.buf, &extra, len + 1))
2638 {
2639 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2640 "%s: failed to copy data to user buffer", __func__);
2641 ret = -EFAULT;
2642 goto exit;
2643 }
2644 }
2645#endif
Srinivas Girigowdade697412013-02-14 16:31:48 -08002646#endif
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08002647#if defined (WLAN_FEATURE_VOWIFI_11R) || defined (FEATURE_WLAN_ESE) || defined(FEATURE_WLAN_LFR)
Srinivas Girigowdade697412013-02-14 16:31:48 -08002648 else if (strncmp(command, "SETROAMDELTA", 12) == 0)
2649 {
2650 tANI_U8 *value = command;
2651 tANI_U8 roamRssiDiff = CFG_ROAM_RSSI_DIFF_DEFAULT;
2652
2653 /* Move pointer to ahead of SETROAMDELTA<delimiter> */
2654 value = value + 13;
2655 /* Convert the value from ascii to integer */
2656 ret = kstrtou8(value, 10, &roamRssiDiff);
2657 if (ret < 0)
2658 {
2659 /* If the input value is greater than max value of datatype, then also
2660 kstrtou8 fails */
2661 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2662 "%s: kstrtou8 failed range [%d - %d]", __func__,
2663 CFG_ROAM_RSSI_DIFF_MIN,
2664 CFG_ROAM_RSSI_DIFF_MAX);
2665 ret = -EINVAL;
2666 goto exit;
2667 }
2668
2669 if ((roamRssiDiff < CFG_ROAM_RSSI_DIFF_MIN) ||
2670 (roamRssiDiff > CFG_ROAM_RSSI_DIFF_MAX))
2671 {
2672 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2673 "Roam rssi diff value %d is out of range"
2674 " (Min: %d Max: %d)", roamRssiDiff,
2675 CFG_ROAM_RSSI_DIFF_MIN,
2676 CFG_ROAM_RSSI_DIFF_MAX);
2677 ret = -EINVAL;
2678 goto exit;
2679 }
2680
2681 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
2682 "%s: Received Command to Set roam rssi diff = %d", __func__, roamRssiDiff);
2683
2684 pHddCtx->cfg_ini->RoamRssiDiff = roamRssiDiff;
2685 sme_UpdateRoamRssiDiff((tHalHandle)(pHddCtx->hHal), roamRssiDiff);
2686 }
Mahesh A Saptasagarec7d1092015-04-02 13:41:34 +05302687 else if (strncmp(command, "GETROAMDELTA", 12) == 0)
Srinivas Girigowdade697412013-02-14 16:31:48 -08002688 {
2689 tANI_U8 roamRssiDiff = sme_getRoamRssiDiff((tHalHandle)(pHddCtx->hHal));
2690 char extra[32];
2691 tANI_U8 len = 0;
2692
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05302693 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
2694 TRACE_CODE_HDD_GETROAMDELTA_IOCTL,
2695 pAdapter->sessionId, roamRssiDiff));
Sameer Thalappilb0a30232013-09-27 15:37:48 -07002696 len = scnprintf(extra, sizeof(extra), "%s %d",
2697 command, roamRssiDiff);
Srinivas Girigowdade697412013-02-14 16:31:48 -08002698 if (copy_to_user(priv_data.buf, &extra, len + 1))
2699 {
2700 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2701 "%s: failed to copy data to user buffer", __func__);
2702 ret = -EFAULT;
2703 goto exit;
2704 }
2705 }
2706#endif
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08002707#if defined (WLAN_FEATURE_VOWIFI_11R) || defined (FEATURE_WLAN_ESE) || defined(FEATURE_WLAN_LFR)
Srinivas Girigowdade697412013-02-14 16:31:48 -08002708 else if (strncmp(command, "GETBAND", 7) == 0)
2709 {
2710 int band = -1;
2711 char extra[32];
2712 tANI_U8 len = 0;
2713 hdd_getBand_helper(pHddCtx, &band);
2714
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05302715 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
2716 TRACE_CODE_HDD_GETBAND_IOCTL,
2717 pAdapter->sessionId, band));
Sameer Thalappilb0a30232013-09-27 15:37:48 -07002718 len = scnprintf(extra, sizeof(extra), "%s %d", command, band);
Srinivas Girigowdade697412013-02-14 16:31:48 -08002719 if (copy_to_user(priv_data.buf, &extra, len + 1))
2720 {
2721 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2722 "%s: failed to copy data to user buffer", __func__);
2723 ret = -EFAULT;
2724 goto exit;
2725 }
2726 }
Srinivas Girigowdade697412013-02-14 16:31:48 -08002727 else if (strncmp(command, "SETROAMSCANCHANNELS", 19) == 0)
2728 {
2729 tANI_U8 *value = command;
2730 tANI_U8 ChannelList[WNI_CFG_VALID_CHANNEL_LIST_LEN] = {0};
2731 tANI_U8 numChannels = 0;
2732 eHalStatus status = eHAL_STATUS_SUCCESS;
2733
2734 status = hdd_parse_channellist(value, ChannelList, &numChannels);
2735 if (eHAL_STATUS_SUCCESS != status)
2736 {
2737 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2738 "%s: Failed to parse channel list information", __func__);
2739 ret = -EINVAL;
2740 goto exit;
2741 }
2742
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05302743 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
2744 TRACE_CODE_HDD_SETROAMSCANCHANNELS_IOCTL,
2745 pAdapter->sessionId, numChannels));
Srinivas Girigowdade697412013-02-14 16:31:48 -08002746 if (numChannels > WNI_CFG_VALID_CHANNEL_LIST_LEN)
2747 {
2748 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2749 "%s: number of channels (%d) supported exceeded max (%d)", __func__,
2750 numChannels, WNI_CFG_VALID_CHANNEL_LIST_LEN);
2751 ret = -EINVAL;
2752 goto exit;
2753 }
2754 status = sme_ChangeRoamScanChannelList((tHalHandle)(pHddCtx->hHal), ChannelList,
2755 numChannels);
2756 if (eHAL_STATUS_SUCCESS != status)
2757 {
2758 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2759 "%s: Failed to update channel list information", __func__);
2760 ret = -EINVAL;
2761 goto exit;
2762 }
2763 }
2764 else if (strncmp(command, "GETROAMSCANCHANNELS", 19) == 0)
2765 {
2766 tANI_U8 ChannelList[WNI_CFG_VALID_CHANNEL_LIST_LEN] = {0};
2767 tANI_U8 numChannels = 0;
Jeff Johnson51b67782013-04-05 12:35:41 -07002768 tANI_U8 j = 0;
Srinivas Girigowdade697412013-02-14 16:31:48 -08002769 char extra[128] = {0};
Jeff Johnson51b67782013-04-05 12:35:41 -07002770 int len;
Srinivas Girigowdade697412013-02-14 16:31:48 -08002771
2772 if (eHAL_STATUS_SUCCESS != sme_getRoamScanChannelList( (tHalHandle)(pHddCtx->hHal),
2773 ChannelList, &numChannels ))
2774 {
2775 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
2776 "%s: failed to get roam scan channel list", __func__);
2777 ret = -EFAULT;
2778 goto exit;
2779 }
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05302780 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
2781 TRACE_CODE_HDD_GETROAMSCANCHANNELS_IOCTL,
2782 pAdapter->sessionId, numChannels));
Srinivas Girigowdade697412013-02-14 16:31:48 -08002783 /* output channel list is of the format
2784 [Number of roam scan channels][Channel1][Channel2]... */
2785 /* copy the number of channels in the 0th index */
Sameer Thalappilb0a30232013-09-27 15:37:48 -07002786 len = scnprintf(extra, sizeof(extra), "%s %d", command, numChannels);
Srinivas Girigowdade697412013-02-14 16:31:48 -08002787 for (j = 0; (j < numChannels); j++)
2788 {
Sameer Thalappilb0a30232013-09-27 15:37:48 -07002789 len += scnprintf(extra + len, sizeof(extra) - len, " %d",
2790 ChannelList[j]);
Srinivas Girigowdade697412013-02-14 16:31:48 -08002791 }
2792
2793 if (copy_to_user(priv_data.buf, &extra, len + 1))
2794 {
2795 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2796 "%s: failed to copy data to user buffer", __func__);
2797 ret = -EFAULT;
2798 goto exit;
2799 }
2800 }
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07002801 else if (strncmp(command, "GETCCXMODE", 10) == 0)
2802 {
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08002803 tANI_BOOLEAN eseMode = sme_getIsEseFeatureEnabled((tHalHandle)(pHddCtx->hHal));
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07002804 char extra[32];
2805 tANI_U8 len = 0;
2806
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08002807 /* Check if the features OKC/ESE/11R are supported simultaneously,
Srinivas Girigowdac6745a32013-07-15 19:19:10 -07002808 then this operation is not permitted (return FAILURE) */
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08002809 if (eseMode &&
Srinivas Girigowdac6745a32013-07-15 19:19:10 -07002810 hdd_is_okc_mode_enabled(pHddCtx) &&
2811 sme_getIsFtFeatureEnabled((tHalHandle)(pHddCtx->hHal)))
2812 {
2813 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_WARN,
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08002814 "%s: OKC/ESE/11R are supported simultaneously"
Srinivas Girigowdac6745a32013-07-15 19:19:10 -07002815 " hence this operation is not permitted!", __func__);
2816 ret = -EPERM;
2817 goto exit;
2818 }
2819
Sameer Thalappilb0a30232013-09-27 15:37:48 -07002820 len = scnprintf(extra, sizeof(extra), "%s %d",
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08002821 "GETCCXMODE", eseMode);
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07002822 if (copy_to_user(priv_data.buf, &extra, len + 1))
2823 {
2824 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2825 "%s: failed to copy data to user buffer", __func__);
2826 ret = -EFAULT;
2827 goto exit;
2828 }
2829 }
2830 else if (strncmp(command, "GETOKCMODE", 10) == 0)
2831 {
2832 tANI_BOOLEAN okcMode = hdd_is_okc_mode_enabled(pHddCtx);
2833 char extra[32];
2834 tANI_U8 len = 0;
2835
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08002836 /* Check if the features OKC/ESE/11R are supported simultaneously,
Srinivas Girigowdac6745a32013-07-15 19:19:10 -07002837 then this operation is not permitted (return FAILURE) */
2838 if (okcMode &&
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08002839 sme_getIsEseFeatureEnabled((tHalHandle)(pHddCtx->hHal)) &&
Srinivas Girigowdac6745a32013-07-15 19:19:10 -07002840 sme_getIsFtFeatureEnabled((tHalHandle)(pHddCtx->hHal)))
2841 {
2842 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_WARN,
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08002843 "%s: OKC/ESE/11R are supported simultaneously"
Srinivas Girigowdac6745a32013-07-15 19:19:10 -07002844 " hence this operation is not permitted!", __func__);
2845 ret = -EPERM;
2846 goto exit;
2847 }
2848
Sameer Thalappilb0a30232013-09-27 15:37:48 -07002849 len = scnprintf(extra, sizeof(extra), "%s %d",
2850 "GETOKCMODE", okcMode);
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07002851 if (copy_to_user(priv_data.buf, &extra, len + 1))
2852 {
2853 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2854 "%s: failed to copy data to user buffer", __func__);
2855 ret = -EFAULT;
2856 goto exit;
2857 }
2858 }
Srinivas Girigowdacb4c6412013-07-02 10:19:12 -07002859 else if (strncmp(command, "GETFASTROAM", 11) == 0)
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07002860 {
2861 tANI_BOOLEAN lfrMode = sme_getIsLfrFeatureEnabled((tHalHandle)(pHddCtx->hHal));
2862 char extra[32];
2863 tANI_U8 len = 0;
2864
Sameer Thalappilb0a30232013-09-27 15:37:48 -07002865 len = scnprintf(extra, sizeof(extra), "%s %d",
2866 "GETFASTROAM", lfrMode);
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07002867 if (copy_to_user(priv_data.buf, &extra, len + 1))
2868 {
2869 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2870 "%s: failed to copy data to user buffer", __func__);
2871 ret = -EFAULT;
2872 goto exit;
2873 }
2874 }
2875 else if (strncmp(command, "GETFASTTRANSITION", 17) == 0)
2876 {
2877 tANI_BOOLEAN ft = sme_getIsFtFeatureEnabled((tHalHandle)(pHddCtx->hHal));
2878 char extra[32];
2879 tANI_U8 len = 0;
2880
Sameer Thalappilb0a30232013-09-27 15:37:48 -07002881 len = scnprintf(extra, sizeof(extra), "%s %d",
2882 "GETFASTTRANSITION", ft);
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07002883 if (copy_to_user(priv_data.buf, &extra, len + 1))
2884 {
2885 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2886 "%s: failed to copy data to user buffer", __func__);
2887 ret = -EFAULT;
2888 goto exit;
2889 }
2890 }
2891 else if (strncmp(command, "SETROAMSCANCHANNELMINTIME", 25) == 0)
2892 {
2893 tANI_U8 *value = command;
2894 tANI_U8 minTime = CFG_NEIGHBOR_SCAN_MIN_CHAN_TIME_DEFAULT;
2895
2896 /* Move pointer to ahead of SETROAMSCANCHANNELMINTIME<delimiter> */
2897 value = value + 26;
2898 /* Convert the value from ascii to integer */
2899 ret = kstrtou8(value, 10, &minTime);
2900 if (ret < 0)
2901 {
2902 /* If the input value is greater than max value of datatype, then also
2903 kstrtou8 fails */
2904 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2905 "%s: kstrtou8 failed range [%d - %d]", __func__,
2906 CFG_NEIGHBOR_SCAN_MIN_CHAN_TIME_MIN,
2907 CFG_NEIGHBOR_SCAN_MIN_CHAN_TIME_MAX);
2908 ret = -EINVAL;
2909 goto exit;
2910 }
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07002911 if ((minTime < CFG_NEIGHBOR_SCAN_MIN_CHAN_TIME_MIN) ||
2912 (minTime > CFG_NEIGHBOR_SCAN_MIN_CHAN_TIME_MAX))
2913 {
2914 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2915 "scan min channel time value %d is out of range"
2916 " (Min: %d Max: %d)", minTime,
2917 CFG_NEIGHBOR_SCAN_MIN_CHAN_TIME_MIN,
2918 CFG_NEIGHBOR_SCAN_MIN_CHAN_TIME_MAX);
2919 ret = -EINVAL;
2920 goto exit;
2921 }
2922
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05302923 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
2924 TRACE_CODE_HDD_SETROAMSCANCHANNELMINTIME_IOCTL,
2925 pAdapter->sessionId, minTime));
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07002926 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
2927 "%s: Received Command to change channel min time = %d", __func__, minTime);
2928
2929 pHddCtx->cfg_ini->nNeighborScanMinChanTime = minTime;
2930 sme_setNeighborScanMinChanTime((tHalHandle)(pHddCtx->hHal), minTime);
2931 }
Srinivas Girigowda100eb322013-03-15 16:48:20 -07002932 else if (strncmp(command, "SENDACTIONFRAME", 15) == 0)
2933 {
2934 tANI_U8 *value = command;
2935 tANI_U8 channel = 0;
2936 tANI_U8 dwellTime = 0;
2937 tANI_U8 bufLen = 0;
2938 tANI_U8 *buf = NULL;
2939 tSirMacAddr targetApBssid;
2940 eHalStatus status = eHAL_STATUS_SUCCESS;
2941 struct ieee80211_channel chan;
2942 tANI_U8 finalLen = 0;
2943 tANI_U8 *finalBuf = NULL;
2944 tANI_U8 temp = 0;
2945 u64 cookie;
2946 hdd_station_ctx_t *pHddStaCtx = NULL;
2947 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
2948
2949 /* if not associated, no need to send action frame */
2950 if (eConnectionState_Associated != pHddStaCtx->conn_info.connState)
2951 {
2952 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO, "%s:Not associated!",__func__);
2953 ret = -EINVAL;
2954 goto exit;
2955 }
2956
2957 status = hdd_parse_send_action_frame_data(value, targetApBssid, &channel,
2958 &dwellTime, &buf, &bufLen);
2959 if (eHAL_STATUS_SUCCESS != status)
2960 {
2961 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2962 "%s: Failed to parse send action frame data", __func__);
2963 ret = -EINVAL;
2964 goto exit;
2965 }
2966
2967 /* if the target bssid is different from currently associated AP,
2968 then no need to send action frame */
2969 if (VOS_TRUE != vos_mem_compare(targetApBssid,
2970 pHddStaCtx->conn_info.bssId, sizeof(tSirMacAddr)))
2971 {
2972 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO, "%s:STA is not associated to this AP!",__func__);
2973 ret = -EINVAL;
Jeff Johnson11c33152013-04-16 17:52:40 -07002974 vos_mem_free(buf);
Srinivas Girigowda8d2348f2013-12-12 12:14:15 -08002975 buf = NULL;
Srinivas Girigowda100eb322013-03-15 16:48:20 -07002976 goto exit;
2977 }
2978
2979 /* if the channel number is different from operating channel then
2980 no need to send action frame */
2981 if (channel != pHddStaCtx->conn_info.operationChannel)
2982 {
2983 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
2984 "%s: channel(%d) is different from operating channel(%d)",
2985 __func__, channel, pHddStaCtx->conn_info.operationChannel);
2986 ret = -EINVAL;
Jeff Johnson11c33152013-04-16 17:52:40 -07002987 vos_mem_free(buf);
Srinivas Girigowda8d2348f2013-12-12 12:14:15 -08002988 buf = NULL;
Srinivas Girigowda100eb322013-03-15 16:48:20 -07002989 goto exit;
2990 }
2991 chan.center_freq = sme_ChnToFreq(channel);
2992
2993 finalLen = bufLen + 24;
2994 finalBuf = vos_mem_malloc(finalLen);
2995 if (NULL == finalBuf)
2996 {
2997 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR, "%s:memory allocation failed",__func__);
2998 ret = -ENOMEM;
Jeff Johnson11c33152013-04-16 17:52:40 -07002999 vos_mem_free(buf);
Srinivas Girigowda8d2348f2013-12-12 12:14:15 -08003000 buf = NULL;
Srinivas Girigowda100eb322013-03-15 16:48:20 -07003001 goto exit;
3002 }
3003 vos_mem_zero(finalBuf, finalLen);
3004
3005 /* Fill subtype */
3006 temp = SIR_MAC_MGMT_ACTION << 4;
3007 vos_mem_copy(finalBuf + 0, &temp, sizeof(temp));
3008
3009 /* Fill type */
3010 temp = SIR_MAC_MGMT_FRAME;
3011 vos_mem_copy(finalBuf + 2, &temp, sizeof(temp));
3012
3013 /* Fill destination address (bssid of the AP) */
3014 vos_mem_copy(finalBuf + 4, targetApBssid, sizeof(targetApBssid));
3015
Srinivas Girigowdab27c0192013-06-03 10:19:56 -07003016 /* Fill source address (STA mac address) */
Srinivas Girigowda100eb322013-03-15 16:48:20 -07003017 vos_mem_copy(finalBuf + 10, pAdapter->macAddressCurrent.bytes, sizeof(pAdapter->macAddressCurrent.bytes));
3018
Srinivas Girigowdab27c0192013-06-03 10:19:56 -07003019 /* Fill BSSID (AP mac address) */
3020 vos_mem_copy(finalBuf + 16, targetApBssid, sizeof(targetApBssid));
Srinivas Girigowda100eb322013-03-15 16:48:20 -07003021
3022 /* Fill received buffer from 24th address */
3023 vos_mem_copy(finalBuf + 24, buf, bufLen);
3024
Jeff Johnson11c33152013-04-16 17:52:40 -07003025 /* done with the parsed buffer */
3026 vos_mem_free(buf);
Srinivas Girigowda8d2348f2013-12-12 12:14:15 -08003027 buf = NULL;
Jeff Johnson11c33152013-04-16 17:52:40 -07003028
DARAM SUDHA39eede62014-02-12 11:16:40 +05303029 wlan_hdd_mgmt_tx( NULL,
Yue Maf49ba872013-08-19 12:04:25 -07003030#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,6,0))
3031 &(pAdapter->wdev),
3032#else
Jeff Johnsond6e7b3f2014-03-20 12:12:11 -07003033 pAdapter->dev,
Yue Maf49ba872013-08-19 12:04:25 -07003034#endif
3035 &chan, 0,
3036#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,8,0))
3037 NL80211_CHAN_HT20, 1,
3038#endif
3039 dwellTime, finalBuf, finalLen, 1,
Srinivas Girigowda100eb322013-03-15 16:48:20 -07003040 1, &cookie );
3041 vos_mem_free(finalBuf);
3042 }
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07003043 else if (strncmp(command, "GETROAMSCANCHANNELMINTIME", 25) == 0)
3044 {
3045 tANI_U16 val = sme_getNeighborScanMinChanTime((tHalHandle)(pHddCtx->hHal));
3046 char extra[32];
3047 tANI_U8 len = 0;
3048
3049 /* value is interms of msec */
Sameer Thalappilb0a30232013-09-27 15:37:48 -07003050 len = scnprintf(extra, sizeof(extra), "%s %d",
3051 "GETROAMSCANCHANNELMINTIME", val);
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05303052 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
3053 TRACE_CODE_HDD_GETROAMSCANCHANNELMINTIME_IOCTL,
3054 pAdapter->sessionId, val));
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07003055 if (copy_to_user(priv_data.buf, &extra, len + 1))
3056 {
3057 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3058 "%s: failed to copy data to user buffer", __func__);
3059 ret = -EFAULT;
3060 goto exit;
3061 }
3062 }
3063 else if (strncmp(command, "SETSCANCHANNELTIME", 18) == 0)
3064 {
3065 tANI_U8 *value = command;
Varun Reddy Yeturu3885a662013-06-19 07:10:37 -07003066 tANI_U16 maxTime = CFG_NEIGHBOR_SCAN_MAX_CHAN_TIME_DEFAULT;
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07003067
3068 /* Move pointer to ahead of SETSCANCHANNELTIME<delimiter> */
3069 value = value + 19;
3070 /* Convert the value from ascii to integer */
Varun Reddy Yeturu3885a662013-06-19 07:10:37 -07003071 ret = kstrtou16(value, 10, &maxTime);
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07003072 if (ret < 0)
3073 {
3074 /* If the input value is greater than max value of datatype, then also
Varun Reddy Yeturu3885a662013-06-19 07:10:37 -07003075 kstrtou16 fails */
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07003076 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Varun Reddy Yeturu3885a662013-06-19 07:10:37 -07003077 "%s: kstrtou16 failed range [%d - %d]", __func__,
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07003078 CFG_NEIGHBOR_SCAN_MAX_CHAN_TIME_MIN,
3079 CFG_NEIGHBOR_SCAN_MAX_CHAN_TIME_MAX);
3080 ret = -EINVAL;
3081 goto exit;
3082 }
3083
3084 if ((maxTime < CFG_NEIGHBOR_SCAN_MAX_CHAN_TIME_MIN) ||
3085 (maxTime > CFG_NEIGHBOR_SCAN_MAX_CHAN_TIME_MAX))
3086 {
3087 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3088 "lfr mode value %d is out of range"
3089 " (Min: %d Max: %d)", maxTime,
3090 CFG_NEIGHBOR_SCAN_MAX_CHAN_TIME_MIN,
3091 CFG_NEIGHBOR_SCAN_MAX_CHAN_TIME_MAX);
3092 ret = -EINVAL;
3093 goto exit;
3094 }
3095
3096 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
3097 "%s: Received Command to change channel max time = %d", __func__, maxTime);
3098
3099 pHddCtx->cfg_ini->nNeighborScanMaxChanTime = maxTime;
3100 sme_setNeighborScanMaxChanTime((tHalHandle)(pHddCtx->hHal), maxTime);
3101 }
3102 else if (strncmp(command, "GETSCANCHANNELTIME", 18) == 0)
3103 {
3104 tANI_U16 val = sme_getNeighborScanMaxChanTime((tHalHandle)(pHddCtx->hHal));
3105 char extra[32];
3106 tANI_U8 len = 0;
3107
3108 /* value is interms of msec */
Sameer Thalappilb0a30232013-09-27 15:37:48 -07003109 len = scnprintf(extra, sizeof(extra), "%s %d",
3110 "GETSCANCHANNELTIME", val);
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07003111 if (copy_to_user(priv_data.buf, &extra, len + 1))
3112 {
3113 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3114 "%s: failed to copy data to user buffer", __func__);
3115 ret = -EFAULT;
3116 goto exit;
3117 }
3118 }
3119 else if (strncmp(command, "SETSCANHOMETIME", 15) == 0)
3120 {
3121 tANI_U8 *value = command;
3122 tANI_U16 val = CFG_NEIGHBOR_SCAN_TIMER_PERIOD_DEFAULT;
3123
3124 /* Move pointer to ahead of SETSCANHOMETIME<delimiter> */
3125 value = value + 16;
3126 /* Convert the value from ascii to integer */
3127 ret = kstrtou16(value, 10, &val);
3128 if (ret < 0)
3129 {
3130 /* If the input value is greater than max value of datatype, then also
3131 kstrtou16 fails */
3132 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3133 "%s: kstrtou16 failed range [%d - %d]", __func__,
3134 CFG_NEIGHBOR_SCAN_TIMER_PERIOD_MIN,
3135 CFG_NEIGHBOR_SCAN_TIMER_PERIOD_MAX);
3136 ret = -EINVAL;
3137 goto exit;
3138 }
3139
3140 if ((val < CFG_NEIGHBOR_SCAN_TIMER_PERIOD_MIN) ||
3141 (val > CFG_NEIGHBOR_SCAN_TIMER_PERIOD_MAX))
3142 {
3143 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3144 "scan home time value %d is out of range"
3145 " (Min: %d Max: %d)", val,
3146 CFG_NEIGHBOR_SCAN_TIMER_PERIOD_MIN,
3147 CFG_NEIGHBOR_SCAN_TIMER_PERIOD_MAX);
3148 ret = -EINVAL;
3149 goto exit;
3150 }
3151
3152 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
3153 "%s: Received Command to change scan home time = %d", __func__, val);
3154
3155 pHddCtx->cfg_ini->nNeighborScanPeriod = val;
3156 sme_setNeighborScanPeriod((tHalHandle)(pHddCtx->hHal), val);
3157 }
3158 else if (strncmp(command, "GETSCANHOMETIME", 15) == 0)
3159 {
3160 tANI_U16 val = sme_getNeighborScanPeriod((tHalHandle)(pHddCtx->hHal));
3161 char extra[32];
3162 tANI_U8 len = 0;
3163
3164 /* value is interms of msec */
Sameer Thalappilb0a30232013-09-27 15:37:48 -07003165 len = scnprintf(extra, sizeof(extra), "%s %d",
3166 "GETSCANHOMETIME", val);
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07003167 if (copy_to_user(priv_data.buf, &extra, len + 1))
3168 {
3169 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3170 "%s: failed to copy data to user buffer", __func__);
3171 ret = -EFAULT;
3172 goto exit;
3173 }
3174 }
3175 else if (strncmp(command, "SETROAMINTRABAND", 16) == 0)
3176 {
3177 tANI_U8 *value = command;
3178 tANI_U8 val = CFG_ROAM_INTRA_BAND_DEFAULT;
3179
3180 /* Move pointer to ahead of SETROAMINTRABAND<delimiter> */
3181 value = value + 17;
3182 /* Convert the value from ascii to integer */
3183 ret = kstrtou8(value, 10, &val);
3184 if (ret < 0)
3185 {
3186 /* If the input value is greater than max value of datatype, then also
3187 kstrtou8 fails */
3188 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3189 "%s: kstrtou8 failed range [%d - %d]", __func__,
3190 CFG_ROAM_INTRA_BAND_MIN,
3191 CFG_ROAM_INTRA_BAND_MAX);
3192 ret = -EINVAL;
3193 goto exit;
3194 }
3195
3196 if ((val < CFG_ROAM_INTRA_BAND_MIN) ||
3197 (val > CFG_ROAM_INTRA_BAND_MAX))
3198 {
3199 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3200 "intra band mode value %d is out of range"
3201 " (Min: %d Max: %d)", val,
3202 CFG_ROAM_INTRA_BAND_MIN,
3203 CFG_ROAM_INTRA_BAND_MAX);
3204 ret = -EINVAL;
3205 goto exit;
3206 }
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07003207 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
3208 "%s: Received Command to change intra band = %d", __func__, val);
3209
3210 pHddCtx->cfg_ini->nRoamIntraBand = val;
3211 sme_setRoamIntraBand((tHalHandle)(pHddCtx->hHal), val);
3212 }
3213 else if (strncmp(command, "GETROAMINTRABAND", 16) == 0)
3214 {
3215 tANI_U16 val = sme_getRoamIntraBand((tHalHandle)(pHddCtx->hHal));
3216 char extra[32];
3217 tANI_U8 len = 0;
3218
3219 /* value is interms of msec */
Sameer Thalappilb0a30232013-09-27 15:37:48 -07003220 len = scnprintf(extra, sizeof(extra), "%s %d",
3221 "GETROAMINTRABAND", val);
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07003222 if (copy_to_user(priv_data.buf, &extra, len + 1))
3223 {
3224 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3225 "%s: failed to copy data to user buffer", __func__);
3226 ret = -EFAULT;
3227 goto exit;
3228 }
3229 }
Varun Reddy Yeturu920df212013-05-22 08:07:23 -07003230 else if (strncmp(command, "SETSCANNPROBES", 14) == 0)
3231 {
3232 tANI_U8 *value = command;
3233 tANI_U8 nProbes = CFG_ROAM_SCAN_N_PROBES_DEFAULT;
3234
3235 /* Move pointer to ahead of SETSCANNPROBES<delimiter> */
3236 value = value + 15;
3237 /* Convert the value from ascii to integer */
3238 ret = kstrtou8(value, 10, &nProbes);
3239 if (ret < 0)
3240 {
3241 /* If the input value is greater than max value of datatype, then also
3242 kstrtou8 fails */
3243 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3244 "%s: kstrtou8 failed range [%d - %d]", __func__,
3245 CFG_ROAM_SCAN_N_PROBES_MIN,
3246 CFG_ROAM_SCAN_N_PROBES_MAX);
3247 ret = -EINVAL;
3248 goto exit;
3249 }
3250
3251 if ((nProbes < CFG_ROAM_SCAN_N_PROBES_MIN) ||
3252 (nProbes > CFG_ROAM_SCAN_N_PROBES_MAX))
3253 {
3254 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3255 "NProbes value %d is out of range"
3256 " (Min: %d Max: %d)", nProbes,
3257 CFG_ROAM_SCAN_N_PROBES_MIN,
3258 CFG_ROAM_SCAN_N_PROBES_MAX);
3259 ret = -EINVAL;
3260 goto exit;
3261 }
3262
3263 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
3264 "%s: Received Command to Set nProbes = %d", __func__, nProbes);
3265
3266 pHddCtx->cfg_ini->nProbes = nProbes;
3267 sme_UpdateRoamScanNProbes((tHalHandle)(pHddCtx->hHal), nProbes);
3268 }
Mahesh A Saptasagarec7d1092015-04-02 13:41:34 +05303269 else if (strncmp(command, "GETSCANNPROBES", 14) == 0)
Varun Reddy Yeturu920df212013-05-22 08:07:23 -07003270 {
3271 tANI_U8 val = sme_getRoamScanNProbes((tHalHandle)(pHddCtx->hHal));
3272 char extra[32];
3273 tANI_U8 len = 0;
3274
Sameer Thalappilb0a30232013-09-27 15:37:48 -07003275 len = scnprintf(extra, sizeof(extra), "%s %d", command, val);
Varun Reddy Yeturu920df212013-05-22 08:07:23 -07003276 if (copy_to_user(priv_data.buf, &extra, len + 1))
3277 {
3278 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3279 "%s: failed to copy data to user buffer", __func__);
3280 ret = -EFAULT;
3281 goto exit;
3282 }
3283 }
3284 else if (strncmp(command, "SETSCANHOMEAWAYTIME", 19) == 0)
3285 {
3286 tANI_U8 *value = command;
3287 tANI_U16 homeAwayTime = CFG_ROAM_SCAN_HOME_AWAY_TIME_DEFAULT;
3288
3289 /* Move pointer to ahead of SETSCANHOMEAWAYTIME<delimiter> */
3290 /* input value is in units of msec */
3291 value = value + 20;
3292 /* Convert the value from ascii to integer */
3293 ret = kstrtou16(value, 10, &homeAwayTime);
3294 if (ret < 0)
3295 {
3296 /* If the input value is greater than max value of datatype, then also
3297 kstrtou8 fails */
3298 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3299 "%s: kstrtou8 failed range [%d - %d]", __func__,
3300 CFG_ROAM_SCAN_HOME_AWAY_TIME_MIN,
3301 CFG_ROAM_SCAN_HOME_AWAY_TIME_MAX);
3302 ret = -EINVAL;
3303 goto exit;
3304 }
3305
Varun Reddy Yeturu920df212013-05-22 08:07:23 -07003306 if ((homeAwayTime < CFG_ROAM_SCAN_HOME_AWAY_TIME_MIN) ||
3307 (homeAwayTime > CFG_ROAM_SCAN_HOME_AWAY_TIME_MAX))
3308 {
3309 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3310 "homeAwayTime value %d is out of range"
3311 " (Min: %d Max: %d)", homeAwayTime,
3312 CFG_ROAM_SCAN_HOME_AWAY_TIME_MIN,
3313 CFG_ROAM_SCAN_HOME_AWAY_TIME_MAX);
3314 ret = -EINVAL;
3315 goto exit;
3316 }
3317
3318 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
3319 "%s: Received Command to Set scan away time = %d", __func__, homeAwayTime);
Srinivas Girigowda6cf0b822013-06-27 14:00:20 -07003320 if (pHddCtx->cfg_ini->nRoamScanHomeAwayTime != homeAwayTime)
3321 {
3322 pHddCtx->cfg_ini->nRoamScanHomeAwayTime = homeAwayTime;
3323 sme_UpdateRoamScanHomeAwayTime((tHalHandle)(pHddCtx->hHal), homeAwayTime, eANI_BOOLEAN_TRUE);
3324 }
Varun Reddy Yeturu920df212013-05-22 08:07:23 -07003325 }
Mahesh A Saptasagarec7d1092015-04-02 13:41:34 +05303326 else if (strncmp(command, "GETSCANHOMEAWAYTIME", 19) == 0)
Varun Reddy Yeturu920df212013-05-22 08:07:23 -07003327 {
3328 tANI_U16 val = sme_getRoamScanHomeAwayTime((tHalHandle)(pHddCtx->hHal));
3329 char extra[32];
3330 tANI_U8 len = 0;
3331
Sameer Thalappilb0a30232013-09-27 15:37:48 -07003332 len = scnprintf(extra, sizeof(extra), "%s %d", command, val);
Varun Reddy Yeturu920df212013-05-22 08:07:23 -07003333 if (copy_to_user(priv_data.buf, &extra, len + 1))
3334 {
3335 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3336 "%s: failed to copy data to user buffer", __func__);
3337 ret = -EFAULT;
3338 goto exit;
3339 }
3340 }
3341 else if (strncmp(command, "REASSOC", 7) == 0)
3342 {
3343 tANI_U8 *value = command;
3344 tANI_U8 channel = 0;
3345 tSirMacAddr targetApBssid;
3346 eHalStatus status = eHAL_STATUS_SUCCESS;
Varun Reddy Yeturucc661d22013-05-20 11:47:10 -07003347#ifdef WLAN_FEATURE_ROAM_SCAN_OFFLOAD
3348 tCsrHandoffRequest handoffInfo;
3349#endif
Varun Reddy Yeturu920df212013-05-22 08:07:23 -07003350 hdd_station_ctx_t *pHddStaCtx = NULL;
Varun Reddy Yeturu920df212013-05-22 08:07:23 -07003351 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
3352
Varun Reddy Yeturu920df212013-05-22 08:07:23 -07003353 /* if not associated, no need to proceed with reassoc */
3354 if (eConnectionState_Associated != pHddStaCtx->conn_info.connState)
3355 {
3356 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO, "%s:Not associated!",__func__);
3357 ret = -EINVAL;
3358 goto exit;
3359 }
3360
3361 status = hdd_parse_reassoc_command_data(value, targetApBssid, &channel);
3362 if (eHAL_STATUS_SUCCESS != status)
3363 {
3364 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3365 "%s: Failed to parse reassoc command data", __func__);
3366 ret = -EINVAL;
3367 goto exit;
3368 }
3369
3370 /* if the target bssid is same as currently associated AP,
3371 then no need to proceed with reassoc */
3372 if (VOS_TRUE == vos_mem_compare(targetApBssid,
3373 pHddStaCtx->conn_info.bssId, sizeof(tSirMacAddr)))
3374 {
3375 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO, "%s:Reassoc BSSID is same as currently associated AP bssid",__func__);
3376 ret = -EINVAL;
3377 goto exit;
3378 }
3379
3380 /* Check channel number is a valid channel number */
3381 if(VOS_STATUS_SUCCESS !=
3382 wlan_hdd_validate_operation_channel(pAdapter, channel))
3383 {
3384 hddLog(VOS_TRACE_LEVEL_ERROR,
Arif Hussain6d2a3322013-11-17 19:50:10 -08003385 "%s: Invalid Channel [%d]", __func__, channel);
Varun Reddy Yeturu920df212013-05-22 08:07:23 -07003386 return -EINVAL;
3387 }
3388
3389 /* Proceed with reassoc */
Varun Reddy Yeturucc661d22013-05-20 11:47:10 -07003390#ifdef WLAN_FEATURE_ROAM_SCAN_OFFLOAD
3391 handoffInfo.channel = channel;
3392 vos_mem_copy(handoffInfo.bssid, targetApBssid, sizeof(tSirMacAddr));
3393 sme_HandoffRequest(pHddCtx->hHal, &handoffInfo);
3394#endif
Varun Reddy Yeturu920df212013-05-22 08:07:23 -07003395 }
Srinivas Girigowdaad34ca92013-10-22 10:54:29 -07003396 else if (strncmp(command, "SETWESMODE", 10) == 0)
3397 {
3398 tANI_U8 *value = command;
3399 tANI_BOOLEAN wesMode = CFG_ENABLE_WES_MODE_NAME_DEFAULT;
3400
3401 /* Move pointer to ahead of SETWESMODE<delimiter> */
3402 value = value + 11;
3403 /* Convert the value from ascii to integer */
3404 ret = kstrtou8(value, 10, &wesMode);
3405 if (ret < 0)
3406 {
3407 /* If the input value is greater than max value of datatype, then also
3408 kstrtou8 fails */
3409 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3410 "%s: kstrtou8 failed range [%d - %d]", __func__,
3411 CFG_ENABLE_WES_MODE_NAME_MIN,
3412 CFG_ENABLE_WES_MODE_NAME_MAX);
3413 ret = -EINVAL;
3414 goto exit;
3415 }
3416
3417 if ((wesMode < CFG_ENABLE_WES_MODE_NAME_MIN) ||
3418 (wesMode > CFG_ENABLE_WES_MODE_NAME_MAX))
3419 {
3420 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3421 "WES Mode value %d is out of range"
3422 " (Min: %d Max: %d)", wesMode,
3423 CFG_ENABLE_WES_MODE_NAME_MIN,
3424 CFG_ENABLE_WES_MODE_NAME_MAX);
3425 ret = -EINVAL;
3426 goto exit;
3427 }
3428 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
3429 "%s: Received Command to Set WES Mode rssi diff = %d", __func__, wesMode);
3430
3431 pHddCtx->cfg_ini->isWESModeEnabled = wesMode;
3432 sme_UpdateWESMode((tHalHandle)(pHddCtx->hHal), wesMode);
3433 }
Mahesh A Saptasagarec7d1092015-04-02 13:41:34 +05303434 else if (strncmp(command, "GETWESMODE", 10) == 0)
Srinivas Girigowdaad34ca92013-10-22 10:54:29 -07003435 {
3436 tANI_BOOLEAN wesMode = sme_GetWESMode((tHalHandle)(pHddCtx->hHal));
3437 char extra[32];
3438 tANI_U8 len = 0;
3439
Arif Hussain826d9412013-11-12 16:44:54 -08003440 len = scnprintf(extra, sizeof(extra), "%s %d", command, wesMode);
Srinivas Girigowdaad34ca92013-10-22 10:54:29 -07003441 if (copy_to_user(priv_data.buf, &extra, len + 1))
3442 {
3443 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3444 "%s: failed to copy data to user buffer", __func__);
3445 ret = -EFAULT;
3446 goto exit;
3447 }
3448 }
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08003449#endif /* WLAN_FEATURE_VOWIFI_11R || FEATURE_WLAN_ESE || FEATURE_WLAN_LFR */
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07003450#ifdef FEATURE_WLAN_LFR
3451 else if (strncmp(command, "SETFASTROAM", 11) == 0)
3452 {
3453 tANI_U8 *value = command;
3454 tANI_U8 lfrMode = CFG_LFR_FEATURE_ENABLED_DEFAULT;
3455
3456 /* Move pointer to ahead of SETFASTROAM<delimiter> */
3457 value = value + 12;
3458 /* Convert the value from ascii to integer */
3459 ret = kstrtou8(value, 10, &lfrMode);
3460 if (ret < 0)
3461 {
3462 /* If the input value is greater than max value of datatype, then also
3463 kstrtou8 fails */
3464 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3465 "%s: kstrtou8 failed range [%d - %d]", __func__,
3466 CFG_LFR_FEATURE_ENABLED_MIN,
3467 CFG_LFR_FEATURE_ENABLED_MAX);
3468 ret = -EINVAL;
3469 goto exit;
3470 }
3471
3472 if ((lfrMode < CFG_LFR_FEATURE_ENABLED_MIN) ||
3473 (lfrMode > CFG_LFR_FEATURE_ENABLED_MAX))
3474 {
3475 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3476 "lfr mode value %d is out of range"
3477 " (Min: %d Max: %d)", lfrMode,
3478 CFG_LFR_FEATURE_ENABLED_MIN,
3479 CFG_LFR_FEATURE_ENABLED_MAX);
3480 ret = -EINVAL;
3481 goto exit;
3482 }
3483
3484 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
3485 "%s: Received Command to change lfr mode = %d", __func__, lfrMode);
3486
3487 pHddCtx->cfg_ini->isFastRoamIniFeatureEnabled = lfrMode;
3488 sme_UpdateIsFastRoamIniFeatureEnabled((tHalHandle)(pHddCtx->hHal), lfrMode);
3489 }
3490#endif
3491#ifdef WLAN_FEATURE_VOWIFI_11R
3492 else if (strncmp(command, "SETFASTTRANSITION", 17) == 0)
3493 {
3494 tANI_U8 *value = command;
3495 tANI_U8 ft = CFG_FAST_TRANSITION_ENABLED_NAME_DEFAULT;
3496
3497 /* Move pointer to ahead of SETFASTROAM<delimiter> */
3498 value = value + 18;
3499 /* Convert the value from ascii to integer */
3500 ret = kstrtou8(value, 10, &ft);
3501 if (ret < 0)
3502 {
3503 /* If the input value is greater than max value of datatype, then also
3504 kstrtou8 fails */
3505 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3506 "%s: kstrtou8 failed range [%d - %d]", __func__,
3507 CFG_FAST_TRANSITION_ENABLED_NAME_MIN,
3508 CFG_FAST_TRANSITION_ENABLED_NAME_MAX);
3509 ret = -EINVAL;
3510 goto exit;
3511 }
3512
3513 if ((ft < CFG_FAST_TRANSITION_ENABLED_NAME_MIN) ||
3514 (ft > CFG_FAST_TRANSITION_ENABLED_NAME_MAX))
3515 {
3516 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3517 "ft mode value %d is out of range"
3518 " (Min: %d Max: %d)", ft,
3519 CFG_FAST_TRANSITION_ENABLED_NAME_MIN,
3520 CFG_FAST_TRANSITION_ENABLED_NAME_MAX);
3521 ret = -EINVAL;
3522 goto exit;
3523 }
3524
3525 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
3526 "%s: Received Command to change ft mode = %d", __func__, ft);
3527
3528 pHddCtx->cfg_ini->isFastTransitionEnabled = ft;
3529 sme_UpdateFastTransitionEnabled((tHalHandle)(pHddCtx->hHal), ft);
3530 }
Padma, Santhosh Kumar778d8382015-03-04 17:41:22 +05303531 else if (strncmp(command, "SETDFSSCANMODE", 14) == 0)
3532 {
3533 tANI_U8 *value = command;
3534 tANI_U8 dfsScanMode = DFS_CHNL_SCAN_ENABLED_NORMAL;
Madan Mohan Koyyalamudi48101412013-09-11 23:09:37 +05303535
Padma, Santhosh Kumar778d8382015-03-04 17:41:22 +05303536 /* Move pointer to ahead of SETDFSSCANMODE<delimiter> */
3537 value = value + 15;
3538 /* Convert the value from ascii to integer */
3539 ret = kstrtou8(value, 10, &dfsScanMode);
3540 if (ret < 0)
3541 {
3542 /* If the input value is greater than max value of
3543 datatype, then also kstrtou8 fails
3544 */
3545 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3546 "%s: kstrtou8 failed range [%d - %d]", __func__,
3547 CFG_ENABLE_DFS_CHNL_SCAN_MIN,
3548 CFG_ENABLE_DFS_CHNL_SCAN_MAX);
3549 ret = -EINVAL;
3550 goto exit;
3551 }
3552
3553 if ((dfsScanMode < CFG_ENABLE_DFS_CHNL_SCAN_MIN) ||
3554 (dfsScanMode > CFG_ENABLE_DFS_CHNL_SCAN_MAX))
3555 {
3556 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3557 "dfsScanMode value %d is out of range"
3558 " (Min: %d Max: %d)", dfsScanMode,
3559 CFG_ENABLE_DFS_CHNL_SCAN_MIN,
3560 CFG_ENABLE_DFS_CHNL_SCAN_MAX);
3561 ret = -EINVAL;
3562 goto exit;
3563 }
3564 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
3565 "%s: Received Command to Set DFS Scan Mode = %d",
3566 __func__, dfsScanMode);
3567
3568 ret = wlan_hdd_handle_dfs_chan_scan(pHddCtx, dfsScanMode);
3569 }
3570 else if (strncmp(command, "GETDFSSCANMODE", 14) == 0)
3571 {
3572 tANI_U8 dfsScanMode = sme_GetDFSScanMode(pHddCtx->hHal);
3573 char extra[32];
3574 tANI_U8 len = 0;
3575
3576 len = scnprintf(extra, sizeof(extra), "%s %d", command, dfsScanMode);
3577 if (copy_to_user(priv_data.buf, &extra, len + 1))
3578 {
3579 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3580 "%s: failed to copy data to user buffer", __func__);
3581 ret = -EFAULT;
3582 goto exit;
3583 }
3584 }
Madan Mohan Koyyalamudi48101412013-09-11 23:09:37 +05303585 else if (strncmp(command, "FASTREASSOC", 11) == 0)
3586 {
3587 tANI_U8 *value = command;
Padma, Santhosh Kumarf4582d32014-11-06 19:24:51 +05303588 tANI_U8 channel = 0;
Madan Mohan Koyyalamudi48101412013-09-11 23:09:37 +05303589 tSirMacAddr targetApBssid;
3590 tANI_U8 trigger = 0;
3591 eHalStatus status = eHAL_STATUS_SUCCESS;
Padma, Santhosh Kumarb980a6f2014-11-06 19:07:24 +05303592 tHalHandle hHal;
3593 v_U32_t roamId = 0;
3594 tCsrRoamModifyProfileFields modProfileFields;
Madan Mohan Koyyalamudi48101412013-09-11 23:09:37 +05303595 hdd_station_ctx_t *pHddStaCtx = NULL;
3596 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
Padma, Santhosh Kumarb980a6f2014-11-06 19:07:24 +05303597 hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
Madan Mohan Koyyalamudi48101412013-09-11 23:09:37 +05303598
3599 /* if not associated, no need to proceed with reassoc */
3600 if (eConnectionState_Associated != pHddStaCtx->conn_info.connState)
3601 {
3602 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO, "%s:Not associated!",__func__);
3603 ret = -EINVAL;
3604 goto exit;
3605 }
3606
Padma, Santhosh Kumarf4582d32014-11-06 19:24:51 +05303607 status = hdd_parse_reassoc_command_data(value, targetApBssid, &channel);
Madan Mohan Koyyalamudi48101412013-09-11 23:09:37 +05303608 if (eHAL_STATUS_SUCCESS != status)
3609 {
3610 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3611 "%s: Failed to parse reassoc command data", __func__);
3612 ret = -EINVAL;
3613 goto exit;
3614 }
3615
3616 /* if the target bssid is same as currently associated AP,
Padma, Santhosh Kumarb980a6f2014-11-06 19:07:24 +05303617 issue reassoc to same AP */
Madan Mohan Koyyalamudi48101412013-09-11 23:09:37 +05303618 if (VOS_TRUE == vos_mem_compare(targetApBssid,
3619 pHddStaCtx->conn_info.bssId, sizeof(tSirMacAddr)))
3620 {
3621 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
3622 "%s:11r Reassoc BSSID is same as currently associated AP bssid",
3623 __func__);
Padma, Santhosh Kumarb980a6f2014-11-06 19:07:24 +05303624 sme_GetModifyProfileFields(hHal, pAdapter->sessionId,
3625 &modProfileFields);
3626 sme_RoamReassoc(hHal, pAdapter->sessionId,
3627 NULL, modProfileFields, &roamId, 1);
3628 return 0;
Madan Mohan Koyyalamudi48101412013-09-11 23:09:37 +05303629 }
Padma, Santhosh Kumar0fa809b2014-11-13 14:56:56 +05303630
3631 /* Check channel number is a valid channel number */
3632 if(VOS_STATUS_SUCCESS !=
3633 wlan_hdd_validate_operation_channel(pAdapter, channel))
3634 {
3635 hddLog(VOS_TRACE_LEVEL_ERROR,
3636 "%s: Invalid Channel [%d]", __func__, channel);
3637 return -EINVAL;
3638 }
3639
Padma, Santhosh Kumarf4582d32014-11-06 19:24:51 +05303640 trigger = eSME_ROAM_TRIGGER_SCAN;
Madan Mohan Koyyalamudi48101412013-09-11 23:09:37 +05303641
3642 /* Proceed with scan/roam */
3643 smeIssueFastRoamNeighborAPEvent(WLAN_HDD_GET_HAL_CTX(pAdapter),
3644 &targetApBssid[0],
Mukul Sharma9e4e0f92015-02-13 18:45:20 +05303645 (tSmeFastRoamTrigger)(trigger),
3646 channel);
Madan Mohan Koyyalamudi48101412013-09-11 23:09:37 +05303647 }
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07003648#endif
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08003649#ifdef FEATURE_WLAN_ESE
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07003650 else if (strncmp(command, "SETCCXMODE", 10) == 0)
3651 {
3652 tANI_U8 *value = command;
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08003653 tANI_U8 eseMode = CFG_ESE_FEATURE_ENABLED_DEFAULT;
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07003654
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08003655 /* Check if the features OKC/ESE/11R are supported simultaneously,
Srinivas Girigowdac6745a32013-07-15 19:19:10 -07003656 then this operation is not permitted (return FAILURE) */
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08003657 if (sme_getIsEseFeatureEnabled((tHalHandle)(pHddCtx->hHal)) &&
Srinivas Girigowdac6745a32013-07-15 19:19:10 -07003658 hdd_is_okc_mode_enabled(pHddCtx) &&
3659 sme_getIsFtFeatureEnabled((tHalHandle)(pHddCtx->hHal)))
3660 {
3661 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_WARN,
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08003662 "%s: OKC/ESE/11R are supported simultaneously"
Srinivas Girigowdac6745a32013-07-15 19:19:10 -07003663 " hence this operation is not permitted!", __func__);
3664 ret = -EPERM;
3665 goto exit;
3666 }
3667
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07003668 /* Move pointer to ahead of SETCCXMODE<delimiter> */
3669 value = value + 11;
3670 /* Convert the value from ascii to integer */
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08003671 ret = kstrtou8(value, 10, &eseMode);
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07003672 if (ret < 0)
3673 {
3674 /* If the input value is greater than max value of datatype, then also
3675 kstrtou8 fails */
3676 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3677 "%s: kstrtou8 failed range [%d - %d]", __func__,
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08003678 CFG_ESE_FEATURE_ENABLED_MIN,
3679 CFG_ESE_FEATURE_ENABLED_MAX);
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07003680 ret = -EINVAL;
3681 goto exit;
3682 }
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08003683 if ((eseMode < CFG_ESE_FEATURE_ENABLED_MIN) ||
3684 (eseMode > CFG_ESE_FEATURE_ENABLED_MAX))
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07003685 {
3686 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08003687 "Ese mode value %d is out of range"
3688 " (Min: %d Max: %d)", eseMode,
3689 CFG_ESE_FEATURE_ENABLED_MIN,
3690 CFG_ESE_FEATURE_ENABLED_MAX);
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07003691 ret = -EINVAL;
3692 goto exit;
3693 }
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07003694 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08003695 "%s: Received Command to change ese mode = %d", __func__, eseMode);
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07003696
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08003697 pHddCtx->cfg_ini->isEseIniFeatureEnabled = eseMode;
3698 sme_UpdateIsEseFeatureEnabled((tHalHandle)(pHddCtx->hHal), eseMode);
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07003699 }
3700#endif
Srinivas Girigowda100eb322013-03-15 16:48:20 -07003701 else if (strncmp(command, "SETROAMSCANCONTROL", 18) == 0)
3702 {
3703 tANI_U8 *value = command;
3704 tANI_BOOLEAN roamScanControl = 0;
3705
3706 /* Move pointer to ahead of SETROAMSCANCONTROL<delimiter> */
3707 value = value + 19;
3708 /* Convert the value from ascii to integer */
3709 ret = kstrtou8(value, 10, &roamScanControl);
3710 if (ret < 0)
3711 {
3712 /* If the input value is greater than max value of datatype, then also
3713 kstrtou8 fails */
3714 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3715 "%s: kstrtou8 failed ", __func__);
3716 ret = -EINVAL;
3717 goto exit;
3718 }
3719
3720 if (0 != roamScanControl)
3721 {
3722 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3723 "roam scan control invalid value = %d",
3724 roamScanControl);
3725 ret = -EINVAL;
3726 goto exit;
3727 }
3728 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
3729 "%s: Received Command to Set roam scan control = %d", __func__, roamScanControl);
3730
3731 sme_SetRoamScanControl((tHalHandle)(pHddCtx->hHal), roamScanControl);
3732 }
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07003733#ifdef FEATURE_WLAN_OKC
3734 else if (strncmp(command, "SETOKCMODE", 10) == 0)
3735 {
3736 tANI_U8 *value = command;
3737 tANI_U8 okcMode = CFG_OKC_FEATURE_ENABLED_DEFAULT;
3738
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08003739 /* Check if the features OKC/ESE/11R are supported simultaneously,
Srinivas Girigowdac6745a32013-07-15 19:19:10 -07003740 then this operation is not permitted (return FAILURE) */
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08003741 if (sme_getIsEseFeatureEnabled((tHalHandle)(pHddCtx->hHal)) &&
Srinivas Girigowdac6745a32013-07-15 19:19:10 -07003742 hdd_is_okc_mode_enabled(pHddCtx) &&
3743 sme_getIsFtFeatureEnabled((tHalHandle)(pHddCtx->hHal)))
3744 {
3745 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_WARN,
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08003746 "%s: OKC/ESE/11R are supported simultaneously"
Srinivas Girigowdac6745a32013-07-15 19:19:10 -07003747 " hence this operation is not permitted!", __func__);
3748 ret = -EPERM;
3749 goto exit;
3750 }
3751
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07003752 /* Move pointer to ahead of SETOKCMODE<delimiter> */
3753 value = value + 11;
3754 /* Convert the value from ascii to integer */
3755 ret = kstrtou8(value, 10, &okcMode);
3756 if (ret < 0)
3757 {
3758 /* If the input value is greater than max value of datatype, then also
3759 kstrtou8 fails */
3760 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3761 "%s: kstrtou8 failed range [%d - %d]", __func__,
3762 CFG_OKC_FEATURE_ENABLED_MIN,
3763 CFG_OKC_FEATURE_ENABLED_MAX);
3764 ret = -EINVAL;
3765 goto exit;
3766 }
3767
3768 if ((okcMode < CFG_OKC_FEATURE_ENABLED_MIN) ||
3769 (okcMode > CFG_OKC_FEATURE_ENABLED_MAX))
3770 {
3771 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3772 "Okc mode value %d is out of range"
3773 " (Min: %d Max: %d)", okcMode,
3774 CFG_OKC_FEATURE_ENABLED_MIN,
3775 CFG_OKC_FEATURE_ENABLED_MAX);
3776 ret = -EINVAL;
3777 goto exit;
3778 }
3779
3780 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
3781 "%s: Received Command to change okc mode = %d", __func__, okcMode);
3782
3783 pHddCtx->cfg_ini->isOkcIniFeatureEnabled = okcMode;
3784 }
Srinivas Girigowdaad34ca92013-10-22 10:54:29 -07003785#endif /* FEATURE_WLAN_OKC */
Mahesh A Saptasagarec7d1092015-04-02 13:41:34 +05303786 else if (strncmp(command, "GETROAMSCANCONTROL", 18) == 0)
Srinivas Girigowda100eb322013-03-15 16:48:20 -07003787 {
3788 tANI_BOOLEAN roamScanControl = sme_GetRoamScanControl((tHalHandle)(pHddCtx->hHal));
3789 char extra[32];
3790 tANI_U8 len = 0;
3791
Sameer Thalappilb0a30232013-09-27 15:37:48 -07003792 len = scnprintf(extra, sizeof(extra), "%s %d",
3793 command, roamScanControl);
Srinivas Girigowda100eb322013-03-15 16:48:20 -07003794 if (copy_to_user(priv_data.buf, &extra, len + 1))
3795 {
3796 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3797 "%s: failed to copy data to user buffer", __func__);
3798 ret = -EFAULT;
3799 goto exit;
3800 }
3801 }
Gopichand Nakkala227c7f32013-06-26 22:44:57 +05303802#ifdef WLAN_FEATURE_PACKET_FILTERING
3803 else if (strncmp(command, "ENABLE_PKTFILTER_IPV6", 21) == 0)
3804 {
3805 tANI_U8 filterType = 0;
3806 tANI_U8 *value = command;
3807
3808 /* Move pointer to ahead of ENABLE_PKTFILTER_IPV6<delimiter> */
3809 value = value + 22;
3810
3811 /* Convert the value from ascii to integer */
3812 ret = kstrtou8(value, 10, &filterType);
3813 if (ret < 0)
3814 {
3815 /* If the input value is greater than max value of datatype,
3816 * then also kstrtou8 fails
3817 */
3818 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3819 "%s: kstrtou8 failed range ", __func__);
3820 ret = -EINVAL;
3821 goto exit;
3822 }
3823
3824 if (filterType != 0 && filterType != 1)
3825 {
3826 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3827 "%s: Accepted Values are 0 and 1 ", __func__);
3828 ret = -EINVAL;
3829 goto exit;
3830 }
3831 wlan_hdd_setIPv6Filter(WLAN_HDD_GET_CTX(pAdapter), filterType,
3832 pAdapter->sessionId);
3833 }
3834#endif
Sundaresan Ramachandran76e48e82013-07-15 13:07:17 +05303835 else if (strncmp(command, "BTCOEXMODE", 10) == 0 )
3836 {
Kiet Lamad161252014-07-22 11:23:32 -07003837 char *dhcpPhase;
Satyanarayana Dash1faea4f2014-09-22 16:21:04 +05303838 int ret;
3839
Kiet Lamad161252014-07-22 11:23:32 -07003840 dhcpPhase = command + 11;
3841 if ('1' == *dhcpPhase)
Sundaresan Ramachandran76e48e82013-07-15 13:07:17 +05303842 {
Deepthi Gowribfd17132014-11-14 17:59:04 +05303843 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Kiet Lamad161252014-07-22 11:23:32 -07003844 FL("send DHCP START indication"));
c_hpothu9b781ba2013-12-30 20:57:45 +05303845
3846 pHddCtx->btCoexModeSet = TRUE;
Kiet Lamad161252014-07-22 11:23:32 -07003847
Satyanarayana Dash1faea4f2014-09-22 16:21:04 +05303848 ret = wlan_hdd_scan_abort(pAdapter);
3849 if (ret < 0)
3850 {
3851 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3852 FL("failed to abort existing scan %d"), ret);
3853 }
3854
Kiet Lamad161252014-07-22 11:23:32 -07003855 sme_DHCPStartInd(pHddCtx->hHal, pAdapter->device_mode,
3856 pAdapter->sessionId);
Sundaresan Ramachandran76e48e82013-07-15 13:07:17 +05303857 }
Kiet Lamad161252014-07-22 11:23:32 -07003858 else if ('2' == *dhcpPhase)
Sundaresan Ramachandran76e48e82013-07-15 13:07:17 +05303859 {
Deepthi Gowribfd17132014-11-14 17:59:04 +05303860 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Kiet Lamad161252014-07-22 11:23:32 -07003861 FL("send DHCP STOP indication"));
c_hpothu9b781ba2013-12-30 20:57:45 +05303862
3863 pHddCtx->btCoexModeSet = FALSE;
Kiet Lamad161252014-07-22 11:23:32 -07003864
3865 sme_DHCPStopInd(pHddCtx->hHal, pAdapter->device_mode,
3866 pAdapter->sessionId);
Sundaresan Ramachandran76e48e82013-07-15 13:07:17 +05303867 }
3868 }
Jeff Johnsonf54df2c2013-07-24 11:43:39 -07003869 else if (strncmp(command, "SCAN-ACTIVE", 11) == 0)
3870 {
c_hpothudbefd3e2014-04-28 15:59:47 +05303871 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3872 FL("making default scan to ACTIVE"));
3873 pHddCtx->scan_info.scan_mode = eSIR_ACTIVE_SCAN;
Jeff Johnsonf54df2c2013-07-24 11:43:39 -07003874 }
3875 else if (strncmp(command, "SCAN-PASSIVE", 12) == 0)
3876 {
c_hpothudbefd3e2014-04-28 15:59:47 +05303877 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3878 FL("making default scan to PASSIVE"));
3879 pHddCtx->scan_info.scan_mode = eSIR_PASSIVE_SCAN;
Jeff Johnsonf54df2c2013-07-24 11:43:39 -07003880 }
Hanumantha Reddy Pothula212243c2013-08-01 17:28:31 +05303881 else if (strncmp(command, "GETDWELLTIME", 12) == 0)
3882 {
3883 hdd_config_t *pCfg = (WLAN_HDD_GET_CTX(pAdapter))->cfg_ini;
3884 char extra[32];
3885 tANI_U8 len = 0;
3886
Rajesh Babu Prathipatic7baf6f2014-05-30 10:08:16 +05303887 memset(extra, 0, sizeof(extra));
3888 ret = hdd_get_dwell_time(pCfg, command, extra, sizeof(extra), &len);
3889 if (ret != 0 || copy_to_user(priv_data.buf, &extra, len + 1))
Hanumantha Reddy Pothula212243c2013-08-01 17:28:31 +05303890 {
3891 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3892 "%s: failed to copy data to user buffer", __func__);
3893 ret = -EFAULT;
3894 goto exit;
3895 }
3896 ret = len;
3897 }
3898 else if (strncmp(command, "SETDWELLTIME", 12) == 0)
3899 {
Rajesh Babu Prathipatic7baf6f2014-05-30 10:08:16 +05303900 ret = hdd_set_dwell_time(pAdapter, command);
Hanumantha Reddy Pothula212243c2013-08-01 17:28:31 +05303901 }
Sudhir Sattayappa Kohalli37620692013-08-05 14:02:26 -07003902 else if ( strncasecmp(command, "MIRACAST", 8) == 0 )
3903 {
3904 tANI_U8 filterType = 0;
3905 tANI_U8 *value;
3906 value = command + 9;
3907
3908 /* Convert the value from ascii to integer */
3909 ret = kstrtou8(value, 10, &filterType);
3910 if (ret < 0)
3911 {
3912 /* If the input value is greater than max value of datatype,
3913 * then also kstrtou8 fails
3914 */
3915 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3916 "%s: kstrtou8 failed range ", __func__);
3917 ret = -EINVAL;
3918 goto exit;
3919 }
3920 if ((filterType < WLAN_HDD_DRIVER_MIRACAST_CFG_MIN_VAL ) ||
3921 (filterType > WLAN_HDD_DRIVER_MIRACAST_CFG_MAX_VAL))
3922 {
3923 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3924 "%s: Accepted Values are 0 to 2. 0-Disabled, 1-Source,"
3925 " 2-Sink ", __func__);
3926 ret = -EINVAL;
3927 goto exit;
3928 }
3929 //Filtertype value should be either 0-Disabled, 1-Source, 2-sink
3930 pHddCtx->drvr_miracast = filterType;
Kaushik, Sushant96122442014-10-21 16:40:18 +05303931 pScanInfo = &pHddCtx->scan_info;
3932 if (filterType && pScanInfo != NULL &&
3933 pHddCtx->scan_info.mScanPending)
3934 {
3935 /*Miracast Session started. Abort Scan */
3936 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
3937 "%s, Aborting Scan For Miracast",__func__);
3938 hdd_abort_mac_scan(pHddCtx, pScanInfo->sessionId,
3939 eCSR_SCAN_ABORT_DEFAULT);
3940 }
Sudhir Sattayappa Kohalli37620692013-08-05 14:02:26 -07003941 hdd_tx_rx_pkt_cnt_stat_timer_handler(pHddCtx);
Ganesh Kondabattini8f6e3b32014-08-25 16:07:54 +05303942 sme_SetMiracastMode(pHddCtx->hHal, pHddCtx->drvr_miracast);
Sudhir Sattayappa Kohalli37620692013-08-05 14:02:26 -07003943 }
Leo Chang614d2072013-08-22 14:59:44 -07003944 else if (strncmp(command, "SETMCRATE", 9) == 0)
3945 {
Leo Chang614d2072013-08-22 14:59:44 -07003946 tANI_U8 *value = command;
3947 int targetRate;
Leo Chang1f98cbd2013-10-17 15:03:52 -07003948 tSirRateUpdateInd *rateUpdate;
3949 eHalStatus status;
Leo Chang614d2072013-08-22 14:59:44 -07003950
3951 /* Only valid for SAP mode */
3952 if (WLAN_HDD_SOFTAP != pAdapter->device_mode)
3953 {
3954 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3955 "%s: SAP mode is not running", __func__);
3956 ret = -EFAULT;
3957 goto exit;
3958 }
3959
3960 /* Move pointer to ahead of SETMCRATE<delimiter> */
3961 /* input value is in units of hundred kbps */
3962 value = value + 10;
3963 /* Convert the value from ascii to integer, decimal base */
3964 ret = kstrtouint(value, 10, &targetRate);
3965
Leo Chang1f98cbd2013-10-17 15:03:52 -07003966 rateUpdate = (tSirRateUpdateInd *)vos_mem_malloc(sizeof(tSirRateUpdateInd));
3967 if (NULL == rateUpdate)
Leo Chang614d2072013-08-22 14:59:44 -07003968 {
Leo Chang1f98cbd2013-10-17 15:03:52 -07003969 hddLog(VOS_TRACE_LEVEL_ERROR,
3970 "%s: SETMCRATE indication alloc fail", __func__);
3971 ret = -EFAULT;
3972 goto exit;
3973 }
3974 vos_mem_zero(rateUpdate, sizeof(tSirRateUpdateInd ));
3975
3976 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
3977 "MC Target rate %d", targetRate);
3978 /* Ignore unicast */
3979 rateUpdate->ucastDataRate = -1;
3980 rateUpdate->mcastDataRate24GHz = targetRate;
3981 rateUpdate->mcastDataRate5GHz = targetRate;
3982 rateUpdate->mcastDataRate24GHzTxFlag = 0;
3983 rateUpdate->mcastDataRate5GHzTxFlag = 0;
3984 status = sme_SendRateUpdateInd(pHddCtx->hHal, rateUpdate);
3985 if (eHAL_STATUS_SUCCESS != status)
3986 {
3987 hddLog(VOS_TRACE_LEVEL_ERROR,
3988 "%s: SET_MC_RATE failed", __func__);
3989 vos_mem_free(rateUpdate);
3990 ret = -EFAULT;
3991 goto exit;
Leo Chang614d2072013-08-22 14:59:44 -07003992 }
3993 }
Rajeev79dbe4c2013-10-05 11:03:42 +05303994#ifdef FEATURE_WLAN_BATCH_SCAN
Rajeev Kumar8b373292014-01-08 20:36:55 -08003995 else if (strncmp(command, "WLS_BATCHING", 12) == 0)
Rajeev79dbe4c2013-10-05 11:03:42 +05303996 {
Rajeev Kumar8b373292014-01-08 20:36:55 -08003997 ret = hdd_handle_batch_scan_ioctl(pAdapter, &priv_data, command);
Rajeev79dbe4c2013-10-05 11:03:42 +05303998 }
3999#endif
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08004000#if defined(FEATURE_WLAN_ESE) && defined(FEATURE_WLAN_ESE_UPLOAD)
Srinivas Girigowda5cecb202013-10-08 09:13:25 -07004001 else if (strncmp(command, "SETCCXROAMSCANCHANNELS", 22) == 0)
4002 {
4003 tANI_U8 *value = command;
4004 tANI_U8 ChannelList[WNI_CFG_VALID_CHANNEL_LIST_LEN] = {0};
4005 tANI_U8 numChannels = 0;
4006 eHalStatus status = eHAL_STATUS_SUCCESS;
4007
4008 status = hdd_parse_channellist(value, ChannelList, &numChannels);
4009 if (eHAL_STATUS_SUCCESS != status)
4010 {
4011 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
4012 "%s: Failed to parse channel list information", __func__);
4013 ret = -EINVAL;
4014 goto exit;
4015 }
4016
4017 if (numChannels > WNI_CFG_VALID_CHANNEL_LIST_LEN)
4018 {
4019 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
4020 "%s: number of channels (%d) supported exceeded max (%d)", __func__,
4021 numChannels, WNI_CFG_VALID_CHANNEL_LIST_LEN);
4022 ret = -EINVAL;
4023 goto exit;
4024 }
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08004025 status = sme_SetEseRoamScanChannelList((tHalHandle)(pHddCtx->hHal),
Srinivas Girigowda5cecb202013-10-08 09:13:25 -07004026 ChannelList,
4027 numChannels);
4028 if (eHAL_STATUS_SUCCESS != status)
4029 {
4030 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
4031 "%s: Failed to update channel list information", __func__);
4032 ret = -EINVAL;
4033 goto exit;
4034 }
4035 }
4036 else if (strncmp(command, "GETTSMSTATS", 11) == 0)
4037 {
4038 tANI_U8 *value = command;
4039 char extra[128] = {0};
4040 int len = 0;
4041 tANI_U8 tid = 0;
4042 hdd_station_ctx_t *pHddStaCtx = NULL;
4043 tAniTrafStrmMetrics tsmMetrics;
4044 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
4045
4046 /* if not associated, return error */
4047 if (eConnectionState_Associated != pHddStaCtx->conn_info.connState)
4048 {
4049 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR, "%s:Not associated!",__func__);
4050 ret = -EINVAL;
4051 goto exit;
4052 }
4053
4054 /* Move pointer to ahead of GETTSMSTATS<delimiter> */
4055 value = value + 12;
4056 /* Convert the value from ascii to integer */
4057 ret = kstrtou8(value, 10, &tid);
4058 if (ret < 0)
4059 {
4060 /* If the input value is greater than max value of datatype, then also
4061 kstrtou8 fails */
4062 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
4063 "%s: kstrtou8 failed range [%d - %d]", __func__,
4064 TID_MIN_VALUE,
4065 TID_MAX_VALUE);
4066 ret = -EINVAL;
4067 goto exit;
4068 }
4069
4070 if ((tid < TID_MIN_VALUE) || (tid > TID_MAX_VALUE))
4071 {
4072 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
4073 "tid value %d is out of range"
4074 " (Min: %d Max: %d)", tid,
4075 TID_MIN_VALUE,
4076 TID_MAX_VALUE);
4077 ret = -EINVAL;
4078 goto exit;
4079 }
4080
4081 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
4082 "%s: Received Command to get tsm stats tid = %d", __func__, tid);
4083
4084 if (VOS_STATUS_SUCCESS != hdd_get_tsm_stats(pAdapter, tid, &tsmMetrics))
4085 {
4086 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
4087 "%s: failed to get tsm stats", __func__);
4088 ret = -EFAULT;
4089 goto exit;
4090 }
4091
4092 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
4093 "UplinkPktQueueDly(%d)\n"
4094 "UplinkPktQueueDlyHist[0](%d)\n"
4095 "UplinkPktQueueDlyHist[1](%d)\n"
4096 "UplinkPktQueueDlyHist[2](%d)\n"
4097 "UplinkPktQueueDlyHist[3](%d)\n"
Arun Kumar Khandavallie8768212014-02-17 16:43:34 +05304098 "UplinkPktTxDly(%u)\n"
Srinivas Girigowda5cecb202013-10-08 09:13:25 -07004099 "UplinkPktLoss(%d)\n"
4100 "UplinkPktCount(%d)\n"
4101 "RoamingCount(%d)\n"
4102 "RoamingDly(%d)", tsmMetrics.UplinkPktQueueDly,
4103 tsmMetrics.UplinkPktQueueDlyHist[0],
4104 tsmMetrics.UplinkPktQueueDlyHist[1],
4105 tsmMetrics.UplinkPktQueueDlyHist[2],
4106 tsmMetrics.UplinkPktQueueDlyHist[3],
4107 tsmMetrics.UplinkPktTxDly, tsmMetrics.UplinkPktLoss,
4108 tsmMetrics.UplinkPktCount, tsmMetrics.RoamingCount, tsmMetrics.RoamingDly);
4109
4110 /* Output TSM stats is of the format
4111 GETTSMSTATS [PktQueueDly] [PktQueueDlyHist[0]]:[PktQueueDlyHist[1]] ...[RoamingDly]
4112 eg., GETTSMSTATS 10 1:0:0:161 20 1 17 8 39800 */
Srinivas Girigowda91ccbe82013-11-10 16:37:38 -08004113 len = scnprintf(extra, sizeof(extra), "%s %d %d:%d:%d:%d %u %d %d %d %d", command,
Srinivas Girigowda5cecb202013-10-08 09:13:25 -07004114 tsmMetrics.UplinkPktQueueDly, tsmMetrics.UplinkPktQueueDlyHist[0],
4115 tsmMetrics.UplinkPktQueueDlyHist[1], tsmMetrics.UplinkPktQueueDlyHist[2],
4116 tsmMetrics.UplinkPktQueueDlyHist[3], tsmMetrics.UplinkPktTxDly,
4117 tsmMetrics.UplinkPktLoss, tsmMetrics.UplinkPktCount, tsmMetrics.RoamingCount,
4118 tsmMetrics.RoamingDly);
4119
4120 if (copy_to_user(priv_data.buf, &extra, len + 1))
4121 {
4122 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
4123 "%s: failed to copy data to user buffer", __func__);
4124 ret = -EFAULT;
4125 goto exit;
4126 }
4127 }
4128 else if (strncmp(command, "SETCCKMIE", 9) == 0)
4129 {
4130 tANI_U8 *value = command;
4131 tANI_U8 *cckmIe = NULL;
4132 tANI_U8 cckmIeLen = 0;
4133 eHalStatus status = eHAL_STATUS_SUCCESS;
4134
4135 status = hdd_parse_get_cckm_ie(value, &cckmIe, &cckmIeLen);
4136 if (eHAL_STATUS_SUCCESS != status)
4137 {
4138 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
4139 "%s: Failed to parse cckm ie data", __func__);
4140 ret = -EINVAL;
4141 goto exit;
4142 }
4143
4144 if (cckmIeLen > DOT11F_IE_RSN_MAX_LEN)
4145 {
4146 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
4147 "%s: CCKM Ie input length is more than max[%d]", __func__,
4148 DOT11F_IE_RSN_MAX_LEN);
Srinivas Girigowda8d2348f2013-12-12 12:14:15 -08004149 vos_mem_free(cckmIe);
4150 cckmIe = NULL;
Srinivas Girigowda5cecb202013-10-08 09:13:25 -07004151 ret = -EINVAL;
4152 goto exit;
4153 }
4154 sme_SetCCKMIe((tHalHandle)(pHddCtx->hHal), pAdapter->sessionId, cckmIe, cckmIeLen);
Srinivas Girigowda8d2348f2013-12-12 12:14:15 -08004155 vos_mem_free(cckmIe);
4156 cckmIe = NULL;
Srinivas Girigowda5cecb202013-10-08 09:13:25 -07004157 }
Srinivas Girigowda91ccbe82013-11-10 16:37:38 -08004158 else if (strncmp(command, "CCXBEACONREQ", 12) == 0)
4159 {
4160 tANI_U8 *value = command;
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08004161 tCsrEseBeaconReq eseBcnReq;
Srinivas Girigowda91ccbe82013-11-10 16:37:38 -08004162 eHalStatus status = eHAL_STATUS_SUCCESS;
Srinivas Girigowda0c6d7fe2014-05-28 18:18:10 -07004163
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08004164 status = hdd_parse_ese_beacon_req(value, &eseBcnReq);
Srinivas Girigowda91ccbe82013-11-10 16:37:38 -08004165 if (eHAL_STATUS_SUCCESS != status)
4166 {
4167 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08004168 "%s: Failed to parse ese beacon req", __func__);
Srinivas Girigowda91ccbe82013-11-10 16:37:38 -08004169 ret = -EINVAL;
4170 goto exit;
4171 }
Srinivas Girigowda0c6d7fe2014-05-28 18:18:10 -07004172 if (!hdd_connIsConnected(WLAN_HDD_GET_STATION_CTX_PTR(pAdapter))) {
4173 hddLog(VOS_TRACE_LEVEL_INFO, FL("Not associated"));
4174 hdd_indicateEseBcnReportNoResults (pAdapter,
4175 eseBcnReq.bcnReq[0].measurementToken,
4176 0x02, //BIT(1) set for measurement done
4177 0); // no BSS
4178 goto exit;
4179 }
Srinivas Girigowda91ccbe82013-11-10 16:37:38 -08004180
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08004181 status = sme_SetEseBeaconRequest((tHalHandle)(pHddCtx->hHal), pAdapter->sessionId, &eseBcnReq);
4182 if (eHAL_STATUS_SUCCESS != status)
4183 {
4184 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
4185 "%s: sme_SetEseBeaconRequest failed (%d)", __func__, status);
4186 ret = -EINVAL;
4187 goto exit;
4188 }
Srinivas Girigowda91ccbe82013-11-10 16:37:38 -08004189 }
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08004190#endif /* FEATURE_WLAN_ESE && FEATURE_WLAN_ESE_UPLOAD */
c_hpothu92367912014-05-01 15:18:17 +05304191 else if (strncmp(command, "GETBCNMISSRATE", 14) == 0)
4192 {
4193 eHalStatus status;
4194 char buf[32], len;
4195 long waitRet;
4196 bcnMissRateContext_t getBcnMissRateCtx;
4197
4198 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
4199
4200 if (eConnectionState_Associated != pHddStaCtx->conn_info.connState)
4201 {
4202 hddLog(VOS_TRACE_LEVEL_WARN,
4203 FL("GETBCNMISSRATE: STA is not in connected state"));
4204 ret = -1;
4205 goto exit;
4206 }
4207
4208 init_completion(&(getBcnMissRateCtx.completion));
4209 getBcnMissRateCtx.magic = BCN_MISS_RATE_CONTEXT_MAGIC;
4210
4211 status = sme_getBcnMissRate((tHalHandle)(pHddCtx->hHal),
4212 pAdapter->sessionId,
4213 (void *)getBcnMissRateCB,
4214 (void *)(&getBcnMissRateCtx));
4215 if( eHAL_STATUS_SUCCESS != status)
4216 {
4217 hddLog(VOS_TRACE_LEVEL_INFO,
4218 FL("GETBCNMISSRATE: fail to post WDA cmd"));
4219 ret = -EINVAL;
4220 goto exit;
4221 }
4222
4223 waitRet = wait_for_completion_interruptible_timeout
4224 (&getBcnMissRateCtx.completion, BCN_MISS_RATE_TIME);
4225 if(waitRet <= 0)
4226 {
4227 hddLog(VOS_TRACE_LEVEL_ERROR,
4228 FL("failed to wait on bcnMissRateComp %d"), ret);
4229
4230 //Make magic number to zero so that callback is not called.
4231 spin_lock(&hdd_context_lock);
4232 getBcnMissRateCtx.magic = 0x0;
4233 spin_unlock(&hdd_context_lock);
4234 ret = -EINVAL;
4235 goto exit;
4236 }
4237
4238 hddLog(VOS_TRACE_LEVEL_INFO,
4239 FL("GETBCNMISSRATE: bcnMissRate: %d"), gbcnMissRate);
4240
4241 len = snprintf(buf, sizeof(buf), "GETBCNMISSRATE %d", gbcnMissRate);
4242 if (copy_to_user(priv_data.buf, &buf, len + 1))
4243 {
4244 hddLog(VOS_TRACE_LEVEL_ERROR,
4245 "%s: failed to copy data to user buffer", __func__);
4246 ret = -EFAULT;
4247 goto exit;
4248 }
4249 ret = len;
4250 }
Atul Mittal87ec2422014-09-24 13:12:50 +05304251#ifdef FEATURE_WLAN_TDLS
4252 else if (strncmp(command, "TDLSSECONDARYCHANNELOFFSET", 26) == 0) {
4253 tANI_U8 *value = command;
4254 int set_value;
4255 /* Move pointer to ahead of TDLSOFFCH*/
4256 value += 26;
4257 sscanf(value, "%d", &set_value);
4258 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
4259 "%s: Tdls offchannel offset:%d",
4260 __func__, set_value);
4261 ret = iw_set_tdlssecoffchanneloffset(pHddCtx, set_value);
4262 if (ret < 0)
4263 {
4264 ret = -EINVAL;
4265 goto exit;
4266 }
4267
4268 } else if (strncmp(command, "TDLSOFFCHANNELMODE", 18) == 0) {
4269 tANI_U8 *value = command;
4270 int set_value;
4271 /* Move pointer to ahead of tdlsoffchnmode*/
4272 value += 18;
4273 sscanf(value, "%d", &set_value);
4274 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
4275 "%s: Tdls offchannel mode:%d",
4276 __func__, set_value);
4277 ret = iw_set_tdlsoffchannelmode(pAdapter, set_value);
4278 if (ret < 0)
4279 {
4280 ret = -EINVAL;
4281 goto exit;
4282 }
4283 } else if (strncmp(command, "TDLSOFFCHANNEL", 14) == 0) {
4284 tANI_U8 *value = command;
4285 int set_value;
4286 /* Move pointer to ahead of TDLSOFFCH*/
4287 value += 14;
4288 sscanf(value, "%d", &set_value);
4289 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
4290 "%s: Tdls offchannel num: %d",
4291 __func__, set_value);
4292 ret = iw_set_tdlsoffchannel(pHddCtx, set_value);
4293 if (ret < 0)
4294 {
4295 ret = -EINVAL;
4296 goto exit;
4297 }
4298 }
4299#endif
Satyanarayana Dash72806012014-12-02 14:30:08 +05304300 else if (strncmp(command, "GETFWSTATS", 10) == 0)
4301 {
4302 eHalStatus status;
4303 char *buf = NULL;
4304 char len;
4305 long waitRet;
4306 fwStatsContext_t fwStatsCtx;
Abhishek Singh08aa7762014-12-16 13:59:03 +05304307 tSirFwStatsResult *fwStatsRsp = &(pAdapter->fwStatsRsp);
Satyanarayana Dash72806012014-12-02 14:30:08 +05304308 tANI_U8 *ptr = command;
4309 int stats = *(ptr + 11) - '0';
4310
4311 hddLog(VOS_TRACE_LEVEL_INFO, FL("stats = %d "),stats);
4312 if (!IS_FEATURE_FW_STATS_ENABLE)
4313 {
4314 hddLog(VOS_TRACE_LEVEL_INFO,
4315 FL("Get Firmware stats feature not supported"));
4316 ret = -EINVAL;
4317 goto exit;
4318 }
4319
4320 if (FW_STATS_MAX <= stats || 0 >= stats)
4321 {
4322 hddLog(VOS_TRACE_LEVEL_INFO,
4323 FL(" stats %d not supported"),stats);
4324 ret = -EINVAL;
4325 goto exit;
4326 }
4327
4328 init_completion(&(fwStatsCtx.completion));
4329 fwStatsCtx.magic = FW_STATS_CONTEXT_MAGIC;
4330 fwStatsCtx.pAdapter = pAdapter;
4331 fwStatsRsp->type = 0;
4332 status = sme_GetFwStats( (tHalHandle)pHddCtx->hHal, stats,
Abhishek Singh08aa7762014-12-16 13:59:03 +05304333 &fwStatsCtx, hdd_FWStatisCB);
Satyanarayana Dash72806012014-12-02 14:30:08 +05304334 if (eHAL_STATUS_SUCCESS != status)
4335 {
4336 hddLog(VOS_TRACE_LEVEL_ERROR,
4337 FL(" fail to post WDA cmd status = %d"), status);
4338 ret = -EINVAL;
4339 goto exit;
4340 }
4341 waitRet = wait_for_completion_timeout
4342 (&(fwStatsCtx.completion), FW_STATE_WAIT_TIME);
4343 if (waitRet <= 0)
4344 {
4345 hddLog(VOS_TRACE_LEVEL_ERROR,
4346 FL("failed to wait on GwtFwstats"));
4347 //Make magic number to zero so that callback is not executed.
4348 spin_lock(&hdd_context_lock);
4349 fwStatsCtx.magic = 0x0;
4350 spin_unlock(&hdd_context_lock);
4351 ret = -EINVAL;
4352 goto exit;
4353 }
4354 if (fwStatsRsp->type)
4355 {
4356 buf = kmalloc(FW_STATE_RSP_LEN, GFP_KERNEL);
4357 if (!buf)
4358 {
4359 hddLog(VOS_TRACE_LEVEL_ERROR,
4360 FL(" failed to allocate memory"));
4361 ret = -ENOMEM;
4362 goto exit;
4363 }
4364 switch( fwStatsRsp->type )
4365 {
4366 case FW_UBSP_STATS:
4367 {
4368 len = snprintf(buf, FW_STATE_RSP_LEN,
4369 "GETFWSTATS: ubsp_enter_cnt %d ubsp_jump_ddr_cnt %d",
Abhishek Singh08aa7762014-12-16 13:59:03 +05304370 fwStatsRsp->fwStatsData.ubspStats.ubsp_enter_cnt,
4371 fwStatsRsp->fwStatsData.ubspStats.ubsp_jump_ddr_cnt);
Satyanarayana Dash72806012014-12-02 14:30:08 +05304372 }
4373 break;
4374 default:
4375 {
4376 hddLog(VOS_TRACE_LEVEL_ERROR, FL( "No handling for stats type %d"),fwStatsRsp->type);
4377 ret = -EFAULT;
4378 kfree(buf);
4379 goto exit;
4380 }
4381 }
4382 if (copy_to_user(priv_data.buf, buf, len + 1))
4383 {
4384 hddLog(VOS_TRACE_LEVEL_ERROR,
4385 FL(" failed to copy data to user buffer"));
4386 ret = -EFAULT;
4387 kfree(buf);
4388 goto exit;
4389 }
4390 ret = len;
4391 kfree(buf);
4392 }
4393 else
4394 {
4395 hddLog(VOS_TRACE_LEVEL_ERROR,
4396 FL("failed to fetch the stats"));
4397 ret = -EFAULT;
4398 goto exit;
4399 }
4400
4401 }
Madan Mohan Koyyalamudif9bdd4e2012-10-30 18:05:03 -07004402 else {
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05304403 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
4404 TRACE_CODE_HDD_UNSUPPORTED_IOCTL,
4405 pAdapter->sessionId, 0));
Satyanarayana Dash72806012014-12-02 14:30:08 +05304406 hddLog( VOS_TRACE_LEVEL_WARN, FL("Unsupported GUI command %s"),
4407 command);
Madan Mohan Koyyalamudif9bdd4e2012-10-30 18:05:03 -07004408 }
Jeff Johnson295189b2012-06-20 16:38:30 -07004409 }
4410exit:
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05304411 EXIT();
Jeff Johnson295189b2012-06-20 16:38:30 -07004412 if (command)
4413 {
4414 kfree(command);
4415 }
4416 return ret;
4417}
4418
Jeff Johnsond6e7b3f2014-03-20 12:12:11 -07004419#ifdef CONFIG_COMPAT
4420static int hdd_driver_compat_ioctl(hdd_adapter_t *pAdapter, struct ifreq *ifr)
4421{
4422 struct {
4423 compat_uptr_t buf;
4424 int used_len;
4425 int total_len;
4426 } compat_priv_data;
4427 hdd_priv_data_t priv_data;
4428 int ret = 0;
Srinivas Girigowda5cecb202013-10-08 09:13:25 -07004429
Jeff Johnsond6e7b3f2014-03-20 12:12:11 -07004430 /*
4431 * Note that pAdapter and ifr have already been verified by caller,
4432 * and HDD context has also been validated
4433 */
4434 if (copy_from_user(&compat_priv_data, ifr->ifr_data,
4435 sizeof(compat_priv_data))) {
4436 ret = -EFAULT;
4437 goto exit;
4438 }
4439 priv_data.buf = compat_ptr(compat_priv_data.buf);
4440 priv_data.used_len = compat_priv_data.used_len;
4441 priv_data.total_len = compat_priv_data.total_len;
4442 ret = hdd_driver_command(pAdapter, &priv_data);
4443 exit:
4444 return ret;
4445}
4446#else /* CONFIG_COMPAT */
4447static int hdd_driver_compat_ioctl(hdd_adapter_t *pAdapter, struct ifreq *ifr)
4448{
4449 /* will never be invoked */
4450 return 0;
4451}
4452#endif /* CONFIG_COMPAT */
4453
4454static int hdd_driver_ioctl(hdd_adapter_t *pAdapter, struct ifreq *ifr)
4455{
4456 hdd_priv_data_t priv_data;
4457 int ret = 0;
4458
4459 /*
4460 * Note that pAdapter and ifr have already been verified by caller,
4461 * and HDD context has also been validated
4462 */
4463 if (copy_from_user(&priv_data, ifr->ifr_data, sizeof(priv_data))) {
4464 ret = -EFAULT;
4465 } else {
4466 ret = hdd_driver_command(pAdapter, &priv_data);
4467 }
4468 return ret;
4469}
4470
Mahesh A Saptasgar64534612014-09-23 13:13:33 +05304471int __hdd_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
Jeff Johnsond6e7b3f2014-03-20 12:12:11 -07004472{
4473 hdd_adapter_t *pAdapter;
4474 hdd_context_t *pHddCtx;
4475 int ret;
4476
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05304477 ENTER();
4478
Jeff Johnsond6e7b3f2014-03-20 12:12:11 -07004479 pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
4480 if (NULL == pAdapter) {
4481 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
4482 "%s: HDD adapter context is Null", __func__);
4483 ret = -ENODEV;
4484 goto exit;
4485 }
4486 if (dev != pAdapter->dev) {
4487 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
4488 "%s: HDD adapter/dev inconsistency", __func__);
4489 ret = -ENODEV;
4490 goto exit;
4491 }
4492
4493 if ((!ifr) || (!ifr->ifr_data)) {
4494 ret = -EINVAL;
4495 goto exit;
4496 }
4497
4498 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
4499 ret = wlan_hdd_validate_context(pHddCtx);
4500 if (ret) {
Jeff Johnsond6e7b3f2014-03-20 12:12:11 -07004501 ret = -EBUSY;
4502 goto exit;
4503 }
4504
4505 switch (cmd) {
4506 case (SIOCDEVPRIVATE + 1):
4507 if (is_compat_task())
4508 ret = hdd_driver_compat_ioctl(pAdapter, ifr);
4509 else
4510 ret = hdd_driver_ioctl(pAdapter, ifr);
4511 break;
4512 default:
4513 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: unknown ioctl %d",
4514 __func__, cmd);
4515 ret = -EINVAL;
4516 break;
4517 }
4518 exit:
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05304519 EXIT();
Jeff Johnsond6e7b3f2014-03-20 12:12:11 -07004520 return ret;
4521}
Srinivas Girigowda5cecb202013-10-08 09:13:25 -07004522
Mahesh A Saptasgar64534612014-09-23 13:13:33 +05304523int hdd_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
4524{
4525 int ret;
4526
4527 vos_ssr_protect(__func__);
4528 ret = __hdd_ioctl(dev, ifr, cmd);
4529 vos_ssr_unprotect(__func__);
4530
4531 return ret;
4532}
4533
Katya Nigame7b69a82015-04-28 15:24:06 +05304534int hdd_mon_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
4535{
4536 return 0;
4537}
4538
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08004539#if defined(FEATURE_WLAN_ESE) && defined(FEATURE_WLAN_ESE_UPLOAD)
Srinivas Girigowda91ccbe82013-11-10 16:37:38 -08004540/**---------------------------------------------------------------------------
4541
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08004542 \brief hdd_parse_ese_beacon_req() - Parse ese beacon request
Srinivas Girigowda91ccbe82013-11-10 16:37:38 -08004543
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08004544 This function parses the ese beacon request passed in the format
Srinivas Girigowda91ccbe82013-11-10 16:37:38 -08004545 CCXBEACONREQ<space><Number of fields><space><Measurement token>
4546 <space>Channel 1<space>Scan Mode <space>Meas Duration<space>Channel N
4547 <space>Scan Mode N<space>Meas Duration N
4548 if the Number of bcn req fields (N) does not match with the actual number of fields passed
4549 then take N.
4550 <Meas Token><Channel><Scan Mode> and <Meas Duration> are treated as one pair
4551 For example, CCXBEACONREQ 2 1 1 1 30 2 44 0 40.
4552 This function does not take care of removing duplicate channels from the list
4553
4554 \param - pValue Pointer to data
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08004555 \param - pEseBcnReq output pointer to store parsed ie information
Srinivas Girigowda91ccbe82013-11-10 16:37:38 -08004556
4557 \return - 0 for success non-zero for failure
4558
4559 --------------------------------------------------------------------------*/
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08004560static VOS_STATUS hdd_parse_ese_beacon_req(tANI_U8 *pValue,
4561 tCsrEseBeaconReq *pEseBcnReq)
Srinivas Girigowda91ccbe82013-11-10 16:37:38 -08004562{
4563 tANI_U8 *inPtr = pValue;
4564 int tempInt = 0;
4565 int j = 0, i = 0, v = 0;
4566 char buf[32];
4567
4568 inPtr = strnchr(pValue, strlen(pValue), SPACE_ASCII_VALUE);
4569 /*no argument after the command*/
4570 if (NULL == inPtr)
4571 {
4572 return -EINVAL;
4573 }
4574 /*no space after the command*/
4575 else if (SPACE_ASCII_VALUE != *inPtr)
4576 {
4577 return -EINVAL;
4578 }
4579
4580 /*removing empty spaces*/
4581 while ((SPACE_ASCII_VALUE == *inPtr) && ('\0' != *inPtr)) inPtr++;
4582
4583 /*no argument followed by spaces*/
4584 if ('\0' == *inPtr) return -EINVAL;
4585
4586 /*getting the first argument ie measurement token*/
Srinivas Girigowda4081bb12014-01-06 17:12:58 -08004587 v = sscanf(inPtr, "%31s ", buf);
Srinivas Girigowda91ccbe82013-11-10 16:37:38 -08004588 if (1 != v) return -EINVAL;
4589
4590 v = kstrtos32(buf, 10, &tempInt);
4591 if ( v < 0) return -EINVAL;
4592
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08004593 pEseBcnReq->numBcnReqIe = tempInt;
Srinivas Girigowda91ccbe82013-11-10 16:37:38 -08004594
4595 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO_HIGH,
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08004596 "Number of Bcn Req Ie fields(%d)", pEseBcnReq->numBcnReqIe);
Srinivas Girigowda91ccbe82013-11-10 16:37:38 -08004597
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08004598 for (j = 0; j < (pEseBcnReq->numBcnReqIe); j++)
Srinivas Girigowda91ccbe82013-11-10 16:37:38 -08004599 {
4600 for (i = 0; i < 4; i++)
4601 {
4602 /*inPtr pointing to the beginning of first space after number of ie fields*/
4603 inPtr = strpbrk( inPtr, " " );
4604 /*no ie data after the number of ie fields argument*/
4605 if (NULL == inPtr) return -EINVAL;
4606
4607 /*removing empty space*/
4608 while ((SPACE_ASCII_VALUE == *inPtr) && ('\0' != *inPtr)) inPtr++;
4609
4610 /*no ie data after the number of ie fields argument and spaces*/
4611 if ( '\0' == *inPtr ) return -EINVAL;
4612
Srinivas Girigowda4081bb12014-01-06 17:12:58 -08004613 v = sscanf(inPtr, "%31s ", buf);
Srinivas Girigowda91ccbe82013-11-10 16:37:38 -08004614 if (1 != v) return -EINVAL;
4615
4616 v = kstrtos32(buf, 10, &tempInt);
4617 if (v < 0) return -EINVAL;
4618
4619 switch (i)
4620 {
4621 case 0: /* Measurement token */
4622 if (tempInt <= 0)
4623 {
4624 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
4625 "Invalid Measurement Token(%d)", tempInt);
4626 return -EINVAL;
4627 }
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08004628 pEseBcnReq->bcnReq[j].measurementToken = tempInt;
Srinivas Girigowda91ccbe82013-11-10 16:37:38 -08004629 break;
4630
4631 case 1: /* Channel number */
4632 if ((tempInt <= 0) ||
4633 (tempInt > WNI_CFG_CURRENT_CHANNEL_STAMAX))
4634 {
4635 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
4636 "Invalid Channel Number(%d)", tempInt);
4637 return -EINVAL;
4638 }
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08004639 pEseBcnReq->bcnReq[j].channel = tempInt;
Srinivas Girigowda91ccbe82013-11-10 16:37:38 -08004640 break;
4641
4642 case 2: /* Scan mode */
Varun Reddy Yeturu0b18d5a2013-12-04 11:42:23 -08004643 if ((tempInt < eSIR_PASSIVE_SCAN) || (tempInt > eSIR_BEACON_TABLE))
Srinivas Girigowda91ccbe82013-11-10 16:37:38 -08004644 {
4645 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
4646 "Invalid Scan Mode(%d) Expected{0|1|2}", tempInt);
4647 return -EINVAL;
4648 }
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08004649 pEseBcnReq->bcnReq[j].scanMode= tempInt;
Srinivas Girigowda91ccbe82013-11-10 16:37:38 -08004650 break;
4651
4652 case 3: /* Measurement duration */
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08004653 if (((tempInt <= 0) && (pEseBcnReq->bcnReq[j].scanMode != eSIR_BEACON_TABLE)) ||
4654 ((tempInt < 0) && (pEseBcnReq->bcnReq[j].scanMode == eSIR_BEACON_TABLE)))
Srinivas Girigowda91ccbe82013-11-10 16:37:38 -08004655 {
4656 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
4657 "Invalid Measurement Duration(%d)", tempInt);
4658 return -EINVAL;
4659 }
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08004660 pEseBcnReq->bcnReq[j].measurementDuration = tempInt;
Srinivas Girigowda91ccbe82013-11-10 16:37:38 -08004661 break;
4662 }
4663 }
4664 }
4665
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08004666 for (j = 0; j < pEseBcnReq->numBcnReqIe; j++)
Srinivas Girigowda91ccbe82013-11-10 16:37:38 -08004667 {
4668 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Arun Kumar Khandavallie8768212014-02-17 16:43:34 +05304669 "Index(%d) Measurement Token(%u)Channel(%u) Scan Mode(%u) Measurement Duration(%u)\n",
Srinivas Girigowda91ccbe82013-11-10 16:37:38 -08004670 j,
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08004671 pEseBcnReq->bcnReq[j].measurementToken,
4672 pEseBcnReq->bcnReq[j].channel,
4673 pEseBcnReq->bcnReq[j].scanMode,
4674 pEseBcnReq->bcnReq[j].measurementDuration);
Srinivas Girigowda91ccbe82013-11-10 16:37:38 -08004675 }
4676
4677 return VOS_STATUS_SUCCESS;
4678}
4679
Srinivas Girigowda5cecb202013-10-08 09:13:25 -07004680static void hdd_GetTsmStatsCB( tAniTrafStrmMetrics tsmMetrics, const tANI_U32 staId, void *pContext )
4681{
4682 struct statsContext *pStatsContext = NULL;
4683 hdd_adapter_t *pAdapter = NULL;
4684
4685 if (NULL == pContext)
4686 {
4687 hddLog(VOS_TRACE_LEVEL_ERROR,
4688 "%s: Bad param, pContext [%p]",
4689 __func__, pContext);
4690 return;
4691 }
4692
Jeff Johnson72a40512013-12-19 10:14:15 -08004693 /* there is a race condition that exists between this callback
4694 function and the caller since the caller could time out either
4695 before or while this code is executing. we use a spinlock to
4696 serialize these actions */
4697 spin_lock(&hdd_context_lock);
Srinivas Girigowda5cecb202013-10-08 09:13:25 -07004698
4699 pStatsContext = pContext;
4700 pAdapter = pStatsContext->pAdapter;
4701 if ((NULL == pAdapter) || (STATS_CONTEXT_MAGIC != pStatsContext->magic))
4702 {
4703 /* the caller presumably timed out so there is nothing we can do */
Jeff Johnson72a40512013-12-19 10:14:15 -08004704 spin_unlock(&hdd_context_lock);
Srinivas Girigowda5cecb202013-10-08 09:13:25 -07004705 hddLog(VOS_TRACE_LEVEL_WARN,
4706 "%s: Invalid context, pAdapter [%p] magic [%08x]",
4707 __func__, pAdapter, pStatsContext->magic);
4708 return;
4709 }
4710
Jeff Johnson72a40512013-12-19 10:14:15 -08004711 /* context is valid so caller is still waiting */
4712
4713 /* paranoia: invalidate the magic */
4714 pStatsContext->magic = 0;
4715
4716 /* copy over the tsm stats */
Srinivas Girigowda5cecb202013-10-08 09:13:25 -07004717 pAdapter->tsmStats.UplinkPktQueueDly = tsmMetrics.UplinkPktQueueDly;
4718 vos_mem_copy(pAdapter->tsmStats.UplinkPktQueueDlyHist,
4719 tsmMetrics.UplinkPktQueueDlyHist,
4720 sizeof(pAdapter->tsmStats.UplinkPktQueueDlyHist)/
4721 sizeof(pAdapter->tsmStats.UplinkPktQueueDlyHist[0]));
4722 pAdapter->tsmStats.UplinkPktTxDly = tsmMetrics.UplinkPktTxDly;
4723 pAdapter->tsmStats.UplinkPktLoss = tsmMetrics.UplinkPktLoss;
4724 pAdapter->tsmStats.UplinkPktCount = tsmMetrics.UplinkPktCount;
4725 pAdapter->tsmStats.RoamingCount = tsmMetrics.RoamingCount;
4726 pAdapter->tsmStats.RoamingDly = tsmMetrics.RoamingDly;
4727
Jeff Johnson72a40512013-12-19 10:14:15 -08004728 /* notify the caller */
Srinivas Girigowda5cecb202013-10-08 09:13:25 -07004729 complete(&pStatsContext->completion);
Jeff Johnson72a40512013-12-19 10:14:15 -08004730
4731 /* serialization is complete */
4732 spin_unlock(&hdd_context_lock);
Srinivas Girigowda5cecb202013-10-08 09:13:25 -07004733}
4734
4735
4736
4737static VOS_STATUS hdd_get_tsm_stats(hdd_adapter_t *pAdapter, const tANI_U8 tid,
4738 tAniTrafStrmMetrics* pTsmMetrics)
4739{
4740 hdd_station_ctx_t *pHddStaCtx = NULL;
4741 eHalStatus hstatus;
Jeff Johnson72a40512013-12-19 10:14:15 -08004742 VOS_STATUS vstatus = VOS_STATUS_SUCCESS;
Srinivas Girigowda5cecb202013-10-08 09:13:25 -07004743 long lrc;
4744 struct statsContext context;
4745 hdd_context_t *pHddCtx = NULL;
4746
4747 if (NULL == pAdapter)
4748 {
4749 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: pAdapter is NULL", __func__);
4750 return VOS_STATUS_E_FAULT;
4751 }
4752
4753 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
4754 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
4755
4756 /* we are connected prepare our callback context */
4757 init_completion(&context.completion);
4758 context.pAdapter = pAdapter;
4759 context.magic = STATS_CONTEXT_MAGIC;
4760
4761 /* query tsm stats */
4762 hstatus = sme_GetTsmStats(pHddCtx->hHal, hdd_GetTsmStatsCB,
4763 pHddStaCtx->conn_info.staId[ 0 ],
4764 pHddStaCtx->conn_info.bssId,
4765 &context, pHddCtx->pvosContext, tid);
4766
4767 if (eHAL_STATUS_SUCCESS != hstatus)
4768 {
Jeff Johnson72a40512013-12-19 10:14:15 -08004769 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Unable to retrieve statistics",
4770 __func__);
4771 vstatus = VOS_STATUS_E_FAULT;
Srinivas Girigowda5cecb202013-10-08 09:13:25 -07004772 }
4773 else
4774 {
4775 /* request was sent -- wait for the response */
4776 lrc = wait_for_completion_interruptible_timeout(&context.completion,
4777 msecs_to_jiffies(WLAN_WAIT_TIME_STATS));
Srinivas Girigowda5cecb202013-10-08 09:13:25 -07004778 if (lrc <= 0)
4779 {
4780 hddLog(VOS_TRACE_LEVEL_ERROR,
4781 "%s: SME %s while retrieving statistics",
4782 __func__, (0 == lrc) ? "timeout" : "interrupt");
Jeff Johnson72a40512013-12-19 10:14:15 -08004783 vstatus = VOS_STATUS_E_TIMEOUT;
Srinivas Girigowda5cecb202013-10-08 09:13:25 -07004784 }
4785 }
Srinivas Girigowda5cecb202013-10-08 09:13:25 -07004786
Jeff Johnson72a40512013-12-19 10:14:15 -08004787 /* either we never sent a request, we sent a request and received a
4788 response or we sent a request and timed out. if we never sent a
4789 request or if we sent a request and got a response, we want to
4790 clear the magic out of paranoia. if we timed out there is a
4791 race condition such that the callback function could be
4792 executing at the same time we are. of primary concern is if the
4793 callback function had already verified the "magic" but had not
4794 yet set the completion variable when a timeout occurred. we
4795 serialize these activities by invalidating the magic while
4796 holding a shared spinlock which will cause us to block if the
4797 callback is currently executing */
4798 spin_lock(&hdd_context_lock);
4799 context.magic = 0;
4800 spin_unlock(&hdd_context_lock);
4801
4802 if (VOS_STATUS_SUCCESS == vstatus)
4803 {
4804 pTsmMetrics->UplinkPktQueueDly = pAdapter->tsmStats.UplinkPktQueueDly;
4805 vos_mem_copy(pTsmMetrics->UplinkPktQueueDlyHist,
4806 pAdapter->tsmStats.UplinkPktQueueDlyHist,
4807 sizeof(pAdapter->tsmStats.UplinkPktQueueDlyHist)/
4808 sizeof(pAdapter->tsmStats.UplinkPktQueueDlyHist[0]));
4809 pTsmMetrics->UplinkPktTxDly = pAdapter->tsmStats.UplinkPktTxDly;
4810 pTsmMetrics->UplinkPktLoss = pAdapter->tsmStats.UplinkPktLoss;
4811 pTsmMetrics->UplinkPktCount = pAdapter->tsmStats.UplinkPktCount;
4812 pTsmMetrics->RoamingCount = pAdapter->tsmStats.RoamingCount;
4813 pTsmMetrics->RoamingDly = pAdapter->tsmStats.RoamingDly;
4814 }
4815 return vstatus;
Srinivas Girigowda5cecb202013-10-08 09:13:25 -07004816}
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08004817#endif /*FEATURE_WLAN_ESE && FEATURE_WLAN_ESE_UPLOAD */
Srinivas Girigowda5cecb202013-10-08 09:13:25 -07004818
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08004819#if defined (WLAN_FEATURE_VOWIFI_11R) || defined (FEATURE_WLAN_ESE) || defined(FEATURE_WLAN_LFR)
Srinivas Girigowdade697412013-02-14 16:31:48 -08004820void hdd_getBand_helper(hdd_context_t *pHddCtx, int *pBand)
4821{
4822 eCsrBand band = -1;
4823 sme_GetFreqBand((tHalHandle)(pHddCtx->hHal), &band);
4824 switch (band)
4825 {
4826 case eCSR_BAND_ALL:
4827 *pBand = WLAN_HDD_UI_BAND_AUTO;
4828 break;
4829
4830 case eCSR_BAND_24:
4831 *pBand = WLAN_HDD_UI_BAND_2_4_GHZ;
4832 break;
4833
4834 case eCSR_BAND_5G:
4835 *pBand = WLAN_HDD_UI_BAND_5_GHZ;
4836 break;
4837
4838 default:
4839 hddLog( VOS_TRACE_LEVEL_WARN, "%s: Invalid Band %d", __func__, band);
4840 *pBand = -1;
4841 break;
4842 }
4843}
4844
4845/**---------------------------------------------------------------------------
4846
Srinivas Girigowda100eb322013-03-15 16:48:20 -07004847 \brief hdd_parse_send_action_frame_data() - HDD Parse send action frame data
4848
4849 This function parses the send action frame data passed in the format
4850 SENDACTIONFRAME<space><bssid><space><channel><space><dwelltime><space><data>
4851
Srinivas Girigowda56076852013-08-20 14:00:50 -07004852 \param - pValue Pointer to input data
Srinivas Girigowda100eb322013-03-15 16:48:20 -07004853 \param - pTargetApBssid Pointer to target Ap bssid
4854 \param - pChannel Pointer to the Target AP channel
4855 \param - pDwellTime Pointer to the time to stay off-channel after transmitting action frame
4856 \param - pBuf Pointer to data
4857 \param - pBufLen Pointer to data length
4858
4859 \return - 0 for success non-zero for failure
4860
4861 --------------------------------------------------------------------------*/
4862VOS_STATUS hdd_parse_send_action_frame_data(tANI_U8 *pValue, tANI_U8 *pTargetApBssid, tANI_U8 *pChannel,
4863 tANI_U8 *pDwellTime, tANI_U8 **pBuf, tANI_U8 *pBufLen)
4864{
4865 tANI_U8 *inPtr = pValue;
4866 tANI_U8 *dataEnd;
4867 int tempInt;
4868 int j = 0;
4869 int i = 0;
4870 int v = 0;
4871 tANI_U8 tempBuf[32];
4872 tANI_U8 tempByte = 0;
Srinivas Girigowda4081bb12014-01-06 17:12:58 -08004873 /* 12 hexa decimal digits, 5 ':' and '\0' */
4874 tANI_U8 macAddress[18];
Srinivas Girigowda100eb322013-03-15 16:48:20 -07004875
4876 inPtr = strnchr(pValue, strlen(pValue), SPACE_ASCII_VALUE);
4877 /*no argument after the command*/
4878 if (NULL == inPtr)
4879 {
4880 return -EINVAL;
4881 }
4882
4883 /*no space after the command*/
4884 else if (SPACE_ASCII_VALUE != *inPtr)
4885 {
4886 return -EINVAL;
4887 }
4888
4889 /*removing empty spaces*/
4890 while ((SPACE_ASCII_VALUE == *inPtr) && ('\0' != *inPtr) ) inPtr++;
4891
4892 /*no argument followed by spaces*/
4893 if ('\0' == *inPtr)
4894 {
4895 return -EINVAL;
4896 }
4897
Srinivas Girigowda0c69aee2013-10-09 17:21:01 -07004898 v = sscanf(inPtr, "%17s", macAddress);
4899 if (!((1 == v) && hdd_is_valid_mac_address(macAddress)))
Srinivas Girigowda100eb322013-03-15 16:48:20 -07004900 {
Srinivas Girigowda0c69aee2013-10-09 17:21:01 -07004901 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
4902 "Invalid MAC address or All hex inputs are not read (%d)", v);
4903 return -EINVAL;
Srinivas Girigowda100eb322013-03-15 16:48:20 -07004904 }
Srinivas Girigowda0c69aee2013-10-09 17:21:01 -07004905
4906 pTargetApBssid[0] = hdd_parse_hex(macAddress[0]) << 4 | hdd_parse_hex(macAddress[1]);
4907 pTargetApBssid[1] = hdd_parse_hex(macAddress[3]) << 4 | hdd_parse_hex(macAddress[4]);
4908 pTargetApBssid[2] = hdd_parse_hex(macAddress[6]) << 4 | hdd_parse_hex(macAddress[7]);
4909 pTargetApBssid[3] = hdd_parse_hex(macAddress[9]) << 4 | hdd_parse_hex(macAddress[10]);
4910 pTargetApBssid[4] = hdd_parse_hex(macAddress[12]) << 4 | hdd_parse_hex(macAddress[13]);
4911 pTargetApBssid[5] = hdd_parse_hex(macAddress[15]) << 4 | hdd_parse_hex(macAddress[16]);
Srinivas Girigowda100eb322013-03-15 16:48:20 -07004912
4913 /* point to the next argument */
4914 inPtr = strnchr(inPtr, strlen(inPtr), SPACE_ASCII_VALUE);
4915 /*no argument after the command*/
4916 if (NULL == inPtr) return -EINVAL;
4917
4918 /*removing empty spaces*/
4919 while ((SPACE_ASCII_VALUE == *inPtr) && ('\0' != *inPtr) ) inPtr++;
4920
4921 /*no argument followed by spaces*/
4922 if ('\0' == *inPtr)
4923 {
4924 return -EINVAL;
4925 }
4926
4927 /*getting the next argument ie the channel number */
Srinivas Girigowda4081bb12014-01-06 17:12:58 -08004928 v = sscanf(inPtr, "%31s ", tempBuf);
Srinivas Girigowda0c69aee2013-10-09 17:21:01 -07004929 if (1 != v) return -EINVAL;
4930
Srinivas Girigowda100eb322013-03-15 16:48:20 -07004931 v = kstrtos32(tempBuf, 10, &tempInt);
Agarwal Ashish353b3a82014-04-08 14:55:11 +05304932 if ( v < 0 || tempInt <= 0 || tempInt > WNI_CFG_CURRENT_CHANNEL_STAMAX )
Kiet Lambe150c22013-11-21 16:30:32 +05304933 return -EINVAL;
Srinivas Girigowda100eb322013-03-15 16:48:20 -07004934
4935 *pChannel = tempInt;
4936
4937 /* point to the next argument */
4938 inPtr = strnchr(inPtr, strlen(inPtr), SPACE_ASCII_VALUE);
4939 /*no argument after the command*/
4940 if (NULL == inPtr) return -EINVAL;
4941 /*removing empty spaces*/
4942 while ((SPACE_ASCII_VALUE == *inPtr) && ('\0' != *inPtr) ) inPtr++;
4943
4944 /*no argument followed by spaces*/
4945 if ('\0' == *inPtr)
4946 {
4947 return -EINVAL;
4948 }
4949
4950 /*getting the next argument ie the dwell time */
Srinivas Girigowda4081bb12014-01-06 17:12:58 -08004951 v = sscanf(inPtr, "%31s ", tempBuf);
Srinivas Girigowda0c69aee2013-10-09 17:21:01 -07004952 if (1 != v) return -EINVAL;
4953
Srinivas Girigowda100eb322013-03-15 16:48:20 -07004954 v = kstrtos32(tempBuf, 10, &tempInt);
Srinivas Girigowda5a6e0672014-01-09 14:42:57 -08004955 if ( v < 0 || tempInt < 0) return -EINVAL;
Srinivas Girigowda100eb322013-03-15 16:48:20 -07004956
4957 *pDwellTime = tempInt;
4958
4959 /* point to the next argument */
4960 inPtr = strnchr(inPtr, strlen(inPtr), SPACE_ASCII_VALUE);
4961 /*no argument after the command*/
4962 if (NULL == inPtr) return -EINVAL;
4963 /*removing empty spaces*/
4964 while ((SPACE_ASCII_VALUE == *inPtr) && ('\0' != *inPtr) ) inPtr++;
4965
4966 /*no argument followed by spaces*/
4967 if ('\0' == *inPtr)
4968 {
4969 return -EINVAL;
4970 }
4971
4972 /* find the length of data */
4973 dataEnd = inPtr;
4974 while(('\0' != *dataEnd) )
4975 {
4976 dataEnd++;
Srinivas Girigowda100eb322013-03-15 16:48:20 -07004977 }
Kiet Lambe150c22013-11-21 16:30:32 +05304978 *pBufLen = dataEnd - inPtr ;
Srinivas Girigowda100eb322013-03-15 16:48:20 -07004979 if ( *pBufLen <= 0) return -EINVAL;
4980
Srinivas Girigowdab5ae85d2013-06-03 10:51:45 -07004981 /* Allocate the number of bytes based on the number of input characters
4982 whether it is even or odd.
4983 if the number of input characters are even, then we need N/2 byte.
4984 if the number of input characters are odd, then we need do (N+1)/2 to
4985 compensate rounding off.
4986 For example, if N = 18, then (18 + 1)/2 = 9 bytes are enough.
4987 If N = 19, then we need 10 bytes, hence (19 + 1)/2 = 10 bytes */
4988 *pBuf = vos_mem_malloc((*pBufLen + 1)/2);
Srinivas Girigowda100eb322013-03-15 16:48:20 -07004989 if (NULL == *pBuf)
4990 {
4991 hddLog(VOS_TRACE_LEVEL_FATAL,
4992 "%s: vos_mem_alloc failed ", __func__);
4993 return -EINVAL;
4994 }
4995
4996 /* the buffer received from the upper layer is character buffer,
4997 we need to prepare the buffer taking 2 characters in to a U8 hex decimal number
4998 for example 7f0000f0...form a buffer to contain 7f in 0th location, 00 in 1st
4999 and f0 in 3rd location */
5000 for (i = 0, j = 0; j < *pBufLen; j += 2)
5001 {
Kiet Lambe150c22013-11-21 16:30:32 +05305002 if( j+1 == *pBufLen)
5003 {
5004 tempByte = hdd_parse_hex(inPtr[j]);
5005 }
5006 else
5007 {
5008 tempByte = (hdd_parse_hex(inPtr[j]) << 4) | (hdd_parse_hex(inPtr[j + 1]));
5009 }
Srinivas Girigowda100eb322013-03-15 16:48:20 -07005010 (*pBuf)[i++] = tempByte;
5011 }
5012 *pBufLen = i;
5013 return VOS_STATUS_SUCCESS;
5014}
5015
Srinivas Girigowda100eb322013-03-15 16:48:20 -07005016/**---------------------------------------------------------------------------
5017
Srinivas Girigowdade697412013-02-14 16:31:48 -08005018 \brief hdd_parse_channellist() - HDD Parse channel list
5019
5020 This function parses the channel list passed in the format
5021 SETROAMSCANCHANNELS<space><Number of channels><space>Channel 1<space>Channel 2<space>Channel N
Srinivas Girigowdacf9a9b42013-03-21 11:55:24 -07005022 if the Number of channels (N) does not match with the actual number of channels passed
5023 then take the minimum of N and count of (Ch1, Ch2, ...Ch M)
5024 For example, if SETROAMSCANCHANNELS 3 36 40 44 48, only 36, 40 and 44 shall be taken.
5025 If SETROAMSCANCHANNELS 5 36 40 44 48, ignore 5 and take 36, 40, 44 and 48.
5026 This function does not take care of removing duplicate channels from the list
Srinivas Girigowdade697412013-02-14 16:31:48 -08005027
5028 \param - pValue Pointer to input channel list
5029 \param - ChannelList Pointer to local output array to record channel list
5030 \param - pNumChannels Pointer to number of roam scan channels
5031
5032 \return - 0 for success non-zero for failure
5033
5034 --------------------------------------------------------------------------*/
5035VOS_STATUS hdd_parse_channellist(tANI_U8 *pValue, tANI_U8 *pChannelList, tANI_U8 *pNumChannels)
5036{
5037 tANI_U8 *inPtr = pValue;
5038 int tempInt;
5039 int j = 0;
5040 int v = 0;
5041 char buf[32];
5042
5043 inPtr = strnchr(pValue, strlen(pValue), SPACE_ASCII_VALUE);
5044 /*no argument after the command*/
5045 if (NULL == inPtr)
5046 {
5047 return -EINVAL;
5048 }
5049
5050 /*no space after the command*/
5051 else if (SPACE_ASCII_VALUE != *inPtr)
5052 {
5053 return -EINVAL;
5054 }
5055
5056 /*removing empty spaces*/
Jeff Johnsona1f9afb2013-04-03 09:13:31 -07005057 while ((SPACE_ASCII_VALUE == *inPtr) && ('\0' != *inPtr)) inPtr++;
Srinivas Girigowdade697412013-02-14 16:31:48 -08005058
5059 /*no argument followed by spaces*/
5060 if ('\0' == *inPtr)
5061 {
5062 return -EINVAL;
5063 }
5064
5065 /*getting the first argument ie the number of channels*/
Srinivas Girigowda4081bb12014-01-06 17:12:58 -08005066 v = sscanf(inPtr, "%31s ", buf);
Srinivas Girigowda0c69aee2013-10-09 17:21:01 -07005067 if (1 != v) return -EINVAL;
5068
Srinivas Girigowdade697412013-02-14 16:31:48 -08005069 v = kstrtos32(buf, 10, &tempInt);
Jeff Johnsona1f9afb2013-04-03 09:13:31 -07005070 if ((v < 0) ||
5071 (tempInt <= 0) ||
5072 (tempInt > WNI_CFG_VALID_CHANNEL_LIST_LEN))
5073 {
5074 return -EINVAL;
5075 }
Srinivas Girigowdade697412013-02-14 16:31:48 -08005076
5077 *pNumChannels = tempInt;
5078
5079 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO_HIGH,
5080 "Number of channels are: %d", *pNumChannels);
5081
5082 for (j = 0; j < (*pNumChannels); j++)
5083 {
5084 /*inPtr pointing to the beginning of first space after number of channels*/
5085 inPtr = strpbrk( inPtr, " " );
5086 /*no channel list after the number of channels argument*/
5087 if (NULL == inPtr)
5088 {
Srinivas Girigowdacf9a9b42013-03-21 11:55:24 -07005089 if (0 != j)
5090 {
5091 *pNumChannels = j;
5092 return VOS_STATUS_SUCCESS;
5093 }
5094 else
5095 {
5096 return -EINVAL;
5097 }
Srinivas Girigowdade697412013-02-14 16:31:48 -08005098 }
5099
5100 /*removing empty space*/
Jeff Johnsona1f9afb2013-04-03 09:13:31 -07005101 while ((SPACE_ASCII_VALUE == *inPtr) && ('\0' != *inPtr)) inPtr++;
Srinivas Girigowdade697412013-02-14 16:31:48 -08005102
5103 /*no channel list after the number of channels argument and spaces*/
5104 if ( '\0' == *inPtr )
5105 {
Srinivas Girigowdacf9a9b42013-03-21 11:55:24 -07005106 if (0 != j)
5107 {
5108 *pNumChannels = j;
5109 return VOS_STATUS_SUCCESS;
5110 }
5111 else
5112 {
5113 return -EINVAL;
5114 }
Srinivas Girigowdade697412013-02-14 16:31:48 -08005115 }
5116
Srinivas Girigowda4081bb12014-01-06 17:12:58 -08005117 v = sscanf(inPtr, "%31s ", buf);
Srinivas Girigowda0c69aee2013-10-09 17:21:01 -07005118 if (1 != v) return -EINVAL;
5119
Srinivas Girigowdade697412013-02-14 16:31:48 -08005120 v = kstrtos32(buf, 10, &tempInt);
Jeff Johnsona1f9afb2013-04-03 09:13:31 -07005121 if ((v < 0) ||
5122 (tempInt <= 0) ||
5123 (tempInt > WNI_CFG_CURRENT_CHANNEL_STAMAX))
5124 {
5125 return -EINVAL;
5126 }
Srinivas Girigowdade697412013-02-14 16:31:48 -08005127 pChannelList[j] = tempInt;
5128
5129 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO_HIGH,
5130 "Channel %d added to preferred channel list",
5131 pChannelList[j] );
5132 }
5133
Srinivas Girigowdade697412013-02-14 16:31:48 -08005134 return VOS_STATUS_SUCCESS;
5135}
5136
Varun Reddy Yeturu920df212013-05-22 08:07:23 -07005137
5138/**---------------------------------------------------------------------------
5139
5140 \brief hdd_parse_reassoc_command_data() - HDD Parse reassoc command data
5141
5142 This function parses the reasoc command data passed in the format
5143 REASSOC<space><bssid><space><channel>
5144
Srinivas Girigowda0c69aee2013-10-09 17:21:01 -07005145 \param - pValue Pointer to input data (its a NUL terminated string)
Varun Reddy Yeturu920df212013-05-22 08:07:23 -07005146 \param - pTargetApBssid Pointer to target Ap bssid
5147 \param - pChannel Pointer to the Target AP channel
5148
5149 \return - 0 for success non-zero for failure
5150
5151 --------------------------------------------------------------------------*/
Srinivas Girigowda0c69aee2013-10-09 17:21:01 -07005152VOS_STATUS hdd_parse_reassoc_command_data(tANI_U8 *pValue,
5153 tANI_U8 *pTargetApBssid, tANI_U8 *pChannel)
Varun Reddy Yeturu920df212013-05-22 08:07:23 -07005154{
5155 tANI_U8 *inPtr = pValue;
5156 int tempInt;
5157 int v = 0;
5158 tANI_U8 tempBuf[32];
Kiet Lamaa8e15a2014-02-11 23:30:06 -08005159 /* 12 hexa decimal digits, 5 ':' and '\0' */
Srinivas Girigowda4081bb12014-01-06 17:12:58 -08005160 tANI_U8 macAddress[18];
Varun Reddy Yeturu920df212013-05-22 08:07:23 -07005161
5162 inPtr = strnchr(pValue, strlen(pValue), SPACE_ASCII_VALUE);
5163 /*no argument after the command*/
5164 if (NULL == inPtr)
5165 {
5166 return -EINVAL;
5167 }
5168
5169 /*no space after the command*/
5170 else if (SPACE_ASCII_VALUE != *inPtr)
5171 {
5172 return -EINVAL;
5173 }
5174
5175 /*removing empty spaces*/
5176 while ((SPACE_ASCII_VALUE == *inPtr) && ('\0' != *inPtr) ) inPtr++;
5177
5178 /*no argument followed by spaces*/
5179 if ('\0' == *inPtr)
5180 {
5181 return -EINVAL;
5182 }
5183
Srinivas Girigowda0c69aee2013-10-09 17:21:01 -07005184 v = sscanf(inPtr, "%17s", macAddress);
5185 if (!((1 == v) && hdd_is_valid_mac_address(macAddress)))
Varun Reddy Yeturu920df212013-05-22 08:07:23 -07005186 {
Srinivas Girigowda0c69aee2013-10-09 17:21:01 -07005187 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
5188 "Invalid MAC address or All hex inputs are not read (%d)", v);
5189 return -EINVAL;
Varun Reddy Yeturu920df212013-05-22 08:07:23 -07005190 }
Srinivas Girigowda0c69aee2013-10-09 17:21:01 -07005191
5192 pTargetApBssid[0] = hdd_parse_hex(macAddress[0]) << 4 | hdd_parse_hex(macAddress[1]);
5193 pTargetApBssid[1] = hdd_parse_hex(macAddress[3]) << 4 | hdd_parse_hex(macAddress[4]);
5194 pTargetApBssid[2] = hdd_parse_hex(macAddress[6]) << 4 | hdd_parse_hex(macAddress[7]);
5195 pTargetApBssid[3] = hdd_parse_hex(macAddress[9]) << 4 | hdd_parse_hex(macAddress[10]);
5196 pTargetApBssid[4] = hdd_parse_hex(macAddress[12]) << 4 | hdd_parse_hex(macAddress[13]);
5197 pTargetApBssid[5] = hdd_parse_hex(macAddress[15]) << 4 | hdd_parse_hex(macAddress[16]);
Varun Reddy Yeturu920df212013-05-22 08:07:23 -07005198
5199 /* point to the next argument */
5200 inPtr = strnchr(inPtr, strlen(inPtr), SPACE_ASCII_VALUE);
5201 /*no argument after the command*/
5202 if (NULL == inPtr) return -EINVAL;
5203
5204 /*removing empty spaces*/
5205 while ((SPACE_ASCII_VALUE == *inPtr) && ('\0' != *inPtr) ) inPtr++;
5206
5207 /*no argument followed by spaces*/
5208 if ('\0' == *inPtr)
5209 {
5210 return -EINVAL;
5211 }
5212
5213 /*getting the next argument ie the channel number */
Srinivas Girigowda4081bb12014-01-06 17:12:58 -08005214 v = sscanf(inPtr, "%31s ", tempBuf);
Srinivas Girigowda0c69aee2013-10-09 17:21:01 -07005215 if (1 != v) return -EINVAL;
5216
Varun Reddy Yeturu920df212013-05-22 08:07:23 -07005217 v = kstrtos32(tempBuf, 10, &tempInt);
Srinivas Girigowda0c69aee2013-10-09 17:21:01 -07005218 if ((v < 0) ||
Padma, Santhosh Kumar0fa809b2014-11-13 14:56:56 +05305219 (tempInt < 0) ||
Srinivas Girigowda0c69aee2013-10-09 17:21:01 -07005220 (tempInt > WNI_CFG_CURRENT_CHANNEL_STAMAX))
5221 {
5222 return -EINVAL;
5223 }
Varun Reddy Yeturu920df212013-05-22 08:07:23 -07005224
5225 *pChannel = tempInt;
5226 return VOS_STATUS_SUCCESS;
5227}
5228
5229#endif
5230
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08005231#if defined(FEATURE_WLAN_ESE) && defined(FEATURE_WLAN_ESE_UPLOAD)
Srinivas Girigowda5cecb202013-10-08 09:13:25 -07005232/**---------------------------------------------------------------------------
5233
5234 \brief hdd_parse_get_cckm_ie() - HDD Parse and fetch the CCKM IE
5235
5236 This function parses the SETCCKM IE command
5237 SETCCKMIE<space><ie data>
5238
5239 \param - pValue Pointer to input data
5240 \param - pCckmIe Pointer to output cckm Ie
5241 \param - pCckmIeLen Pointer to output cckm ie length
5242
5243 \return - 0 for success non-zero for failure
5244
5245 --------------------------------------------------------------------------*/
5246VOS_STATUS hdd_parse_get_cckm_ie(tANI_U8 *pValue, tANI_U8 **pCckmIe,
5247 tANI_U8 *pCckmIeLen)
5248{
5249 tANI_U8 *inPtr = pValue;
5250 tANI_U8 *dataEnd;
5251 int j = 0;
5252 int i = 0;
5253 tANI_U8 tempByte = 0;
5254
5255 inPtr = strnchr(pValue, strlen(pValue), SPACE_ASCII_VALUE);
5256 /*no argument after the command*/
5257 if (NULL == inPtr)
5258 {
5259 return -EINVAL;
5260 }
5261
5262 /*no space after the command*/
5263 else if (SPACE_ASCII_VALUE != *inPtr)
5264 {
5265 return -EINVAL;
5266 }
5267
5268 /*removing empty spaces*/
5269 while ((SPACE_ASCII_VALUE == *inPtr) && ('\0' != *inPtr) ) inPtr++;
5270
5271 /*no argument followed by spaces*/
5272 if ('\0' == *inPtr)
5273 {
5274 return -EINVAL;
5275 }
5276
5277 /* find the length of data */
5278 dataEnd = inPtr;
5279 while(('\0' != *dataEnd) )
5280 {
5281 dataEnd++;
5282 ++(*pCckmIeLen);
5283 }
5284 if ( *pCckmIeLen <= 0) return -EINVAL;
5285
5286 /* Allocate the number of bytes based on the number of input characters
5287 whether it is even or odd.
5288 if the number of input characters are even, then we need N/2 byte.
5289 if the number of input characters are odd, then we need do (N+1)/2 to
5290 compensate rounding off.
5291 For example, if N = 18, then (18 + 1)/2 = 9 bytes are enough.
5292 If N = 19, then we need 10 bytes, hence (19 + 1)/2 = 10 bytes */
5293 *pCckmIe = vos_mem_malloc((*pCckmIeLen + 1)/2);
5294 if (NULL == *pCckmIe)
5295 {
5296 hddLog(VOS_TRACE_LEVEL_FATAL,
5297 "%s: vos_mem_alloc failed ", __func__);
5298 return -EINVAL;
5299 }
5300 vos_mem_zero(*pCckmIe, (*pCckmIeLen + 1)/2);
5301 /* the buffer received from the upper layer is character buffer,
5302 we need to prepare the buffer taking 2 characters in to a U8 hex decimal number
5303 for example 7f0000f0...form a buffer to contain 7f in 0th location, 00 in 1st
5304 and f0 in 3rd location */
5305 for (i = 0, j = 0; j < *pCckmIeLen; j += 2)
5306 {
5307 tempByte = (hdd_parse_hex(inPtr[j]) << 4) | (hdd_parse_hex(inPtr[j + 1]));
5308 (*pCckmIe)[i++] = tempByte;
5309 }
5310 *pCckmIeLen = i;
5311
5312 return VOS_STATUS_SUCCESS;
5313}
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08005314#endif /* FEATURE_WLAN_ESE && FEATURE_WLAN_ESE_UPLOAD */
Srinivas Girigowda5cecb202013-10-08 09:13:25 -07005315
Jeff Johnson295189b2012-06-20 16:38:30 -07005316/**---------------------------------------------------------------------------
5317
Srinivas Girigowda0c69aee2013-10-09 17:21:01 -07005318 \brief hdd_is_valid_mac_address() - Validate MAC address
5319
5320 This function validates whether the given MAC address is valid or not
5321 Expected MAC address is of the format XX:XX:XX:XX:XX:XX
5322 where X is the hexa decimal digit character and separated by ':'
5323 This algorithm works even if MAC address is not separated by ':'
5324
5325 This code checks given input string mac contains exactly 12 hexadecimal digits.
5326 and a separator colon : appears in the input string only after
5327 an even number of hex digits.
5328
5329 \param - pMacAddr pointer to the input MAC address
5330 \return - 1 for valid and 0 for invalid
5331
5332 --------------------------------------------------------------------------*/
5333
5334v_BOOL_t hdd_is_valid_mac_address(const tANI_U8 *pMacAddr)
5335{
5336 int xdigit = 0;
5337 int separator = 0;
5338 while (*pMacAddr)
5339 {
5340 if (isxdigit(*pMacAddr))
5341 {
5342 xdigit++;
5343 }
5344 else if (':' == *pMacAddr)
5345 {
5346 if (0 == xdigit || ((xdigit / 2) - 1) != separator)
5347 break;
5348
5349 ++separator;
5350 }
5351 else
5352 {
5353 separator = -1;
5354 /* Invalid MAC found */
5355 return 0;
5356 }
5357 ++pMacAddr;
5358 }
5359 return (xdigit == 12 && (separator == 5 || separator == 0));
5360}
5361
5362/**---------------------------------------------------------------------------
5363
Mahesh A Saptasgar64534612014-09-23 13:13:33 +05305364 \brief __hdd_open() - HDD Open function
Jeff Johnson295189b2012-06-20 16:38:30 -07005365
5366 \param - dev Pointer to net_device structure
5367
5368 \return - 0 for success non-zero for failure
5369
5370 --------------------------------------------------------------------------*/
Mahesh A Saptasgar64534612014-09-23 13:13:33 +05305371int __hdd_open(struct net_device *dev)
Jeff Johnson295189b2012-06-20 16:38:30 -07005372{
5373 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
5374 hdd_context_t *pHddCtx;
5375 hdd_adapter_list_node_t *pAdapterNode = NULL, *pNext = NULL;
5376 VOS_STATUS status;
5377 v_BOOL_t in_standby = TRUE;
5378
5379 if (NULL == pAdapter)
5380 {
5381 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
Agarwal Ashish971c2882013-10-30 20:11:12 +05305382 "%s: pAdapter is Null", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07005383 return -ENODEV;
5384 }
5385
5386 pHddCtx = (hdd_context_t*)pAdapter->pHddCtx;
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05305387 MTRACE(vos_trace(VOS_MODULE_ID_HDD, TRACE_CODE_HDD_OPEN_REQUEST,
5388 pAdapter->sessionId, pAdapter->device_mode));
Jeff Johnson295189b2012-06-20 16:38:30 -07005389 if (NULL == pHddCtx)
5390 {
5391 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07005392 "%s: HDD context is Null", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07005393 return -ENODEV;
5394 }
5395
5396 status = hdd_get_front_adapter ( pHddCtx, &pAdapterNode );
5397 while ( (NULL != pAdapterNode) && (VOS_STATUS_SUCCESS == status) )
5398 {
Jeff Johnson6a81ca42013-04-05 10:37:08 -07005399 if (test_bit(DEVICE_IFACE_OPENED, &pAdapterNode->pAdapter->event_flags))
5400 {
5401 hddLog(VOS_TRACE_LEVEL_INFO, "%s: chip already out of standby",
Gopichand Nakkala66c0bd02013-04-10 11:36:29 +05305402 __func__);
Jeff Johnson6a81ca42013-04-05 10:37:08 -07005403 in_standby = FALSE;
5404 break;
5405 }
5406 else
5407 {
5408 status = hdd_get_next_adapter ( pHddCtx, pAdapterNode, &pNext );
5409 pAdapterNode = pNext;
5410 }
Jeff Johnson295189b2012-06-20 16:38:30 -07005411 }
5412
5413 if (TRUE == in_standby)
5414 {
5415 if (VOS_STATUS_SUCCESS != wlan_hdd_exit_lowpower(pHddCtx, pAdapter))
5416 {
5417 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Failed to bring "
5418 "wlan out of power save", __func__);
5419 return -EINVAL;
5420 }
5421 }
5422
Jeff Johnson6a81ca42013-04-05 10:37:08 -07005423 set_bit(DEVICE_IFACE_OPENED, &pAdapter->event_flags);
Jeff Johnson295189b2012-06-20 16:38:30 -07005424 if (hdd_connIsConnected(WLAN_HDD_GET_STATION_CTX_PTR(pAdapter)))
5425 {
5426 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07005427 "%s: Enabling Tx Queues", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07005428 /* Enable TX queues only when we are connected */
Padma, Santhosh Kumar9dacb5c2014-12-17 19:22:56 +05305429 hddLog(VOS_TRACE_LEVEL_INFO, FL("Enabling queues"));
Jeff Johnson295189b2012-06-20 16:38:30 -07005430 netif_tx_start_all_queues(dev);
5431 }
5432
5433 return 0;
5434}
5435
Mahesh A Saptasgar64534612014-09-23 13:13:33 +05305436/**---------------------------------------------------------------------------
5437
5438 \brief hdd_open() - Wrapper function for __hdd_open to protect it from SSR
5439
5440 This is called in response to ifconfig up
5441
5442 \param - dev Pointer to net_device structure
5443
5444 \return - 0 for success non-zero for failure
5445
5446 --------------------------------------------------------------------------*/
5447int hdd_open(struct net_device *dev)
5448{
5449 int ret;
5450
5451 vos_ssr_protect(__func__);
5452 ret = __hdd_open(dev);
5453 vos_ssr_unprotect(__func__);
5454
5455 return ret;
5456}
5457
Mahesh A Saptasagard68eb282014-12-17 14:20:19 +05305458int __hdd_mon_open (struct net_device *dev)
Jeff Johnson295189b2012-06-20 16:38:30 -07005459{
5460 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
5461
5462 if(pAdapter == NULL) {
5463 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07005464 "%s: HDD adapter context is Null", __func__);
Madan Mohan Koyyalamudicae253a2012-11-06 19:10:35 -08005465 return -EINVAL;
Jeff Johnson295189b2012-06-20 16:38:30 -07005466 }
5467
Jeff Johnson295189b2012-06-20 16:38:30 -07005468 return 0;
5469}
Mahesh A Saptasagard68eb282014-12-17 14:20:19 +05305470
5471int hdd_mon_open (struct net_device *dev)
5472{
5473 int ret;
5474
5475 vos_ssr_protect(__func__);
5476 ret = __hdd_mon_open(dev);
5477 vos_ssr_unprotect(__func__);
5478
5479 return ret;
5480}
5481
Katya Nigame7b69a82015-04-28 15:24:06 +05305482int hdd_mon_stop(struct net_device *dev)
5483{
5484 return 0;
5485}
5486
Jeff Johnson295189b2012-06-20 16:38:30 -07005487/**---------------------------------------------------------------------------
5488
Mahesh A Saptasgar64534612014-09-23 13:13:33 +05305489 \brief __hdd_stop() - HDD stop function
Jeff Johnson295189b2012-06-20 16:38:30 -07005490
5491 \param - dev Pointer to net_device structure
5492
5493 \return - 0 for success non-zero for failure
5494
5495 --------------------------------------------------------------------------*/
5496
Mahesh A Saptasgar64534612014-09-23 13:13:33 +05305497int __hdd_stop (struct net_device *dev)
Jeff Johnson295189b2012-06-20 16:38:30 -07005498{
Vinay Krishna Eranna90f43532014-10-27 16:45:54 +05305499 int ret = 0;
Jeff Johnson295189b2012-06-20 16:38:30 -07005500 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
5501 hdd_context_t *pHddCtx;
5502 hdd_adapter_list_node_t *pAdapterNode = NULL, *pNext = NULL;
5503 VOS_STATUS status;
5504 v_BOOL_t enter_standby = TRUE;
5505
5506 ENTER();
Jeff Johnson295189b2012-06-20 16:38:30 -07005507 if (NULL == pAdapter)
5508 {
5509 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
Agarwal Ashish971c2882013-10-30 20:11:12 +05305510 "%s: pAdapter is Null", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07005511 return -ENODEV;
5512 }
Sachin Ahuja9b4958f2015-01-15 21:37:00 +05305513 MTRACE(vos_trace(VOS_MODULE_ID_HDD, TRACE_CODE_HDD_STOP_REQUEST,
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05305514 pAdapter->sessionId, pAdapter->device_mode));
Vinay Krishna Eranna90f43532014-10-27 16:45:54 +05305515
5516 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
5517 ret = wlan_hdd_validate_context(pHddCtx);
5518 if (ret)
Jeff Johnson295189b2012-06-20 16:38:30 -07005519 {
Vinay Krishna Eranna90f43532014-10-27 16:45:54 +05305520 return ret;
Jeff Johnson295189b2012-06-20 16:38:30 -07005521 }
5522
Agarwal Ashish3a38bd12014-06-12 15:16:52 +05305523 /* Nothing to be done if the interface is not opened */
5524 if (VOS_FALSE == test_bit(DEVICE_IFACE_OPENED, &pAdapter->event_flags))
5525 {
5526 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
5527 "%s: NETDEV Interface is not OPENED", __func__);
5528 return -ENODEV;
5529 }
5530
5531 /* Make sure the interface is marked as closed */
Jeff Johnson6a81ca42013-04-05 10:37:08 -07005532 clear_bit(DEVICE_IFACE_OPENED, &pAdapter->event_flags);
Jeff Johnson295189b2012-06-20 16:38:30 -07005533 hddLog(VOS_TRACE_LEVEL_INFO, "%s: Disabling OS Tx queues", __func__);
Agarwal Ashish3a38bd12014-06-12 15:16:52 +05305534
5535 /* Disable TX on the interface, after this hard_start_xmit() will not
5536 * be called on that interface
5537 */
Padma, Santhosh Kumar9dacb5c2014-12-17 19:22:56 +05305538 hddLog(VOS_TRACE_LEVEL_INFO, FL("Disabling queues"));
Jeff Johnson295189b2012-06-20 16:38:30 -07005539 netif_tx_disable(pAdapter->dev);
Agarwal Ashish3a38bd12014-06-12 15:16:52 +05305540
5541 /* Mark the interface status as "down" for outside world */
Jeff Johnson295189b2012-06-20 16:38:30 -07005542 netif_carrier_off(pAdapter->dev);
5543
Agarwal Ashish3a38bd12014-06-12 15:16:52 +05305544 /* The interface is marked as down for outside world (aka kernel)
5545 * But the driver is pretty much alive inside. The driver needs to
5546 * tear down the existing connection on the netdev (session)
5547 * cleanup the data pipes and wait until the control plane is stabilized
5548 * for this interface. The call also needs to wait until the above
5549 * mentioned actions are completed before returning to the caller.
5550 * Notice that the hdd_stop_adapter is requested not to close the session
5551 * That is intentional to be able to scan if it is a STA/P2P interface
5552 */
5553 hdd_stop_adapter(pHddCtx, pAdapter, VOS_FALSE);
Mahesh A Saptasagar02e36e82015-01-14 20:39:19 +05305554#ifdef FEATURE_WLAN_TDLS
5555 mutex_lock(&pHddCtx->tdls_lock);
5556#endif
Agarwal Ashish3a38bd12014-06-12 15:16:52 +05305557 /* DeInit the adapter. This ensures datapath cleanup as well */
c_hpothu002231a2015-02-05 14:58:51 +05305558 hdd_deinit_adapter(pHddCtx, pAdapter, TRUE);
Mahesh A Saptasagar02e36e82015-01-14 20:39:19 +05305559#ifdef FEATURE_WLAN_TDLS
5560 mutex_unlock(&pHddCtx->tdls_lock);
5561#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07005562 /* SoftAP ifaces should never go in power save mode
5563 making sure same here. */
5564 if ( (WLAN_HDD_SOFTAP == pAdapter->device_mode )
5565 || (WLAN_HDD_MONITOR == pAdapter->device_mode )
Jeff Johnson295189b2012-06-20 16:38:30 -07005566 || (WLAN_HDD_P2P_GO == pAdapter->device_mode )
Jeff Johnson295189b2012-06-20 16:38:30 -07005567 )
5568 {
5569 /* SoftAP mode, so return from here */
c_hpothu6ff1c3c2013-10-01 19:01:57 +05305570 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
5571 "%s: In SAP MODE", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07005572 EXIT();
5573 return 0;
5574 }
Agarwal Ashish3a38bd12014-06-12 15:16:52 +05305575 /* Find if any iface is up. If any iface is up then can't put device to
5576 * sleep/power save mode
5577 */
Jeff Johnson295189b2012-06-20 16:38:30 -07005578 status = hdd_get_front_adapter ( pHddCtx, &pAdapterNode );
5579 while ( (NULL != pAdapterNode) && (VOS_STATUS_SUCCESS == status) )
5580 {
Jeff Johnson6a81ca42013-04-05 10:37:08 -07005581 if (test_bit(DEVICE_IFACE_OPENED, &pAdapterNode->pAdapter->event_flags))
5582 {
5583 hddLog(VOS_TRACE_LEVEL_INFO, "%s: Still other ifaces are up cannot "
Gopichand Nakkala66c0bd02013-04-10 11:36:29 +05305584 "put device to sleep", __func__);
Jeff Johnson6a81ca42013-04-05 10:37:08 -07005585 enter_standby = FALSE;
5586 break;
5587 }
5588 else
5589 {
5590 status = hdd_get_next_adapter ( pHddCtx, pAdapterNode, &pNext );
5591 pAdapterNode = pNext;
5592 }
Jeff Johnson295189b2012-06-20 16:38:30 -07005593 }
5594
5595 if (TRUE == enter_standby)
5596 {
5597 hddLog(VOS_TRACE_LEVEL_INFO, "%s: All Interfaces are Down "
5598 "entering standby", __func__);
5599 if (VOS_STATUS_SUCCESS != wlan_hdd_enter_lowpower(pHddCtx))
5600 {
5601 /*log and return success*/
5602 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Failed to put "
5603 "wlan in power save", __func__);
5604 }
5605 }
5606
5607 EXIT();
5608 return 0;
5609}
5610
5611/**---------------------------------------------------------------------------
5612
Mahesh A Saptasgar64534612014-09-23 13:13:33 +05305613 \brief hdd_stop() - wrapper_function for __hdd_stop to protect it from SSR
Jeff Johnson295189b2012-06-20 16:38:30 -07005614
Mahesh A Saptasgar64534612014-09-23 13:13:33 +05305615 This is called in response to ifconfig down
5616
5617 \param - dev Pointer to net_device structure
5618
5619 \return - 0 for success non-zero for failure
5620-----------------------------------------------------------------------------*/
5621int hdd_stop (struct net_device *dev)
5622{
5623 int ret;
5624
5625 vos_ssr_protect(__func__);
5626 ret = __hdd_stop(dev);
5627 vos_ssr_unprotect(__func__);
5628
5629 return ret;
5630}
5631
5632/**---------------------------------------------------------------------------
5633
5634 \brief __hdd_uninit() - HDD uninit function
Jeff Johnson295189b2012-06-20 16:38:30 -07005635
5636 \param - dev Pointer to net_device structure
5637
5638 \return - void
5639
5640 --------------------------------------------------------------------------*/
Mahesh A Saptasgar64534612014-09-23 13:13:33 +05305641static void __hdd_uninit (struct net_device *dev)
Jeff Johnson295189b2012-06-20 16:38:30 -07005642{
5643 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
Mahesh A Saptasagar02e36e82015-01-14 20:39:19 +05305644 hdd_context_t *pHddCtx;
Jeff Johnson295189b2012-06-20 16:38:30 -07005645 ENTER();
5646
5647 do
5648 {
5649 if (NULL == pAdapter)
5650 {
5651 hddLog(VOS_TRACE_LEVEL_FATAL,
5652 "%s: NULL pAdapter", __func__);
5653 break;
5654 }
5655
5656 if (WLAN_HDD_ADAPTER_MAGIC != pAdapter->magic)
5657 {
5658 hddLog(VOS_TRACE_LEVEL_FATAL,
5659 "%s: Invalid magic", __func__);
5660 break;
5661 }
Mahesh A Saptasagar02e36e82015-01-14 20:39:19 +05305662 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
5663 if (NULL == pHddCtx)
Jeff Johnson295189b2012-06-20 16:38:30 -07005664 {
5665 hddLog(VOS_TRACE_LEVEL_FATAL,
5666 "%s: NULL pHddCtx", __func__);
5667 break;
5668 }
5669
5670 if (dev != pAdapter->dev)
5671 {
5672 hddLog(VOS_TRACE_LEVEL_FATAL,
5673 "%s: Invalid device reference", __func__);
5674 /* we haven't validated all cases so let this go for now */
5675 }
Mahesh A Saptasagar02e36e82015-01-14 20:39:19 +05305676#ifdef FEATURE_WLAN_TDLS
5677 mutex_lock(&pHddCtx->tdls_lock);
5678#endif
c_hpothu002231a2015-02-05 14:58:51 +05305679 hdd_deinit_adapter(pHddCtx, pAdapter, TRUE);
Mahesh A Saptasagar02e36e82015-01-14 20:39:19 +05305680#ifdef FEATURE_WLAN_TDLS
5681 mutex_unlock(&pHddCtx->tdls_lock);
5682#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07005683
5684 /* after uninit our adapter structure will no longer be valid */
5685 pAdapter->dev = NULL;
5686 pAdapter->magic = 0;
5687 } while (0);
5688
5689 EXIT();
5690}
5691
5692/**---------------------------------------------------------------------------
5693
Mahesh A Saptasgar64534612014-09-23 13:13:33 +05305694 \brief hdd_uninit() - Wrapper function to protect __hdd_uninit from SSR
5695
5696 This is called during the netdev unregister to uninitialize all data
5697associated with the device
5698
5699 \param - dev Pointer to net_device structure
5700
5701 \return - void
5702
5703 --------------------------------------------------------------------------*/
5704static void hdd_uninit (struct net_device *dev)
5705{
5706 vos_ssr_protect(__func__);
5707 __hdd_uninit(dev);
5708 vos_ssr_unprotect(__func__);
5709}
5710
5711/**---------------------------------------------------------------------------
5712
Jeff Johnson295189b2012-06-20 16:38:30 -07005713 \brief hdd_release_firmware() -
5714
5715 This function calls the release firmware API to free the firmware buffer.
5716
5717 \param - pFileName Pointer to the File Name.
5718 pCtx - Pointer to the adapter .
5719
5720
5721 \return - 0 for success, non zero for failure
5722
5723 --------------------------------------------------------------------------*/
5724
5725VOS_STATUS hdd_release_firmware(char *pFileName,v_VOID_t *pCtx)
5726{
5727 VOS_STATUS status = VOS_STATUS_SUCCESS;
5728 hdd_context_t *pHddCtx = (hdd_context_t*)pCtx;
5729 ENTER();
5730
5731
5732 if (!strcmp(WLAN_FW_FILE, pFileName)) {
5733
5734 hddLog(VOS_TRACE_LEVEL_INFO_HIGH,"%s: Loaded firmware file is %s",__func__,pFileName);
5735
5736 if(pHddCtx->fw) {
5737 release_firmware(pHddCtx->fw);
5738 pHddCtx->fw = NULL;
5739 }
5740 else
5741 status = VOS_STATUS_E_FAILURE;
5742 }
5743 else if (!strcmp(WLAN_NV_FILE,pFileName)) {
5744 if(pHddCtx->nv) {
5745 release_firmware(pHddCtx->nv);
5746 pHddCtx->nv = NULL;
5747 }
5748 else
5749 status = VOS_STATUS_E_FAILURE;
5750
5751 }
5752
5753 EXIT();
5754 return status;
5755}
5756
5757/**---------------------------------------------------------------------------
5758
5759 \brief hdd_request_firmware() -
5760
5761 This function reads the firmware file using the request firmware
5762 API and returns the the firmware data and the firmware file size.
5763
5764 \param - pfileName - Pointer to the file name.
5765 - pCtx - Pointer to the adapter .
5766 - ppfw_data - Pointer to the pointer of the firmware data.
5767 - pSize - Pointer to the file size.
5768
5769 \return - VOS_STATUS_SUCCESS for success, VOS_STATUS_E_FAILURE for failure
5770
5771 --------------------------------------------------------------------------*/
5772
5773
5774VOS_STATUS hdd_request_firmware(char *pfileName,v_VOID_t *pCtx,v_VOID_t **ppfw_data, v_SIZE_t *pSize)
5775{
5776 int status;
5777 VOS_STATUS retval = VOS_STATUS_SUCCESS;
5778 hdd_context_t *pHddCtx = (hdd_context_t*)pCtx;
5779 ENTER();
5780
5781 if( (!strcmp(WLAN_FW_FILE, pfileName)) ) {
5782
5783 status = request_firmware(&pHddCtx->fw, pfileName, pHddCtx->parent_dev);
5784
5785 if(status || !pHddCtx->fw || !pHddCtx->fw->data) {
5786 hddLog(VOS_TRACE_LEVEL_FATAL, "%s: Firmware %s download failed",
5787 __func__, pfileName);
5788 retval = VOS_STATUS_E_FAILURE;
5789 }
5790
5791 else {
5792 *ppfw_data = (v_VOID_t *)pHddCtx->fw->data;
5793 *pSize = pHddCtx->fw->size;
5794 hddLog(VOS_TRACE_LEVEL_INFO, "%s: Firmware size = %d",
5795 __func__, *pSize);
5796 }
5797 }
5798 else if(!strcmp(WLAN_NV_FILE, pfileName)) {
5799
5800 status = request_firmware(&pHddCtx->nv, pfileName, pHddCtx->parent_dev);
5801
5802 if(status || !pHddCtx->nv || !pHddCtx->nv->data) {
5803 hddLog(VOS_TRACE_LEVEL_FATAL, "%s: nv %s download failed",
5804 __func__, pfileName);
5805 retval = VOS_STATUS_E_FAILURE;
5806 }
5807
5808 else {
5809 *ppfw_data = (v_VOID_t *)pHddCtx->nv->data;
5810 *pSize = pHddCtx->nv->size;
5811 hddLog(VOS_TRACE_LEVEL_INFO, "%s: nv file size = %d",
5812 __func__, *pSize);
5813 }
5814 }
5815
5816 EXIT();
5817 return retval;
5818}
5819/**---------------------------------------------------------------------------
5820 \brief hdd_full_pwr_cbk() - HDD full power callbackfunction
5821
5822 This is the function invoked by SME to inform the result of a full power
5823 request issued by HDD
5824
5825 \param - callbackcontext - Pointer to cookie
5826 status - result of request
5827
5828 \return - None
5829
5830--------------------------------------------------------------------------*/
5831void hdd_full_pwr_cbk(void *callbackContext, eHalStatus status)
5832{
5833 hdd_context_t *pHddCtx = (hdd_context_t*)callbackContext;
5834
Madan Mohan Koyyalamudi8bdd3112012-09-24 13:55:14 -07005835 hddLog(VOS_TRACE_LEVEL_INFO_HIGH,"HDD full Power callback status = %d", status);
Jeff Johnson295189b2012-06-20 16:38:30 -07005836 if(&pHddCtx->full_pwr_comp_var)
5837 {
5838 complete(&pHddCtx->full_pwr_comp_var);
5839 }
5840}
5841
5842/**---------------------------------------------------------------------------
5843
5844 \brief hdd_req_bmps_cbk() - HDD Request BMPS callback function
5845
5846 This is the function invoked by SME to inform the result of BMPS
5847 request issued by HDD
5848
5849 \param - callbackcontext - Pointer to cookie
5850 status - result of request
5851
5852 \return - None
5853
5854--------------------------------------------------------------------------*/
5855void hdd_req_bmps_cbk(void *callbackContext, eHalStatus status)
5856{
5857
5858 struct completion *completion_var = (struct completion*) callbackContext;
5859
Arif Hussain6d2a3322013-11-17 19:50:10 -08005860 hddLog(VOS_TRACE_LEVEL_ERROR, "HDD BMPS request Callback, status = %d", status);
Jeff Johnson295189b2012-06-20 16:38:30 -07005861 if(completion_var != NULL)
5862 {
5863 complete(completion_var);
5864 }
5865}
5866
5867/**---------------------------------------------------------------------------
5868
5869 \brief hdd_get_cfg_file_size() -
5870
5871 This function reads the configuration file using the request firmware
5872 API and returns the configuration file size.
5873
5874 \param - pCtx - Pointer to the adapter .
5875 - pFileName - Pointer to the file name.
5876 - pBufSize - Pointer to the buffer size.
5877
5878 \return - 0 for success, non zero for failure
5879
5880 --------------------------------------------------------------------------*/
5881
5882VOS_STATUS hdd_get_cfg_file_size(v_VOID_t *pCtx, char *pFileName, v_SIZE_t *pBufSize)
5883{
5884 int status;
5885 hdd_context_t *pHddCtx = (hdd_context_t*)pCtx;
5886
5887 ENTER();
5888
5889 status = request_firmware(&pHddCtx->fw, pFileName, pHddCtx->parent_dev);
5890
5891 if(status || !pHddCtx->fw || !pHddCtx->fw->data) {
5892 hddLog(VOS_TRACE_LEVEL_FATAL,"%s: CFG download failed",__func__);
5893 status = VOS_STATUS_E_FAILURE;
5894 }
5895 else {
5896 *pBufSize = pHddCtx->fw->size;
5897 hddLog(VOS_TRACE_LEVEL_INFO, "%s: CFG size = %d", __func__, *pBufSize);
5898 release_firmware(pHddCtx->fw);
5899 pHddCtx->fw = NULL;
5900 }
5901
5902 EXIT();
5903 return VOS_STATUS_SUCCESS;
5904}
5905
5906/**---------------------------------------------------------------------------
5907
5908 \brief hdd_read_cfg_file() -
5909
5910 This function reads the configuration file using the request firmware
5911 API and returns the cfg data and the buffer size of the configuration file.
5912
5913 \param - pCtx - Pointer to the adapter .
5914 - pFileName - Pointer to the file name.
5915 - pBuffer - Pointer to the data buffer.
5916 - pBufSize - Pointer to the buffer size.
5917
5918 \return - 0 for success, non zero for failure
5919
5920 --------------------------------------------------------------------------*/
5921
5922VOS_STATUS hdd_read_cfg_file(v_VOID_t *pCtx, char *pFileName,
5923 v_VOID_t *pBuffer, v_SIZE_t *pBufSize)
5924{
5925 int status;
5926 hdd_context_t *pHddCtx = (hdd_context_t*)pCtx;
5927
5928 ENTER();
5929
5930 status = request_firmware(&pHddCtx->fw, pFileName, pHddCtx->parent_dev);
5931
5932 if(status || !pHddCtx->fw || !pHddCtx->fw->data) {
5933 hddLog(VOS_TRACE_LEVEL_FATAL,"%s: CFG download failed",__func__);
5934 return VOS_STATUS_E_FAILURE;
5935 }
5936 else {
5937 if(*pBufSize != pHddCtx->fw->size) {
5938 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Caller sets invalid CFG "
5939 "file size", __func__);
5940 release_firmware(pHddCtx->fw);
5941 pHddCtx->fw = NULL;
5942 return VOS_STATUS_E_FAILURE;
5943 }
5944 else {
5945 if(pBuffer) {
5946 vos_mem_copy(pBuffer,pHddCtx->fw->data,*pBufSize);
5947 }
5948 release_firmware(pHddCtx->fw);
5949 pHddCtx->fw = NULL;
5950 }
5951 }
5952
5953 EXIT();
5954
5955 return VOS_STATUS_SUCCESS;
5956}
5957
5958/**---------------------------------------------------------------------------
5959
Mahesh A Saptasgar64534612014-09-23 13:13:33 +05305960 \brief __hdd_set_mac_address() -
Jeff Johnson295189b2012-06-20 16:38:30 -07005961
5962 This function sets the user specified mac address using
5963 the command ifconfig wlanX hw ether <mac adress>.
5964
5965 \param - dev - Pointer to the net device.
5966 - addr - Pointer to the sockaddr.
5967 \return - 0 for success, non zero for failure
5968
5969 --------------------------------------------------------------------------*/
5970
Mahesh A Saptasgar64534612014-09-23 13:13:33 +05305971static int __hdd_set_mac_address(struct net_device *dev, void *addr)
Jeff Johnson295189b2012-06-20 16:38:30 -07005972{
Mahesh A Saptasagar74088392015-02-05 17:22:09 +05305973 hdd_adapter_t *pAdapter;
5974 hdd_context_t *pHddCtx;
Jeff Johnson295189b2012-06-20 16:38:30 -07005975 struct sockaddr *psta_mac_addr = addr;
5976 eHalStatus halStatus = eHAL_STATUS_SUCCESS;
Mahesh A Saptasagar74088392015-02-05 17:22:09 +05305977 int ret = 0;
Jeff Johnson295189b2012-06-20 16:38:30 -07005978
5979 ENTER();
Mahesh A Saptasagar74088392015-02-05 17:22:09 +05305980 pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
5981 if (NULL == pAdapter)
5982 {
5983 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
5984 "%s: Adapter is NULL",__func__);
5985 return -EINVAL;
5986 }
5987 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
5988 ret = wlan_hdd_validate_context(pHddCtx);
5989 if (0 != ret)
5990 {
Mahesh A Saptasagar74088392015-02-05 17:22:09 +05305991 return ret;
5992 }
Jeff Johnson295189b2012-06-20 16:38:30 -07005993
5994 memcpy(&pAdapter->macAddressCurrent, psta_mac_addr->sa_data, ETH_ALEN);
Jeff Johnson295189b2012-06-20 16:38:30 -07005995 memcpy(dev->dev_addr, psta_mac_addr->sa_data, ETH_ALEN);
5996
5997 EXIT();
5998 return halStatus;
5999}
6000
Mahesh A Saptasgar64534612014-09-23 13:13:33 +05306001/**---------------------------------------------------------------------------
6002
6003 \brief hdd_set_mac_address() -
6004
6005 Wrapper function to protect __hdd_set_mac_address() function from ssr
6006
6007 \param - dev - Pointer to the net device.
6008 - addr - Pointer to the sockaddr.
6009 \return - 0 for success, non zero for failure
6010
6011 --------------------------------------------------------------------------*/
6012static int hdd_set_mac_address(struct net_device *dev, void *addr)
6013{
6014 int ret;
6015
6016 vos_ssr_protect(__func__);
6017 ret = __hdd_set_mac_address(dev, addr);
6018 vos_ssr_unprotect(__func__);
6019
6020 return ret;
6021}
6022
Jeff Johnson295189b2012-06-20 16:38:30 -07006023tANI_U8* wlan_hdd_get_intf_addr(hdd_context_t* pHddCtx)
6024{
6025 int i;
6026 for ( i = 0; i < VOS_MAX_CONCURRENCY_PERSONA; i++)
6027 {
Abhishek Singheb183782014-02-06 13:37:21 +05306028 if( 0 == ((pHddCtx->cfg_ini->intfAddrMask) & (1 << i)) )
Jeff Johnson295189b2012-06-20 16:38:30 -07006029 break;
6030 }
6031
6032 if( VOS_MAX_CONCURRENCY_PERSONA == i)
6033 return NULL;
6034
6035 pHddCtx->cfg_ini->intfAddrMask |= (1 << i);
6036 return &pHddCtx->cfg_ini->intfMacAddr[i].bytes[0];
6037}
6038
6039void wlan_hdd_release_intf_addr(hdd_context_t* pHddCtx, tANI_U8* releaseAddr)
6040{
6041 int i;
6042 for ( i = 0; i < VOS_MAX_CONCURRENCY_PERSONA; i++)
6043 {
6044 if ( !memcmp(releaseAddr, &pHddCtx->cfg_ini->intfMacAddr[i].bytes[0], 6) )
6045 {
6046 pHddCtx->cfg_ini->intfAddrMask &= ~(1 << i);
6047 break;
6048 }
6049 }
6050 return;
6051}
6052
6053#if (LINUX_VERSION_CODE > KERNEL_VERSION(2,6,29))
6054 static struct net_device_ops wlan_drv_ops = {
6055 .ndo_open = hdd_open,
6056 .ndo_stop = hdd_stop,
6057 .ndo_uninit = hdd_uninit,
6058 .ndo_start_xmit = hdd_hard_start_xmit,
6059 .ndo_tx_timeout = hdd_tx_timeout,
6060 .ndo_get_stats = hdd_stats,
6061 .ndo_do_ioctl = hdd_ioctl,
6062 .ndo_set_mac_address = hdd_set_mac_address,
6063 .ndo_select_queue = hdd_select_queue,
6064#ifdef WLAN_FEATURE_PACKET_FILTERING
6065#if (LINUX_VERSION_CODE > KERNEL_VERSION(3,1,0))
6066 .ndo_set_rx_mode = hdd_set_multicast_list,
6067#else
6068 .ndo_set_multicast_list = hdd_set_multicast_list,
6069#endif //LINUX_VERSION_CODE
6070#endif
6071 };
Jeff Johnson295189b2012-06-20 16:38:30 -07006072 static struct net_device_ops wlan_mon_drv_ops = {
6073 .ndo_open = hdd_mon_open,
Katya Nigame7b69a82015-04-28 15:24:06 +05306074 .ndo_stop = hdd_mon_stop,
Jeff Johnson295189b2012-06-20 16:38:30 -07006075 .ndo_uninit = hdd_uninit,
6076 .ndo_start_xmit = hdd_mon_hard_start_xmit,
6077 .ndo_tx_timeout = hdd_tx_timeout,
6078 .ndo_get_stats = hdd_stats,
Katya Nigame7b69a82015-04-28 15:24:06 +05306079 .ndo_do_ioctl = hdd_mon_ioctl,
Jeff Johnson295189b2012-06-20 16:38:30 -07006080 .ndo_set_mac_address = hdd_set_mac_address,
6081 };
Mahesh A Saptasagar305e2632015-03-04 12:57:33 +05306082
Jeff Johnson295189b2012-06-20 16:38:30 -07006083#endif
6084
6085void hdd_set_station_ops( struct net_device *pWlanDev )
6086{
6087#if (LINUX_VERSION_CODE > KERNEL_VERSION(2,6,29))
Jeff Johnson295189b2012-06-20 16:38:30 -07006088 pWlanDev->netdev_ops = &wlan_drv_ops;
6089#else
6090 pWlanDev->open = hdd_open;
6091 pWlanDev->stop = hdd_stop;
6092 pWlanDev->uninit = hdd_uninit;
6093 pWlanDev->hard_start_xmit = NULL;
6094 pWlanDev->tx_timeout = hdd_tx_timeout;
6095 pWlanDev->get_stats = hdd_stats;
6096 pWlanDev->do_ioctl = hdd_ioctl;
Jeff Johnson295189b2012-06-20 16:38:30 -07006097 pWlanDev->set_mac_address = hdd_set_mac_address;
6098#endif
6099}
6100
Katya Nigam1fd24402015-02-16 14:52:19 +05306101void hdd_set_ibss_ops( hdd_adapter_t *pAdapter )
6102{
6103 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2,6,29))
6104 wlan_drv_ops.ndo_start_xmit = hdd_ibss_hard_start_xmit;
6105 #else
6106 pAdapter->dev->hard_start_xmit = hdd_ibss_hard_start_xmit;
6107 #endif
6108}
6109
Jeff Johnsoneed415b2013-01-18 16:11:20 -08006110static hdd_adapter_t* hdd_alloc_station_adapter( hdd_context_t *pHddCtx, tSirMacAddr macAddr, const char* name )
Jeff Johnson295189b2012-06-20 16:38:30 -07006111{
6112 struct net_device *pWlanDev = NULL;
6113 hdd_adapter_t *pAdapter = NULL;
Jeff Johnson295189b2012-06-20 16:38:30 -07006114 /*
6115 * cfg80211 initialization and registration....
6116 */
6117 pWlanDev = alloc_netdev_mq(sizeof( hdd_adapter_t ), name, ether_setup, NUM_TX_QUEUES);
6118
Jeff Johnson295189b2012-06-20 16:38:30 -07006119 if(pWlanDev != NULL)
6120 {
6121
6122 //Save the pointer to the net_device in the HDD adapter
6123 pAdapter = (hdd_adapter_t*) netdev_priv( pWlanDev );
6124
Jeff Johnson295189b2012-06-20 16:38:30 -07006125 vos_mem_zero( pAdapter, sizeof( hdd_adapter_t ) );
6126
6127 pAdapter->dev = pWlanDev;
6128 pAdapter->pHddCtx = pHddCtx;
6129 pAdapter->magic = WLAN_HDD_ADAPTER_MAGIC;
Agarwal Ashish47d18112014-08-04 19:55:07 +05306130 spin_lock_init(&pAdapter->lock_for_active_session);
Jeff Johnson295189b2012-06-20 16:38:30 -07006131
6132 init_completion(&pAdapter->session_open_comp_var);
6133 init_completion(&pAdapter->session_close_comp_var);
6134 init_completion(&pAdapter->disconnect_comp_var);
6135 init_completion(&pAdapter->linkup_event_var);
6136 init_completion(&pAdapter->cancel_rem_on_chan_var);
6137 init_completion(&pAdapter->rem_on_chan_ready_event);
Vinay Krishna Erannaf0e523b2014-03-01 21:00:16 +05306138 init_completion(&pAdapter->pno_comp_var);
Jeff Johnson295189b2012-06-20 16:38:30 -07006139#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
6140 init_completion(&pAdapter->offchannel_tx_event);
6141#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07006142 init_completion(&pAdapter->tx_action_cnf_event);
Hoonki Lee11f7dda2013-02-14 16:55:44 -08006143#ifdef FEATURE_WLAN_TDLS
6144 init_completion(&pAdapter->tdls_add_station_comp);
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07006145 init_completion(&pAdapter->tdls_del_station_comp);
Gopichand Nakkalab977a972013-02-18 19:15:09 -08006146 init_completion(&pAdapter->tdls_mgmt_comp);
Gopichand Nakkala79ff85d2013-05-27 17:05:29 +05306147 init_completion(&pAdapter->tdls_link_establish_req_comp);
Hoonki Lee11f7dda2013-02-14 16:55:44 -08006148#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07006149 init_completion(&pHddCtx->mc_sus_event_var);
6150 init_completion(&pHddCtx->tx_sus_event_var);
Gopichand Nakkala05621412013-06-19 19:37:38 +05306151 init_completion(&pHddCtx->rx_sus_event_var);
Jeff Johnson9efb9aa2013-03-15 13:59:27 -07006152 init_completion(&pAdapter->ula_complete);
Sameer Thalappilda4eb6a2013-09-25 11:45:07 -07006153 init_completion(&pAdapter->change_country_code);
Jeff Johnson295189b2012-06-20 16:38:30 -07006154
Rajeev79dbe4c2013-10-05 11:03:42 +05306155#ifdef FEATURE_WLAN_BATCH_SCAN
6156 init_completion(&pAdapter->hdd_set_batch_scan_req_var);
6157 init_completion(&pAdapter->hdd_get_batch_scan_req_var);
6158 pAdapter->pBatchScanRsp = NULL;
6159 pAdapter->numScanList = 0;
Rajeev Kumar20140c12013-10-21 19:39:02 -07006160 pAdapter->batchScanState = eHDD_BATCH_SCAN_STATE_STOPPED;
Kiet Lamaa8e15a2014-02-11 23:30:06 -08006161 pAdapter->prev_batch_id = 0;
Rajeev79dbe4c2013-10-05 11:03:42 +05306162 mutex_init(&pAdapter->hdd_batch_scan_lock);
6163#endif
6164
Jeff Johnson295189b2012-06-20 16:38:30 -07006165 pAdapter->isLinkUpSvcNeeded = FALSE;
6166 pAdapter->higherDtimTransition = eANI_BOOLEAN_TRUE;
6167 //Init the net_device structure
6168 strlcpy(pWlanDev->name, name, IFNAMSIZ);
6169
6170 vos_mem_copy(pWlanDev->dev_addr, (void *)macAddr, sizeof(tSirMacAddr));
6171 vos_mem_copy( pAdapter->macAddressCurrent.bytes, macAddr, sizeof(tSirMacAddr));
6172 pWlanDev->watchdog_timeo = HDD_TX_TIMEOUT;
6173 pWlanDev->hard_header_len += LIBRA_HW_NEEDED_HEADROOM;
6174
6175 hdd_set_station_ops( pAdapter->dev );
6176
6177 pWlanDev->destructor = free_netdev;
Jeff Johnson295189b2012-06-20 16:38:30 -07006178 pWlanDev->ieee80211_ptr = &pAdapter->wdev ;
6179 pAdapter->wdev.wiphy = pHddCtx->wiphy;
6180 pAdapter->wdev.netdev = pWlanDev;
Jeff Johnson295189b2012-06-20 16:38:30 -07006181 /* set pWlanDev's parent to underlying device */
6182 SET_NETDEV_DEV(pWlanDev, pHddCtx->parent_dev);
Kumar Anand82c009f2014-05-29 00:29:42 -07006183
6184 hdd_wmm_init( pAdapter );
Jeff Johnson295189b2012-06-20 16:38:30 -07006185 }
6186
6187 return pAdapter;
6188}
6189
6190VOS_STATUS hdd_register_interface( hdd_adapter_t *pAdapter, tANI_U8 rtnl_lock_held )
6191{
6192 struct net_device *pWlanDev = pAdapter->dev;
6193 //hdd_station_ctx_t *pHddStaCtx = &pAdapter->sessionCtx.station;
6194 //hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX( pAdapter );
6195 //eHalStatus halStatus = eHAL_STATUS_SUCCESS;
6196
6197 if( rtnl_lock_held )
6198 {
Madan Mohan Koyyalamudid8ac8662012-11-06 19:04:56 -08006199 if (strnchr(pWlanDev->name, strlen(pWlanDev->name), '%')) {
Jeff Johnson295189b2012-06-20 16:38:30 -07006200 if( dev_alloc_name(pWlanDev, pWlanDev->name) < 0 )
6201 {
6202 hddLog(VOS_TRACE_LEVEL_ERROR,"%s:Failed:dev_alloc_name",__func__);
6203 return VOS_STATUS_E_FAILURE;
6204 }
6205 }
6206 if (register_netdevice(pWlanDev))
6207 {
6208 hddLog(VOS_TRACE_LEVEL_ERROR,"%s:Failed:register_netdev",__func__);
6209 return VOS_STATUS_E_FAILURE;
6210 }
6211 }
6212 else
6213 {
6214 if(register_netdev(pWlanDev))
6215 {
6216 hddLog(VOS_TRACE_LEVEL_ERROR,"%s: Failed:register_netdev",__func__);
6217 return VOS_STATUS_E_FAILURE;
6218 }
6219 }
6220 set_bit(NET_DEVICE_REGISTERED, &pAdapter->event_flags);
6221
6222 return VOS_STATUS_SUCCESS;
6223}
6224
Jeff Johnsonc6ab5b92013-04-15 17:02:05 -07006225static eHalStatus hdd_smeCloseSessionCallback(void *pContext)
Jeff Johnson295189b2012-06-20 16:38:30 -07006226{
Jeff Johnsonc6ab5b92013-04-15 17:02:05 -07006227 hdd_adapter_t *pAdapter = pContext;
Jeff Johnson295189b2012-06-20 16:38:30 -07006228
Jeff Johnsonc6ab5b92013-04-15 17:02:05 -07006229 if (NULL == pAdapter)
6230 {
6231 hddLog(VOS_TRACE_LEVEL_FATAL, "%s: NULL pAdapter", __func__);
6232 return eHAL_STATUS_INVALID_PARAMETER;
Jeff Johnson295189b2012-06-20 16:38:30 -07006233 }
Jeff Johnsonc6ab5b92013-04-15 17:02:05 -07006234
6235 if (WLAN_HDD_ADAPTER_MAGIC != pAdapter->magic)
6236 {
6237 hddLog(VOS_TRACE_LEVEL_FATAL, "%s: Invalid magic", __func__);
6238 return eHAL_STATUS_NOT_INITIALIZED;
6239 }
6240
6241 clear_bit(SME_SESSION_OPENED, &pAdapter->event_flags);
6242
Sameer Thalappilbee426e2013-10-30 10:30:30 -07006243#ifndef WLAN_OPEN_SOURCE
Jeff Johnsonc6ab5b92013-04-15 17:02:05 -07006244 /* need to make sure all of our scheduled work has completed.
6245 * This callback is called from MC thread context, so it is safe to
6246 * to call below flush workqueue API from here.
Sameer Thalappilbee426e2013-10-30 10:30:30 -07006247 *
6248 * Even though this is called from MC thread context, if there is a faulty
6249 * work item in the system, that can hang this call forever. So flushing
6250 * this global work queue is not safe; and now we make sure that
6251 * individual work queues are stopped correctly. But the cancel work queue
6252 * is a GPL only API, so the proprietary version of the driver would still
6253 * rely on the global work queue flush.
Jeff Johnsonc6ab5b92013-04-15 17:02:05 -07006254 */
6255 flush_scheduled_work();
Sameer Thalappilbee426e2013-10-30 10:30:30 -07006256#endif
Jeff Johnsonc6ab5b92013-04-15 17:02:05 -07006257
6258 /* We can be blocked while waiting for scheduled work to be
6259 * flushed, and the adapter structure can potentially be freed, in
6260 * which case the magic will have been reset. So make sure the
6261 * magic is still good, and hence the adapter structure is still
6262 * valid, before signaling completion */
6263 if (WLAN_HDD_ADAPTER_MAGIC == pAdapter->magic)
6264 {
6265 complete(&pAdapter->session_close_comp_var);
6266 }
6267
Jeff Johnson295189b2012-06-20 16:38:30 -07006268 return eHAL_STATUS_SUCCESS;
6269}
6270
6271VOS_STATUS hdd_init_station_mode( hdd_adapter_t *pAdapter )
6272{
6273 struct net_device *pWlanDev = pAdapter->dev;
6274 hdd_station_ctx_t *pHddStaCtx = &pAdapter->sessionCtx.station;
6275 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX( pAdapter );
6276 eHalStatus halStatus = eHAL_STATUS_SUCCESS;
6277 VOS_STATUS status = VOS_STATUS_E_FAILURE;
c_hpothu6ff1c3c2013-10-01 19:01:57 +05306278 long rc = 0;
Jeff Johnson295189b2012-06-20 16:38:30 -07006279
6280 INIT_COMPLETION(pAdapter->session_open_comp_var);
Kiran Kumar Lokere0ad5cd32013-06-25 11:26:22 -07006281 sme_SetCurrDeviceMode(pHddCtx->hHal, pAdapter->device_mode);
Jeff Johnson295189b2012-06-20 16:38:30 -07006282 //Open a SME session for future operation
6283 halStatus = sme_OpenSession( pHddCtx->hHal, hdd_smeRoamCallback, pAdapter,
Kiran Kumar Lokere0ad5cd32013-06-25 11:26:22 -07006284 (tANI_U8 *)&pAdapter->macAddressCurrent, &pAdapter->sessionId);
Jeff Johnson295189b2012-06-20 16:38:30 -07006285 if ( !HAL_STATUS_SUCCESS( halStatus ) )
6286 {
6287 hddLog(VOS_TRACE_LEVEL_FATAL,
Jeff Johnson0299d0a2013-10-30 12:37:43 -07006288 "sme_OpenSession() failed with status code %08d [x%08x]",
Jeff Johnson295189b2012-06-20 16:38:30 -07006289 halStatus, halStatus );
6290 status = VOS_STATUS_E_FAILURE;
6291 goto error_sme_open;
6292 }
6293
6294 //Block on a completion variable. Can't wait forever though.
Vinay Krishna Eranna0fe2e7c2014-04-09 21:32:08 +05306295 rc = wait_for_completion_timeout(
Jeff Johnson295189b2012-06-20 16:38:30 -07006296 &pAdapter->session_open_comp_var,
6297 msecs_to_jiffies(WLAN_WAIT_TIME_SESSIONOPENCLOSE));
c_hpothu6ff1c3c2013-10-01 19:01:57 +05306298 if (rc <= 0)
Jeff Johnson295189b2012-06-20 16:38:30 -07006299 {
6300 hddLog(VOS_TRACE_LEVEL_FATAL,
c_hpothu6ff1c3c2013-10-01 19:01:57 +05306301 "Session is not opened within timeout period code %ld", rc );
Jeff Johnson295189b2012-06-20 16:38:30 -07006302 status = VOS_STATUS_E_FAILURE;
6303 goto error_sme_open;
6304 }
6305
6306 // Register wireless extensions
6307 if( eHAL_STATUS_SUCCESS != (halStatus = hdd_register_wext(pWlanDev)))
6308 {
6309 hddLog(VOS_TRACE_LEVEL_FATAL,
Jeff Johnson0299d0a2013-10-30 12:37:43 -07006310 "hdd_register_wext() failed with status code %08d [x%08x]",
Jeff Johnson295189b2012-06-20 16:38:30 -07006311 halStatus, halStatus );
6312 status = VOS_STATUS_E_FAILURE;
6313 goto error_register_wext;
6314 }
Katya Nigam1fd24402015-02-16 14:52:19 +05306315
Jeff Johnson295189b2012-06-20 16:38:30 -07006316 //Safe to register the hard_start_xmit function again
Katya Nigam1fd24402015-02-16 14:52:19 +05306317 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2,6,29))
6318 wlan_drv_ops.ndo_start_xmit = hdd_hard_start_xmit;
6319 #else
6320 pWlanDev->hard_start_xmit = hdd_hard_start_xmit;
6321 #endif
Jeff Johnson295189b2012-06-20 16:38:30 -07006322
6323 //Set the Connection State to Not Connected
Abhishek Singhf4669da2014-05-26 15:07:49 +05306324 hddLog(VOS_TRACE_LEVEL_INFO,
6325 "%s: Set HDD connState to eConnectionState_NotConnected",
6326 __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07006327 pHddStaCtx->conn_info.connState = eConnectionState_NotConnected;
6328
6329 //Set the default operation channel
6330 pHddStaCtx->conn_info.operationChannel = pHddCtx->cfg_ini->OperatingChannel;
6331
6332 /* Make the default Auth Type as OPEN*/
6333 pHddStaCtx->conn_info.authType = eCSR_AUTH_TYPE_OPEN_SYSTEM;
6334
6335 if( VOS_STATUS_SUCCESS != ( status = hdd_init_tx_rx( pAdapter ) ) )
6336 {
6337 hddLog(VOS_TRACE_LEVEL_FATAL,
Jeff Johnson0299d0a2013-10-30 12:37:43 -07006338 "hdd_init_tx_rx() failed with status code %08d [x%08x]",
Jeff Johnson295189b2012-06-20 16:38:30 -07006339 status, status );
6340 goto error_init_txrx;
6341 }
6342
6343 set_bit(INIT_TX_RX_SUCCESS, &pAdapter->event_flags);
6344
6345 if( VOS_STATUS_SUCCESS != ( status = hdd_wmm_adapter_init( pAdapter ) ) )
6346 {
6347 hddLog(VOS_TRACE_LEVEL_FATAL,
Jeff Johnson0299d0a2013-10-30 12:37:43 -07006348 "hdd_wmm_adapter_init() failed with status code %08d [x%08x]",
Jeff Johnson295189b2012-06-20 16:38:30 -07006349 status, status );
6350 goto error_wmm_init;
6351 }
6352
6353 set_bit(WMM_INIT_DONE, &pAdapter->event_flags);
6354
6355 return VOS_STATUS_SUCCESS;
6356
6357error_wmm_init:
6358 clear_bit(INIT_TX_RX_SUCCESS, &pAdapter->event_flags);
6359 hdd_deinit_tx_rx(pAdapter);
6360error_init_txrx:
6361 hdd_UnregisterWext(pWlanDev);
6362error_register_wext:
Jeff Johnsonc6ab5b92013-04-15 17:02:05 -07006363 if (test_bit(SME_SESSION_OPENED, &pAdapter->event_flags))
Jeff Johnson295189b2012-06-20 16:38:30 -07006364 {
6365 INIT_COMPLETION(pAdapter->session_close_comp_var);
Jeff Johnsonc6ab5b92013-04-15 17:02:05 -07006366 if (eHAL_STATUS_SUCCESS == sme_CloseSession(pHddCtx->hHal,
Jeff Johnson295189b2012-06-20 16:38:30 -07006367 pAdapter->sessionId,
Jeff Johnsonc6ab5b92013-04-15 17:02:05 -07006368 hdd_smeCloseSessionCallback, pAdapter))
Jeff Johnson295189b2012-06-20 16:38:30 -07006369 {
c_hpothu6ff1c3c2013-10-01 19:01:57 +05306370 unsigned long rc;
6371
Jeff Johnson295189b2012-06-20 16:38:30 -07006372 //Block on a completion variable. Can't wait forever though.
c_hpothu6ff1c3c2013-10-01 19:01:57 +05306373 rc = wait_for_completion_timeout(
Jeff Johnson295189b2012-06-20 16:38:30 -07006374 &pAdapter->session_close_comp_var,
Jeff Johnsonc6ab5b92013-04-15 17:02:05 -07006375 msecs_to_jiffies(WLAN_WAIT_TIME_SESSIONOPENCLOSE));
c_hpothu6ff1c3c2013-10-01 19:01:57 +05306376 if (rc <= 0)
6377 hddLog(VOS_TRACE_LEVEL_ERROR,
6378 FL("Session is not opened within timeout period code %ld"), rc);
Jeff Johnson295189b2012-06-20 16:38:30 -07006379 }
6380}
6381error_sme_open:
6382 return status;
6383}
6384
Jeff Johnson295189b2012-06-20 16:38:30 -07006385void hdd_cleanup_actionframe( hdd_context_t *pHddCtx, hdd_adapter_t *pAdapter )
6386{
6387 hdd_cfg80211_state_t *cfgState;
6388
6389 cfgState = WLAN_HDD_GET_CFG_STATE_PTR( pAdapter );
6390
6391 if( NULL != cfgState->buf )
6392 {
c_hpothu6ff1c3c2013-10-01 19:01:57 +05306393 long rc;
Jeff Johnson295189b2012-06-20 16:38:30 -07006394 INIT_COMPLETION(pAdapter->tx_action_cnf_event);
6395 rc = wait_for_completion_interruptible_timeout(
6396 &pAdapter->tx_action_cnf_event,
6397 msecs_to_jiffies(ACTION_FRAME_TX_TIMEOUT));
c_hpothu6ff1c3c2013-10-01 19:01:57 +05306398 if (rc <= 0)
Jeff Johnson295189b2012-06-20 16:38:30 -07006399 {
Sudhir Sattayappa Kohalli8ee532d2013-02-15 13:16:26 -08006400 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
c_hpothu6ff1c3c2013-10-01 19:01:57 +05306401 "%s ERROR: HDD Wait for Action Confirmation Failed!! %ld"
6402 , __func__, rc);
Jeff Johnson295189b2012-06-20 16:38:30 -07006403 }
6404 }
6405 return;
6406}
Jeff Johnson295189b2012-06-20 16:38:30 -07006407
c_hpothu002231a2015-02-05 14:58:51 +05306408void hdd_deinit_adapter( hdd_context_t *pHddCtx, hdd_adapter_t *pAdapter, tANI_U8 rtnl_held )
Jeff Johnson295189b2012-06-20 16:38:30 -07006409{
6410 ENTER();
6411 switch ( pAdapter->device_mode )
6412 {
Katya Nigam1fd24402015-02-16 14:52:19 +05306413 case WLAN_HDD_IBSS:
6414 {
6415 if(test_bit(INIT_TX_RX_SUCCESS, &pAdapter->event_flags))
6416 {
6417 hdd_ibss_deinit_tx_rx( pAdapter );
6418 clear_bit(INIT_TX_RX_SUCCESS, &pAdapter->event_flags);
6419 }
6420 }
Jeff Johnson295189b2012-06-20 16:38:30 -07006421 case WLAN_HDD_INFRA_STATION:
6422 case WLAN_HDD_P2P_CLIENT:
Jeff Johnsone7245742012-09-05 17:12:55 -07006423 case WLAN_HDD_P2P_DEVICE:
Jeff Johnson295189b2012-06-20 16:38:30 -07006424 {
6425 if(test_bit(INIT_TX_RX_SUCCESS, &pAdapter->event_flags))
6426 {
6427 hdd_deinit_tx_rx( pAdapter );
6428 clear_bit(INIT_TX_RX_SUCCESS, &pAdapter->event_flags);
6429 }
6430
6431 if(test_bit(WMM_INIT_DONE, &pAdapter->event_flags))
6432 {
6433 hdd_wmm_adapter_close( pAdapter );
6434 clear_bit(WMM_INIT_DONE, &pAdapter->event_flags);
6435 }
6436
Jeff Johnson295189b2012-06-20 16:38:30 -07006437 hdd_cleanup_actionframe(pHddCtx, pAdapter);
Jeff Johnson295189b2012-06-20 16:38:30 -07006438 break;
6439 }
6440
6441 case WLAN_HDD_SOFTAP:
6442 case WLAN_HDD_P2P_GO:
Jeff Johnson295189b2012-06-20 16:38:30 -07006443 {
Madan Mohan Koyyalamudi8c6dec82013-09-26 15:56:13 +05306444
6445 if (test_bit(WMM_INIT_DONE, &pAdapter->event_flags))
6446 {
6447 hdd_wmm_adapter_close( pAdapter );
6448 clear_bit(WMM_INIT_DONE, &pAdapter->event_flags);
6449 }
6450
Jeff Johnson295189b2012-06-20 16:38:30 -07006451 hdd_cleanup_actionframe(pHddCtx, pAdapter);
Jeff Johnson295189b2012-06-20 16:38:30 -07006452
c_hpothu002231a2015-02-05 14:58:51 +05306453 hdd_unregister_hostapd(pAdapter, rtnl_held);
Jeff Johnson295189b2012-06-20 16:38:30 -07006454 hdd_set_conparam( 0 );
Jeff Johnson295189b2012-06-20 16:38:30 -07006455 break;
6456 }
6457
6458 case WLAN_HDD_MONITOR:
6459 {
Jeff Johnson295189b2012-06-20 16:38:30 -07006460 if(test_bit(INIT_TX_RX_SUCCESS, &pAdapter->event_flags))
6461 {
6462 hdd_deinit_tx_rx( pAdapter );
6463 clear_bit(INIT_TX_RX_SUCCESS, &pAdapter->event_flags);
6464 }
Jeff Johnson295189b2012-06-20 16:38:30 -07006465 break;
6466 }
6467
6468
6469 default:
6470 break;
6471 }
6472
6473 EXIT();
6474}
6475
6476void hdd_cleanup_adapter( hdd_context_t *pHddCtx, hdd_adapter_t *pAdapter, tANI_U8 rtnl_held )
6477{
Mingcheng Zhu87f22fc2014-01-30 19:23:32 -08006478 struct net_device *pWlanDev = NULL;
Srinivas, Dasari693dfc52013-12-27 17:29:09 +05306479
6480 ENTER();
6481 if (NULL == pAdapter)
6482 {
6483 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
6484 "%s: HDD adapter is Null", __func__);
6485 return;
6486 }
6487
6488 pWlanDev = pAdapter->dev;
Jeff Johnson295189b2012-06-20 16:38:30 -07006489
Rajeev79dbe4c2013-10-05 11:03:42 +05306490#ifdef FEATURE_WLAN_BATCH_SCAN
Srinivas, Dasari693dfc52013-12-27 17:29:09 +05306491 if ((pAdapter->device_mode == WLAN_HDD_INFRA_STATION)
6492 || (pAdapter->device_mode == WLAN_HDD_P2P_CLIENT)
Rajeev Kumarf999e582014-01-09 17:33:29 -08006493 || (pAdapter->device_mode == WLAN_HDD_P2P_GO)
Srinivas, Dasari693dfc52013-12-27 17:29:09 +05306494 || (pAdapter->device_mode == WLAN_HDD_P2P_DEVICE)
6495 )
6496 {
Rajeev Kumarf999e582014-01-09 17:33:29 -08006497 if (pAdapter)
Rajeev79dbe4c2013-10-05 11:03:42 +05306498 {
Rajeev Kumarf999e582014-01-09 17:33:29 -08006499 if (eHDD_BATCH_SCAN_STATE_STARTED == pAdapter->batchScanState)
6500 {
6501 hdd_deinit_batch_scan(pAdapter);
6502 }
Rajeev79dbe4c2013-10-05 11:03:42 +05306503 }
Rajeev Kumarf999e582014-01-09 17:33:29 -08006504 }
Rajeev79dbe4c2013-10-05 11:03:42 +05306505#endif
6506
Jeff Johnson295189b2012-06-20 16:38:30 -07006507 if(test_bit(NET_DEVICE_REGISTERED, &pAdapter->event_flags)) {
6508 if( rtnl_held )
6509 {
6510 unregister_netdevice(pWlanDev);
6511 }
6512 else
6513 {
6514 unregister_netdev(pWlanDev);
6515 }
6516 // note that the pAdapter is no longer valid at this point
6517 // since the memory has been reclaimed
6518 }
6519
Srinivas, Dasari693dfc52013-12-27 17:29:09 +05306520 EXIT();
Jeff Johnson295189b2012-06-20 16:38:30 -07006521}
6522
Tushnim Bhattacharyya3a37def2013-02-24 11:11:15 -08006523void hdd_set_pwrparams(hdd_context_t *pHddCtx)
6524{
Gopichand Nakkalaa2fe5b02013-06-06 16:32:28 +05306525 VOS_STATUS status;
6526 hdd_adapter_t *pAdapter = NULL;
6527 hdd_adapter_list_node_t *pAdapterNode = NULL, *pNext = NULL;
Tushnim Bhattacharyya3a37def2013-02-24 11:11:15 -08006528
Gopichand Nakkalaa2fe5b02013-06-06 16:32:28 +05306529 status = hdd_get_front_adapter ( pHddCtx, &pAdapterNode );
Tushnim Bhattacharyya3a37def2013-02-24 11:11:15 -08006530
Gopichand Nakkalaa2fe5b02013-06-06 16:32:28 +05306531 /*loop through all adapters.*/
6532 while ( NULL != pAdapterNode && VOS_STATUS_SUCCESS == status )
Tushnim Bhattacharyya3a37def2013-02-24 11:11:15 -08006533 {
Gopichand Nakkalaa2fe5b02013-06-06 16:32:28 +05306534 pAdapter = pAdapterNode->pAdapter;
6535 if ( (WLAN_HDD_INFRA_STATION != pAdapter->device_mode)
6536 && (WLAN_HDD_P2P_CLIENT != pAdapter->device_mode) )
Tushnim Bhattacharyya3a37def2013-02-24 11:11:15 -08006537
Gopichand Nakkalaa2fe5b02013-06-06 16:32:28 +05306538 { // we skip this registration for modes other than STA and P2P client modes.
6539 status = hdd_get_next_adapter ( pHddCtx, pAdapterNode, &pNext );
6540 pAdapterNode = pNext;
6541 continue;
6542 }
Tushnim Bhattacharyya3a37def2013-02-24 11:11:15 -08006543
Gopichand Nakkalaa2fe5b02013-06-06 16:32:28 +05306544 //Apply Dynamic DTIM For P2P
6545 //Only if ignoreDynamicDtimInP2pMode is not set in ini
6546 if ((pHddCtx->cfg_ini->enableDynamicDTIM ||
6547 pHddCtx->cfg_ini->enableModulatedDTIM) &&
6548 ((WLAN_HDD_INFRA_STATION == pAdapter->device_mode) ||
6549 ((WLAN_HDD_P2P_CLIENT == pAdapter->device_mode) &&
6550 !(pHddCtx->cfg_ini->ignoreDynamicDtimInP2pMode))) &&
6551 (eANI_BOOLEAN_TRUE == pAdapter->higherDtimTransition) &&
6552 (eConnectionState_Associated ==
6553 (WLAN_HDD_GET_STATION_CTX_PTR(pAdapter))->conn_info.connState) &&
6554 (pHddCtx->cfg_ini->fIsBmpsEnabled))
6555 {
6556 tSirSetPowerParamsReq powerRequest = { 0 };
Tushnim Bhattacharyya3a37def2013-02-24 11:11:15 -08006557
Gopichand Nakkalaa2fe5b02013-06-06 16:32:28 +05306558 powerRequest.uIgnoreDTIM = 1;
6559 powerRequest.uMaxLIModulatedDTIM = pHddCtx->cfg_ini->fMaxLIModulatedDTIM;
6560
6561 if (pHddCtx->cfg_ini->enableModulatedDTIM)
6562 {
6563 powerRequest.uDTIMPeriod = pHddCtx->cfg_ini->enableModulatedDTIM;
6564 powerRequest.uListenInterval = pHddCtx->hdd_actual_LI_value;
6565 }
6566 else
6567 {
6568 powerRequest.uListenInterval = pHddCtx->cfg_ini->enableDynamicDTIM;
6569 }
6570
6571 /* Update ignoreDTIM and ListedInterval in CFG to remain at the DTIM
6572 * specified during Enter/Exit BMPS when LCD off*/
6573 ccmCfgSetInt(pHddCtx->hHal, WNI_CFG_IGNORE_DTIM, powerRequest.uIgnoreDTIM,
6574 NULL, eANI_BOOLEAN_FALSE);
6575 ccmCfgSetInt(pHddCtx->hHal, WNI_CFG_LISTEN_INTERVAL, powerRequest.uListenInterval,
6576 NULL, eANI_BOOLEAN_FALSE);
6577
6578 /* switch to the DTIM specified in cfg.ini */
6579 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
6580 "Switch to DTIM %d", powerRequest.uListenInterval);
6581 sme_SetPowerParams( pHddCtx->hHal, &powerRequest, TRUE);
6582 break;
6583
6584 }
6585
6586 status = hdd_get_next_adapter ( pHddCtx, pAdapterNode, &pNext );
6587 pAdapterNode = pNext;
6588 }
Tushnim Bhattacharyya3a37def2013-02-24 11:11:15 -08006589}
6590
6591void hdd_reset_pwrparams(hdd_context_t *pHddCtx)
6592{
6593 /*Switch back to DTIM 1*/
6594 tSirSetPowerParamsReq powerRequest = { 0 };
6595
6596 powerRequest.uIgnoreDTIM = pHddCtx->hdd_actual_ignore_DTIM_value;
6597 powerRequest.uListenInterval = pHddCtx->hdd_actual_LI_value;
Yue Mac24062f2013-05-13 17:01:29 -07006598 powerRequest.uMaxLIModulatedDTIM = pHddCtx->cfg_ini->fMaxLIModulatedDTIM;
Tushnim Bhattacharyya3a37def2013-02-24 11:11:15 -08006599
6600 /* Update ignoreDTIM and ListedInterval in CFG with default values */
6601 ccmCfgSetInt(pHddCtx->hHal, WNI_CFG_IGNORE_DTIM, powerRequest.uIgnoreDTIM,
6602 NULL, eANI_BOOLEAN_FALSE);
6603 ccmCfgSetInt(pHddCtx->hHal, WNI_CFG_LISTEN_INTERVAL, powerRequest.uListenInterval,
6604 NULL, eANI_BOOLEAN_FALSE);
6605
6606 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
6607 "Switch to DTIM%d",powerRequest.uListenInterval);
6608 sme_SetPowerParams( pHddCtx->hHal, &powerRequest, TRUE);
6609
6610}
6611
Jeff Johnson295189b2012-06-20 16:38:30 -07006612VOS_STATUS hdd_enable_bmps_imps(hdd_context_t *pHddCtx)
6613{
6614 VOS_STATUS status = VOS_STATUS_SUCCESS;
Sushant Kaushik4928e542014-12-29 15:25:54 +05306615 if (WLAN_HDD_IS_UNLOAD_IN_PROGRESS(pHddCtx))
6616 {
6617 hddLog( LOGE, FL("Wlan Unload in progress"));
6618 return VOS_STATUS_E_PERM;
6619 }
Jeff Johnson295189b2012-06-20 16:38:30 -07006620 if(pHddCtx->cfg_ini->fIsBmpsEnabled)
6621 {
6622 sme_EnablePowerSave(pHddCtx->hHal, ePMC_BEACON_MODE_POWER_SAVE);
6623 }
6624
6625 if(pHddCtx->cfg_ini->fIsAutoBmpsTimerEnabled)
6626 {
6627 sme_StartAutoBmpsTimer(pHddCtx->hHal);
6628 }
6629
6630 if (pHddCtx->cfg_ini->fIsImpsEnabled)
6631 {
6632 sme_EnablePowerSave (pHddCtx->hHal, ePMC_IDLE_MODE_POWER_SAVE);
6633 }
6634
6635 return status;
6636}
6637
6638VOS_STATUS hdd_disable_bmps_imps(hdd_context_t *pHddCtx, tANI_U8 session_type)
6639{
6640 hdd_adapter_t *pAdapter = NULL;
6641 eHalStatus halStatus;
6642 VOS_STATUS status = VOS_STATUS_E_INVAL;
6643 v_BOOL_t disableBmps = FALSE;
6644 v_BOOL_t disableImps = FALSE;
6645
6646 switch(session_type)
6647 {
6648 case WLAN_HDD_INFRA_STATION:
6649 case WLAN_HDD_SOFTAP:
Jeff Johnson295189b2012-06-20 16:38:30 -07006650 case WLAN_HDD_P2P_CLIENT:
6651 case WLAN_HDD_P2P_GO:
Jeff Johnson295189b2012-06-20 16:38:30 -07006652 //Exit BMPS -> Is Sta/P2P Client is already connected
6653 pAdapter = hdd_get_adapter(pHddCtx, WLAN_HDD_INFRA_STATION);
6654 if((NULL != pAdapter)&&
6655 hdd_connIsConnected( WLAN_HDD_GET_STATION_CTX_PTR(pAdapter)))
6656 {
6657 disableBmps = TRUE;
6658 }
6659
6660 pAdapter = hdd_get_adapter(pHddCtx, WLAN_HDD_P2P_CLIENT);
6661 if((NULL != pAdapter)&&
6662 hdd_connIsConnected( WLAN_HDD_GET_STATION_CTX_PTR(pAdapter)))
6663 {
6664 disableBmps = TRUE;
6665 }
6666
6667 //Exit both Bmps and Imps incase of Go/SAP Mode
6668 if((WLAN_HDD_SOFTAP == session_type) ||
6669 (WLAN_HDD_P2P_GO == session_type))
6670 {
6671 disableBmps = TRUE;
6672 disableImps = TRUE;
6673 }
6674
6675 if(TRUE == disableImps)
6676 {
6677 if (pHddCtx->cfg_ini->fIsImpsEnabled)
6678 {
6679 sme_DisablePowerSave (pHddCtx->hHal, ePMC_IDLE_MODE_POWER_SAVE);
6680 }
6681 }
6682
6683 if(TRUE == disableBmps)
6684 {
6685 if(pHddCtx->cfg_ini->fIsBmpsEnabled)
6686 {
6687 halStatus = sme_DisablePowerSave(pHddCtx->hHal, ePMC_BEACON_MODE_POWER_SAVE);
6688
6689 if(eHAL_STATUS_SUCCESS != halStatus)
6690 {
6691 status = VOS_STATUS_E_FAILURE;
Arif Hussain6d2a3322013-11-17 19:50:10 -08006692 hddLog(VOS_TRACE_LEVEL_ERROR,"%s: Fail to Disable Power Save", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07006693 VOS_ASSERT(0);
6694 return status;
6695 }
6696 }
6697
6698 if(pHddCtx->cfg_ini->fIsAutoBmpsTimerEnabled)
6699 {
6700 halStatus = sme_StopAutoBmpsTimer(pHddCtx->hHal);
6701
6702 if(eHAL_STATUS_SUCCESS != halStatus)
6703 {
6704 status = VOS_STATUS_E_FAILURE;
Arif Hussain6d2a3322013-11-17 19:50:10 -08006705 hddLog(VOS_TRACE_LEVEL_ERROR,"%s: Fail to Stop Auto Bmps Timer", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07006706 VOS_ASSERT(0);
6707 return status;
6708 }
6709 }
6710 }
6711
6712 if((TRUE == disableBmps) ||
6713 (TRUE == disableImps))
6714 {
6715 /* Now, get the chip into Full Power now */
6716 INIT_COMPLETION(pHddCtx->full_pwr_comp_var);
6717 halStatus = sme_RequestFullPower(pHddCtx->hHal, hdd_full_pwr_cbk,
6718 pHddCtx, eSME_FULL_PWR_NEEDED_BY_HDD);
6719
6720 if(halStatus != eHAL_STATUS_SUCCESS)
6721 {
6722 if(halStatus == eHAL_STATUS_PMC_PENDING)
6723 {
c_hpothu6ff1c3c2013-10-01 19:01:57 +05306724 long ret;
Jeff Johnson295189b2012-06-20 16:38:30 -07006725 //Block on a completion variable. Can't wait forever though
c_hpothu6ff1c3c2013-10-01 19:01:57 +05306726 ret = wait_for_completion_interruptible_timeout(
6727 &pHddCtx->full_pwr_comp_var,
6728 msecs_to_jiffies(1000));
6729 if (ret <= 0)
6730 {
6731 hddLog(VOS_TRACE_LEVEL_ERROR,
6732 "%s: wait on full_pwr_comp_var failed %ld",
6733 __func__, ret);
6734 }
Jeff Johnson295189b2012-06-20 16:38:30 -07006735 }
6736 else
6737 {
6738 status = VOS_STATUS_E_FAILURE;
Arif Hussain6d2a3322013-11-17 19:50:10 -08006739 hddLog(VOS_TRACE_LEVEL_ERROR,"%s: Request for Full Power failed", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07006740 VOS_ASSERT(0);
6741 return status;
6742 }
6743 }
6744
6745 status = VOS_STATUS_SUCCESS;
6746 }
6747
6748 break;
6749 }
6750 return status;
6751}
Katya Nigame7b69a82015-04-28 15:24:06 +05306752void hdd_init_mon_mode (hdd_adapter_t *pAdapter)
6753 {
6754 hdd_mon_ctx_t *pMonCtx = NULL;
6755 pMonCtx = WLAN_HDD_GET_MONITOR_CTX_PTR(pAdapter);
6756
6757 pMonCtx->state = 0;
6758 pMonCtx->ChannelNo = 1;
6759 pMonCtx->ChannelBW = 20;
6760 pMonCtx->crcCheckEnabled = 0;
6761 pMonCtx->typeSubtypeBitmap = 0xFFFFFFFFFFFF;
6762 pMonCtx->is80211to803ConReq = 0;
6763 pMonCtx->numOfMacFilters = 0;
6764 }
6765
Jeff Johnson295189b2012-06-20 16:38:30 -07006766
6767hdd_adapter_t* hdd_open_adapter( hdd_context_t *pHddCtx, tANI_U8 session_type,
Jeff Johnsoneed415b2013-01-18 16:11:20 -08006768 const char *iface_name, tSirMacAddr macAddr,
Jeff Johnson295189b2012-06-20 16:38:30 -07006769 tANI_U8 rtnl_held )
6770{
6771 hdd_adapter_t *pAdapter = NULL;
6772 hdd_adapter_list_node_t *pHddAdapterNode = NULL;
6773 VOS_STATUS status = VOS_STATUS_E_FAILURE;
6774 VOS_STATUS exitbmpsStatus;
6775
Arif Hussain6d2a3322013-11-17 19:50:10 -08006776 hddLog(VOS_TRACE_LEVEL_INFO_HIGH, "%s iface =%s type = %d",__func__,iface_name,session_type);
Jeff Johnson295189b2012-06-20 16:38:30 -07006777
Nirav Shah436658f2014-02-28 17:05:45 +05306778 if(macAddr == NULL)
6779 {
6780 /* Not received valid macAddr */
6781 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
6782 "%s:Unable to add virtual intf: Not able to get"
6783 "valid mac address",__func__);
6784 return NULL;
6785 }
6786
Jeff Johnson295189b2012-06-20 16:38:30 -07006787 //Disable BMPS incase of Concurrency
6788 exitbmpsStatus = hdd_disable_bmps_imps(pHddCtx, session_type);
6789
6790 if(VOS_STATUS_E_FAILURE == exitbmpsStatus)
6791 {
6792 //Fail to Exit BMPS
c_hpothu6ff1c3c2013-10-01 19:01:57 +05306793 hddLog(VOS_TRACE_LEVEL_ERROR,"%s: Fail to Exit BMPS", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07006794 VOS_ASSERT(0);
6795 return NULL;
6796 }
6797
6798 switch(session_type)
6799 {
6800 case WLAN_HDD_INFRA_STATION:
Jeff Johnson295189b2012-06-20 16:38:30 -07006801 case WLAN_HDD_P2P_CLIENT:
Jeff Johnsone7245742012-09-05 17:12:55 -07006802 case WLAN_HDD_P2P_DEVICE:
Jeff Johnson295189b2012-06-20 16:38:30 -07006803 {
6804 pAdapter = hdd_alloc_station_adapter( pHddCtx, macAddr, iface_name );
6805
6806 if( NULL == pAdapter )
c_hpothu6ff1c3c2013-10-01 19:01:57 +05306807 {
6808 hddLog(VOS_TRACE_LEVEL_FATAL,
6809 FL("failed to allocate adapter for session %d"), session_type);
Jeff Johnson295189b2012-06-20 16:38:30 -07006810 return NULL;
c_hpothu6ff1c3c2013-10-01 19:01:57 +05306811 }
Jeff Johnson295189b2012-06-20 16:38:30 -07006812
Madan Mohan Koyyalamudi96797442013-10-08 16:04:42 +05306813#ifdef FEATURE_WLAN_TDLS
6814 /* A Mutex Lock is introduced while changing/initializing the mode to
6815 * protect the concurrent access for the Adapters by TDLS module.
6816 */
Rajesh Chauhana34c6e62014-03-25 16:37:58 +05306817 mutex_lock(&pHddCtx->tdls_lock);
Madan Mohan Koyyalamudi96797442013-10-08 16:04:42 +05306818#endif
6819
Jeff Johnsone7245742012-09-05 17:12:55 -07006820 pAdapter->wdev.iftype = (session_type == WLAN_HDD_P2P_CLIENT) ?
6821 NL80211_IFTYPE_P2P_CLIENT:
6822 NL80211_IFTYPE_STATION;
Jeff Johnson295189b2012-06-20 16:38:30 -07006823
Jeff Johnson295189b2012-06-20 16:38:30 -07006824 pAdapter->device_mode = session_type;
Madan Mohan Koyyalamudi96797442013-10-08 16:04:42 +05306825#ifdef FEATURE_WLAN_TDLS
6826 mutex_unlock(&pHddCtx->tdls_lock);
6827#endif
Sunil Dutt66485cb2013-12-19 19:05:03 +05306828
6829 status = hdd_init_station_mode( pAdapter );
Jeff Johnson295189b2012-06-20 16:38:30 -07006830 if( VOS_STATUS_SUCCESS != status )
6831 goto err_free_netdev;
6832
6833 status = hdd_register_interface( pAdapter, rtnl_held );
6834 if( VOS_STATUS_SUCCESS != status )
6835 {
Mahesh A Saptasagar02e36e82015-01-14 20:39:19 +05306836#ifdef FEATURE_WLAN_TDLS
6837 mutex_lock(&pHddCtx->tdls_lock);
6838#endif
c_hpothu002231a2015-02-05 14:58:51 +05306839 hdd_deinit_adapter(pHddCtx, pAdapter, rtnl_held);
Mahesh A Saptasagar02e36e82015-01-14 20:39:19 +05306840#ifdef FEATURE_WLAN_TDLS
6841 mutex_unlock(&pHddCtx->tdls_lock);
6842#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07006843 goto err_free_netdev;
6844 }
Vinay Krishna Erannad5b2be22013-12-01 17:00:15 +05306845
Vinay Krishna Eranna4d055d42013-12-17 17:02:01 +05306846 // Workqueue which gets scheduled in IPv4 notification callback.
6847 INIT_WORK(&pAdapter->ipv4NotifierWorkQueue, hdd_ipv4_notifier_work_queue);
6848
Vinay Krishna Erannad5b2be22013-12-01 17:00:15 +05306849#ifdef WLAN_NS_OFFLOAD
6850 // Workqueue which gets scheduled in IPv6 notification callback.
6851 INIT_WORK(&pAdapter->ipv6NotifierWorkQueue, hdd_ipv6_notifier_work_queue);
6852#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07006853 //Stop the Interface TX queue.
Padma, Santhosh Kumar9dacb5c2014-12-17 19:22:56 +05306854 hddLog(VOS_TRACE_LEVEL_INFO, FL("Disabling queues"));
Jeff Johnson295189b2012-06-20 16:38:30 -07006855 netif_tx_disable(pAdapter->dev);
6856 //netif_tx_disable(pWlanDev);
6857 netif_carrier_off(pAdapter->dev);
6858
Ganesh Kondabattinibabfb492014-12-17 20:25:29 +05306859 if (WLAN_HDD_P2P_CLIENT == session_type ||
6860 WLAN_HDD_P2P_DEVICE == session_type)
6861 {
6862 /* Initialize the work queue to defer the
6863 * back to back RoC request */
6864 INIT_DELAYED_WORK(&pAdapter->roc_work,
6865 hdd_p2p_roc_work_queue);
6866 }
6867
Jeff Johnson295189b2012-06-20 16:38:30 -07006868 break;
6869 }
6870
Jeff Johnson295189b2012-06-20 16:38:30 -07006871 case WLAN_HDD_P2P_GO:
Jeff Johnson295189b2012-06-20 16:38:30 -07006872 case WLAN_HDD_SOFTAP:
6873 {
6874 pAdapter = hdd_wlan_create_ap_dev( pHddCtx, macAddr, (tANI_U8 *)iface_name );
6875 if( NULL == pAdapter )
c_hpothu6ff1c3c2013-10-01 19:01:57 +05306876 {
6877 hddLog(VOS_TRACE_LEVEL_FATAL,
6878 FL("failed to allocate adapter for session %d"), session_type);
Jeff Johnson295189b2012-06-20 16:38:30 -07006879 return NULL;
c_hpothu6ff1c3c2013-10-01 19:01:57 +05306880 }
Jeff Johnson295189b2012-06-20 16:38:30 -07006881
Jeff Johnson295189b2012-06-20 16:38:30 -07006882 pAdapter->wdev.iftype = (session_type == WLAN_HDD_SOFTAP) ?
6883 NL80211_IFTYPE_AP:
6884 NL80211_IFTYPE_P2P_GO;
Jeff Johnson295189b2012-06-20 16:38:30 -07006885 pAdapter->device_mode = session_type;
6886
6887 status = hdd_init_ap_mode(pAdapter);
6888 if( VOS_STATUS_SUCCESS != status )
6889 goto err_free_netdev;
6890
6891 status = hdd_register_hostapd( pAdapter, rtnl_held );
6892 if( VOS_STATUS_SUCCESS != status )
6893 {
c_hpothu002231a2015-02-05 14:58:51 +05306894 hdd_deinit_adapter(pHddCtx, pAdapter, rtnl_held);
Jeff Johnson295189b2012-06-20 16:38:30 -07006895 goto err_free_netdev;
6896 }
Padma, Santhosh Kumar9dacb5c2014-12-17 19:22:56 +05306897 hddLog(VOS_TRACE_LEVEL_INFO, FL("Disabling queues"));
Jeff Johnson295189b2012-06-20 16:38:30 -07006898 netif_tx_disable(pAdapter->dev);
6899 netif_carrier_off(pAdapter->dev);
6900
6901 hdd_set_conparam( 1 );
Ganesh Kondabattinibabfb492014-12-17 20:25:29 +05306902
6903 if (WLAN_HDD_P2P_GO == session_type)
6904 {
6905 /* Initialize the work queue to
6906 * defer the back to back RoC request */
6907 INIT_DELAYED_WORK(&pAdapter->roc_work,
6908 hdd_p2p_roc_work_queue);
6909 }
Jeff Johnson295189b2012-06-20 16:38:30 -07006910 break;
6911 }
6912 case WLAN_HDD_MONITOR:
6913 {
Jeff Johnson295189b2012-06-20 16:38:30 -07006914 pAdapter = hdd_alloc_station_adapter( pHddCtx, macAddr, iface_name );
6915 if( NULL == pAdapter )
c_hpothu6ff1c3c2013-10-01 19:01:57 +05306916 {
6917 hddLog(VOS_TRACE_LEVEL_FATAL,
6918 FL("failed to allocate adapter for session %d"), session_type);
Jeff Johnson295189b2012-06-20 16:38:30 -07006919 return NULL;
c_hpothu6ff1c3c2013-10-01 19:01:57 +05306920 }
Jeff Johnson295189b2012-06-20 16:38:30 -07006921
Katya Nigame7b69a82015-04-28 15:24:06 +05306922 // Register wireless extensions
6923 if( VOS_STATUS_SUCCESS != (status = hdd_register_wext(pAdapter->dev)))
6924 {
6925 hddLog(VOS_TRACE_LEVEL_FATAL,
6926 "hdd_register_wext() failed with status code %08d [x%08x]",
6927 status, status );
6928 status = VOS_STATUS_E_FAILURE;
6929 }
6930
Jeff Johnson295189b2012-06-20 16:38:30 -07006931 pAdapter->wdev.iftype = NL80211_IFTYPE_MONITOR;
6932 pAdapter->device_mode = session_type;
Jeff Johnson295189b2012-06-20 16:38:30 -07006933#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,29)
6934 pAdapter->dev->netdev_ops = &wlan_mon_drv_ops;
6935#else
6936 pAdapter->dev->open = hdd_mon_open;
6937 pAdapter->dev->hard_start_xmit = hdd_mon_hard_start_xmit;
Katya Nigame7b69a82015-04-28 15:24:06 +05306938 pAdapter->dev->stop = hdd_mon_stop;
6939 pAdapter->dev->do_ioctl = hdd_mon_ioctl;
Jeff Johnson295189b2012-06-20 16:38:30 -07006940#endif
Katya Nigame7b69a82015-04-28 15:24:06 +05306941 status = hdd_register_interface( pAdapter, rtnl_held );
6942 hdd_init_mon_mode( pAdapter );
Jeff Johnson295189b2012-06-20 16:38:30 -07006943 hdd_init_tx_rx( pAdapter );
6944 set_bit(INIT_TX_RX_SUCCESS, &pAdapter->event_flags);
Katya Nigame7b69a82015-04-28 15:24:06 +05306945 //Stop the Interface TX queue.
6946 netif_tx_disable(pAdapter->dev);
6947 netif_carrier_off(pAdapter->dev);
Jeff Johnson295189b2012-06-20 16:38:30 -07006948 }
6949 break;
Jeff Johnson295189b2012-06-20 16:38:30 -07006950 case WLAN_HDD_FTM:
6951 {
6952 pAdapter = hdd_alloc_station_adapter( pHddCtx, macAddr, iface_name );
6953
6954 if( NULL == pAdapter )
c_hpothu6ff1c3c2013-10-01 19:01:57 +05306955 {
6956 hddLog(VOS_TRACE_LEVEL_FATAL,
6957 FL("failed to allocate adapter for session %d"), session_type);
6958 return NULL;
6959 }
6960
Jeff Johnson295189b2012-06-20 16:38:30 -07006961 /* Assign NL80211_IFTYPE_STATION as interface type to resolve Kernel Warning
6962 * message while loading driver in FTM mode. */
6963 pAdapter->wdev.iftype = NL80211_IFTYPE_STATION;
6964 pAdapter->device_mode = session_type;
6965 status = hdd_register_interface( pAdapter, rtnl_held );
Madan Mohan Koyyalamudif89ac9f2013-09-19 16:58:12 +05306966
6967 hdd_init_tx_rx( pAdapter );
6968
6969 //Stop the Interface TX queue.
Padma, Santhosh Kumar9dacb5c2014-12-17 19:22:56 +05306970 hddLog(VOS_TRACE_LEVEL_INFO, FL("Disabling queues"));
Madan Mohan Koyyalamudif89ac9f2013-09-19 16:58:12 +05306971 netif_tx_disable(pAdapter->dev);
6972 netif_carrier_off(pAdapter->dev);
Jeff Johnson295189b2012-06-20 16:38:30 -07006973 }
6974 break;
Jeff Johnson295189b2012-06-20 16:38:30 -07006975 default:
6976 {
c_hpothu6ff1c3c2013-10-01 19:01:57 +05306977 hddLog(VOS_TRACE_LEVEL_FATAL,"%s Invalid session type %d",
6978 __func__, session_type);
Jeff Johnson295189b2012-06-20 16:38:30 -07006979 VOS_ASSERT(0);
6980 return NULL;
6981 }
6982 }
6983
Jeff Johnson295189b2012-06-20 16:38:30 -07006984 if( VOS_STATUS_SUCCESS == status )
6985 {
6986 //Add it to the hdd's session list.
6987 pHddAdapterNode = vos_mem_malloc( sizeof( hdd_adapter_list_node_t ) );
6988 if( NULL == pHddAdapterNode )
6989 {
6990 status = VOS_STATUS_E_NOMEM;
6991 }
6992 else
6993 {
6994 pHddAdapterNode->pAdapter = pAdapter;
6995 status = hdd_add_adapter_back ( pHddCtx,
6996 pHddAdapterNode );
6997 }
6998 }
6999
7000 if( VOS_STATUS_SUCCESS != status )
7001 {
7002 if( NULL != pAdapter )
7003 {
7004 hdd_cleanup_adapter( pHddCtx, pAdapter, rtnl_held );
7005 pAdapter = NULL;
7006 }
7007 if( NULL != pHddAdapterNode )
7008 {
7009 vos_mem_free( pHddAdapterNode );
7010 }
7011
7012 goto resume_bmps;
7013 }
7014
7015 if(VOS_STATUS_SUCCESS == status)
7016 {
7017 wlan_hdd_set_concurrency_mode(pHddCtx, session_type);
7018
Madan Mohan Koyyalamudi96dd30d2012-10-05 17:24:51 -07007019 //Initialize the WoWL service
7020 if(!hdd_init_wowl(pAdapter))
7021 {
7022 hddLog(VOS_TRACE_LEVEL_FATAL,"%s: hdd_init_wowl failed",__func__);
7023 goto err_free_netdev;
7024 }
Jeff Johnson295189b2012-06-20 16:38:30 -07007025 }
Jeff Johnson295189b2012-06-20 16:38:30 -07007026 return pAdapter;
7027
7028err_free_netdev:
7029 free_netdev(pAdapter->dev);
7030 wlan_hdd_release_intf_addr( pHddCtx,
7031 pAdapter->macAddressCurrent.bytes );
7032
7033resume_bmps:
7034 //If bmps disabled enable it
7035 if(VOS_STATUS_SUCCESS == exitbmpsStatus)
7036 {
Gopichand Nakkalaa2fe5b02013-06-06 16:32:28 +05307037 if (pHddCtx->hdd_wlan_suspended)
7038 {
7039 hdd_set_pwrparams(pHddCtx);
7040 }
7041 hdd_enable_bmps_imps(pHddCtx);
Jeff Johnson295189b2012-06-20 16:38:30 -07007042 }
7043 return NULL;
7044}
7045
7046VOS_STATUS hdd_close_adapter( hdd_context_t *pHddCtx, hdd_adapter_t *pAdapter,
7047 tANI_U8 rtnl_held )
7048{
7049 hdd_adapter_list_node_t *pAdapterNode, *pCurrent, *pNext;
7050 VOS_STATUS status;
7051
7052 status = hdd_get_front_adapter ( pHddCtx, &pCurrent );
7053 if( VOS_STATUS_SUCCESS != status )
c_hpothu6ff1c3c2013-10-01 19:01:57 +05307054 {
7055 hddLog(VOS_TRACE_LEVEL_WARN,"%s: adapter list empty %d",
7056 __func__, status);
Jeff Johnson295189b2012-06-20 16:38:30 -07007057 return status;
c_hpothu6ff1c3c2013-10-01 19:01:57 +05307058 }
Jeff Johnson295189b2012-06-20 16:38:30 -07007059
7060 while ( pCurrent->pAdapter != pAdapter )
7061 {
7062 status = hdd_get_next_adapter ( pHddCtx, pCurrent, &pNext );
7063 if( VOS_STATUS_SUCCESS != status )
7064 break;
7065
7066 pCurrent = pNext;
7067 }
7068 pAdapterNode = pCurrent;
7069 if( VOS_STATUS_SUCCESS == status )
7070 {
7071 wlan_hdd_clear_concurrency_mode(pHddCtx, pAdapter->device_mode);
7072 hdd_cleanup_adapter( pHddCtx, pAdapterNode->pAdapter, rtnl_held );
Madan Mohan Koyyalamudi96797442013-10-08 16:04:42 +05307073
7074#ifdef FEATURE_WLAN_TDLS
7075
7076 /* A Mutex Lock is introduced while changing/initializing the mode to
7077 * protect the concurrent access for the Adapters by TDLS module.
7078 */
Rajesh Chauhana34c6e62014-03-25 16:37:58 +05307079 mutex_lock(&pHddCtx->tdls_lock);
Madan Mohan Koyyalamudi96797442013-10-08 16:04:42 +05307080#endif
7081
Jeff Johnson295189b2012-06-20 16:38:30 -07007082 hdd_remove_adapter( pHddCtx, pAdapterNode );
7083 vos_mem_free( pAdapterNode );
Srinivas Girigowda8d2348f2013-12-12 12:14:15 -08007084 pAdapterNode = NULL;
Jeff Johnson295189b2012-06-20 16:38:30 -07007085
Madan Mohan Koyyalamudi96797442013-10-08 16:04:42 +05307086#ifdef FEATURE_WLAN_TDLS
7087 mutex_unlock(&pHddCtx->tdls_lock);
7088#endif
7089
Jeff Johnson295189b2012-06-20 16:38:30 -07007090
7091 /* If there is a single session of STA/P2P client, re-enable BMPS */
Agarwal Ashish51325b52014-06-16 16:50:49 +05307092 if ((!vos_concurrent_open_sessions_running()) &&
7093 ((pHddCtx->no_of_open_sessions[VOS_STA_MODE] >= 1) ||
7094 (pHddCtx->no_of_open_sessions[VOS_P2P_CLIENT_MODE] >= 1)))
Jeff Johnson295189b2012-06-20 16:38:30 -07007095 {
Gopichand Nakkalaa2fe5b02013-06-06 16:32:28 +05307096 if (pHddCtx->hdd_wlan_suspended)
7097 {
7098 hdd_set_pwrparams(pHddCtx);
7099 }
7100 hdd_enable_bmps_imps(pHddCtx);
Jeff Johnson295189b2012-06-20 16:38:30 -07007101 }
7102
7103 return VOS_STATUS_SUCCESS;
7104 }
7105
7106 return VOS_STATUS_E_FAILURE;
7107}
7108
7109VOS_STATUS hdd_close_all_adapters( hdd_context_t *pHddCtx )
7110{
7111 hdd_adapter_list_node_t *pHddAdapterNode;
7112 VOS_STATUS status;
7113
7114 ENTER();
7115
7116 do
7117 {
7118 status = hdd_remove_front_adapter( pHddCtx, &pHddAdapterNode );
7119 if( pHddAdapterNode && VOS_STATUS_SUCCESS == status )
7120 {
7121 hdd_cleanup_adapter( pHddCtx, pHddAdapterNode->pAdapter, FALSE );
7122 vos_mem_free( pHddAdapterNode );
7123 }
7124 }while( NULL != pHddAdapterNode && VOS_STATUS_E_EMPTY != status );
7125
7126 EXIT();
7127
7128 return VOS_STATUS_SUCCESS;
7129}
7130
7131void wlan_hdd_reset_prob_rspies(hdd_adapter_t* pHostapdAdapter)
7132{
7133 v_U8_t addIE[1] = {0};
7134
7135 if ( eHAL_STATUS_FAILURE == ccmCfgSetStr((WLAN_HDD_GET_CTX(pHostapdAdapter))->hHal,
7136 WNI_CFG_PROBE_RSP_ADDNIE_DATA1,(tANI_U8*)addIE, 0, NULL,
7137 eANI_BOOLEAN_FALSE) )
7138 {
7139 hddLog(LOGE,
Arif Hussain6d2a3322013-11-17 19:50:10 -08007140 "Could not pass on WNI_CFG_PROBE_RSP_ADDNIE_DATA1 to CCM");
Jeff Johnson295189b2012-06-20 16:38:30 -07007141 }
7142
7143 if ( eHAL_STATUS_FAILURE == ccmCfgSetStr((WLAN_HDD_GET_CTX(pHostapdAdapter))->hHal,
7144 WNI_CFG_PROBE_RSP_ADDNIE_DATA2, (tANI_U8*)addIE, 0, NULL,
7145 eANI_BOOLEAN_FALSE) )
7146 {
7147 hddLog(LOGE,
Arif Hussain6d2a3322013-11-17 19:50:10 -08007148 "Could not pass on WNI_CFG_PROBE_RSP_ADDNIE_DATA2 to CCM");
Jeff Johnson295189b2012-06-20 16:38:30 -07007149 }
7150
7151 if ( eHAL_STATUS_FAILURE == ccmCfgSetStr((WLAN_HDD_GET_CTX(pHostapdAdapter))->hHal,
7152 WNI_CFG_PROBE_RSP_ADDNIE_DATA3, (tANI_U8*)addIE, 0, NULL,
7153 eANI_BOOLEAN_FALSE) )
7154 {
7155 hddLog(LOGE,
Arif Hussain6d2a3322013-11-17 19:50:10 -08007156 "Could not pass on WNI_CFG_PROBE_RSP_ADDNIE_DATA3 to CCM");
Jeff Johnson295189b2012-06-20 16:38:30 -07007157 }
7158}
7159
Agarwal Ashish3a38bd12014-06-12 15:16:52 +05307160VOS_STATUS hdd_stop_adapter( hdd_context_t *pHddCtx, hdd_adapter_t *pAdapter,
7161 const v_BOOL_t bCloseSession )
Jeff Johnson295189b2012-06-20 16:38:30 -07007162{
7163 eHalStatus halStatus = eHAL_STATUS_SUCCESS;
7164 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
Kaushik, Sushant4975a572014-10-21 16:07:48 +05307165 hdd_scaninfo_t *pScanInfo = NULL;
Jeff Johnson295189b2012-06-20 16:38:30 -07007166 union iwreq_data wrqu;
Kaushik, Sushant7005e372014-04-08 11:36:54 +05307167 v_U8_t retry = 0;
c_hpothu6ff1c3c2013-10-01 19:01:57 +05307168 long ret;
Jeff Johnson295189b2012-06-20 16:38:30 -07007169
Anand N Sunkad26d71b92014-12-24 18:08:22 +05307170 if (pHddCtx->isLogpInProgress) {
7171 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
7172 "%s:LOGP in Progress. Ignore!!!",__func__);
7173 return VOS_STATUS_E_FAILURE;
7174 }
7175
Jeff Johnson295189b2012-06-20 16:38:30 -07007176 ENTER();
Vinay Krishna Erannaf97ef5c2014-12-26 17:47:19 +05307177
Kaushik, Sushant4975a572014-10-21 16:07:48 +05307178 pScanInfo = &pHddCtx->scan_info;
Jeff Johnson295189b2012-06-20 16:38:30 -07007179 switch(pAdapter->device_mode)
7180 {
7181 case WLAN_HDD_INFRA_STATION:
7182 case WLAN_HDD_P2P_CLIENT:
Jeff Johnsone7245742012-09-05 17:12:55 -07007183 case WLAN_HDD_P2P_DEVICE:
Vinay Krishna Erannab09d3e72014-03-26 21:23:55 +05307184 {
7185 hdd_station_ctx_t *pstation = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
7186 if( hdd_connIsConnected(pstation) ||
7187 (pstation->conn_info.connState == eConnectionState_Connecting) )
Jeff Johnson295189b2012-06-20 16:38:30 -07007188 {
Mahesh A Saptasagarf5b8eff2015-01-31 01:07:07 +05307189#ifdef FEATURE_WLAN_TDLS
7190 mutex_lock(&pHddCtx->tdls_lock);
Pradeep Reddy POTTETI2d4d5c42015-03-03 14:34:19 +05307191 wlan_hdd_tdls_exit(pAdapter, TRUE);
Mahesh A Saptasagarf5b8eff2015-01-31 01:07:07 +05307192 mutex_unlock(&pHddCtx->tdls_lock);
7193#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07007194 if (pWextState->roamProfile.BSSType == eCSR_BSS_TYPE_START_IBSS)
7195 halStatus = sme_RoamDisconnect(pHddCtx->hHal,
7196 pAdapter->sessionId,
7197 eCSR_DISCONNECT_REASON_IBSS_LEAVE);
7198 else
7199 halStatus = sme_RoamDisconnect(pHddCtx->hHal,
7200 pAdapter->sessionId,
7201 eCSR_DISCONNECT_REASON_UNSPECIFIED);
7202 //success implies disconnect command got queued up successfully
7203 if(halStatus == eHAL_STATUS_SUCCESS)
7204 {
c_hpothu6ff1c3c2013-10-01 19:01:57 +05307205 ret = wait_for_completion_interruptible_timeout(
7206 &pAdapter->disconnect_comp_var,
7207 msecs_to_jiffies(WLAN_WAIT_TIME_DISCONNECT));
7208 if (ret <= 0)
7209 {
7210 hddLog(VOS_TRACE_LEVEL_ERROR,
7211 "%s: wait on disconnect_comp_var failed %ld",
7212 __func__, ret);
7213 }
7214 }
7215 else
7216 {
7217 hddLog(LOGE, "%s: failed to post disconnect event to SME",
7218 __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07007219 }
7220 memset(&wrqu, '\0', sizeof(wrqu));
7221 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
7222 memset(wrqu.ap_addr.sa_data,'\0',ETH_ALEN);
7223 wireless_send_event(pAdapter->dev, SIOCGIWAP, &wrqu, NULL);
7224 }
Vinay Krishna Erannab09d3e72014-03-26 21:23:55 +05307225 else if(pstation->conn_info.connState ==
7226 eConnectionState_Disconnecting)
7227 {
7228 ret = wait_for_completion_interruptible_timeout(
7229 &pAdapter->disconnect_comp_var,
7230 msecs_to_jiffies(WLAN_WAIT_TIME_DISCONNECT));
7231 if (ret <= 0)
7232 {
7233 hddLog(VOS_TRACE_LEVEL_ERROR,
7234 FL("wait on disconnect_comp_var failed %ld"), ret);
7235 }
7236 }
Kaushik, Sushant4975a572014-10-21 16:07:48 +05307237 else if(pScanInfo != NULL && pHddCtx->scan_info.mScanPending)
Jeff Johnson295189b2012-06-20 16:38:30 -07007238 {
Kaushik, Sushant4975a572014-10-21 16:07:48 +05307239 hdd_abort_mac_scan(pHddCtx, pScanInfo->sessionId,
Srinivas, Dasari138af4f2014-02-07 11:13:45 +05307240 eCSR_SCAN_ABORT_DEFAULT);
Jeff Johnson295189b2012-06-20 16:38:30 -07007241 }
Kaushik, Sushant7005e372014-04-08 11:36:54 +05307242 if (pAdapter->device_mode != WLAN_HDD_INFRA_STATION)
7243 {
7244 while (pAdapter->is_roc_inprogress)
7245 {
7246 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7247 "%s: ROC in progress for session %d!!!",
7248 __func__, pAdapter->sessionId);
7249 // waiting for ROC to expire
7250 msleep(500);
7251 /* In GO present case , if retry exceeds 3,
7252 it means something went wrong. */
7253 if ( retry++ > MAX_WAIT_FOR_ROC_COMPLETION )
7254 {
7255 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7256 "%s: ROC completion is not received.!!!", __func__);
Deepthi Gowri70498252015-01-20 15:56:45 +05307257 if (eHAL_STATUS_SUCCESS !=
7258 sme_CancelRemainOnChannel( WLAN_HDD_GET_HAL_CTX( pAdapter),
7259 pAdapter->sessionId ))
7260 {
7261 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7262 FL("Failed to Cancel Remain on Channel"));
7263 }
Kaushik, Sushant7005e372014-04-08 11:36:54 +05307264 wait_for_completion_interruptible_timeout(
7265 &pAdapter->cancel_rem_on_chan_var,
7266 msecs_to_jiffies(WAIT_CANCEL_REM_CHAN));
7267 break;
7268 }
7269 }
Ganesh Kondabattinibabfb492014-12-17 20:25:29 +05307270#ifdef WLAN_OPEN_SOURCE
7271 cancel_delayed_work_sync(&pAdapter->roc_work);
7272#endif
Kaushik, Sushant7005e372014-04-08 11:36:54 +05307273 }
Vinay Krishna Erannad5b2be22013-12-01 17:00:15 +05307274#ifdef WLAN_NS_OFFLOAD
Vinay Krishna Eranna941360f2014-01-16 15:38:22 +05307275#ifdef WLAN_OPEN_SOURCE
Vinay Krishna Erannad5b2be22013-12-01 17:00:15 +05307276 cancel_work_sync(&pAdapter->ipv6NotifierWorkQueue);
7277#endif
7278#endif
Vinay Krishna Erannaf97ef5c2014-12-26 17:47:19 +05307279
Vinay Krishna Eranna4d055d42013-12-17 17:02:01 +05307280#ifdef WLAN_OPEN_SOURCE
7281 cancel_work_sync(&pAdapter->ipv4NotifierWorkQueue);
7282#endif
Vinay Krishna Erannaf97ef5c2014-12-26 17:47:19 +05307283
Agarwal Ashish3a38bd12014-06-12 15:16:52 +05307284 /* It is possible that the caller of this function does not
7285 * wish to close the session
7286 */
7287 if (VOS_TRUE == bCloseSession &&
7288 test_bit(SME_SESSION_OPENED, &pAdapter->event_flags))
Jeff Johnson295189b2012-06-20 16:38:30 -07007289 {
7290 INIT_COMPLETION(pAdapter->session_close_comp_var);
7291 if (eHAL_STATUS_SUCCESS ==
Agarwal Ashish3a38bd12014-06-12 15:16:52 +05307292 sme_CloseSession(pHddCtx->hHal, pAdapter->sessionId,
7293 hdd_smeCloseSessionCallback, pAdapter))
Jeff Johnson295189b2012-06-20 16:38:30 -07007294 {
c_hpothu6ff1c3c2013-10-01 19:01:57 +05307295 unsigned long ret;
7296
Jeff Johnson295189b2012-06-20 16:38:30 -07007297 //Block on a completion variable. Can't wait forever though.
c_hpothu6ff1c3c2013-10-01 19:01:57 +05307298 ret = wait_for_completion_timeout(
Agarwal Ashish3a38bd12014-06-12 15:16:52 +05307299 &pAdapter->session_close_comp_var,
7300 msecs_to_jiffies(WLAN_WAIT_TIME_SESSIONOPENCLOSE));
c_hpothu6ff1c3c2013-10-01 19:01:57 +05307301 if ( 0 >= ret)
7302 {
7303 hddLog(LOGE, "%s: failure waiting for session_close_comp_var %ld",
Agarwal Ashish3a38bd12014-06-12 15:16:52 +05307304 __func__, ret);
c_hpothu6ff1c3c2013-10-01 19:01:57 +05307305 }
Jeff Johnson295189b2012-06-20 16:38:30 -07007306 }
7307 }
Vinay Krishna Erannab09d3e72014-03-26 21:23:55 +05307308 }
Jeff Johnson295189b2012-06-20 16:38:30 -07007309 break;
7310
7311 case WLAN_HDD_SOFTAP:
7312 case WLAN_HDD_P2P_GO:
7313 //Any softap specific cleanup here...
Kaushik, Sushant7005e372014-04-08 11:36:54 +05307314 if (pAdapter->device_mode == WLAN_HDD_P2P_GO) {
7315 while (pAdapter->is_roc_inprogress) {
7316 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7317 "%s: ROC in progress for session %d!!!",
7318 __func__, pAdapter->sessionId);
7319 msleep(500);
7320 if ( retry++ > MAX_WAIT_FOR_ROC_COMPLETION ) {
7321 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7322 "%s: ROC completion is not received.!!!", __func__);
7323 WLANSAP_CancelRemainOnChannel(
7324 (WLAN_HDD_GET_CTX(pAdapter))->pvosContext);
7325 wait_for_completion_interruptible_timeout(
7326 &pAdapter->cancel_rem_on_chan_var,
7327 msecs_to_jiffies(WAIT_CANCEL_REM_CHAN));
7328 break;
7329 }
7330 }
Ganesh Kondabattinibabfb492014-12-17 20:25:29 +05307331
7332#ifdef WLAN_OPEN_SOURCE
7333 cancel_delayed_work_sync(&pAdapter->roc_work);
7334#endif
Kaushik, Sushant7005e372014-04-08 11:36:54 +05307335 }
Jeff Johnson295189b2012-06-20 16:38:30 -07007336 mutex_lock(&pHddCtx->sap_lock);
7337 if (test_bit(SOFTAP_BSS_STARTED, &pAdapter->event_flags))
7338 {
7339 VOS_STATUS status;
7340 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
7341
7342 //Stop Bss.
7343 status = WLANSAP_StopBss(pHddCtx->pvosContext);
7344 if (VOS_IS_STATUS_SUCCESS(status))
7345 {
7346 hdd_hostapd_state_t *pHostapdState =
7347 WLAN_HDD_GET_HOSTAP_STATE_PTR(pAdapter);
7348
7349 status = vos_wait_single_event(&pHostapdState->vosEvent, 10000);
7350
7351 if (!VOS_IS_STATUS_SUCCESS(status))
7352 {
c_hpothu6ff1c3c2013-10-01 19:01:57 +05307353 hddLog(LOGE, "%s: failure waiting for WLANSAP_StopBss %d",
7354 __func__, status);
Jeff Johnson295189b2012-06-20 16:38:30 -07007355 }
7356 }
7357 else
7358 {
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07007359 hddLog(LOGE, "%s: failure in WLANSAP_StopBss", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07007360 }
7361 clear_bit(SOFTAP_BSS_STARTED, &pAdapter->event_flags);
Agarwal Ashish51325b52014-06-16 16:50:49 +05307362 wlan_hdd_decr_active_session(pHddCtx, pAdapter->device_mode);
Jeff Johnson295189b2012-06-20 16:38:30 -07007363
7364 if (eHAL_STATUS_FAILURE ==
7365 ccmCfgSetInt(pHddCtx->hHal, WNI_CFG_PROBE_RSP_BCN_ADDNIE_FLAG,
7366 0, NULL, eANI_BOOLEAN_FALSE))
7367 {
7368 hddLog(LOGE,
7369 "%s: Failed to set WNI_CFG_PROBE_RSP_BCN_ADDNIE_FLAG",
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07007370 __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07007371 }
7372
7373 if ( eHAL_STATUS_FAILURE == ccmCfgSetInt((WLAN_HDD_GET_CTX(pAdapter))->hHal,
7374 WNI_CFG_ASSOC_RSP_ADDNIE_FLAG, 0, NULL,
7375 eANI_BOOLEAN_FALSE) )
7376 {
7377 hddLog(LOGE,
7378 "Could not pass on WNI_CFG_ASSOC_RSP_ADDNIE_FLAG to CCM");
7379 }
7380
7381 // Reset WNI_CFG_PROBE_RSP Flags
7382 wlan_hdd_reset_prob_rspies(pAdapter);
7383 kfree(pAdapter->sessionCtx.ap.beacon);
7384 pAdapter->sessionCtx.ap.beacon = NULL;
7385 }
7386 mutex_unlock(&pHddCtx->sap_lock);
7387 break;
Sameer Thalappilbee426e2013-10-30 10:30:30 -07007388
Jeff Johnson295189b2012-06-20 16:38:30 -07007389 case WLAN_HDD_MONITOR:
7390 break;
Sameer Thalappilbee426e2013-10-30 10:30:30 -07007391
Jeff Johnson295189b2012-06-20 16:38:30 -07007392 default:
7393 break;
7394 }
7395
7396 EXIT();
7397 return VOS_STATUS_SUCCESS;
7398}
7399
7400VOS_STATUS hdd_stop_all_adapters( hdd_context_t *pHddCtx )
7401{
7402 hdd_adapter_list_node_t *pAdapterNode = NULL, *pNext = NULL;
7403 VOS_STATUS status;
7404 hdd_adapter_t *pAdapter;
7405
7406 ENTER();
7407
7408 status = hdd_get_front_adapter ( pHddCtx, &pAdapterNode );
7409
7410 while ( NULL != pAdapterNode && VOS_STATUS_SUCCESS == status )
7411 {
7412 pAdapter = pAdapterNode->pAdapter;
Jeff Johnson295189b2012-06-20 16:38:30 -07007413
Agarwal Ashish3a38bd12014-06-12 15:16:52 +05307414 hdd_stop_adapter( pHddCtx, pAdapter, VOS_TRUE );
Jeff Johnson295189b2012-06-20 16:38:30 -07007415
7416 status = hdd_get_next_adapter ( pHddCtx, pAdapterNode, &pNext );
7417 pAdapterNode = pNext;
7418 }
7419
7420 EXIT();
7421
7422 return VOS_STATUS_SUCCESS;
7423}
7424
Rajeev Kumarf999e582014-01-09 17:33:29 -08007425
7426#ifdef FEATURE_WLAN_BATCH_SCAN
7427/**---------------------------------------------------------------------------
7428
7429 \brief hdd_deinit_batch_scan () - This function cleans up batch scan data
7430 structures
7431
7432 \param - pAdapter Pointer to HDD adapter
7433
7434 \return - None
7435
7436 --------------------------------------------------------------------------*/
7437void hdd_deinit_batch_scan(hdd_adapter_t *pAdapter)
7438{
7439 tHddBatchScanRsp *pNode;
7440 tHddBatchScanRsp *pPrev;
7441
Siddharth Bhalb3e9b792014-02-24 15:14:16 +05307442 if (NULL == pAdapter)
Rajeev Kumarf999e582014-01-09 17:33:29 -08007443 {
Siddharth Bhalb3e9b792014-02-24 15:14:16 +05307444 hddLog(VOS_TRACE_LEVEL_ERROR,
7445 "%s: Adapter context is Null", __func__);
7446 return;
7447 }
7448
7449 pNode = pAdapter->pBatchScanRsp;
7450 while (pNode)
7451 {
7452 pPrev = pNode;
7453 pNode = pNode->pNext;
7454 vos_mem_free((v_VOID_t * )pPrev);
Rajeev Kumarf999e582014-01-09 17:33:29 -08007455 }
7456
7457 pAdapter->pBatchScanRsp = NULL;
7458 pAdapter->numScanList = 0;
7459 pAdapter->batchScanState = eHDD_BATCH_SCAN_STATE_STOPPED;
7460 pAdapter->prev_batch_id = 0;
7461
7462 return;
7463}
7464#endif
7465
7466
Jeff Johnson295189b2012-06-20 16:38:30 -07007467VOS_STATUS hdd_reset_all_adapters( hdd_context_t *pHddCtx )
7468{
7469 hdd_adapter_list_node_t *pAdapterNode = NULL, *pNext = NULL;
7470 VOS_STATUS status;
7471 hdd_adapter_t *pAdapter;
7472
7473 ENTER();
7474
7475 status = hdd_get_front_adapter ( pHddCtx, &pAdapterNode );
7476
7477 while ( NULL != pAdapterNode && VOS_STATUS_SUCCESS == status )
7478 {
7479 pAdapter = pAdapterNode->pAdapter;
Padma, Santhosh Kumar9dacb5c2014-12-17 19:22:56 +05307480 hddLog(VOS_TRACE_LEVEL_INFO, FL("Disabling queues"));
Jeff Johnson295189b2012-06-20 16:38:30 -07007481 netif_tx_disable(pAdapter->dev);
7482 netif_carrier_off(pAdapter->dev);
7483
Srinivas Girigowda66c05eb2013-07-14 13:06:01 -07007484 pAdapter->sessionCtx.station.hdd_ReassocScenario = VOS_FALSE;
7485
Jeff Johnson295189b2012-06-20 16:38:30 -07007486 hdd_deinit_tx_rx(pAdapter);
Agarwal Ashish6267caa2014-08-06 19:16:21 +05307487
Katya Nigam1fd24402015-02-16 14:52:19 +05307488 if(pAdapter->device_mode == WLAN_HDD_IBSS )
7489 hdd_ibss_deinit_tx_rx(pAdapter);
7490
Agarwal Ashish6267caa2014-08-06 19:16:21 +05307491 wlan_hdd_decr_active_session(pHddCtx, pAdapter->device_mode);
7492
Madan Mohan Koyyalamudi8c6dec82013-09-26 15:56:13 +05307493 if (test_bit(WMM_INIT_DONE, &pAdapter->event_flags))
7494 {
7495 hdd_wmm_adapter_close( pAdapter );
7496 clear_bit(WMM_INIT_DONE, &pAdapter->event_flags);
7497 }
Jeff Johnson295189b2012-06-20 16:38:30 -07007498
Siddharth Bhal2db319d2014-12-03 12:37:18 +05307499 if (test_bit(SOFTAP_BSS_STARTED, &pAdapter->event_flags))
7500 {
7501 clear_bit(SOFTAP_BSS_STARTED, &pAdapter->event_flags);
7502 }
7503
Rajeev Kumarf999e582014-01-09 17:33:29 -08007504#ifdef FEATURE_WLAN_BATCH_SCAN
7505 if (eHDD_BATCH_SCAN_STATE_STARTED == pAdapter->batchScanState)
7506 {
7507 hdd_deinit_batch_scan(pAdapter);
7508 }
7509#endif
7510
Mahesh A Saptasagarf5b8eff2015-01-31 01:07:07 +05307511#ifdef FEATURE_WLAN_TDLS
7512 mutex_lock(&pHddCtx->tdls_lock);
Pradeep Reddy POTTETI2d4d5c42015-03-03 14:34:19 +05307513 wlan_hdd_tdls_exit(pAdapter, TRUE);
Mahesh A Saptasagarf5b8eff2015-01-31 01:07:07 +05307514 mutex_unlock(&pHddCtx->tdls_lock);
7515#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07007516 status = hdd_get_next_adapter ( pHddCtx, pAdapterNode, &pNext );
7517 pAdapterNode = pNext;
7518 }
7519
7520 EXIT();
7521
7522 return VOS_STATUS_SUCCESS;
7523}
7524
7525VOS_STATUS hdd_start_all_adapters( hdd_context_t *pHddCtx )
7526{
7527 hdd_adapter_list_node_t *pAdapterNode = NULL, *pNext = NULL;
7528 VOS_STATUS status;
7529 hdd_adapter_t *pAdapter;
Gopichand Nakkalaa3c8fb62013-06-21 15:36:42 +05307530 eConnectionState connState;
Jeff Johnson295189b2012-06-20 16:38:30 -07007531
7532 ENTER();
7533
7534 status = hdd_get_front_adapter ( pHddCtx, &pAdapterNode );
7535
7536 while ( NULL != pAdapterNode && VOS_STATUS_SUCCESS == status )
7537 {
7538 pAdapter = pAdapterNode->pAdapter;
7539
Kumar Anand82c009f2014-05-29 00:29:42 -07007540 hdd_wmm_init( pAdapter );
7541
Jeff Johnson295189b2012-06-20 16:38:30 -07007542 switch(pAdapter->device_mode)
7543 {
7544 case WLAN_HDD_INFRA_STATION:
7545 case WLAN_HDD_P2P_CLIENT:
Jeff Johnsone7245742012-09-05 17:12:55 -07007546 case WLAN_HDD_P2P_DEVICE:
Gopichand Nakkalaa3c8fb62013-06-21 15:36:42 +05307547
7548 connState = (WLAN_HDD_GET_STATION_CTX_PTR(pAdapter))->conn_info.connState;
7549
Jeff Johnson295189b2012-06-20 16:38:30 -07007550 hdd_init_station_mode(pAdapter);
7551 /* Open the gates for HDD to receive Wext commands */
7552 pAdapter->isLinkUpSvcNeeded = FALSE;
Madan Mohan Koyyalamudi2a1ba772012-10-11 14:59:06 -07007553 pHddCtx->scan_info.mScanPending = FALSE;
7554 pHddCtx->scan_info.waitScanResult = FALSE;
Jeff Johnson295189b2012-06-20 16:38:30 -07007555
7556 //Trigger the initial scan
7557 hdd_wlan_initial_scan(pAdapter);
7558
7559 //Indicate disconnect event to supplicant if associated previously
Gopichand Nakkalaa3c8fb62013-06-21 15:36:42 +05307560 if (eConnectionState_Associated == connState ||
7561 eConnectionState_IbssConnected == connState )
Jeff Johnson295189b2012-06-20 16:38:30 -07007562 {
7563 union iwreq_data wrqu;
7564 memset(&wrqu, '\0', sizeof(wrqu));
7565 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
7566 memset(wrqu.ap_addr.sa_data,'\0',ETH_ALEN);
7567 wireless_send_event(pAdapter->dev, SIOCGIWAP, &wrqu, NULL);
Srinivas Girigowda66c05eb2013-07-14 13:06:01 -07007568 pAdapter->sessionCtx.station.hdd_ReassocScenario = VOS_FALSE;
Jeff Johnson295189b2012-06-20 16:38:30 -07007569
Jeff Johnson295189b2012-06-20 16:38:30 -07007570 /* indicate disconnected event to nl80211 */
7571 cfg80211_disconnected(pAdapter->dev, WLAN_REASON_UNSPECIFIED,
7572 NULL, 0, GFP_KERNEL);
Jeff Johnson295189b2012-06-20 16:38:30 -07007573 }
Gopichand Nakkalaa3c8fb62013-06-21 15:36:42 +05307574 else if (eConnectionState_Connecting == connState)
7575 {
7576 /*
7577 * Indicate connect failure to supplicant if we were in the
7578 * process of connecting
7579 */
7580 cfg80211_connect_result(pAdapter->dev, NULL,
7581 NULL, 0, NULL, 0,
7582 WLAN_STATUS_ASSOC_DENIED_UNSPEC,
7583 GFP_KERNEL);
7584 }
Jeff Johnson295189b2012-06-20 16:38:30 -07007585 break;
7586
7587 case WLAN_HDD_SOFTAP:
7588 /* softAP can handle SSR */
7589 break;
7590
7591 case WLAN_HDD_P2P_GO:
Sameer Thalappiledf0d792013-08-09 14:31:03 -07007592 hddLog(VOS_TRACE_LEVEL_ERROR, "%s [SSR] send stop ap to supplicant",
Jeff Johnson295189b2012-06-20 16:38:30 -07007593 __func__);
Sameer Thalappiledf0d792013-08-09 14:31:03 -07007594 cfg80211_ap_stopped(pAdapter->dev, GFP_KERNEL);
Jeff Johnson295189b2012-06-20 16:38:30 -07007595 break;
7596
7597 case WLAN_HDD_MONITOR:
7598 /* monitor interface start */
7599 break;
7600 default:
7601 break;
7602 }
7603
7604 status = hdd_get_next_adapter ( pHddCtx, pAdapterNode, &pNext );
7605 pAdapterNode = pNext;
7606 }
7607
7608 EXIT();
7609
7610 return VOS_STATUS_SUCCESS;
7611}
7612
7613VOS_STATUS hdd_reconnect_all_adapters( hdd_context_t *pHddCtx )
7614{
7615 hdd_adapter_list_node_t *pAdapterNode = NULL, *pNext = NULL;
7616 hdd_adapter_t *pAdapter;
7617 VOS_STATUS status;
7618 v_U32_t roamId;
c_hpothu6ff1c3c2013-10-01 19:01:57 +05307619 long ret;
Jeff Johnson295189b2012-06-20 16:38:30 -07007620
7621 ENTER();
7622
7623 status = hdd_get_front_adapter ( pHddCtx, &pAdapterNode );
7624
7625 while ( NULL != pAdapterNode && VOS_STATUS_SUCCESS == status )
7626 {
7627 pAdapter = pAdapterNode->pAdapter;
7628
7629 if( (WLAN_HDD_INFRA_STATION == pAdapter->device_mode) ||
7630 (WLAN_HDD_P2P_CLIENT == pAdapter->device_mode) )
7631 {
7632 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
7633 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
7634
Abhishek Singhf4669da2014-05-26 15:07:49 +05307635 hddLog(VOS_TRACE_LEVEL_INFO,
7636 "%s: Set HDD connState to eConnectionState_NotConnected",
7637 __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07007638 pHddStaCtx->conn_info.connState = eConnectionState_NotConnected;
7639 init_completion(&pAdapter->disconnect_comp_var);
7640 sme_RoamDisconnect(pHddCtx->hHal, pAdapter->sessionId,
7641 eCSR_DISCONNECT_REASON_UNSPECIFIED);
7642
c_hpothu6ff1c3c2013-10-01 19:01:57 +05307643 ret = wait_for_completion_interruptible_timeout(
Jeff Johnson295189b2012-06-20 16:38:30 -07007644 &pAdapter->disconnect_comp_var,
7645 msecs_to_jiffies(WLAN_WAIT_TIME_DISCONNECT));
c_hpothu6ff1c3c2013-10-01 19:01:57 +05307646 if (0 >= ret)
7647 hddLog(LOGE, "%s: failure waiting for disconnect_comp_var %ld",
7648 __func__, ret);
Jeff Johnson295189b2012-06-20 16:38:30 -07007649
7650 pWextState->roamProfile.csrPersona = pAdapter->device_mode;
7651 pHddCtx->isAmpAllowed = VOS_FALSE;
7652 sme_RoamConnect(pHddCtx->hHal,
7653 pAdapter->sessionId, &(pWextState->roamProfile),
7654 &roamId);
7655 }
7656
7657 status = hdd_get_next_adapter ( pHddCtx, pAdapterNode, &pNext );
7658 pAdapterNode = pNext;
7659 }
7660
7661 EXIT();
7662
7663 return VOS_STATUS_SUCCESS;
7664}
7665
Sudhir Sattayappa Kohalli90e4c752013-03-21 14:25:04 -07007666void hdd_dump_concurrency_info(hdd_context_t *pHddCtx)
7667{
7668 hdd_adapter_list_node_t *pAdapterNode = NULL, *pNext = NULL;
7669 VOS_STATUS status;
7670 hdd_adapter_t *pAdapter;
7671 hdd_station_ctx_t *pHddStaCtx;
7672 hdd_ap_ctx_t *pHddApCtx;
7673 hdd_hostapd_state_t * pHostapdState;
7674 tCsrBssid staBssid = { 0 }, p2pBssid = { 0 }, apBssid = { 0 };
7675 v_U8_t staChannel = 0, p2pChannel = 0, apChannel = 0;
7676 const char *p2pMode = "DEV";
7677 const char *ccMode = "Standalone";
7678 int n;
7679
7680 status = hdd_get_front_adapter ( pHddCtx, &pAdapterNode );
7681 while ( NULL != pAdapterNode && VOS_STATUS_SUCCESS == status )
7682 {
7683 pAdapter = pAdapterNode->pAdapter;
7684 switch (pAdapter->device_mode) {
7685 case WLAN_HDD_INFRA_STATION:
7686 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
7687 if (eConnectionState_Associated == pHddStaCtx->conn_info.connState) {
7688 staChannel = pHddStaCtx->conn_info.operationChannel;
7689 memcpy(staBssid, pHddStaCtx->conn_info.bssId, sizeof(staBssid));
7690 }
7691 break;
7692 case WLAN_HDD_P2P_CLIENT:
7693 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
7694 if (eConnectionState_Associated == pHddStaCtx->conn_info.connState) {
7695 p2pChannel = pHddStaCtx->conn_info.operationChannel;
7696 memcpy(p2pBssid, pHddStaCtx->conn_info.bssId, sizeof(p2pBssid));
7697 p2pMode = "CLI";
7698 }
7699 break;
7700 case WLAN_HDD_P2P_GO:
7701 pHddApCtx = WLAN_HDD_GET_AP_CTX_PTR(pAdapter);
7702 pHostapdState = WLAN_HDD_GET_HOSTAP_STATE_PTR(pAdapter);
7703 if (pHostapdState->bssState == BSS_START && pHostapdState->vosStatus==VOS_STATUS_SUCCESS) {
7704 p2pChannel = pHddApCtx->operatingChannel;
7705 memcpy(p2pBssid, pAdapter->macAddressCurrent.bytes, sizeof(p2pBssid));
7706 }
7707 p2pMode = "GO";
7708 break;
7709 case WLAN_HDD_SOFTAP:
7710 pHddApCtx = WLAN_HDD_GET_AP_CTX_PTR(pAdapter);
7711 pHostapdState = WLAN_HDD_GET_HOSTAP_STATE_PTR(pAdapter);
7712 if (pHostapdState->bssState == BSS_START && pHostapdState->vosStatus==VOS_STATUS_SUCCESS) {
7713 apChannel = pHddApCtx->operatingChannel;
7714 memcpy(apBssid, pAdapter->macAddressCurrent.bytes, sizeof(apBssid));
7715 }
7716 break;
7717 default:
7718 break;
7719 }
7720 status = hdd_get_next_adapter ( pHddCtx, pAdapterNode, &pNext );
7721 pAdapterNode = pNext;
7722 }
7723 if (staChannel > 0 && (apChannel > 0 || p2pChannel > 0)) {
7724 ccMode = (p2pChannel==staChannel||apChannel==staChannel) ? "SCC" : "MCC";
7725 }
7726 n = pr_info("wlan(%d) " MAC_ADDRESS_STR " %s",
7727 staChannel, MAC_ADDR_ARRAY(staBssid), ccMode);
7728 if (p2pChannel > 0) {
7729 n += pr_info("p2p-%s(%d) " MAC_ADDRESS_STR,
7730 p2pMode, p2pChannel, MAC_ADDR_ARRAY(p2pBssid));
7731 }
7732 if (apChannel > 0) {
7733 n += pr_info("AP(%d) " MAC_ADDRESS_STR,
7734 apChannel, MAC_ADDR_ARRAY(apBssid));
7735 }
7736
7737 if (p2pChannel > 0 && apChannel > 0) {
7738 hddLog(VOS_TRACE_LEVEL_ERROR, "Error concurrent SAP %d and P2P %d which is not support", apChannel, p2pChannel);
7739 }
7740}
7741
Madan Mohan Koyyalamudib5da5332012-10-15 17:23:21 -07007742bool hdd_is_ssr_required( void)
Jeff Johnson295189b2012-06-20 16:38:30 -07007743{
Madan Mohan Koyyalamudib5da5332012-10-15 17:23:21 -07007744 return (isSsrRequired == HDD_SSR_REQUIRED);
Jeff Johnson295189b2012-06-20 16:38:30 -07007745}
7746
Madan Mohan Koyyalamudib5da5332012-10-15 17:23:21 -07007747/* Once SSR is disabled then it cannot be set. */
7748void hdd_set_ssr_required( e_hdd_ssr_required value)
Jeff Johnson295189b2012-06-20 16:38:30 -07007749{
Madan Mohan Koyyalamudib5da5332012-10-15 17:23:21 -07007750 if (HDD_SSR_DISABLED == isSsrRequired)
7751 return;
7752
Jeff Johnson295189b2012-06-20 16:38:30 -07007753 isSsrRequired = value;
7754}
7755
7756VOS_STATUS hdd_get_front_adapter( hdd_context_t *pHddCtx,
7757 hdd_adapter_list_node_t** ppAdapterNode)
7758{
7759 VOS_STATUS status;
7760 spin_lock(&pHddCtx->hddAdapters.lock);
7761 status = hdd_list_peek_front ( &pHddCtx->hddAdapters,
7762 (hdd_list_node_t**) ppAdapterNode );
7763 spin_unlock(&pHddCtx->hddAdapters.lock);
7764 return status;
7765}
7766
7767VOS_STATUS hdd_get_next_adapter( hdd_context_t *pHddCtx,
7768 hdd_adapter_list_node_t* pAdapterNode,
7769 hdd_adapter_list_node_t** pNextAdapterNode)
7770{
7771 VOS_STATUS status;
7772 spin_lock(&pHddCtx->hddAdapters.lock);
7773 status = hdd_list_peek_next ( &pHddCtx->hddAdapters,
7774 (hdd_list_node_t*) pAdapterNode,
7775 (hdd_list_node_t**)pNextAdapterNode );
7776
7777 spin_unlock(&pHddCtx->hddAdapters.lock);
7778 return status;
7779}
7780
7781VOS_STATUS hdd_remove_adapter( hdd_context_t *pHddCtx,
7782 hdd_adapter_list_node_t* pAdapterNode)
7783{
7784 VOS_STATUS status;
7785 spin_lock(&pHddCtx->hddAdapters.lock);
7786 status = hdd_list_remove_node ( &pHddCtx->hddAdapters,
7787 &pAdapterNode->node );
7788 spin_unlock(&pHddCtx->hddAdapters.lock);
7789 return status;
7790}
7791
7792VOS_STATUS hdd_remove_front_adapter( hdd_context_t *pHddCtx,
7793 hdd_adapter_list_node_t** ppAdapterNode)
7794{
7795 VOS_STATUS status;
7796 spin_lock(&pHddCtx->hddAdapters.lock);
7797 status = hdd_list_remove_front( &pHddCtx->hddAdapters,
7798 (hdd_list_node_t**) ppAdapterNode );
7799 spin_unlock(&pHddCtx->hddAdapters.lock);
7800 return status;
7801}
7802
7803VOS_STATUS hdd_add_adapter_back( hdd_context_t *pHddCtx,
7804 hdd_adapter_list_node_t* pAdapterNode)
7805{
7806 VOS_STATUS status;
7807 spin_lock(&pHddCtx->hddAdapters.lock);
7808 status = hdd_list_insert_back ( &pHddCtx->hddAdapters,
7809 (hdd_list_node_t*) pAdapterNode );
7810 spin_unlock(&pHddCtx->hddAdapters.lock);
7811 return status;
7812}
7813
7814VOS_STATUS hdd_add_adapter_front( hdd_context_t *pHddCtx,
7815 hdd_adapter_list_node_t* pAdapterNode)
7816{
7817 VOS_STATUS status;
7818 spin_lock(&pHddCtx->hddAdapters.lock);
7819 status = hdd_list_insert_front ( &pHddCtx->hddAdapters,
7820 (hdd_list_node_t*) pAdapterNode );
7821 spin_unlock(&pHddCtx->hddAdapters.lock);
7822 return status;
7823}
7824
7825hdd_adapter_t * hdd_get_adapter_by_macaddr( hdd_context_t *pHddCtx,
7826 tSirMacAddr macAddr )
7827{
7828 hdd_adapter_list_node_t *pAdapterNode = NULL, *pNext = NULL;
7829 hdd_adapter_t *pAdapter;
7830 VOS_STATUS status;
7831
7832 status = hdd_get_front_adapter ( pHddCtx, &pAdapterNode );
7833
7834 while ( NULL != pAdapterNode && VOS_STATUS_SUCCESS == status )
7835 {
7836 pAdapter = pAdapterNode->pAdapter;
7837
7838 if( pAdapter && vos_mem_compare( pAdapter->macAddressCurrent.bytes,
7839 macAddr, sizeof(tSirMacAddr) ) )
7840 {
7841 return pAdapter;
7842 }
7843 status = hdd_get_next_adapter ( pHddCtx, pAdapterNode, &pNext );
7844 pAdapterNode = pNext;
7845 }
7846
7847 return NULL;
7848
7849}
7850
7851hdd_adapter_t * hdd_get_adapter_by_name( hdd_context_t *pHddCtx, tANI_U8 *name )
7852{
7853 hdd_adapter_list_node_t *pAdapterNode = NULL, *pNext = NULL;
7854 hdd_adapter_t *pAdapter;
7855 VOS_STATUS status;
7856
7857 status = hdd_get_front_adapter ( pHddCtx, &pAdapterNode );
7858
7859 while ( NULL != pAdapterNode && VOS_STATUS_SUCCESS == status )
7860 {
7861 pAdapter = pAdapterNode->pAdapter;
7862
7863 if( pAdapter && !strncmp( pAdapter->dev->name, (const char *)name,
7864 IFNAMSIZ ) )
7865 {
7866 return pAdapter;
7867 }
7868 status = hdd_get_next_adapter ( pHddCtx, pAdapterNode, &pNext );
7869 pAdapterNode = pNext;
7870 }
7871
7872 return NULL;
7873
7874}
7875
7876hdd_adapter_t * hdd_get_adapter( hdd_context_t *pHddCtx, device_mode_t mode )
7877{
7878 hdd_adapter_list_node_t *pAdapterNode = NULL, *pNext = NULL;
7879 hdd_adapter_t *pAdapter;
7880 VOS_STATUS status;
7881
7882 status = hdd_get_front_adapter ( pHddCtx, &pAdapterNode );
7883
7884 while ( NULL != pAdapterNode && VOS_STATUS_SUCCESS == status )
7885 {
7886 pAdapter = pAdapterNode->pAdapter;
7887
7888 if( pAdapter && (mode == pAdapter->device_mode) )
7889 {
7890 return pAdapter;
7891 }
7892 status = hdd_get_next_adapter ( pHddCtx, pAdapterNode, &pNext );
7893 pAdapterNode = pNext;
7894 }
7895
7896 return NULL;
7897
7898}
7899
7900//Remove this function later
7901hdd_adapter_t * hdd_get_mon_adapter( hdd_context_t *pHddCtx )
7902{
7903 hdd_adapter_list_node_t *pAdapterNode = NULL, *pNext = NULL;
7904 hdd_adapter_t *pAdapter;
7905 VOS_STATUS status;
7906
7907 status = hdd_get_front_adapter ( pHddCtx, &pAdapterNode );
7908
7909 while ( NULL != pAdapterNode && VOS_STATUS_SUCCESS == status )
7910 {
7911 pAdapter = pAdapterNode->pAdapter;
7912
7913 if( pAdapter && WLAN_HDD_MONITOR == pAdapter->device_mode )
7914 {
7915 return pAdapter;
7916 }
7917
7918 status = hdd_get_next_adapter ( pHddCtx, pAdapterNode, &pNext );
7919 pAdapterNode = pNext;
7920 }
7921
7922 return NULL;
7923
7924}
7925
Jeff Johnson295189b2012-06-20 16:38:30 -07007926/**---------------------------------------------------------------------------
7927
Mahesh A Saptasgar64534612014-09-23 13:13:33 +05307928 \brief hdd_get_operating_channel() -
Jeff Johnson295189b2012-06-20 16:38:30 -07007929
7930 This API returns the operating channel of the requested device mode
7931
7932 \param - pHddCtx - Pointer to the HDD context.
7933 - mode - Device mode for which operating channel is required
7934 suported modes - WLAN_HDD_INFRA_STATION, WLAN_HDD_P2P_CLIENT
7935 WLAN_HDD_SOFTAP, WLAN_HDD_P2P_GO.
7936 \return - channel number. "0" id the requested device is not found OR it is not connected.
7937 --------------------------------------------------------------------------*/
7938v_U8_t hdd_get_operating_channel( hdd_context_t *pHddCtx, device_mode_t mode )
7939{
7940 hdd_adapter_list_node_t *pAdapterNode = NULL, *pNext = NULL;
7941 VOS_STATUS status;
7942 hdd_adapter_t *pAdapter;
7943 v_U8_t operatingChannel = 0;
7944
7945 status = hdd_get_front_adapter ( pHddCtx, &pAdapterNode );
7946
7947 while ( NULL != pAdapterNode && VOS_STATUS_SUCCESS == status )
7948 {
7949 pAdapter = pAdapterNode->pAdapter;
7950
7951 if( mode == pAdapter->device_mode )
7952 {
7953 switch(pAdapter->device_mode)
7954 {
7955 case WLAN_HDD_INFRA_STATION:
7956 case WLAN_HDD_P2P_CLIENT:
7957 if( hdd_connIsConnected( WLAN_HDD_GET_STATION_CTX_PTR( pAdapter )) )
7958 operatingChannel = (WLAN_HDD_GET_STATION_CTX_PTR(pAdapter))->conn_info.operationChannel;
7959 break;
7960 case WLAN_HDD_SOFTAP:
7961 case WLAN_HDD_P2P_GO:
7962 /*softap connection info */
7963 if(test_bit(SOFTAP_BSS_STARTED, &pAdapter->event_flags))
7964 operatingChannel = (WLAN_HDD_GET_AP_CTX_PTR(pAdapter))->operatingChannel;
7965 break;
7966 default:
7967 break;
7968 }
7969
7970 break; //Found the device of interest. break the loop
7971 }
7972
7973 status = hdd_get_next_adapter ( pHddCtx, pAdapterNode, &pNext );
7974 pAdapterNode = pNext;
7975 }
7976 return operatingChannel;
7977}
7978
7979#ifdef WLAN_FEATURE_PACKET_FILTERING
7980/**---------------------------------------------------------------------------
7981
Mahesh A Saptasagard68eb282014-12-17 14:20:19 +05307982 \brief __hdd_set_multicast_list() -
Jeff Johnson295189b2012-06-20 16:38:30 -07007983
7984 This used to set the multicast address list.
7985
7986 \param - dev - Pointer to the WLAN device.
7987 - skb - Pointer to OS packet (sk_buff).
Mahesh A Saptasagar74088392015-02-05 17:22:09 +05307988 \return - success/fail
Jeff Johnson295189b2012-06-20 16:38:30 -07007989
7990 --------------------------------------------------------------------------*/
Mahesh A Saptasagard68eb282014-12-17 14:20:19 +05307991static void __hdd_set_multicast_list(struct net_device *dev)
Jeff Johnson295189b2012-06-20 16:38:30 -07007992{
Mahesh A Saptasagar74088392015-02-05 17:22:09 +05307993 hdd_adapter_t *pAdapter;
7994 hdd_context_t *pHddCtx;
Jeff Johnson295189b2012-06-20 16:38:30 -07007995 int mc_count;
Mahesh A Saptasagar74088392015-02-05 17:22:09 +05307996 int i = 0, ret = 0;
Jeff Johnson295189b2012-06-20 16:38:30 -07007997 struct netdev_hw_addr *ha;
Gopichand Nakkala0f276812013-02-24 14:45:51 +05307998
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05307999 ENTER();
8000
Mahesh A Saptasagar74088392015-02-05 17:22:09 +05308001 pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
Gopichand Nakkala0f276812013-02-24 14:45:51 +05308002 if (NULL == pAdapter)
Jeff Johnson295189b2012-06-20 16:38:30 -07008003 {
8004 hddLog(VOS_TRACE_LEVEL_ERROR,
Gopichand Nakkala0f276812013-02-24 14:45:51 +05308005 "%s: Adapter context is Null", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07008006 return;
8007 }
Mahesh A Saptasagar74088392015-02-05 17:22:09 +05308008 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
8009 ret = wlan_hdd_validate_context(pHddCtx);
8010 if (0 != ret)
8011 {
Mahesh A Saptasagar74088392015-02-05 17:22:09 +05308012 return;
8013 }
Jeff Johnson295189b2012-06-20 16:38:30 -07008014 if (dev->flags & IFF_ALLMULTI)
8015 {
8016 hddLog(VOS_TRACE_LEVEL_INFO,
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07008017 "%s: allow all multicast frames", __func__);
Gopichand Nakkala0f276812013-02-24 14:45:51 +05308018 pAdapter->mc_addr_list.mc_cnt = 0;
Jeff Johnson295189b2012-06-20 16:38:30 -07008019 }
Mahesh A Saptasagar74088392015-02-05 17:22:09 +05308020 else
Jeff Johnson295189b2012-06-20 16:38:30 -07008021 {
8022 mc_count = netdev_mc_count(dev);
8023 hddLog(VOS_TRACE_LEVEL_INFO,
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07008024 "%s: mc_count = %u", __func__, mc_count);
Jeff Johnson295189b2012-06-20 16:38:30 -07008025 if (mc_count > WLAN_HDD_MAX_MC_ADDR_LIST)
8026 {
8027 hddLog(VOS_TRACE_LEVEL_INFO,
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07008028 "%s: No free filter available; allow all multicast frames", __func__);
Gopichand Nakkala0f276812013-02-24 14:45:51 +05308029 pAdapter->mc_addr_list.mc_cnt = 0;
Jeff Johnson295189b2012-06-20 16:38:30 -07008030 return;
8031 }
8032
Gopichand Nakkala0f276812013-02-24 14:45:51 +05308033 pAdapter->mc_addr_list.mc_cnt = mc_count;
Jeff Johnson295189b2012-06-20 16:38:30 -07008034
8035 netdev_for_each_mc_addr(ha, dev) {
8036 if (i == mc_count)
8037 break;
Gopichand Nakkala0f276812013-02-24 14:45:51 +05308038 memset(&(pAdapter->mc_addr_list.addr[i][0]), 0, ETH_ALEN);
8039 memcpy(&(pAdapter->mc_addr_list.addr[i][0]), ha->addr, ETH_ALEN);
Arif Hussain6d2a3322013-11-17 19:50:10 -08008040 hddLog(VOS_TRACE_LEVEL_INFO, "%s: mlist[%d] = "MAC_ADDRESS_STR,
Mahesh A Saptasagar74088392015-02-05 17:22:09 +05308041 __func__, i,
Gopichand Nakkala0f276812013-02-24 14:45:51 +05308042 MAC_ADDR_ARRAY(pAdapter->mc_addr_list.addr[i]));
Jeff Johnson295189b2012-06-20 16:38:30 -07008043 i++;
8044 }
8045 }
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05308046
8047 EXIT();
Jeff Johnson295189b2012-06-20 16:38:30 -07008048 return;
8049}
Mahesh A Saptasagard68eb282014-12-17 14:20:19 +05308050
8051static void hdd_set_multicast_list(struct net_device *dev)
8052{
8053 vos_ssr_protect(__func__);
8054 __hdd_set_multicast_list(dev);
8055 vos_ssr_unprotect(__func__);
8056}
Jeff Johnson295189b2012-06-20 16:38:30 -07008057#endif
8058
8059/**---------------------------------------------------------------------------
8060
8061 \brief hdd_select_queue() -
8062
8063 This function is registered with the Linux OS for network
8064 core to decide which queue to use first.
8065
8066 \param - dev - Pointer to the WLAN device.
8067 - skb - Pointer to OS packet (sk_buff).
8068 \return - ac, Queue Index/access category corresponding to UP in IP header
8069
8070 --------------------------------------------------------------------------*/
8071v_U16_t hdd_select_queue(struct net_device *dev,
8072 struct sk_buff *skb)
8073{
8074 return hdd_wmm_select_queue(dev, skb);
8075}
8076
8077
8078/**---------------------------------------------------------------------------
8079
8080 \brief hdd_wlan_initial_scan() -
8081
8082 This function triggers the initial scan
8083
8084 \param - pAdapter - Pointer to the HDD adapter.
8085
8086 --------------------------------------------------------------------------*/
8087void hdd_wlan_initial_scan(hdd_adapter_t *pAdapter)
8088{
8089 tCsrScanRequest scanReq;
8090 tCsrChannelInfo channelInfo;
8091 eHalStatus halStatus;
Jeff Johnson02797792013-10-26 19:17:13 -07008092 tANI_U32 scanId;
Jeff Johnson295189b2012-06-20 16:38:30 -07008093 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
8094
8095 vos_mem_zero(&scanReq, sizeof(tCsrScanRequest));
8096 vos_mem_set(&scanReq.bssid, sizeof(tCsrBssid), 0xff);
8097 scanReq.BSSType = eCSR_BSS_TYPE_ANY;
8098
8099 if(sme_Is11dSupported(pHddCtx->hHal))
8100 {
8101 halStatus = sme_ScanGetBaseChannels( pHddCtx->hHal, &channelInfo );
8102 if ( HAL_STATUS_SUCCESS( halStatus ) )
8103 {
8104 scanReq.ChannelInfo.ChannelList = vos_mem_malloc(channelInfo.numOfChannels);
8105 if( !scanReq.ChannelInfo.ChannelList )
8106 {
8107 hddLog(VOS_TRACE_LEVEL_ERROR, "%s kmalloc failed", __func__);
8108 vos_mem_free(channelInfo.ChannelList);
Srinivas Girigowda8d2348f2013-12-12 12:14:15 -08008109 channelInfo.ChannelList = NULL;
Jeff Johnson295189b2012-06-20 16:38:30 -07008110 return;
8111 }
8112 vos_mem_copy(scanReq.ChannelInfo.ChannelList, channelInfo.ChannelList,
8113 channelInfo.numOfChannels);
8114 scanReq.ChannelInfo.numOfChannels = channelInfo.numOfChannels;
8115 vos_mem_free(channelInfo.ChannelList);
Srinivas Girigowda8d2348f2013-12-12 12:14:15 -08008116 channelInfo.ChannelList = NULL;
Jeff Johnson295189b2012-06-20 16:38:30 -07008117 }
8118
8119 scanReq.scanType = eSIR_PASSIVE_SCAN;
8120 scanReq.requestType = eCSR_SCAN_REQUEST_11D_SCAN;
8121 scanReq.maxChnTime = pHddCtx->cfg_ini->nPassiveMaxChnTime;
8122 scanReq.minChnTime = pHddCtx->cfg_ini->nPassiveMinChnTime;
8123 }
8124 else
8125 {
8126 scanReq.scanType = eSIR_ACTIVE_SCAN;
8127 scanReq.requestType = eCSR_SCAN_REQUEST_FULL_SCAN;
8128 scanReq.maxChnTime = pHddCtx->cfg_ini->nActiveMaxChnTime;
8129 scanReq.minChnTime = pHddCtx->cfg_ini->nActiveMinChnTime;
8130 }
8131
8132 halStatus = sme_ScanRequest(pHddCtx->hHal, pAdapter->sessionId, &scanReq, &scanId, NULL, NULL);
8133 if ( !HAL_STATUS_SUCCESS( halStatus ) )
8134 {
8135 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: sme_ScanRequest failed status code %d",
8136 __func__, halStatus );
8137 }
8138
8139 if(sme_Is11dSupported(pHddCtx->hHal))
8140 vos_mem_free(scanReq.ChannelInfo.ChannelList);
8141}
8142
Jeff Johnson295189b2012-06-20 16:38:30 -07008143/**---------------------------------------------------------------------------
8144
8145 \brief hdd_full_power_callback() - HDD full power callback function
8146
8147 This is the function invoked by SME to inform the result of a full power
8148 request issued by HDD
8149
8150 \param - callbackcontext - Pointer to cookie
8151 \param - status - result of request
8152
8153 \return - None
8154
8155 --------------------------------------------------------------------------*/
8156static void hdd_full_power_callback(void *callbackContext, eHalStatus status)
8157{
Jeff Johnson72a40512013-12-19 10:14:15 -08008158 struct statsContext *pContext = callbackContext;
Jeff Johnson295189b2012-06-20 16:38:30 -07008159
8160 hddLog(VOS_TRACE_LEVEL_INFO,
Gopichand Nakkala66c0bd02013-04-10 11:36:29 +05308161 "%s: context = %p, status = %d", __func__, pContext, status);
Jeff Johnson295189b2012-06-20 16:38:30 -07008162
8163 if (NULL == callbackContext)
8164 {
8165 hddLog(VOS_TRACE_LEVEL_ERROR,
8166 "%s: Bad param, context [%p]",
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07008167 __func__, callbackContext);
Jeff Johnson295189b2012-06-20 16:38:30 -07008168 return;
8169 }
8170
Jeff Johnson72a40512013-12-19 10:14:15 -08008171 /* there is a race condition that exists between this callback
8172 function and the caller since the caller could time out either
8173 before or while this code is executing. we use a spinlock to
8174 serialize these actions */
8175 spin_lock(&hdd_context_lock);
Jeff Johnson295189b2012-06-20 16:38:30 -07008176
8177 if (POWER_CONTEXT_MAGIC != pContext->magic)
8178 {
8179 /* the caller presumably timed out so there is nothing we can do */
Jeff Johnson72a40512013-12-19 10:14:15 -08008180 spin_unlock(&hdd_context_lock);
Jeff Johnson295189b2012-06-20 16:38:30 -07008181 hddLog(VOS_TRACE_LEVEL_WARN,
8182 "%s: Invalid context, magic [%08x]",
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07008183 __func__, pContext->magic);
Jeff Johnson295189b2012-06-20 16:38:30 -07008184 return;
8185 }
8186
Jeff Johnson72a40512013-12-19 10:14:15 -08008187 /* context is valid so caller is still waiting */
8188
8189 /* paranoia: invalidate the magic */
8190 pContext->magic = 0;
8191
8192 /* notify the caller */
Jeff Johnson295189b2012-06-20 16:38:30 -07008193 complete(&pContext->completion);
Jeff Johnson72a40512013-12-19 10:14:15 -08008194
8195 /* serialization is complete */
8196 spin_unlock(&hdd_context_lock);
Jeff Johnson295189b2012-06-20 16:38:30 -07008197}
8198
Katya Nigamf0511f62015-05-05 16:40:57 +05308199void wlan_hdd_mon_set_typesubtype( hdd_mon_ctx_t *pMonCtx,int type)
8200{
8201 pMonCtx->typeSubtypeBitmap = 0;
8202 if( type%10 ) /* Management Packets */
8203 pMonCtx->typeSubtypeBitmap |= 0xFFFF;
8204 type/=10;
8205 if( type%10 ) /* Control Packets */
8206 pMonCtx->typeSubtypeBitmap |= 0xFFFF0000;
8207 type/=10;
8208 if( type%10 ) /* Data Packets */
8209 pMonCtx->typeSubtypeBitmap |= 0xFFFF00000000;
8210}
8211
8212VOS_STATUS wlan_hdd_mon_poststartmsg( hdd_mon_ctx_t *pMonCtx )
8213{
8214 vos_msg_t monMsg;
8215
8216 monMsg.type = WDA_MON_START_REQ;
8217 monMsg.reserved = 0;
8218 monMsg.bodyptr = (v_U8_t*)pMonCtx;
8219 monMsg.bodyval = 0;
8220
8221 if (VOS_STATUS_SUCCESS != vos_mq_post_message(
8222 VOS_MODULE_ID_WDA,(vos_msg_t *)&monMsg)) {
8223 hddLog(VOS_TRACE_LEVEL_ERROR,"%s: : Failed to post Msg to HAL",__func__);
8224 return VOS_STATUS_E_FAILURE;
8225 }
8226
8227 return VOS_STATUS_SUCCESS;
8228}
8229
8230void wlan_hdd_mon_poststopmsg(void)
8231{
8232 vos_msg_t monMsg;
8233
8234 monMsg.type = WDA_MON_STOP_REQ;
8235 monMsg.reserved = 0;
8236 monMsg.bodyptr = NULL;
8237 monMsg.bodyval = 0;
8238
8239 if (VOS_STATUS_SUCCESS != vos_mq_post_message(
8240 VOS_MODULE_ID_WDA,(vos_msg_t *)&monMsg)) {
8241 hddLog(VOS_TRACE_LEVEL_ERROR,"%s: : Failed to post Msg to HAL",__func__);
8242 }
8243}
8244
Katya Nigame7b69a82015-04-28 15:24:06 +05308245void wlan_hdd_mon_close(hdd_context_t *pHddCtx)
8246{
8247 VOS_STATUS vosStatus;
8248 v_CONTEXT_t pVosContext = pHddCtx->pvosContext;
8249 struct wiphy *wiphy = pHddCtx->wiphy;
8250
8251 hdd_adapter_t *pAdapter = hdd_get_adapter(pHddCtx,WLAN_HDD_MONITOR);
8252 if(pAdapter == NULL || pVosContext == NULL)
8253 {
8254 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL, "%s:pAdapter is NULL",__func__);
8255 return ;
8256 }
Katya Nigamf0511f62015-05-05 16:40:57 +05308257
8258 wlan_hdd_mon_poststopmsg();
Katya Nigame7b69a82015-04-28 15:24:06 +05308259 hdd_UnregisterWext(pAdapter->dev);
8260
8261 vos_mon_stop( pVosContext );
8262
8263 vosStatus = vos_sched_close( pVosContext );
8264 if (!VOS_IS_STATUS_SUCCESS(vosStatus)) {
8265 VOS_TRACE( VOS_MODULE_ID_VOSS, VOS_TRACE_LEVEL_FATAL,
8266 "%s: Failed to close VOSS Scheduler",__func__);
8267 VOS_ASSERT( VOS_IS_STATUS_SUCCESS( vosStatus ) );
8268 }
8269
8270 vosStatus = vos_nv_close();
8271 if (!VOS_IS_STATUS_SUCCESS(vosStatus))
8272 {
8273 VOS_TRACE( VOS_MODULE_ID_VOSS, VOS_TRACE_LEVEL_ERROR,
8274 "%s: Failed to close NV", __func__);
8275 VOS_ASSERT( VOS_IS_STATUS_SUCCESS( vosStatus ) );
8276 }
8277
8278 vos_close(pVosContext);
8279
8280 #ifdef WLAN_KD_READY_NOTIFIER
8281 nl_srv_exit(pHddCtx->ptt_pid);
8282 #else
8283 nl_srv_exit();
8284 #endif
8285
8286 if (pHddCtx->cfg_ini)
8287 {
8288 kfree(pHddCtx->cfg_ini);
8289 pHddCtx->cfg_ini= NULL;
8290 }
8291 hdd_close_all_adapters( pHddCtx );
8292
8293 wiphy_free(wiphy) ;
8294
8295}
Jeff Johnson295189b2012-06-20 16:38:30 -07008296/**---------------------------------------------------------------------------
8297
8298 \brief hdd_wlan_exit() - HDD WLAN exit function
8299
8300 This is the driver exit point (invoked during rmmod)
8301
8302 \param - pHddCtx - Pointer to the HDD Context
8303
8304 \return - None
8305
8306 --------------------------------------------------------------------------*/
8307void hdd_wlan_exit(hdd_context_t *pHddCtx)
8308{
8309 eHalStatus halStatus;
8310 v_CONTEXT_t pVosContext = pHddCtx->pvosContext;
8311 VOS_STATUS vosStatus;
Gopichand Nakkala66923aa2013-03-06 23:17:24 +05308312 struct wiphy *wiphy = pHddCtx->wiphy;
Mingcheng Zhu87f22fc2014-01-30 19:23:32 -08008313 hdd_adapter_t* pAdapter = NULL;
Jeff Johnson72a40512013-12-19 10:14:15 -08008314 struct statsContext powerContext;
Jeff Johnson295189b2012-06-20 16:38:30 -07008315 long lrc;
c_hpothu5ab05e92014-06-13 17:34:05 +05308316 hdd_adapter_list_node_t *pAdapterNode = NULL, *pNext = NULL;
Jeff Johnson295189b2012-06-20 16:38:30 -07008317
8318 ENTER();
8319
Vinay Krishna Erannaf97ef5c2014-12-26 17:47:19 +05308320
Katya Nigame7b69a82015-04-28 15:24:06 +05308321 if (VOS_MONITOR_MODE == hdd_get_conparam())
8322 {
8323 hddLog(VOS_TRACE_LEVEL_ERROR,"%s: MONITOR MODE",__func__);
8324 wlan_hdd_mon_close(pHddCtx);
8325 return;
8326 }
8327 else if (VOS_FTM_MODE != hdd_get_conparam())
Jeff Johnson88ba7742013-02-27 14:36:02 -08008328 {
8329 // Unloading, restart logic is no more required.
8330 wlan_hdd_restart_deinit(pHddCtx);
Jeff Johnsone7245742012-09-05 17:12:55 -07008331
Agarwal Ashishb20e0ff2014-12-17 22:50:19 +05308332#ifdef FEATURE_WLAN_TDLS
8333 /* At the time of driver unloading; if tdls connection is present;
8334 * hdd_rx_packet_cbk calls wlan_hdd_tdls_find_peer.
8335 * wlan_hdd_tdls_find_peer always checks for valid context;
8336 * as load/unload in progress there can be a race condition.
8337 * hdd_rx_packet_cbk calls wlan_hdd_tdls_find_peer only
8338 * when tdls state is enabled.
8339 * As soon as driver set load/unload flag; tdls flag also needs
8340 * to be disabled so that hdd_rx_packet_cbk won't call
8341 * wlan_hdd_tdls_find_peer.
8342 */
8343 wlan_hdd_tdls_set_mode(pHddCtx, eTDLS_SUPPORT_DISABLED, FALSE);
8344#endif
8345
c_hpothu5ab05e92014-06-13 17:34:05 +05308346 vosStatus = hdd_get_front_adapter ( pHddCtx, &pAdapterNode );
8347 while (NULL != pAdapterNode && VOS_STATUS_E_EMPTY != vosStatus)
Jeff Johnson295189b2012-06-20 16:38:30 -07008348 {
c_hpothu5ab05e92014-06-13 17:34:05 +05308349 pAdapter = pAdapterNode->pAdapter;
8350 if (NULL != pAdapter)
Jeff Johnson295189b2012-06-20 16:38:30 -07008351 {
Mahesh A Saptasagar305e2632015-03-04 12:57:33 +05308352 /* Disable TX on the interface, after this hard_start_xmit() will
8353 * not be called on that interface
8354 */
8355 hddLog(VOS_TRACE_LEVEL_INFO, FL("Disabling queues"));
8356 netif_tx_disable(pAdapter->dev);
8357
8358 /* Mark the interface status as "down" for outside world */
8359 netif_carrier_off(pAdapter->dev);
8360
Agarwal Ashish9ffa5b92014-11-18 21:07:02 +05308361 /* DeInit the adapter. This ensures that all data packets
8362 * are freed.
8363 */
Mahesh A Saptasagar02e36e82015-01-14 20:39:19 +05308364#ifdef FEATURE_WLAN_TDLS
8365 mutex_lock(&pHddCtx->tdls_lock);
8366#endif
c_hpothu002231a2015-02-05 14:58:51 +05308367 hdd_deinit_adapter(pHddCtx, pAdapter, FALSE);
Mahesh A Saptasagar02e36e82015-01-14 20:39:19 +05308368#ifdef FEATURE_WLAN_TDLS
8369 mutex_unlock(&pHddCtx->tdls_lock);
8370#endif
Agarwal Ashish9ffa5b92014-11-18 21:07:02 +05308371
c_hpothu5ab05e92014-06-13 17:34:05 +05308372 if (WLAN_HDD_INFRA_STATION == pAdapter->device_mode ||
8373 WLAN_HDD_P2P_CLIENT == pAdapter->device_mode)
8374 {
8375 wlan_hdd_cfg80211_deregister_frames(pAdapter);
8376 hdd_UnregisterWext(pAdapter->dev);
8377 }
Kaushik, Sushant4975a572014-10-21 16:07:48 +05308378
Jeff Johnson295189b2012-06-20 16:38:30 -07008379 }
c_hpothu5ab05e92014-06-13 17:34:05 +05308380 vosStatus = hdd_get_next_adapter ( pHddCtx, pAdapterNode, &pNext );
8381 pAdapterNode = pNext;
Jeff Johnson295189b2012-06-20 16:38:30 -07008382 }
Kaushik, Sushant4975a572014-10-21 16:07:48 +05308383 // Cancel any outstanding scan requests. We are about to close all
8384 // of our adapters, but an adapter structure is what SME passes back
8385 // to our callback function. Hence if there are any outstanding scan
8386 // requests then there is a race condition between when the adapter
8387 // is closed and when the callback is invoked.We try to resolve that
8388 // race condition here by canceling any outstanding scans before we
8389 // close the adapters.
8390 // Note that the scans may be cancelled in an asynchronous manner,
8391 // so ideally there needs to be some kind of synchronization. Rather
8392 // than introduce a new synchronization here, we will utilize the
8393 // fact that we are about to Request Full Power, and since that is
8394 // synchronized, the expectation is that by the time Request Full
8395 // Power has completed all scans will be cancelled.
8396 if (pHddCtx->scan_info.mScanPending)
8397 {
Hema Aparna Medicharlaf05f6cd2015-01-21 14:44:19 +05308398 if(NULL != pAdapter)
8399 {
8400 hddLog(VOS_TRACE_LEVEL_INFO,
8401 FL("abort scan mode: %d sessionId: %d"),
8402 pAdapter->device_mode,
8403 pAdapter->sessionId);
8404 }
8405 hdd_abort_mac_scan(pHddCtx,
8406 pHddCtx->scan_info.sessionId,
8407 eCSR_SCAN_ABORT_DEFAULT);
Kaushik, Sushant4975a572014-10-21 16:07:48 +05308408 }
Jeff Johnson295189b2012-06-20 16:38:30 -07008409 }
c_hpothu5ab05e92014-06-13 17:34:05 +05308410 else
Jeff Johnson88ba7742013-02-27 14:36:02 -08008411 {
c_hpothu6ff1c3c2013-10-01 19:01:57 +05308412 hddLog(VOS_TRACE_LEVEL_INFO,"%s: FTM MODE",__func__);
Hanumantha Reddy Pothula45af96b2015-02-12 16:07:58 +05308413 if (pHddCtx->ftm.ftm_state == WLAN_FTM_STARTING)
8414 {
8415 INIT_COMPLETION(pHddCtx->ftm.startCmpVar);
8416 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
8417 "%s: in middle of FTM START", __func__);
8418 lrc = wait_for_completion_timeout(&pHddCtx->ftm.startCmpVar,
8419 msecs_to_jiffies(20000));
8420 if(!lrc)
8421 {
8422 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
8423 "%s: timedout on ftmStartCmpVar fatal error", __func__);
8424 }
8425 }
Jeff Johnson88ba7742013-02-27 14:36:02 -08008426 wlan_hdd_ftm_close(pHddCtx);
8427 goto free_hdd_ctx;
8428 }
c_hpothu6ff1c3c2013-10-01 19:01:57 +05308429
Jeff Johnson295189b2012-06-20 16:38:30 -07008430 /* DeRegister with platform driver as client for Suspend/Resume */
8431 vosStatus = hddDeregisterPmOps(pHddCtx);
8432 if ( !VOS_IS_STATUS_SUCCESS( vosStatus ) )
8433 {
8434 hddLog(VOS_TRACE_LEVEL_FATAL,"%s: hddDeregisterPmOps failed",__func__);
8435 VOS_ASSERT(0);
8436 }
8437
8438 vosStatus = hddDevTmUnregisterNotifyCallback(pHddCtx);
8439 if ( !VOS_IS_STATUS_SUCCESS( vosStatus ) )
8440 {
8441 hddLog(VOS_TRACE_LEVEL_FATAL,"%s: hddDevTmUnregisterNotifyCallback failed",__func__);
8442 }
Jeff Johnson295189b2012-06-20 16:38:30 -07008443
Sudhir Sattayappa Kohalli37620692013-08-05 14:02:26 -07008444 //Stop the traffic monitor timer
8445 if ( VOS_TIMER_STATE_RUNNING ==
8446 vos_timer_getCurrentState(&pHddCtx->tx_rx_trafficTmr))
8447 {
8448 vos_timer_stop(&pHddCtx->tx_rx_trafficTmr);
8449 }
8450
8451 // Destroy the traffic monitor timer
8452 if (!VOS_IS_STATUS_SUCCESS(vos_timer_destroy(
8453 &pHddCtx->tx_rx_trafficTmr)))
8454 {
8455 hddLog(VOS_TRACE_LEVEL_ERROR,
8456 "%s: Cannot deallocate Traffic monitor timer", __func__);
8457 }
8458
Jeff Johnson295189b2012-06-20 16:38:30 -07008459 //Disable IMPS/BMPS as we do not want the device to enter any power
8460 //save mode during shutdown
8461 sme_DisablePowerSave(pHddCtx->hHal, ePMC_IDLE_MODE_POWER_SAVE);
8462 sme_DisablePowerSave(pHddCtx->hHal, ePMC_BEACON_MODE_POWER_SAVE);
8463 sme_DisablePowerSave(pHddCtx->hHal, ePMC_UAPSD_MODE_POWER_SAVE);
8464
8465 //Ensure that device is in full power as we will touch H/W during vos_Stop
8466 init_completion(&powerContext.completion);
8467 powerContext.magic = POWER_CONTEXT_MAGIC;
8468
8469 halStatus = sme_RequestFullPower(pHddCtx->hHal, hdd_full_power_callback,
8470 &powerContext, eSME_FULL_PWR_NEEDED_BY_HDD);
8471
8472 if (eHAL_STATUS_SUCCESS != halStatus)
8473 {
8474 if (eHAL_STATUS_PMC_PENDING == halStatus)
8475 {
8476 /* request was sent -- wait for the response */
8477 lrc = wait_for_completion_interruptible_timeout(
8478 &powerContext.completion,
8479 msecs_to_jiffies(WLAN_WAIT_TIME_POWER));
Jeff Johnson295189b2012-06-20 16:38:30 -07008480 if (lrc <= 0)
8481 {
8482 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: %s while requesting full power",
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07008483 __func__, (0 == lrc) ? "timeout" : "interrupt");
Jeff Johnson295189b2012-06-20 16:38:30 -07008484 }
8485 }
8486 else
8487 {
8488 hddLog(VOS_TRACE_LEVEL_ERROR,
8489 "%s: Request for Full Power failed, status %d",
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07008490 __func__, halStatus);
Jeff Johnson295189b2012-06-20 16:38:30 -07008491 /* continue -- need to clean up as much as possible */
8492 }
8493 }
Hanumantha Reddy Pothula81b42b22015-05-12 13:52:00 +05308494 if ((eHAL_STATUS_SUCCESS == halStatus) ||
8495 (eHAL_STATUS_PMC_PENDING == halStatus && lrc > 0))
8496 {
8497 /* This will issue a dump command which will clean up
8498 BTQM queues and unblock MC thread */
8499 vos_fwDumpReq(274, 0, 0, 0, 0, 1);
8500 }
Jeff Johnson295189b2012-06-20 16:38:30 -07008501
Jeff Johnson72a40512013-12-19 10:14:15 -08008502 /* either we never sent a request, we sent a request and received a
8503 response or we sent a request and timed out. if we never sent a
8504 request or if we sent a request and got a response, we want to
8505 clear the magic out of paranoia. if we timed out there is a
8506 race condition such that the callback function could be
8507 executing at the same time we are. of primary concern is if the
8508 callback function had already verified the "magic" but had not
8509 yet set the completion variable when a timeout occurred. we
8510 serialize these activities by invalidating the magic while
8511 holding a shared spinlock which will cause us to block if the
8512 callback is currently executing */
8513 spin_lock(&hdd_context_lock);
8514 powerContext.magic = 0;
8515 spin_unlock(&hdd_context_lock);
8516
Hema Aparna Medicharlaa6cf65e2015-06-01 16:23:28 +05308517 /* If Device is shutdown, no point for SME to wait for responses
8518 from device. Pre Close SME */
8519 if(wcnss_device_is_shutdown())
8520 {
8521 sme_PreClose(pHddCtx->hHal);
8522 }
Yue Ma0d4891e2013-08-06 17:01:45 -07008523 hdd_debugfs_exit(pHddCtx);
8524
Ratheesh S P35ed8b12015-04-27 14:01:07 +05308525#ifdef WLAN_NS_OFFLOAD
8526 hddLog(LOGE, FL("Unregister IPv6 notifier"));
8527 unregister_inet6addr_notifier(&pHddCtx->ipv6_notifier);
8528#endif
8529 hddLog(LOGE, FL("Unregister IPv4 notifier"));
8530 unregister_inetaddr_notifier(&pHddCtx->ipv4_notifier);
8531
Jeff Johnson295189b2012-06-20 16:38:30 -07008532 // Unregister the Net Device Notifier
8533 unregister_netdevice_notifier(&hdd_netdev_notifier);
8534
Jeff Johnson295189b2012-06-20 16:38:30 -07008535 hdd_stop_all_adapters( pHddCtx );
8536
Jeff Johnson295189b2012-06-20 16:38:30 -07008537#ifdef WLAN_BTAMP_FEATURE
8538 vosStatus = WLANBAP_Stop(pVosContext);
8539 if (!VOS_IS_STATUS_SUCCESS(vosStatus))
8540 {
8541 VOS_TRACE( VOS_MODULE_ID_VOSS, VOS_TRACE_LEVEL_ERROR,
8542 "%s: Failed to stop BAP",__func__);
8543 }
8544#endif //WLAN_BTAMP_FEATURE
8545
8546 //Stop all the modules
8547 vosStatus = vos_stop( pVosContext );
8548 if (!VOS_IS_STATUS_SUCCESS(vosStatus))
8549 {
8550 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
8551 "%s: Failed to stop VOSS",__func__);
8552 VOS_ASSERT( VOS_IS_STATUS_SUCCESS( vosStatus ) );
8553 }
8554
Jeff Johnson295189b2012-06-20 16:38:30 -07008555 //This requires pMac access, Call this before vos_close().
Jeff Johnson295189b2012-06-20 16:38:30 -07008556 hdd_unregister_mcast_bcast_filter(pHddCtx);
Jeff Johnson295189b2012-06-20 16:38:30 -07008557
8558 //Close the scheduler before calling vos_close to make sure no thread is
8559 // scheduled after the each module close is called i.e after all the data
8560 // structures are freed.
8561 vosStatus = vos_sched_close( pVosContext );
8562 if (!VOS_IS_STATUS_SUCCESS(vosStatus)) {
8563 VOS_TRACE( VOS_MODULE_ID_VOSS, VOS_TRACE_LEVEL_FATAL,
8564 "%s: Failed to close VOSS Scheduler",__func__);
8565 VOS_ASSERT( VOS_IS_STATUS_SUCCESS( vosStatus ) );
8566 }
Sameer Thalappil50dc0092013-02-19 17:23:33 -08008567#ifdef WLAN_OPEN_SOURCE
Jeff Johnsone7245742012-09-05 17:12:55 -07008568#ifdef WLAN_FEATURE_HOLD_RX_WAKELOCK
8569 /* Destroy the wake lock */
8570 wake_lock_destroy(&pHddCtx->rx_wake_lock);
8571#endif
Madan Mohan Koyyalamudi69fc3ad2012-11-28 16:04:56 -08008572 /* Destroy the wake lock */
8573 wake_lock_destroy(&pHddCtx->sap_wake_lock);
Sameer Thalappil50dc0092013-02-19 17:23:33 -08008574#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07008575
Mihir Shete7a24b5f2013-12-21 12:18:31 +05308576#ifdef CONFIG_ENABLE_LINUX_REG
8577 vosStatus = vos_nv_close();
8578 if (!VOS_IS_STATUS_SUCCESS(vosStatus))
8579 {
8580 VOS_TRACE( VOS_MODULE_ID_VOSS, VOS_TRACE_LEVEL_ERROR,
8581 "%s: Failed to close NV", __func__);
8582 VOS_ASSERT( VOS_IS_STATUS_SUCCESS( vosStatus ) );
8583 }
8584#endif
8585
Jeff Johnson295189b2012-06-20 16:38:30 -07008586 //Close VOSS
8587 //This frees pMac(HAL) context. There should not be any call that requires pMac access after this.
8588 vos_close(pVosContext);
8589
Jeff Johnson295189b2012-06-20 16:38:30 -07008590 //Close Watchdog
8591 if(pHddCtx->cfg_ini->fIsLogpEnabled)
8592 vos_watchdog_close(pVosContext);
8593
Gopichand Nakkalaa0358482013-06-12 17:05:47 +05308594 //Clean up HDD Nlink Service
8595 send_btc_nlink_msg(WLAN_MODULE_DOWN_IND, 0);
Gopichand Nakkalaa0358482013-06-12 17:05:47 +05308596
Vinay Krishna Erannad938c422014-03-10 17:14:21 +05308597#ifdef WLAN_LOGGING_SOCK_SVC_ENABLE
Vinay Krishna Eranna273ec5a2014-05-10 18:05:25 +05308598 if (pHddCtx->cfg_ini->wlanLoggingEnable)
Vinay Krishna Erannad938c422014-03-10 17:14:21 +05308599 {
8600 wlan_logging_sock_deactivate_svc();
8601 }
8602#endif
8603
Vinay Krishna Erannaef30b522014-08-26 17:48:16 +05308604#ifdef WLAN_KD_READY_NOTIFIER
8605 nl_srv_exit(pHddCtx->ptt_pid);
8606#else
8607 nl_srv_exit();
8608#endif /* WLAN_KD_READY_NOTIFIER */
8609
8610
Jeff Johnson295189b2012-06-20 16:38:30 -07008611 hdd_close_all_adapters( pHddCtx );
8612
Jeff Johnson295189b2012-06-20 16:38:30 -07008613 /* free the power on lock from platform driver */
8614 if (free_riva_power_on_lock("wlan"))
8615 {
8616 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: failed to free power on lock",
8617 __func__);
8618 }
8619
Jeff Johnson88ba7742013-02-27 14:36:02 -08008620free_hdd_ctx:
c_hpothu78c7b602014-05-17 17:35:49 +05308621
8622 //Free up dynamically allocated members inside HDD Adapter
8623 if (pHddCtx->cfg_ini)
8624 {
8625 kfree(pHddCtx->cfg_ini);
8626 pHddCtx->cfg_ini= NULL;
8627 }
8628
Leo Changf04ddad2013-09-18 13:46:38 -07008629 /* FTM mode, WIPHY did not registered
8630 If un-register here, system crash will happen */
8631 if (VOS_FTM_MODE != hdd_get_conparam())
8632 {
8633 wiphy_unregister(wiphy) ;
8634 }
Jeff Johnson295189b2012-06-20 16:38:30 -07008635 wiphy_free(wiphy) ;
Jeff Johnson295189b2012-06-20 16:38:30 -07008636 if (hdd_is_ssr_required())
8637 {
8638 /* WDI timeout had happened during unload, so SSR is needed here */
Madan Mohan Koyyalamudi3246f5b2012-10-15 15:40:02 -07008639 subsystem_restart("wcnss");
Jeff Johnson295189b2012-06-20 16:38:30 -07008640 msleep(5000);
8641 }
8642 hdd_set_ssr_required (VOS_FALSE);
8643}
8644
8645
8646/**---------------------------------------------------------------------------
8647
8648 \brief hdd_update_config_from_nv() - Function to update the contents of
8649 the running configuration with parameters taken from NV storage
8650
8651 \param - pHddCtx - Pointer to the HDD global context
8652
8653 \return - VOS_STATUS_SUCCESS if successful
8654
8655 --------------------------------------------------------------------------*/
8656static VOS_STATUS hdd_update_config_from_nv(hdd_context_t* pHddCtx)
8657{
Jeff Johnson295189b2012-06-20 16:38:30 -07008658 v_BOOL_t itemIsValid = VOS_FALSE;
8659 VOS_STATUS status;
8660 v_MACADDR_t macFromNV[VOS_MAX_CONCURRENCY_PERSONA];
8661 v_U8_t macLoop;
8662
8663 /*If the NV is valid then get the macaddress from nv else get it from qcom_cfg.ini*/
8664 status = vos_nv_getValidity(VNV_FIELD_IMAGE, &itemIsValid);
8665 if(status != VOS_STATUS_SUCCESS)
8666 {
Arif Hussain6d2a3322013-11-17 19:50:10 -08008667 hddLog(VOS_TRACE_LEVEL_ERROR," vos_nv_getValidity() failed");
Jeff Johnson295189b2012-06-20 16:38:30 -07008668 return VOS_STATUS_E_FAILURE;
8669 }
8670
8671 if (itemIsValid == VOS_TRUE)
8672 {
Arif Hussain6d2a3322013-11-17 19:50:10 -08008673 hddLog(VOS_TRACE_LEVEL_INFO_HIGH," Reading the Macaddress from NV");
Jeff Johnson295189b2012-06-20 16:38:30 -07008674 status = vos_nv_readMultiMacAddress((v_U8_t *)&macFromNV[0].bytes[0],
8675 VOS_MAX_CONCURRENCY_PERSONA);
8676 if(status != VOS_STATUS_SUCCESS)
8677 {
8678 /* Get MAC from NV fail, not update CFG info
8679 * INI MAC value will be used for MAC setting */
Arif Hussain6d2a3322013-11-17 19:50:10 -08008680 hddLog(VOS_TRACE_LEVEL_ERROR," vos_nv_readMacAddress() failed");
Jeff Johnson295189b2012-06-20 16:38:30 -07008681 return VOS_STATUS_E_FAILURE;
8682 }
8683
8684 /* If first MAC is not valid, treat all others are not valid
8685 * Then all MACs will be got from ini file */
8686 if(vos_is_macaddr_zero(&macFromNV[0]))
8687 {
8688 /* MAC address in NV file is not configured yet */
8689 hddLog(VOS_TRACE_LEVEL_WARN, "Invalid MAC in NV file");
8690 return VOS_STATUS_E_INVAL;
8691 }
8692
8693 /* Get MAC address from NV, update CFG info */
8694 for(macLoop = 0; macLoop < VOS_MAX_CONCURRENCY_PERSONA; macLoop++)
8695 {
8696 if(vos_is_macaddr_zero(&macFromNV[macLoop]))
8697 {
c_hpothu6ff1c3c2013-10-01 19:01:57 +05308698 hddLog(VOS_TRACE_LEVEL_ERROR,"not valid MAC from NV for %d", macLoop);
Jeff Johnson295189b2012-06-20 16:38:30 -07008699 /* This MAC is not valid, skip it
8700 * This MAC will be got from ini file */
8701 }
8702 else
8703 {
8704 vos_mem_copy((v_U8_t *)&pHddCtx->cfg_ini->intfMacAddr[macLoop].bytes[0],
8705 (v_U8_t *)&macFromNV[macLoop].bytes[0],
8706 VOS_MAC_ADDR_SIZE);
8707 }
8708 }
8709 }
8710 else
8711 {
8712 hddLog(VOS_TRACE_LEVEL_ERROR, "NV ITEM, MAC Not valid");
8713 return VOS_STATUS_E_FAILURE;
8714 }
Jeff Johnson295189b2012-06-20 16:38:30 -07008715
Jeff Johnson295189b2012-06-20 16:38:30 -07008716
8717 return VOS_STATUS_SUCCESS;
8718}
8719
8720/**---------------------------------------------------------------------------
8721
8722 \brief hdd_post_voss_start_config() - HDD post voss start config helper
8723
8724 \param - pAdapter - Pointer to the HDD
8725
8726 \return - None
8727
8728 --------------------------------------------------------------------------*/
8729VOS_STATUS hdd_post_voss_start_config(hdd_context_t* pHddCtx)
8730{
8731 eHalStatus halStatus;
8732 v_U32_t listenInterval;
Gopichand Nakkalaa2fe5b02013-06-06 16:32:28 +05308733 tANI_U32 ignoreDtim;
Jeff Johnson295189b2012-06-20 16:38:30 -07008734
Jeff Johnson295189b2012-06-20 16:38:30 -07008735
8736 // Send ready indication to the HDD. This will kick off the MAC
8737 // into a 'running' state and should kick off an initial scan.
8738 halStatus = sme_HDDReadyInd( pHddCtx->hHal );
8739 if ( !HAL_STATUS_SUCCESS( halStatus ) )
8740 {
Gopichand Nakkala66c0bd02013-04-10 11:36:29 +05308741 hddLog(VOS_TRACE_LEVEL_ERROR,"%s: sme_HDDReadyInd() failed with status "
Jeff Johnson295189b2012-06-20 16:38:30 -07008742 "code %08d [x%08x]",__func__, halStatus, halStatus );
8743 return VOS_STATUS_E_FAILURE;
8744 }
8745
Gopichand Nakkalaa2fe5b02013-06-06 16:32:28 +05308746 // Set default LI and ignoreDtim into HDD context,
Jeff Johnson295189b2012-06-20 16:38:30 -07008747 // otherwise under some race condition, HDD will set 0 LI value into RIVA,
8748 // And RIVA will crash
8749 wlan_cfgGetInt(pHddCtx->hHal, WNI_CFG_LISTEN_INTERVAL, &listenInterval);
8750 pHddCtx->hdd_actual_LI_value = listenInterval;
Gopichand Nakkalaa2fe5b02013-06-06 16:32:28 +05308751 wlan_cfgGetInt(pHddCtx->hHal, WNI_CFG_IGNORE_DTIM, &ignoreDtim);
8752 pHddCtx->hdd_actual_ignore_DTIM_value = ignoreDtim;
8753
8754
Jeff Johnson295189b2012-06-20 16:38:30 -07008755 return VOS_STATUS_SUCCESS;
8756}
8757
Jeff Johnson295189b2012-06-20 16:38:30 -07008758/* wake lock APIs for HDD */
8759void hdd_prevent_suspend(void)
8760{
Sameer Thalappil50dc0092013-02-19 17:23:33 -08008761#ifdef WLAN_OPEN_SOURCE
Jeff Johnson295189b2012-06-20 16:38:30 -07008762 wake_lock(&wlan_wake_lock);
Jeff Johnsone7245742012-09-05 17:12:55 -07008763#else
8764 wcnss_prevent_suspend();
8765#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07008766}
8767
8768void hdd_allow_suspend(void)
8769{
Sameer Thalappil50dc0092013-02-19 17:23:33 -08008770#ifdef WLAN_OPEN_SOURCE
Jeff Johnson295189b2012-06-20 16:38:30 -07008771 wake_unlock(&wlan_wake_lock);
Jeff Johnsone7245742012-09-05 17:12:55 -07008772#else
8773 wcnss_allow_suspend();
8774#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07008775}
8776
Mahesh A Saptasagarb9c50402014-01-16 15:49:22 +05308777void hdd_prevent_suspend_timeout(v_U32_t timeout)
Madan Mohan Koyyalamudi10d83a92012-09-28 15:47:05 -07008778{
Sameer Thalappil50dc0092013-02-19 17:23:33 -08008779#ifdef WLAN_OPEN_SOURCE
Amar Singhal6144c002013-05-03 16:11:42 -07008780 wake_lock_timeout(&wlan_wake_lock, msecs_to_jiffies(timeout));
Madan Mohan Koyyalamudi10d83a92012-09-28 15:47:05 -07008781#else
8782 /* Do nothing as there is no API in wcnss for timeout*/
8783#endif
8784}
8785
Jeff Johnson295189b2012-06-20 16:38:30 -07008786/**---------------------------------------------------------------------------
8787
Madan Mohan Koyyalamudi8612ec92012-09-28 15:53:07 -07008788 \brief hdd_exchange_version_and_caps() - HDD function to exchange version and capability
8789 information between Host and Riva
8790
8791 This function gets reported version of FW
8792 It also finds the version of Riva headers used to compile the host
8793 It compares the above two and prints a warning if they are different
8794 It gets the SW and HW version string
8795 Finally, it exchanges capabilities between host and Riva i.e. host and riva exchange a msg
8796 indicating the features they support through a bitmap
8797
8798 \param - pHddCtx - Pointer to HDD context
8799
8800 \return - void
8801
8802 --------------------------------------------------------------------------*/
8803
8804void hdd_exchange_version_and_caps(hdd_context_t *pHddCtx)
8805{
8806
8807 tSirVersionType versionCompiled;
8808 tSirVersionType versionReported;
8809 tSirVersionString versionString;
8810 tANI_U8 fwFeatCapsMsgSupported = 0;
8811 VOS_STATUS vstatus;
8812
Mingcheng Zhu87f22fc2014-01-30 19:23:32 -08008813 memset(&versionCompiled, 0, sizeof(versionCompiled));
8814 memset(&versionReported, 0, sizeof(versionReported));
8815
Madan Mohan Koyyalamudi8612ec92012-09-28 15:53:07 -07008816 /* retrieve and display WCNSS version information */
8817 do {
8818
8819 vstatus = sme_GetWcnssWlanCompiledVersion(pHddCtx->hHal,
8820 &versionCompiled);
8821 if (!VOS_IS_STATUS_SUCCESS(vstatus))
8822 {
8823 hddLog(VOS_TRACE_LEVEL_FATAL,
8824 "%s: unable to retrieve WCNSS WLAN compiled version",
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07008825 __func__);
Madan Mohan Koyyalamudi8612ec92012-09-28 15:53:07 -07008826 break;
8827 }
8828
8829 vstatus = sme_GetWcnssWlanReportedVersion(pHddCtx->hHal,
8830 &versionReported);
8831 if (!VOS_IS_STATUS_SUCCESS(vstatus))
8832 {
8833 hddLog(VOS_TRACE_LEVEL_FATAL,
8834 "%s: unable to retrieve WCNSS WLAN reported version",
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07008835 __func__);
Madan Mohan Koyyalamudi8612ec92012-09-28 15:53:07 -07008836 break;
8837 }
8838
8839 if ((versionCompiled.major != versionReported.major) ||
8840 (versionCompiled.minor != versionReported.minor) ||
8841 (versionCompiled.version != versionReported.version) ||
8842 (versionCompiled.revision != versionReported.revision))
8843 {
8844 pr_err("%s: WCNSS WLAN Version %u.%u.%u.%u, "
8845 "Host expected %u.%u.%u.%u\n",
8846 WLAN_MODULE_NAME,
8847 (int)versionReported.major,
8848 (int)versionReported.minor,
8849 (int)versionReported.version,
8850 (int)versionReported.revision,
8851 (int)versionCompiled.major,
8852 (int)versionCompiled.minor,
8853 (int)versionCompiled.version,
8854 (int)versionCompiled.revision);
8855 }
8856 else
8857 {
8858 pr_info("%s: WCNSS WLAN version %u.%u.%u.%u\n",
8859 WLAN_MODULE_NAME,
8860 (int)versionReported.major,
8861 (int)versionReported.minor,
8862 (int)versionReported.version,
8863 (int)versionReported.revision);
8864 }
8865
8866 vstatus = sme_GetWcnssSoftwareVersion(pHddCtx->hHal,
8867 versionString,
8868 sizeof(versionString));
8869 if (!VOS_IS_STATUS_SUCCESS(vstatus))
8870 {
8871 hddLog(VOS_TRACE_LEVEL_FATAL,
8872 "%s: unable to retrieve WCNSS software version string",
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07008873 __func__);
Madan Mohan Koyyalamudi8612ec92012-09-28 15:53:07 -07008874 break;
8875 }
8876
8877 pr_info("%s: WCNSS software version %s\n",
8878 WLAN_MODULE_NAME, versionString);
8879
8880 vstatus = sme_GetWcnssHardwareVersion(pHddCtx->hHal,
8881 versionString,
8882 sizeof(versionString));
8883 if (!VOS_IS_STATUS_SUCCESS(vstatus))
8884 {
8885 hddLog(VOS_TRACE_LEVEL_FATAL,
8886 "%s: unable to retrieve WCNSS hardware version string",
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07008887 __func__);
Madan Mohan Koyyalamudi8612ec92012-09-28 15:53:07 -07008888 break;
8889 }
8890
8891 pr_info("%s: WCNSS hardware version %s\n",
8892 WLAN_MODULE_NAME, versionString);
8893
Madan Mohan Koyyalamudi5aef2af2012-10-05 11:56:27 -07008894 /* 1.Check if FW version is greater than 0.1.1.0. Only then send host-FW capability exchange message
8895 2.Host-FW capability exchange message is only present on riva 1.1 so
Madan Mohan Koyyalamudi8612ec92012-09-28 15:53:07 -07008896 send the message only if it the riva is 1.1
8897 minor numbers for different riva branches:
8898 0 -> (1.0)Mainline Build
8899 1 -> (1.1)Mainline Build
8900 2->(1.04) Stability Build
8901 */
Madan Mohan Koyyalamudi5aef2af2012-10-05 11:56:27 -07008902 if (((versionReported.major>0) || (versionReported.minor>1) ||
Madan Mohan Koyyalamudi8612ec92012-09-28 15:53:07 -07008903 ((versionReported.minor>=1) && (versionReported.version>=1)))
8904 && ((versionReported.major == 1) && (versionReported.minor >= 1)))
8905 fwFeatCapsMsgSupported = 1;
Madan Mohan Koyyalamudi5aef2af2012-10-05 11:56:27 -07008906
Madan Mohan Koyyalamudi8612ec92012-09-28 15:53:07 -07008907 if (fwFeatCapsMsgSupported)
Yathish9f22e662012-12-10 14:21:35 -08008908 {
8909#ifdef WLAN_ACTIVEMODE_OFFLOAD_FEATURE
8910 if(!pHddCtx->cfg_ini->fEnableActiveModeOffload)
8911 sme_disableFeatureCapablity(WLANACTIVE_OFFLOAD);
8912#endif
Ravi Joshid2ca7c42013-07-23 08:37:49 -07008913 /* Indicate if IBSS heartbeat monitoring needs to be offloaded */
8914 if (!pHddCtx->cfg_ini->enableIbssHeartBeatOffload)
8915 {
8916 sme_disableFeatureCapablity(IBSS_HEARTBEAT_OFFLOAD);
8917 }
8918
Madan Mohan Koyyalamudi8612ec92012-09-28 15:53:07 -07008919 sme_featureCapsExchange(pHddCtx->hHal);
Yathish9f22e662012-12-10 14:21:35 -08008920 }
Madan Mohan Koyyalamudi8612ec92012-09-28 15:53:07 -07008921
8922 } while (0);
8923
8924}
Neelansh Mittaledafed22014-09-04 18:54:39 +05308925void wlan_hdd_send_svc_nlink_msg(int type, void *data, int len)
8926{
8927 struct sk_buff *skb;
8928 struct nlmsghdr *nlh;
8929 tAniMsgHdr *ani_hdr;
Hanumantha Reddy Pothulacf2c7ea2015-04-27 14:50:47 +05308930 int flags = GFP_KERNEL;
Neelansh Mittaledafed22014-09-04 18:54:39 +05308931
Hanumantha Reddy Pothulacf2c7ea2015-04-27 14:50:47 +05308932 if (in_interrupt() || irqs_disabled() || in_atomic())
8933 flags = GFP_ATOMIC;
8934
8935 skb = alloc_skb(NLMSG_SPACE(WLAN_NL_MAX_PAYLOAD), flags);
Neelansh Mittaledafed22014-09-04 18:54:39 +05308936
8937 if(skb == NULL) {
8938 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
8939 "%s: alloc_skb failed", __func__);
8940 return;
8941 }
8942
8943 nlh = (struct nlmsghdr *)skb->data;
8944 nlh->nlmsg_pid = 0; /* from kernel */
8945 nlh->nlmsg_flags = 0;
8946 nlh->nlmsg_seq = 0;
8947 nlh->nlmsg_type = WLAN_NL_MSG_SVC;
8948
8949 ani_hdr = NLMSG_DATA(nlh);
8950 ani_hdr->type = type;
8951
8952 switch(type) {
8953 case WLAN_SVC_SAP_RESTART_IND:
8954 ani_hdr->length = 0;
8955 nlh->nlmsg_len = NLMSG_LENGTH((sizeof(tAniMsgHdr)));
8956 skb_put(skb, NLMSG_SPACE(sizeof(tAniMsgHdr)));
8957 break;
8958 default:
8959 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
8960 "Attempt to send unknown nlink message %d", type);
8961 kfree_skb(skb);
8962 return;
8963 }
8964
8965 nl_srv_bcast(skb);
8966
8967 return;
8968}
8969
8970
Madan Mohan Koyyalamudi8612ec92012-09-28 15:53:07 -07008971
8972/**---------------------------------------------------------------------------
8973
Gopichand Nakkalafce506f2013-07-03 23:55:16 +05308974 \brief hdd_is_5g_supported() - HDD function to know if hardware supports 5GHz
8975
8976 \param - pHddCtx - Pointer to the hdd context
8977
8978 \return - true if hardware supports 5GHz
8979
8980 --------------------------------------------------------------------------*/
Vinay Krishna Erannafacf5e22014-02-24 13:16:25 +05308981boolean hdd_is_5g_supported(hdd_context_t * pHddCtx)
Gopichand Nakkalafce506f2013-07-03 23:55:16 +05308982{
8983 /* If wcnss_wlan_iris_xo_mode() returns WCNSS_XO_48MHZ(1);
8984 * then hardware support 5Ghz.
8985 */
8986 if (WCNSS_XO_48MHZ == wcnss_wlan_iris_xo_mode())
8987 {
Agarwal Ashish971c2882013-10-30 20:11:12 +05308988 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Hardware supports 5Ghz", __func__);
Gopichand Nakkalafce506f2013-07-03 23:55:16 +05308989 return true;
8990 }
8991 else
8992 {
Agarwal Ashish971c2882013-10-30 20:11:12 +05308993 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Hardware doesn't supports 5Ghz",
Gopichand Nakkalafce506f2013-07-03 23:55:16 +05308994 __func__);
8995 return false;
8996 }
8997}
8998
Hardik Kantilal Patel4d7982a2013-12-02 18:53:30 +05308999/**---------------------------------------------------------------------------
9000
9001 \brief hdd_generate_iface_mac_addr_auto() - HDD Mac Interface Auto
9002 generate function
9003
9004 This is generate the random mac address for WLAN interface
9005
9006 \param - pHddCtx - Pointer to HDD context
9007 idx - Start interface index to get auto
9008 generated mac addr.
9009 mac_addr - Mac address
9010
9011 \return - 0 for success, < 0 for failure
9012
9013 --------------------------------------------------------------------------*/
9014
9015static int hdd_generate_iface_mac_addr_auto(hdd_context_t *pHddCtx,
9016 int idx, v_MACADDR_t mac_addr)
9017{
9018 int i;
9019 unsigned int serialno;
9020 serialno = wcnss_get_serial_number();
9021
9022 if (0 != serialno)
9023 {
9024 /* MAC address has 3 bytes of OUI so we have a maximum of 3
9025 bytes of the serial number that can be used to generate
9026 the other 3 bytes of the MAC address. Mask off all but
9027 the lower 3 bytes (this will also make sure we don't
9028 overflow in the next step) */
9029 serialno &= 0x00FFFFFF;
9030
9031 /* we need a unique address for each session */
9032 serialno *= VOS_MAX_CONCURRENCY_PERSONA;
9033
9034 /* autogen other Mac addresses */
9035 for (i = idx; i < VOS_MAX_CONCURRENCY_PERSONA; i++)
9036 {
9037 /* start with the entire default address */
9038 pHddCtx->cfg_ini->intfMacAddr[i] = mac_addr;
9039 /* then replace the lower 3 bytes */
9040 pHddCtx->cfg_ini->intfMacAddr[i].bytes[3] = (serialno >> 16) & 0xFF;
9041 pHddCtx->cfg_ini->intfMacAddr[i].bytes[4] = (serialno >> 8) & 0xFF;
9042 pHddCtx->cfg_ini->intfMacAddr[i].bytes[5] = serialno & 0xFF;
9043
9044 serialno++;
9045 hddLog(VOS_TRACE_LEVEL_ERROR,
9046 "%s: Derived Mac Addr: "
9047 MAC_ADDRESS_STR, __func__,
9048 MAC_ADDR_ARRAY(pHddCtx->cfg_ini->intfMacAddr[i].bytes));
9049 }
9050
9051 }
9052 else
9053 {
9054 hddLog(LOGE, FL("Failed to Get Serial NO"));
9055 return -1;
9056 }
9057 return 0;
9058}
Gopichand Nakkalafce506f2013-07-03 23:55:16 +05309059
Katya Nigame7b69a82015-04-28 15:24:06 +05309060int wlan_hdd_mon_open(hdd_context_t *pHddCtx)
9061{
9062 VOS_STATUS status;
9063 v_CONTEXT_t pVosContext= NULL;
9064 hdd_adapter_t *pAdapter= NULL;
9065
9066 pVosContext = vos_get_global_context(VOS_MODULE_ID_SYS, NULL);
9067
9068 if (NULL == pVosContext)
9069 {
9070 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
9071 "%s: Trying to open VOSS without a PreOpen", __func__);
9072 VOS_ASSERT(0);
9073 return VOS_STATUS_E_FAILURE;
9074 }
9075
9076 status = vos_nv_open();
9077 if (!VOS_IS_STATUS_SUCCESS(status))
9078 {
9079 /* NV module cannot be initialized */
9080 hddLog( VOS_TRACE_LEVEL_FATAL,
9081 "%s: vos_nv_open failed", __func__);
9082 return VOS_STATUS_E_FAILURE;
9083 }
9084
9085 status = vos_init_wiphy_from_nv_bin();
9086 if (!VOS_IS_STATUS_SUCCESS(status))
9087 {
9088 /* NV module cannot be initialized */
9089 hddLog( VOS_TRACE_LEVEL_FATAL,
9090 "%s: vos_init_wiphy failed", __func__);
9091 goto err_vos_nv_close;
9092 }
9093
9094 status = vos_open( &pVosContext, pHddCtx->parent_dev);
9095 if ( !VOS_IS_STATUS_SUCCESS( status ))
9096 {
9097 hddLog(VOS_TRACE_LEVEL_FATAL, "%s: vos_open failed", __func__);
9098 goto err_vos_nv_close;
9099 }
9100
9101 status = vos_mon_start( pVosContext );
9102 if ( !VOS_IS_STATUS_SUCCESS( status ) )
9103 {
9104 hddLog(VOS_TRACE_LEVEL_FATAL,"%s: vos_start failed",__func__);
9105 goto err_vosclose;
9106 }
9107
9108 WLANTL_SetMonRxCbk( pVosContext, hdd_rx_packet_monitor_cbk );
9109 WDA_featureCapsExchange(pVosContext);
9110 wcnss_wlan_set_drvdata(pHddCtx->parent_dev, pHddCtx);
9111
9112 pAdapter = hdd_open_adapter( pHddCtx, WLAN_HDD_MONITOR, "wlan%d",
9113 wlan_hdd_get_intf_addr(pHddCtx), FALSE );
9114 if( pAdapter == NULL )
9115 {
9116 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: hdd_open_adapter failed", __func__);
9117 goto err_close_adapter;
9118 }
9119
9120 //Initialize the nlink service
9121 if(nl_srv_init() != 0)
9122 {
9123 hddLog(VOS_TRACE_LEVEL_FATAL,"%s: nl_srv_init failed", __func__);
9124 goto err_close_adapter;
9125 }
9126 return VOS_STATUS_SUCCESS;
9127
9128err_close_adapter:
9129 hdd_close_all_adapters( pHddCtx );
9130 vos_mon_stop( pVosContext );
9131err_vosclose:
9132 status = vos_sched_close( pVosContext );
9133 if (!VOS_IS_STATUS_SUCCESS(status)) {
9134 VOS_TRACE( VOS_MODULE_ID_VOSS, VOS_TRACE_LEVEL_FATAL,
9135 "%s: Failed to close VOSS Scheduler", __func__);
9136 VOS_ASSERT( VOS_IS_STATUS_SUCCESS( status ) );
9137 }
9138 vos_close(pVosContext );
9139
9140err_vos_nv_close:
9141 vos_nv_close();
9142
9143return status;
9144}
Gopichand Nakkalafce506f2013-07-03 23:55:16 +05309145/**---------------------------------------------------------------------------
9146
Mihir Shetefc7ff5b2014-01-27 11:30:05 +05309147 \brief hdd_11d_scan_done - callback to be executed when 11d scan is
9148 completed to flush out the scan results
9149
9150 11d scan is done during driver load and is a passive scan on all
9151 channels supported by the device, 11d scans may find some APs on
9152 frequencies which are forbidden to be used in the regulatory domain
9153 the device is operating in. If these APs are notified to the supplicant
9154 it may try to connect to these APs, thus flush out all the scan results
9155 which are present in SME after 11d scan is done.
9156
9157 \return - eHalStatus
9158
9159 --------------------------------------------------------------------------*/
9160static eHalStatus hdd_11d_scan_done(tHalHandle halHandle, void *pContext,
9161 tANI_U32 scanId, eCsrScanStatus status)
9162{
9163 ENTER();
9164
9165 sme_ScanFlushResult(halHandle, 0);
9166
9167 EXIT();
9168
9169 return eHAL_STATUS_SUCCESS;
9170}
Siddharth Bhalb7c421c2015-02-27 00:26:09 +05309171/**---------------------------------------------------------------------------
9172
9173 \brief hdd_init_frame_logging_done - callback to be executed when mgmt frame
9174 logging is completed successfully.
9175
9176 \return - None
9177
9178 --------------------------------------------------------------------------*/
Siddharth Bhald1be97f2015-05-27 22:39:59 +05309179void hdd_init_frame_logging_done(void *fwlogInitCbContext, VOS_STATUS status)
Siddharth Bhalb7c421c2015-02-27 00:26:09 +05309180{
Siddharth Bhald1be97f2015-05-27 22:39:59 +05309181 hdd_context_t* pHddCtx = (hdd_context_t*)fwlogInitCbContext;
Siddharth Bhalb7c421c2015-02-27 00:26:09 +05309182
9183 if (NULL == pHddCtx)
9184 {
9185 hddLog(VOS_TRACE_LEVEL_ERROR,
9186 "%s: HDD context is NULL",__func__);
9187 return;
9188 }
9189
9190 if (VOS_STATUS_SUCCESS == status)
9191 {
9192 hddLog(VOS_TRACE_LEVEL_INFO, FL("Mgmt Frame Logging init successful"));
9193 pHddCtx->mgmt_frame_logging = TRUE;
9194 }
9195 else
9196 {
9197 hddLog(VOS_TRACE_LEVEL_INFO, FL("Mgmt Frame Logging init not success"));
9198 pHddCtx->mgmt_frame_logging = FALSE;
9199 }
9200
9201 return;
9202}
9203/**---------------------------------------------------------------------------
9204
9205 \brief hdd_init_frame_logging - function to initialize frame logging.
9206 Currently only Mgmt Frames are logged in both TX
9207 and Rx direction and are sent to userspace
9208 application using logger thread when queried.
9209
9210 \return - None
9211
9212 --------------------------------------------------------------------------*/
Siddharth Bhald1be97f2015-05-27 22:39:59 +05309213void hdd_init_frame_logging(hdd_context_t* pHddCtx)
Siddharth Bhalb7c421c2015-02-27 00:26:09 +05309214{
9215 eHalStatus halStatus = eHAL_STATUS_FAILURE;
Siddharth Bhald1be97f2015-05-27 22:39:59 +05309216 tpSirFWLoggingInitParam wlanFWLoggingInitParam;
Siddharth Bhalb7c421c2015-02-27 00:26:09 +05309217
Siddharth Bhald1be97f2015-05-27 22:39:59 +05309218 if (TRUE != sme_IsFeatureSupportedByFW(MGMT_FRAME_LOGGING) &&
9219 TRUE != sme_IsFeatureSupportedByFW(LOGGING_ENHANCEMENT))
Siddharth Bhalb7c421c2015-02-27 00:26:09 +05309220 {
9221 hddLog(VOS_TRACE_LEVEL_INFO, FL("MGMT_FRAME_LOGGING not supp by FW"));
9222 return;
9223 }
9224
Siddharth Bhald1be97f2015-05-27 22:39:59 +05309225 wlanFWLoggingInitParam = vos_mem_malloc(sizeof(tSirFWLoggingInitParam));
9226 if(NULL == wlanFWLoggingInitParam)
Siddharth Bhalb7c421c2015-02-27 00:26:09 +05309227 {
9228 hddLog(VOS_TRACE_LEVEL_FATAL, "%s: vos_mem_alloc failed ", __func__);
9229 return;
9230 }
9231
Siddharth Bhald1be97f2015-05-27 22:39:59 +05309232 vos_mem_set(wlanFWLoggingInitParam, sizeof(tSirFWLoggingInitParam), 0);
Siddharth Bhalb7c421c2015-02-27 00:26:09 +05309233
Siddharth Bhald1be97f2015-05-27 22:39:59 +05309234 hddLog(VOS_TRACE_LEVEL_INFO, "%s: Configuring %s %s %s Logging",__func__,
9235 pHddCtx->cfg_ini->enableFWLogging?"FW Log,":"",
9236 pHddCtx->cfg_ini->enableContFWLogging ? "Cont FW log,":"",
9237 pHddCtx->cfg_ini->enableMgmtLogging ? "Mgmt Pkt Log":"");
Siddharth Bhalb7c421c2015-02-27 00:26:09 +05309238
Siddharth Bhald1be97f2015-05-27 22:39:59 +05309239 if (pHddCtx->cfg_ini->enableFWLogging ||
9240 pHddCtx->cfg_ini->enableContFWLogging)
Siddharth Bhalb7c421c2015-02-27 00:26:09 +05309241 {
Siddharth Bhald1be97f2015-05-27 22:39:59 +05309242 wlanFWLoggingInitParam->enableFlag |= WLAN_QXDM_LOG_EN;
Siddharth Bhalb7c421c2015-02-27 00:26:09 +05309243 }
9244
9245 if (pHddCtx->cfg_ini->enableBMUHWtracing)
9246 {
Siddharth Bhald1be97f2015-05-27 22:39:59 +05309247 wlanFWLoggingInitParam->enableFlag |= WLAN_BMUHW_TRACE_LOG_EN;
Siddharth Bhalb7c421c2015-02-27 00:26:09 +05309248 }
9249
Siddharth Bhald1be97f2015-05-27 22:39:59 +05309250 wlanFWLoggingInitParam->frameType = WLAN_FRAME_LOGGING_FRAMETYPE_MGMT;
9251 wlanFWLoggingInitParam->frameSize = WLAN_MGMT_LOGGING_FRAMESIZE_128BYTES;
9252 wlanFWLoggingInitParam->bufferMode = WLAN_FRAME_LOGGING_BUFFERMODE_CIRCULAR;
9253 wlanFWLoggingInitParam->continuousFrameLogging =
9254 pHddCtx->cfg_ini->enableContFWLogging;
Siddharth Bhalb7c421c2015-02-27 00:26:09 +05309255
Siddharth Bhald1be97f2015-05-27 22:39:59 +05309256 wlanFWLoggingInitParam->enableFlag &= ~WLAN_DPU_TXP_LOG_EN;
Siddharth Bhalb7c421c2015-02-27 00:26:09 +05309257
Siddharth Bhald1be97f2015-05-27 22:39:59 +05309258 wlanFWLoggingInitParam->minLogBufferSize =
9259 pHddCtx->cfg_ini->minLoggingBufferSize;
9260 wlanFWLoggingInitParam->maxLogBufferSize =
9261 pHddCtx->cfg_ini->maxLoggingBufferSize;
9262 wlanFWLoggingInitParam->fwlogInitCallback = hdd_init_frame_logging_done;
9263 wlanFWLoggingInitParam->fwlogInitCbContext= pHddCtx;
Siddharth Bhalb7c421c2015-02-27 00:26:09 +05309264
Siddharth Bhald1be97f2015-05-27 22:39:59 +05309265 halStatus = sme_InitMgmtFrameLogging(pHddCtx->hHal, wlanFWLoggingInitParam);
Siddharth Bhalb7c421c2015-02-27 00:26:09 +05309266
9267 if (eHAL_STATUS_SUCCESS != halStatus)
9268 {
Siddharth Bhald1be97f2015-05-27 22:39:59 +05309269 vos_mem_free(wlanFWLoggingInitParam);
Siddharth Bhalb7c421c2015-02-27 00:26:09 +05309270 }
9271
9272 return;
9273}
Mihir Shetefc7ff5b2014-01-27 11:30:05 +05309274
9275/**---------------------------------------------------------------------------
9276
Jeff Johnson295189b2012-06-20 16:38:30 -07009277 \brief hdd_wlan_startup() - HDD init function
9278
9279 This is the driver startup code executed once a WLAN device has been detected
9280
9281 \param - dev - Pointer to the underlying device
9282
Madan Mohan Koyyalamudicae253a2012-11-06 19:10:35 -08009283 \return - 0 for success, < 0 for failure
Jeff Johnson295189b2012-06-20 16:38:30 -07009284
9285 --------------------------------------------------------------------------*/
9286
9287int hdd_wlan_startup(struct device *dev )
9288{
9289 VOS_STATUS status;
9290 hdd_adapter_t *pAdapter = NULL;
Jeff Johnsone7245742012-09-05 17:12:55 -07009291 hdd_adapter_t *pP2pAdapter = NULL;
Jeff Johnson295189b2012-06-20 16:38:30 -07009292 hdd_context_t *pHddCtx = NULL;
9293 v_CONTEXT_t pVosContext= NULL;
9294#ifdef WLAN_BTAMP_FEATURE
9295 VOS_STATUS vStatus = VOS_STATUS_SUCCESS;
9296 WLANBAP_ConfigType btAmpConfig;
9297 hdd_config_t *pConfig;
9298#endif
9299 int ret;
Jeff Johnson295189b2012-06-20 16:38:30 -07009300 struct wiphy *wiphy;
Hardik Kantilal Patel4d7982a2013-12-02 18:53:30 +05309301 v_MACADDR_t mac_addr;
Jeff Johnson295189b2012-06-20 16:38:30 -07009302
9303 ENTER();
Jeff Johnson295189b2012-06-20 16:38:30 -07009304 /*
9305 * cfg80211: wiphy allocation
9306 */
Madan Mohan Koyyalamudi71278262013-04-12 22:00:48 +05309307 wiphy = wlan_hdd_cfg80211_wiphy_alloc(sizeof(hdd_context_t)) ;
Jeff Johnson295189b2012-06-20 16:38:30 -07009308
9309 if(wiphy == NULL)
9310 {
9311 hddLog(VOS_TRACE_LEVEL_ERROR,"%s: cfg80211 init failed", __func__);
Madan Mohan Koyyalamudicae253a2012-11-06 19:10:35 -08009312 return -EIO;
Jeff Johnson295189b2012-06-20 16:38:30 -07009313 }
Jeff Johnson295189b2012-06-20 16:38:30 -07009314 pHddCtx = wiphy_priv(wiphy);
9315
Jeff Johnson295189b2012-06-20 16:38:30 -07009316 //Initialize the adapter context to zeros.
9317 vos_mem_zero(pHddCtx, sizeof( hdd_context_t ));
9318
Jeff Johnson295189b2012-06-20 16:38:30 -07009319 pHddCtx->wiphy = wiphy;
Jeff Johnson295189b2012-06-20 16:38:30 -07009320 hdd_prevent_suspend();
Mihir Shete18156292014-03-11 15:38:30 +05309321 pHddCtx->isLoadUnloadInProgress = WLAN_HDD_LOAD_IN_PROGRESS;
Jeff Johnson295189b2012-06-20 16:38:30 -07009322
9323 vos_set_load_unload_in_progress(VOS_MODULE_ID_VOSS, TRUE);
9324
9325 /*Get vos context here bcoz vos_open requires it*/
9326 pVosContext = vos_get_global_context(VOS_MODULE_ID_SYS, NULL);
9327
Madan Mohan Koyyalamudi0b78e152012-11-28 15:46:51 -08009328 if(pVosContext == NULL)
9329 {
9330 hddLog(VOS_TRACE_LEVEL_FATAL,"%s: Failed vos_get_global_context",__func__);
9331 goto err_free_hdd_context;
9332 }
9333
Jeff Johnson295189b2012-06-20 16:38:30 -07009334 //Save the Global VOSS context in adapter context for future.
9335 pHddCtx->pvosContext = pVosContext;
9336
9337 //Save the adapter context in global context for future.
9338 ((VosContextType*)(pVosContext))->pHDDContext = (v_VOID_t*)pHddCtx;
9339
Jeff Johnson295189b2012-06-20 16:38:30 -07009340 pHddCtx->parent_dev = dev;
9341
9342 init_completion(&pHddCtx->full_pwr_comp_var);
9343 init_completion(&pHddCtx->standby_comp_var);
9344 init_completion(&pHddCtx->req_bmps_comp_var);
Madan Mohan Koyyalamudi2a1ba772012-10-11 14:59:06 -07009345 init_completion(&pHddCtx->scan_info.scan_req_completion_event);
Madan Mohan Koyyalamudif4e81002012-11-13 10:46:38 -08009346 init_completion(&pHddCtx->scan_info.abortscan_event_var);
Kiet Lam46b8e4e2013-11-06 21:49:53 +05309347 init_completion(&pHddCtx->wiphy_channel_update_event);
Arun Kumar Khandavallie0b046d2014-03-01 21:54:25 +05309348 init_completion(&pHddCtx->ssr_comp_var);
Amar Singhala49cbc52013-10-08 18:37:44 -07009349
9350#ifdef CONFIG_ENABLE_LINUX_REG
Amar Singhalfddc28c2013-09-05 13:03:40 -07009351 init_completion(&pHddCtx->linux_reg_req);
Amar Singhala49cbc52013-10-08 18:37:44 -07009352#else
9353 init_completion(&pHddCtx->driver_crda_req);
9354#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07009355
Kamath Vinayak4000c9a2013-08-23 14:24:27 +05309356 spin_lock_init(&pHddCtx->schedScan_lock);
9357
Jeff Johnson295189b2012-06-20 16:38:30 -07009358 hdd_list_init( &pHddCtx->hddAdapters, MAX_NUMBER_OF_ADAPTERS );
9359
Madan Mohan Koyyalamudi96797442013-10-08 16:04:42 +05309360#ifdef FEATURE_WLAN_TDLS
9361 /* tdls_lock is initialized before an hdd_open_adapter ( which is
9362 * invoked by other instances also) to protect the concurrent
9363 * access for the Adapters by TDLS module.
9364 */
9365 mutex_init(&pHddCtx->tdls_lock);
9366#endif
Siddharth Bhal76972212014-10-15 16:22:51 +05309367 mutex_init(&pHddCtx->spoofMacAddr.macSpoofingLock);
Mukul Sharma1fd6efd2015-02-14 00:29:14 +05309368 mutex_init(&pHddCtx->wmmLock);
9369
Agarwal Ashish1f422872014-07-22 00:11:55 +05309370 /* By default Strict Regulatory For FCC should be false */
Madan Mohan Koyyalamudi96797442013-10-08 16:04:42 +05309371
Agarwal Ashish1f422872014-07-22 00:11:55 +05309372 pHddCtx->nEnableStrictRegulatoryForFCC = FALSE;
Jeff Johnson295189b2012-06-20 16:38:30 -07009373 // Load all config first as TL config is needed during vos_open
9374 pHddCtx->cfg_ini = (hdd_config_t*) kmalloc(sizeof(hdd_config_t), GFP_KERNEL);
9375 if(pHddCtx->cfg_ini == NULL)
9376 {
9377 hddLog(VOS_TRACE_LEVEL_FATAL,"%s: Failed kmalloc hdd_config_t",__func__);
9378 goto err_free_hdd_context;
9379 }
9380
9381 vos_mem_zero(pHddCtx->cfg_ini, sizeof( hdd_config_t ));
9382
9383 // Read and parse the qcom_cfg.ini file
9384 status = hdd_parse_config_ini( pHddCtx );
9385 if ( VOS_STATUS_SUCCESS != status )
9386 {
9387 hddLog(VOS_TRACE_LEVEL_FATAL, "%s: error parsing %s",
9388 __func__, WLAN_INI_FILE);
9389 goto err_config;
9390 }
Arif Hussaind5218912013-12-05 01:10:55 -08009391#ifdef MEMORY_DEBUG
9392 if (pHddCtx->cfg_ini->IsMemoryDebugSupportEnabled)
9393 vos_mem_init();
9394
9395 hddLog(VOS_TRACE_LEVEL_INFO, "%s: gEnableMemoryDebug=%d",
9396 __func__, pHddCtx->cfg_ini->IsMemoryDebugSupportEnabled);
9397#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07009398
Gopichand Nakkalab8f0f1a2013-05-23 18:19:48 +05309399 /* INI has been read, initialise the configuredMcastBcastFilter with
9400 * INI value as this will serve as the default value
9401 */
9402 pHddCtx->configuredMcastBcastFilter = pHddCtx->cfg_ini->mcastBcastFilterSetting;
9403 hddLog(VOS_TRACE_LEVEL_INFO, "Setting configuredMcastBcastFilter: %d",
9404 pHddCtx->cfg_ini->mcastBcastFilterSetting);
Gopichand Nakkalafce506f2013-07-03 23:55:16 +05309405
9406 if (false == hdd_is_5g_supported(pHddCtx))
9407 {
9408 //5Ghz is not supported.
9409 if (1 != pHddCtx->cfg_ini->nBandCapability)
9410 {
9411 hddLog(VOS_TRACE_LEVEL_INFO,
9412 "%s: Setting pHddCtx->cfg_ini->nBandCapability = 1", __func__);
9413 pHddCtx->cfg_ini->nBandCapability = 1;
9414 }
9415 }
Madan Mohan Koyyalamudid9383fd2013-08-13 09:27:30 +05309416
9417 /* If SNR Monitoring is enabled, FW has to parse all beacons
9418 * for calcaluting and storing the average SNR, so set Nth beacon
9419 * filter to 1 to enable FW to parse all the beaocons
9420 */
9421 if (1 == pHddCtx->cfg_ini->fEnableSNRMonitoring)
9422 {
9423 /* The log level is deliberately set to WARN as overriding
9424 * nthBeaconFilter to 1 will increase power cosumption and this
9425 * might just prove helpful to detect the power issue.
9426 */
9427 hddLog(VOS_TRACE_LEVEL_WARN,
9428 "%s: Setting pHddCtx->cfg_ini->nthBeaconFilter = 1", __func__);
9429 pHddCtx->cfg_ini->nthBeaconFilter = 1;
9430 }
Jeff Johnson295189b2012-06-20 16:38:30 -07009431 /*
Madan Mohan Koyyalamudi71278262013-04-12 22:00:48 +05309432 * cfg80211: Initialization ...
Jeff Johnson295189b2012-06-20 16:38:30 -07009433 */
Manjunathappa Prakasheec4ddf2014-01-13 18:23:51 -08009434 if (VOS_FTM_MODE != hdd_get_conparam())
Jeff Johnson295189b2012-06-20 16:38:30 -07009435 {
Manjunathappa Prakasheec4ddf2014-01-13 18:23:51 -08009436 if (0 < wlan_hdd_cfg80211_init(dev, wiphy, pHddCtx->cfg_ini))
9437 {
9438 hddLog(VOS_TRACE_LEVEL_FATAL,
9439 "%s: wlan_hdd_cfg80211_init return failure", __func__);
9440 goto err_config;
9441 }
Jeff Johnson295189b2012-06-20 16:38:30 -07009442 }
Jeff Johnson295189b2012-06-20 16:38:30 -07009443
Varun Reddy Yeturu587e6802013-01-24 12:21:41 -08009444 // Update VOS trace levels based upon the cfg.ini
9445 hdd_vos_trace_enable(VOS_MODULE_ID_BAP,
9446 pHddCtx->cfg_ini->vosTraceEnableBAP);
9447 hdd_vos_trace_enable(VOS_MODULE_ID_TL,
9448 pHddCtx->cfg_ini->vosTraceEnableTL);
9449 hdd_vos_trace_enable(VOS_MODULE_ID_WDI,
9450 pHddCtx->cfg_ini->vosTraceEnableWDI);
9451 hdd_vos_trace_enable(VOS_MODULE_ID_HDD,
9452 pHddCtx->cfg_ini->vosTraceEnableHDD);
9453 hdd_vos_trace_enable(VOS_MODULE_ID_SME,
9454 pHddCtx->cfg_ini->vosTraceEnableSME);
9455 hdd_vos_trace_enable(VOS_MODULE_ID_PE,
9456 pHddCtx->cfg_ini->vosTraceEnablePE);
Katya Nigam70d68332013-09-16 16:49:45 +05309457 hdd_vos_trace_enable(VOS_MODULE_ID_PMC,
9458 pHddCtx->cfg_ini->vosTraceEnablePMC);
Varun Reddy Yeturu587e6802013-01-24 12:21:41 -08009459 hdd_vos_trace_enable(VOS_MODULE_ID_WDA,
9460 pHddCtx->cfg_ini->vosTraceEnableWDA);
9461 hdd_vos_trace_enable(VOS_MODULE_ID_SYS,
9462 pHddCtx->cfg_ini->vosTraceEnableSYS);
9463 hdd_vos_trace_enable(VOS_MODULE_ID_VOSS,
9464 pHddCtx->cfg_ini->vosTraceEnableVOSS);
Varun Reddy Yeturu587e6802013-01-24 12:21:41 -08009465 hdd_vos_trace_enable(VOS_MODULE_ID_SAP,
9466 pHddCtx->cfg_ini->vosTraceEnableSAP);
9467 hdd_vos_trace_enable(VOS_MODULE_ID_HDD_SOFTAP,
9468 pHddCtx->cfg_ini->vosTraceEnableHDDSAP);
Varun Reddy Yeturu587e6802013-01-24 12:21:41 -08009469
Jeff Johnson295189b2012-06-20 16:38:30 -07009470 // Update WDI trace levels based upon the cfg.ini
9471 hdd_wdi_trace_enable(eWLAN_MODULE_DAL,
9472 pHddCtx->cfg_ini->wdiTraceEnableDAL);
9473 hdd_wdi_trace_enable(eWLAN_MODULE_DAL_CTRL,
9474 pHddCtx->cfg_ini->wdiTraceEnableCTL);
9475 hdd_wdi_trace_enable(eWLAN_MODULE_DAL_DATA,
9476 pHddCtx->cfg_ini->wdiTraceEnableDAT);
9477 hdd_wdi_trace_enable(eWLAN_MODULE_PAL,
9478 pHddCtx->cfg_ini->wdiTraceEnablePAL);
Jeff Johnson295189b2012-06-20 16:38:30 -07009479
Jeff Johnson88ba7742013-02-27 14:36:02 -08009480 if (VOS_FTM_MODE == hdd_get_conparam())
9481 {
Jeff Johnson295189b2012-06-20 16:38:30 -07009482 if ( VOS_STATUS_SUCCESS != wlan_hdd_ftm_open(pHddCtx) )
9483 {
9484 hddLog(VOS_TRACE_LEVEL_FATAL,"%s: wlan_hdd_ftm_open Failed",__func__);
9485 goto err_free_hdd_context;
9486 }
9487 hddLog(VOS_TRACE_LEVEL_FATAL,"%s: FTM driver loaded success fully",__func__);
Sachin Ahuja38ef5e02015-03-13 17:31:16 +05309488 pHddCtx->isLoadUnloadInProgress = WLAN_HDD_NO_LOAD_UNLOAD_IN_PROGRESS;
c_hpothu2de0ef62014-04-15 16:16:15 +05309489 vos_set_load_unload_in_progress(VOS_MODULE_ID_VOSS, FALSE);
Jeff Johnson295189b2012-06-20 16:38:30 -07009490 return VOS_STATUS_SUCCESS;
Jeff Johnson88ba7742013-02-27 14:36:02 -08009491 }
Jeff Johnson295189b2012-06-20 16:38:30 -07009492
Katya Nigame7b69a82015-04-28 15:24:06 +05309493 if( VOS_MONITOR_MODE == hdd_get_conparam())
9494 {
9495 if ( VOS_STATUS_SUCCESS != wlan_hdd_mon_open(pHddCtx))
9496 {
9497 hddLog(VOS_TRACE_LEVEL_FATAL,"%s: wlan_hdd_mon_open Failed",__func__);
9498 goto err_free_hdd_context;
9499 }
9500 hddLog(VOS_TRACE_LEVEL_FATAL,"%s: Driver loaded in Monitor Mode",__func__);
9501 pHddCtx->isLoadUnloadInProgress = WLAN_HDD_NO_LOAD_UNLOAD_IN_PROGRESS;
9502 vos_set_load_unload_in_progress(VOS_MODULE_ID_VOSS, FALSE);
9503 return VOS_STATUS_SUCCESS;
9504 }
9505
Jeff Johnson88ba7742013-02-27 14:36:02 -08009506 //Open watchdog module
Jeff Johnson295189b2012-06-20 16:38:30 -07009507 if(pHddCtx->cfg_ini->fIsLogpEnabled)
9508 {
9509 status = vos_watchdog_open(pVosContext,
9510 &((VosContextType*)pVosContext)->vosWatchdog, sizeof(VosWatchdogContext));
9511
9512 if(!VOS_IS_STATUS_SUCCESS( status ))
9513 {
9514 hddLog(VOS_TRACE_LEVEL_FATAL,"%s: vos_watchdog_open failed",__func__);
Madan Mohan Koyyalamudi71278262013-04-12 22:00:48 +05309515 goto err_wdclose;
Jeff Johnson295189b2012-06-20 16:38:30 -07009516 }
9517 }
9518
9519 pHddCtx->isLogpInProgress = FALSE;
9520 vos_set_logp_in_progress(VOS_MODULE_ID_VOSS, FALSE);
9521
Amar Singhala49cbc52013-10-08 18:37:44 -07009522#ifdef CONFIG_ENABLE_LINUX_REG
Amar Singhal0a402232013-10-11 20:57:16 -07009523 /* initialize the NV module. This is required so that
9524 we can initialize the channel information in wiphy
9525 from the NV.bin data. The channel information in
9526 wiphy needs to be initialized before wiphy registration */
9527
9528 status = vos_nv_open();
9529 if (!VOS_IS_STATUS_SUCCESS(status))
9530 {
9531 /* NV module cannot be initialized */
9532 hddLog( VOS_TRACE_LEVEL_FATAL,
9533 "%s: vos_nv_open failed", __func__);
Vinay Krishna Eranna2025d892014-09-18 16:51:42 +05309534 goto err_wdclose;
Amar Singhal0a402232013-10-11 20:57:16 -07009535 }
9536
9537 status = vos_init_wiphy_from_nv_bin();
9538 if (!VOS_IS_STATUS_SUCCESS(status))
9539 {
9540 /* NV module cannot be initialized */
9541 hddLog( VOS_TRACE_LEVEL_FATAL,
9542 "%s: vos_init_wiphy failed", __func__);
9543 goto err_vos_nv_close;
9544 }
9545
Amar Singhala49cbc52013-10-08 18:37:44 -07009546#endif
Girish Gowlibf0e1ab2015-01-19 16:05:16 +05309547 vos_set_roam_delay_stats_enabled(pHddCtx->cfg_ini->gEnableRoamDelayStats);
Arun Kumar Khandavalliebb19482014-03-25 13:56:53 +05309548 status = vos_open( &pVosContext, pHddCtx->parent_dev);
Jeff Johnson295189b2012-06-20 16:38:30 -07009549 if ( !VOS_IS_STATUS_SUCCESS( status ))
9550 {
Jeff Johnsonbc676b42013-02-14 16:04:08 -08009551 hddLog(VOS_TRACE_LEVEL_FATAL, "%s: vos_open failed", __func__);
Mihir Shetee1093ba2014-01-21 20:13:32 +05309552 goto err_vos_nv_close;
Jeff Johnson295189b2012-06-20 16:38:30 -07009553 }
9554
Jeff Johnson295189b2012-06-20 16:38:30 -07009555 pHddCtx->hHal = (tHalHandle)vos_get_context( VOS_MODULE_ID_SME, pVosContext );
9556
9557 if ( NULL == pHddCtx->hHal )
9558 {
Jeff Johnsonbc676b42013-02-14 16:04:08 -08009559 hddLog(VOS_TRACE_LEVEL_FATAL, "%s: HAL context is null", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07009560 goto err_vosclose;
9561 }
9562
Jeff Johnsonbc676b42013-02-14 16:04:08 -08009563 status = vos_preStart( pHddCtx->pvosContext );
9564 if ( !VOS_IS_STATUS_SUCCESS( status ) )
9565 {
9566 hddLog(VOS_TRACE_LEVEL_FATAL, "%s: vos_preStart failed", __func__);
Mahesh A Saptasagar74289d22014-05-14 12:43:37 +05309567 goto err_vosclose;
Jeff Johnsonbc676b42013-02-14 16:04:08 -08009568 }
Jeff Johnsone7245742012-09-05 17:12:55 -07009569
Arif Hussaineaf68602013-12-30 23:10:44 -08009570 if (0 == enable_dfs_chan_scan || 1 == enable_dfs_chan_scan)
9571 {
9572 pHddCtx->cfg_ini->enableDFSChnlScan = enable_dfs_chan_scan;
9573 hddLog(VOS_TRACE_LEVEL_INFO, "%s: module enable_dfs_chan_scan set to %d",
9574 __func__, enable_dfs_chan_scan);
9575 }
9576 if (0 == enable_11d || 1 == enable_11d)
9577 {
9578 pHddCtx->cfg_ini->Is11dSupportEnabled = enable_11d;
9579 hddLog(VOS_TRACE_LEVEL_INFO, "%s: module enable_11d set to %d",
9580 __func__, enable_11d);
9581 }
9582
Jeff Johnsonbc676b42013-02-14 16:04:08 -08009583 /* Note that the vos_preStart() sequence triggers the cfg download.
9584 The cfg download must occur before we update the SME config
9585 since the SME config operation must access the cfg database */
Jeff Johnson295189b2012-06-20 16:38:30 -07009586 status = hdd_set_sme_config( pHddCtx );
9587
9588 if ( VOS_STATUS_SUCCESS != status )
9589 {
Jeff Johnsonbc676b42013-02-14 16:04:08 -08009590 hddLog(VOS_TRACE_LEVEL_FATAL, "%s: Failed hdd_set_sme_config", __func__);
Mahesh A Saptasagar74289d22014-05-14 12:43:37 +05309591 goto err_vosclose;
Jeff Johnsonbc676b42013-02-14 16:04:08 -08009592 }
Jeff Johnson295189b2012-06-20 16:38:30 -07009593
Jeff Johnson295189b2012-06-20 16:38:30 -07009594 /* In the integrated architecture we update the configuration from
9595 the INI file and from NV before vOSS has been started so that
9596 the final contents are available to send down to the cCPU */
9597
9598 // Apply the cfg.ini to cfg.dat
9599 if (FALSE == hdd_update_config_dat(pHddCtx))
9600 {
9601 hddLog(VOS_TRACE_LEVEL_FATAL,"%s: config update failed",__func__ );
Mahesh A Saptasagar74289d22014-05-14 12:43:37 +05309602 goto err_vosclose;
Jeff Johnson295189b2012-06-20 16:38:30 -07009603 }
9604
Hardik Kantilal Patel4d7982a2013-12-02 18:53:30 +05309605 // Get mac addr from platform driver
9606 ret = wcnss_get_wlan_mac_address((char*)&mac_addr.bytes);
9607
9608 if ((0 == ret) && (!vos_is_macaddr_zero(&mac_addr)))
Jeff Johnson295189b2012-06-20 16:38:30 -07009609 {
Hardik Kantilal Patel4d7982a2013-12-02 18:53:30 +05309610 /* Store the mac addr for first interface */
9611 pHddCtx->cfg_ini->intfMacAddr[0] = mac_addr;
9612
9613 hddLog(VOS_TRACE_LEVEL_ERROR,
9614 "%s: WLAN Mac Addr: "
9615 MAC_ADDRESS_STR, __func__,
9616 MAC_ADDR_ARRAY(pHddCtx->cfg_ini->intfMacAddr[0].bytes));
9617
9618 /* Here, passing Arg2 as 1 because we do not want to change the
9619 last 3 bytes (means non OUI bytes) of first interface mac
9620 addr.
9621 */
9622 if (0 != hdd_generate_iface_mac_addr_auto(pHddCtx, 1, mac_addr))
9623 {
9624 hddLog(VOS_TRACE_LEVEL_ERROR,
9625 "%s: Failed to generate wlan interface mac addr "
9626 "using MAC from ini file ", __func__);
9627 }
9628 }
9629 else if (VOS_STATUS_SUCCESS != hdd_update_config_from_nv(pHddCtx))
9630 {
9631 // Apply the NV to cfg.dat
9632 /* Prima Update MAC address only at here */
Jeff Johnson295189b2012-06-20 16:38:30 -07009633#ifdef WLAN_AUTOGEN_MACADDR_FEATURE
9634 /* There was not a valid set of MAC Addresses in NV. See if the
9635 default addresses were modified by the cfg.ini settings. If so,
9636 we'll use them, but if not, we'll autogenerate a set of MAC
9637 addresses based upon the device serial number */
9638
9639 static const v_MACADDR_t default_address =
9640 {{0x00, 0x0A, 0xF5, 0x89, 0x89, 0xFF}};
Jeff Johnson295189b2012-06-20 16:38:30 -07009641
Hardik Kantilal Patel4d7982a2013-12-02 18:53:30 +05309642 if (0 == memcmp(&default_address, &pHddCtx->cfg_ini->intfMacAddr[0],
9643 sizeof(default_address)))
Jeff Johnson295189b2012-06-20 16:38:30 -07009644 {
9645 /* cfg.ini has the default address, invoke autogen logic */
9646
Hardik Kantilal Patel4d7982a2013-12-02 18:53:30 +05309647 /* Here, passing Arg2 as 0 because we want to change the
9648 last 3 bytes (means non OUI bytes) of all the interfaces
9649 mac addr.
9650 */
9651 if (0 != hdd_generate_iface_mac_addr_auto(pHddCtx, 0,
9652 default_address))
Jeff Johnson295189b2012-06-20 16:38:30 -07009653 {
Hardik Kantilal Patel4d7982a2013-12-02 18:53:30 +05309654 hddLog(VOS_TRACE_LEVEL_ERROR,
9655 "%s: Failed to generate wlan interface mac addr "
9656 "using MAC from ini file " MAC_ADDRESS_STR, __func__,
9657 MAC_ADDR_ARRAY(pHddCtx->cfg_ini->intfMacAddr[0].bytes));
Jeff Johnson295189b2012-06-20 16:38:30 -07009658 }
Jeff Johnson295189b2012-06-20 16:38:30 -07009659 }
9660 else
9661#endif //WLAN_AUTOGEN_MACADDR_FEATURE
9662 {
Jeff Johnsonbc676b42013-02-14 16:04:08 -08009663 hddLog(VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -07009664 "%s: Invalid MAC address in NV, using MAC from ini file "
9665 MAC_ADDRESS_STR, __func__,
9666 MAC_ADDR_ARRAY(pHddCtx->cfg_ini->intfMacAddr[0].bytes));
9667 }
9668 }
9669 {
9670 eHalStatus halStatus;
Hardik Kantilal Patel4d7982a2013-12-02 18:53:30 +05309671
9672 /* Set the MAC Address Currently this is used by HAL to
9673 * add self sta. Remove this once self sta is added as
9674 * part of session open.
9675 */
Jeff Johnson295189b2012-06-20 16:38:30 -07009676 halStatus = cfgSetStr( pHddCtx->hHal, WNI_CFG_STA_ID,
9677 (v_U8_t *)&pHddCtx->cfg_ini->intfMacAddr[0],
9678 sizeof( pHddCtx->cfg_ini->intfMacAddr[0]) );
Hardik Kantilal Patel4d7982a2013-12-02 18:53:30 +05309679
Jeff Johnson295189b2012-06-20 16:38:30 -07009680 if (!HAL_STATUS_SUCCESS( halStatus ))
9681 {
9682 hddLog(VOS_TRACE_LEVEL_ERROR,"%s: Failed to set MAC Address. "
9683 "HALStatus is %08d [x%08x]",__func__, halStatus, halStatus );
Mahesh A Saptasagar74289d22014-05-14 12:43:37 +05309684 goto err_vosclose;
Jeff Johnson295189b2012-06-20 16:38:30 -07009685 }
9686 }
Jeff Johnson295189b2012-06-20 16:38:30 -07009687
9688 /*Start VOSS which starts up the SME/MAC/HAL modules and everything else
9689 Note: Firmware image will be read and downloaded inside vos_start API */
9690 status = vos_start( pHddCtx->pvosContext );
9691 if ( !VOS_IS_STATUS_SUCCESS( status ) )
9692 {
9693 hddLog(VOS_TRACE_LEVEL_FATAL,"%s: vos_start failed",__func__);
Mahesh A Saptasagar74289d22014-05-14 12:43:37 +05309694 goto err_vosclose;
Jeff Johnson295189b2012-06-20 16:38:30 -07009695 }
9696
Leo Chang6cec3e22014-01-21 15:33:49 -08009697#ifdef FEATURE_WLAN_CH_AVOID
9698 /* Plug in avoid channel notification callback
9699 * This should happen before ADD_SELF_STA
9700 * FW will send first IND with ADD_SELF_STA REQ from host */
Pradeep Reddy POTTETI5c2e16d2014-06-27 16:47:38 +05309701
9702 /* check the Channel Avoidance is enabled */
9703 if (TRUE == pHddCtx->cfg_ini->fenableCHAvoidance)
9704 {
9705 sme_AddChAvoidCallback(pHddCtx->hHal,
9706 hdd_hostapd_ch_avoid_cb);
9707 }
Leo Chang6cec3e22014-01-21 15:33:49 -08009708#endif /* FEATURE_WLAN_CH_AVOID */
9709
Madan Mohan Koyyalamudi8612ec92012-09-28 15:53:07 -07009710 /* Exchange capability info between Host and FW and also get versioning info from FW */
9711 hdd_exchange_version_and_caps(pHddCtx);
Jeff Johnson295189b2012-06-20 16:38:30 -07009712
Agarwal Ashishad9281b2014-06-10 14:57:30 +05309713#ifdef CONFIG_ENABLE_LINUX_REG
9714 status = wlan_hdd_init_channels(pHddCtx);
9715 if ( !VOS_IS_STATUS_SUCCESS( status ) )
9716 {
9717 hddLog(VOS_TRACE_LEVEL_FATAL, "%s: wlan_hdd_init_channels failed",
9718 __func__);
9719 goto err_vosstop;
9720 }
9721#endif
9722
Jeff Johnson295189b2012-06-20 16:38:30 -07009723 status = hdd_post_voss_start_config( pHddCtx );
9724 if ( !VOS_IS_STATUS_SUCCESS( status ) )
9725 {
9726 hddLog(VOS_TRACE_LEVEL_FATAL,"%s: hdd_post_voss_start_config failed",
9727 __func__);
9728 goto err_vosstop;
9729 }
Amar Singhala49cbc52013-10-08 18:37:44 -07009730
9731#ifndef CONFIG_ENABLE_LINUX_REG
Madan Mohan Koyyalamudi71278262013-04-12 22:00:48 +05309732 wlan_hdd_cfg80211_update_reg_info( wiphy );
9733
9734 /* registration of wiphy dev with cfg80211 */
9735 if (0 > wlan_hdd_cfg80211_register(wiphy))
9736 {
9737 hddLog(VOS_TRACE_LEVEL_ERROR,"%s: wiphy register failed", __func__);
9738 goto err_vosstop;
9739 }
Amar Singhala49cbc52013-10-08 18:37:44 -07009740#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07009741
Mahesh A Saptasagar74289d22014-05-14 12:43:37 +05309742#ifdef CONFIG_ENABLE_LINUX_REG
Mahesh A Saptasagar74289d22014-05-14 12:43:37 +05309743 /* registration of wiphy dev with cfg80211 */
9744 if (0 > wlan_hdd_cfg80211_register(wiphy))
9745 {
9746 hddLog(VOS_TRACE_LEVEL_ERROR,"%s: wiphy register failed", __func__);
9747 goto err_vosstop;
9748 }
9749
Agarwal Ashish6db9d532014-09-30 18:19:10 +05309750 status = wlan_hdd_init_channels_for_cc(pHddCtx, INIT);
Mahesh A Saptasagar74289d22014-05-14 12:43:37 +05309751 if ( !VOS_IS_STATUS_SUCCESS( status ) )
9752 {
9753 hddLog(VOS_TRACE_LEVEL_FATAL, "%s: wlan_hdd_init_channels_for_cc failed",
9754 __func__);
9755 goto err_unregister_wiphy;
9756 }
9757#endif
9758
c_hpothu4a298be2014-12-22 21:12:51 +05309759 wcnss_wlan_set_drvdata(pHddCtx->parent_dev, pHddCtx);
9760
Jeff Johnson295189b2012-06-20 16:38:30 -07009761 if (VOS_STA_SAP_MODE == hdd_get_conparam())
9762 {
9763 pAdapter = hdd_open_adapter( pHddCtx, WLAN_HDD_SOFTAP, "softap.%d",
9764 wlan_hdd_get_intf_addr(pHddCtx), FALSE );
9765 }
9766 else
9767 {
Jeff Johnson295189b2012-06-20 16:38:30 -07009768 pAdapter = hdd_open_adapter( pHddCtx, WLAN_HDD_INFRA_STATION, "wlan%d",
9769 wlan_hdd_get_intf_addr(pHddCtx), FALSE );
9770 if (pAdapter != NULL)
9771 {
Katya Nigama7d81d72014-11-12 12:44:34 +05309772 if (pHddCtx->cfg_ini->isP2pDeviceAddrAdministrated && !(pHddCtx->cfg_ini->intfMacAddr[0].bytes[0] & 0x02))
Jeff Johnson295189b2012-06-20 16:38:30 -07009773 {
Gopichand Nakkala49f96f62013-02-06 14:38:17 +05309774 vos_mem_copy( pHddCtx->p2pDeviceAddress.bytes,
9775 pHddCtx->cfg_ini->intfMacAddr[0].bytes,
9776 sizeof(tSirMacAddr));
Madan Mohan Koyyalamudiedfc1b72012-10-18 20:25:55 -07009777
Gopichand Nakkala49f96f62013-02-06 14:38:17 +05309778 /* Generate the P2P Device Address. This consists of the device's
9779 * primary MAC address with the locally administered bit set.
9780 */
9781 pHddCtx->p2pDeviceAddress.bytes[0] |= 0x02;
Jeff Johnsone7245742012-09-05 17:12:55 -07009782 }
9783 else
9784 {
Gopichand Nakkala49f96f62013-02-06 14:38:17 +05309785 tANI_U8* p2p_dev_addr = wlan_hdd_get_intf_addr(pHddCtx);
9786 if (p2p_dev_addr != NULL)
9787 {
9788 vos_mem_copy(&pHddCtx->p2pDeviceAddress.bytes[0],
9789 p2p_dev_addr, VOS_MAC_ADDR_SIZE);
9790 }
9791 else
9792 {
9793 hddLog(VOS_TRACE_LEVEL_FATAL,
9794 "%s: Failed to allocate mac_address for p2p_device",
9795 __func__);
9796 goto err_close_adapter;
9797 }
Jeff Johnson295189b2012-06-20 16:38:30 -07009798 }
Jeff Johnsone7245742012-09-05 17:12:55 -07009799
9800 pP2pAdapter = hdd_open_adapter( pHddCtx, WLAN_HDD_P2P_DEVICE, "p2p%d",
9801 &pHddCtx->p2pDeviceAddress.bytes[0], FALSE );
9802 if ( NULL == pP2pAdapter )
9803 {
9804 hddLog(VOS_TRACE_LEVEL_FATAL,
9805 "%s: Failed to do hdd_open_adapter for P2P Device Interface",
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07009806 __func__);
Jeff Johnsone7245742012-09-05 17:12:55 -07009807 goto err_close_adapter;
9808 }
Jeff Johnsone7245742012-09-05 17:12:55 -07009809 }
Jeff Johnson295189b2012-06-20 16:38:30 -07009810 }
Jeff Johnson295189b2012-06-20 16:38:30 -07009811
9812 if( pAdapter == NULL )
9813 {
Jeff Johnsonbc676b42013-02-14 16:04:08 -08009814 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: hdd_open_adapter failed", __func__);
9815 goto err_close_adapter;
Jeff Johnson295189b2012-06-20 16:38:30 -07009816 }
Jeff Johnsone7245742012-09-05 17:12:55 -07009817
Arif Hussain66559122013-11-21 10:11:40 -08009818 if (country_code)
9819 {
9820 eHalStatus ret;
Arif Hussaincb607082013-12-20 11:57:42 -08009821 INIT_COMPLETION(pAdapter->change_country_code);
Arif Hussain66559122013-11-21 10:11:40 -08009822 hdd_checkandupdate_dfssetting(pAdapter, country_code);
9823#ifndef CONFIG_ENABLE_LINUX_REG
9824 hdd_checkandupdate_phymode(pAdapter, country_code);
9825#endif
Arif Hussaineaf68602013-12-30 23:10:44 -08009826 ret = sme_ChangeCountryCode(pHddCtx->hHal,
9827 (void *)(tSmeChangeCountryCallback)
9828 wlan_hdd_change_country_code_callback,
Arif Hussain66559122013-11-21 10:11:40 -08009829 country_code,
9830 pAdapter, pHddCtx->pvosContext,
Abhishek Singha306a442013-11-07 18:39:01 +05309831 eSIR_TRUE, eSIR_TRUE);
Arif Hussain66559122013-11-21 10:11:40 -08009832 if (eHAL_STATUS_SUCCESS == ret)
9833 {
Arif Hussaincb607082013-12-20 11:57:42 -08009834 ret = wait_for_completion_interruptible_timeout(
9835 &pAdapter->change_country_code,
9836 msecs_to_jiffies(WLAN_WAIT_TIME_COUNTRY));
9837
9838 if (0 >= ret)
9839 {
9840 VOS_TRACE(VOS_MODULE_ID_VOSS, VOS_TRACE_LEVEL_ERROR,
9841 "%s: SME while setting country code timed out", __func__);
9842 }
Arif Hussain66559122013-11-21 10:11:40 -08009843 }
9844 else
9845 {
Arif Hussaincb607082013-12-20 11:57:42 -08009846 VOS_TRACE(VOS_MODULE_ID_VOSS, VOS_TRACE_LEVEL_ERROR,
9847 "%s: SME Change Country code from module param fail ret=%d",
9848 __func__, ret);
Arif Hussain66559122013-11-21 10:11:40 -08009849 }
9850 }
9851
Jeff Johnson295189b2012-06-20 16:38:30 -07009852#ifdef WLAN_BTAMP_FEATURE
9853 vStatus = WLANBAP_Open(pVosContext);
9854 if(!VOS_IS_STATUS_SUCCESS(vStatus))
9855 {
9856 VOS_TRACE( VOS_MODULE_ID_VOSS, VOS_TRACE_LEVEL_ERROR,
9857 "%s: Failed to open BAP",__func__);
Jeff Johnsone7245742012-09-05 17:12:55 -07009858 goto err_close_adapter;
Jeff Johnson295189b2012-06-20 16:38:30 -07009859 }
9860
9861 vStatus = BSL_Init(pVosContext);
9862 if(!VOS_IS_STATUS_SUCCESS(vStatus))
9863 {
9864 VOS_TRACE( VOS_MODULE_ID_VOSS, VOS_TRACE_LEVEL_ERROR,
9865 "%s: Failed to Init BSL",__func__);
9866 goto err_bap_close;
9867 }
9868 vStatus = WLANBAP_Start(pVosContext);
9869 if (!VOS_IS_STATUS_SUCCESS(vStatus))
9870 {
9871 VOS_TRACE( VOS_MODULE_ID_VOSS, VOS_TRACE_LEVEL_ERROR,
9872 "%s: Failed to start TL",__func__);
9873 goto err_bap_close;
9874 }
9875
9876 pConfig = pHddCtx->cfg_ini;
9877 btAmpConfig.ucPreferredChannel = pConfig->preferredChannel;
9878 status = WLANBAP_SetConfig(&btAmpConfig);
9879
9880#endif //WLAN_BTAMP_FEATURE
Jeff Johnsone7245742012-09-05 17:12:55 -07009881
Mihir Shete9c238772014-10-15 14:35:16 +05309882 /*
9883 * UapsdMask is 0xf if U-APSD is enbaled for all AC's...
9884 * The value of CFG_QOS_WMM_UAPSD_MASK_DEFAULT is 0xaa(Magic Value)
9885 * which is greater than 0xf. So the below check is safe to make
9886 * sure that there is no entry for UapsdMask in the ini
9887 */
9888 if (CFG_QOS_WMM_UAPSD_MASK_DEFAULT == pHddCtx->cfg_ini->UapsdMask)
9889 {
9890 if(IS_DYNAMIC_WMM_PS_ENABLED)
9891 {
9892 hddLog(VOS_TRACE_LEVEL_DEBUG,"%s: Enable UAPSD for VI & VO",
9893 __func__);
9894 pHddCtx->cfg_ini->UapsdMask =
9895 CFG_QOS_WMM_UAPSD_MASK_DYMANIC_WMM_PS_DEFAULT;
9896 }
9897 else
9898 {
9899 hddLog(VOS_TRACE_LEVEL_DEBUG,"%s: Do not enable UAPSD",
9900 __func__);
9901 pHddCtx->cfg_ini->UapsdMask =
9902 CFG_QOS_WMM_UAPSD_MASK_LEGACY_WMM_PS_DEFAULT;
9903 }
9904 }
9905
Varun Reddy Yeturud0a3f252013-04-15 21:58:13 -07009906#ifdef WLAN_FEATURE_ROAM_SCAN_OFFLOAD
9907 if(!(IS_ROAM_SCAN_OFFLOAD_FEATURE_ENABLE))
9908 {
9909 hddLog(VOS_TRACE_LEVEL_DEBUG,"%s: ROAM_SCAN_OFFLOAD Feature not supported",__func__);
9910 pHddCtx->cfg_ini->isRoamOffloadScanEnabled = 0;
9911 sme_UpdateRoamScanOffloadEnabled((tHalHandle)(pHddCtx->hHal),
9912 pHddCtx->cfg_ini->isRoamOffloadScanEnabled);
9913 }
9914#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07009915
Agarwal Ashish4b87f922014-06-18 03:03:21 +05309916 wlan_hdd_tdls_init(pHddCtx);
9917
Mihir Shetefc7ff5b2014-01-27 11:30:05 +05309918 sme_Register11dScanDoneCallback(pHddCtx->hHal, hdd_11d_scan_done);
9919
Jeff Johnson295189b2012-06-20 16:38:30 -07009920 /* Register with platform driver as client for Suspend/Resume */
9921 status = hddRegisterPmOps(pHddCtx);
9922 if ( !VOS_IS_STATUS_SUCCESS( status ) )
9923 {
9924 hddLog(VOS_TRACE_LEVEL_FATAL,"%s: hddRegisterPmOps failed",__func__);
9925#ifdef WLAN_BTAMP_FEATURE
9926 goto err_bap_stop;
9927#else
Jeff Johnsone7245742012-09-05 17:12:55 -07009928 goto err_close_adapter;
Jeff Johnson295189b2012-06-20 16:38:30 -07009929#endif //WLAN_BTAMP_FEATURE
9930 }
9931
Yue Ma0d4891e2013-08-06 17:01:45 -07009932 /* Open debugfs interface */
9933 if (VOS_STATUS_SUCCESS != hdd_debugfs_init(pAdapter))
9934 {
9935 VOS_TRACE( VOS_MODULE_ID_VOSS, VOS_TRACE_LEVEL_ERROR,
9936 "%s: hdd_debugfs_init failed!", __func__);
Yue Ma0d4891e2013-08-06 17:01:45 -07009937 }
9938
Jeff Johnson295189b2012-06-20 16:38:30 -07009939 /* Register TM level change handler function to the platform */
9940 status = hddDevTmRegisterNotifyCallback(pHddCtx);
9941 if ( !VOS_IS_STATUS_SUCCESS( status ) )
9942 {
9943 hddLog(VOS_TRACE_LEVEL_FATAL,"%s: hddDevTmRegisterNotifyCallback failed",__func__);
9944 goto err_unregister_pmops;
9945 }
Jeff Johnson295189b2012-06-20 16:38:30 -07009946
9947 /* register for riva power on lock to platform driver */
9948 if (req_riva_power_on_lock("wlan"))
9949 {
9950 hddLog(VOS_TRACE_LEVEL_FATAL,"%s: req riva power on lock failed",
9951 __func__);
9952 goto err_unregister_pmops;
9953 }
9954
Jeff Johnson295189b2012-06-20 16:38:30 -07009955 // register net device notifier for device change notification
9956 ret = register_netdevice_notifier(&hdd_netdev_notifier);
9957
9958 if(ret < 0)
9959 {
9960 hddLog(VOS_TRACE_LEVEL_ERROR,"%s: register_netdevice_notifier failed",__func__);
9961 goto err_free_power_on_lock;
9962 }
9963
9964 //Initialize the nlink service
9965 if(nl_srv_init() != 0)
9966 {
Gopichand Nakkala66c0bd02013-04-10 11:36:29 +05309967 hddLog(VOS_TRACE_LEVEL_FATAL,"%s: nl_srv_init failed", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07009968 goto err_reg_netdev;
9969 }
9970
Leo Chang4ce1cc52013-10-21 18:27:15 -07009971#ifdef WLAN_KD_READY_NOTIFIER
9972 pHddCtx->kd_nl_init = 1;
9973#endif /* WLAN_KD_READY_NOTIFIER */
9974
Jeff Johnson295189b2012-06-20 16:38:30 -07009975 //Initialize the BTC service
9976 if(btc_activate_service(pHddCtx) != 0)
9977 {
9978 hddLog(VOS_TRACE_LEVEL_FATAL,"%s: btc_activate_service failed",__func__);
9979 goto err_nl_srv;
9980 }
9981
9982#ifdef PTT_SOCK_SVC_ENABLE
9983 //Initialize the PTT service
9984 if(ptt_sock_activate_svc(pHddCtx) != 0)
9985 {
9986 hddLog(VOS_TRACE_LEVEL_FATAL,"%s: ptt_sock_activate_svc failed",__func__);
9987 goto err_nl_srv;
9988 }
9989#endif
9990
Vinay Krishna Erannad938c422014-03-10 17:14:21 +05309991#ifdef WLAN_LOGGING_SOCK_SVC_ENABLE
9992 if(pHddCtx->cfg_ini && pHddCtx->cfg_ini->wlanLoggingEnable)
9993 {
Deepthi Gowri78083a32014-11-04 12:55:51 +05309994 if(wlan_logging_sock_activate_svc(
9995 pHddCtx->cfg_ini->wlanLoggingFEToConsole,
9996 pHddCtx->cfg_ini->wlanLoggingNumBuf))
9997 {
9998 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: wlan_logging_sock_activate_svc"
9999 " failed", __func__);
10000 goto err_nl_srv;
10001 }
10002 //TODO: To Remove enableDhcpDebug and use gEnableDebugLog for
10003 //EAPOL and DHCP
Sachin Ahuja8c65f382014-12-12 15:34:21 +053010004 if (!pHddCtx->cfg_ini->gEnableDebugLog)
10005 pHddCtx->cfg_ini->gEnableDebugLog =
10006 VOS_PKT_PROTO_TYPE_EAPOL | VOS_PKT_PROTO_TYPE_DHCP;
Vinay Krishna Erannad938c422014-03-10 17:14:21 +053010007 }
Siddharth Bhalb7c421c2015-02-27 00:26:09 +053010008
Siddharth Bhald1be97f2015-05-27 22:39:59 +053010009 if (pHddCtx->cfg_ini->wlanLoggingEnable &&
10010 (pHddCtx->cfg_ini->enableFWLogging ||
10011 pHddCtx->cfg_ini->enableContFWLogging))
Siddharth Bhalb7c421c2015-02-27 00:26:09 +053010012 {
Siddharth Bhald1be97f2015-05-27 22:39:59 +053010013 hdd_init_frame_logging(pHddCtx);
Siddharth Bhalb7c421c2015-02-27 00:26:09 +053010014 }
10015 else
10016 {
Siddharth Bhald1be97f2015-05-27 22:39:59 +053010017 hddLog(VOS_TRACE_LEVEL_INFO, FL("Logging disabled in ini"));
Siddharth Bhalb7c421c2015-02-27 00:26:09 +053010018 }
10019
Vinay Krishna Erannad938c422014-03-10 17:14:21 +053010020#endif
Siddharth Bhalb7c421c2015-02-27 00:26:09 +053010021
10022
Sushant Kaushik215778f2015-05-21 14:05:36 +053010023 if (vos_is_multicast_logging())
10024 wlan_logging_set_log_level();
10025
Jeff Johnson295189b2012-06-20 16:38:30 -070010026 hdd_register_mcast_bcast_filter(pHddCtx);
Jeff Johnson295189b2012-06-20 16:38:30 -070010027 if (VOS_STA_SAP_MODE != hdd_get_conparam())
Jeff Johnson295189b2012-06-20 16:38:30 -070010028 {
Madan Mohan Koyyalamudic537df22012-10-22 15:07:08 -070010029 /* Action frame registered in one adapter which will
10030 * applicable to all interfaces
10031 */
Agarwal Ashish8fa0e9a2014-05-23 00:40:12 +053010032 wlan_hdd_cfg80211_register_frames(pAdapter);
Jeff Johnson295189b2012-06-20 16:38:30 -070010033 }
Jeff Johnson295189b2012-06-20 16:38:30 -070010034
10035 mutex_init(&pHddCtx->sap_lock);
Mahesh A Saptasagar60627942014-10-13 13:55:14 +053010036 mutex_init(&pHddCtx->roc_lock);
Jeff Johnson295189b2012-06-20 16:38:30 -070010037
Jeff Johnson295189b2012-06-20 16:38:30 -070010038
Sameer Thalappil50dc0092013-02-19 17:23:33 -080010039#ifdef WLAN_OPEN_SOURCE
Jeff Johnsone7245742012-09-05 17:12:55 -070010040#ifdef WLAN_FEATURE_HOLD_RX_WAKELOCK
10041 /* Initialize the wake lcok */
10042 wake_lock_init(&pHddCtx->rx_wake_lock,
10043 WAKE_LOCK_SUSPEND,
10044 "qcom_rx_wakelock");
10045#endif
Madan Mohan Koyyalamudi69fc3ad2012-11-28 16:04:56 -080010046 /* Initialize the wake lcok */
10047 wake_lock_init(&pHddCtx->sap_wake_lock,
10048 WAKE_LOCK_SUSPEND,
10049 "qcom_sap_wakelock");
Sameer Thalappil50dc0092013-02-19 17:23:33 -080010050#endif
Jeff Johnsone7245742012-09-05 17:12:55 -070010051
Madan Mohan Koyyalamudi2a1ba772012-10-11 14:59:06 -070010052 vos_event_init(&pHddCtx->scan_info.scan_finished_event);
10053 pHddCtx->scan_info.scan_pending_option = WEXT_SCAN_PENDING_GIVEUP;
Jeff Johnson295189b2012-06-20 16:38:30 -070010054
Katya Nigam5c306ea2014-06-19 15:39:54 +053010055 pHddCtx->isLoadUnloadInProgress = WLAN_HDD_NO_LOAD_UNLOAD_IN_PROGRESS;
Jeff Johnson295189b2012-06-20 16:38:30 -070010056 vos_set_load_unload_in_progress(VOS_MODULE_ID_VOSS, FALSE);
10057 hdd_allow_suspend();
Katya Nigam5c306ea2014-06-19 15:39:54 +053010058
10059#ifdef FEATURE_WLAN_SCAN_PNO
10060 /*SME must send channel update configuration to RIVA*/
10061 sme_UpdateChannelConfig(pHddCtx->hHal);
10062#endif
Abhishek Singhf644b272014-08-21 02:59:39 +053010063 /* Send the update default channel list to the FW*/
10064 sme_UpdateChannelList(pHddCtx->hHal);
Mukul Sharma45063942015-04-01 20:07:59 +053010065
10066 /* Fwr capabilities received, Set the Dot11 mode */
10067 sme_SetDefDot11Mode(pHddCtx->hHal);
10068
Abhishek Singha306a442013-11-07 18:39:01 +053010069#ifndef CONFIG_ENABLE_LINUX_REG
10070 /*updating wiphy so that regulatory user hints can be processed*/
10071 if (wiphy)
10072 {
10073 regulatory_hint(wiphy, "00");
10074 }
10075#endif
Jeff Johnsone7245742012-09-05 17:12:55 -070010076 // Initialize the restart logic
10077 wlan_hdd_restart_init(pHddCtx);
Chilam NG571c65a2013-01-19 12:27:36 +053010078
Sudhir Sattayappa Kohalli37620692013-08-05 14:02:26 -070010079 //Register the traffic monitor timer now
10080 if ( pHddCtx->cfg_ini->dynSplitscan)
10081 {
10082 vos_timer_init(&pHddCtx->tx_rx_trafficTmr,
10083 VOS_TIMER_TYPE_SW,
10084 hdd_tx_rx_pkt_cnt_stat_timer_handler,
10085 (void *)pHddCtx);
10086 }
Srinivas Dasari030bad32015-02-18 23:23:54 +053010087 wlan_hdd_cfg80211_nan_init(pHddCtx);
10088
Dino Mycle6fb96c12014-06-10 11:52:40 +053010089#ifdef WLAN_FEATURE_EXTSCAN
10090 sme_EXTScanRegisterCallback(pHddCtx->hHal,
10091 wlan_hdd_cfg80211_extscan_callback,
10092 pHddCtx);
10093#endif /* WLAN_FEATURE_EXTSCAN */
Vinay Krishna Erannaf97ef5c2014-12-26 17:47:19 +053010094
10095#ifdef WLAN_NS_OFFLOAD
10096 // Register IPv6 notifier to notify if any change in IP
10097 // So that we can reconfigure the offload parameters
10098 pHddCtx->ipv6_notifier.notifier_call = wlan_hdd_ipv6_changed;
10099 ret = register_inet6addr_notifier(&pHddCtx->ipv6_notifier);
10100 if (ret)
10101 {
10102 hddLog(LOGE, FL("Failed to register IPv6 notifier"));
10103 }
10104 else
10105 {
10106 hddLog(LOGE, FL("Registered IPv6 notifier"));
10107 }
10108#endif
10109
10110 // Register IPv4 notifier to notify if any change in IP
10111 // So that we can reconfigure the offload parameters
10112 pHddCtx->ipv4_notifier.notifier_call = wlan_hdd_ipv4_changed;
10113 ret = register_inetaddr_notifier(&pHddCtx->ipv4_notifier);
10114 if (ret)
10115 {
10116 hddLog(LOGE, FL("Failed to register IPv4 notifier"));
10117 }
10118 else
10119 {
10120 hddLog(LOGE, FL("Registered IPv4 notifier"));
10121 }
10122
Jeff Johnson295189b2012-06-20 16:38:30 -070010123 goto success;
10124
10125err_nl_srv:
Leo Chang59cdc7e2013-07-10 10:08:21 -070010126#ifdef WLAN_KD_READY_NOTIFIER
10127 nl_srv_exit(pHddCtx->ptt_pid);
10128#else
Jeff Johnson295189b2012-06-20 16:38:30 -070010129 nl_srv_exit();
Leo Chang59cdc7e2013-07-10 10:08:21 -070010130#endif /* WLAN_KD_READY_NOTIFIER */
Jeff Johnson295189b2012-06-20 16:38:30 -070010131err_reg_netdev:
10132 unregister_netdevice_notifier(&hdd_netdev_notifier);
10133
10134err_free_power_on_lock:
10135 free_riva_power_on_lock("wlan");
10136
10137err_unregister_pmops:
10138 hddDevTmUnregisterNotifyCallback(pHddCtx);
10139 hddDeregisterPmOps(pHddCtx);
10140
Yue Ma0d4891e2013-08-06 17:01:45 -070010141 hdd_debugfs_exit(pHddCtx);
10142
Jeff Johnson295189b2012-06-20 16:38:30 -070010143#ifdef WLAN_BTAMP_FEATURE
10144err_bap_stop:
10145 WLANBAP_Stop(pVosContext);
10146#endif
10147
10148#ifdef WLAN_BTAMP_FEATURE
10149err_bap_close:
10150 WLANBAP_Close(pVosContext);
10151#endif
10152
Jeff Johnson295189b2012-06-20 16:38:30 -070010153err_close_adapter:
10154 hdd_close_all_adapters( pHddCtx );
Mahesh A Saptasagar9ecefe42014-07-15 18:43:49 +053010155#ifdef CONFIG_ENABLE_LINUX_REG
Mahesh A Saptasagar74289d22014-05-14 12:43:37 +053010156err_unregister_wiphy:
Mahesh A Saptasagar9ecefe42014-07-15 18:43:49 +053010157#endif
Madan Mohan Koyyalamudi71278262013-04-12 22:00:48 +053010158 wiphy_unregister(wiphy) ;
Jeff Johnson295189b2012-06-20 16:38:30 -070010159err_vosstop:
10160 vos_stop(pVosContext);
10161
Amar Singhala49cbc52013-10-08 18:37:44 -070010162err_vosclose:
Jeff Johnson295189b2012-06-20 16:38:30 -070010163 status = vos_sched_close( pVosContext );
10164 if (!VOS_IS_STATUS_SUCCESS(status)) {
10165 VOS_TRACE( VOS_MODULE_ID_VOSS, VOS_TRACE_LEVEL_FATAL,
10166 "%s: Failed to close VOSS Scheduler", __func__);
10167 VOS_ASSERT( VOS_IS_STATUS_SUCCESS( status ) );
10168 }
Amar Singhala49cbc52013-10-08 18:37:44 -070010169 vos_close(pVosContext );
10170
Amar Singhal0a402232013-10-11 20:57:16 -070010171err_vos_nv_close:
10172
c_hpothue6a36282014-03-19 12:27:38 +053010173#ifdef CONFIG_ENABLE_LINUX_REG
Amar Singhal0a402232013-10-11 20:57:16 -070010174 vos_nv_close();
10175
c_hpothu70f8d812014-03-22 22:59:23 +053010176#endif
Jeff Johnson295189b2012-06-20 16:38:30 -070010177
10178err_wdclose:
10179 if(pHddCtx->cfg_ini->fIsLogpEnabled)
10180 vos_watchdog_close(pVosContext);
10181
Jeff Johnson295189b2012-06-20 16:38:30 -070010182err_config:
10183 kfree(pHddCtx->cfg_ini);
10184 pHddCtx->cfg_ini= NULL;
10185
10186err_free_hdd_context:
10187 hdd_allow_suspend();
Jeff Johnson295189b2012-06-20 16:38:30 -070010188 wiphy_free(wiphy) ;
10189 //kfree(wdev) ;
Jeff Johnson295189b2012-06-20 16:38:30 -070010190 VOS_BUG(1);
10191
Madan Mohan Koyyalamudid57ae632012-11-06 18:42:48 -080010192 if (hdd_is_ssr_required())
10193 {
10194 /* WDI timeout had happened during load, so SSR is needed here */
10195 subsystem_restart("wcnss");
10196 msleep(5000);
10197 }
10198 hdd_set_ssr_required (VOS_FALSE);
10199
Madan Mohan Koyyalamudicae253a2012-11-06 19:10:35 -080010200 return -EIO;
Jeff Johnson295189b2012-06-20 16:38:30 -070010201
10202success:
10203 EXIT();
10204 return 0;
10205}
10206
10207/**---------------------------------------------------------------------------
10208
Jeff Johnson32d95a32012-09-10 13:15:23 -070010209 \brief hdd_driver_init() - Core Driver Init Function
Jeff Johnson295189b2012-06-20 16:38:30 -070010210
Jeff Johnson32d95a32012-09-10 13:15:23 -070010211 This is the driver entry point - called in different timeline depending
10212 on whether the driver is statically or dynamically linked
Jeff Johnson295189b2012-06-20 16:38:30 -070010213
10214 \param - None
10215
10216 \return - 0 for success, non zero for failure
10217
10218 --------------------------------------------------------------------------*/
Jeff Johnson32d95a32012-09-10 13:15:23 -070010219static int hdd_driver_init( void)
Jeff Johnson295189b2012-06-20 16:38:30 -070010220{
10221 VOS_STATUS status;
10222 v_CONTEXT_t pVosContext = NULL;
Jeff Johnson295189b2012-06-20 16:38:30 -070010223 struct device *dev = NULL;
10224 int ret_status = 0;
Sameer Thalappilf58d7ec2013-04-25 20:17:12 -070010225#ifdef HAVE_WCNSS_CAL_DOWNLOAD
10226 int max_retries = 0;
10227#endif
Siddharth Bhalc7e79b62014-10-10 22:37:38 +053010228#ifdef HAVE_CBC_DONE
10229 int max_cbc_retries = 0;
10230#endif
Jeff Johnson295189b2012-06-20 16:38:30 -070010231
Vinay Krishna Eranna273ec5a2014-05-10 18:05:25 +053010232#ifdef WLAN_LOGGING_SOCK_SVC_ENABLE
10233 wlan_logging_sock_init_svc();
10234#endif
10235
Jeff Johnson295189b2012-06-20 16:38:30 -070010236 ENTER();
10237
Sameer Thalappil50dc0092013-02-19 17:23:33 -080010238#ifdef WLAN_OPEN_SOURCE
Jeff Johnson295189b2012-06-20 16:38:30 -070010239 wake_lock_init(&wlan_wake_lock, WAKE_LOCK_SUSPEND, "wlan");
Jeff Johnsone7245742012-09-05 17:12:55 -070010240#endif
Jeff Johnson295189b2012-06-20 16:38:30 -070010241
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053010242 hddTraceInit();
Jeff Johnson295189b2012-06-20 16:38:30 -070010243 pr_info("%s: loading driver v%s\n", WLAN_MODULE_NAME,
10244 QWLAN_VERSIONSTR TIMER_MANAGER_STR MEMORY_DEBUG_STR);
10245
Jeff Johnson295189b2012-06-20 16:38:30 -070010246#ifdef ANI_BUS_TYPE_PCI
10247
10248 dev = wcnss_wlan_get_device();
10249
10250#endif // ANI_BUS_TYPE_PCI
10251
10252#ifdef ANI_BUS_TYPE_PLATFORM
Sameer Thalappilf58d7ec2013-04-25 20:17:12 -070010253
10254#ifdef HAVE_WCNSS_CAL_DOWNLOAD
10255 /* wait until WCNSS driver downloads NV */
10256 while (!wcnss_device_ready() && 5 >= ++max_retries) {
10257 msleep(1000);
10258 }
Siddharth Bhalc7e79b62014-10-10 22:37:38 +053010259
Sameer Thalappilf58d7ec2013-04-25 20:17:12 -070010260 if (max_retries >= 5) {
10261 hddLog(VOS_TRACE_LEVEL_FATAL,"%s: WCNSS driver not ready", __func__);
madan mohan koyyalamudi8c96ce12013-07-10 19:14:39 +053010262#ifdef WLAN_OPEN_SOURCE
10263 wake_lock_destroy(&wlan_wake_lock);
10264#endif
Vinay Krishna Eranna273ec5a2014-05-10 18:05:25 +053010265
10266#ifdef WLAN_LOGGING_SOCK_SVC_ENABLE
10267 wlan_logging_sock_deinit_svc();
10268#endif
10269
Sameer Thalappilf58d7ec2013-04-25 20:17:12 -070010270 return -ENODEV;
10271 }
10272#endif
10273
Siddharth Bhalc7e79b62014-10-10 22:37:38 +053010274#ifdef HAVE_CBC_DONE
10275 while (!wcnss_cbc_complete() && 10 >= ++max_cbc_retries) {
10276 msleep(1000);
10277 }
10278 if (max_cbc_retries >= 10) {
10279 hddLog(VOS_TRACE_LEVEL_FATAL, "%s:CBC not completed", __func__);
10280 }
10281#endif
10282
Jeff Johnson295189b2012-06-20 16:38:30 -070010283 dev = wcnss_wlan_get_device();
10284#endif // ANI_BUS_TYPE_PLATFORM
10285
10286
10287 do {
10288 if (NULL == dev) {
10289 hddLog(VOS_TRACE_LEVEL_FATAL, "%s: WLAN device not found!!",__func__);
10290 ret_status = -1;
10291 break;
10292 }
10293
Jeff Johnson295189b2012-06-20 16:38:30 -070010294#ifdef TIMER_MANAGER
10295 vos_timer_manager_init();
10296#endif
10297
10298 /* Preopen VOSS so that it is ready to start at least SAL */
10299 status = vos_preOpen(&pVosContext);
10300
10301 if (!VOS_IS_STATUS_SUCCESS(status))
10302 {
10303 hddLog(VOS_TRACE_LEVEL_FATAL,"%s: Failed to preOpen VOSS", __func__);
10304 ret_status = -1;
10305 break;
10306 }
10307
Madan Mohan Koyyalamudi2331c8a2012-09-18 18:14:48 -070010308#ifndef MODULE
10309 /* For statically linked driver, call hdd_set_conparam to update curr_con_mode
10310 */
10311 hdd_set_conparam((v_UINT_t)con_mode);
10312#endif
Jeff Johnson295189b2012-06-20 16:38:30 -070010313
10314 // Call our main init function
Jeff Johnsonbc676b42013-02-14 16:04:08 -080010315 if (hdd_wlan_startup(dev))
10316 {
Jeff Johnson295189b2012-06-20 16:38:30 -070010317 hddLog(VOS_TRACE_LEVEL_FATAL,"%s: WLAN Driver Initialization failed",
Jeff Johnsonbc676b42013-02-14 16:04:08 -080010318 __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -070010319 vos_preClose( &pVosContext );
10320 ret_status = -1;
10321 break;
10322 }
10323
Jeff Johnson295189b2012-06-20 16:38:30 -070010324 } while (0);
10325
10326 if (0 != ret_status)
10327 {
Jeff Johnson295189b2012-06-20 16:38:30 -070010328#ifdef TIMER_MANAGER
10329 vos_timer_exit();
10330#endif
10331#ifdef MEMORY_DEBUG
10332 vos_mem_exit();
10333#endif
10334
Sameer Thalappil50dc0092013-02-19 17:23:33 -080010335#ifdef WLAN_OPEN_SOURCE
Jeff Johnson295189b2012-06-20 16:38:30 -070010336 wake_lock_destroy(&wlan_wake_lock);
Jeff Johnsone7245742012-09-05 17:12:55 -070010337#endif
Vinay Krishna Eranna273ec5a2014-05-10 18:05:25 +053010338
10339#ifdef WLAN_LOGGING_SOCK_SVC_ENABLE
10340 wlan_logging_sock_deinit_svc();
10341#endif
10342
Jeff Johnson295189b2012-06-20 16:38:30 -070010343 pr_err("%s: driver load failure\n", WLAN_MODULE_NAME);
10344 }
10345 else
10346 {
10347 //Send WLAN UP indication to Nlink Service
10348 send_btc_nlink_msg(WLAN_MODULE_UP_IND, 0);
10349
10350 pr_info("%s: driver loaded\n", WLAN_MODULE_NAME);
Jeff Johnson295189b2012-06-20 16:38:30 -070010351 }
10352
10353 EXIT();
10354
10355 return ret_status;
10356}
10357
Jeff Johnson32d95a32012-09-10 13:15:23 -070010358/**---------------------------------------------------------------------------
10359
10360 \brief hdd_module_init() - Init Function
10361
10362 This is the driver entry point (invoked when module is loaded using insmod)
10363
10364 \param - None
10365
10366 \return - 0 for success, non zero for failure
10367
10368 --------------------------------------------------------------------------*/
10369#ifdef MODULE
10370static int __init hdd_module_init ( void)
10371{
10372 return hdd_driver_init();
10373}
Jeff Johnson32d95a32012-09-10 13:15:23 -070010374#else /* #ifdef MODULE */
10375static int __init hdd_module_init ( void)
10376{
10377 /* Driver initialization is delayed to fwpath_changed_handler */
10378 return 0;
10379}
Jeff Johnson32d95a32012-09-10 13:15:23 -070010380#endif /* #ifdef MODULE */
10381
Jeff Johnson295189b2012-06-20 16:38:30 -070010382
10383/**---------------------------------------------------------------------------
10384
Madan Mohan Koyyalamudi2331c8a2012-09-18 18:14:48 -070010385 \brief hdd_driver_exit() - Exit function
Jeff Johnson295189b2012-06-20 16:38:30 -070010386
Madan Mohan Koyyalamudi2331c8a2012-09-18 18:14:48 -070010387 This is the driver exit point (invoked when module is unloaded using rmmod
10388 or con_mode was changed by userspace)
Jeff Johnson295189b2012-06-20 16:38:30 -070010389
10390 \param - None
10391
10392 \return - None
10393
10394 --------------------------------------------------------------------------*/
Madan Mohan Koyyalamudi2331c8a2012-09-18 18:14:48 -070010395static void hdd_driver_exit(void)
Jeff Johnson295189b2012-06-20 16:38:30 -070010396{
10397 hdd_context_t *pHddCtx = NULL;
10398 v_CONTEXT_t pVosContext = NULL;
Agarwal Ashish5e414792014-06-08 15:25:23 +053010399 v_REGDOMAIN_t regId;
Arun Kumar Khandavallie0b046d2014-03-01 21:54:25 +053010400 unsigned long rc = 0;
Jeff Johnson295189b2012-06-20 16:38:30 -070010401
10402 pr_info("%s: unloading driver v%s\n", WLAN_MODULE_NAME, QWLAN_VERSIONSTR);
10403
10404 //Get the global vos context
10405 pVosContext = vos_get_global_context(VOS_MODULE_ID_SYS, NULL);
10406
10407 if(!pVosContext)
10408 {
10409 hddLog(VOS_TRACE_LEVEL_FATAL,"%s: Global VOS context is Null", __func__);
10410 goto done;
10411 }
10412
10413 //Get the HDD context.
10414 pHddCtx = (hdd_context_t *)vos_get_context(VOS_MODULE_ID_HDD, pVosContext );
10415
10416 if(!pHddCtx)
10417 {
10418 hddLog(VOS_TRACE_LEVEL_FATAL,"%s: module exit called before probe",__func__);
10419 }
Katya Nigame7b69a82015-04-28 15:24:06 +053010420 else if (VOS_MONITOR_MODE == hdd_get_conparam())
10421 {
10422 hddLog(VOS_TRACE_LEVEL_INFO,"%s: MONITOR MODE",__func__);
10423 pHddCtx->isLoadUnloadInProgress = WLAN_HDD_UNLOAD_IN_PROGRESS;
10424 vos_set_load_unload_in_progress(VOS_MODULE_ID_VOSS, TRUE);
10425 hdd_wlan_exit(pHddCtx);
10426 vos_preClose( &pVosContext );
10427 goto done;
10428 }
Jeff Johnson295189b2012-06-20 16:38:30 -070010429 else
10430 {
Siddharth Bhal2e5871b2015-03-24 16:20:51 +053010431 /* We wait for active entry threads to exit from driver
10432 * by waiting until rtnl_lock is available.
10433 */
10434 rtnl_lock();
10435 rtnl_unlock();
10436
Siddharth Bhal3c29dca2015-02-19 00:41:40 +053010437 INIT_COMPLETION(pHddCtx->ssr_comp_var);
10438 if ((pHddCtx->isLogpInProgress) && (FALSE ==
10439 vos_is_wlan_in_badState(VOS_MODULE_ID_HDD, NULL)))
10440 {
Siddharth Bhala204f572015-01-17 02:03:36 +053010441 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Siddharth Bhal3c29dca2015-02-19 00:41:40 +053010442 "%s:SSR in Progress; block rmmod !!!", __func__);
Siddharth Bhala204f572015-01-17 02:03:36 +053010443 rc = wait_for_completion_timeout(&pHddCtx->ssr_comp_var,
10444 msecs_to_jiffies(30000));
10445 if(!rc)
10446 {
10447 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
10448 "%s:SSR timedout, fatal error", __func__);
10449 VOS_BUG(0);
10450 }
10451 }
10452
Siddharth Bhal3c29dca2015-02-19 00:41:40 +053010453 pHddCtx->isLoadUnloadInProgress = WLAN_HDD_UNLOAD_IN_PROGRESS;
10454 vos_set_load_unload_in_progress(VOS_MODULE_ID_VOSS, TRUE);
Jeff Johnson295189b2012-06-20 16:38:30 -070010455
c_hpothu8adb97b2014-12-08 19:38:20 +053010456 /* Driver Need to send country code 00 in below condition
10457 * 1) If gCountryCodePriority is set to 1; and last country
10458 * code set is through 11d. This needs to be done in case
10459 * when NV country code is 00.
10460 * This Needs to be done as when kernel store last country
10461 * code and if stored country code is not through 11d,
10462 * in sme_HandleChangeCountryCodeByUser we will disable 11d
10463 * in next load/unload as soon as we get any country through
10464 * 11d. In sme_HandleChangeCountryCodeByUser
10465 * pMsg->countryCode will be last countryCode and
10466 * pMac->scan.countryCode11d will be country through 11d so
10467 * due to mismatch driver will disable 11d.
10468 *
10469 */
Agarwal Ashish8db39882014-07-30 21:56:07 +053010470
c_hpothu8adb97b2014-12-08 19:38:20 +053010471 if ((eANI_BOOLEAN_TRUE == sme_Is11dCountrycode(pHddCtx->hHal) &&
Agarwal Ashish8dcd2862014-07-25 11:58:52 +053010472 pHddCtx->cfg_ini->fSupplicantCountryCodeHasPriority &&
Abhishek Singh2a705962014-10-30 14:47:28 +053010473 sme_Is11dSupported(pHddCtx->hHal)))
c_hpothu8adb97b2014-12-08 19:38:20 +053010474 {
10475 hddLog(VOS_TRACE_LEVEL_INFO,
Agarwal Ashish8dcd2862014-07-25 11:58:52 +053010476 FL("CountryCode 00 is being set while unloading driver"));
c_hpothu8adb97b2014-12-08 19:38:20 +053010477 vos_nv_getRegDomainFromCountryCode(&regId , "00", COUNTRY_USER);
10478 }
Agarwal Ashish5e414792014-06-08 15:25:23 +053010479
c_hpothu8adb97b2014-12-08 19:38:20 +053010480 //Do all the cleanup before deregistering the driver
10481 hdd_wlan_exit(pHddCtx);
Jeff Johnson295189b2012-06-20 16:38:30 -070010482 }
10483
Jeff Johnson295189b2012-06-20 16:38:30 -070010484 vos_preClose( &pVosContext );
10485
10486#ifdef TIMER_MANAGER
10487 vos_timer_exit();
10488#endif
10489#ifdef MEMORY_DEBUG
10490 vos_mem_exit();
10491#endif
10492
Vinay Krishna Eranna273ec5a2014-05-10 18:05:25 +053010493#ifdef WLAN_LOGGING_SOCK_SVC_ENABLE
10494 wlan_logging_sock_deinit_svc();
10495#endif
10496
Jeff Johnson295189b2012-06-20 16:38:30 -070010497done:
Sameer Thalappil50dc0092013-02-19 17:23:33 -080010498#ifdef WLAN_OPEN_SOURCE
Jeff Johnson295189b2012-06-20 16:38:30 -070010499 wake_lock_destroy(&wlan_wake_lock);
Jeff Johnsone7245742012-09-05 17:12:55 -070010500#endif
Vinay Krishna Eranna273ec5a2014-05-10 18:05:25 +053010501
Jeff Johnson295189b2012-06-20 16:38:30 -070010502 pr_info("%s: driver unloaded\n", WLAN_MODULE_NAME);
10503}
10504
Madan Mohan Koyyalamudi2331c8a2012-09-18 18:14:48 -070010505/**---------------------------------------------------------------------------
10506
10507 \brief hdd_module_exit() - Exit function
10508
10509 This is the driver exit point (invoked when module is unloaded using rmmod)
10510
10511 \param - None
10512
10513 \return - None
10514
10515 --------------------------------------------------------------------------*/
10516static void __exit hdd_module_exit(void)
10517{
10518 hdd_driver_exit();
10519}
10520
Madan Mohan Koyyalamudic2ec3bd2012-09-18 19:49:40 -070010521#ifdef MODULE
10522static int fwpath_changed_handler(const char *kmessage,
10523 struct kernel_param *kp)
10524{
Jeff Johnson76052702013-04-16 13:55:05 -070010525 return param_set_copystring(kmessage, kp);
Madan Mohan Koyyalamudic2ec3bd2012-09-18 19:49:40 -070010526}
10527
10528static int con_mode_handler(const char *kmessage,
10529 struct kernel_param *kp)
10530{
Madan Mohan Koyyalamudif2f8d8b2012-10-11 17:06:59 -070010531 return param_set_int(kmessage, kp);
Madan Mohan Koyyalamudic2ec3bd2012-09-18 19:49:40 -070010532}
10533#else /* #ifdef MODULE */
10534/**---------------------------------------------------------------------------
10535
Jeff Johnson76052702013-04-16 13:55:05 -070010536 \brief kickstart_driver
Madan Mohan Koyyalamudic2ec3bd2012-09-18 19:49:40 -070010537
Jeff Johnson76052702013-04-16 13:55:05 -070010538 This is the driver entry point
Madan Mohan Koyyalamudic2ec3bd2012-09-18 19:49:40 -070010539 - delayed driver initialization when driver is statically linked
Jeff Johnson76052702013-04-16 13:55:05 -070010540 - invoked when module parameter fwpath is modified from userspace to signal
10541 initializing the WLAN driver or when con_mode is modified from userspace
10542 to signal a switch in operating mode
Madan Mohan Koyyalamudic2ec3bd2012-09-18 19:49:40 -070010543
10544 \return - 0 for success, non zero for failure
10545
10546 --------------------------------------------------------------------------*/
Jeff Johnson76052702013-04-16 13:55:05 -070010547static int kickstart_driver(void)
Madan Mohan Koyyalamudic2ec3bd2012-09-18 19:49:40 -070010548{
Madan Mohan Koyyalamudi62e60052012-10-05 14:27:22 -070010549 int ret_status;
10550
Madan Mohan Koyyalamudic2ec3bd2012-09-18 19:49:40 -070010551 if (!wlan_hdd_inited) {
Madan Mohan Koyyalamudi62e60052012-10-05 14:27:22 -070010552 ret_status = hdd_driver_init();
10553 wlan_hdd_inited = ret_status ? 0 : 1;
10554 return ret_status;
Madan Mohan Koyyalamudic2ec3bd2012-09-18 19:49:40 -070010555 }
10556
10557 hdd_driver_exit();
Jeff Johnson76052702013-04-16 13:55:05 -070010558
Madan Mohan Koyyalamudic2ec3bd2012-09-18 19:49:40 -070010559 msleep(200);
Jeff Johnson76052702013-04-16 13:55:05 -070010560
Madan Mohan Koyyalamudi62e60052012-10-05 14:27:22 -070010561 ret_status = hdd_driver_init();
10562 wlan_hdd_inited = ret_status ? 0 : 1;
10563 return ret_status;
Madan Mohan Koyyalamudic2ec3bd2012-09-18 19:49:40 -070010564}
10565
Jeff Johnson295189b2012-06-20 16:38:30 -070010566/**---------------------------------------------------------------------------
10567
Jeff Johnson76052702013-04-16 13:55:05 -070010568 \brief fwpath_changed_handler() - Handler Function
10569
10570 Handle changes to the fwpath parameter
10571
10572 \return - 0 for success, non zero for failure
10573
10574 --------------------------------------------------------------------------*/
10575static int fwpath_changed_handler(const char *kmessage,
10576 struct kernel_param *kp)
10577{
10578 int ret;
10579
10580 ret = param_set_copystring(kmessage, kp);
10581 if (0 == ret)
10582 ret = kickstart_driver();
10583 return ret;
10584}
10585
10586/**---------------------------------------------------------------------------
10587
Madan Mohan Koyyalamudi2331c8a2012-09-18 18:14:48 -070010588 \brief con_mode_handler() -
10589
10590 Handler function for module param con_mode when it is changed by userspace
10591 Dynamically linked - do nothing
10592 Statically linked - exit and init driver, as in rmmod and insmod
10593
Jeff Johnson76052702013-04-16 13:55:05 -070010594 \param -
Madan Mohan Koyyalamudi2331c8a2012-09-18 18:14:48 -070010595
Jeff Johnson76052702013-04-16 13:55:05 -070010596 \return -
Madan Mohan Koyyalamudi2331c8a2012-09-18 18:14:48 -070010597
10598 --------------------------------------------------------------------------*/
Jeff Johnson76052702013-04-16 13:55:05 -070010599static int con_mode_handler(const char *kmessage, struct kernel_param *kp)
Madan Mohan Koyyalamudi2331c8a2012-09-18 18:14:48 -070010600{
Jeff Johnson76052702013-04-16 13:55:05 -070010601 int ret;
Madan Mohan Koyyalamudi2331c8a2012-09-18 18:14:48 -070010602
Jeff Johnson76052702013-04-16 13:55:05 -070010603 ret = param_set_int(kmessage, kp);
10604 if (0 == ret)
10605 ret = kickstart_driver();
10606 return ret;
Madan Mohan Koyyalamudi2331c8a2012-09-18 18:14:48 -070010607}
10608#endif /* #ifdef MODULE */
10609
10610/**---------------------------------------------------------------------------
10611
Jeff Johnson295189b2012-06-20 16:38:30 -070010612 \brief hdd_get_conparam() -
10613
10614 This is the driver exit point (invoked when module is unloaded using rmmod)
10615
10616 \param - None
10617
10618 \return - tVOS_CON_MODE
10619
10620 --------------------------------------------------------------------------*/
10621tVOS_CON_MODE hdd_get_conparam ( void )
10622{
Madan Mohan Koyyalamudi2331c8a2012-09-18 18:14:48 -070010623#ifdef MODULE
Jeff Johnson295189b2012-06-20 16:38:30 -070010624 return (tVOS_CON_MODE)con_mode;
Madan Mohan Koyyalamudi2331c8a2012-09-18 18:14:48 -070010625#else
10626 return (tVOS_CON_MODE)curr_con_mode;
10627#endif
Jeff Johnson295189b2012-06-20 16:38:30 -070010628}
10629void hdd_set_conparam ( v_UINT_t newParam )
10630{
10631 con_mode = newParam;
Madan Mohan Koyyalamudi2331c8a2012-09-18 18:14:48 -070010632#ifndef MODULE
10633 curr_con_mode = con_mode;
10634#endif
Jeff Johnson295189b2012-06-20 16:38:30 -070010635}
10636/**---------------------------------------------------------------------------
10637
10638 \brief hdd_softap_sta_deauth() - function
10639
10640 This to take counter measure to handle deauth req from HDD
10641
10642 \param - pAdapter - Pointer to the HDD
10643
10644 \param - enable - boolean value
10645
10646 \return - None
10647
10648 --------------------------------------------------------------------------*/
10649
Hanumantha Reddy Pothulabfd06f72014-10-31 14:03:37 +053010650VOS_STATUS hdd_softap_sta_deauth(hdd_adapter_t *pAdapter,
10651 struct tagCsrDelStaParams *pDelStaParams)
Jeff Johnson295189b2012-06-20 16:38:30 -070010652{
Jeff Johnson295189b2012-06-20 16:38:30 -070010653 v_CONTEXT_t pVosContext = (WLAN_HDD_GET_CTX(pAdapter))->pvosContext;
Madan Mohan Koyyalamudicd784992013-01-11 15:30:36 -080010654 VOS_STATUS vosStatus = VOS_STATUS_E_FAULT;
Jeff Johnson295189b2012-06-20 16:38:30 -070010655
10656 ENTER();
10657
Rajesh Chauhan18488fc2013-08-22 10:15:03 -070010658 hddLog(LOG1, "hdd_softap_sta_deauth:(%p, false)",
10659 (WLAN_HDD_GET_CTX(pAdapter))->pvosContext);
Jeff Johnson295189b2012-06-20 16:38:30 -070010660
10661 //Ignore request to deauth bcmc station
Hanumantha Reddy Pothulabfd06f72014-10-31 14:03:37 +053010662 if (pDelStaParams->peerMacAddr[0] & 0x1)
Madan Mohan Koyyalamudicd784992013-01-11 15:30:36 -080010663 return vosStatus;
Jeff Johnson295189b2012-06-20 16:38:30 -070010664
Hanumantha Reddy Pothulabfd06f72014-10-31 14:03:37 +053010665 vosStatus = WLANSAP_DeauthSta(pVosContext, pDelStaParams);
Jeff Johnson295189b2012-06-20 16:38:30 -070010666
10667 EXIT();
Madan Mohan Koyyalamudicd784992013-01-11 15:30:36 -080010668 return vosStatus;
Jeff Johnson295189b2012-06-20 16:38:30 -070010669}
10670
10671/**---------------------------------------------------------------------------
10672
Rashmi Ramanna1f0948d2014-08-28 15:33:48 +053010673 \brief hdd_del_all_sta() - function
10674
10675 This function removes all the stations associated on stopping AP/P2P GO.
10676
10677 \param - pAdapter - Pointer to the HDD
10678
10679 \return - None
10680
10681 --------------------------------------------------------------------------*/
10682
10683int hdd_del_all_sta(hdd_adapter_t *pAdapter)
10684{
10685 v_U16_t i;
10686 VOS_STATUS vos_status;
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +053010687 v_CONTEXT_t pVosContext = ( WLAN_HDD_GET_CTX(pAdapter))->pvosContext;
10688 ptSapContext pSapCtx = NULL;
10689 pSapCtx = VOS_GET_SAP_CB(pVosContext);
10690 if(pSapCtx == NULL){
10691 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
10692 FL("psapCtx is NULL"));
10693 return 1;
10694 }
Rashmi Ramanna1f0948d2014-08-28 15:33:48 +053010695 ENTER();
10696
10697 hddLog(VOS_TRACE_LEVEL_INFO,
10698 "%s: Delete all STAs associated.",__func__);
10699 if ((pAdapter->device_mode == WLAN_HDD_SOFTAP)
10700 || (pAdapter->device_mode == WLAN_HDD_P2P_GO)
10701 )
10702 {
10703 for(i = 0; i < WLAN_MAX_STA_COUNT; i++)
10704 {
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +053010705 if ((pSapCtx->aStaInfo[i].isUsed) &&
10706 (!pSapCtx->aStaInfo[i].isDeauthInProgress))
Rashmi Ramanna1f0948d2014-08-28 15:33:48 +053010707 {
Hanumantha Reddy Pothulabfd06f72014-10-31 14:03:37 +053010708 struct tagCsrDelStaParams delStaParams;
10709
10710 WLANSAP_PopulateDelStaParams(
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +053010711 pSapCtx->aStaInfo[i].macAddrSTA.bytes,
Sushant Kaushik4cd28f62014-12-26 14:23:50 +053010712 eSIR_MAC_DEAUTH_LEAVING_BSS_REASON,
10713 SIR_MAC_MGMT_DEAUTH >> 4,
Hanumantha Reddy Pothulabfd06f72014-10-31 14:03:37 +053010714 &delStaParams);
10715 vos_status = hdd_softap_sta_deauth(pAdapter, &delStaParams);
Rashmi Ramanna1f0948d2014-08-28 15:33:48 +053010716 if (VOS_IS_STATUS_SUCCESS(vos_status))
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +053010717 pSapCtx->aStaInfo[i].isDeauthInProgress = TRUE;
Rashmi Ramanna1f0948d2014-08-28 15:33:48 +053010718 }
10719 }
10720 }
10721
10722 EXIT();
10723 return 0;
10724}
10725
10726/**---------------------------------------------------------------------------
10727
Jeff Johnson295189b2012-06-20 16:38:30 -070010728 \brief hdd_softap_sta_disassoc() - function
10729
10730 This to take counter measure to handle deauth req from HDD
10731
10732 \param - pAdapter - Pointer to the HDD
10733
10734 \param - enable - boolean value
10735
10736 \return - None
10737
10738 --------------------------------------------------------------------------*/
10739
10740void hdd_softap_sta_disassoc(hdd_adapter_t *pAdapter,v_U8_t *pDestMacAddress)
10741{
10742 v_CONTEXT_t pVosContext = (WLAN_HDD_GET_CTX(pAdapter))->pvosContext;
10743
10744 ENTER();
10745
Gopichand Nakkala66c0bd02013-04-10 11:36:29 +053010746 hddLog( LOGE, "hdd_softap_sta_disassoc:(%p, false)", (WLAN_HDD_GET_CTX(pAdapter))->pvosContext);
Jeff Johnson295189b2012-06-20 16:38:30 -070010747
10748 //Ignore request to disassoc bcmc station
10749 if( pDestMacAddress[0] & 0x1 )
10750 return;
10751
10752 WLANSAP_DisassocSta(pVosContext,pDestMacAddress);
10753}
10754
10755void hdd_softap_tkip_mic_fail_counter_measure(hdd_adapter_t *pAdapter,v_BOOL_t enable)
10756{
10757 v_CONTEXT_t pVosContext = (WLAN_HDD_GET_CTX(pAdapter))->pvosContext;
10758
10759 ENTER();
10760
Gopichand Nakkala66c0bd02013-04-10 11:36:29 +053010761 hddLog( LOGE, "hdd_softap_tkip_mic_fail_counter_measure:(%p, false)", (WLAN_HDD_GET_CTX(pAdapter))->pvosContext);
Jeff Johnson295189b2012-06-20 16:38:30 -070010762
10763 WLANSAP_SetCounterMeasure(pVosContext, (v_BOOL_t)enable);
10764}
10765
Jeff Johnson295189b2012-06-20 16:38:30 -070010766/**---------------------------------------------------------------------------
10767 *
10768 * \brief hdd_get__concurrency_mode() -
10769 *
10770 *
10771 * \param - None
10772 *
10773 * \return - CONCURRENCY MODE
10774 *
10775 * --------------------------------------------------------------------------*/
10776tVOS_CONCURRENCY_MODE hdd_get_concurrency_mode ( void )
10777{
10778 v_CONTEXT_t pVosContext = vos_get_global_context( VOS_MODULE_ID_HDD, NULL );
10779 hdd_context_t *pHddCtx;
10780
10781 if (NULL != pVosContext)
10782 {
10783 pHddCtx = vos_get_context( VOS_MODULE_ID_HDD, pVosContext);
10784 if (NULL != pHddCtx)
10785 {
10786 return (tVOS_CONCURRENCY_MODE)pHddCtx->concurrency_mode;
10787 }
10788 }
10789
10790 /* we are in an invalid state :( */
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -070010791 hddLog(LOGE, "%s: Invalid context", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -070010792 return VOS_STA;
10793}
Sushant Kaushikabb7ee62014-07-18 16:20:12 +053010794v_BOOL_t
10795wlan_hdd_is_GO_power_collapse_allowed (hdd_context_t* pHddCtx)
10796{
10797 hdd_adapter_t *pAdapter = NULL;
Jeff Johnson295189b2012-06-20 16:38:30 -070010798
Sushant Kaushikabb7ee62014-07-18 16:20:12 +053010799 pAdapter = hdd_get_adapter(pHddCtx, WLAN_HDD_P2P_GO);
10800 if (pAdapter == NULL)
10801 {
10802 hddLog(VOS_TRACE_LEVEL_INFO,
10803 FL("GO doesn't exist"));
10804 return TRUE;
10805 }
10806 if (test_bit(SOFTAP_BSS_STARTED, &pAdapter->event_flags))
10807 {
10808 hddLog(VOS_TRACE_LEVEL_INFO,
10809 FL("GO started"));
10810 return TRUE;
10811 }
10812 else
10813 /* wait till GO changes its interface to p2p device */
10814 hddLog(VOS_TRACE_LEVEL_INFO,
10815 FL("Del_bss called, avoid apps suspend"));
10816 return FALSE;
10817
10818}
Jeff Johnson295189b2012-06-20 16:38:30 -070010819/* Decide whether to allow/not the apps power collapse.
10820 * Allow apps power collapse if we are in connected state.
10821 * if not, allow only if we are in IMPS */
10822v_BOOL_t hdd_is_apps_power_collapse_allowed(hdd_context_t* pHddCtx)
10823{
10824 tPmcState pmcState = pmcGetPmcState(pHddCtx->hHal);
Srikant Kuppafef66a72013-01-30 17:32:44 -080010825 tANI_BOOLEAN scanRspPending = csrNeighborRoamScanRspPending(pHddCtx->hHal);
Srinivas Girigowdaa553c462013-03-07 19:42:52 -080010826 tANI_BOOLEAN inMiddleOfRoaming = csrNeighborMiddleOfRoaming(pHddCtx->hHal);
Jeff Johnson295189b2012-06-20 16:38:30 -070010827 hdd_config_t *pConfig = pHddCtx->cfg_ini;
10828 hdd_adapter_list_node_t *pAdapterNode = NULL, *pNext = NULL;
10829 hdd_adapter_t *pAdapter = NULL;
10830 VOS_STATUS status;
Yathish9f22e662012-12-10 14:21:35 -080010831 tVOS_CONCURRENCY_MODE concurrent_state = 0;
Jeff Johnson295189b2012-06-20 16:38:30 -070010832
Jeff Johnson295189b2012-06-20 16:38:30 -070010833 if (VOS_STA_SAP_MODE == hdd_get_conparam())
10834 return TRUE;
Jeff Johnson295189b2012-06-20 16:38:30 -070010835
Yathish9f22e662012-12-10 14:21:35 -080010836 concurrent_state = hdd_get_concurrency_mode();
10837
Sushant Kaushikabb7ee62014-07-18 16:20:12 +053010838 if ((concurrent_state == (VOS_STA | VOS_P2P_GO)) &&
10839 !(wlan_hdd_is_GO_power_collapse_allowed(pHddCtx)))
10840 return FALSE;
Yathish9f22e662012-12-10 14:21:35 -080010841#ifdef WLAN_ACTIVEMODE_OFFLOAD_FEATURE
Sushant Kaushikabb7ee62014-07-18 16:20:12 +053010842
Yathish9f22e662012-12-10 14:21:35 -080010843 if(((concurrent_state == (VOS_STA | VOS_P2P_CLIENT)) ||
Sushant Kaushikabb7ee62014-07-18 16:20:12 +053010844 (concurrent_state == (VOS_STA | VOS_P2P_GO)))&&
Yathish9f22e662012-12-10 14:21:35 -080010845 (IS_ACTIVEMODE_OFFLOAD_FEATURE_ENABLE))
10846 return TRUE;
10847#endif
10848
Jeff Johnson295189b2012-06-20 16:38:30 -070010849 /*loop through all adapters. TBD fix for Concurrency */
10850 status = hdd_get_front_adapter ( pHddCtx, &pAdapterNode );
10851 while ( NULL != pAdapterNode && VOS_STATUS_SUCCESS == status )
10852 {
10853 pAdapter = pAdapterNode->pAdapter;
10854 if ( (WLAN_HDD_INFRA_STATION == pAdapter->device_mode)
10855 || (WLAN_HDD_P2P_CLIENT == pAdapter->device_mode) )
10856 {
Srikant Kuppafef66a72013-01-30 17:32:44 -080010857 if (((pConfig->fIsImpsEnabled || pConfig->fIsBmpsEnabled)
c_hpothu4e8faac2014-05-16 17:38:44 +053010858 && (pmcState != IMPS && pmcState != BMPS && pmcState != UAPSD
c_hpothu1c6957d2015-01-06 18:19:47 +053010859 && pmcState != STOPPED && pmcState != STANDBY &&
10860 pmcState != WOWL)) ||
Srinivas Girigowdaa553c462013-03-07 19:42:52 -080010861 (eANI_BOOLEAN_TRUE == scanRspPending) ||
10862 (eANI_BOOLEAN_TRUE == inMiddleOfRoaming))
Jeff Johnson295189b2012-06-20 16:38:30 -070010863 {
Mukul Sharma4be88422015-03-09 20:29:07 +053010864 if(pmcState == FULL_POWER &&
10865 sme_IsCoexScoIndicationSet(pHddCtx->hHal))
10866 {
10867 /*
10868 * When SCO indication comes from Coex module , host will
10869 * enter in to full power mode, but this should not prevent
10870 * apps processor power collapse.
10871 */
10872 hddLog(LOG1,
10873 FL("Allow apps power collapse"
10874 "even when sco indication is set"));
10875 return TRUE;
10876 }
Srikant Kuppafef66a72013-01-30 17:32:44 -080010877 hddLog( LOGE, "%s: do not allow APPS power collapse-"
Srinivas Girigowdaa553c462013-03-07 19:42:52 -080010878 "pmcState = %d scanRspPending = %d inMiddleOfRoaming = %d",
10879 __func__, pmcState, scanRspPending, inMiddleOfRoaming );
Jeff Johnson295189b2012-06-20 16:38:30 -070010880 return FALSE;
10881 }
10882 }
10883 status = hdd_get_next_adapter ( pHddCtx, pAdapterNode, &pNext );
10884 pAdapterNode = pNext;
10885 }
10886 return TRUE;
10887}
10888
Madan Mohan Koyyalamudic72a4d62012-11-08 14:59:34 -080010889/* Decides whether to send suspend notification to Riva
10890 * if any adapter is in BMPS; then it is required */
10891v_BOOL_t hdd_is_suspend_notify_allowed(hdd_context_t* pHddCtx)
10892{
10893 tPmcState pmcState = pmcGetPmcState(pHddCtx->hHal);
10894 hdd_config_t *pConfig = pHddCtx->cfg_ini;
10895
10896 if (pConfig->fIsBmpsEnabled && (pmcState == BMPS))
10897 {
10898 return TRUE;
10899 }
10900 return FALSE;
10901}
10902
Jeff Johnson295189b2012-06-20 16:38:30 -070010903void wlan_hdd_set_concurrency_mode(hdd_context_t *pHddCtx, tVOS_CON_MODE mode)
10904{
10905 switch(mode)
10906 {
Chilam Ngc4244af2013-04-01 15:37:32 -070010907 case VOS_STA_MODE:
10908 case VOS_P2P_CLIENT_MODE:
10909 case VOS_P2P_GO_MODE:
10910 case VOS_STA_SAP_MODE:
Jeff Johnsone7245742012-09-05 17:12:55 -070010911 pHddCtx->concurrency_mode |= (1 << mode);
Agarwal Ashish51325b52014-06-16 16:50:49 +053010912 pHddCtx->no_of_open_sessions[mode]++;
Jeff Johnson295189b2012-06-20 16:38:30 -070010913 break;
10914 default:
10915 break;
Jeff Johnson295189b2012-06-20 16:38:30 -070010916 }
Agarwal Ashish51325b52014-06-16 16:50:49 +053010917 hddLog(VOS_TRACE_LEVEL_INFO, FL("concurrency_mode = 0x%x "
10918 "Number of open sessions for mode %d = %d"),
10919 pHddCtx->concurrency_mode, mode,
10920 pHddCtx->no_of_open_sessions[mode]);
Jeff Johnson295189b2012-06-20 16:38:30 -070010921}
10922
10923
10924void wlan_hdd_clear_concurrency_mode(hdd_context_t *pHddCtx, tVOS_CON_MODE mode)
10925{
10926 switch(mode)
10927 {
Chilam Ngc4244af2013-04-01 15:37:32 -070010928 case VOS_STA_MODE:
10929 case VOS_P2P_CLIENT_MODE:
10930 case VOS_P2P_GO_MODE:
10931 case VOS_STA_SAP_MODE:
Agarwal Ashish51325b52014-06-16 16:50:49 +053010932 pHddCtx->no_of_open_sessions[mode]--;
10933 if (!(pHddCtx->no_of_open_sessions[mode]))
10934 pHddCtx->concurrency_mode &= (~(1 << mode));
Jeff Johnson295189b2012-06-20 16:38:30 -070010935 break;
10936 default:
10937 break;
10938 }
Agarwal Ashish51325b52014-06-16 16:50:49 +053010939 hddLog(VOS_TRACE_LEVEL_INFO, FL("concurrency_mode = 0x%x "
10940 "Number of open sessions for mode %d = %d"),
10941 pHddCtx->concurrency_mode, mode, pHddCtx->no_of_open_sessions[mode]);
10942
10943}
10944/**---------------------------------------------------------------------------
10945 *
10946 * \brief wlan_hdd_incr_active_session()
10947 *
10948 * This function increments the number of active sessions
10949 * maintained per device mode
10950 * Incase of STA/P2P CLI/IBSS upon connection indication it is incremented
10951 * Incase of SAP/P2P GO upon bss start it is incremented
10952 *
10953 * \param pHddCtx - HDD Context
10954 * \param mode - device mode
10955 *
10956 * \return - None
10957 *
10958 * --------------------------------------------------------------------------*/
10959void wlan_hdd_incr_active_session(hdd_context_t *pHddCtx, tVOS_CON_MODE mode)
10960{
10961 switch (mode) {
10962 case VOS_STA_MODE:
10963 case VOS_P2P_CLIENT_MODE:
10964 case VOS_P2P_GO_MODE:
10965 case VOS_STA_SAP_MODE:
10966 pHddCtx->no_of_active_sessions[mode]++;
10967 break;
10968 default:
10969 hddLog(VOS_TRACE_LEVEL_INFO, FL("Not Expected Mode %d"), mode);
10970 break;
10971 }
10972 hddLog(VOS_TRACE_LEVEL_INFO, FL("No.# of active sessions for mode %d = %d"),
10973 mode,
10974 pHddCtx->no_of_active_sessions[mode]);
10975}
10976
10977/**---------------------------------------------------------------------------
10978 *
10979 * \brief wlan_hdd_decr_active_session()
10980 *
10981 * This function decrements the number of active sessions
10982 * maintained per device mode
10983 * Incase of STA/P2P CLI/IBSS upon disconnection it is decremented
10984 * Incase of SAP/P2P GO upon bss stop it is decremented
10985 *
10986 * \param pHddCtx - HDD Context
10987 * \param mode - device mode
10988 *
10989 * \return - None
10990 *
10991 * --------------------------------------------------------------------------*/
10992void wlan_hdd_decr_active_session(hdd_context_t *pHddCtx, tVOS_CON_MODE mode)
10993{
10994 switch (mode) {
10995 case VOS_STA_MODE:
10996 case VOS_P2P_CLIENT_MODE:
10997 case VOS_P2P_GO_MODE:
10998 case VOS_STA_SAP_MODE:
Agarwal Ashish5325f522014-08-06 00:58:44 +053010999 if (pHddCtx->no_of_active_sessions[mode] > 0)
11000 pHddCtx->no_of_active_sessions[mode]--;
11001 else
11002 hddLog(VOS_TRACE_LEVEL_INFO, FL(" No.# of Active sessions"
11003 "is already Zero"));
Agarwal Ashish51325b52014-06-16 16:50:49 +053011004 break;
11005 default:
11006 hddLog(VOS_TRACE_LEVEL_INFO, FL("Not Expected Mode %d"), mode);
11007 break;
11008 }
11009 hddLog(VOS_TRACE_LEVEL_INFO, FL("No.# of active sessions for mode %d = %d"),
11010 mode,
11011 pHddCtx->no_of_active_sessions[mode]);
Jeff Johnson295189b2012-06-20 16:38:30 -070011012}
11013
Jeff Johnsone7245742012-09-05 17:12:55 -070011014/**---------------------------------------------------------------------------
11015 *
11016 * \brief wlan_hdd_restart_init
11017 *
11018 * This function initalizes restart timer/flag. An internal function.
11019 *
11020 * \param - pHddCtx
11021 *
11022 * \return - None
11023 *
11024 * --------------------------------------------------------------------------*/
11025
11026static void wlan_hdd_restart_init(hdd_context_t *pHddCtx)
11027{
11028 /* Initialize */
11029 pHddCtx->hdd_restart_retries = 0;
11030 atomic_set(&pHddCtx->isRestartInProgress, 0);
11031 vos_timer_init(&pHddCtx->hdd_restart_timer,
11032 VOS_TIMER_TYPE_SW,
11033 wlan_hdd_restart_timer_cb,
11034 pHddCtx);
11035}
11036/**---------------------------------------------------------------------------
11037 *
11038 * \brief wlan_hdd_restart_deinit
11039 *
11040 * This function cleans up the resources used. An internal function.
11041 *
11042 * \param - pHddCtx
11043 *
11044 * \return - None
11045 *
11046 * --------------------------------------------------------------------------*/
11047
11048static void wlan_hdd_restart_deinit(hdd_context_t* pHddCtx)
11049{
11050
11051 VOS_STATUS vos_status;
11052 /* Block any further calls */
11053 atomic_set(&pHddCtx->isRestartInProgress, 1);
11054 /* Cleanup */
11055 vos_status = vos_timer_stop( &pHddCtx->hdd_restart_timer );
11056 if (!VOS_IS_STATUS_SUCCESS(vos_status))
c_hpothu6ff1c3c2013-10-01 19:01:57 +053011057 hddLog(LOGE, FL("Failed to stop HDD restart timer"));
Jeff Johnsone7245742012-09-05 17:12:55 -070011058 vos_status = vos_timer_destroy(&pHddCtx->hdd_restart_timer);
11059 if (!VOS_IS_STATUS_SUCCESS(vos_status))
c_hpothu6ff1c3c2013-10-01 19:01:57 +053011060 hddLog(LOGE, FL("Failed to destroy HDD restart timer"));
Jeff Johnsone7245742012-09-05 17:12:55 -070011061
11062}
11063
11064/**---------------------------------------------------------------------------
11065 *
11066 * \brief wlan_hdd_framework_restart
11067 *
11068 * This function uses a cfg80211 API to start a framework initiated WLAN
11069 * driver module unload/load.
11070 *
11071 * Also this API keep retrying (WLAN_HDD_RESTART_RETRY_MAX_CNT).
11072 *
11073 *
11074 * \param - pHddCtx
11075 *
11076 * \return - VOS_STATUS_SUCCESS: Success
11077 * VOS_STATUS_E_EMPTY: Adapter is Empty
11078 * VOS_STATUS_E_NOMEM: No memory
11079
11080 * --------------------------------------------------------------------------*/
11081
11082static VOS_STATUS wlan_hdd_framework_restart(hdd_context_t *pHddCtx)
11083{
11084 VOS_STATUS status = VOS_STATUS_SUCCESS;
11085 hdd_adapter_list_node_t *pAdapterNode = NULL, *pNext = NULL;
Madan Mohan Koyyalamudifc19e442013-05-09 18:24:08 -070011086 int len = (sizeof (struct ieee80211_mgmt));
11087 struct ieee80211_mgmt *mgmt = NULL;
11088
11089 /* Prepare the DEAUTH managment frame with reason code */
11090 mgmt = kzalloc(len, GFP_KERNEL);
11091 if(mgmt == NULL)
11092 {
11093 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
11094 "%s: memory allocation failed (%d bytes)", __func__, len);
11095 return VOS_STATUS_E_NOMEM;
11096 }
11097 mgmt->u.deauth.reason_code = WLAN_REASON_DISASSOC_LOW_ACK;
Jeff Johnsone7245742012-09-05 17:12:55 -070011098
11099 /* Iterate over all adapters/devices */
11100 status = hdd_get_front_adapter ( pHddCtx, &pAdapterNode );
Hanumantha Reddy Pothulada0fe362015-02-27 18:37:03 +053011101 if ((NULL == pAdapterNode) || (VOS_STATUS_SUCCESS != status))
11102 {
11103 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
11104 FL("fail to get adapter: %p %d"), pAdapterNode, status);
11105 goto end;
11106 }
11107
Jeff Johnsone7245742012-09-05 17:12:55 -070011108 do
11109 {
Hanumantha Reddy Pothulada0fe362015-02-27 18:37:03 +053011110 if(pAdapterNode->pAdapter &&
11111 WLAN_HDD_ADAPTER_MAGIC == pAdapterNode->pAdapter->magic)
Jeff Johnsone7245742012-09-05 17:12:55 -070011112 {
11113 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
11114 "restarting the driver(intf:\'%s\' mode:%d :try %d)",
11115 pAdapterNode->pAdapter->dev->name,
11116 pAdapterNode->pAdapter->device_mode,
11117 pHddCtx->hdd_restart_retries + 1);
Madan Mohan Koyyalamudifc19e442013-05-09 18:24:08 -070011118 /*
11119 * CFG80211 event to restart the driver
11120 *
11121 * 'cfg80211_send_unprot_deauth' sends a
11122 * NL80211_CMD_UNPROT_DEAUTHENTICATE event to supplicant at any state
11123 * of SME(Linux Kernel) state machine.
11124 *
11125 * Reason code WLAN_REASON_DISASSOC_LOW_ACK is currently used to restart
11126 * the driver.
11127 *
11128 */
11129
11130 cfg80211_send_unprot_deauth(pAdapterNode->pAdapter->dev, (u_int8_t*)mgmt, len );
Jeff Johnsone7245742012-09-05 17:12:55 -070011131 }
11132 status = hdd_get_next_adapter ( pHddCtx, pAdapterNode, &pNext );
11133 pAdapterNode = pNext;
11134 } while((NULL != pAdapterNode) && (VOS_STATUS_SUCCESS == status));
11135
Hanumantha Reddy Pothulada0fe362015-02-27 18:37:03 +053011136 end:
Madan Mohan Koyyalamudifc19e442013-05-09 18:24:08 -070011137 /* Free the allocated management frame */
11138 kfree(mgmt);
11139
Jeff Johnsone7245742012-09-05 17:12:55 -070011140 /* Retry until we unload or reach max count */
11141 if(++pHddCtx->hdd_restart_retries < WLAN_HDD_RESTART_RETRY_MAX_CNT)
11142 vos_timer_start(&pHddCtx->hdd_restart_timer, WLAN_HDD_RESTART_RETRY_DELAY_MS);
11143
11144 return status;
11145
11146}
11147/**---------------------------------------------------------------------------
11148 *
11149 * \brief wlan_hdd_restart_timer_cb
11150 *
11151 * Restart timer callback. An internal function.
11152 *
11153 * \param - User data:
11154 *
11155 * \return - None
11156 *
11157 * --------------------------------------------------------------------------*/
11158
11159void wlan_hdd_restart_timer_cb(v_PVOID_t usrDataForCallback)
11160{
11161 hdd_context_t *pHddCtx = usrDataForCallback;
11162 wlan_hdd_framework_restart(pHddCtx);
11163 return;
11164
11165}
11166
11167
11168/**---------------------------------------------------------------------------
11169 *
11170 * \brief wlan_hdd_restart_driver
11171 *
11172 * This function sends an event to supplicant to restart the WLAN driver.
11173 *
11174 * This function is called from vos_wlanRestart.
11175 *
11176 * \param - pHddCtx
11177 *
11178 * \return - VOS_STATUS_SUCCESS: Success
11179 * VOS_STATUS_E_EMPTY: Adapter is Empty
11180 * VOS_STATUS_E_ALREADY: Request already in progress
11181
11182 * --------------------------------------------------------------------------*/
11183VOS_STATUS wlan_hdd_restart_driver(hdd_context_t *pHddCtx)
11184{
11185 VOS_STATUS status = VOS_STATUS_SUCCESS;
11186
11187 /* A tight check to make sure reentrancy */
11188 if(atomic_xchg(&pHddCtx->isRestartInProgress, 1))
11189 {
Mihir Shetefd528652014-06-23 19:07:50 +053011190 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Jeff Johnsone7245742012-09-05 17:12:55 -070011191 "%s: WLAN restart is already in progress", __func__);
11192
11193 return VOS_STATUS_E_ALREADY;
11194 }
Sameer Thalappil0c164f52013-03-28 15:27:56 -070011195 /* Send reset FIQ to WCNSS to invoke SSR. */
Madan Mohan Koyyalamudie388b342012-11-08 15:03:16 -080011196#ifdef HAVE_WCNSS_RESET_INTR
Siddharth Bhal864e7e82015-04-07 20:07:24 +053011197 wcnss_reset_fiq(TRUE);
Madan Mohan Koyyalamudibb8f0172012-09-28 15:36:06 -070011198#endif
Madan Mohan Koyyalamudi5aef2af2012-10-05 11:56:27 -070011199
Jeff Johnsone7245742012-09-05 17:12:55 -070011200 return status;
11201}
11202
Mihir Shetee1093ba2014-01-21 20:13:32 +053011203/**---------------------------------------------------------------------------
11204 *
11205 * \brief wlan_hdd_init_channels
11206 *
11207 * This function is used to initialize the channel list in CSR
11208 *
11209 * This function is called from hdd_wlan_startup
11210 *
11211 * \param - pHddCtx: HDD context
11212 *
11213 * \return - VOS_STATUS_SUCCESS: Success
11214 * VOS_STATUS_E_FAULT: Failure reported by SME
11215
11216 * --------------------------------------------------------------------------*/
11217static VOS_STATUS wlan_hdd_init_channels(hdd_context_t *pHddCtx)
11218{
11219 eHalStatus status;
11220
11221 status = sme_InitChannels(pHddCtx->hHal);
11222 if (HAL_STATUS_SUCCESS(status))
11223 {
11224 return VOS_STATUS_SUCCESS;
11225 }
11226 else
11227 {
11228 hddLog(VOS_TRACE_LEVEL_FATAL,"%s: Channel initialization failed(%d)",
11229 __func__, status);
11230 return VOS_STATUS_E_FAULT;
11231 }
11232}
11233
Mihir Shete04206452014-11-20 17:50:58 +053011234#ifdef CONFIG_ENABLE_LINUX_REG
Agarwal Ashish6db9d532014-09-30 18:19:10 +053011235VOS_STATUS wlan_hdd_init_channels_for_cc(hdd_context_t *pHddCtx, driver_load_type init )
Mahesh A Saptasagar74289d22014-05-14 12:43:37 +053011236{
11237 eHalStatus status;
11238
Agarwal Ashish6db9d532014-09-30 18:19:10 +053011239 status = sme_InitChannelsForCC(pHddCtx->hHal, init);
Mahesh A Saptasagar74289d22014-05-14 12:43:37 +053011240 if (HAL_STATUS_SUCCESS(status))
11241 {
11242 return VOS_STATUS_SUCCESS;
11243 }
11244 else
11245 {
11246 hddLog(VOS_TRACE_LEVEL_FATAL,"%s: Issue reg hint failed(%d)",
11247 __func__, status);
11248 return VOS_STATUS_E_FAULT;
11249 }
11250}
Mihir Shete04206452014-11-20 17:50:58 +053011251#endif
Sudhir Sattayappa Kohallib1d8c3a2013-06-18 14:47:20 -070011252/*
11253 * API to find if there is any STA or P2P-Client is connected
11254 */
11255VOS_STATUS hdd_issta_p2p_clientconnected(hdd_context_t *pHddCtx)
11256{
11257 return sme_isSta_p2p_clientConnected(pHddCtx->hHal);
11258}
Jeff Johnsone7245742012-09-05 17:12:55 -070011259
Mihir Shetee2ae82a2015-03-16 14:08:49 +053011260
11261/*
11262 * API to find if the firmware will send logs using DXE channel
11263 */
11264v_U8_t hdd_is_fw_logging_enabled(void)
11265{
11266 hdd_context_t *pHddCtx;
11267
11268 pHddCtx = vos_get_context(VOS_MODULE_ID_HDD,
11269 vos_get_global_context(VOS_MODULE_ID_HDD, NULL));
11270
Sachin Ahuja084313e2015-05-21 17:57:10 +053011271 return (pHddCtx && pHddCtx->cfg_ini->enableMgmtLogging);
Mihir Shetee2ae82a2015-03-16 14:08:49 +053011272}
11273
Agarwal Ashish57e84372014-12-05 18:26:53 +053011274/*
11275 * API to find if there is any session connected
11276 */
11277VOS_STATUS hdd_is_any_session_connected(hdd_context_t *pHddCtx)
11278{
11279 return sme_is_any_session_connected(pHddCtx->hHal);
11280}
11281
11282
Mahesh A Saptasagar2395ee62014-05-21 19:12:21 +053011283int wlan_hdd_scan_abort(hdd_adapter_t *pAdapter)
11284{
11285 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
11286 hdd_scaninfo_t *pScanInfo = NULL;
Girish Gowli4bf7a632014-06-12 13:42:11 +053011287 long status = 0;
c_hpothua3d45d52015-01-05 14:11:17 +053011288 tSirAbortScanStatus abortScanStatus;
Mahesh A Saptasagar2395ee62014-05-21 19:12:21 +053011289
11290 pScanInfo = &pHddCtx->scan_info;
11291 if (pScanInfo->mScanPending)
11292 {
c_hpothua3d45d52015-01-05 14:11:17 +053011293 abortScanStatus = hdd_abort_mac_scan(pHddCtx, pScanInfo->sessionId,
11294 eCSR_SCAN_ABORT_DEFAULT);
11295 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
11296 FL("abortScanStatus: %d"), abortScanStatus);
Mahesh A Saptasagar2395ee62014-05-21 19:12:21 +053011297
c_hpothua3d45d52015-01-05 14:11:17 +053011298 /* If there is active scan command lets wait for the completion else
11299 * there is no need to wait as scan command might be in the SME pending
11300 * command list.
11301 */
11302 if (abortScanStatus == eSIR_ABORT_ACTIVE_SCAN_LIST_NOT_EMPTY)
11303 {
11304 INIT_COMPLETION(pScanInfo->abortscan_event_var);
11305 status = wait_for_completion_interruptible_timeout(
Mahesh A Saptasagar2395ee62014-05-21 19:12:21 +053011306 &pScanInfo->abortscan_event_var,
11307 msecs_to_jiffies(5000));
c_hpothua3d45d52015-01-05 14:11:17 +053011308 if (0 >= status)
11309 {
11310 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Girish Gowli4bf7a632014-06-12 13:42:11 +053011311 "%s: Timeout or Interrupt occurred while waiting for abort"
11312 "scan, status- %ld", __func__, status);
c_hpothua3d45d52015-01-05 14:11:17 +053011313 return -ETIMEDOUT;
11314 }
11315 }
11316 else if (abortScanStatus == eSIR_ABORT_SCAN_FAILURE)
11317 {
11318 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
11319 FL("hdd_abort_mac_scan failed"));
11320 return -VOS_STATUS_E_FAILURE;
Mahesh A Saptasagar2395ee62014-05-21 19:12:21 +053011321 }
11322 }
Girish Gowli4bf7a632014-06-12 13:42:11 +053011323 return 0;
Mahesh A Saptasagar2395ee62014-05-21 19:12:21 +053011324}
11325
c_hpothu225aa7c2014-10-22 17:45:13 +053011326VOS_STATUS wlan_hdd_cancel_remain_on_channel(hdd_context_t *pHddCtx)
11327{
11328 hdd_adapter_t *pAdapter;
11329 hdd_adapter_list_node_t *pAdapterNode = NULL, *pNext = NULL;
11330 VOS_STATUS vosStatus;
11331
11332 vosStatus = hdd_get_front_adapter ( pHddCtx, &pAdapterNode );
11333 while (NULL != pAdapterNode && VOS_STATUS_E_EMPTY != vosStatus)
11334 {
11335 pAdapter = pAdapterNode->pAdapter;
11336 if (NULL != pAdapter)
11337 {
11338 if (WLAN_HDD_P2P_DEVICE == pAdapter->device_mode ||
11339 WLAN_HDD_P2P_CLIENT == pAdapter->device_mode ||
11340 WLAN_HDD_P2P_GO == pAdapter->device_mode)
11341 {
11342 hddLog(LOG1, FL("abort ROC deviceMode: %d"),
11343 pAdapter->device_mode);
11344 if (VOS_STATUS_SUCCESS !=
11345 wlan_hdd_cancel_existing_remain_on_channel(pAdapter))
11346 {
11347 hddLog(LOGE, FL("failed to abort ROC"));
11348 return VOS_STATUS_E_FAILURE;
11349 }
11350 }
11351 }
11352 vosStatus = hdd_get_next_adapter ( pHddCtx, pAdapterNode, &pNext );
11353 pAdapterNode = pNext;
11354 }
11355 return VOS_STATUS_SUCCESS;
11356}
Mahesh A Saptasagard477b092015-02-06 15:12:16 +053011357
Mihir Shete0be28772015-02-17 18:42:14 +053011358hdd_remain_on_chan_ctx_t *hdd_get_remain_on_channel_ctx(hdd_context_t *pHddCtx)
11359{
11360 hdd_adapter_t *pAdapter;
11361 hdd_adapter_list_node_t *pAdapterNode = NULL, *pNext = NULL;
11362 hdd_cfg80211_state_t *cfgState;
11363 hdd_remain_on_chan_ctx_t *pRemainChanCtx = NULL;
11364 VOS_STATUS vosStatus;
11365
11366 vosStatus = hdd_get_front_adapter (pHddCtx, &pAdapterNode);
11367 while (NULL != pAdapterNode && VOS_STATUS_E_EMPTY != vosStatus)
11368 {
11369 pAdapter = pAdapterNode->pAdapter;
11370 if (NULL != pAdapter)
11371 {
11372 cfgState = WLAN_HDD_GET_CFG_STATE_PTR(pAdapter);
11373 pRemainChanCtx = cfgState->remain_on_chan_ctx;
11374 if (pRemainChanCtx)
11375 break;
11376 }
11377 vosStatus = hdd_get_next_adapter (pHddCtx, pAdapterNode, &pNext);
11378 pAdapterNode = pNext;
11379 }
11380 return pRemainChanCtx;
11381}
11382
Padma, Santhosh Kumar778d8382015-03-04 17:41:22 +053011383/**
11384 * wlan_hdd_handle_dfs_chan_scan () - handles disable/enable DFS channels
11385 *
11386 * @pHddCtx: HDD context within host driver
11387 * @dfsScanMode: dfsScanMode passed from ioctl
11388 *
11389 */
11390
11391VOS_STATUS wlan_hdd_handle_dfs_chan_scan(hdd_context_t *pHddCtx,
11392 tANI_U8 dfsScanMode)
11393{
11394 hdd_adapter_list_node_t *pAdapterNode = NULL, *pNext = NULL;
11395 hdd_adapter_t *pAdapter;
11396 VOS_STATUS vosStatus;
11397 hdd_station_ctx_t *pHddStaCtx;
11398 eHalStatus status = eHAL_STATUS_SUCCESS;
11399
11400 if(!pHddCtx)
11401 {
11402 hddLog(LOGE, FL("HDD context is Null"));
11403 return eHAL_STATUS_FAILURE;
11404 }
11405
11406 if (pHddCtx->scan_info.mScanPending)
11407 {
11408 hddLog(LOG1, FL("Aborting scan for sessionId: %d"),
11409 pHddCtx->scan_info.sessionId);
11410 hdd_abort_mac_scan(pHddCtx,
11411 pHddCtx->scan_info.sessionId,
11412 eCSR_SCAN_ABORT_DEFAULT);
11413 }
11414
11415 if (!dfsScanMode)
11416 {
11417 vosStatus = hdd_get_front_adapter( pHddCtx, &pAdapterNode);
11418 while ((NULL != pAdapterNode) &&
11419 (VOS_STATUS_SUCCESS == vosStatus))
11420 {
11421 pAdapter = pAdapterNode->pAdapter;
11422
11423 if (WLAN_HDD_INFRA_STATION == pAdapter->device_mode)
11424 {
11425 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
11426
11427 if(!pHddStaCtx)
11428 {
11429 hddLog(LOGE, FL("HDD STA context is Null"));
11430 return eHAL_STATUS_FAILURE;
11431 }
11432
11433 /* if STA is already connected on DFS channel,
11434 disconnect immediately*/
11435 if (hdd_connIsConnected(pHddStaCtx) &&
11436 (NV_CHANNEL_DFS ==
11437 vos_nv_getChannelEnabledState(
11438 pHddStaCtx->conn_info.operationChannel)))
11439 {
11440 status = sme_RoamDisconnect(pHddCtx->hHal,
11441 pAdapter->sessionId,
11442 eCSR_DISCONNECT_REASON_UNSPECIFIED);
11443 hddLog(LOG1, FL("Client connected on DFS channel %d,"
11444 "sme_RoamDisconnect returned with status: %d"
11445 "for sessionid: %d"), pHddStaCtx->conn_info.
11446 operationChannel, status, pAdapter->sessionId);
11447 }
11448 }
11449
11450 vosStatus = hdd_get_next_adapter(pHddCtx, pAdapterNode,
11451 &pNext);
11452 pAdapterNode = pNext;
11453 }
11454 }
11455
11456 sme_UpdateDFSScanMode(pHddCtx->hHal, dfsScanMode);
11457 sme_UpdateDFSRoamMode(pHddCtx->hHal,
11458 (dfsScanMode != DFS_CHNL_SCAN_DISABLED));
11459
11460 status = sme_HandleDFSChanScan(pHddCtx->hHal);
11461 if (!HAL_STATUS_SUCCESS(status))
11462 {
11463 hddLog(LOGE,
11464 FL("Failed in sme_HandleDFSChanScan (err=%d)"), status);
11465 return status;
11466 }
11467
11468 return status;
11469}
11470
Jeff Johnson295189b2012-06-20 16:38:30 -070011471//Register the module init/exit functions
11472module_init(hdd_module_init);
11473module_exit(hdd_module_exit);
11474
11475MODULE_LICENSE("Dual BSD/GPL");
11476MODULE_AUTHOR("Qualcomm Atheros, Inc.");
11477MODULE_DESCRIPTION("WLAN HOST DEVICE DRIVER");
11478
Madan Mohan Koyyalamudi2331c8a2012-09-18 18:14:48 -070011479module_param_call(con_mode, con_mode_handler, param_get_int, &con_mode,
11480 S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
Jeff Johnson32d95a32012-09-10 13:15:23 -070011481
Jeff Johnson76052702013-04-16 13:55:05 -070011482module_param_call(fwpath, fwpath_changed_handler, param_get_string, &fwpath,
Jeff Johnson32d95a32012-09-10 13:15:23 -070011483 S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
Arif Hussain66559122013-11-21 10:11:40 -080011484
11485module_param(enable_dfs_chan_scan, int,
11486 S_IRUSR | S_IRGRP | S_IROTH);
11487
11488module_param(enable_11d, int,
11489 S_IRUSR | S_IRGRP | S_IROTH);
11490
11491module_param(country_code, charp,
11492 S_IRUSR | S_IRGRP | S_IROTH);