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