Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
wlan_bssdef.h
Go to the documentation of this file.
1 /******************************************************************************
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 <[email protected]>
23  * Larry Finger <[email protected]>
24  *
25  ******************************************************************************/
26 #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 
35 /* Set of 8 data rates*/
37 /* Set of 16 data rates */
39 
42  u8 Ssid[32];
43 };
44 
50  Ndis802_11NetworkTypeMax /* not a real type, defined as an upper bound*/
51 };
52 
54  u32 Length; /* Length of structure */
55  u32 HopPattern; /* As defined by 802.11, MSB set */
56  u32 HopSet; /* to one if non-802.11 */
57  u32 DwellTime; /* units are Kusec */
58 };
59 
60 /*
61  FW will only save the channel number in DSConfig.
62  ODI Handler will convert the channel number to freq. number.
63 */
65  u32 Length; /* Length of structure */
66  u32 BeaconPeriod; /* units are Kusec */
67  u32 ATIMWindow; /* units are Kusec */
68  u32 DSConfig; /* Frequency, units are kHz */
70 };
71 
76  Ndis802_11InfrastructureMax, /*Not a real value,defined as upper bound*/
78 };
79 
84 };
85 
86 /*
87  * Length is the 4 bytes multiples of the sume of
88  * 6 * sizeof (unsigned char) + 2 + sizeof (ndis_802_11_ssid) + sizeof (u32)
89  * + sizeof (s32) + sizeof (NDIS_802_11_NETWORK_TYPE)
90  * + sizeof (struct NDIS_802_11_CONFIGURATION)
91  * + sizeof (NDIS_802_11_RATES_EX) + IELength
92 
93  * Except the IELength, all other fields are fixed length. Therefore, we can
94  * define a macro to present the partial sum.
95  */
96 
99  unsigned char MacAddress[6];
109  /*(timestamp, beacon interval, and capability information) */
111 };
112 
120  Ndis802_11AuthModeMax /* Not a real mode, defined as upper bound */
121 };
122 
123 enum {
136 };
137 
138 #define NDIS_802_11_AI_REQFI_CAPABILITIES 1
139 #define NDIS_802_11_AI_REQFI_LISTENINTERVAL 2
140 #define NDIS_802_11_AI_REQFI_CURRENTAPADDRESS 4
141 
142 #define NDIS_802_11_AI_RESFI_CAPABILITIES 1
143 #define NDIS_802_11_AI_RESFI_STATUSCODE 2
144 #define NDIS_802_11_AI_RESFI_ASSOCIATIONID 4
145 
149  unsigned char CurrentAPAddress[6];
150 };
151 
156 };
157 
168 };
169 
170 /* Key mapping keys require a BSSID*/
172  u32 Length; /* Length of this structure */
174  u32 KeyLength; /* length of key in bytes */
175  unsigned char BSSID[6];
176  unsigned long long KeyRSC;
177  u8 KeyMaterial[32]; /* variable length */
178 };
179 
181  u32 Length; /* Length of this structure */
183  unsigned char BSSID[6];
184 };
185 
187  u32 Length; /* Length of this structure */
188  u32 KeyIndex; /* 0 is the per-client key,
189  * 1-N are the global keys */
190  u32 KeyLength; /* length of key in bytes */
191  u8 KeyMaterial[16]; /* variable length depending on above field */
192 };
193 
194 /* mask for authentication/integrity fields */
195 #define NDIS_802_11_AUTH_REQUEST_AUTH_FIELDS 0x0f
196 #define NDIS_802_11_AUTH_REQUEST_REAUTH 0x01
197 #define NDIS_802_11_AUTH_REQUEST_KEYUPDATE 0x02
198 #define NDIS_802_11_AUTH_REQUEST_PAIRWISE_ERROR 0x06
199 #define NDIS_802_11_AUTH_REQUEST_GROUP_ERROR 0x0E
200 
201 /* MIC check time, 60 seconds. */
202 #define MIC_CHECK_TIME 60000000
203 
204 #ifndef Ndis802_11APMode
205 #define Ndis802_11APMode (Ndis802_11InfrastructureMax+1)
206 #endif
207 
208 struct wlan_network {
209  struct list_head list;
210  int network_type; /*refer to ieee80211.h for WIRELESS_11A/B/G */
211  int fixed; /* set to fixed when not to be removed asi
212  * site-surveying */
213  unsigned int last_scanned; /*timestamp for the network */
214  int aid; /*will only be valid when a BSS is joined. */
215  int join_res;
216  struct ndis_wlan_bssid_ex network; /*must be the last item */
217 };
218 
223 };
224 
225 enum VCS_TYPE {
229 };
230 
231 #define PWR_CAM 0
232 #define PWR_MINPS 1
233 #define PWR_MAXPS 2
234 #define PWR_UAPSD 3
235 #define PWR_VOIP 4
236 
242 };
243 
244 #define NUM_PRE_AUTH_KEY 16
245 #define NUM_PMKID_CACHE NUM_PRE_AUTH_KEY
246 
247 /*
248  * WPA2
249  */
252  unsigned char MacAddress[6];
262  u8 IEs[MAX_IE_SZ]; /* (timestamp, beacon interval, and capability
263  * information) */
264 };
265 
266 #endif /* #ifndef WLAN_BSSDEF_H_ */
267