staging: brcm80211: deleted struct dot11_bcn_prb
[firefly-linux-kernel-4.4.55.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 <linux/if_ether.h>
21
22 #define DOT11_A3_HDR_LEN                24
23 #define DOT11_A4_HDR_LEN                30
24 #define DOT11_MAC_HDR_LEN               DOT11_A3_HDR_LEN
25 #define DOT11_ICV_AES_LEN               8
26 #define DOT11_QOS_LEN                   2
27
28 #define DOT11_IV_MAX_LEN                8
29
30 #define DOT11_DEFAULT_RTS_LEN           2347
31
32 #define DOT11_MIN_FRAG_LEN              256
33 #define DOT11_MAX_FRAG_LEN              2346
34 #define DOT11_DEFAULT_FRAG_LEN          2346
35
36 #define DOT11_MIN_BEACON_PERIOD         1
37 #define DOT11_MAX_BEACON_PERIOD         0xFFFF
38
39 #define DOT11_MIN_DTIM_PERIOD           1
40 #define DOT11_MAX_DTIM_PERIOD           0xFF
41
42 #define DOT11_OUI_LEN                   3
43
44 #define DOT11_RTS_LEN           16
45 #define DOT11_CTS_LEN           10
46 #define DOT11_ACK_LEN           10
47
48 #define DOT11_BA_BITMAP_LEN             128
49 #define DOT11_BA_LEN            4
50
51 #define DOT11_MGMT_HDR_LEN      24
52
53 #define WME_OUI                 "\x00\x50\xf2"
54 #define WME_VER                 1
55 #define WME_TYPE                2
56 #define WME_SUBTYPE_PARAM_IE    1
57
58 #define AC_BE                   0
59 #define AC_BK                   1
60 #define AC_VI                   2
61 #define AC_VO                   3
62 #define AC_COUNT                4
63
64 typedef u8 ac_bitmap_t;
65
66 #define AC_BITMAP_ALL           0xf
67 #define AC_BITMAP_TST(ab, ac)   (((ab) & (1 << (ac))) != 0)
68
69 struct edcf_acparam {
70         u8 ACI;
71         u8 ECW;
72         u16 TXOP;
73 } __attribute__((packed));
74 typedef struct edcf_acparam edcf_acparam_t;
75
76 struct wme_param_ie {
77         u8 oui[3];
78         u8 type;
79         u8 subtype;
80         u8 version;
81         u8 qosinfo;
82         u8 rsvd;
83         edcf_acparam_t acparam[AC_COUNT];
84 } __attribute__((packed));
85 typedef struct wme_param_ie wme_param_ie_t;
86 #define WME_PARAM_IE_LEN            24
87
88 #define EDCF_AIFSN_MIN               1
89 #define EDCF_AIFSN_MAX               15
90 #define EDCF_AIFSN_MASK              0x0f
91 #define EDCF_ACM_MASK                0x10
92 #define EDCF_ACI_MASK                0x60
93 #define EDCF_ACI_SHIFT               5
94
95 #define EDCF_ECW2CW(exp)             ((1 << (exp)) - 1)
96 #define EDCF_ECWMIN_MASK             0x0f
97 #define EDCF_ECWMAX_MASK             0xf0
98 #define EDCF_ECWMAX_SHIFT            4
99
100 #define EDCF_TXOP2USEC(txop)         ((txop) << 5)
101
102 #define EDCF_AC_BE_ACI_STA           0x03
103 #define EDCF_AC_BE_ECW_STA           0xA4
104 #define EDCF_AC_BE_TXOP_STA          0x0000
105 #define EDCF_AC_BK_ACI_STA           0x27
106 #define EDCF_AC_BK_ECW_STA           0xA4
107 #define EDCF_AC_BK_TXOP_STA          0x0000
108 #define EDCF_AC_VI_ACI_STA           0x42
109 #define EDCF_AC_VI_ECW_STA           0x43
110 #define EDCF_AC_VI_TXOP_STA          0x005e
111 #define EDCF_AC_VO_ACI_STA           0x62
112 #define EDCF_AC_VO_ECW_STA           0x32
113 #define EDCF_AC_VO_TXOP_STA          0x002f
114
115 #define EDCF_AC_VO_TXOP_AP           0x002f
116
117 #define DOT11_OPEN_SYSTEM       0
118 #define DOT11_SHARED_KEY        1
119
120 #define SEQNUM_SHIFT            4
121 #define SEQNUM_MAX              0x1000
122 #define FRAGNUM_MASK            0xF
123
124 #define FC_SUBTYPE_ANY_QOS(s)   ((((fc) & IEEE80211_FCTL_STYPE & (1<<7))) != 0)
125
126 #define FC_KIND_MASK            (IEEE80211_FCTL_FTYPE | IEEE80211_FCTL_STYPE)
127
128 #define FC_PROBE_REQ    (IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_PROBE_REQ)
129 #define FC_PROBE_RESP   (IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_PROBE_RESP)
130 #define FC_BEACON       (IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_BEACON)
131 #define FC_PS_POLL      (IEEE80211_FTYPE_CTL | IEEE80211_STYPE_PSPOLL)
132 #define FC_RTS          (IEEE80211_FTYPE_CTL | IEEE80211_STYPE_RTS)
133 #define FC_CTS          (IEEE80211_FTYPE_CTL | IEEE80211_STYPE_CTS)
134
135 #define TLV_LEN_OFF             1
136 #define TLV_HDR_LEN             2
137 #define TLV_BODY_OFF            2
138
139 #define DOT11_MNG_RSN_ID                        48
140 #define DOT11_MNG_WPA_ID                        221
141 #define DOT11_MNG_VS_ID                         221
142
143 #define DOT11_BSSTYPE_INFRASTRUCTURE            0
144 #define DOT11_BSSTYPE_ANY                       2
145 #define DOT11_SCANTYPE_ACTIVE                   0
146
147 #define PREN_PREAMBLE           24
148 #define PREN_MM_EXT             12
149 #define PREN_PREAMBLE_EXT       4
150
151 #define RIFS_11N_TIME           2
152
153 #define APHY_SLOT_TIME          9
154 #define APHY_SIFS_TIME          16
155 #define APHY_PREAMBLE_TIME      16
156 #define APHY_SIGNAL_TIME        4
157 #define APHY_SYMBOL_TIME        4
158 #define APHY_SERVICE_NBITS      16
159 #define APHY_TAIL_NBITS         6
160 #define APHY_CWMIN              15
161
162 #define BPHY_SLOT_TIME          20
163 #define BPHY_SIFS_TIME          10
164 #define BPHY_PLCP_TIME          192
165 #define BPHY_PLCP_SHORT_TIME    96
166
167 #define DOT11_OFDM_SIGNAL_EXTENSION     6
168
169 #define PHY_CWMAX               1023
170
171 #define DOT11_MAXNUMFRAGS       16
172
173 typedef struct d11cnt {
174         u32 txfrag;
175         u32 txmulti;
176         u32 txfail;
177         u32 txretry;
178         u32 txretrie;
179         u32 rxdup;
180         u32 txrts;
181         u32 txnocts;
182         u32 txnoack;
183         u32 rxfrag;
184         u32 rxmulti;
185         u32 rxcrc;
186         u32 txfrmsnt;
187         u32 rxundec;
188 } d11cnt_t;
189
190 #define MCSSET_LEN      16
191
192 struct ht_cap_ie {
193         u16 cap;
194         u8 params;
195         u8 supp_mcs[MCSSET_LEN];
196         u16 ext_htcap;
197         u32 txbf_cap;
198         u8 as_cap;
199 } __attribute__((packed));
200 typedef struct ht_cap_ie ht_cap_ie_t;
201
202 #define HT_CAP_IE_LEN           26
203
204 #define HT_CAP_MIMO_PS_MASK     0x000C
205 #define HT_CAP_MIMO_PS_OFF      0x0003
206 #define HT_CAP_MIMO_PS_ON       0x0000
207 #define HT_CAP_RX_STBC_MASK     0x0300
208 #define HT_CAP_RX_STBC_SHIFT    8
209 #define HT_CAP_MAX_AMSDU        0x0800
210
211 #define HT_CAP_RX_STBC_NO               0x0
212 #define HT_CAP_RX_STBC_ONE_STREAM       0x1
213
214 #define HT_PARAMS_RX_FACTOR_MASK        0x03
215
216 #define AMPDU_MAX_MPDU_DENSITY  7
217 #define AMPDU_RX_FACTOR_16K     1
218 #define AMPDU_RX_FACTOR_32K     2
219 #define AMPDU_RX_FACTOR_64K     3
220
221 #define AMPDU_DELIMITER_LEN     4
222
223 #define DOT11N_TXBURST          0x0008
224
225 #define WPA_VERSION             1
226 #define WPA_OUI                 "\x00\x50\xF2"
227
228 #define WFA_OUI                 "\x00\x50\xF2"
229 #define WFA_OUI_LEN     3
230
231 #define WFA_OUI_TYPE_WPA        1
232
233 #define RSN_AKM_NONE            0
234 #define RSN_AKM_UNSPECIFIED     1
235 #define RSN_AKM_PSK             2
236
237 #define DOT11_MAX_DEFAULT_KEYS  4
238 #define DOT11_MAX_KEY_SIZE      32
239 #define DOT11_WPA_KEY_RSC_LEN   8
240
241 #define BRCM_OUI                "\x00\x10\x18"
242
243 #endif                          /* _802_11_H_ */