blob: 25d7abc2e1ce001a32da798e9bf7b04de8753e45 [file] [log] [blame]
Jeff Johnson295189b2012-06-20 16:38:30 -07001/*
Gopichand Nakkala92f07d82013-01-08 21:16:34 -08002 * Copyright (c) 2012-2013, The Linux Foundation. All rights reserved.
3 *
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/*
Jeff Johnson32d95a32012-09-10 13:15:23 -070022 * Copyright (c) 2012, The Linux Foundation. All rights reserved.
Jeff Johnson295189b2012-06-20 16:38:30 -070023 *
24 * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
25 *
26 *
27 * Permission to use, copy, modify, and/or distribute this software for
28 * any purpose with or without fee is hereby granted, provided that the
29 * above copyright notice and this permission notice appear in all
30 * copies.
31 *
32 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
33 * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
34 * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
35 * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
36 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
37 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
38 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
39 * PERFORMANCE OF THIS SOFTWARE.
40 */
41
42#if !defined( HDD_CFG80211_H__ )
43#define HDD_CFG80211_H__
44
45
46/**===========================================================================
47
48 \file wlan_hdd_cfg80211.h
49
50 \brief cfg80211 functions declarations
51
52 Copyright 2008 (c) Qualcomm, Incorporated.
53 All Rights Reserved.
54 Qualcomm Confidential and Proprietary.
55
56 ==========================================================================*/
57
58/* $HEADER$ */
59
Jeff Johnson295189b2012-06-20 16:38:30 -070060
61//value for initial part of frames and number of bytes to be compared
62#define GAS_INITIAL_REQ "\x04\x0a"
63#define GAS_INITIAL_REQ_SIZE 2
64
65#define GAS_INITIAL_RSP "\x04\x0b"
66#define GAS_INITIAL_RSP_SIZE 2
67
68#define GAS_COMEBACK_REQ "\x04\x0c"
69#define GAS_COMEBACK_REQ_SIZE 2
70
71#define GAS_COMEBACK_RSP "\x04\x0d"
72#define GAS_COMEBACK_RSP_SIZE 2
73
74#define P2P_PUBLIC_ACTION_FRAME "\x04\x09\x50\x6f\x9a\x09"
75#define P2P_PUBLIC_ACTION_FRAME_SIZE 6
76
77#define P2P_ACTION_FRAME "\x7f\x50\x6f\x9a\x09"
78#define P2P_ACTION_FRAME_SIZE 5
79
Chet Lanctot186b5732013-03-18 10:26:30 -070080#define SA_QUERY_FRAME_REQ "\x08\x00"
81#define SA_QUERY_FRAME_REQ_SIZE 2
82
83#define SA_QUERY_FRAME_RSP "\x08\x01"
84#define SA_QUERY_FRAME_RSP_SIZE 2
85
Jeff Johnson295189b2012-06-20 16:38:30 -070086#define HDD_P2P_WILDCARD_SSID "DIRECT-" //TODO Put it in proper place;
87#define HDD_P2P_WILDCARD_SSID_LEN 7
88
Gopichand Nakkalae3d56e72013-04-21 23:33:32 +053089#define WNM_BSS_ACTION_FRAME "\x0a\x07"
90#define WNM_BSS_ACTION_FRAME_SIZE 2
91
Jeff Johnson295189b2012-06-20 16:38:30 -070092#define WPA_OUI_TYPE "\x00\x50\xf2\x01"
93#define BLACKLIST_OUI_TYPE "\x00\x50\x00\x00"
94#define WHITELIST_OUI_TYPE "\x00\x50\x00\x01"
95#define WPA_OUI_TYPE_SIZE 4
96
97#define WLAN_BSS_MEMBERSHIP_SELECTOR_HT_PHY 127
98#define BASIC_RATE_MASK 0x80
99#define RATE_MASK 0x7f
100
Madan Mohan Koyyalamudi86f629e2012-11-09 16:27:29 -0800101#ifdef WLAN_ENABLE_AGEIE_ON_SCAN_RESULTS
102/* GPS application requirement */
103#define QCOM_VENDOR_IE_ID 221
104#define QCOM_OUI1 0x00
105#define QCOM_OUI2 0xA0
106#define QCOM_OUI3 0xC6
107#define QCOM_VENDOR_IE_AGE_TYPE 0x100
Gopichand Nakkalaedbd89b2013-05-03 13:46:45 +0530108#define QCOM_VENDOR_IE_AGE_LEN 11
Madan Mohan Koyyalamudi86f629e2012-11-09 16:27:29 -0800109
Gopichand Nakkalab977a972013-02-18 19:15:09 -0800110#ifdef FEATURE_WLAN_TDLS
111#define WLAN_IS_TDLS_SETUP_ACTION(action) \
112 ((SIR_MAC_TDLS_SETUP_REQ <= action) && (SIR_MAC_TDLS_SETUP_CNF >= action))
113#endif
114
Madan Mohan Koyyalamudi86f629e2012-11-09 16:27:29 -0800115typedef struct {
116 u8 element_id;
117 u8 len;
118 u8 oui_1;
119 u8 oui_2;
120 u8 oui_3;
121 u32 type;
122 u32 age;
123}__attribute__((packed)) qcom_ie_age ;
124#endif
125
Jeff Johnson295189b2012-06-20 16:38:30 -0700126struct cfg80211_bss* wlan_hdd_cfg80211_update_bss_db( hdd_adapter_t *pAdapter,
127 tCsrRoamInfo *pRoamInfo
128 );
Jeff Johnson04dd8a82012-06-29 20:41:40 -0700129
130#ifdef FEATURE_WLAN_LFR
131int wlan_hdd_cfg80211_pmksa_candidate_notify(
132 hdd_adapter_t *pAdapter, tCsrRoamInfo *pRoamInfo,
133 int index, bool preauth );
134#endif
135
Yue Maef608272013-04-08 23:09:17 -0700136#ifdef FEATURE_WLAN_LFR_METRICS
137VOS_STATUS wlan_hdd_cfg80211_roam_metrics_preauth(hdd_adapter_t *pAdapter,
138 tCsrRoamInfo *pRoamInfo);
139
140VOS_STATUS wlan_hdd_cfg80211_roam_metrics_preauth_status(
141 hdd_adapter_t *pAdapter, tCsrRoamInfo *pRoamInfo, bool preauth_status);
142
143VOS_STATUS wlan_hdd_cfg80211_roam_metrics_handover(hdd_adapter_t *pAdapter,
144 tCsrRoamInfo *pRoamInfo);
145#endif
146
Jeff Johnson295189b2012-06-20 16:38:30 -0700147#ifdef FEATURE_WLAN_WAPI
148void wlan_hdd_cfg80211_set_key_wapi(hdd_adapter_t* pAdapter,
149 u8 key_index, const u8 *mac_addr, u8 *key , int key_Len);
150#endif
Madan Mohan Koyyalamudi71278262013-04-12 22:00:48 +0530151struct wiphy *wlan_hdd_cfg80211_wiphy_alloc(int priv_size);
Jeff Johnson295189b2012-06-20 16:38:30 -0700152
Hoonki Lee93e67ff2013-03-19 15:49:25 -0700153int wlan_hdd_cfg80211_scan( struct wiphy *wiphy,
154#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,6,0))
155 struct net_device *dev,
156#endif
157 struct cfg80211_scan_request *request);
158
Madan Mohan Koyyalamudi71278262013-04-12 22:00:48 +0530159int wlan_hdd_cfg80211_init(struct device *dev,
Jeff Johnson295189b2012-06-20 16:38:30 -0700160 struct wiphy *wiphy,
161 hdd_config_t *pCfg
162 );
163
Madan Mohan Koyyalamudi71278262013-04-12 22:00:48 +0530164int wlan_hdd_cfg80211_register( struct wiphy *wiphy);
Jeff Johnson295189b2012-06-20 16:38:30 -0700165void wlan_hdd_cfg80211_post_voss_start(hdd_adapter_t* pAdapter);
166
167void wlan_hdd_cfg80211_pre_voss_stop(hdd_adapter_t* pAdapter);
168
Amar Singhalfddc28c2013-09-05 13:03:40 -0700169#ifdef CONFIG_ENABLE_LINUX_REG
Yue Maf49ba872013-08-19 12:04:25 -0700170#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,9,0))
Amar Singhalfddc28c2013-09-05 13:03:40 -0700171void wlan_hdd_linux_reg_notifier(struct wiphy *wiphy, struct regulatory_request *request);
Yue Maf49ba872013-08-19 12:04:25 -0700172#else
Amar Singhalfddc28c2013-09-05 13:03:40 -0700173int wlan_hdd_linux_reg_notifier(struct wiphy *wiphy, struct regulatory_request *request);
Yue Maf49ba872013-08-19 12:04:25 -0700174#endif
Amar Singhala49cbc52013-10-08 18:37:44 -0700175#else
176#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,9,0))
177void wlan_hdd_crda_reg_notifier(struct wiphy *wiphy, struct regulatory_request *request);
178#else
179int wlan_hdd_crda_reg_notifier(struct wiphy *wiphy, struct regulatory_request *request);
180#endif
Amar Singhalfddc28c2013-09-05 13:03:40 -0700181#endif
182
Madan Mohan Koyyalamudid5acbf52012-11-28 01:45:08 +0530183extern v_VOID_t hdd_connSetConnectionState( hdd_station_ctx_t *pHddStaCtx,
184 eConnectionState connState );
Varun Reddy Yeturu920df212013-05-22 08:07:23 -0700185VOS_STATUS wlan_hdd_validate_operation_channel(hdd_adapter_t *pAdapter,int channel);
Chilam NG571c65a2013-01-19 12:27:36 +0530186#ifdef FEATURE_WLAN_TDLS
187int wlan_hdd_cfg80211_send_tdls_discover_req(struct wiphy *wiphy,
188 struct net_device *dev, u8 *peer);
189#endif
Gopichand Nakkala870cbae2013-03-15 21:16:09 +0530190#ifdef WLAN_FEATURE_GTK_OFFLOAD
191extern void wlan_hdd_cfg80211_update_replayCounterCallback(void *callbackContext,
192 tpSirGtkOffloadGetInfoRspParams pGtkOffloadGetInfoRsp);
193#endif
Jeff Johnson295189b2012-06-20 16:38:30 -0700194
Shailender Karmuchi15cd0672013-05-15 19:50:04 -0700195void hdd_select_cbmode( hdd_adapter_t *pAdapter,v_U8_t operationChannel);
196
197
Jeff Johnson295189b2012-06-20 16:38:30 -0700198#endif