service_info.h 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /*
  2. * Copyright (c) 2023 Qualcomm Innovation Center, Inc. All rights reserved.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for any
  5. * purpose with or without fee is hereby granted, provided that the above
  6. * copyright notice and this permission notice appear in all copies.
  7. *
  8. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  9. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  10. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  11. * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  12. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  13. * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  14. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  15. */
  16. #ifndef _SERVICE_INFO_H_
  17. #define _SERVICE_INFO_H_
  18. #if !defined(__ASSEMBLER__)
  19. #endif
  20. #define NUM_OF_DWORDS_SERVICE_INFO 1
  21. struct service_info {
  22. #ifndef WIFI_BIT_ORDER_BIG_ENDIAN
  23. uint32_t scrambler_seed : 7, // [6:0]
  24. reserved : 1, // [7:7]
  25. sig_b_crc_user : 8, // [15:8]
  26. reserved_1 : 16; // [31:16]
  27. #else
  28. uint32_t reserved_1 : 16, // [31:16]
  29. sig_b_crc_user : 8, // [15:8]
  30. reserved : 1, // [7:7]
  31. scrambler_seed : 7; // [6:0]
  32. #endif
  33. };
  34. /* Description SCRAMBLER_SEED
  35. This field provides the 7-bit seed for the data scrambler.
  36. <legal all>
  37. */
  38. #define SERVICE_INFO_SCRAMBLER_SEED_OFFSET 0x00000000
  39. #define SERVICE_INFO_SCRAMBLER_SEED_LSB 0
  40. #define SERVICE_INFO_SCRAMBLER_SEED_MSB 6
  41. #define SERVICE_INFO_SCRAMBLER_SEED_MASK 0x0000007f
  42. /* Description RESERVED
  43. Reserved. Set to 0 by sender and ignored by receiver. <legal
  44. 0>
  45. */
  46. #define SERVICE_INFO_RESERVED_OFFSET 0x00000000
  47. #define SERVICE_INFO_RESERVED_LSB 7
  48. #define SERVICE_INFO_RESERVED_MSB 7
  49. #define SERVICE_INFO_RESERVED_MASK 0x00000080
  50. /* Description SIG_B_CRC_USER
  51. In case of vht transmission: vht_sig_b_crc_user
  52. <legal all>
  53. */
  54. #define SERVICE_INFO_SIG_B_CRC_USER_OFFSET 0x00000000
  55. #define SERVICE_INFO_SIG_B_CRC_USER_LSB 8
  56. #define SERVICE_INFO_SIG_B_CRC_USER_MSB 15
  57. #define SERVICE_INFO_SIG_B_CRC_USER_MASK 0x0000ff00
  58. /* Description RESERVED_1
  59. <legal 0>
  60. */
  61. #define SERVICE_INFO_RESERVED_1_OFFSET 0x00000000
  62. #define SERVICE_INFO_RESERVED_1_LSB 16
  63. #define SERVICE_INFO_RESERVED_1_MSB 31
  64. #define SERVICE_INFO_RESERVED_1_MASK 0xffff0000
  65. #endif // SERVICE_INFO