phyrx_abort_request_info.h 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /* Copyright (c) 2021, Qualcomm Innovation Center, Inc. All rights reserved.
  2. *
  3. * Permission to use, copy, modify, and/or distribute this software for any
  4. * purpose with or without fee is hereby granted, provided that the above
  5. * copyright notice and this permission notice appear in all copies.
  6. *
  7. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  8. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  9. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  10. * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  11. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  12. * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  13. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  14. */
  15. #ifndef _PHYRX_ABORT_REQUEST_INFO_H_
  16. #define _PHYRX_ABORT_REQUEST_INFO_H_
  17. #if !defined(__ASSEMBLER__)
  18. #endif
  19. #define NUM_OF_DWORDS_PHYRX_ABORT_REQUEST_INFO 1
  20. struct phyrx_abort_request_info {
  21. #ifndef WIFI_BIT_ORDER_BIG_ENDIAN
  22. uint32_t phyrx_abort_reason : 8,
  23. phy_enters_nap_state : 1,
  24. phy_enters_defer_state : 1,
  25. reserved_0 : 6,
  26. receive_duration : 16;
  27. #else
  28. uint32_t receive_duration : 16,
  29. reserved_0 : 6,
  30. phy_enters_defer_state : 1,
  31. phy_enters_nap_state : 1,
  32. phyrx_abort_reason : 8;
  33. #endif
  34. };
  35. #define PHYRX_ABORT_REQUEST_INFO_PHYRX_ABORT_REASON_OFFSET 0x00000000
  36. #define PHYRX_ABORT_REQUEST_INFO_PHYRX_ABORT_REASON_LSB 0
  37. #define PHYRX_ABORT_REQUEST_INFO_PHYRX_ABORT_REASON_MSB 7
  38. #define PHYRX_ABORT_REQUEST_INFO_PHYRX_ABORT_REASON_MASK 0x000000ff
  39. #define PHYRX_ABORT_REQUEST_INFO_PHY_ENTERS_NAP_STATE_OFFSET 0x00000000
  40. #define PHYRX_ABORT_REQUEST_INFO_PHY_ENTERS_NAP_STATE_LSB 8
  41. #define PHYRX_ABORT_REQUEST_INFO_PHY_ENTERS_NAP_STATE_MSB 8
  42. #define PHYRX_ABORT_REQUEST_INFO_PHY_ENTERS_NAP_STATE_MASK 0x00000100
  43. #define PHYRX_ABORT_REQUEST_INFO_PHY_ENTERS_DEFER_STATE_OFFSET 0x00000000
  44. #define PHYRX_ABORT_REQUEST_INFO_PHY_ENTERS_DEFER_STATE_LSB 9
  45. #define PHYRX_ABORT_REQUEST_INFO_PHY_ENTERS_DEFER_STATE_MSB 9
  46. #define PHYRX_ABORT_REQUEST_INFO_PHY_ENTERS_DEFER_STATE_MASK 0x00000200
  47. #define PHYRX_ABORT_REQUEST_INFO_RESERVED_0_OFFSET 0x00000000
  48. #define PHYRX_ABORT_REQUEST_INFO_RESERVED_0_LSB 10
  49. #define PHYRX_ABORT_REQUEST_INFO_RESERVED_0_MSB 15
  50. #define PHYRX_ABORT_REQUEST_INFO_RESERVED_0_MASK 0x0000fc00
  51. #define PHYRX_ABORT_REQUEST_INFO_RECEIVE_DURATION_OFFSET 0x00000000
  52. #define PHYRX_ABORT_REQUEST_INFO_RECEIVE_DURATION_LSB 16
  53. #define PHYRX_ABORT_REQUEST_INFO_RECEIVE_DURATION_MSB 31
  54. #define PHYRX_ABORT_REQUEST_INFO_RECEIVE_DURATION_MASK 0xffff0000
  55. #endif