tx_msdu_start.h 24 KB

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