l_sig_b_info.h 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /*
  2. * Copyright (c) 2021 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. uint32_t rate : 4,
  25. length : 12,
  26. reserved : 15,
  27. rx_integrity_check_passed : 1;
  28. };
  29. #define L_SIG_B_INFO_RATE_OFFSET 0x00000000
  30. #define L_SIG_B_INFO_RATE_LSB 0
  31. #define L_SIG_B_INFO_RATE_MSB 3
  32. #define L_SIG_B_INFO_RATE_MASK 0x0000000f
  33. #define L_SIG_B_INFO_LENGTH_OFFSET 0x00000000
  34. #define L_SIG_B_INFO_LENGTH_LSB 4
  35. #define L_SIG_B_INFO_LENGTH_MSB 15
  36. #define L_SIG_B_INFO_LENGTH_MASK 0x0000fff0
  37. #define L_SIG_B_INFO_RESERVED_OFFSET 0x00000000
  38. #define L_SIG_B_INFO_RESERVED_LSB 16
  39. #define L_SIG_B_INFO_RESERVED_MSB 30
  40. #define L_SIG_B_INFO_RESERVED_MASK 0x7fff0000
  41. #define L_SIG_B_INFO_RX_INTEGRITY_CHECK_PASSED_OFFSET 0x00000000
  42. #define L_SIG_B_INFO_RX_INTEGRITY_CHECK_PASSED_LSB 31
  43. #define L_SIG_B_INFO_RX_INTEGRITY_CHECK_PASSED_MSB 31
  44. #define L_SIG_B_INFO_RX_INTEGRITY_CHECK_PASSED_MASK 0x80000000
  45. #endif