rx_preamble.h 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /*
  2. * Copyright (c) 2023-2024 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 _RX_PREAMBLE_H_
  17. #define _RX_PREAMBLE_H_
  18. #define NUM_OF_DWORDS_RX_PREAMBLE 1
  19. struct rx_preamble {
  20. #ifndef WIFI_BIT_ORDER_BIG_ENDIAN
  21. uint32_t num_users : 6,
  22. pkt_type : 4,
  23. direction : 1,
  24. reserved_0a : 21;
  25. #else
  26. uint32_t reserved_0a : 21,
  27. direction : 1,
  28. pkt_type : 4,
  29. num_users : 6;
  30. #endif
  31. };
  32. #define RX_PREAMBLE_NUM_USERS_OFFSET 0x00000000
  33. #define RX_PREAMBLE_NUM_USERS_LSB 0
  34. #define RX_PREAMBLE_NUM_USERS_MSB 5
  35. #define RX_PREAMBLE_NUM_USERS_MASK 0x0000003f
  36. #define RX_PREAMBLE_PKT_TYPE_OFFSET 0x00000000
  37. #define RX_PREAMBLE_PKT_TYPE_LSB 6
  38. #define RX_PREAMBLE_PKT_TYPE_MSB 9
  39. #define RX_PREAMBLE_PKT_TYPE_MASK 0x000003c0
  40. #define RX_PREAMBLE_DIRECTION_OFFSET 0x00000000
  41. #define RX_PREAMBLE_DIRECTION_LSB 10
  42. #define RX_PREAMBLE_DIRECTION_MSB 10
  43. #define RX_PREAMBLE_DIRECTION_MASK 0x00000400
  44. #define RX_PREAMBLE_RESERVED_0A_OFFSET 0x00000000
  45. #define RX_PREAMBLE_RESERVED_0A_LSB 11
  46. #define RX_PREAMBLE_RESERVED_0A_MSB 31
  47. #define RX_PREAMBLE_RESERVED_0A_MASK 0xfffff800
  48. #endif