vht_sig_b_su160_info.h 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584
  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 _VHT_SIG_B_SU160_INFO_H_
  16. #define _VHT_SIG_B_SU160_INFO_H_
  17. #if !defined(__ASSEMBLER__)
  18. #endif
  19. #define NUM_OF_DWORDS_VHT_SIG_B_SU160_INFO 8
  20. struct vht_sig_b_su160_info {
  21. #ifndef WIFI_BIT_ORDER_BIG_ENDIAN
  22. uint32_t length : 21, // [20:0]
  23. vhtb_reserved : 2, // [22:21]
  24. tail : 6, // [28:23]
  25. reserved_0 : 2, // [30:29]
  26. rx_ndp : 1; // [31:31]
  27. uint32_t length_copy_a : 21, // [20:0]
  28. vhtb_reserved_copy_a : 2, // [22:21]
  29. tail_copy_a : 6, // [28:23]
  30. reserved_1 : 2, // [30:29]
  31. rx_ndp_copy_a : 1; // [31:31]
  32. uint32_t length_copy_b : 21, // [20:0]
  33. vhtb_reserved_copy_b : 2, // [22:21]
  34. tail_copy_b : 6, // [28:23]
  35. reserved_2 : 2, // [30:29]
  36. rx_ndp_copy_b : 1; // [31:31]
  37. uint32_t length_copy_c : 21, // [20:0]
  38. vhtb_reserved_copy_c : 2, // [22:21]
  39. tail_copy_c : 6, // [28:23]
  40. reserved_3 : 2, // [30:29]
  41. rx_ndp_copy_c : 1; // [31:31]
  42. uint32_t length_copy_d : 21, // [20:0]
  43. vhtb_reserved_copy_d : 2, // [22:21]
  44. tail_copy_d : 6, // [28:23]
  45. reserved_4 : 2, // [30:29]
  46. rx_ndp_copy_d : 1; // [31:31]
  47. uint32_t length_copy_e : 21, // [20:0]
  48. vhtb_reserved_copy_e : 2, // [22:21]
  49. tail_copy_e : 6, // [28:23]
  50. reserved_5 : 2, // [30:29]
  51. rx_ndp_copy_e : 1; // [31:31]
  52. uint32_t length_copy_f : 21, // [20:0]
  53. vhtb_reserved_copy_f : 2, // [22:21]
  54. tail_copy_f : 6, // [28:23]
  55. reserved_6 : 2, // [30:29]
  56. rx_ndp_copy_f : 1; // [31:31]
  57. uint32_t length_copy_g : 21, // [20:0]
  58. vhtb_reserved_copy_g : 2, // [22:21]
  59. tail_copy_g : 6, // [28:23]
  60. reserved_7 : 2, // [30:29]
  61. rx_ndp_copy_g : 1; // [31:31]
  62. #else
  63. uint32_t rx_ndp : 1, // [31:31]
  64. reserved_0 : 2, // [30:29]
  65. tail : 6, // [28:23]
  66. vhtb_reserved : 2, // [22:21]
  67. length : 21; // [20:0]
  68. uint32_t rx_ndp_copy_a : 1, // [31:31]
  69. reserved_1 : 2, // [30:29]
  70. tail_copy_a : 6, // [28:23]
  71. vhtb_reserved_copy_a : 2, // [22:21]
  72. length_copy_a : 21; // [20:0]
  73. uint32_t rx_ndp_copy_b : 1, // [31:31]
  74. reserved_2 : 2, // [30:29]
  75. tail_copy_b : 6, // [28:23]
  76. vhtb_reserved_copy_b : 2, // [22:21]
  77. length_copy_b : 21; // [20:0]
  78. uint32_t rx_ndp_copy_c : 1, // [31:31]
  79. reserved_3 : 2, // [30:29]
  80. tail_copy_c : 6, // [28:23]
  81. vhtb_reserved_copy_c : 2, // [22:21]
  82. length_copy_c : 21; // [20:0]
  83. uint32_t rx_ndp_copy_d : 1, // [31:31]
  84. reserved_4 : 2, // [30:29]
  85. tail_copy_d : 6, // [28:23]
  86. vhtb_reserved_copy_d : 2, // [22:21]
  87. length_copy_d : 21; // [20:0]
  88. uint32_t rx_ndp_copy_e : 1, // [31:31]
  89. reserved_5 : 2, // [30:29]
  90. tail_copy_e : 6, // [28:23]
  91. vhtb_reserved_copy_e : 2, // [22:21]
  92. length_copy_e : 21; // [20:0]
  93. uint32_t rx_ndp_copy_f : 1, // [31:31]
  94. reserved_6 : 2, // [30:29]
  95. tail_copy_f : 6, // [28:23]
  96. vhtb_reserved_copy_f : 2, // [22:21]
  97. length_copy_f : 21; // [20:0]
  98. uint32_t rx_ndp_copy_g : 1, // [31:31]
  99. reserved_7 : 2, // [30:29]
  100. tail_copy_g : 6, // [28:23]
  101. vhtb_reserved_copy_g : 2, // [22:21]
  102. length_copy_g : 21; // [20:0]
  103. #endif
  104. };
  105. /* Description LENGTH
  106. VHT-SIG-B Length (in units of 4 octets) = ceiling (LENGTH/4)
  107. <legal all>
  108. */
  109. #define VHT_SIG_B_SU160_INFO_LENGTH_OFFSET 0x00000000
  110. #define VHT_SIG_B_SU160_INFO_LENGTH_LSB 0
  111. #define VHT_SIG_B_SU160_INFO_LENGTH_MSB 20
  112. #define VHT_SIG_B_SU160_INFO_LENGTH_MASK 0x001fffff
  113. /* Description VHTB_RESERVED
  114. Reserved: Set to all ones for non-NDP frames and ignored
  115. on receive <legal 1,3>
  116. */
  117. #define VHT_SIG_B_SU160_INFO_VHTB_RESERVED_OFFSET 0x00000000
  118. #define VHT_SIG_B_SU160_INFO_VHTB_RESERVED_LSB 21
  119. #define VHT_SIG_B_SU160_INFO_VHTB_RESERVED_MSB 22
  120. #define VHT_SIG_B_SU160_INFO_VHTB_RESERVED_MASK 0x00600000
  121. /* Description TAIL
  122. Used to terminate the trellis of the convolutional decoder.
  123. Set to 0. <legal 0>
  124. */
  125. #define VHT_SIG_B_SU160_INFO_TAIL_OFFSET 0x00000000
  126. #define VHT_SIG_B_SU160_INFO_TAIL_LSB 23
  127. #define VHT_SIG_B_SU160_INFO_TAIL_MSB 28
  128. #define VHT_SIG_B_SU160_INFO_TAIL_MASK 0x1f800000
  129. /* Description RESERVED_0
  130. Not part of VHT-SIG-B.
  131. Reserved: Set to 0 and ignored on receive <legal 0>
  132. */
  133. #define VHT_SIG_B_SU160_INFO_RESERVED_0_OFFSET 0x00000000
  134. #define VHT_SIG_B_SU160_INFO_RESERVED_0_LSB 29
  135. #define VHT_SIG_B_SU160_INFO_RESERVED_0_MSB 30
  136. #define VHT_SIG_B_SU160_INFO_RESERVED_0_MASK 0x60000000
  137. /* Description RX_NDP
  138. Not part of VHT-SIG-B.
  139. Used to identify received NDP frame
  140. <legal 0,1>
  141. */
  142. #define VHT_SIG_B_SU160_INFO_RX_NDP_OFFSET 0x00000000
  143. #define VHT_SIG_B_SU160_INFO_RX_NDP_LSB 31
  144. #define VHT_SIG_B_SU160_INFO_RX_NDP_MSB 31
  145. #define VHT_SIG_B_SU160_INFO_RX_NDP_MASK 0x80000000
  146. /* Description LENGTH_COPY_A
  147. Same as "length" <legal all>
  148. */
  149. #define VHT_SIG_B_SU160_INFO_LENGTH_COPY_A_OFFSET 0x00000004
  150. #define VHT_SIG_B_SU160_INFO_LENGTH_COPY_A_LSB 0
  151. #define VHT_SIG_B_SU160_INFO_LENGTH_COPY_A_MSB 20
  152. #define VHT_SIG_B_SU160_INFO_LENGTH_COPY_A_MASK 0x001fffff
  153. /* Description VHTB_RESERVED_COPY_A
  154. Same as "vhtb_reserved" <legal 1,3>
  155. */
  156. #define VHT_SIG_B_SU160_INFO_VHTB_RESERVED_COPY_A_OFFSET 0x00000004
  157. #define VHT_SIG_B_SU160_INFO_VHTB_RESERVED_COPY_A_LSB 21
  158. #define VHT_SIG_B_SU160_INFO_VHTB_RESERVED_COPY_A_MSB 22
  159. #define VHT_SIG_B_SU160_INFO_VHTB_RESERVED_COPY_A_MASK 0x00600000
  160. /* Description TAIL_COPY_A
  161. Same as "tail" <legal 0>
  162. */
  163. #define VHT_SIG_B_SU160_INFO_TAIL_COPY_A_OFFSET 0x00000004
  164. #define VHT_SIG_B_SU160_INFO_TAIL_COPY_A_LSB 23
  165. #define VHT_SIG_B_SU160_INFO_TAIL_COPY_A_MSB 28
  166. #define VHT_SIG_B_SU160_INFO_TAIL_COPY_A_MASK 0x1f800000
  167. /* Description RESERVED_1
  168. Reserved: Set to 0 and ignored on receive <legal 0>
  169. */
  170. #define VHT_SIG_B_SU160_INFO_RESERVED_1_OFFSET 0x00000004
  171. #define VHT_SIG_B_SU160_INFO_RESERVED_1_LSB 29
  172. #define VHT_SIG_B_SU160_INFO_RESERVED_1_MSB 30
  173. #define VHT_SIG_B_SU160_INFO_RESERVED_1_MASK 0x60000000
  174. /* Description RX_NDP_COPY_A
  175. Not part of VHT-SIG-B.
  176. Used to identify received NDP frame
  177. <legal 0,1>
  178. */
  179. #define VHT_SIG_B_SU160_INFO_RX_NDP_COPY_A_OFFSET 0x00000004
  180. #define VHT_SIG_B_SU160_INFO_RX_NDP_COPY_A_LSB 31
  181. #define VHT_SIG_B_SU160_INFO_RX_NDP_COPY_A_MSB 31
  182. #define VHT_SIG_B_SU160_INFO_RX_NDP_COPY_A_MASK 0x80000000
  183. /* Description LENGTH_COPY_B
  184. Same as "length" <legal all>
  185. */
  186. #define VHT_SIG_B_SU160_INFO_LENGTH_COPY_B_OFFSET 0x00000008
  187. #define VHT_SIG_B_SU160_INFO_LENGTH_COPY_B_LSB 0
  188. #define VHT_SIG_B_SU160_INFO_LENGTH_COPY_B_MSB 20
  189. #define VHT_SIG_B_SU160_INFO_LENGTH_COPY_B_MASK 0x001fffff
  190. /* Description VHTB_RESERVED_COPY_B
  191. Same as "vhtb_reserved" <legal 1,3>
  192. */
  193. #define VHT_SIG_B_SU160_INFO_VHTB_RESERVED_COPY_B_OFFSET 0x00000008
  194. #define VHT_SIG_B_SU160_INFO_VHTB_RESERVED_COPY_B_LSB 21
  195. #define VHT_SIG_B_SU160_INFO_VHTB_RESERVED_COPY_B_MSB 22
  196. #define VHT_SIG_B_SU160_INFO_VHTB_RESERVED_COPY_B_MASK 0x00600000
  197. /* Description TAIL_COPY_B
  198. Same as "tail" <legal 0>
  199. */
  200. #define VHT_SIG_B_SU160_INFO_TAIL_COPY_B_OFFSET 0x00000008
  201. #define VHT_SIG_B_SU160_INFO_TAIL_COPY_B_LSB 23
  202. #define VHT_SIG_B_SU160_INFO_TAIL_COPY_B_MSB 28
  203. #define VHT_SIG_B_SU160_INFO_TAIL_COPY_B_MASK 0x1f800000
  204. /* Description RESERVED_2
  205. Reserved: Set to 0 and ignored on receive <legal 0>
  206. */
  207. #define VHT_SIG_B_SU160_INFO_RESERVED_2_OFFSET 0x00000008
  208. #define VHT_SIG_B_SU160_INFO_RESERVED_2_LSB 29
  209. #define VHT_SIG_B_SU160_INFO_RESERVED_2_MSB 30
  210. #define VHT_SIG_B_SU160_INFO_RESERVED_2_MASK 0x60000000
  211. /* Description RX_NDP_COPY_B
  212. Not part of VHT-SIG-B.
  213. Used to identify received NDP frame
  214. <legal 0,1>
  215. */
  216. #define VHT_SIG_B_SU160_INFO_RX_NDP_COPY_B_OFFSET 0x00000008
  217. #define VHT_SIG_B_SU160_INFO_RX_NDP_COPY_B_LSB 31
  218. #define VHT_SIG_B_SU160_INFO_RX_NDP_COPY_B_MSB 31
  219. #define VHT_SIG_B_SU160_INFO_RX_NDP_COPY_B_MASK 0x80000000
  220. /* Description LENGTH_COPY_C
  221. Same as "length" <legal all>
  222. */
  223. #define VHT_SIG_B_SU160_INFO_LENGTH_COPY_C_OFFSET 0x0000000c
  224. #define VHT_SIG_B_SU160_INFO_LENGTH_COPY_C_LSB 0
  225. #define VHT_SIG_B_SU160_INFO_LENGTH_COPY_C_MSB 20
  226. #define VHT_SIG_B_SU160_INFO_LENGTH_COPY_C_MASK 0x001fffff
  227. /* Description VHTB_RESERVED_COPY_C
  228. Same as "vhtb_reserved" <legal 1,3>
  229. */
  230. #define VHT_SIG_B_SU160_INFO_VHTB_RESERVED_COPY_C_OFFSET 0x0000000c
  231. #define VHT_SIG_B_SU160_INFO_VHTB_RESERVED_COPY_C_LSB 21
  232. #define VHT_SIG_B_SU160_INFO_VHTB_RESERVED_COPY_C_MSB 22
  233. #define VHT_SIG_B_SU160_INFO_VHTB_RESERVED_COPY_C_MASK 0x00600000
  234. /* Description TAIL_COPY_C
  235. Same as "tail" <legal 0>
  236. */
  237. #define VHT_SIG_B_SU160_INFO_TAIL_COPY_C_OFFSET 0x0000000c
  238. #define VHT_SIG_B_SU160_INFO_TAIL_COPY_C_LSB 23
  239. #define VHT_SIG_B_SU160_INFO_TAIL_COPY_C_MSB 28
  240. #define VHT_SIG_B_SU160_INFO_TAIL_COPY_C_MASK 0x1f800000
  241. /* Description RESERVED_3
  242. Reserved: Set to 0 and ignored on receive <legal 0>
  243. */
  244. #define VHT_SIG_B_SU160_INFO_RESERVED_3_OFFSET 0x0000000c
  245. #define VHT_SIG_B_SU160_INFO_RESERVED_3_LSB 29
  246. #define VHT_SIG_B_SU160_INFO_RESERVED_3_MSB 30
  247. #define VHT_SIG_B_SU160_INFO_RESERVED_3_MASK 0x60000000
  248. /* Description RX_NDP_COPY_C
  249. Not part of VHT-SIG-B.
  250. Used to identify received NDP frame
  251. <legal 0,1>
  252. */
  253. #define VHT_SIG_B_SU160_INFO_RX_NDP_COPY_C_OFFSET 0x0000000c
  254. #define VHT_SIG_B_SU160_INFO_RX_NDP_COPY_C_LSB 31
  255. #define VHT_SIG_B_SU160_INFO_RX_NDP_COPY_C_MSB 31
  256. #define VHT_SIG_B_SU160_INFO_RX_NDP_COPY_C_MASK 0x80000000
  257. /* Description LENGTH_COPY_D
  258. Same as "length" <legal all>
  259. */
  260. #define VHT_SIG_B_SU160_INFO_LENGTH_COPY_D_OFFSET 0x00000010
  261. #define VHT_SIG_B_SU160_INFO_LENGTH_COPY_D_LSB 0
  262. #define VHT_SIG_B_SU160_INFO_LENGTH_COPY_D_MSB 20
  263. #define VHT_SIG_B_SU160_INFO_LENGTH_COPY_D_MASK 0x001fffff
  264. /* Description VHTB_RESERVED_COPY_D
  265. Same as "vhtb_reserved" <legal 1,3>
  266. */
  267. #define VHT_SIG_B_SU160_INFO_VHTB_RESERVED_COPY_D_OFFSET 0x00000010
  268. #define VHT_SIG_B_SU160_INFO_VHTB_RESERVED_COPY_D_LSB 21
  269. #define VHT_SIG_B_SU160_INFO_VHTB_RESERVED_COPY_D_MSB 22
  270. #define VHT_SIG_B_SU160_INFO_VHTB_RESERVED_COPY_D_MASK 0x00600000
  271. /* Description TAIL_COPY_D
  272. Same as "tail" <legal 0>
  273. */
  274. #define VHT_SIG_B_SU160_INFO_TAIL_COPY_D_OFFSET 0x00000010
  275. #define VHT_SIG_B_SU160_INFO_TAIL_COPY_D_LSB 23
  276. #define VHT_SIG_B_SU160_INFO_TAIL_COPY_D_MSB 28
  277. #define VHT_SIG_B_SU160_INFO_TAIL_COPY_D_MASK 0x1f800000
  278. /* Description RESERVED_4
  279. Reserved: Set to 0 and ignored on receive <legal 0>
  280. */
  281. #define VHT_SIG_B_SU160_INFO_RESERVED_4_OFFSET 0x00000010
  282. #define VHT_SIG_B_SU160_INFO_RESERVED_4_LSB 29
  283. #define VHT_SIG_B_SU160_INFO_RESERVED_4_MSB 30
  284. #define VHT_SIG_B_SU160_INFO_RESERVED_4_MASK 0x60000000
  285. /* Description RX_NDP_COPY_D
  286. Not part of VHT-SIG-B.
  287. Used to identify received NDP frame
  288. <legal 0,1>
  289. */
  290. #define VHT_SIG_B_SU160_INFO_RX_NDP_COPY_D_OFFSET 0x00000010
  291. #define VHT_SIG_B_SU160_INFO_RX_NDP_COPY_D_LSB 31
  292. #define VHT_SIG_B_SU160_INFO_RX_NDP_COPY_D_MSB 31
  293. #define VHT_SIG_B_SU160_INFO_RX_NDP_COPY_D_MASK 0x80000000
  294. /* Description LENGTH_COPY_E
  295. Same as "length" <legal all>
  296. */
  297. #define VHT_SIG_B_SU160_INFO_LENGTH_COPY_E_OFFSET 0x00000014
  298. #define VHT_SIG_B_SU160_INFO_LENGTH_COPY_E_LSB 0
  299. #define VHT_SIG_B_SU160_INFO_LENGTH_COPY_E_MSB 20
  300. #define VHT_SIG_B_SU160_INFO_LENGTH_COPY_E_MASK 0x001fffff
  301. /* Description VHTB_RESERVED_COPY_E
  302. Same as "vhtb_reserved" <legal 1,3>
  303. */
  304. #define VHT_SIG_B_SU160_INFO_VHTB_RESERVED_COPY_E_OFFSET 0x00000014
  305. #define VHT_SIG_B_SU160_INFO_VHTB_RESERVED_COPY_E_LSB 21
  306. #define VHT_SIG_B_SU160_INFO_VHTB_RESERVED_COPY_E_MSB 22
  307. #define VHT_SIG_B_SU160_INFO_VHTB_RESERVED_COPY_E_MASK 0x00600000
  308. /* Description TAIL_COPY_E
  309. Same as "tail" <legal 0>
  310. */
  311. #define VHT_SIG_B_SU160_INFO_TAIL_COPY_E_OFFSET 0x00000014
  312. #define VHT_SIG_B_SU160_INFO_TAIL_COPY_E_LSB 23
  313. #define VHT_SIG_B_SU160_INFO_TAIL_COPY_E_MSB 28
  314. #define VHT_SIG_B_SU160_INFO_TAIL_COPY_E_MASK 0x1f800000
  315. /* Description RESERVED_5
  316. Reserved: Set to 0 and ignored on receive <legal 0>
  317. */
  318. #define VHT_SIG_B_SU160_INFO_RESERVED_5_OFFSET 0x00000014
  319. #define VHT_SIG_B_SU160_INFO_RESERVED_5_LSB 29
  320. #define VHT_SIG_B_SU160_INFO_RESERVED_5_MSB 30
  321. #define VHT_SIG_B_SU160_INFO_RESERVED_5_MASK 0x60000000
  322. /* Description RX_NDP_COPY_E
  323. Not part of VHT-SIG-B.
  324. Used to identify received NDP frame
  325. <legal 0,1>
  326. */
  327. #define VHT_SIG_B_SU160_INFO_RX_NDP_COPY_E_OFFSET 0x00000014
  328. #define VHT_SIG_B_SU160_INFO_RX_NDP_COPY_E_LSB 31
  329. #define VHT_SIG_B_SU160_INFO_RX_NDP_COPY_E_MSB 31
  330. #define VHT_SIG_B_SU160_INFO_RX_NDP_COPY_E_MASK 0x80000000
  331. /* Description LENGTH_COPY_F
  332. Same as "length" <legal all>
  333. */
  334. #define VHT_SIG_B_SU160_INFO_LENGTH_COPY_F_OFFSET 0x00000018
  335. #define VHT_SIG_B_SU160_INFO_LENGTH_COPY_F_LSB 0
  336. #define VHT_SIG_B_SU160_INFO_LENGTH_COPY_F_MSB 20
  337. #define VHT_SIG_B_SU160_INFO_LENGTH_COPY_F_MASK 0x001fffff
  338. /* Description VHTB_RESERVED_COPY_F
  339. Same as "vhtb_reserved" <legal 1,3>
  340. */
  341. #define VHT_SIG_B_SU160_INFO_VHTB_RESERVED_COPY_F_OFFSET 0x00000018
  342. #define VHT_SIG_B_SU160_INFO_VHTB_RESERVED_COPY_F_LSB 21
  343. #define VHT_SIG_B_SU160_INFO_VHTB_RESERVED_COPY_F_MSB 22
  344. #define VHT_SIG_B_SU160_INFO_VHTB_RESERVED_COPY_F_MASK 0x00600000
  345. /* Description TAIL_COPY_F
  346. Same as "tail" <legal 0>
  347. */
  348. #define VHT_SIG_B_SU160_INFO_TAIL_COPY_F_OFFSET 0x00000018
  349. #define VHT_SIG_B_SU160_INFO_TAIL_COPY_F_LSB 23
  350. #define VHT_SIG_B_SU160_INFO_TAIL_COPY_F_MSB 28
  351. #define VHT_SIG_B_SU160_INFO_TAIL_COPY_F_MASK 0x1f800000
  352. /* Description RESERVED_6
  353. Reserved: Set to 0 and ignored on receive <legal 0>
  354. */
  355. #define VHT_SIG_B_SU160_INFO_RESERVED_6_OFFSET 0x00000018
  356. #define VHT_SIG_B_SU160_INFO_RESERVED_6_LSB 29
  357. #define VHT_SIG_B_SU160_INFO_RESERVED_6_MSB 30
  358. #define VHT_SIG_B_SU160_INFO_RESERVED_6_MASK 0x60000000
  359. /* Description RX_NDP_COPY_F
  360. Not part of VHT-SIG-B.
  361. Used to identify received NDP frame
  362. <legal 0,1>
  363. */
  364. #define VHT_SIG_B_SU160_INFO_RX_NDP_COPY_F_OFFSET 0x00000018
  365. #define VHT_SIG_B_SU160_INFO_RX_NDP_COPY_F_LSB 31
  366. #define VHT_SIG_B_SU160_INFO_RX_NDP_COPY_F_MSB 31
  367. #define VHT_SIG_B_SU160_INFO_RX_NDP_COPY_F_MASK 0x80000000
  368. /* Description LENGTH_COPY_G
  369. Same as "length" <legal all>
  370. */
  371. #define VHT_SIG_B_SU160_INFO_LENGTH_COPY_G_OFFSET 0x0000001c
  372. #define VHT_SIG_B_SU160_INFO_LENGTH_COPY_G_LSB 0
  373. #define VHT_SIG_B_SU160_INFO_LENGTH_COPY_G_MSB 20
  374. #define VHT_SIG_B_SU160_INFO_LENGTH_COPY_G_MASK 0x001fffff
  375. /* Description VHTB_RESERVED_COPY_G
  376. Same as "vhtb_reserved" <legal 1,3>
  377. */
  378. #define VHT_SIG_B_SU160_INFO_VHTB_RESERVED_COPY_G_OFFSET 0x0000001c
  379. #define VHT_SIG_B_SU160_INFO_VHTB_RESERVED_COPY_G_LSB 21
  380. #define VHT_SIG_B_SU160_INFO_VHTB_RESERVED_COPY_G_MSB 22
  381. #define VHT_SIG_B_SU160_INFO_VHTB_RESERVED_COPY_G_MASK 0x00600000
  382. /* Description TAIL_COPY_G
  383. Same as "tail" <legal 0>
  384. */
  385. #define VHT_SIG_B_SU160_INFO_TAIL_COPY_G_OFFSET 0x0000001c
  386. #define VHT_SIG_B_SU160_INFO_TAIL_COPY_G_LSB 23
  387. #define VHT_SIG_B_SU160_INFO_TAIL_COPY_G_MSB 28
  388. #define VHT_SIG_B_SU160_INFO_TAIL_COPY_G_MASK 0x1f800000
  389. /* Description RESERVED_7
  390. Reserved: Set to 0 and ignored on receive <legal 0>
  391. */
  392. #define VHT_SIG_B_SU160_INFO_RESERVED_7_OFFSET 0x0000001c
  393. #define VHT_SIG_B_SU160_INFO_RESERVED_7_LSB 29
  394. #define VHT_SIG_B_SU160_INFO_RESERVED_7_MSB 30
  395. #define VHT_SIG_B_SU160_INFO_RESERVED_7_MASK 0x60000000
  396. /* Description RX_NDP_COPY_G
  397. Not part of VHT-SIG-B.
  398. Used to identify received NDP frame
  399. <legal 0,1>
  400. */
  401. #define VHT_SIG_B_SU160_INFO_RX_NDP_COPY_G_OFFSET 0x0000001c
  402. #define VHT_SIG_B_SU160_INFO_RX_NDP_COPY_G_LSB 31
  403. #define VHT_SIG_B_SU160_INFO_RX_NDP_COPY_G_MSB 31
  404. #define VHT_SIG_B_SU160_INFO_RX_NDP_COPY_G_MASK 0x80000000
  405. #endif // VHT_SIG_B_SU160_INFO