blob: 6f1709e0ccb8c6ad38440283ba0a1ef3c9d3d514 [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
80#define HDD_P2P_WILDCARD_SSID "DIRECT-" //TODO Put it in proper place;
81#define HDD_P2P_WILDCARD_SSID_LEN 7
82
83#define WPA_OUI_TYPE "\x00\x50\xf2\x01"
84#define BLACKLIST_OUI_TYPE "\x00\x50\x00\x00"
85#define WHITELIST_OUI_TYPE "\x00\x50\x00\x01"
86#define WPA_OUI_TYPE_SIZE 4
87
88#define WLAN_BSS_MEMBERSHIP_SELECTOR_HT_PHY 127
89#define BASIC_RATE_MASK 0x80
90#define RATE_MASK 0x7f
91
Madan Mohan Koyyalamudi86f629e2012-11-09 16:27:29 -080092#ifdef WLAN_ENABLE_AGEIE_ON_SCAN_RESULTS
93/* GPS application requirement */
94#define QCOM_VENDOR_IE_ID 221
95#define QCOM_OUI1 0x00
96#define QCOM_OUI2 0xA0
97#define QCOM_OUI3 0xC6
98#define QCOM_VENDOR_IE_AGE_TYPE 0x100
99#define QCOM_VENDOR_IE_AGE_LEN 4
100
Gopichand Nakkalab977a972013-02-18 19:15:09 -0800101#ifdef FEATURE_WLAN_TDLS
102#define WLAN_IS_TDLS_SETUP_ACTION(action) \
103 ((SIR_MAC_TDLS_SETUP_REQ <= action) && (SIR_MAC_TDLS_SETUP_CNF >= action))
104#endif
105
Madan Mohan Koyyalamudi86f629e2012-11-09 16:27:29 -0800106typedef struct {
107 u8 element_id;
108 u8 len;
109 u8 oui_1;
110 u8 oui_2;
111 u8 oui_3;
112 u32 type;
113 u32 age;
114}__attribute__((packed)) qcom_ie_age ;
115#endif
116
Jeff Johnson295189b2012-06-20 16:38:30 -0700117struct cfg80211_bss* wlan_hdd_cfg80211_update_bss_db( hdd_adapter_t *pAdapter,
118 tCsrRoamInfo *pRoamInfo
119 );
Jeff Johnson04dd8a82012-06-29 20:41:40 -0700120
121#ifdef FEATURE_WLAN_LFR
122int wlan_hdd_cfg80211_pmksa_candidate_notify(
123 hdd_adapter_t *pAdapter, tCsrRoamInfo *pRoamInfo,
124 int index, bool preauth );
125#endif
126
Jeff Johnson295189b2012-06-20 16:38:30 -0700127#ifdef FEATURE_WLAN_WAPI
128void wlan_hdd_cfg80211_set_key_wapi(hdd_adapter_t* pAdapter,
129 u8 key_index, const u8 *mac_addr, u8 *key , int key_Len);
130#endif
131struct wiphy *wlan_hdd_cfg80211_init(int priv_size);
132
Hoonki Lee93e67ff2013-03-19 15:49:25 -0700133int wlan_hdd_cfg80211_scan( struct wiphy *wiphy,
134#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,6,0))
135 struct net_device *dev,
136#endif
137 struct cfg80211_scan_request *request);
138
Jeff Johnson295189b2012-06-20 16:38:30 -0700139int wlan_hdd_cfg80211_register(struct device *dev,
140 struct wiphy *wiphy,
141 hdd_config_t *pCfg
142 );
143
144void wlan_hdd_cfg80211_post_voss_start(hdd_adapter_t* pAdapter);
145
146void wlan_hdd_cfg80211_pre_voss_stop(hdd_adapter_t* pAdapter);
147
Madan Mohan Koyyalamudic3a240c2012-09-28 15:34:08 -0700148int wlan_hdd_crda_reg_notifier(struct wiphy *wiphy, struct regulatory_request *request);
149int wlan_hdd_get_crda_regd_entry(struct wiphy *wiphy, hdd_config_t *pCfg);
Madan Mohan Koyyalamudid5acbf52012-11-28 01:45:08 +0530150extern v_VOID_t hdd_connSetConnectionState( hdd_station_ctx_t *pHddStaCtx,
151 eConnectionState connState );
Chilam NG571c65a2013-01-19 12:27:36 +0530152#ifdef FEATURE_WLAN_TDLS
153int wlan_hdd_cfg80211_send_tdls_discover_req(struct wiphy *wiphy,
154 struct net_device *dev, u8 *peer);
155#endif
Jeff Johnson295189b2012-06-20 16:38:30 -0700156
Jeff Johnson295189b2012-06-20 16:38:30 -0700157
158#endif