tx_msdu_start.h 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538
  1. /* Copyright (c) 2022, Qualcomm Innovation Center, Inc. All rights reserved.
  2. *
  3. * Permission to use, copy, modify, and/or distribute this software for any
  4. * purpose with or without fee is hereby granted, provided that the above
  5. * copyright notice and this permission notice appear in all copies.
  6. *
  7. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  8. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  9. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  10. * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  11. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  12. * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  13. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  14. */
  15. #ifndef _TX_MSDU_START_H_
  16. #define _TX_MSDU_START_H_
  17. #if !defined(__ASSEMBLER__)
  18. #endif
  19. #define NUM_OF_DWORDS_TX_MSDU_START 8
  20. #define NUM_OF_QWORDS_TX_MSDU_START 4
  21. struct tx_msdu_start {
  22. #ifndef WIFI_BIT_ORDER_BIG_ENDIAN
  23. uint32_t msdu_len : 14, // [13:0]
  24. first_msdu : 1, // [14:14]
  25. last_msdu : 1, // [15:15]
  26. encap_type : 2, // [17:16]
  27. epd_en : 1, // [18:18]
  28. da_sa_present : 2, // [20:19]
  29. ipv4_checksum_en : 1, // [21:21]
  30. udp_over_ipv4_checksum_en : 1, // [22:22]
  31. udp_over_ipv6_checksum_en : 1, // [23:23]
  32. tcp_over_ipv4_checksum_en : 1, // [24:24]
  33. tcp_over_ipv6_checksum_en : 1, // [25:25]
  34. dummy_msdu_delimitation : 1, // [26:26]
  35. reserved_0a : 5; // [31:27]
  36. uint32_t tso_enable : 1, // [0:0]
  37. reserved_1a : 6, // [6:1]
  38. tcp_flag : 9, // [15:7]
  39. tcp_flag_mask : 9, // [24:16]
  40. mesh_enable : 1, // [25:25]
  41. reserved_1b : 6; // [31:26]
  42. uint32_t l2_length : 16, // [15:0]
  43. ip_length : 16; // [31:16]
  44. uint32_t tcp_seq_number : 32; // [31:0]
  45. uint32_t ip_identification : 16, // [15:0]
  46. checksum_offset : 13, // [28:16]
  47. partial_checksum_en : 1, // [29:29]
  48. reserved_4 : 2; // [31:30]
  49. uint32_t payload_start_offset : 14, // [13:0]
  50. reserved_5a : 2, // [15:14]
  51. payload_end_offset : 14, // [29:16]
  52. reserved_5b : 2; // [31:30]
  53. uint32_t udp_length : 16, // [15:0]
  54. reserved_6 : 16; // [31:16]
  55. uint32_t tlv64_padding : 32; // [31:0]
  56. #else
  57. uint32_t reserved_0a : 5, // [31:27]
  58. dummy_msdu_delimitation : 1, // [26:26]
  59. tcp_over_ipv6_checksum_en : 1, // [25:25]
  60. tcp_over_ipv4_checksum_en : 1, // [24:24]
  61. udp_over_ipv6_checksum_en : 1, // [23:23]
  62. udp_over_ipv4_checksum_en : 1, // [22:22]
  63. ipv4_checksum_en : 1, // [21:21]
  64. da_sa_present : 2, // [20:19]
  65. epd_en : 1, // [18:18]
  66. encap_type : 2, // [17:16]
  67. last_msdu : 1, // [15:15]
  68. first_msdu : 1, // [14:14]
  69. msdu_len : 14; // [13:0]
  70. uint32_t reserved_1b : 6, // [31:26]
  71. mesh_enable : 1, // [25:25]
  72. tcp_flag_mask : 9, // [24:16]
  73. tcp_flag : 9, // [15:7]
  74. reserved_1a : 6, // [6:1]
  75. tso_enable : 1; // [0:0]
  76. uint32_t ip_length : 16, // [31:16]
  77. l2_length : 16; // [15:0]
  78. uint32_t tcp_seq_number : 32; // [31:0]
  79. uint32_t reserved_4 : 2, // [31:30]
  80. partial_checksum_en : 1, // [29:29]
  81. checksum_offset : 13, // [28:16]
  82. ip_identification : 16; // [15:0]
  83. uint32_t reserved_5b : 2, // [31:30]
  84. payload_end_offset : 14, // [29:16]
  85. reserved_5a : 2, // [15:14]
  86. payload_start_offset : 14; // [13:0]
  87. uint32_t reserved_6 : 16, // [31:16]
  88. udp_length : 16; // [15:0]
  89. uint32_t tlv64_padding : 32; // [31:0]
  90. #endif
  91. };
  92. /* Description MSDU_LEN
  93. MSDU length before encapsulation. It is the same value as
  94. the length in the MSDU packet TLV
  95. */
  96. #define TX_MSDU_START_MSDU_LEN_OFFSET 0x0000000000000000
  97. #define TX_MSDU_START_MSDU_LEN_LSB 0
  98. #define TX_MSDU_START_MSDU_LEN_MSB 13
  99. #define TX_MSDU_START_MSDU_LEN_MASK 0x0000000000003fff
  100. /* Description FIRST_MSDU
  101. If set the current MSDU is the first MSDU in MPDU. Used
  102. by the OLE during encapsulation.
  103. */
  104. #define TX_MSDU_START_FIRST_MSDU_OFFSET 0x0000000000000000
  105. #define TX_MSDU_START_FIRST_MSDU_LSB 14
  106. #define TX_MSDU_START_FIRST_MSDU_MSB 14
  107. #define TX_MSDU_START_FIRST_MSDU_MASK 0x0000000000004000
  108. /* Description LAST_MSDU
  109. If set the current MSDU is the last MSDU in MPDU. Used
  110. by the OLE during encapsulation.
  111. */
  112. #define TX_MSDU_START_LAST_MSDU_OFFSET 0x0000000000000000
  113. #define TX_MSDU_START_LAST_MSDU_LSB 15
  114. #define TX_MSDU_START_LAST_MSDU_MSB 15
  115. #define TX_MSDU_START_LAST_MSDU_MASK 0x0000000000008000
  116. /* Description ENCAP_TYPE
  117. Indicates the encapsulation that HW will perform:
  118. <enum 0 RAW> No encapsulation
  119. <enum 1 Native_WiFi>
  120. <enum 2 Ethernet> Ethernet 2 (DIX) or 802.3 (uses SNAP/LLC)
  121. <enum 3 802_3> DO NOT USE. Indicate Ethernet
  122. Used by the OLE during encapsulation.
  123. <legal all>
  124. */
  125. #define TX_MSDU_START_ENCAP_TYPE_OFFSET 0x0000000000000000
  126. #define TX_MSDU_START_ENCAP_TYPE_LSB 16
  127. #define TX_MSDU_START_ENCAP_TYPE_MSB 17
  128. #define TX_MSDU_START_ENCAP_TYPE_MASK 0x0000000000030000
  129. /* Description EPD_EN
  130. Consumer: TXOLE
  131. Producer: SW/TCL
  132. If set to one use EPD instead of LPD
  133. <legal all>
  134. */
  135. #define TX_MSDU_START_EPD_EN_OFFSET 0x0000000000000000
  136. #define TX_MSDU_START_EPD_EN_LSB 18
  137. #define TX_MSDU_START_EPD_EN_MSB 18
  138. #define TX_MSDU_START_EPD_EN_MASK 0x0000000000040000
  139. /* Description DA_SA_PRESENT
  140. Used for 11ah
  141. Indicates the encapsulation that HW will perform:
  142. <enum 0 DA_SA_IS_ABSENT> DA and SA absent
  143. <enum 1 DA_IS_PRESENT> DA Present, SA Absent
  144. <enum 2 SA_IS_PRESENT>
  145. <enum 3 DA_SA_IS_PRESENT> Both DA and SA are present
  146. Used by the OLE during encapsulation.
  147. TXDMA gets this configuration from a sw configuration register.
  148. <legal all>
  149. */
  150. #define TX_MSDU_START_DA_SA_PRESENT_OFFSET 0x0000000000000000
  151. #define TX_MSDU_START_DA_SA_PRESENT_LSB 19
  152. #define TX_MSDU_START_DA_SA_PRESENT_MSB 20
  153. #define TX_MSDU_START_DA_SA_PRESENT_MASK 0x0000000000180000
  154. /* Description IPV4_CHECKSUM_EN
  155. Enable IPv4 checksum replacement
  156. */
  157. #define TX_MSDU_START_IPV4_CHECKSUM_EN_OFFSET 0x0000000000000000
  158. #define TX_MSDU_START_IPV4_CHECKSUM_EN_LSB 21
  159. #define TX_MSDU_START_IPV4_CHECKSUM_EN_MSB 21
  160. #define TX_MSDU_START_IPV4_CHECKSUM_EN_MASK 0x0000000000200000
  161. /* Description UDP_OVER_IPV4_CHECKSUM_EN
  162. Enable UDP over IPv4 checksum replacement. UDP checksum
  163. over IPv4 is optional for TCP/IP stacks.
  164. */
  165. #define TX_MSDU_START_UDP_OVER_IPV4_CHECKSUM_EN_OFFSET 0x0000000000000000
  166. #define TX_MSDU_START_UDP_OVER_IPV4_CHECKSUM_EN_LSB 22
  167. #define TX_MSDU_START_UDP_OVER_IPV4_CHECKSUM_EN_MSB 22
  168. #define TX_MSDU_START_UDP_OVER_IPV4_CHECKSUM_EN_MASK 0x0000000000400000
  169. /* Description UDP_OVER_IPV6_CHECKSUM_EN
  170. Enable UDP over IPv6 checksum replacement. UDP checksum
  171. over IPv6 is mandatory for TCP/IP stacks.
  172. */
  173. #define TX_MSDU_START_UDP_OVER_IPV6_CHECKSUM_EN_OFFSET 0x0000000000000000
  174. #define TX_MSDU_START_UDP_OVER_IPV6_CHECKSUM_EN_LSB 23
  175. #define TX_MSDU_START_UDP_OVER_IPV6_CHECKSUM_EN_MSB 23
  176. #define TX_MSDU_START_UDP_OVER_IPV6_CHECKSUM_EN_MASK 0x0000000000800000
  177. /* Description TCP_OVER_IPV4_CHECKSUM_EN
  178. Enable TCP checksum over IPv4 replacement
  179. */
  180. #define TX_MSDU_START_TCP_OVER_IPV4_CHECKSUM_EN_OFFSET 0x0000000000000000
  181. #define TX_MSDU_START_TCP_OVER_IPV4_CHECKSUM_EN_LSB 24
  182. #define TX_MSDU_START_TCP_OVER_IPV4_CHECKSUM_EN_MSB 24
  183. #define TX_MSDU_START_TCP_OVER_IPV4_CHECKSUM_EN_MASK 0x0000000001000000
  184. /* Description TCP_OVER_IPV6_CHECKSUM_EN
  185. Enable TCP checksum over IPv6 eplacement
  186. */
  187. #define TX_MSDU_START_TCP_OVER_IPV6_CHECKSUM_EN_OFFSET 0x0000000000000000
  188. #define TX_MSDU_START_TCP_OVER_IPV6_CHECKSUM_EN_LSB 25
  189. #define TX_MSDU_START_TCP_OVER_IPV6_CHECKSUM_EN_MSB 25
  190. #define TX_MSDU_START_TCP_OVER_IPV6_CHECKSUM_EN_MASK 0x0000000002000000
  191. /* Description DUMMY_MSDU_DELIMITATION
  192. This bit is mainly for debug.
  193. TXDMA sets this bit when sending a dummy 'TX_MSDU_END' + 'TX_MSDU_START'
  194. sequence for a user to delimit user arbitration where it
  195. could switch to packet data from other users before continuing
  196. this MSDU.
  197. This is done mainly for long raw Wi-Fi packets where TXDMA
  198. needs to switch users in the midst of the packet but other
  199. blocks assume TXDMA switch only at MSDU boundaries.
  200. <legal all>
  201. */
  202. #define TX_MSDU_START_DUMMY_MSDU_DELIMITATION_OFFSET 0x0000000000000000
  203. #define TX_MSDU_START_DUMMY_MSDU_DELIMITATION_LSB 26
  204. #define TX_MSDU_START_DUMMY_MSDU_DELIMITATION_MSB 26
  205. #define TX_MSDU_START_DUMMY_MSDU_DELIMITATION_MASK 0x0000000004000000
  206. /* Description RESERVED_0A
  207. FW will set to 0, MAC will ignore. <legal 0>
  208. */
  209. #define TX_MSDU_START_RESERVED_0A_OFFSET 0x0000000000000000
  210. #define TX_MSDU_START_RESERVED_0A_LSB 27
  211. #define TX_MSDU_START_RESERVED_0A_MSB 31
  212. #define TX_MSDU_START_RESERVED_0A_MASK 0x00000000f8000000
  213. /* Description TSO_ENABLE
  214. Enable transmit segmentation offload.
  215. In case MSDU_EXTENSION is used, TXDMA gets the setting for
  216. this bit from that descriptor.
  217. In case MSDU_EXTENSION is NOT use, TXDMA gets the setting
  218. for this bit from an internal SW programmable register.
  219. <legal all>
  220. */
  221. #define TX_MSDU_START_TSO_ENABLE_OFFSET 0x0000000000000000
  222. #define TX_MSDU_START_TSO_ENABLE_LSB 32
  223. #define TX_MSDU_START_TSO_ENABLE_MSB 32
  224. #define TX_MSDU_START_TSO_ENABLE_MASK 0x0000000100000000
  225. /* Description RESERVED_1A
  226. FW will set to 0, MAC will ignore. <legal 0>
  227. */
  228. #define TX_MSDU_START_RESERVED_1A_OFFSET 0x0000000000000000
  229. #define TX_MSDU_START_RESERVED_1A_LSB 33
  230. #define TX_MSDU_START_RESERVED_1A_MSB 38
  231. #define TX_MSDU_START_RESERVED_1A_MASK 0x0000007e00000000
  232. /* Description TCP_FLAG
  233. TCP flags
  234. {NS,CWR,ECE,URG,ACK,PSH, RST ,SYN,FIN}<legal all>
  235. */
  236. #define TX_MSDU_START_TCP_FLAG_OFFSET 0x0000000000000000
  237. #define TX_MSDU_START_TCP_FLAG_LSB 39
  238. #define TX_MSDU_START_TCP_FLAG_MSB 47
  239. #define TX_MSDU_START_TCP_FLAG_MASK 0x0000ff8000000000
  240. /* Description TCP_FLAG_MASK
  241. TCP flag mask. Tcp_flag is inserted into the header based
  242. on the mask, if TSO is enabled
  243. */
  244. #define TX_MSDU_START_TCP_FLAG_MASK_OFFSET 0x0000000000000000
  245. #define TX_MSDU_START_TCP_FLAG_MASK_LSB 48
  246. #define TX_MSDU_START_TCP_FLAG_MASK_MSB 56
  247. #define TX_MSDU_START_TCP_FLAG_MASK_MASK 0x01ff000000000000
  248. /* Description MESH_ENABLE
  249. If set to 1:
  250. * For raw WiFi frames, this indicates transmission to a
  251. mesh STA but is ignored by HW
  252. * For native WiFi frames, this is used to indicate to TX
  253. OLE that a 'Mesh Control' field is present between the
  254. header and the LLC
  255. */
  256. #define TX_MSDU_START_MESH_ENABLE_OFFSET 0x0000000000000000
  257. #define TX_MSDU_START_MESH_ENABLE_LSB 57
  258. #define TX_MSDU_START_MESH_ENABLE_MSB 57
  259. #define TX_MSDU_START_MESH_ENABLE_MASK 0x0200000000000000
  260. /* Description RESERVED_1B
  261. FW will set to 0, MAC will ignore. <legal 0>
  262. */
  263. #define TX_MSDU_START_RESERVED_1B_OFFSET 0x0000000000000000
  264. #define TX_MSDU_START_RESERVED_1B_LSB 58
  265. #define TX_MSDU_START_RESERVED_1B_MSB 63
  266. #define TX_MSDU_START_RESERVED_1B_MASK 0xfc00000000000000
  267. /* Description L2_LENGTH
  268. L2 length for the msdu, if TSO is enabled <legal all>
  269. */
  270. #define TX_MSDU_START_L2_LENGTH_OFFSET 0x0000000000000008
  271. #define TX_MSDU_START_L2_LENGTH_LSB 0
  272. #define TX_MSDU_START_L2_LENGTH_MSB 15
  273. #define TX_MSDU_START_L2_LENGTH_MASK 0x000000000000ffff
  274. /* Description IP_LENGTH
  275. IP length for the msdu, if TSO is enabled <legal all>
  276. */
  277. #define TX_MSDU_START_IP_LENGTH_OFFSET 0x0000000000000008
  278. #define TX_MSDU_START_IP_LENGTH_LSB 16
  279. #define TX_MSDU_START_IP_LENGTH_MSB 31
  280. #define TX_MSDU_START_IP_LENGTH_MASK 0x00000000ffff0000
  281. /* Description TCP_SEQ_NUMBER
  282. Tcp_seq_number for the msdu, if TSO is enabled <legal all>
  283. */
  284. #define TX_MSDU_START_TCP_SEQ_NUMBER_OFFSET 0x0000000000000008
  285. #define TX_MSDU_START_TCP_SEQ_NUMBER_LSB 32
  286. #define TX_MSDU_START_TCP_SEQ_NUMBER_MSB 63
  287. #define TX_MSDU_START_TCP_SEQ_NUMBER_MASK 0xffffffff00000000
  288. /* Description IP_IDENTIFICATION
  289. IP_identification for the msdu, if TSO is enabled <legal
  290. all>
  291. */
  292. #define TX_MSDU_START_IP_IDENTIFICATION_OFFSET 0x0000000000000010
  293. #define TX_MSDU_START_IP_IDENTIFICATION_LSB 0
  294. #define TX_MSDU_START_IP_IDENTIFICATION_MSB 15
  295. #define TX_MSDU_START_IP_IDENTIFICATION_MASK 0x000000000000ffff
  296. /* Description CHECKSUM_OFFSET
  297. The calculated checksum from start offset to end offset
  298. will be added to the checksum at the offset given by this
  299. field<legal all>
  300. */
  301. #define TX_MSDU_START_CHECKSUM_OFFSET_OFFSET 0x0000000000000010
  302. #define TX_MSDU_START_CHECKSUM_OFFSET_LSB 16
  303. #define TX_MSDU_START_CHECKSUM_OFFSET_MSB 28
  304. #define TX_MSDU_START_CHECKSUM_OFFSET_MASK 0x000000001fff0000
  305. /* Description PARTIAL_CHECKSUM_EN
  306. Enable Partial Checksum, MAV feature
  307. */
  308. #define TX_MSDU_START_PARTIAL_CHECKSUM_EN_OFFSET 0x0000000000000010
  309. #define TX_MSDU_START_PARTIAL_CHECKSUM_EN_LSB 29
  310. #define TX_MSDU_START_PARTIAL_CHECKSUM_EN_MSB 29
  311. #define TX_MSDU_START_PARTIAL_CHECKSUM_EN_MASK 0x0000000020000000
  312. /* Description RESERVED_4
  313. <legal 0>
  314. */
  315. #define TX_MSDU_START_RESERVED_4_OFFSET 0x0000000000000010
  316. #define TX_MSDU_START_RESERVED_4_LSB 30
  317. #define TX_MSDU_START_RESERVED_4_MSB 31
  318. #define TX_MSDU_START_RESERVED_4_MASK 0x00000000c0000000
  319. /* Description PAYLOAD_START_OFFSET
  320. L4 checksum calculations will start fromt this offset
  321. <legal all>
  322. */
  323. #define TX_MSDU_START_PAYLOAD_START_OFFSET_OFFSET 0x0000000000000010
  324. #define TX_MSDU_START_PAYLOAD_START_OFFSET_LSB 32
  325. #define TX_MSDU_START_PAYLOAD_START_OFFSET_MSB 45
  326. #define TX_MSDU_START_PAYLOAD_START_OFFSET_MASK 0x00003fff00000000
  327. /* Description RESERVED_5A
  328. <legal 0>
  329. */
  330. #define TX_MSDU_START_RESERVED_5A_OFFSET 0x0000000000000010
  331. #define TX_MSDU_START_RESERVED_5A_LSB 46
  332. #define TX_MSDU_START_RESERVED_5A_MSB 47
  333. #define TX_MSDU_START_RESERVED_5A_MASK 0x0000c00000000000
  334. /* Description PAYLOAD_END_OFFSET
  335. L4 checksum calculations will end at this offset.
  336. <legal all>
  337. */
  338. #define TX_MSDU_START_PAYLOAD_END_OFFSET_OFFSET 0x0000000000000010
  339. #define TX_MSDU_START_PAYLOAD_END_OFFSET_LSB 48
  340. #define TX_MSDU_START_PAYLOAD_END_OFFSET_MSB 61
  341. #define TX_MSDU_START_PAYLOAD_END_OFFSET_MASK 0x3fff000000000000
  342. /* Description RESERVED_5B
  343. <legal 0>
  344. */
  345. #define TX_MSDU_START_RESERVED_5B_OFFSET 0x0000000000000010
  346. #define TX_MSDU_START_RESERVED_5B_LSB 62
  347. #define TX_MSDU_START_RESERVED_5B_MSB 63
  348. #define TX_MSDU_START_RESERVED_5B_MASK 0xc000000000000000
  349. /* Description UDP_LENGTH
  350. This field indicates UDP length/UDP lite checksum coverage
  351. field to be used by L4 checksum engine in case TSO is enabled
  352. for UDP/UDP lite respectively
  353. <legal all>
  354. */
  355. #define TX_MSDU_START_UDP_LENGTH_OFFSET 0x0000000000000018
  356. #define TX_MSDU_START_UDP_LENGTH_LSB 0
  357. #define TX_MSDU_START_UDP_LENGTH_MSB 15
  358. #define TX_MSDU_START_UDP_LENGTH_MASK 0x000000000000ffff
  359. /* Description RESERVED_6
  360. <legal 0>
  361. */
  362. #define TX_MSDU_START_RESERVED_6_OFFSET 0x0000000000000018
  363. #define TX_MSDU_START_RESERVED_6_LSB 16
  364. #define TX_MSDU_START_RESERVED_6_MSB 31
  365. #define TX_MSDU_START_RESERVED_6_MASK 0x00000000ffff0000
  366. /* Description TLV64_PADDING
  367. Automatic DWORD padding inserted while converting TLV32
  368. to TLV64 for 64 bit ARCH
  369. <legal 0>
  370. */
  371. #define TX_MSDU_START_TLV64_PADDING_OFFSET 0x0000000000000018
  372. #define TX_MSDU_START_TLV64_PADDING_LSB 32
  373. #define TX_MSDU_START_TLV64_PADDING_MSB 63
  374. #define TX_MSDU_START_TLV64_PADDING_MASK 0xffffffff00000000
  375. #endif // TX_MSDU_START