phytx_abort_request_info.h 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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 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 _PHYTX_ABORT_REQUEST_INFO_H_
  17. #define _PHYTX_ABORT_REQUEST_INFO_H_
  18. #if !defined(__ASSEMBLER__)
  19. #endif
  20. #define NUM_OF_WORDS_PHYTX_ABORT_REQUEST_INFO 1
  21. struct phytx_abort_request_info {
  22. #ifndef WIFI_BIT_ORDER_BIG_ENDIAN
  23. uint16_t phytx_abort_reason : 8, // [7:0]
  24. user_number : 6, // [13:8]
  25. reserved : 2; // [15:14]
  26. #else
  27. uint16_t reserved : 2, // [15:14]
  28. user_number : 6, // [13:8]
  29. phytx_abort_reason : 8; // [7:0]
  30. #endif
  31. };
  32. #define PHYTX_ABORT_REQUEST_INFO_PHYTX_ABORT_REASON_OFFSET 0x00000000
  33. #define PHYTX_ABORT_REQUEST_INFO_PHYTX_ABORT_REASON_LSB 0
  34. #define PHYTX_ABORT_REQUEST_INFO_PHYTX_ABORT_REASON_MSB 7
  35. #define PHYTX_ABORT_REQUEST_INFO_PHYTX_ABORT_REASON_MASK 0x000000ff
  36. #define PHYTX_ABORT_REQUEST_INFO_USER_NUMBER_OFFSET 0x00000000
  37. #define PHYTX_ABORT_REQUEST_INFO_USER_NUMBER_LSB 8
  38. #define PHYTX_ABORT_REQUEST_INFO_USER_NUMBER_MSB 13
  39. #define PHYTX_ABORT_REQUEST_INFO_USER_NUMBER_MASK 0x00003f00
  40. #define PHYTX_ABORT_REQUEST_INFO_RESERVED_OFFSET 0x00000000
  41. #define PHYTX_ABORT_REQUEST_INFO_RESERVED_LSB 14
  42. #define PHYTX_ABORT_REQUEST_INFO_RESERVED_MSB 15
  43. #define PHYTX_ABORT_REQUEST_INFO_RESERVED_MASK 0x0000c000
  44. #endif