blob: 3b4672d9c75a0b3a8c90ba000ebca7dc7559be8b [file] [log] [blame]
Gopichand Nakkalabd9fa2d2013-01-08 13:16:22 -08001/*
2 * 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 */
Kiran V1ccee932012-12-12 14:49:46 -080021#ifndef __HDD_TDSL_H
22#define __HDD_TDSL_H
23/**===========================================================================
24
25\file wlan_hdd_tdls.h
26
27\brief Linux HDD TDLS include file
Gopichand Nakkala0c1331e2013-01-07 22:49:07 -080028
Kiran V1ccee932012-12-12 14:49:46 -080029==========================================================================*/
30
Chilam NG571c65a2013-01-19 12:27:36 +053031#define MAX_NUM_TDLS_PEER 3
Kiran V1ccee932012-12-12 14:49:46 -080032
Gopichand Nakkalac3694582013-02-13 20:51:22 -080033#define TDLS_SUB_DISCOVERY_PERIOD 100
34
35#define TDLS_MAX_DISCOVER_REQS_PER_TIMER 1
Kiran V1ccee932012-12-12 14:49:46 -080036
Chilam NG571c65a2013-01-19 12:27:36 +053037#define TDLS_DISCOVERY_PERIOD 3600000
Kiran V1ccee932012-12-12 14:49:46 -080038
Chilam NG571c65a2013-01-19 12:27:36 +053039#define TDLS_TX_STATS_PERIOD 3600000
40
41#define TDLS_IMPLICIT_TRIGGER_PKT_THRESHOLD 100
42
43#define TDLS_RX_IDLE_TIMEOUT 5000
44
45#define TDLS_RSSI_TRIGGER_HYSTERESIS 50
46
47typedef struct
48{
Chilam Ng01120412013-02-19 18:32:21 -080049 tANI_U32 tdls;
Chilam NG571c65a2013-01-19 12:27:36 +053050 tANI_U32 tx_period_t;
51 tANI_U32 tx_packet_n;
52 tANI_U32 discovery_period_t;
53 tANI_U32 discovery_tries_n;
Chilam Ng01120412013-02-19 18:32:21 -080054 tANI_U32 idle_timeout_t;
55 tANI_U32 idle_packet_n;
Chilam NG571c65a2013-01-19 12:27:36 +053056 tANI_U32 rssi_hysteresis;
Chilam Ng01120412013-02-19 18:32:21 -080057 tANI_S32 rssi_trigger_threshold;
58 tANI_S32 rssi_teardown_threshold;
Chilam NG571c65a2013-01-19 12:27:36 +053059} tdls_config_params_t;
60
61typedef enum {
Chilam Ng01120412013-02-19 18:32:21 -080062 eTDLS_SUPPORT_DISABLED = 0,
63 eTDLS_SUPPORT_EXPLICIT_TRIGGER_ONLY,
64 eTDLS_SUPPORT_ENABLED,
65} eTDLSSupportMode;
66
67typedef enum {
Chilam NG571c65a2013-01-19 12:27:36 +053068 eTDLS_CAP_NOT_SUPPORTED = -1,
69 eTDLS_CAP_UNKNOWN = 0,
70 eTDLS_CAP_SUPPORTED = 1,
71} eTDLSCapType;
72
73typedef enum {
74 eTDLS_LINK_NOT_CONNECTED = 0,
75 eTDLS_LINK_CONNECTED = 1,
76} eTDLSLinkStatus;
77
78typedef struct {
79 tANI_U16 period;
80 tANI_U16 bytes;
81} tdls_tx_tput_config_t;
82
83typedef struct {
84 tANI_U16 period;
85 tANI_U16 tries;
86} tdls_discovery_config_t;
87
88typedef struct {
89 tANI_U16 timeout;
90} tdls_rx_idle_config_t;
91
92typedef struct {
93 tANI_U16 rssi_thres;
94} tdls_rssi_config_t;
95
Hoonki Lee387663d2013-02-05 18:08:43 -080096typedef struct {
97 struct list_head node;
98 tSirMacAddr peerMac;
99 tANI_U16 staId ;
100 tANI_S8 rssi;
101 tANI_S8 tdls_support;
102 tANI_S8 link_status;
Hoonki Lee11f7dda2013-02-14 16:55:44 -0800103 tANI_U8 signature;
Hoonki Leea34dd892013-02-05 22:56:02 -0800104 tANI_U8 is_responder;
Gopichand Nakkalac3694582013-02-13 20:51:22 -0800105 tANI_U8 discovery_processed;
Hoonki Lee387663d2013-02-05 18:08:43 -0800106 tANI_U16 discovery_attempt;
107 tANI_U16 tx_pkt;
108 tANI_U16 rx_pkt;
109 vos_timer_t peerIdleTimer;
Gopichand Nakkalab977a972013-02-18 19:15:09 -0800110 tANI_U8 isTDLSInProgress;
Hoonki Lee387663d2013-02-05 18:08:43 -0800111} hddTdlsPeer_t;
112
113
114typedef struct {
115 struct list_head peer_list[256];
116 struct mutex lock;
117 struct net_device *dev;
118 vos_timer_t peerDiscoverTimer;
119 vos_timer_t peerUpdateTimer;
120 tdls_config_params_t threshold_config;
Gopichand Nakkalac3694582013-02-13 20:51:22 -0800121 tANI_S32 discovery_peer_cnt;
Gopichand Nakkalab977a972013-02-18 19:15:09 -0800122 tANI_U16 connected_peer_count;
Hoonki Lee387663d2013-02-05 18:08:43 -0800123 tANI_S8 ap_rssi;
124} tdlsCtx_t;
Chilam NG571c65a2013-01-19 12:27:36 +0530125
126int wlan_hdd_tdls_init(struct net_device *dev);
127
128void wlan_hdd_tdls_exit(void);
129
Gopichand Nakkala91b09262013-02-10 14:27:02 -0800130void wlan_hdd_tdls_timers_stop(void);
131
Gopichand Nakkalac3694582013-02-13 20:51:22 -0800132void wlan_hdd_tdls_timers_destroy(void);
133
Hoonki Lee387663d2013-02-05 18:08:43 -0800134void wlan_hdd_tdls_extract_da(struct sk_buff *skb, u8 *mac);
Chilam NG571c65a2013-01-19 12:27:36 +0530135
Hoonki Lee387663d2013-02-05 18:08:43 -0800136void wlan_hdd_tdls_extract_sa(struct sk_buff *skb, u8 *mac);
Chilam Ng1279e232013-01-25 15:06:52 -0800137
Hoonki Lee387663d2013-02-05 18:08:43 -0800138int wlan_hdd_tdls_increment_pkt_count(u8 *mac, u8 tx);
Chilam NG571c65a2013-01-19 12:27:36 +0530139
Hoonki Lee387663d2013-02-05 18:08:43 -0800140int wlan_hdd_tdls_set_sta_id(u8 *mac, u8 staId);
Chilam NG571c65a2013-01-19 12:27:36 +0530141
Hoonki Lee387663d2013-02-05 18:08:43 -0800142hddTdlsPeer_t *wlan_hdd_tdls_find_peer(u8 *mac);
Chilam NG571c65a2013-01-19 12:27:36 +0530143
Hoonki Lee387663d2013-02-05 18:08:43 -0800144hddTdlsPeer_t *wlan_hdd_tdls_get_peer(u8 *mac);
145
146void wlan_hdd_tdls_set_link_status(hddTdlsPeer_t *curr_peer, int status);
Chilam NG571c65a2013-01-19 12:27:36 +0530147
148int wlan_hdd_tdls_set_cap(u8 *mac, int cap);
149
150int wlan_hdd_tdls_set_rssi(u8 *mac, tANI_S8 rxRssi);
151
Hoonki Leea34dd892013-02-05 22:56:02 -0800152int wlan_hdd_tdls_set_responder(u8 *mac, tANI_U8 responder);
153
154int wlan_hdd_tdls_get_responder(u8 *mac);
155
Hoonki Lee11f7dda2013-02-14 16:55:44 -0800156int wlan_hdd_tdls_set_signature(u8 *mac, tANI_U8 uSignature);
157
Chilam Ng01120412013-02-19 18:32:21 -0800158int wlan_hdd_tdls_set_params(struct net_device *dev, tdls_config_params_t *config);
Chilam NG571c65a2013-01-19 12:27:36 +0530159
Hoonki Lee387663d2013-02-05 18:08:43 -0800160int wlan_hdd_tdls_reset_peer(u8 *mac);
161
Gopichand Nakkalab977a972013-02-18 19:15:09 -0800162tANI_U16 wlan_hdd_tdlsConnectedPeers(void);
Lee Hoonkic1262f22013-01-24 21:59:00 -0800163
Chilam Ng16a2a1c2013-01-29 01:27:29 -0800164int wlan_hdd_tdls_get_all_peers(char *buf, int buflen);
165
Gopichand Nakkalac3694582013-02-13 20:51:22 -0800166void wlan_hdd_tdls_connection_callback(hdd_adapter_t *pAdapter);
167
168void wlan_hdd_tdls_disconnection_callback(hdd_adapter_t *pAdapter);
169
Gopichand Nakkalab977a972013-02-18 19:15:09 -0800170void wlan_hdd_tdls_mgmt_completion_callback(hdd_adapter_t *pAdapter, tANI_U32 statusCode);
171
172void wlan_hdd_tdls_increment_peer_count(void);
173
174void wlan_hdd_tdls_decrement_peer_count(void);
175
176void wlan_hdd_tdls_check_bmps(hdd_context_t *pHddCtx);
177
178void wlan_hdd_tdls_set_connection_progress(u8* mac, u8 isProgress);
179
180u8 wlan_hdd_tdls_is_progress(u8* mac, u8 skip_self);
Hoonki Lee387663d2013-02-05 18:08:43 -0800181
Kiran V1ccee932012-12-12 14:49:46 -0800182#endif // __HDD_TDSL_H