blob: b337028acd46a0a6b16c25154c2ae9e32df354f8 [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
Jeff Johnson295189b2012-06-20 16:38:30 -0700136#ifdef FEATURE_WLAN_WAPI
137void wlan_hdd_cfg80211_set_key_wapi(hdd_adapter_t* pAdapter,
138 u8 key_index, const u8 *mac_addr, u8 *key , int key_Len);
139#endif
140struct wiphy *wlan_hdd_cfg80211_init(int priv_size);
141
Hoonki Lee93e67ff2013-03-19 15:49:25 -0700142int wlan_hdd_cfg80211_scan( struct wiphy *wiphy,
143#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,6,0))
144 struct net_device *dev,
145#endif
146 struct cfg80211_scan_request *request);
147
Jeff Johnson295189b2012-06-20 16:38:30 -0700148int wlan_hdd_cfg80211_register(struct device *dev,
149 struct wiphy *wiphy,
150 hdd_config_t *pCfg
151 );
152
153void wlan_hdd_cfg80211_post_voss_start(hdd_adapter_t* pAdapter);
154
155void wlan_hdd_cfg80211_pre_voss_stop(hdd_adapter_t* pAdapter);
156
Madan Mohan Koyyalamudic3a240c2012-09-28 15:34:08 -0700157int wlan_hdd_crda_reg_notifier(struct wiphy *wiphy, struct regulatory_request *request);
158int wlan_hdd_get_crda_regd_entry(struct wiphy *wiphy, hdd_config_t *pCfg);
Madan Mohan Koyyalamudid5acbf52012-11-28 01:45:08 +0530159extern v_VOID_t hdd_connSetConnectionState( hdd_station_ctx_t *pHddStaCtx,
160 eConnectionState connState );
Varun Reddy Yeturu920df212013-05-22 08:07:23 -0700161VOS_STATUS wlan_hdd_validate_operation_channel(hdd_adapter_t *pAdapter,int channel);
Chilam NG571c65a2013-01-19 12:27:36 +0530162#ifdef FEATURE_WLAN_TDLS
163int wlan_hdd_cfg80211_send_tdls_discover_req(struct wiphy *wiphy,
164 struct net_device *dev, u8 *peer);
165#endif
Gopichand Nakkala870cbae2013-03-15 21:16:09 +0530166#ifdef WLAN_FEATURE_GTK_OFFLOAD
167extern void wlan_hdd_cfg80211_update_replayCounterCallback(void *callbackContext,
168 tpSirGtkOffloadGetInfoRspParams pGtkOffloadGetInfoRsp);
169#endif
Jeff Johnson295189b2012-06-20 16:38:30 -0700170
Shailender Karmuchi15cd0672013-05-15 19:50:04 -0700171void hdd_select_cbmode( hdd_adapter_t *pAdapter,v_U8_t operationChannel);
172
173
Jeff Johnson295189b2012-06-20 16:38:30 -0700174#endif