l_sig_a_info.h 5.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /*
  2. * Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for
  5. * any purpose with or without fee is hereby granted, provided that the
  6. * above copyright notice and this permission notice appear in all
  7. * copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  10. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  11. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  12. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  13. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  14. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  15. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  16. * PERFORMANCE OF THIS SOFTWARE.
  17. */
  18. #ifndef _L_SIG_A_INFO_H_
  19. #define _L_SIG_A_INFO_H_
  20. #if !defined(__ASSEMBLER__)
  21. #endif
  22. #define NUM_OF_DWORDS_L_SIG_A_INFO 1
  23. struct l_sig_a_info {
  24. #ifndef WIFI_BIT_ORDER_BIG_ENDIAN
  25. uint32_t rate : 4,
  26. lsig_reserved : 1,
  27. length : 12,
  28. parity : 1,
  29. tail : 6,
  30. pkt_type : 4,
  31. captured_implicit_sounding : 1,
  32. reserved : 2,
  33. rx_integrity_check_passed : 1;
  34. #else
  35. uint32_t rx_integrity_check_passed : 1,
  36. reserved : 2,
  37. captured_implicit_sounding : 1,
  38. pkt_type : 4,
  39. tail : 6,
  40. parity : 1,
  41. length : 12,
  42. lsig_reserved : 1,
  43. rate : 4;
  44. #endif
  45. };
  46. #define L_SIG_A_INFO_RATE_OFFSET 0x00000000
  47. #define L_SIG_A_INFO_RATE_LSB 0
  48. #define L_SIG_A_INFO_RATE_MSB 3
  49. #define L_SIG_A_INFO_RATE_MASK 0x0000000f
  50. #define L_SIG_A_INFO_LSIG_RESERVED_OFFSET 0x00000000
  51. #define L_SIG_A_INFO_LSIG_RESERVED_LSB 4
  52. #define L_SIG_A_INFO_LSIG_RESERVED_MSB 4
  53. #define L_SIG_A_INFO_LSIG_RESERVED_MASK 0x00000010
  54. #define L_SIG_A_INFO_LENGTH_OFFSET 0x00000000
  55. #define L_SIG_A_INFO_LENGTH_LSB 5
  56. #define L_SIG_A_INFO_LENGTH_MSB 16
  57. #define L_SIG_A_INFO_LENGTH_MASK 0x0001ffe0
  58. #define L_SIG_A_INFO_PARITY_OFFSET 0x00000000
  59. #define L_SIG_A_INFO_PARITY_LSB 17
  60. #define L_SIG_A_INFO_PARITY_MSB 17
  61. #define L_SIG_A_INFO_PARITY_MASK 0x00020000
  62. #define L_SIG_A_INFO_TAIL_OFFSET 0x00000000
  63. #define L_SIG_A_INFO_TAIL_LSB 18
  64. #define L_SIG_A_INFO_TAIL_MSB 23
  65. #define L_SIG_A_INFO_TAIL_MASK 0x00fc0000
  66. #define L_SIG_A_INFO_PKT_TYPE_OFFSET 0x00000000
  67. #define L_SIG_A_INFO_PKT_TYPE_LSB 24
  68. #define L_SIG_A_INFO_PKT_TYPE_MSB 27
  69. #define L_SIG_A_INFO_PKT_TYPE_MASK 0x0f000000
  70. #define L_SIG_A_INFO_CAPTURED_IMPLICIT_SOUNDING_OFFSET 0x00000000
  71. #define L_SIG_A_INFO_CAPTURED_IMPLICIT_SOUNDING_LSB 28
  72. #define L_SIG_A_INFO_CAPTURED_IMPLICIT_SOUNDING_MSB 28
  73. #define L_SIG_A_INFO_CAPTURED_IMPLICIT_SOUNDING_MASK 0x10000000
  74. #define L_SIG_A_INFO_RESERVED_OFFSET 0x00000000
  75. #define L_SIG_A_INFO_RESERVED_LSB 29
  76. #define L_SIG_A_INFO_RESERVED_MSB 30
  77. #define L_SIG_A_INFO_RESERVED_MASK 0x60000000
  78. #define L_SIG_A_INFO_RX_INTEGRITY_CHECK_PASSED_OFFSET 0x00000000
  79. #define L_SIG_A_INFO_RX_INTEGRITY_CHECK_PASSED_LSB 31
  80. #define L_SIG_A_INFO_RX_INTEGRITY_CHECK_PASSED_MSB 31
  81. #define L_SIG_A_INFO_RX_INTEGRITY_CHECK_PASSED_MASK 0x80000000
  82. #endif