ht_sig_info.h 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  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 _HT_SIG_INFO_H_
  16. #define _HT_SIG_INFO_H_
  17. #if !defined(__ASSEMBLER__)
  18. #endif
  19. #define NUM_OF_DWORDS_HT_SIG_INFO 2
  20. struct ht_sig_info {
  21. #ifndef WIFI_BIT_ORDER_BIG_ENDIAN
  22. uint32_t mcs : 7,
  23. cbw : 1,
  24. length : 16,
  25. reserved_0 : 8;
  26. uint32_t smoothing : 1,
  27. not_sounding : 1,
  28. ht_reserved : 1,
  29. aggregation : 1,
  30. stbc : 2,
  31. fec_coding : 1,
  32. short_gi : 1,
  33. num_ext_sp_str : 2,
  34. crc : 8,
  35. signal_tail : 6,
  36. reserved_1 : 7,
  37. rx_integrity_check_passed : 1;
  38. #else
  39. uint32_t reserved_0 : 8,
  40. length : 16,
  41. cbw : 1,
  42. mcs : 7;
  43. uint32_t rx_integrity_check_passed : 1,
  44. reserved_1 : 7,
  45. signal_tail : 6,
  46. crc : 8,
  47. num_ext_sp_str : 2,
  48. short_gi : 1,
  49. fec_coding : 1,
  50. stbc : 2,
  51. aggregation : 1,
  52. ht_reserved : 1,
  53. not_sounding : 1,
  54. smoothing : 1;
  55. #endif
  56. };
  57. #define HT_SIG_INFO_MCS_OFFSET 0x00000000
  58. #define HT_SIG_INFO_MCS_LSB 0
  59. #define HT_SIG_INFO_MCS_MSB 6
  60. #define HT_SIG_INFO_MCS_MASK 0x0000007f
  61. #define HT_SIG_INFO_CBW_OFFSET 0x00000000
  62. #define HT_SIG_INFO_CBW_LSB 7
  63. #define HT_SIG_INFO_CBW_MSB 7
  64. #define HT_SIG_INFO_CBW_MASK 0x00000080
  65. #define HT_SIG_INFO_LENGTH_OFFSET 0x00000000
  66. #define HT_SIG_INFO_LENGTH_LSB 8
  67. #define HT_SIG_INFO_LENGTH_MSB 23
  68. #define HT_SIG_INFO_LENGTH_MASK 0x00ffff00
  69. #define HT_SIG_INFO_RESERVED_0_OFFSET 0x00000000
  70. #define HT_SIG_INFO_RESERVED_0_LSB 24
  71. #define HT_SIG_INFO_RESERVED_0_MSB 31
  72. #define HT_SIG_INFO_RESERVED_0_MASK 0xff000000
  73. #define HT_SIG_INFO_SMOOTHING_OFFSET 0x00000004
  74. #define HT_SIG_INFO_SMOOTHING_LSB 0
  75. #define HT_SIG_INFO_SMOOTHING_MSB 0
  76. #define HT_SIG_INFO_SMOOTHING_MASK 0x00000001
  77. #define HT_SIG_INFO_NOT_SOUNDING_OFFSET 0x00000004
  78. #define HT_SIG_INFO_NOT_SOUNDING_LSB 1
  79. #define HT_SIG_INFO_NOT_SOUNDING_MSB 1
  80. #define HT_SIG_INFO_NOT_SOUNDING_MASK 0x00000002
  81. #define HT_SIG_INFO_HT_RESERVED_OFFSET 0x00000004
  82. #define HT_SIG_INFO_HT_RESERVED_LSB 2
  83. #define HT_SIG_INFO_HT_RESERVED_MSB 2
  84. #define HT_SIG_INFO_HT_RESERVED_MASK 0x00000004
  85. #define HT_SIG_INFO_AGGREGATION_OFFSET 0x00000004
  86. #define HT_SIG_INFO_AGGREGATION_LSB 3
  87. #define HT_SIG_INFO_AGGREGATION_MSB 3
  88. #define HT_SIG_INFO_AGGREGATION_MASK 0x00000008
  89. #define HT_SIG_INFO_STBC_OFFSET 0x00000004
  90. #define HT_SIG_INFO_STBC_LSB 4
  91. #define HT_SIG_INFO_STBC_MSB 5
  92. #define HT_SIG_INFO_STBC_MASK 0x00000030
  93. #define HT_SIG_INFO_FEC_CODING_OFFSET 0x00000004
  94. #define HT_SIG_INFO_FEC_CODING_LSB 6
  95. #define HT_SIG_INFO_FEC_CODING_MSB 6
  96. #define HT_SIG_INFO_FEC_CODING_MASK 0x00000040
  97. #define HT_SIG_INFO_SHORT_GI_OFFSET 0x00000004
  98. #define HT_SIG_INFO_SHORT_GI_LSB 7
  99. #define HT_SIG_INFO_SHORT_GI_MSB 7
  100. #define HT_SIG_INFO_SHORT_GI_MASK 0x00000080
  101. #define HT_SIG_INFO_NUM_EXT_SP_STR_OFFSET 0x00000004
  102. #define HT_SIG_INFO_NUM_EXT_SP_STR_LSB 8
  103. #define HT_SIG_INFO_NUM_EXT_SP_STR_MSB 9
  104. #define HT_SIG_INFO_NUM_EXT_SP_STR_MASK 0x00000300
  105. #define HT_SIG_INFO_CRC_OFFSET 0x00000004
  106. #define HT_SIG_INFO_CRC_LSB 10
  107. #define HT_SIG_INFO_CRC_MSB 17
  108. #define HT_SIG_INFO_CRC_MASK 0x0003fc00
  109. #define HT_SIG_INFO_SIGNAL_TAIL_OFFSET 0x00000004
  110. #define HT_SIG_INFO_SIGNAL_TAIL_LSB 18
  111. #define HT_SIG_INFO_SIGNAL_TAIL_MSB 23
  112. #define HT_SIG_INFO_SIGNAL_TAIL_MASK 0x00fc0000
  113. #define HT_SIG_INFO_RESERVED_1_OFFSET 0x00000004
  114. #define HT_SIG_INFO_RESERVED_1_LSB 24
  115. #define HT_SIG_INFO_RESERVED_1_MSB 30
  116. #define HT_SIG_INFO_RESERVED_1_MASK 0x7f000000
  117. #define HT_SIG_INFO_RX_INTEGRITY_CHECK_PASSED_OFFSET 0x00000004
  118. #define HT_SIG_INFO_RX_INTEGRITY_CHECK_PASSED_LSB 31
  119. #define HT_SIG_INFO_RX_INTEGRITY_CHECK_PASSED_MSB 31
  120. #define HT_SIG_INFO_RX_INTEGRITY_CHECK_PASSED_MASK 0x80000000
  121. #endif