l_sig_b_info.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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_B_INFO_H_
  19. #define _L_SIG_B_INFO_H_
  20. #if !defined(__ASSEMBLER__)
  21. #endif
  22. #define NUM_OF_DWORDS_L_SIG_B_INFO 1
  23. struct l_sig_b_info {
  24. #ifndef WIFI_BIT_ORDER_BIG_ENDIAN
  25. uint32_t rate : 4,
  26. length : 12,
  27. reserved : 15,
  28. rx_integrity_check_passed : 1;
  29. #else
  30. uint32_t rx_integrity_check_passed : 1,
  31. reserved : 15,
  32. length : 12,
  33. rate : 4;
  34. #endif
  35. };
  36. #define L_SIG_B_INFO_RATE_OFFSET 0x00000000
  37. #define L_SIG_B_INFO_RATE_LSB 0
  38. #define L_SIG_B_INFO_RATE_MSB 3
  39. #define L_SIG_B_INFO_RATE_MASK 0x0000000f
  40. #define L_SIG_B_INFO_LENGTH_OFFSET 0x00000000
  41. #define L_SIG_B_INFO_LENGTH_LSB 4
  42. #define L_SIG_B_INFO_LENGTH_MSB 15
  43. #define L_SIG_B_INFO_LENGTH_MASK 0x0000fff0
  44. #define L_SIG_B_INFO_RESERVED_OFFSET 0x00000000
  45. #define L_SIG_B_INFO_RESERVED_LSB 16
  46. #define L_SIG_B_INFO_RESERVED_MSB 30
  47. #define L_SIG_B_INFO_RESERVED_MASK 0x7fff0000
  48. #define L_SIG_B_INFO_RX_INTEGRITY_CHECK_PASSED_OFFSET 0x00000000
  49. #define L_SIG_B_INFO_RX_INTEGRITY_CHECK_PASSED_LSB 31
  50. #define L_SIG_B_INFO_RX_INTEGRITY_CHECK_PASSED_MSB 31
  51. #define L_SIG_B_INFO_RX_INTEGRITY_CHECK_PASSED_MASK 0x80000000
  52. #endif