PageRenderTime 62ms CodeModel.GetById 31ms RepoModel.GetById 0ms app.codeStats 0ms

/source/kernel/android-2.6.35/drivers/staging/rtl8192e/ieee80211/ieee80211.h

https://bitbucket.org/tfzxyinhao/kindle-fire
C++ Header | 2948 lines | 2145 code | 377 blank | 426 comment | 62 complexity | 508023e28e07e1859393b3ed0e1d051c MD5 | raw file
Possible License(s): AGPL-1.0, LGPL-3.0, 0BSD, MPL-2.0-no-copyleft-exception, GPL-2.0, LGPL-2.0, BSD-3-Clause, LGPL-2.1, Apache-2.0, AGPL-3.0, GPL-3.0

Large files files are truncated, but you can click here to view the full file

  1. /*
  2. * Merged with mainline ieee80211.h in Aug 2004. Original ieee802_11
  3. * remains copyright by the original authors
  4. *
  5. * Portions of the merged code are based on Host AP (software wireless
  6. * LAN access point) driver for Intersil Prism2/2.5/3.
  7. *
  8. * Copyright (c) 2001-2002, SSH Communications Security Corp and Jouni Malinen
  9. * <jkmaline@cc.hut.fi>
  10. * Copyright (c) 2002-2003, Jouni Malinen <jkmaline@cc.hut.fi>
  11. *
  12. * Adaption to a generic IEEE 802.11 stack by James Ketrenos
  13. * <jketreno@linux.intel.com>
  14. * Copyright (c) 2004, Intel Corporation
  15. *
  16. * Modified for Realtek's wi-fi cards by Andrea Merello
  17. * <andreamrl@tiscali.it>
  18. *
  19. * This program is free software; you can redistribute it and/or modify
  20. * it under the terms of the GNU General Public License version 2 as
  21. * published by the Free Software Foundation. See README and COPYING for
  22. * more details.
  23. */
  24. #ifndef IEEE80211_H
  25. #define IEEE80211_H
  26. #include <linux/if_ether.h> /* ETH_ALEN */
  27. #include <linux/kernel.h> /* ARRAY_SIZE */
  28. #include <linux/version.h>
  29. #include <linux/module.h>
  30. #if (LINUX_VERSION_CODE > KERNEL_VERSION(2,5,0))
  31. #include <linux/jiffies.h>
  32. #else
  33. #include <linux/jffs.h>
  34. #include <linux/tqueue.h>
  35. #endif
  36. #include <linux/timer.h>
  37. #include <linux/sched.h>
  38. #include <linux/semaphore.h>
  39. #include <linux/delay.h>
  40. #include <linux/wireless.h>
  41. #include "rtl819x_HT.h"
  42. #include "rtl819x_BA.h"
  43. #include "rtl819x_TS.h"
  44. #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,20))
  45. #ifndef bool
  46. typedef enum{false = 0, true} bool;
  47. #endif
  48. #endif
  49. #ifndef IW_MODE_MONITOR
  50. #define IW_MODE_MONITOR 6
  51. #endif
  52. #ifndef IWEVCUSTOM
  53. #define IWEVCUSTOM 0x8c02
  54. #endif
  55. #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
  56. #ifndef __bitwise
  57. #define __bitwise __attribute__((bitwise))
  58. #endif
  59. typedef __u16 __le16;
  60. #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,4,27))
  61. struct iw_spy_data{
  62. /* --- Standard spy support --- */
  63. int spy_number;
  64. u_char spy_address[IW_MAX_SPY][ETH_ALEN];
  65. struct iw_quality spy_stat[IW_MAX_SPY];
  66. /* --- Enhanced spy support (event) */
  67. struct iw_quality spy_thr_low; /* Low threshold */
  68. struct iw_quality spy_thr_high; /* High threshold */
  69. u_char spy_thr_under[IW_MAX_SPY];
  70. };
  71. #endif
  72. #endif
  73. #ifndef container_of
  74. /**
  75. * container_of - cast a member of a structure out to the containing structure
  76. *
  77. * @ptr: the pointer to the member.
  78. * @type: the type of the container struct this is embedded in.
  79. * @member: the name of the member within the struct.
  80. *
  81. */
  82. #define container_of(ptr, type, member) ({ \
  83. const typeof( ((type *)0)->member ) *__mptr = (ptr); \
  84. (type *)( (char *)__mptr - offsetof(type,member) );})
  85. #endif
  86. #define KEY_TYPE_NA 0x0
  87. #define KEY_TYPE_WEP40 0x1
  88. #define KEY_TYPE_TKIP 0x2
  89. #define KEY_TYPE_CCMP 0x4
  90. #define KEY_TYPE_WEP104 0x5
  91. /* added for rtl819x tx procedure */
  92. #define MAX_QUEUE_SIZE 0x10
  93. //
  94. // 8190 queue mapping
  95. //
  96. #define BK_QUEUE 0
  97. #define BE_QUEUE 1
  98. #define VI_QUEUE 2
  99. #define VO_QUEUE 3
  100. #define HCCA_QUEUE 4
  101. #define TXCMD_QUEUE 5
  102. #define MGNT_QUEUE 6
  103. #define HIGH_QUEUE 7
  104. #define BEACON_QUEUE 8
  105. #define LOW_QUEUE BE_QUEUE
  106. #define NORMAL_QUEUE MGNT_QUEUE
  107. //added by amy for ps
  108. #define SWRF_TIMEOUT 50
  109. //added by amy for LEAP related
  110. #define IE_CISCO_FLAG_POSITION 0x08 // Flag byte: byte 8, numbered from 0.
  111. #define SUPPORT_CKIP_MIC 0x08 // bit3
  112. #define SUPPORT_CKIP_PK 0x10 // bit4
  113. /* defined for skb cb field */
  114. /* At most 28 byte */
  115. typedef struct cb_desc {
  116. /* Tx Desc Related flags (8-9) */
  117. u8 bLastIniPkt:1;
  118. u8 bCmdOrInit:1;
  119. u8 bFirstSeg:1;
  120. u8 bLastSeg:1;
  121. u8 bEncrypt:1;
  122. u8 bTxDisableRateFallBack:1;
  123. u8 bTxUseDriverAssingedRate:1;
  124. u8 bHwSec:1; //indicate whether use Hw security. WB
  125. u8 reserved1;
  126. /* Tx Firmware Relaged flags (10-11)*/
  127. u8 bCTSEnable:1;
  128. u8 bRTSEnable:1;
  129. u8 bUseShortGI:1;
  130. u8 bUseShortPreamble:1;
  131. u8 bTxEnableFwCalcDur:1;
  132. u8 bAMPDUEnable:1;
  133. u8 bRTSSTBC:1;
  134. u8 RTSSC:1;
  135. u8 bRTSBW:1;
  136. u8 bPacketBW:1;
  137. u8 bRTSUseShortPreamble:1;
  138. u8 bRTSUseShortGI:1;
  139. u8 bMulticast:1;
  140. u8 bBroadcast:1;
  141. //u8 reserved2:2;
  142. u8 drv_agg_enable:1;
  143. u8 reserved2:1;
  144. /* Tx Desc related element(12-19) */
  145. u8 rata_index;
  146. u8 queue_index;
  147. //u8 reserved3;
  148. //u8 reserved4;
  149. u16 txbuf_size;
  150. //u8 reserved5;
  151. u8 RATRIndex;
  152. u8 reserved6;
  153. u8 reserved7;
  154. u8 reserved8;
  155. /* Tx firmware related element(20-27) */
  156. u8 data_rate;
  157. u8 rts_rate;
  158. u8 ampdu_factor;
  159. u8 ampdu_density;
  160. //u8 reserved9;
  161. //u8 reserved10;
  162. //u8 reserved11;
  163. u8 DrvAggrNum;
  164. u16 pkt_size;
  165. u8 reserved12;
  166. u8 bdhcp;
  167. }cb_desc, *pcb_desc;
  168. /*--------------------------Define -------------------------------------------*/
  169. #define MGN_1M 0x02
  170. #define MGN_2M 0x04
  171. #define MGN_5_5M 0x0b
  172. #define MGN_11M 0x16
  173. #define MGN_6M 0x0c
  174. #define MGN_9M 0x12
  175. #define MGN_12M 0x18
  176. #define MGN_18M 0x24
  177. #define MGN_24M 0x30
  178. #define MGN_36M 0x48
  179. #define MGN_48M 0x60
  180. #define MGN_54M 0x6c
  181. #define MGN_MCS0 0x80
  182. #define MGN_MCS1 0x81
  183. #define MGN_MCS2 0x82
  184. #define MGN_MCS3 0x83
  185. #define MGN_MCS4 0x84
  186. #define MGN_MCS5 0x85
  187. #define MGN_MCS6 0x86
  188. #define MGN_MCS7 0x87
  189. #define MGN_MCS8 0x88
  190. #define MGN_MCS9 0x89
  191. #define MGN_MCS10 0x8a
  192. #define MGN_MCS11 0x8b
  193. #define MGN_MCS12 0x8c
  194. #define MGN_MCS13 0x8d
  195. #define MGN_MCS14 0x8e
  196. #define MGN_MCS15 0x8f
  197. //----------------------------------------------------------------------------
  198. // 802.11 Management frame Reason Code field
  199. //----------------------------------------------------------------------------
  200. enum _ReasonCode{
  201. unspec_reason = 0x1,
  202. auth_not_valid = 0x2,
  203. deauth_lv_ss = 0x3,
  204. inactivity = 0x4,
  205. ap_overload = 0x5,
  206. class2_err = 0x6,
  207. class3_err = 0x7,
  208. disas_lv_ss = 0x8,
  209. asoc_not_auth = 0x9,
  210. //----MIC_CHECK
  211. mic_failure = 0xe,
  212. //----END MIC_CHECK
  213. // Reason code defined in 802.11i D10.0 p.28.
  214. invalid_IE = 0x0d,
  215. four_way_tmout = 0x0f,
  216. two_way_tmout = 0x10,
  217. IE_dismatch = 0x11,
  218. invalid_Gcipher = 0x12,
  219. invalid_Pcipher = 0x13,
  220. invalid_AKMP = 0x14,
  221. unsup_RSNIEver = 0x15,
  222. invalid_RSNIE = 0x16,
  223. auth_802_1x_fail= 0x17,
  224. ciper_reject = 0x18,
  225. // Reason code defined in 7.3.1.7, 802.1e D13.0, p.42. Added by Annie, 2005-11-15.
  226. QoS_unspec = 0x20, // 32
  227. QAP_bandwidth = 0x21, // 33
  228. poor_condition = 0x22, // 34
  229. no_facility = 0x23, // 35
  230. // Where is 36???
  231. req_declined = 0x25, // 37
  232. invalid_param = 0x26, // 38
  233. req_not_honored= 0x27, // 39
  234. TS_not_created = 0x2F, // 47
  235. DL_not_allowed = 0x30, // 48
  236. dest_not_exist = 0x31, // 49
  237. dest_not_QSTA = 0x32, // 50
  238. };
  239. #define aSifsTime (((priv->ieee80211->current_network.mode == IEEE_A)||(priv->ieee80211->current_network.mode == IEEE_N_24G)||(priv->ieee80211->current_network.mode == IEEE_N_5G))? 16 : 10)
  240. #define MGMT_QUEUE_NUM 5
  241. #define IEEE_CMD_SET_WPA_PARAM 1
  242. #define IEEE_CMD_SET_WPA_IE 2
  243. #define IEEE_CMD_SET_ENCRYPTION 3
  244. #define IEEE_CMD_MLME 4
  245. #define IEEE_PARAM_WPA_ENABLED 1
  246. #define IEEE_PARAM_TKIP_COUNTERMEASURES 2
  247. #define IEEE_PARAM_DROP_UNENCRYPTED 3
  248. #define IEEE_PARAM_PRIVACY_INVOKED 4
  249. #define IEEE_PARAM_AUTH_ALGS 5
  250. #define IEEE_PARAM_IEEE_802_1X 6
  251. //It should consistent with the driver_XXX.c
  252. // David, 2006.9.26
  253. #define IEEE_PARAM_WPAX_SELECT 7
  254. //Added for notify the encryption type selection
  255. // David, 2006.9.26
  256. #define IEEE_PROTO_WPA 1
  257. #define IEEE_PROTO_RSN 2
  258. //Added for notify the encryption type selection
  259. // David, 2006.9.26
  260. #define IEEE_WPAX_USEGROUP 0
  261. #define IEEE_WPAX_WEP40 1
  262. #define IEEE_WPAX_TKIP 2
  263. #define IEEE_WPAX_WRAP 3
  264. #define IEEE_WPAX_CCMP 4
  265. #define IEEE_WPAX_WEP104 5
  266. #define IEEE_KEY_MGMT_IEEE8021X 1
  267. #define IEEE_KEY_MGMT_PSK 2
  268. #define IEEE_MLME_STA_DEAUTH 1
  269. #define IEEE_MLME_STA_DISASSOC 2
  270. #define IEEE_CRYPT_ERR_UNKNOWN_ALG 2
  271. #define IEEE_CRYPT_ERR_UNKNOWN_ADDR 3
  272. #define IEEE_CRYPT_ERR_CRYPT_INIT_FAILED 4
  273. #define IEEE_CRYPT_ERR_KEY_SET_FAILED 5
  274. #define IEEE_CRYPT_ERR_TX_KEY_SET_FAILED 6
  275. #define IEEE_CRYPT_ERR_CARD_CONF_FAILED 7
  276. #define IEEE_CRYPT_ALG_NAME_LEN 16
  277. #define MAX_IE_LEN 0xff
  278. // added for kernel conflict
  279. #define ieee80211_crypt_deinit_entries ieee80211_crypt_deinit_entries_rsl
  280. #define ieee80211_crypt_deinit_handler ieee80211_crypt_deinit_handler_rsl
  281. #define ieee80211_crypt_delayed_deinit ieee80211_crypt_delayed_deinit_rsl
  282. #define ieee80211_register_crypto_ops ieee80211_register_crypto_ops_rsl
  283. #define ieee80211_unregister_crypto_ops ieee80211_unregister_crypto_ops_rsl
  284. #define ieee80211_get_crypto_ops ieee80211_get_crypto_ops_rsl
  285. #define ieee80211_ccmp_null ieee80211_ccmp_null_rsl
  286. #define ieee80211_tkip_null ieee80211_tkip_null_rsl
  287. #define ieee80211_wep_null ieee80211_wep_null_rsl
  288. #define free_ieee80211 free_ieee80211_rsl
  289. #define alloc_ieee80211 alloc_ieee80211_rsl
  290. #define ieee80211_rx ieee80211_rx_rsl
  291. #define ieee80211_rx_mgt ieee80211_rx_mgt_rsl
  292. #define ieee80211_get_beacon ieee80211_get_beacon_rsl
  293. #define ieee80211_rtl_wake_queue ieee80211_rtl_wake_queue_rsl
  294. #define ieee80211_rtl_stop_queue ieee80211_rtl_stop_queue_rsl
  295. #define ieee80211_reset_queue ieee80211_reset_queue_rsl
  296. #define ieee80211_softmac_stop_protocol ieee80211_softmac_stop_protocol_rsl
  297. #define ieee80211_softmac_start_protocol ieee80211_softmac_start_protocol_rsl
  298. #define ieee80211_is_shortslot ieee80211_is_shortslot_rsl
  299. #define ieee80211_is_54g ieee80211_is_54g_rsl
  300. #define ieee80211_wpa_supplicant_ioctl ieee80211_wpa_supplicant_ioctl_rsl
  301. #define ieee80211_ps_tx_ack ieee80211_ps_tx_ack_rsl
  302. #define ieee80211_softmac_xmit ieee80211_softmac_xmit_rsl
  303. #define ieee80211_stop_send_beacons ieee80211_stop_send_beacons_rsl
  304. #define notify_wx_assoc_event notify_wx_assoc_event_rsl
  305. #define SendDisassociation SendDisassociation_rsl
  306. #define ieee80211_disassociate ieee80211_disassociate_rsl
  307. #define ieee80211_start_send_beacons ieee80211_start_send_beacons_rsl
  308. #define ieee80211_stop_scan ieee80211_stop_scan_rsl
  309. #define ieee80211_send_probe_requests ieee80211_send_probe_requests_rsl
  310. #define ieee80211_softmac_scan_syncro ieee80211_softmac_scan_syncro_rsl
  311. #define ieee80211_start_scan_syncro ieee80211_start_scan_syncro_rsl
  312. #define ieee80211_wx_get_essid ieee80211_wx_get_essid_rsl
  313. #define ieee80211_wx_set_essid ieee80211_wx_set_essid_rsl
  314. #define ieee80211_wx_set_rate ieee80211_wx_set_rate_rsl
  315. #define ieee80211_wx_get_rate ieee80211_wx_get_rate_rsl
  316. #define ieee80211_wx_set_wap ieee80211_wx_set_wap_rsl
  317. #define ieee80211_wx_get_wap ieee80211_wx_get_wap_rsl
  318. #define ieee80211_wx_set_mode ieee80211_wx_set_mode_rsl
  319. #define ieee80211_wx_get_mode ieee80211_wx_get_mode_rsl
  320. #define ieee80211_wx_set_scan ieee80211_wx_set_scan_rsl
  321. #define ieee80211_wx_get_freq ieee80211_wx_get_freq_rsl
  322. #define ieee80211_wx_set_freq ieee80211_wx_set_freq_rsl
  323. #define ieee80211_wx_set_rawtx ieee80211_wx_set_rawtx_rsl
  324. #define ieee80211_wx_get_name ieee80211_wx_get_name_rsl
  325. #define ieee80211_wx_set_power ieee80211_wx_set_power_rsl
  326. #define ieee80211_wx_get_power ieee80211_wx_get_power_rsl
  327. #define ieee80211_wlan_frequencies ieee80211_wlan_frequencies_rsl
  328. #define ieee80211_wx_set_rts ieee80211_wx_set_rts_rsl
  329. #define ieee80211_wx_get_rts ieee80211_wx_get_rts_rsl
  330. #define ieee80211_txb_free ieee80211_txb_free_rsl
  331. #define ieee80211_wx_set_gen_ie ieee80211_wx_set_gen_ie_rsl
  332. #define ieee80211_wx_get_scan ieee80211_wx_get_scan_rsl
  333. #define ieee80211_wx_set_encode ieee80211_wx_set_encode_rsl
  334. #define ieee80211_wx_get_encode ieee80211_wx_get_encode_rsl
  335. #if WIRELESS_EXT >= 18
  336. #define ieee80211_wx_set_mlme ieee80211_wx_set_mlme_rsl
  337. #define ieee80211_wx_set_auth ieee80211_wx_set_auth_rsl
  338. #define ieee80211_wx_set_encode_ext ieee80211_wx_set_encode_ext_rsl
  339. #define ieee80211_wx_get_encode_ext ieee80211_wx_get_encode_ext_rsl
  340. #endif
  341. typedef struct ieee_param {
  342. u32 cmd;
  343. u8 sta_addr[ETH_ALEN];
  344. union {
  345. struct {
  346. u8 name;
  347. u32 value;
  348. } wpa_param;
  349. struct {
  350. u32 len;
  351. u8 reserved[32];
  352. u8 data[0];
  353. } wpa_ie;
  354. struct{
  355. int command;
  356. int reason_code;
  357. } mlme;
  358. struct {
  359. u8 alg[IEEE_CRYPT_ALG_NAME_LEN];
  360. u8 set_tx;
  361. u32 err;
  362. u8 idx;
  363. u8 seq[8]; /* sequence counter (set: RX, get: TX) */
  364. u16 key_len;
  365. u8 key[0];
  366. } crypt;
  367. } u;
  368. }ieee_param;
  369. #if WIRELESS_EXT < 17
  370. #define IW_QUAL_QUAL_INVALID 0x10
  371. #define IW_QUAL_LEVEL_INVALID 0x20
  372. #define IW_QUAL_NOISE_INVALID 0x40
  373. #define IW_QUAL_QUAL_UPDATED 0x1
  374. #define IW_QUAL_LEVEL_UPDATED 0x2
  375. #define IW_QUAL_NOISE_UPDATED 0x4
  376. #endif
  377. #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
  378. static inline void tq_init(struct tq_struct * task, void(*func)(void *), void *data)
  379. {
  380. task->routine = func;
  381. task->data = data;
  382. //task->next = NULL;
  383. INIT_LIST_HEAD(&task->list);
  384. task->sync = 0;
  385. }
  386. #endif
  387. // linux under 2.6.9 release may not support it, so modify it for common use
  388. #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,9))
  389. //#define MSECS(t) (1000 * ((t) / HZ) + 1000 * ((t) % HZ) / HZ)
  390. #define MSECS(t) (HZ * ((t) / 1000) + (HZ * ((t) % 1000)) / 1000)
  391. static inline unsigned long msleep_interruptible_rsl(unsigned int msecs)
  392. {
  393. unsigned long timeout = MSECS(msecs) + 1;
  394. while (timeout) {
  395. set_current_state(TASK_INTERRUPTIBLE);
  396. timeout = schedule_timeout(timeout);
  397. }
  398. return timeout;
  399. }
  400. #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,4,31))
  401. static inline void msleep(unsigned int msecs)
  402. {
  403. unsigned long timeout = MSECS(msecs) + 1;
  404. while (timeout) {
  405. set_current_state(TASK_UNINTERRUPTIBLE);
  406. timeout = schedule_timeout(timeout);
  407. }
  408. }
  409. #endif
  410. #else
  411. #define MSECS(t) msecs_to_jiffies(t)
  412. #define msleep_interruptible_rsl msleep_interruptible
  413. #endif
  414. #define IEEE80211_DATA_LEN 2304
  415. /* Maximum size for the MA-UNITDATA primitive, 802.11 standard section
  416. 6.2.1.1.2.
  417. The figure in section 7.1.2 suggests a body size of up to 2312
  418. bytes is allowed, which is a bit confusing, I suspect this
  419. represents the 2304 bytes of real data, plus a possible 8 bytes of
  420. WEP IV and ICV. (this interpretation suggested by Ramiro Barreiro) */
  421. #define IEEE80211_1ADDR_LEN 10
  422. #define IEEE80211_2ADDR_LEN 16
  423. #define IEEE80211_3ADDR_LEN 24
  424. #define IEEE80211_4ADDR_LEN 30
  425. #define IEEE80211_FCS_LEN 4
  426. #define IEEE80211_HLEN (IEEE80211_4ADDR_LEN)
  427. #define IEEE80211_FRAME_LEN (IEEE80211_DATA_LEN + IEEE80211_HLEN)
  428. #define IEEE80211_MGMT_HDR_LEN 24
  429. #define IEEE80211_DATA_HDR3_LEN 24
  430. #define IEEE80211_DATA_HDR4_LEN 30
  431. #define MIN_FRAG_THRESHOLD 256U
  432. #define MAX_FRAG_THRESHOLD 2346U
  433. /* Frame control field constants */
  434. #define IEEE80211_FCTL_VERS 0x0003
  435. #define IEEE80211_FCTL_FTYPE 0x000c
  436. #define IEEE80211_FCTL_STYPE 0x00f0
  437. #define IEEE80211_FCTL_FRAMETYPE 0x00fc
  438. #define IEEE80211_FCTL_TODS 0x0100
  439. #define IEEE80211_FCTL_FROMDS 0x0200
  440. #define IEEE80211_FCTL_DSTODS 0x0300 //added by david
  441. #define IEEE80211_FCTL_MOREFRAGS 0x0400
  442. #define IEEE80211_FCTL_RETRY 0x0800
  443. #define IEEE80211_FCTL_PM 0x1000
  444. #define IEEE80211_FCTL_MOREDATA 0x2000
  445. #define IEEE80211_FCTL_WEP 0x4000
  446. #define IEEE80211_FCTL_ORDER 0x8000
  447. #define IEEE80211_FTYPE_MGMT 0x0000
  448. #define IEEE80211_FTYPE_CTL 0x0004
  449. #define IEEE80211_FTYPE_DATA 0x0008
  450. /* management */
  451. #define IEEE80211_STYPE_ASSOC_REQ 0x0000
  452. #define IEEE80211_STYPE_ASSOC_RESP 0x0010
  453. #define IEEE80211_STYPE_REASSOC_REQ 0x0020
  454. #define IEEE80211_STYPE_REASSOC_RESP 0x0030
  455. #define IEEE80211_STYPE_PROBE_REQ 0x0040
  456. #define IEEE80211_STYPE_PROBE_RESP 0x0050
  457. #define IEEE80211_STYPE_BEACON 0x0080
  458. #define IEEE80211_STYPE_ATIM 0x0090
  459. #define IEEE80211_STYPE_DISASSOC 0x00A0
  460. #define IEEE80211_STYPE_AUTH 0x00B0
  461. #define IEEE80211_STYPE_DEAUTH 0x00C0
  462. #define IEEE80211_STYPE_MANAGE_ACT 0x00D0
  463. /* control */
  464. #define IEEE80211_STYPE_PSPOLL 0x00A0
  465. #define IEEE80211_STYPE_RTS 0x00B0
  466. #define IEEE80211_STYPE_CTS 0x00C0
  467. #define IEEE80211_STYPE_ACK 0x00D0
  468. #define IEEE80211_STYPE_CFEND 0x00E0
  469. #define IEEE80211_STYPE_CFENDACK 0x00F0
  470. #define IEEE80211_STYPE_BLOCKACK 0x0094
  471. /* data */
  472. #define IEEE80211_STYPE_DATA 0x0000
  473. #define IEEE80211_STYPE_DATA_CFACK 0x0010
  474. #define IEEE80211_STYPE_DATA_CFPOLL 0x0020
  475. #define IEEE80211_STYPE_DATA_CFACKPOLL 0x0030
  476. #define IEEE80211_STYPE_NULLFUNC 0x0040
  477. #define IEEE80211_STYPE_CFACK 0x0050
  478. #define IEEE80211_STYPE_CFPOLL 0x0060
  479. #define IEEE80211_STYPE_CFACKPOLL 0x0070
  480. #define IEEE80211_STYPE_QOS_DATA 0x0080 //added for WMM 2006/8/2
  481. #define IEEE80211_STYPE_QOS_NULL 0x00C0
  482. #define IEEE80211_SCTL_FRAG 0x000F
  483. #define IEEE80211_SCTL_SEQ 0xFFF0
  484. /* QOS control */
  485. #define IEEE80211_QCTL_TID 0x000F
  486. #define FC_QOS_BIT BIT7
  487. #define IsDataFrame(pdu) ( ((pdu[0] & 0x0C)==0x08) ? true : false )
  488. #define IsLegacyDataFrame(pdu) (IsDataFrame(pdu) && (!(pdu[0]&FC_QOS_BIT)) )
  489. //added by wb. Is this right?
  490. #define IsQoSDataFrame(pframe) ((*(u16*)pframe&(IEEE80211_STYPE_QOS_DATA|IEEE80211_FTYPE_DATA)) == (IEEE80211_STYPE_QOS_DATA|IEEE80211_FTYPE_DATA))
  491. #define Frame_Order(pframe) (*(u16*)pframe&IEEE80211_FCTL_ORDER)
  492. #define SN_LESS(a, b) (((a-b)&0x800)!=0)
  493. #define SN_EQUAL(a, b) (a == b)
  494. #define MAX_DEV_ADDR_SIZE 8
  495. typedef enum _ACT_CATEGORY{
  496. ACT_CAT_QOS = 1,
  497. ACT_CAT_DLS = 2,
  498. ACT_CAT_BA = 3,
  499. ACT_CAT_HT = 7,
  500. ACT_CAT_WMM = 17,
  501. } ACT_CATEGORY, *PACT_CATEGORY;
  502. typedef enum _TS_ACTION{
  503. ACT_ADDTSREQ = 0,
  504. ACT_ADDTSRSP = 1,
  505. ACT_DELTS = 2,
  506. ACT_SCHEDULE = 3,
  507. } TS_ACTION, *PTS_ACTION;
  508. typedef enum _BA_ACTION{
  509. ACT_ADDBAREQ = 0,
  510. ACT_ADDBARSP = 1,
  511. ACT_DELBA = 2,
  512. } BA_ACTION, *PBA_ACTION;
  513. typedef enum _InitialGainOpType{
  514. IG_Backup=0,
  515. IG_Restore,
  516. IG_Max
  517. }InitialGainOpType;
  518. /* debug macros */
  519. #define CONFIG_IEEE80211_DEBUG
  520. #ifdef CONFIG_IEEE80211_DEBUG
  521. extern u32 ieee80211_debug_level;
  522. #define IEEE80211_DEBUG(level, fmt, args...) \
  523. do { if (ieee80211_debug_level & (level)) \
  524. printk(KERN_DEBUG "ieee80211: " fmt, ## args); } while (0)
  525. //wb added to debug out data buf
  526. //if you want print DATA buffer related BA, please set ieee80211_debug_level to DATA|BA
  527. #define IEEE80211_DEBUG_DATA(level, data, datalen) \
  528. do{ if ((ieee80211_debug_level & (level)) == (level)) \
  529. { \
  530. int i; \
  531. u8* pdata = (u8*) data; \
  532. printk(KERN_DEBUG "ieee80211: %s()\n", __FUNCTION__); \
  533. for(i=0; i<(int)(datalen); i++) \
  534. { \
  535. printk("%2x ", pdata[i]); \
  536. if ((i+1)%16 == 0) printk("\n"); \
  537. } \
  538. printk("\n"); \
  539. } \
  540. } while (0)
  541. #else
  542. #define IEEE80211_DEBUG(level, fmt, args...) do {} while (0)
  543. #define IEEE80211_DEBUG_DATA(level, data, datalen) do {} while(0)
  544. #endif /* CONFIG_IEEE80211_DEBUG */
  545. /* debug macros not dependent on CONFIG_IEEE80211_DEBUG */
  546. /*
  547. * To use the debug system;
  548. *
  549. * If you are defining a new debug classification, simply add it to the #define
  550. * list here in the form of:
  551. *
  552. * #define IEEE80211_DL_xxxx VALUE
  553. *
  554. * shifting value to the left one bit from the previous entry. xxxx should be
  555. * the name of the classification (for example, WEP)
  556. *
  557. * You then need to either add a IEEE80211_xxxx_DEBUG() macro definition for your
  558. * classification, or use IEEE80211_DEBUG(IEEE80211_DL_xxxx, ...) whenever you want
  559. * to send output to that classification.
  560. *
  561. * To add your debug level to the list of levels seen when you perform
  562. *
  563. * % cat /proc/net/ipw/debug_level
  564. *
  565. * you simply need to add your entry to the ipw_debug_levels array.
  566. *
  567. * If you do not see debug_level in /proc/net/ipw then you do not have
  568. * CONFIG_IEEE80211_DEBUG defined in your kernel configuration
  569. *
  570. */
  571. #define IEEE80211_DL_INFO (1<<0)
  572. #define IEEE80211_DL_WX (1<<1)
  573. #define IEEE80211_DL_SCAN (1<<2)
  574. #define IEEE80211_DL_STATE (1<<3)
  575. #define IEEE80211_DL_MGMT (1<<4)
  576. #define IEEE80211_DL_FRAG (1<<5)
  577. #define IEEE80211_DL_EAP (1<<6)
  578. #define IEEE80211_DL_DROP (1<<7)
  579. #define IEEE80211_DL_TX (1<<8)
  580. #define IEEE80211_DL_RX (1<<9)
  581. #define IEEE80211_DL_HT (1<<10) //HT
  582. #define IEEE80211_DL_BA (1<<11) //ba
  583. #define IEEE80211_DL_TS (1<<12) //TS
  584. #define IEEE80211_DL_QOS (1<<13)
  585. #define IEEE80211_DL_REORDER (1<<14)
  586. #define IEEE80211_DL_IOT (1<<15)
  587. #define IEEE80211_DL_IPS (1<<16)
  588. #define IEEE80211_DL_TRACE (1<<29) //trace function, need to user net_ratelimit() together in order not to print too much to the screen
  589. #define IEEE80211_DL_DATA (1<<30) //use this flag to control whether print data buf out.
  590. #define IEEE80211_DL_ERR (1<<31) //always open
  591. #define IEEE80211_ERROR(f, a...) printk(KERN_ERR "ieee80211: " f, ## a)
  592. #define IEEE80211_WARNING(f, a...) printk(KERN_WARNING "ieee80211: " f, ## a)
  593. #define IEEE80211_DEBUG_INFO(f, a...) IEEE80211_DEBUG(IEEE80211_DL_INFO, f, ## a)
  594. #define IEEE80211_DEBUG_WX(f, a...) IEEE80211_DEBUG(IEEE80211_DL_WX, f, ## a)
  595. #define IEEE80211_DEBUG_SCAN(f, a...) IEEE80211_DEBUG(IEEE80211_DL_SCAN, f, ## a)
  596. #define IEEE80211_DEBUG_STATE(f, a...) IEEE80211_DEBUG(IEEE80211_DL_STATE, f, ## a)
  597. #define IEEE80211_DEBUG_MGMT(f, a...) IEEE80211_DEBUG(IEEE80211_DL_MGMT, f, ## a)
  598. #define IEEE80211_DEBUG_FRAG(f, a...) IEEE80211_DEBUG(IEEE80211_DL_FRAG, f, ## a)
  599. #define IEEE80211_DEBUG_EAP(f, a...) IEEE80211_DEBUG(IEEE80211_DL_EAP, f, ## a)
  600. #define IEEE80211_DEBUG_DROP(f, a...) IEEE80211_DEBUG(IEEE80211_DL_DROP, f, ## a)
  601. #define IEEE80211_DEBUG_TX(f, a...) IEEE80211_DEBUG(IEEE80211_DL_TX, f, ## a)
  602. #define IEEE80211_DEBUG_RX(f, a...) IEEE80211_DEBUG(IEEE80211_DL_RX, f, ## a)
  603. #define IEEE80211_DEBUG_QOS(f, a...) IEEE80211_DEBUG(IEEE80211_DL_QOS, f, ## a)
  604. #ifdef CONFIG_IEEE80211_DEBUG
  605. /* Added by Annie, 2005-11-22. */
  606. #define MAX_STR_LEN 64
  607. /* I want to see ASCII 33 to 126 only. Otherwise, I print '?'. Annie, 2005-11-22.*/
  608. #define PRINTABLE(_ch) (_ch>'!' && _ch<'~')
  609. #define IEEE80211_PRINT_STR(_Comp, _TitleString, _Ptr, _Len) \
  610. if((_Comp) & level) \
  611. { \
  612. int __i; \
  613. u8 buffer[MAX_STR_LEN]; \
  614. int length = (_Len<MAX_STR_LEN)? _Len : (MAX_STR_LEN-1) ; \
  615. memset(buffer, 0, MAX_STR_LEN); \
  616. memcpy(buffer, (u8 *)_Ptr, length ); \
  617. for( __i=0; __i<MAX_STR_LEN; __i++ ) \
  618. { \
  619. if( !PRINTABLE(buffer[__i]) ) buffer[__i] = '?'; \
  620. } \
  621. buffer[length] = '\0'; \
  622. printk("Rtl819x: "); \
  623. printk(_TitleString); \
  624. printk(": %d, <%s>\n", _Len, buffer); \
  625. }
  626. #else
  627. #define IEEE80211_PRINT_STR(_Comp, _TitleString, _Ptr, _Len) do {} while (0)
  628. #endif
  629. #include <linux/netdevice.h>
  630. #include <linux/if_arp.h> /* ARPHRD_ETHER */
  631. #ifndef WIRELESS_SPY
  632. #define WIRELESS_SPY // enable iwspy support
  633. #endif
  634. #include <net/iw_handler.h> // new driver API
  635. #ifndef ETH_P_PAE
  636. #define ETH_P_PAE 0x888E /* Port Access Entity (IEEE 802.1X) */
  637. #endif /* ETH_P_PAE */
  638. #define ETH_P_PREAUTH 0x88C7 /* IEEE 802.11i pre-authentication */
  639. #ifndef ETH_P_80211_RAW
  640. #define ETH_P_80211_RAW (ETH_P_ECONET + 1)
  641. #endif
  642. /* IEEE 802.11 defines */
  643. #define P80211_OUI_LEN 3
  644. struct ieee80211_snap_hdr {
  645. u8 dsap; /* always 0xAA */
  646. u8 ssap; /* always 0xAA */
  647. u8 ctrl; /* always 0x03 */
  648. u8 oui[P80211_OUI_LEN]; /* organizational universal id */
  649. } __attribute__ ((packed));
  650. #define SNAP_SIZE sizeof(struct ieee80211_snap_hdr)
  651. #define WLAN_FC_GET_VERS(fc) ((fc) & IEEE80211_FCTL_VERS)
  652. #define WLAN_FC_GET_TYPE(fc) ((fc) & IEEE80211_FCTL_FTYPE)
  653. #define WLAN_FC_GET_STYPE(fc) ((fc) & IEEE80211_FCTL_STYPE)
  654. #define WLAN_FC_MORE_DATA(fc) ((fc) & IEEE80211_FCTL_MOREDATA)
  655. #define WLAN_FC_GET_FRAMETYPE(fc) ((fc) & IEEE80211_FCTL_FRAMETYPE)
  656. #define WLAN_GET_SEQ_FRAG(seq) ((seq) & IEEE80211_SCTL_FRAG)
  657. #define WLAN_GET_SEQ_SEQ(seq) (((seq) & IEEE80211_SCTL_SEQ) >> 4)
  658. /* Authentication algorithms */
  659. #define WLAN_AUTH_OPEN 0
  660. #define WLAN_AUTH_SHARED_KEY 1
  661. #define WLAN_AUTH_LEAP 2
  662. #define WLAN_AUTH_CHALLENGE_LEN 128
  663. #define WLAN_CAPABILITY_BSS (1<<0)
  664. #define WLAN_CAPABILITY_IBSS (1<<1)
  665. #define WLAN_CAPABILITY_CF_POLLABLE (1<<2)
  666. #define WLAN_CAPABILITY_CF_POLL_REQUEST (1<<3)
  667. #define WLAN_CAPABILITY_PRIVACY (1<<4)
  668. #define WLAN_CAPABILITY_SHORT_PREAMBLE (1<<5)
  669. #define WLAN_CAPABILITY_PBCC (1<<6)
  670. #define WLAN_CAPABILITY_CHANNEL_AGILITY (1<<7)
  671. #define WLAN_CAPABILITY_SPECTRUM_MGMT (1<<8)
  672. #define WLAN_CAPABILITY_QOS (1<<9)
  673. #define WLAN_CAPABILITY_SHORT_SLOT (1<<10)
  674. #define WLAN_CAPABILITY_DSSS_OFDM (1<<13)
  675. /* 802.11g ERP information element */
  676. #define WLAN_ERP_NON_ERP_PRESENT (1<<0)
  677. #define WLAN_ERP_USE_PROTECTION (1<<1)
  678. #define WLAN_ERP_BARKER_PREAMBLE (1<<2)
  679. /* Status codes */
  680. enum ieee80211_statuscode {
  681. WLAN_STATUS_SUCCESS = 0,
  682. WLAN_STATUS_UNSPECIFIED_FAILURE = 1,
  683. WLAN_STATUS_CAPS_UNSUPPORTED = 10,
  684. WLAN_STATUS_REASSOC_NO_ASSOC = 11,
  685. WLAN_STATUS_ASSOC_DENIED_UNSPEC = 12,
  686. WLAN_STATUS_NOT_SUPPORTED_AUTH_ALG = 13,
  687. WLAN_STATUS_UNKNOWN_AUTH_TRANSACTION = 14,
  688. WLAN_STATUS_CHALLENGE_FAIL = 15,
  689. WLAN_STATUS_AUTH_TIMEOUT = 16,
  690. WLAN_STATUS_AP_UNABLE_TO_HANDLE_NEW_STA = 17,
  691. WLAN_STATUS_ASSOC_DENIED_RATES = 18,
  692. /* 802.11b */
  693. WLAN_STATUS_ASSOC_DENIED_NOSHORTPREAMBLE = 19,
  694. WLAN_STATUS_ASSOC_DENIED_NOPBCC = 20,
  695. WLAN_STATUS_ASSOC_DENIED_NOAGILITY = 21,
  696. /* 802.11h */
  697. WLAN_STATUS_ASSOC_DENIED_NOSPECTRUM = 22,
  698. WLAN_STATUS_ASSOC_REJECTED_BAD_POWER = 23,
  699. WLAN_STATUS_ASSOC_REJECTED_BAD_SUPP_CHAN = 24,
  700. /* 802.11g */
  701. WLAN_STATUS_ASSOC_DENIED_NOSHORTTIME = 25,
  702. WLAN_STATUS_ASSOC_DENIED_NODSSSOFDM = 26,
  703. /* 802.11i */
  704. WLAN_STATUS_INVALID_IE = 40,
  705. WLAN_STATUS_INVALID_GROUP_CIPHER = 41,
  706. WLAN_STATUS_INVALID_PAIRWISE_CIPHER = 42,
  707. WLAN_STATUS_INVALID_AKMP = 43,
  708. WLAN_STATUS_UNSUPP_RSN_VERSION = 44,
  709. WLAN_STATUS_INVALID_RSN_IE_CAP = 45,
  710. WLAN_STATUS_CIPHER_SUITE_REJECTED = 46,
  711. };
  712. /* Reason codes */
  713. enum ieee80211_reasoncode {
  714. WLAN_REASON_UNSPECIFIED = 1,
  715. WLAN_REASON_PREV_AUTH_NOT_VALID = 2,
  716. WLAN_REASON_DEAUTH_LEAVING = 3,
  717. WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY = 4,
  718. WLAN_REASON_DISASSOC_AP_BUSY = 5,
  719. WLAN_REASON_CLASS2_FRAME_FROM_NONAUTH_STA = 6,
  720. WLAN_REASON_CLASS3_FRAME_FROM_NONASSOC_STA = 7,
  721. WLAN_REASON_DISASSOC_STA_HAS_LEFT = 8,
  722. WLAN_REASON_STA_REQ_ASSOC_WITHOUT_AUTH = 9,
  723. /* 802.11h */
  724. WLAN_REASON_DISASSOC_BAD_POWER = 10,
  725. WLAN_REASON_DISASSOC_BAD_SUPP_CHAN = 11,
  726. /* 802.11i */
  727. WLAN_REASON_INVALID_IE = 13,
  728. WLAN_REASON_MIC_FAILURE = 14,
  729. WLAN_REASON_4WAY_HANDSHAKE_TIMEOUT = 15,
  730. WLAN_REASON_GROUP_KEY_HANDSHAKE_TIMEOUT = 16,
  731. WLAN_REASON_IE_DIFFERENT = 17,
  732. WLAN_REASON_INVALID_GROUP_CIPHER = 18,
  733. WLAN_REASON_INVALID_PAIRWISE_CIPHER = 19,
  734. WLAN_REASON_INVALID_AKMP = 20,
  735. WLAN_REASON_UNSUPP_RSN_VERSION = 21,
  736. WLAN_REASON_INVALID_RSN_IE_CAP = 22,
  737. WLAN_REASON_IEEE8021X_FAILED = 23,
  738. WLAN_REASON_CIPHER_SUITE_REJECTED = 24,
  739. };
  740. #define IEEE80211_STATMASK_SIGNAL (1<<0)
  741. #define IEEE80211_STATMASK_RSSI (1<<1)
  742. #define IEEE80211_STATMASK_NOISE (1<<2)
  743. #define IEEE80211_STATMASK_RATE (1<<3)
  744. #define IEEE80211_STATMASK_WEMASK 0x7
  745. #define IEEE80211_CCK_MODULATION (1<<0)
  746. #define IEEE80211_OFDM_MODULATION (1<<1)
  747. #define IEEE80211_24GHZ_BAND (1<<0)
  748. #define IEEE80211_52GHZ_BAND (1<<1)
  749. #define IEEE80211_CCK_RATE_LEN 4
  750. #define IEEE80211_CCK_RATE_1MB 0x02
  751. #define IEEE80211_CCK_RATE_2MB 0x04
  752. #define IEEE80211_CCK_RATE_5MB 0x0B
  753. #define IEEE80211_CCK_RATE_11MB 0x16
  754. #define IEEE80211_OFDM_RATE_LEN 8
  755. #define IEEE80211_OFDM_RATE_6MB 0x0C
  756. #define IEEE80211_OFDM_RATE_9MB 0x12
  757. #define IEEE80211_OFDM_RATE_12MB 0x18
  758. #define IEEE80211_OFDM_RATE_18MB 0x24
  759. #define IEEE80211_OFDM_RATE_24MB 0x30
  760. #define IEEE80211_OFDM_RATE_36MB 0x48
  761. #define IEEE80211_OFDM_RATE_48MB 0x60
  762. #define IEEE80211_OFDM_RATE_54MB 0x6C
  763. #define IEEE80211_BASIC_RATE_MASK 0x80
  764. #define IEEE80211_CCK_RATE_1MB_MASK (1<<0)
  765. #define IEEE80211_CCK_RATE_2MB_MASK (1<<1)
  766. #define IEEE80211_CCK_RATE_5MB_MASK (1<<2)
  767. #define IEEE80211_CCK_RATE_11MB_MASK (1<<3)
  768. #define IEEE80211_OFDM_RATE_6MB_MASK (1<<4)
  769. #define IEEE80211_OFDM_RATE_9MB_MASK (1<<5)
  770. #define IEEE80211_OFDM_RATE_12MB_MASK (1<<6)
  771. #define IEEE80211_OFDM_RATE_18MB_MASK (1<<7)
  772. #define IEEE80211_OFDM_RATE_24MB_MASK (1<<8)
  773. #define IEEE80211_OFDM_RATE_36MB_MASK (1<<9)
  774. #define IEEE80211_OFDM_RATE_48MB_MASK (1<<10)
  775. #define IEEE80211_OFDM_RATE_54MB_MASK (1<<11)
  776. #define IEEE80211_CCK_RATES_MASK 0x0000000F
  777. #define IEEE80211_CCK_BASIC_RATES_MASK (IEEE80211_CCK_RATE_1MB_MASK | \
  778. IEEE80211_CCK_RATE_2MB_MASK)
  779. #define IEEE80211_CCK_DEFAULT_RATES_MASK (IEEE80211_CCK_BASIC_RATES_MASK | \
  780. IEEE80211_CCK_RATE_5MB_MASK | \
  781. IEEE80211_CCK_RATE_11MB_MASK)
  782. #define IEEE80211_OFDM_RATES_MASK 0x00000FF0
  783. #define IEEE80211_OFDM_BASIC_RATES_MASK (IEEE80211_OFDM_RATE_6MB_MASK | \
  784. IEEE80211_OFDM_RATE_12MB_MASK | \
  785. IEEE80211_OFDM_RATE_24MB_MASK)
  786. #define IEEE80211_OFDM_DEFAULT_RATES_MASK (IEEE80211_OFDM_BASIC_RATES_MASK | \
  787. IEEE80211_OFDM_RATE_9MB_MASK | \
  788. IEEE80211_OFDM_RATE_18MB_MASK | \
  789. IEEE80211_OFDM_RATE_36MB_MASK | \
  790. IEEE80211_OFDM_RATE_48MB_MASK | \
  791. IEEE80211_OFDM_RATE_54MB_MASK)
  792. #define IEEE80211_DEFAULT_RATES_MASK (IEEE80211_OFDM_DEFAULT_RATES_MASK | \
  793. IEEE80211_CCK_DEFAULT_RATES_MASK)
  794. #define IEEE80211_NUM_OFDM_RATES 8
  795. #define IEEE80211_NUM_CCK_RATES 4
  796. #define IEEE80211_OFDM_SHIFT_MASK_A 4
  797. /* this is stolen and modified from the madwifi driver*/
  798. #define IEEE80211_FC0_TYPE_MASK 0x0c
  799. #define IEEE80211_FC0_TYPE_DATA 0x08
  800. #define IEEE80211_FC0_SUBTYPE_MASK 0xB0
  801. #define IEEE80211_FC0_SUBTYPE_QOS 0x80
  802. #define IEEE80211_QOS_HAS_SEQ(fc) \
  803. (((fc) & (IEEE80211_FC0_TYPE_MASK | IEEE80211_FC0_SUBTYPE_MASK)) == \
  804. (IEEE80211_FC0_TYPE_DATA | IEEE80211_FC0_SUBTYPE_QOS))
  805. /* this is stolen from ipw2200 driver */
  806. #define IEEE_IBSS_MAC_HASH_SIZE 31
  807. struct ieee_ibss_seq {
  808. u8 mac[ETH_ALEN];
  809. u16 seq_num[17];
  810. u16 frag_num[17];
  811. unsigned long packet_time[17];
  812. struct list_head list;
  813. };
  814. /* NOTE: This data is for statistical purposes; not all hardware provides this
  815. * information for frames received. Not setting these will not cause
  816. * any adverse affects. */
  817. struct ieee80211_rx_stats {
  818. #if 1
  819. u32 mac_time[2];
  820. s8 rssi;
  821. u8 signal;
  822. u8 noise;
  823. u16 rate; /* in 100 kbps */
  824. u8 received_channel;
  825. u8 control;
  826. u8 mask;
  827. u8 freq;
  828. u16 len;
  829. u64 tsf;
  830. u32 beacon_time;
  831. u8 nic_type;
  832. u16 Length;
  833. // u8 DataRate; // In 0.5 Mbps
  834. u8 SignalQuality; // in 0-100 index.
  835. s32 RecvSignalPower; // Real power in dBm for this packet, no beautification and aggregation.
  836. s8 RxPower; // in dBm Translate from PWdB
  837. u8 SignalStrength; // in 0-100 index.
  838. u16 bHwError:1;
  839. u16 bCRC:1;
  840. u16 bICV:1;
  841. u16 bShortPreamble:1;
  842. u16 Antenna:1; //for rtl8185
  843. u16 Decrypted:1; //for rtl8185, rtl8187
  844. u16 Wakeup:1; //for rtl8185
  845. u16 Reserved0:1; //for rtl8185
  846. u8 AGC;
  847. u32 TimeStampLow;
  848. u32 TimeStampHigh;
  849. bool bShift;
  850. bool bIsQosData; // Added by Annie, 2005-12-22.
  851. u8 UserPriority;
  852. //1!!!!!!!!!!!!!!!!!!!!!!!!!!!
  853. //1Attention Please!!!<11n or 8190 specific code should be put below this line>
  854. //1!!!!!!!!!!!!!!!!!!!!!!!!!!!
  855. u8 RxDrvInfoSize;
  856. u8 RxBufShift;
  857. bool bIsAMPDU;
  858. bool bFirstMPDU;
  859. bool bContainHTC;
  860. bool RxIs40MHzPacket;
  861. u32 RxPWDBAll;
  862. u8 RxMIMOSignalStrength[4]; // in 0~100 index
  863. s8 RxMIMOSignalQuality[2];
  864. bool bPacketMatchBSSID;
  865. bool bIsCCK;
  866. bool bPacketToSelf;
  867. //added by amy
  868. u8* virtual_address;
  869. u16 packetlength; // Total packet length: Must equal to sum of all FragLength
  870. u16 fraglength; // FragLength should equal to PacketLength in non-fragment case
  871. u16 fragoffset; // Data offset for this fragment
  872. u16 ntotalfrag;
  873. bool bisrxaggrsubframe;
  874. bool bPacketBeacon; //cosa add for rssi
  875. bool bToSelfBA; //cosa add for rssi
  876. char cck_adc_pwdb[4]; //cosa add for rx path selection
  877. u16 Seq_Num;
  878. #endif
  879. };
  880. /* IEEE 802.11 requires that STA supports concurrent reception of at least
  881. * three fragmented frames. This define can be increased to support more
  882. * concurrent frames, but it should be noted that each entry can consume about
  883. * 2 kB of RAM and increasing cache size will slow down frame reassembly. */
  884. #define IEEE80211_FRAG_CACHE_LEN 4
  885. struct ieee80211_frag_entry {
  886. unsigned long first_frag_time;
  887. unsigned int seq;
  888. unsigned int last_frag;
  889. struct sk_buff *skb;
  890. u8 src_addr[ETH_ALEN];
  891. u8 dst_addr[ETH_ALEN];
  892. };
  893. struct ieee80211_stats {
  894. unsigned int tx_unicast_frames;
  895. unsigned int tx_multicast_frames;
  896. unsigned int tx_fragments;
  897. unsigned int tx_unicast_octets;
  898. unsigned int tx_multicast_octets;
  899. unsigned int tx_deferred_transmissions;
  900. unsigned int tx_single_retry_frames;
  901. unsigned int tx_multiple_retry_frames;
  902. unsigned int tx_retry_limit_exceeded;
  903. unsigned int tx_discards;
  904. unsigned int rx_unicast_frames;
  905. unsigned int rx_multicast_frames;
  906. unsigned int rx_fragments;
  907. unsigned int rx_unicast_octets;
  908. unsigned int rx_multicast_octets;
  909. unsigned int rx_fcs_errors;
  910. unsigned int rx_discards_no_buffer;
  911. unsigned int tx_discards_wrong_sa;
  912. unsigned int rx_discards_undecryptable;
  913. unsigned int rx_message_in_msg_fragments;
  914. unsigned int rx_message_in_bad_msg_fragments;
  915. };
  916. struct ieee80211_device;
  917. #include "ieee80211_crypt.h"
  918. #define SEC_KEY_1 (1<<0)
  919. #define SEC_KEY_2 (1<<1)
  920. #define SEC_KEY_3 (1<<2)
  921. #define SEC_KEY_4 (1<<3)
  922. #define SEC_ACTIVE_KEY (1<<4)
  923. #define SEC_AUTH_MODE (1<<5)
  924. #define SEC_UNICAST_GROUP (1<<6)
  925. #define SEC_LEVEL (1<<7)
  926. #define SEC_ENABLED (1<<8)
  927. #define SEC_ENCRYPT (1<<9)
  928. #define SEC_LEVEL_0 0 /* None */
  929. #define SEC_LEVEL_1 1 /* WEP 40 and 104 bit */
  930. #define SEC_LEVEL_2 2 /* Level 1 + TKIP */
  931. #define SEC_LEVEL_2_CKIP 3 /* Level 1 + CKIP */
  932. #define SEC_LEVEL_3 4 /* Level 2 + CCMP */
  933. #define SEC_ALG_NONE 0
  934. #define SEC_ALG_WEP 1
  935. #define SEC_ALG_TKIP 2
  936. #define SEC_ALG_CCMP 4
  937. #define WEP_KEYS 4
  938. #define WEP_KEY_LEN 13
  939. #define SCM_KEY_LEN 32
  940. #define SCM_TEMPORAL_KEY_LENGTH 16
  941. struct ieee80211_security {
  942. u16 active_key:2,
  943. enabled:1,
  944. auth_mode:2,
  945. auth_algo:4,
  946. unicast_uses_group:1,
  947. encrypt:1;
  948. u8 key_sizes[WEP_KEYS];
  949. u8 keys[WEP_KEYS][SCM_KEY_LEN];
  950. u8 level;
  951. u16 flags;
  952. } __attribute__ ((packed));
  953. /*
  954. 802.11 data frame from AP
  955. ,-------------------------------------------------------------------.
  956. Bytes | 2 | 2 | 6 | 6 | 6 | 2 | 0..2312 | 4 |
  957. |------|------|---------|---------|---------|------|---------|------|
  958. Desc. | ctrl | dura | DA/RA | TA | SA | Sequ | frame | fcs |
  959. | | tion | (BSSID) | | | ence | data | |
  960. `-------------------------------------------------------------------'
  961. Total: 28-2340 bytes
  962. */
  963. /* Management Frame Information Element Types */
  964. enum ieee80211_mfie {
  965. MFIE_TYPE_SSID = 0,
  966. MFIE_TYPE_RATES = 1,
  967. MFIE_TYPE_FH_SET = 2,
  968. MFIE_TYPE_DS_SET = 3,
  969. MFIE_TYPE_CF_SET = 4,
  970. MFIE_TYPE_TIM = 5,
  971. MFIE_TYPE_IBSS_SET = 6,
  972. MFIE_TYPE_COUNTRY = 7,
  973. MFIE_TYPE_HOP_PARAMS = 8,
  974. MFIE_TYPE_HOP_TABLE = 9,
  975. MFIE_TYPE_REQUEST = 10,
  976. MFIE_TYPE_CHALLENGE = 16,
  977. MFIE_TYPE_POWER_CONSTRAINT = 32,
  978. MFIE_TYPE_POWER_CAPABILITY = 33,
  979. MFIE_TYPE_TPC_REQUEST = 34,
  980. MFIE_TYPE_TPC_REPORT = 35,
  981. MFIE_TYPE_SUPP_CHANNELS = 36,
  982. MFIE_TYPE_CSA = 37,
  983. MFIE_TYPE_MEASURE_REQUEST = 38,
  984. MFIE_TYPE_MEASURE_REPORT = 39,
  985. MFIE_TYPE_QUIET = 40,
  986. MFIE_TYPE_IBSS_DFS = 41,
  987. MFIE_TYPE_ERP = 42,
  988. MFIE_TYPE_RSN = 48,
  989. MFIE_TYPE_RATES_EX = 50,
  990. MFIE_TYPE_HT_CAP= 45,
  991. MFIE_TYPE_HT_INFO= 61,
  992. MFIE_TYPE_AIRONET=133,
  993. MFIE_TYPE_GENERIC = 221,
  994. MFIE_TYPE_QOS_PARAMETER = 222,
  995. };
  996. /* Minimal header; can be used for passing 802.11 frames with sufficient
  997. * information to determine what type of underlying data type is actually
  998. * stored in the data. */
  999. struct ieee80211_pspoll_hdr {
  1000. __le16 frame_ctl;
  1001. __le16 aid;
  1002. u8 bssid[ETH_ALEN];
  1003. u8 ta[ETH_ALEN];
  1004. //u8 payload[0];
  1005. } __attribute__ ((packed));
  1006. struct ieee80211_hdr {
  1007. __le16 frame_ctl;
  1008. __le16 duration_id;
  1009. u8 payload[0];
  1010. } __attribute__ ((packed));
  1011. struct ieee80211_hdr_1addr {
  1012. __le16 frame_ctl;
  1013. __le16 duration_id;
  1014. u8 addr1[ETH_ALEN];
  1015. u8 payload[0];
  1016. } __attribute__ ((packed));
  1017. struct ieee80211_hdr_2addr {
  1018. __le16 frame_ctl;
  1019. __le16 duration_id;
  1020. u8 addr1[ETH_ALEN];
  1021. u8 addr2[ETH_ALEN];
  1022. u8 payload[0];
  1023. } __attribute__ ((packed));
  1024. struct ieee80211_hdr_3addr {
  1025. __le16 frame_ctl;
  1026. __le16 duration_id;
  1027. u8 addr1[ETH_ALEN];
  1028. u8 addr2[ETH_ALEN];
  1029. u8 addr3[ETH_ALEN];
  1030. __le16 seq_ctl;
  1031. u8 payload[0];
  1032. } __attribute__ ((packed));
  1033. struct ieee80211_hdr_4addr {
  1034. __le16 frame_ctl;
  1035. __le16 duration_id;
  1036. u8 addr1[ETH_ALEN];
  1037. u8 addr2[ETH_ALEN];
  1038. u8 addr3[ETH_ALEN];
  1039. __le16 seq_ctl;
  1040. u8 addr4[ETH_ALEN];
  1041. u8 payload[0];
  1042. } __attribute__ ((packed));
  1043. struct ieee80211_hdr_3addrqos {
  1044. __le16 frame_ctl;
  1045. __le16 duration_id;
  1046. u8 addr1[ETH_ALEN];
  1047. u8 addr2[ETH_ALEN];
  1048. u8 addr3[ETH_ALEN];
  1049. __le16 seq_ctl;
  1050. u8 payload[0];
  1051. __le16 qos_ctl;
  1052. } __attribute__ ((packed));
  1053. struct ieee80211_hdr_4addrqos {
  1054. __le16 frame_ctl;
  1055. __le16 duration_id;
  1056. u8 addr1[ETH_ALEN];
  1057. u8 addr2[ETH_ALEN];
  1058. u8 addr3[ETH_ALEN];
  1059. __le16 seq_ctl;
  1060. u8 addr4[ETH_ALEN];
  1061. u8 payload[0];
  1062. __le16 qos_ctl;
  1063. } __attribute__ ((packed));
  1064. struct ieee80211_info_element {
  1065. u8 id;
  1066. u8 len;
  1067. u8 data[0];
  1068. } __attribute__ ((packed));
  1069. struct ieee80211_authentication {
  1070. struct ieee80211_hdr_3addr header;
  1071. __le16 algorithm;
  1072. __le16 transaction;
  1073. __le16 status;
  1074. /*challenge*/
  1075. struct ieee80211_info_element info_element[0];
  1076. } __attribute__ ((packed));
  1077. struct ieee80211_disassoc {
  1078. struct ieee80211_hdr_3addr header;
  1079. __le16 reason;
  1080. } __attribute__ ((packed));
  1081. struct ieee80211_probe_request {
  1082. struct ieee80211_hdr_3addr header;
  1083. /* SSID, supported rates */
  1084. struct ieee80211_info_element info_element[0];
  1085. } __attribute__ ((packed));
  1086. struct ieee80211_probe_response {
  1087. struct ieee80211_hdr_3addr header;
  1088. u32 time_stamp[2];
  1089. __le16 beacon_interval;
  1090. __le16 capability;
  1091. /* SSID, supported rates, FH params, DS params,
  1092. * CF params, IBSS params, TIM (if beacon), RSN */
  1093. struct ieee80211_info_element info_element[0];
  1094. } __attribute__ ((packed));
  1095. /* Alias beacon for probe_response */
  1096. #define ieee80211_beacon ieee80211_probe_response
  1097. struct ieee80211_assoc_request_frame {
  1098. struct ieee80211_hdr_3addr header;
  1099. __le16 capability;
  1100. __le16 listen_interval;
  1101. /* SSID, supported rates, RSN */
  1102. struct ieee80211_info_element info_element[0];
  1103. } __attribute__ ((packed));
  1104. struct ieee80211_reassoc_request_frame {
  1105. struct ieee80211_hdr_3addr header;
  1106. __le16 capability;
  1107. __le16 listen_interval;
  1108. u8 current_ap[ETH_ALEN];
  1109. /* SSID, supported rates, RSN */
  1110. struct ieee80211_info_element info_element[0];
  1111. } __attribute__ ((packed));
  1112. struct ieee80211_assoc_response_frame {
  1113. struct ieee80211_hdr_3addr header;
  1114. __le16 capability;
  1115. __le16 status;
  1116. __le16 aid;
  1117. struct ieee80211_info_element info_element[0]; /* supported rates */
  1118. } __attribute__ ((packed));
  1119. struct ieee80211_txb {
  1120. u8 nr_frags;
  1121. u8 encrypted;
  1122. u8 queue_index;
  1123. u8 rts_included;
  1124. u16 reserved;
  1125. __le16 frag_size;
  1126. __le16 payload_size;
  1127. struct sk_buff *fragments[0];
  1128. };
  1129. #define MAX_TX_AGG_COUNT 16
  1130. struct ieee80211_drv_agg_txb {
  1131. u8 nr_drv_agg_frames;
  1132. struct sk_buff *tx_agg_frames[MAX_TX_AGG_COUNT];
  1133. }__attribute__((packed));
  1134. #define MAX_SUBFRAME_COUNT 64
  1135. struct ieee80211_rxb {
  1136. u8 nr_subframes;
  1137. struct sk_buff *subframes[MAX_SUBFRAME_COUNT];
  1138. u8 dst[ETH_ALEN];
  1139. u8 src[ETH_ALEN];
  1140. }__attribute__((packed));
  1141. typedef union _frameqos {
  1142. u16 shortdata;
  1143. u8 chardata[2];
  1144. struct {
  1145. u16 tid:4;
  1146. u16 eosp:1;
  1147. u16 ack_policy:2;
  1148. u16 reserved:1;
  1149. u16 txop:8;
  1150. }field;
  1151. }frameqos,*pframeqos;
  1152. /* SWEEP TABLE ENTRIES NUMBER*/
  1153. #define MAX_SWEEP_TAB_ENTRIES 42
  1154. #define MAX_SWEEP_TAB_ENTRIES_PER_PACKET 7
  1155. /* MAX_RATES_LENGTH needs to be 12. The spec says 8, and many APs
  1156. * only use 8, and then use extended rates for the remaining supported
  1157. * rates. Other APs, however, stick all of their supported rates on the
  1158. * main rates information element... */
  1159. #define MAX_RATES_LENGTH ((u8)12)
  1160. #define MAX_RATES_EX_LENGTH ((u8)16)
  1161. #define MAX_NETWORK_COUNT 128
  1162. #define MAX_CHANNEL_NUMBER 161
  1163. #define IEEE80211_SOFTMAC_SCAN_TIME 100
  1164. //(HZ / 2)
  1165. #define IEEE80211_SOFTMAC_ASSOC_RETRY_TIME (HZ * 2)
  1166. #define CRC_LENGTH 4U
  1167. #define MAX_WPA_IE_LEN 64
  1168. #define NETWORK_EMPTY_ESSID (1<<0)
  1169. #define NETWORK_HAS_OFDM (1<<1)
  1170. #define NETWORK_HAS_CCK (1<<2)
  1171. /* QoS structure */
  1172. #define NETWORK_HAS_QOS_PARAMETERS (1<<3)
  1173. #define NETWORK_HAS_QOS_INFORMATION (1<<4)
  1174. #define NETWORK_HAS_QOS_MASK (NETWORK_HAS_QOS_PARAMETERS | \
  1175. NETWORK_HAS_QOS_INFORMATION)
  1176. /* 802.11h */
  1177. #define NETWORK_HAS_POWER_CONSTRAINT (1<<5)
  1178. #define NETWORK_HAS_CSA (1<<6)
  1179. #define NETWORK_HAS_QUIET (1<<7)
  1180. #define NETWORK_HAS_IBSS_DFS (1<<8)
  1181. #define NETWORK_HAS_TPC_REPORT (1<<9)
  1182. #define NETWORK_HAS_ERP_VALUE (1<<10)
  1183. #define QOS_QUEUE_NUM 4
  1184. #define QOS_OUI_LEN 3
  1185. #define QOS_OUI_TYPE 2
  1186. #define QOS_ELEMENT_ID 221
  1187. #define QOS_OUI_INFO_SUB_TYPE 0
  1188. #define QOS_OUI_PARAM_SUB_TYPE 1
  1189. #define QOS_VERSION_1 1
  1190. #define QOS_AIFSN_MIN_VALUE 2
  1191. #if 1
  1192. struct ieee80211_qos_information_element {
  1193. u8 elementID;
  1194. u8 length;
  1195. u8 qui[QOS_OUI_LEN];
  1196. u8 qui_type;
  1197. u8 qui_subtype;
  1198. u8 version;
  1199. u8 ac_info;
  1200. } __attribute__ ((packed));
  1201. struct ieee80211_qos_ac_parameter {
  1202. u8 aci_aifsn;
  1203. u8 ecw_min_max;
  1204. __le16 tx_op_limit;
  1205. } __attribute__ ((packed));
  1206. struct ieee80211_qos_parameter_info {
  1207. struct ieee80211_qos_information_element info_element;
  1208. u8 reserved;
  1209. struct ieee80211_qos_ac_parameter ac_params_record[QOS_QUEUE_NUM];
  1210. } __attribute__ ((packed));
  1211. struct ieee80211_qos_parameters {
  1212. __le16 cw_min[QOS_QUEUE_NUM];
  1213. __le16 cw_max[QOS_QUEUE_NUM];
  1214. u8 aifs[QOS_QUEUE_NUM];
  1215. u8 flag[QOS_QUEUE_NUM];
  1216. __le16 tx_op_limit[QOS_QUEUE_NUM];
  1217. } __attribute__ ((packed));
  1218. struct ieee80211_qos_data {
  1219. struct ieee80211_qos_parameters parameters;
  1220. int active;
  1221. int supported;
  1222. u8 param_count;
  1223. u8 old_param_count;
  1224. };
  1225. struct ieee80211_tim_parameters {
  1226. u8 tim_count;
  1227. u8 tim_period;
  1228. } __attribute__ ((packed));
  1229. //#else
  1230. struct ieee80211_wmm_ac_param {
  1231. u8 ac_aci_acm_aifsn;
  1232. u8 ac_ecwmin_ecwmax;
  1233. u16 ac_txop_limit;
  1234. };
  1235. struct ieee80211_wmm_ts_info {
  1236. u8 ac_dir_tid;
  1237. u8 ac_up_psb;
  1238. u8 reserved;
  1239. } __attribute__ ((packed));
  1240. struct ieee80211_wmm_tspec_elem {
  1241. struct ieee80211_wmm_ts_info ts_info;
  1242. u16 norm_msdu_size;
  1243. u16 max_msdu_size;
  1244. u32 min_serv_inter;
  1245. u32 max_serv_inter;
  1246. u32 inact_inter;
  1247. u32 suspen_inter;
  1248. u32 serv_start_time;
  1249. u32 min_data_rate;
  1250. u32 mean_data_rate;
  1251. u32 peak_data_rate;
  1252. u32 max_burst_size;
  1253. u32 delay_bound;
  1254. u32 min_phy_rate;
  1255. u16 surp_band_allow;
  1256. u16 medium_time;
  1257. }__attribute__((packed));
  1258. #endif
  1259. enum eap_type {
  1260. EAP_PACKET = 0,
  1261. EAPOL_START,
  1262. EAPOL_LOGOFF,
  1263. EAPOL_KEY,
  1264. EAPOL_ENCAP_ASF_ALERT
  1265. };
  1266. static const char *eap_types[] = {
  1267. [EAP_PACKET] = "EAP-Packet",
  1268. [EAPOL_START] = "EAPOL-Start",
  1269. [EAPOL_LOGOFF] = "EAPOL-Logoff",
  1270. [EAPOL_KEY] = "EAPOL-Key",
  1271. [EAPOL_ENCAP_ASF_ALERT] = "EAPOL-Encap-ASF-Alert"
  1272. };
  1273. static inline const char *eap_get_type(int type)
  1274. {
  1275. return ((u32)type >= ARRAY_SIZE(eap_types)) ? "Unknown" : eap_types[type];
  1276. }
  1277. //added by amy for reorder
  1278. static inline u8 Frame_QoSTID(u8* buf)
  1279. {
  1280. struct ieee80211_hdr_3addr *hdr;
  1281. u16 fc;
  1282. hdr = (struct ieee80211_hdr_3addr *)buf;
  1283. fc = le16_to_cpu(hdr->frame_ctl);
  1284. return (u8)((frameqos*)(buf + (((fc & IEEE80211_FCTL_TODS)&&(fc & IEEE80211_FCTL_FROMDS))? 30 : 24)))->field.tid;
  1285. }
  1286. //added by amy for reorder
  1287. struct eapol {
  1288. u8 snap[6];
  1289. u16 ethertype;
  1290. u8 version;
  1291. u8 type;
  1292. u16 length;
  1293. } __attribute__ ((packed));
  1294. struct ieee80211_softmac_stats{
  1295. unsigned int rx_ass_ok;
  1296. unsigned int rx_ass_err;
  1297. unsigned int rx_probe_rq;
  1298. unsigned int tx_probe_rs;
  1299. unsigned int tx_beacons;
  1300. unsigned int rx_auth_rq;
  1301. unsigned int rx_auth_rs_ok;
  1302. unsigned int rx_auth_rs_err;
  1303. unsigned int tx_auth_rq;
  1304. unsigned int no_auth_rs;
  1305. unsigned int no_ass_rs;
  1306. unsigned int tx_ass_rq;
  1307. unsigned int rx_ass_rq;
  1308. unsigned int tx_probe_rq;
  1309. unsigned int reassoc;
  1310. unsigned int swtxstop;
  1311. unsigned int swtxawake;
  1312. unsigned char CurrentShowTxate;
  1313. unsigned char last_packet_rate;
  1314. unsigned int txretrycount;
  1315. };
  1316. #define BEACON_PROBE_SSID_ID_POSITION 12
  1317. struct ieee80211_info_element_hdr {
  1318. u8 id;
  1319. u8 len;
  1320. } __attribute__ ((packed));
  1321. /*
  1322. * These are the data types that can make up management packets
  1323. *
  1324. u16 auth_algorithm;
  1325. u16 auth_sequence;
  1326. u16 beacon_interval;
  1327. u16 capability;
  1328. u8 current_ap[ETH_ALEN];
  1329. u16 listen_interval;
  1330. struct {
  1331. u16 association_id:14, reserved:2;
  1332. } __attribute__ ((packed));
  1333. u32 time_stamp[2];
  1334. u16 reason;
  1335. u16 status;
  1336. */
  1337. #define IEEE80211_DEFAULT_TX_ESSID "Penguin"
  1338. #define IEEE80211_DEFAULT_BASIC_RATE 2 //1Mbps
  1339. enum {WMM_all_frame, WMM_two_frame, WMM_four_frame, WMM_six_frame};
  1340. #define MAX_SP_Len (WMM_all_frame << 4)
  1341. #define IEEE80211_QOS_TID 0x0f
  1342. #define QOS_CTL_NOTCONTAIN_ACK (0x01 << 5)
  1343. #define IEEE80211_DTIM_MBCAST 4
  1344. #define IEEE80211_DTIM_UCAST 2
  1345. #define IEEE80211_DTIM_VALID 1
  1346. #define IEEE80211_DTIM_INVALID 0
  1347. #define IEEE80211_PS_DISABLED 0
  1348. #define IEEE80211_PS_UNICAST IEEE80211_DTIM_UCAST
  1349. #define IEEE80211_PS_MBCAST IEEE80211_DTIM_MBCAST
  1350. //added by David for QoS 2006/6/30
  1351. //#define WMM_Hang_8187
  1352. #ifdef WMM_Hang_8187
  1353. #undef WMM_Hang_8187
  1354. #endif
  1355. #define WME_AC_BK 0x00
  1356. #define WME_AC_BE 0x01
  1357. #define WME_AC_VI 0x02
  1358. #define WME_AC_VO 0x03
  1359. #define WME_ACI_MASK 0x03
  1360. #define WME_AIFSN_MASK 0x03
  1361. #define WME_AC_PRAM_LEN 16
  1362. #define MAX_RECEIVE_BUFFER_SIZE 9100
  1363. //UP Mapping to AC, using in MgntQuery_SequenceNumber() and maybe for DSCP
  1364. //#define UP2AC(up) ((up<3) ? ((up==0)?1:0) : (up>>1))
  1365. #if 1
  1366. #define UP2AC(up) ( \
  1367. ((up) < 1) ? WME_AC_BE : \
  1368. ((up) < 3) ? WME_AC_BK : \
  1369. ((up) < 4) ? WME_AC_BE : \
  1370. ((up) < 6) ? WME_AC_VI : \
  1371. WME_AC_VO)
  1372. #endif
  1373. //AC Mapping to UP, using in Tx part for selecting the corresponding TX queue
  1374. #define AC2UP(_ac) ( \
  1375. ((_ac) == WME_AC_VO) ? 6 : \
  1376. ((_ac) == WME_AC_VI) ? 5 : \
  1377. ((_ac) == WME_AC_BK) ? 1 : \
  1378. 0)
  1379. #define ETHER_ADDR_LEN 6 /* length of an Ethernet address */
  1380. #define ETHERNET_HEADER_SIZE 14 /* length of two Ethernet address plus ether type*/
  1381. struct ether_header {
  1382. u8 ether_dhost[ETHER_ADDR_LEN];
  1383. u8 ether_shost[ETHER_ADDR_LEN];
  1384. u16 ether_type;
  1385. } __attribute__((packed));
  1386. #ifndef ETHERTYPE_PAE
  1387. #define ETHERTYPE_PAE 0x888e /* EAPOL PAE/802.1x */
  1388. #endif
  1389. #ifndef ETHERTYPE_IP
  1390. #define ETHERTYPE_IP 0x0800 /* IP protocol */
  1391. #endif
  1392. typedef struct _bss_ht{
  1393. bool support_ht;
  1394. // HT related elements
  1395. u8 ht_cap_buf[32];
  1396. u16 ht_cap_len;
  1397. u8 ht_info_buf[32];
  1398. u16 ht_info_len;
  1399. HT_SPEC_VER ht_spec_ver;
  1400. //HT_CAPABILITY_ELE bdHTCapEle;
  1401. //HT_INFORMATION_ELE bdHTInfoEle;
  1402. bool aggregation;
  1403. bool long_slot_time;
  1404. }bss_ht, *pbss_ht;
  1405. typedef enum _erp_t{
  1406. ERP_NonERPpresent = 0x01,
  1407. ERP_UseProtect

Large files files are truncated, but you can click here to view the full file