Merge git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging-2.6
[pandora-kernel.git] / drivers / staging / brcm80211 / include / proto / 802.11.h
1 /*
2  * Copyright (c) 2010 Broadcom Corporation
3  *
4  * Permission to use, copy, modify, and/or distribute this software for any
5  * purpose with or without fee is hereby granted, provided that the above
6  * copyright notice and this permission notice appear in all copies.
7  *
8  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
11  * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
13  * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
14  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15  */
16
17 #ifndef _802_11_H_
18 #define _802_11_H_
19
20 #include <proto/wpa.h>
21 #include <packed_section_start.h>
22
23 #define DOT11_A3_HDR_LEN                24
24 #define DOT11_A4_HDR_LEN                30
25 #define DOT11_MAC_HDR_LEN               DOT11_A3_HDR_LEN
26 #define DOT11_FCS_LEN                   4
27 #define DOT11_ICV_AES_LEN               8
28 #define DOT11_QOS_LEN                   2
29
30 #define DOT11_IV_MAX_LEN                8
31
32 #define DOT11_MAX_SSID_LEN              32
33
34 #define DOT11_DEFAULT_RTS_LEN           2347
35
36 #define DOT11_MIN_FRAG_LEN              256
37 #define DOT11_MAX_FRAG_LEN              2346
38 #define DOT11_DEFAULT_FRAG_LEN          2346
39
40 #define DOT11_MIN_BEACON_PERIOD         1
41 #define DOT11_MAX_BEACON_PERIOD         0xFFFF
42
43 #define DOT11_MIN_DTIM_PERIOD           1
44 #define DOT11_MAX_DTIM_PERIOD           0xFF
45
46 #define DOT11_OUI_LEN                   3
47
48 BWL_PRE_PACKED_STRUCT struct dot11_header {
49         u16 fc;
50         u16 durid;
51         struct ether_addr a1;
52         struct ether_addr a2;
53         struct ether_addr a3;
54         u16 seq;
55         struct ether_addr a4;
56 } BWL_POST_PACKED_STRUCT;
57
58 BWL_PRE_PACKED_STRUCT struct dot11_rts_frame {
59         u16 fc;
60         u16 durid;
61         struct ether_addr ra;
62         struct ether_addr ta;
63 } BWL_POST_PACKED_STRUCT;
64
65 #define DOT11_RTS_LEN           16
66 #define DOT11_CTS_LEN           10
67 #define DOT11_ACK_LEN           10
68
69 #define DOT11_BA_BITMAP_LEN             128
70 #define DOT11_BA_LEN            4
71
72 BWL_PRE_PACKED_STRUCT struct dot11_management_header {
73         u16 fc;
74         u16 durid;
75         struct ether_addr da;
76         struct ether_addr sa;
77         struct ether_addr bssid;
78         u16 seq;
79 } BWL_POST_PACKED_STRUCT;
80 #define DOT11_MGMT_HDR_LEN      24
81
82 BWL_PRE_PACKED_STRUCT struct dot11_bcn_prb {
83         u32 timestamp[2];
84         u16 beacon_interval;
85         u16 capability;
86 } BWL_POST_PACKED_STRUCT;
87 #define DOT11_BCN_PRB_LEN       12
88
89 #define WME_OUI                 "\x00\x50\xf2"
90 #define WME_VER                 1
91 #define WME_TYPE                2
92 #define WME_SUBTYPE_PARAM_IE    1
93
94 #define AC_BE                   0
95 #define AC_BK                   1
96 #define AC_VI                   2
97 #define AC_VO                   3
98 #define AC_COUNT                4
99
100 typedef u8 ac_bitmap_t;
101
102 #define AC_BITMAP_ALL           0xf
103 #define AC_BITMAP_TST(ab, ac)   (((ab) & (1 << (ac))) != 0)
104
105 BWL_PRE_PACKED_STRUCT struct edcf_acparam {
106         u8 ACI;
107         u8 ECW;
108         u16 TXOP;
109 } BWL_POST_PACKED_STRUCT;
110 typedef struct edcf_acparam edcf_acparam_t;
111
112 BWL_PRE_PACKED_STRUCT struct wme_param_ie {
113         u8 oui[3];
114         u8 type;
115         u8 subtype;
116         u8 version;
117         u8 qosinfo;
118         u8 rsvd;
119         edcf_acparam_t acparam[AC_COUNT];
120 } BWL_POST_PACKED_STRUCT;
121 typedef struct wme_param_ie wme_param_ie_t;
122 #define WME_PARAM_IE_LEN            24
123
124 #define EDCF_AIFSN_MIN               1
125 #define EDCF_AIFSN_MAX               15
126 #define EDCF_AIFSN_MASK              0x0f
127 #define EDCF_ACM_MASK                0x10
128 #define EDCF_ACI_MASK                0x60
129 #define EDCF_ACI_SHIFT               5
130
131 #define EDCF_ECW2CW(exp)             ((1 << (exp)) - 1)
132 #define EDCF_ECWMIN_MASK             0x0f
133 #define EDCF_ECWMAX_MASK             0xf0
134 #define EDCF_ECWMAX_SHIFT            4
135
136 #define EDCF_TXOP2USEC(txop)         ((txop) << 5)
137
138 #define EDCF_AC_BE_ACI_STA           0x03
139 #define EDCF_AC_BE_ECW_STA           0xA4
140 #define EDCF_AC_BE_TXOP_STA          0x0000
141 #define EDCF_AC_BK_ACI_STA           0x27
142 #define EDCF_AC_BK_ECW_STA           0xA4
143 #define EDCF_AC_BK_TXOP_STA          0x0000
144 #define EDCF_AC_VI_ACI_STA           0x42
145 #define EDCF_AC_VI_ECW_STA           0x43
146 #define EDCF_AC_VI_TXOP_STA          0x005e
147 #define EDCF_AC_VO_ACI_STA           0x62
148 #define EDCF_AC_VO_ECW_STA           0x32
149 #define EDCF_AC_VO_TXOP_STA          0x002f
150
151 #define EDCF_AC_VO_TXOP_AP           0x002f
152
153 #define DOT11_OPEN_SYSTEM       0
154 #define DOT11_SHARED_KEY        1
155
156 #define FC_TYPE_MASK            0xC
157 #define FC_TYPE_SHIFT           2
158 #define FC_SUBTYPE_MASK         0xF0
159 #define FC_SUBTYPE_SHIFT        4
160 #define FC_MOREFRAG             0x400
161
162 #define SEQNUM_SHIFT            4
163 #define SEQNUM_MAX              0x1000
164 #define FRAGNUM_MASK            0xF
165
166 #define FC_TYPE_MNG             0
167 #define FC_TYPE_CTL             1
168 #define FC_TYPE_DATA            2
169
170 #define FC_SUBTYPE_PROBE_REQ            4
171 #define FC_SUBTYPE_PROBE_RESP           5
172 #define FC_SUBTYPE_BEACON               8
173 #define FC_SUBTYPE_PS_POLL              10
174 #define FC_SUBTYPE_RTS                  11
175 #define FC_SUBTYPE_CTS                  12
176
177 #define FC_SUBTYPE_ANY_QOS(s)           (((s) & 8) != 0)
178
179 #define FC_KIND_MASK            (FC_TYPE_MASK | FC_SUBTYPE_MASK)
180
181 #define FC_KIND(t, s)   (((t) << FC_TYPE_SHIFT) | ((s) << FC_SUBTYPE_SHIFT))
182
183 #define FC_SUBTYPE(fc)  (((fc) & FC_SUBTYPE_MASK) >> FC_SUBTYPE_SHIFT)
184 #define FC_TYPE(fc)     (((fc) & FC_TYPE_MASK) >> FC_TYPE_SHIFT)
185
186 #define FC_PROBE_REQ    FC_KIND(FC_TYPE_MNG, FC_SUBTYPE_PROBE_REQ)
187 #define FC_PROBE_RESP   FC_KIND(FC_TYPE_MNG, FC_SUBTYPE_PROBE_RESP)
188 #define FC_BEACON       FC_KIND(FC_TYPE_MNG, FC_SUBTYPE_BEACON)
189 #define FC_PS_POLL      FC_KIND(FC_TYPE_CTL, FC_SUBTYPE_PS_POLL)
190 #define FC_RTS          FC_KIND(FC_TYPE_CTL, FC_SUBTYPE_RTS)
191 #define FC_CTS          FC_KIND(FC_TYPE_CTL, FC_SUBTYPE_CTS)
192
193 #define TLV_LEN_OFF             1
194 #define TLV_HDR_LEN             2
195 #define TLV_BODY_OFF            2
196
197 #define DOT11_MNG_RSN_ID                        48
198 #define DOT11_MNG_WPA_ID                        221
199 #define DOT11_MNG_VS_ID                         221
200
201 #define DOT11_CAP_ESS                           0x0001
202 #define DOT11_CAP_IBSS                          0x0002
203 #define DOT11_CAP_PRIVACY                       0x0010
204 #define DOT11_CAP_SHORT                         0x0020
205 #define DOT11_CAP_SHORTSLOT                     0x0400
206
207 #define DOT11_BSSTYPE_INFRASTRUCTURE            0
208 #define DOT11_BSSTYPE_ANY                       2
209 #define DOT11_SCANTYPE_ACTIVE                   0
210
211 #define PREN_PREAMBLE           24
212 #define PREN_MM_EXT             12
213 #define PREN_PREAMBLE_EXT       4
214
215 #define RIFS_11N_TIME           2
216
217 #define APHY_SLOT_TIME          9
218 #define APHY_SIFS_TIME          16
219 #define APHY_PREAMBLE_TIME      16
220 #define APHY_SIGNAL_TIME        4
221 #define APHY_SYMBOL_TIME        4
222 #define APHY_SERVICE_NBITS      16
223 #define APHY_TAIL_NBITS         6
224 #define APHY_CWMIN              15
225
226 #define BPHY_SLOT_TIME          20
227 #define BPHY_SIFS_TIME          10
228 #define BPHY_PLCP_TIME          192
229 #define BPHY_PLCP_SHORT_TIME    96
230
231 #define DOT11_OFDM_SIGNAL_EXTENSION     6
232
233 #define PHY_CWMAX               1023
234
235 #define DOT11_MAXNUMFRAGS       16
236
237 typedef struct d11cnt {
238         u32 txfrag;
239         u32 txmulti;
240         u32 txfail;
241         u32 txretry;
242         u32 txretrie;
243         u32 rxdup;
244         u32 txrts;
245         u32 txnocts;
246         u32 txnoack;
247         u32 rxfrag;
248         u32 rxmulti;
249         u32 rxcrc;
250         u32 txfrmsnt;
251         u32 rxundec;
252 } d11cnt_t;
253
254 #define MCSSET_LEN      16
255
256 BWL_PRE_PACKED_STRUCT struct ht_cap_ie {
257         u16 cap;
258         u8 params;
259         u8 supp_mcs[MCSSET_LEN];
260         u16 ext_htcap;
261         u32 txbf_cap;
262         u8 as_cap;
263 } BWL_POST_PACKED_STRUCT;
264 typedef struct ht_cap_ie ht_cap_ie_t;
265
266 #define HT_CAP_IE_LEN           26
267
268 #define HT_CAP_LDPC_CODING      0x0001
269 #define HT_CAP_40MHZ            0x0002
270 #define HT_CAP_MIMO_PS_MASK     0x000C
271 #define HT_CAP_MIMO_PS_SHIFT    0x0002
272 #define HT_CAP_MIMO_PS_OFF      0x0003
273 #define HT_CAP_MIMO_PS_ON       0x0000
274 #define HT_CAP_GF               0x0010
275 #define HT_CAP_SHORT_GI_20      0x0020
276 #define HT_CAP_SHORT_GI_40      0x0040
277 #define HT_CAP_TX_STBC          0x0080
278 #define HT_CAP_RX_STBC_MASK     0x0300
279 #define HT_CAP_RX_STBC_SHIFT    8
280 #define HT_CAP_MAX_AMSDU        0x0800
281 #define HT_CAP_DSSS_CCK 0x1000
282 #define HT_CAP_40MHZ_INTOLERANT 0x4000
283
284 #define HT_CAP_RX_STBC_NO               0x0
285 #define HT_CAP_RX_STBC_ONE_STREAM       0x1
286
287 #define HT_PARAMS_RX_FACTOR_MASK        0x03
288
289 #define AMPDU_MAX_MPDU_DENSITY  7
290 #define AMPDU_RX_FACTOR_16K     1
291 #define AMPDU_RX_FACTOR_32K     2
292 #define AMPDU_RX_FACTOR_64K     3
293
294 #define AMPDU_DELIMITER_LEN     4
295
296 #define DOT11N_TXBURST          0x0008
297
298 #define WPA_VERSION             1
299 #define WPA_OUI                 "\x00\x50\xF2"
300
301 #define WFA_OUI                 "\x00\x50\xF2"
302 #define WFA_OUI_LEN     3
303
304 #define WFA_OUI_TYPE_WPA        1
305
306 #define RSN_AKM_NONE            0
307 #define RSN_AKM_UNSPECIFIED     1
308 #define RSN_AKM_PSK             2
309
310 #define DOT11_MAX_DEFAULT_KEYS  4
311 #define DOT11_MAX_KEY_SIZE      32
312 #define DOT11_WPA_KEY_RSC_LEN   8
313
314 #define WEP1_KEY_SIZE           5
315 #define WEP128_KEY_SIZE         13
316 #define TKIP_KEY_SIZE           32
317 #define AES_KEY_SIZE            16
318
319 #define BRCM_OUI                "\x00\x10\x18"
320 #include <packed_section_end.h>
321
322 #endif                          /* _802_11_H_ */