blob: 86a88b493a43df2acb0de5661aca7a3f2b99c136 [file] [log] [blame]
Ali Baharcf3e6882011-09-04 03:14:04 +08001/******************************************************************************
2 *
3 * Copyright(c) 2007 - 2010 Realtek Corporation. All rights reserved.
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of version 2 of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
17 *
18 * Modifications for inclusion into the Linux staging tree are
19 * Copyright(c) 2010 Larry Finger. All rights reserved.
20 *
21 * Contact information:
22 * WLAN FAE <wlanfae@realtek.com>
23 * Larry Finger <Larry.Finger@lwfinger.net>
24 *
25 ******************************************************************************/
Larry Finger2865d42c2010-08-20 10:15:30 -050026#ifndef __WLAN_BSSDEF_H__
27#define __WLAN_BSSDEF_H__
28
29#define MAX_IE_SZ 768
30
31#define NDIS_802_11_LENGTH_SSID 32
32#define NDIS_802_11_LENGTH_RATES 8
33#define NDIS_802_11_LENGTH_RATES_EX 16
34
Larry Finger2865d42c2010-08-20 10:15:30 -050035struct ndis_802_11_ssid {
Javier M. Mellid05937582011-04-02 03:01:49 +020036 u32 SsidLength;
37 u8 Ssid[32];
Larry Finger2865d42c2010-08-20 10:15:30 -050038};
39
40enum NDIS_802_11_NETWORK_TYPE {
Javier M. Mellid05937582011-04-02 03:01:49 +020041 Ndis802_11FH,
42 Ndis802_11DS,
43 Ndis802_11OFDM5,
44 Ndis802_11OFDM24,
45 Ndis802_11NetworkTypeMax /* not a real type, defined as an upper bound*/
Larry Finger2865d42c2010-08-20 10:15:30 -050046};
47
48struct NDIS_802_11_CONFIGURATION_FH {
Javier M. Mellid05937582011-04-02 03:01:49 +020049 u32 Length; /* Length of structure */
50 u32 HopPattern; /* As defined by 802.11, MSB set */
51 u32 HopSet; /* to one if non-802.11 */
52 u32 DwellTime; /* units are Kusec */
Larry Finger2865d42c2010-08-20 10:15:30 -050053};
54
55/*
56 FW will only save the channel number in DSConfig.
57 ODI Handler will convert the channel number to freq. number.
58*/
59struct NDIS_802_11_CONFIGURATION {
Javier M. Mellid05937582011-04-02 03:01:49 +020060 u32 Length; /* Length of structure */
61 u32 BeaconPeriod; /* units are Kusec */
62 u32 ATIMWindow; /* units are Kusec */
63 u32 DSConfig; /* Frequency, units are kHz */
64 struct NDIS_802_11_CONFIGURATION_FH FHConfig;
Larry Finger2865d42c2010-08-20 10:15:30 -050065};
66
67enum NDIS_802_11_NETWORK_INFRASTRUCTURE {
Javier M. Mellid05937582011-04-02 03:01:49 +020068 Ndis802_11IBSS,
69 Ndis802_11Infrastructure,
70 Ndis802_11AutoUnknown,
71 Ndis802_11InfrastructureMax, /*Not a real value,defined as upper bound*/
72 Ndis802_11APMode
Larry Finger2865d42c2010-08-20 10:15:30 -050073};
74
75struct NDIS_802_11_FIXED_IEs {
Javier M. Mellid05937582011-04-02 03:01:49 +020076 u8 Timestamp[8];
77 u16 BeaconInterval;
78 u16 Capabilities;
Larry Finger2865d42c2010-08-20 10:15:30 -050079};
80
Joshua Clayton44367872015-08-05 17:17:18 -070081struct wlan_bssid_ex {
Javier M. Mellid05937582011-04-02 03:01:49 +020082 u32 Length;
83 unsigned char MacAddress[6];
84 u8 Reserved[2];
85 struct ndis_802_11_ssid Ssid;
86 u32 Privacy;
87 s32 Rssi;
88 enum NDIS_802_11_NETWORK_TYPE NetworkTypeInUse;
89 struct NDIS_802_11_CONFIGURATION Configuration;
90 enum NDIS_802_11_NETWORK_INFRASTRUCTURE InfrastructureMode;
Joshua Clayton7fb539e2015-08-05 17:17:21 -070091 u8 rates[NDIS_802_11_LENGTH_RATES_EX];
Joshua Clayton9bdb70e2015-08-05 17:17:16 -070092 /* number of content bytes in EIs, which varies */
Javier M. Mellid05937582011-04-02 03:01:49 +020093 u32 IELength;
94 /*(timestamp, beacon interval, and capability information) */
95 u8 IEs[MAX_IE_SZ];
Larry Finger2865d42c2010-08-20 10:15:30 -050096};
97
98enum NDIS_802_11_AUTHENTICATION_MODE {
Javier M. Mellid05937582011-04-02 03:01:49 +020099 Ndis802_11AuthModeOpen,
100 Ndis802_11AuthModeShared,
101 Ndis802_11AuthModeAutoSwitch,
102 Ndis802_11AuthModeWPA,
103 Ndis802_11AuthModeWPAPSK,
104 Ndis802_11AuthModeWPANone,
105 Ndis802_11AuthModeMax /* Not a real mode, defined as upper bound */
Larry Finger2865d42c2010-08-20 10:15:30 -0500106};
107
108enum {
Javier M. Mellid05937582011-04-02 03:01:49 +0200109 Ndis802_11WEPEnabled,
110 Ndis802_11Encryption1Enabled = Ndis802_11WEPEnabled,
111 Ndis802_11WEPDisabled,
112 Ndis802_11EncryptionDisabled = Ndis802_11WEPDisabled,
113 Ndis802_11WEPKeyAbsent,
114 Ndis802_11Encryption1KeyAbsent = Ndis802_11WEPKeyAbsent,
115 Ndis802_11WEPNotSupported,
116 Ndis802_11EncryptionNotSupported = Ndis802_11WEPNotSupported,
117 Ndis802_11Encryption2Enabled,
118 Ndis802_11Encryption2KeyAbsent,
119 Ndis802_11Encryption3Enabled,
120 Ndis802_11Encryption3KeyAbsent
Larry Finger2865d42c2010-08-20 10:15:30 -0500121};
122
123#define NDIS_802_11_AI_REQFI_CAPABILITIES 1
124#define NDIS_802_11_AI_REQFI_LISTENINTERVAL 2
125#define NDIS_802_11_AI_REQFI_CURRENTAPADDRESS 4
126
127#define NDIS_802_11_AI_RESFI_CAPABILITIES 1
128#define NDIS_802_11_AI_RESFI_STATUSCODE 2
129#define NDIS_802_11_AI_RESFI_ASSOCIATIONID 4
130
131struct NDIS_802_11_AI_REQFI {
Javier M. Mellid05937582011-04-02 03:01:49 +0200132 u16 Capabilities;
133 u16 ListenInterval;
134 unsigned char CurrentAPAddress[6];
Larry Finger2865d42c2010-08-20 10:15:30 -0500135};
136
137struct NDIS_802_11_AI_RESFI {
Javier M. Mellid05937582011-04-02 03:01:49 +0200138 u16 Capabilities;
139 u16 StatusCode;
140 u16 AssociationId;
Larry Finger2865d42c2010-08-20 10:15:30 -0500141};
142
143struct NDIS_802_11_ASSOCIATION_INFORMATION {
Javier M. Mellid05937582011-04-02 03:01:49 +0200144 u32 Length;
145 u16 AvailableRequestFixedIEs;
146 struct NDIS_802_11_AI_REQFI RequestFixedIEs;
147 u32 RequestIELength;
148 u32 OffsetRequestIEs;
149 u16 AvailableResponseFixedIEs;
150 struct NDIS_802_11_AI_RESFI ResponseFixedIEs;
151 u32 ResponseIELength;
152 u32 OffsetResponseIEs;
Larry Finger2865d42c2010-08-20 10:15:30 -0500153};
154
155/* Key mapping keys require a BSSID*/
156struct NDIS_802_11_KEY {
Javier M. Mellid05937582011-04-02 03:01:49 +0200157 u32 Length; /* Length of this structure */
158 u32 KeyIndex;
159 u32 KeyLength; /* length of key in bytes */
160 unsigned char BSSID[6];
161 unsigned long long KeyRSC;
162 u8 KeyMaterial[32]; /* variable length */
Larry Finger2865d42c2010-08-20 10:15:30 -0500163};
164
165struct NDIS_802_11_REMOVE_KEY {
Javier M. Mellid05937582011-04-02 03:01:49 +0200166 u32 Length; /* Length of this structure */
167 u32 KeyIndex;
168 unsigned char BSSID[6];
Larry Finger2865d42c2010-08-20 10:15:30 -0500169};
170
171struct NDIS_802_11_WEP {
Javier M. Mellid05937582011-04-02 03:01:49 +0200172 u32 Length; /* Length of this structure */
173 u32 KeyIndex; /* 0 is the per-client key,
Raphaël Beamontebef611a2016-09-09 11:31:45 -0400174 * 1-N are the global keys
175 */
Javier M. Mellid05937582011-04-02 03:01:49 +0200176 u32 KeyLength; /* length of key in bytes */
177 u8 KeyMaterial[16]; /* variable length depending on above field */
Larry Finger2865d42c2010-08-20 10:15:30 -0500178};
179
180/* mask for authentication/integrity fields */
181#define NDIS_802_11_AUTH_REQUEST_AUTH_FIELDS 0x0f
182#define NDIS_802_11_AUTH_REQUEST_REAUTH 0x01
183#define NDIS_802_11_AUTH_REQUEST_KEYUPDATE 0x02
184#define NDIS_802_11_AUTH_REQUEST_PAIRWISE_ERROR 0x06
185#define NDIS_802_11_AUTH_REQUEST_GROUP_ERROR 0x0E
186
187/* MIC check time, 60 seconds. */
188#define MIC_CHECK_TIME 60000000
189
190#ifndef Ndis802_11APMode
191#define Ndis802_11APMode (Ndis802_11InfrastructureMax+1)
192#endif
193
194struct wlan_network {
195 struct list_head list;
196 int network_type; /*refer to ieee80211.h for WIRELESS_11A/B/G */
197 int fixed; /* set to fixed when not to be removed asi
Raphaël Beamontebef611a2016-09-09 11:31:45 -0400198 * site-surveying
199 */
Larry Finger2865d42c2010-08-20 10:15:30 -0500200 unsigned int last_scanned; /*timestamp for the network */
201 int aid; /*will only be valid when a BSS is joined. */
202 int join_res;
Joshua Clayton44367872015-08-05 17:17:18 -0700203 struct wlan_bssid_ex network; /*must be the last item */
Larry Finger2865d42c2010-08-20 10:15:30 -0500204};
205
206enum VRTL_CARRIER_SENSE {
Javier M. Mellid05937582011-04-02 03:01:49 +0200207 DISABLE_VCS,
208 ENABLE_VCS,
209 AUTO_VCS
Larry Finger2865d42c2010-08-20 10:15:30 -0500210};
211
212enum VCS_TYPE {
Javier M. Mellid05937582011-04-02 03:01:49 +0200213 NONE_VCS,
214 RTS_CTS,
215 CTS_TO_SELF
Larry Finger2865d42c2010-08-20 10:15:30 -0500216};
217
218#define PWR_CAM 0
219#define PWR_MINPS 1
220#define PWR_MAXPS 2
221#define PWR_UAPSD 3
222#define PWR_VOIP 4
223
224enum UAPSD_MAX_SP {
225 NO_LIMIT,
Javier M. Mellid05937582011-04-02 03:01:49 +0200226 TWO_MSDU,
227 FOUR_MSDU,
228 SIX_MSDU
Larry Finger2865d42c2010-08-20 10:15:30 -0500229};
230
231#define NUM_PRE_AUTH_KEY 16
232#define NUM_PMKID_CACHE NUM_PRE_AUTH_KEY
233
Larry Finger2865d42c2010-08-20 10:15:30 -0500234#endif /* #ifndef WLAN_BSSDEF_H_ */
235