wifi.h 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617
  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 <wlanfae@realtek.com>
  23. * Larry Finger <Larry.Finger@lwfinger.net>
  24. *
  25. ******************************************************************************/
  26. #ifndef _WIFI_H_
  27. #define _WIFI_H_
  28. #include <linux/compiler.h>
  29. #ifdef BIT
  30. #undef BIT
  31. #endif
  32. #define BIT(x) (1 << (x))
  33. #define WLAN_ETHHDR_LEN 14
  34. #define WLAN_ETHADDR_LEN 6
  35. #define WLAN_IEEE_OUI_LEN 3
  36. #define WLAN_ADDR_LEN 6
  37. #define WLAN_CRC_LEN 4
  38. #define WLAN_BSSID_LEN 6
  39. #define WLAN_BSS_TS_LEN 8
  40. #define WLAN_HDR_A3_LEN 24
  41. #define WLAN_HDR_A4_LEN 30
  42. #define WLAN_HDR_A3_QOS_LEN 26
  43. #define WLAN_HDR_A4_QOS_LEN 32
  44. #define WLAN_SSID_MAXLEN 32
  45. #define WLAN_DATA_MAXLEN 2312
  46. #define WLAN_A3_PN_OFFSET 24
  47. #define WLAN_A4_PN_OFFSET 30
  48. #define WLAN_MIN_ETHFRM_LEN 60
  49. #define WLAN_MAX_ETHFRM_LEN 1514
  50. #define WLAN_ETHHDR_LEN 14
  51. #define P80211CAPTURE_VERSION 0x80211001
  52. enum WIFI_FRAME_TYPE {
  53. WIFI_MGT_TYPE = (0),
  54. WIFI_CTRL_TYPE = (BIT(2)),
  55. WIFI_DATA_TYPE = (BIT(3)),
  56. WIFI_QOS_DATA_TYPE = (BIT(7)|BIT(3)), /*!< QoS Data */
  57. };
  58. enum WIFI_FRAME_SUBTYPE {
  59. /* below is for mgt frame */
  60. WIFI_ASSOCREQ = (0 | WIFI_MGT_TYPE),
  61. WIFI_ASSOCRSP = (BIT(4) | WIFI_MGT_TYPE),
  62. WIFI_REASSOCREQ = (BIT(5) | WIFI_MGT_TYPE),
  63. WIFI_REASSOCRSP = (BIT(5) | BIT(4) | WIFI_MGT_TYPE),
  64. WIFI_PROBEREQ = (BIT(6) | WIFI_MGT_TYPE),
  65. WIFI_PROBERSP = (BIT(6) | BIT(4) | WIFI_MGT_TYPE),
  66. WIFI_BEACON = (BIT(7) | WIFI_MGT_TYPE),
  67. WIFI_ATIM = (BIT(7) | BIT(4) | WIFI_MGT_TYPE),
  68. WIFI_DISASSOC = (BIT(7) | BIT(5) | WIFI_MGT_TYPE),
  69. WIFI_AUTH = (BIT(7) | BIT(5) | BIT(4) | WIFI_MGT_TYPE),
  70. WIFI_DEAUTH = (BIT(7) | BIT(6) | WIFI_MGT_TYPE),
  71. WIFI_ACTION = (BIT(7) | BIT(6) | BIT(4) | WIFI_MGT_TYPE),
  72. /* below is for control frame */
  73. WIFI_PSPOLL = (BIT(7) | BIT(5) | WIFI_CTRL_TYPE),
  74. WIFI_RTS = (BIT(7) | BIT(5) | BIT(4) | WIFI_CTRL_TYPE),
  75. WIFI_CTS = (BIT(7) | BIT(6) | WIFI_CTRL_TYPE),
  76. WIFI_ACK = (BIT(7) | BIT(6) | BIT(4) | WIFI_CTRL_TYPE),
  77. WIFI_CFEND = (BIT(7) | BIT(6) | BIT(5) | WIFI_CTRL_TYPE),
  78. WIFI_CFEND_CFACK = (BIT(7) | BIT(6) | BIT(5) | BIT(4) | WIFI_CTRL_TYPE),
  79. /* below is for data frame */
  80. WIFI_DATA = (0 | WIFI_DATA_TYPE),
  81. WIFI_DATA_CFACK = (BIT(4) | WIFI_DATA_TYPE),
  82. WIFI_DATA_CFPOLL = (BIT(5) | WIFI_DATA_TYPE),
  83. WIFI_DATA_CFACKPOLL = (BIT(5) | BIT(4) | WIFI_DATA_TYPE),
  84. WIFI_DATA_NULL = (BIT(6) | WIFI_DATA_TYPE),
  85. WIFI_CF_ACK = (BIT(6) | BIT(4) | WIFI_DATA_TYPE),
  86. WIFI_CF_POLL = (BIT(6) | BIT(5) | WIFI_DATA_TYPE),
  87. WIFI_CF_ACKPOLL = (BIT(6) | BIT(5) | BIT(4) | WIFI_DATA_TYPE),
  88. };
  89. enum WIFI_REASON_CODE {
  90. _RSON_RESERVED_ = 0,
  91. _RSON_UNSPECIFIED_ = 1,
  92. _RSON_AUTH_NO_LONGER_VALID_ = 2,
  93. _RSON_DEAUTH_STA_LEAVING_ = 3,
  94. _RSON_INACTIVITY_ = 4,
  95. _RSON_UNABLE_HANDLE_ = 5,
  96. _RSON_CLS2_ = 6,
  97. _RSON_CLS3_ = 7,
  98. _RSON_DISAOC_STA_LEAVING_ = 8,
  99. _RSON_ASOC_NOT_AUTH_ = 9,
  100. /* WPA reason */
  101. _RSON_INVALID_IE_ = 13,
  102. _RSON_MIC_FAILURE_ = 14,
  103. _RSON_4WAY_HNDSHK_TIMEOUT_ = 15,
  104. _RSON_GROUP_KEY_UPDATE_TIMEOUT_ = 16,
  105. _RSON_DIFF_IE_ = 17,
  106. _RSON_MLTCST_CIPHER_NOT_VALID_ = 18,
  107. _RSON_UNICST_CIPHER_NOT_VALID_ = 19,
  108. _RSON_AKMP_NOT_VALID_ = 20,
  109. _RSON_UNSUPPORT_RSNE_VER_ = 21,
  110. _RSON_INVALID_RSNE_CAP_ = 22,
  111. _RSON_IEEE_802DOT1X_AUTH_FAIL_ = 23,
  112. /* below are Realtek definitions */
  113. _RSON_PMK_NOT_AVAILABLE_ = 24,
  114. };
  115. enum WIFI_STATUS_CODE {
  116. _STATS_SUCCESSFUL_ = 0,
  117. _STATS_FAILURE_ = 1,
  118. _STATS_CAP_FAIL_ = 10,
  119. _STATS_NO_ASOC_ = 11,
  120. _STATS_OTHER_ = 12,
  121. _STATS_NO_SUPP_ALG_ = 13,
  122. _STATS_OUT_OF_AUTH_SEQ_ = 14,
  123. _STATS_CHALLENGE_FAIL_ = 15,
  124. _STATS_AUTH_TIMEOUT_ = 16,
  125. _STATS_UNABLE_HANDLE_STA_ = 17,
  126. _STATS_RATE_FAIL_ = 18,
  127. };
  128. enum WIFI_REG_DOMAIN {
  129. DOMAIN_FCC = 1,
  130. DOMAIN_IC = 2,
  131. DOMAIN_ETSI = 3,
  132. DOMAIN_SPAIN = 4,
  133. DOMAIN_FRANCE = 5,
  134. DOMAIN_MKK = 6,
  135. DOMAIN_ISRAEL = 7,
  136. DOMAIN_MKK1 = 8,
  137. DOMAIN_MKK2 = 9,
  138. DOMAIN_MKK3 = 10,
  139. DOMAIN_MAX
  140. };
  141. #define _TO_DS_ BIT(8)
  142. #define _FROM_DS_ BIT(9)
  143. #define _MORE_FRAG_ BIT(10)
  144. #define _RETRY_ BIT(11)
  145. #define _PWRMGT_ BIT(12)
  146. #define _MORE_DATA_ BIT(13)
  147. #define _PRIVACY_ BIT(14)
  148. #define _ORDER_ BIT(15)
  149. #define SetToDs(pbuf) ({ \
  150. *(unsigned short *)(pbuf) |= cpu_to_le16(_TO_DS_); \
  151. })
  152. #define GetToDs(pbuf) (((*(unsigned short *)(pbuf)) & \
  153. le16_to_cpu(_TO_DS_)) != 0)
  154. #define ClearToDs(pbuf) ({ \
  155. *(unsigned short *)(pbuf) &= (~cpu_to_le16(_TO_DS_)); \
  156. })
  157. #define SetFrDs(pbuf) ({ \
  158. *(unsigned short *)(pbuf) |= cpu_to_le16(_FROM_DS_); \
  159. })
  160. #define GetFrDs(pbuf) (((*(unsigned short *)(pbuf)) & \
  161. le16_to_cpu(_FROM_DS_)) != 0)
  162. #define ClearFrDs(pbuf) ({ \
  163. *(unsigned short *)(pbuf) &= (~cpu_to_le16(_FROM_DS_)); \
  164. })
  165. #define get_tofr_ds(pframe) ((GetToDs(pframe) << 1) | GetFrDs(pframe))
  166. #define SetMFrag(pbuf) ({ \
  167. *(unsigned short *)(pbuf) |= cpu_to_le16(_MORE_FRAG_); \
  168. })
  169. #define GetMFrag(pbuf) (((*(unsigned short *)(pbuf)) & \
  170. le16_to_cpu(_MORE_FRAG_)) != 0)
  171. #define ClearMFrag(pbuf) ({ \
  172. *(unsigned short *)(pbuf) &= (~cpu_to_le16(_MORE_FRAG_)); \
  173. })
  174. #define SetRetry(pbuf) ({ \
  175. *(unsigned short *)(pbuf) |= cpu_to_le16(_RETRY_); \
  176. })
  177. #define GetRetry(pbuf) (((*(unsigned short *)(pbuf)) & \
  178. le16_to_cpu(_RETRY_)) != 0)
  179. #define ClearRetry(pbuf) ({ \
  180. *(unsigned short *)(pbuf) &= (~cpu_to_le16(_RETRY_)); \
  181. })
  182. #define SetPwrMgt(pbuf) ({ \
  183. *(unsigned short *)(pbuf) |= cpu_to_le16(_PWRMGT_); \
  184. })
  185. #define GetPwrMgt(pbuf) (((*(unsigned short *)(pbuf)) & \
  186. le16_to_cpu(_PWRMGT_)) != 0)
  187. #define ClearPwrMgt(pbuf) ({ \
  188. *(unsigned short *)(pbuf) &= (~cpu_to_le16(_PWRMGT_)); \
  189. })
  190. #define SetMData(pbuf) ({ \
  191. *(unsigned short *)(pbuf) |= cpu_to_le16(_MORE_DATA_); \
  192. })
  193. #define GetMData(pbuf) (((*(unsigned short *)(pbuf)) & \
  194. le16_to_cpu(_MORE_DATA_)) != 0)
  195. #define ClearMData(pbuf) ({ \
  196. *(unsigned short *)(pbuf) &= (~cpu_to_le16(_MORE_DATA_)); \
  197. })
  198. #define SetPrivacy(pbuf) ({ \
  199. *(unsigned short *)(pbuf) |= cpu_to_le16(_PRIVACY_); \
  200. })
  201. #define GetPrivacy(pbuf) (((*(unsigned short *)(pbuf)) & \
  202. le16_to_cpu(_PRIVACY_)) != 0)
  203. #define ClearPrivacy(pbuf) ({ \
  204. *(unsigned short *)(pbuf) &= (~cpu_to_le16(_PRIVACY_)); \
  205. })
  206. #define GetOrder(pbuf) (((*(unsigned short *)(pbuf)) & \
  207. le16_to_cpu(_ORDER_)) != 0)
  208. #define GetFrameType(pbuf) (le16_to_cpu(*(unsigned short *)(pbuf)) & \
  209. (BIT(3) | BIT(2)))
  210. #define SetFrameType(pbuf, type) \
  211. do { \
  212. *(unsigned short *)(pbuf) &= __constant_cpu_to_le16(~(BIT(3) | \
  213. BIT(2))); \
  214. *(unsigned short *)(pbuf) |= __constant_cpu_to_le16(type); \
  215. } while (0)
  216. #define GetFrameSubType(pbuf) (cpu_to_le16(*(unsigned short *)(pbuf)) & \
  217. (BIT(7) | BIT(6) | BIT(5) | BIT(4) | BIT(3) | \
  218. BIT(2)))
  219. #define SetFrameSubType(pbuf, type) \
  220. do { \
  221. *(unsigned short *)(pbuf) &= cpu_to_le16(~(BIT(7) | BIT(6) | \
  222. BIT(5) | BIT(4) | BIT(3) | BIT(2))); \
  223. *(unsigned short *)(pbuf) |= cpu_to_le16(type); \
  224. } while (0)
  225. #define GetSequence(pbuf) (cpu_to_le16(*(unsigned short *)\
  226. ((addr_t)(pbuf) + 22)) >> 4)
  227. #define GetFragNum(pbuf) (cpu_to_le16(*(unsigned short *)((addr_t)\
  228. (pbuf) + 22)) & 0x0f)
  229. #define GetTupleCache(pbuf) (cpu_to_le16(*(unsigned short *)\
  230. ((addr_t)(pbuf) + 22)))
  231. #define SetFragNum(pbuf, num) ({ \
  232. *(unsigned short *)((addr_t)(pbuf) + 22) = \
  233. ((*(unsigned short *)((addr_t)(pbuf) + 22)) & \
  234. le16_to_cpu(~(0x000f))) | \
  235. cpu_to_le16(0x0f & (num)); \
  236. })
  237. #define SetSeqNum(pbuf, num) ({ \
  238. *(unsigned short *)((addr_t)(pbuf) + 22) = \
  239. ((*(unsigned short *)((addr_t)(pbuf) + 22)) & \
  240. le16_to_cpu((unsigned short)0x000f)) | \
  241. le16_to_cpu((unsigned short)(0xfff0 & (num << 4))); \
  242. })
  243. #define SetDuration(pbuf, dur) ({ \
  244. *(unsigned short *)((addr_t)(pbuf) + 2) |= \
  245. cpu_to_le16(0xffff & (dur)); \
  246. })
  247. #define SetPriority(pbuf, tid) ({ \
  248. *(unsigned short *)(pbuf) |= cpu_to_le16(tid & 0xf); \
  249. })
  250. #define GetPriority(pbuf) ((le16_to_cpu(*(unsigned short *)(pbuf))) & 0xf)
  251. #define SetAckpolicy(pbuf, ack) ({ \
  252. *(unsigned short *)(pbuf) |= cpu_to_le16((ack & 3) << 5); \
  253. })
  254. #define GetAckpolicy(pbuf) (((le16_to_cpu(*(unsigned short *)pbuf)) >> 5) & 0x3)
  255. #define GetAMsdu(pbuf) (((le16_to_cpu(*(unsigned short *)pbuf)) >> 7) & 0x1)
  256. #define SetAMsdu(pbuf, amsdu) ({ \
  257. *(unsigned short *)(pbuf) |= cpu_to_le16((amsdu & 1) << 7); \
  258. })
  259. #define GetAid(pbuf) (cpu_to_le16(*(unsigned short *)((addr_t)(pbuf) + 2)) \
  260. & 0x3fff)
  261. #define GetTid(pbuf) (cpu_to_le16(*(unsigned short *)((addr_t)(pbuf) + \
  262. (((GetToDs(pbuf) << 1)|GetFrDs(pbuf)) == 3 ? \
  263. 30 : 24))) & 0x000f)
  264. #define GetAddr1Ptr(pbuf) ((unsigned char *)((addr_t)(pbuf) + 4))
  265. #define GetAddr2Ptr(pbuf) ((unsigned char *)((addr_t)(pbuf) + 10))
  266. #define GetAddr3Ptr(pbuf) ((unsigned char *)((addr_t)(pbuf) + 16))
  267. #define GetAddr4Ptr(pbuf) ((unsigned char *)((addr_t)(pbuf) + 24))
  268. static inline int IS_MCAST(unsigned char *da)
  269. {
  270. if ((*da) & 0x01)
  271. return true;
  272. else
  273. return false;
  274. }
  275. static inline unsigned char *get_da(unsigned char *pframe)
  276. {
  277. unsigned char *da;
  278. unsigned int to_fr_ds = (GetToDs(pframe) << 1) | GetFrDs(pframe);
  279. switch (to_fr_ds) {
  280. case 0x00: /* ToDs=0, FromDs=0 */
  281. da = GetAddr1Ptr(pframe);
  282. break;
  283. case 0x01: /* ToDs=0, FromDs=1 */
  284. da = GetAddr1Ptr(pframe);
  285. break;
  286. case 0x02: /* ToDs=1, FromDs=0 */
  287. da = GetAddr3Ptr(pframe);
  288. break;
  289. default: /* ToDs=1, FromDs=1 */
  290. da = GetAddr3Ptr(pframe);
  291. break;
  292. }
  293. return da;
  294. }
  295. static inline unsigned char *get_sa(unsigned char *pframe)
  296. {
  297. unsigned char *sa;
  298. unsigned int to_fr_ds = (GetToDs(pframe) << 1) | GetFrDs(pframe);
  299. switch (to_fr_ds) {
  300. case 0x00: /* ToDs=0, FromDs=0 */
  301. sa = GetAddr2Ptr(pframe);
  302. break;
  303. case 0x01: /* ToDs=0, FromDs=1 */
  304. sa = GetAddr3Ptr(pframe);
  305. break;
  306. case 0x02: /* ToDs=1, FromDs=0 */
  307. sa = GetAddr2Ptr(pframe);
  308. break;
  309. default: /* ToDs=1, FromDs=1 */
  310. sa = GetAddr4Ptr(pframe);
  311. break;
  312. }
  313. return sa;
  314. }
  315. static inline unsigned char *get_hdr_bssid(unsigned char *pframe)
  316. {
  317. unsigned char *sa;
  318. unsigned int to_fr_ds = (GetToDs(pframe) << 1) | GetFrDs(pframe);
  319. switch (to_fr_ds) {
  320. case 0x00: /* ToDs=0, FromDs=0 */
  321. sa = GetAddr3Ptr(pframe);
  322. break;
  323. case 0x01: /* ToDs=0, FromDs=1 */
  324. sa = GetAddr2Ptr(pframe);
  325. break;
  326. case 0x02: /* ToDs=1, FromDs=0 */
  327. sa = GetAddr1Ptr(pframe);
  328. break;
  329. default: /* ToDs=1, FromDs=1 */
  330. sa = NULL;
  331. break;
  332. }
  333. return sa;
  334. }
  335. /*-----------------------------------------------------------------------------
  336. Below is for the security related definition
  337. ------------------------------------------------------------------------------*/
  338. #define _RESERVED_FRAME_TYPE_ 0
  339. #define _SKB_FRAME_TYPE_ 2
  340. #define _PRE_ALLOCMEM_ 1
  341. #define _PRE_ALLOCHDR_ 3
  342. #define _PRE_ALLOCLLCHDR_ 4
  343. #define _PRE_ALLOCICVHDR_ 5
  344. #define _PRE_ALLOCMICHDR_ 6
  345. #define _SIFSTIME_ ((priv->pmib->BssType.net_work_type & \
  346. WIRELESS_11A) ? 16 : 10)
  347. #define _ACKCTSLNG_ 14 /*14 bytes long, including crclng */
  348. #define _CRCLNG_ 4
  349. #define _ASOCREQ_IE_OFFSET_ 4 /* excluding wlan_hdr */
  350. #define _ASOCRSP_IE_OFFSET_ 6
  351. #define _REASOCREQ_IE_OFFSET_ 10
  352. #define _REASOCRSP_IE_OFFSET_ 6
  353. #define _PROBEREQ_IE_OFFSET_ 0
  354. #define _PROBERSP_IE_OFFSET_ 12
  355. #define _AUTH_IE_OFFSET_ 6
  356. #define _DEAUTH_IE_OFFSET_ 0
  357. #define _BEACON_IE_OFFSET_ 12
  358. #define _FIXED_IE_LENGTH_ _BEACON_IE_OFFSET_
  359. #define _SSID_IE_ 0
  360. #define _SUPPORTEDRATES_IE_ 1
  361. #define _DSSET_IE_ 3
  362. #define _IBSS_PARA_IE_ 6
  363. #define _ERPINFO_IE_ 42
  364. #define _EXT_SUPPORTEDRATES_IE_ 50
  365. #define _HT_CAPABILITY_IE_ 45
  366. #define _HT_EXTRA_INFO_IE_ 61
  367. #define _HT_ADD_INFO_IE_ 61 /* _HT_EXTRA_INFO_IE_ */
  368. #define _VENDOR_SPECIFIC_IE_ 221
  369. #define _RESERVED47_ 47
  370. /* ---------------------------------------------------------------------------
  371. Below is the fixed elements...
  372. -----------------------------------------------------------------------------*/
  373. #define _AUTH_ALGM_NUM_ 2
  374. #define _AUTH_SEQ_NUM_ 2
  375. #define _BEACON_ITERVAL_ 2
  376. #define _CAPABILITY_ 2
  377. #define _CURRENT_APADDR_ 6
  378. #define _LISTEN_INTERVAL_ 2
  379. #define _RSON_CODE_ 2
  380. #define _ASOC_ID_ 2
  381. #define _STATUS_CODE_ 2
  382. #define _TIMESTAMP_ 8
  383. #define AUTH_ODD_TO 0
  384. #define AUTH_EVEN_TO 1
  385. #define WLAN_ETHCONV_ENCAP 1
  386. #define WLAN_ETHCONV_RFC1042 2
  387. #define WLAN_ETHCONV_8021h 3
  388. #define cap_ESS BIT(0)
  389. #define cap_IBSS BIT(1)
  390. #define cap_CFPollable BIT(2)
  391. #define cap_CFRequest BIT(3)
  392. #define cap_Privacy BIT(4)
  393. #define cap_ShortPremble BIT(5)
  394. /*-----------------------------------------------------------------------------
  395. Below is the definition for 802.11i / 802.1x
  396. ------------------------------------------------------------------------------*/
  397. #define _IEEE8021X_MGT_ 1 /*WPA */
  398. #define _IEEE8021X_PSK_ 2 /* WPA with pre-shared key */
  399. /*-----------------------------------------------------------------------------
  400. Below is the definition for WMM
  401. ------------------------------------------------------------------------------*/
  402. #define _WMM_IE_Length_ 7 /* for WMM STA */
  403. #define _WMM_Para_Element_Length_ 24
  404. /*-----------------------------------------------------------------------------
  405. Below is the definition for 802.11n
  406. ------------------------------------------------------------------------------*/
  407. /* block-ack parameters */
  408. #define IEEE80211_ADDBA_PARAM_POLICY_MASK 0x0002
  409. #define IEEE80211_ADDBA_PARAM_TID_MASK 0x003C
  410. #define IEEE80211_ADDBA_PARAM_BUF_SIZE_MASK 0xFFA0
  411. #define IEEE80211_DELBA_PARAM_TID_MASK 0xF000
  412. #define IEEE80211_DELBA_PARAM_INITIATOR_MASK 0x0800
  413. #define SetOrderBit(pbuf) ({ \
  414. *(unsigned short *)(pbuf) |= cpu_to_le16(_ORDER_); \
  415. })
  416. #define GetOrderBit(pbuf) (((*(unsigned short *)(pbuf)) & \
  417. le16_to_cpu(_ORDER_)) != 0)
  418. /**
  419. * struct ieee80211_bar - HT Block Ack Request
  420. *
  421. * This structure refers to "HT BlockAckReq" as
  422. * described in 802.11n draft section 7.2.1.7.1
  423. */
  424. struct ieee80211_bar {
  425. unsigned short frame_control;
  426. unsigned short duration;
  427. unsigned char ra[6];
  428. unsigned char ta[6];
  429. unsigned short control;
  430. unsigned short start_seq_num;
  431. } __packed;
  432. /* 802.11 BAR control masks */
  433. #define IEEE80211_BAR_CTRL_ACK_POLICY_NORMAL 0x0000
  434. #define IEEE80211_BAR_CTRL_CBMTID_COMPRESSED_BA 0x0004
  435. /**
  436. * struct ieee80211_ht_cap - HT capabilities
  437. *
  438. * This structure refers to "HT capabilities element" as
  439. * described in 802.11n draft section 7.3.2.52
  440. */
  441. struct ieee80211_ht_cap {
  442. unsigned short cap_info;
  443. unsigned char ampdu_params_info;
  444. unsigned char supp_mcs_set[16];
  445. unsigned short extended_ht_cap_info;
  446. unsigned int tx_BF_cap_info;
  447. unsigned char antenna_selection_info;
  448. } __packed;
  449. /**
  450. * struct ieee80211_ht_cap - HT additional information
  451. *
  452. * This structure refers to "HT information element" as
  453. * described in 802.11n draft section 7.3.2.53
  454. */
  455. struct ieee80211_ht_addt_info {
  456. unsigned char control_chan;
  457. unsigned char ht_param;
  458. unsigned short operation_mode;
  459. unsigned short stbc_param;
  460. unsigned char basic_set[16];
  461. } __packed;
  462. /* 802.11n HT capabilities masks */
  463. #define IEEE80211_HT_CAP_SUP_WIDTH 0x0002
  464. #define IEEE80211_HT_CAP_SM_PS 0x000C
  465. #define IEEE80211_HT_CAP_GRN_FLD 0x0010
  466. #define IEEE80211_HT_CAP_SGI_20 0x0020
  467. #define IEEE80211_HT_CAP_SGI_40 0x0040
  468. #define IEEE80211_HT_CAP_TX_STBC 0x0080
  469. #define IEEE80211_HT_CAP_DELAY_BA 0x0400
  470. #define IEEE80211_HT_CAP_MAX_AMSDU 0x0800
  471. #define IEEE80211_HT_CAP_DSSSCCK40 0x1000
  472. /* 802.11n HT capability AMPDU settings */
  473. #define IEEE80211_HT_CAP_AMPDU_FACTOR 0x03
  474. #define IEEE80211_HT_CAP_AMPDU_DENSITY 0x1C
  475. /* 802.11n HT capability MSC set */
  476. #define IEEE80211_SUPP_MCS_SET_UEQM 4
  477. #define IEEE80211_HT_CAP_MAX_STREAMS 4
  478. #define IEEE80211_SUPP_MCS_SET_LEN 10
  479. /* maximum streams the spec allows */
  480. #define IEEE80211_HT_CAP_MCS_TX_DEFINED 0x01
  481. #define IEEE80211_HT_CAP_MCS_TX_RX_DIFF 0x02
  482. #define IEEE80211_HT_CAP_MCS_TX_STREAMS 0x0C
  483. #define IEEE80211_HT_CAP_MCS_TX_UEQM 0x10
  484. /* 802.11n HT IE masks */
  485. #define IEEE80211_HT_IE_CHA_SEC_OFFSET 0x03
  486. #define IEEE80211_HT_IE_CHA_SEC_NONE 0x00
  487. #define IEEE80211_HT_IE_CHA_SEC_ABOVE 0x01
  488. #define IEEE80211_HT_IE_CHA_SEC_BELOW 0x03
  489. #define IEEE80211_HT_IE_CHA_WIDTH 0x04
  490. #define IEEE80211_HT_IE_HT_PROTECTION 0x0003
  491. #define IEEE80211_HT_IE_NON_GF_STA_PRSNT 0x0004
  492. #define IEEE80211_HT_IE_NON_HT_STA_PRSNT 0x0010
  493. /* block-ack parameters */
  494. #define IEEE80211_ADDBA_PARAM_POLICY_MASK 0x0002
  495. #define IEEE80211_ADDBA_PARAM_TID_MASK 0x003C
  496. #define IEEE80211_ADDBA_PARAM_BUF_SIZE_MASK 0xFFA0
  497. #define IEEE80211_DELBA_PARAM_TID_MASK 0xF000
  498. #define IEEE80211_DELBA_PARAM_INITIATOR_MASK 0x0800
  499. /*
  500. * A-PMDU buffer sizes
  501. * According to IEEE802.11n spec size varies from 8K to 64K (in powers of 2)
  502. */
  503. #define IEEE80211_MIN_AMPDU_BUF 0x8
  504. #define IEEE80211_MAX_AMPDU_BUF 0x40
  505. /* Spatial Multiplexing Power Save Modes */
  506. #define WLAN_HT_CAP_SM_PS_STATIC 0
  507. #define WLAN_HT_CAP_SM_PS_DYNAMIC 1
  508. #define WLAN_HT_CAP_SM_PS_INVALID 2
  509. #define WLAN_HT_CAP_SM_PS_DISABLED 3
  510. #endif /* _WIFI_H_ */