qdf_status.h 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. /*
  2. * Copyright (c) 2014-2016 The Linux Foundation. All rights reserved.
  3. *
  4. * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
  5. *
  6. *
  7. * Permission to use, copy, modify, and/or distribute this software for
  8. * any purpose with or without fee is hereby granted, provided that the
  9. * above copyright notice and this permission notice appear in all
  10. * copies.
  11. *
  12. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  13. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  14. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  15. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  16. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  17. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  18. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  19. * PERFORMANCE OF THIS SOFTWARE.
  20. */
  21. /*
  22. * This file was originally distributed by Qualcomm Atheros, Inc.
  23. * under proprietary terms before Copyright ownership was assigned
  24. * to the Linux Foundation.
  25. */
  26. /**
  27. * DOC: qdf_status
  28. * QCA driver framework (QDF) status codes
  29. * Basic status codes/definitions used by QDF
  30. */
  31. #if !defined(__QDF_STATUS_H)
  32. #define __QDF_STATUS_H
  33. /**
  34. * typedef QDF_STATUS - QDF error codes
  35. * @QDF_STATUS_SUCCESS: success
  36. * @QDF_STATUS_E_RESOURCES: system resource(other than memory) not available
  37. * @QDF_STATUS_E_NOMEM: not enough memory
  38. * @QDF_STATUS_E_AGAIN: try again
  39. * @QDF_STATUS_E_INVAL: invalid request
  40. * @QDF_STATUS_E_FAULT: system fault
  41. * @QDF_STATUS_E_ALREADY: another request already in progress
  42. * @QDF_STATUS_E_BADMSG: bad message
  43. * @QDF_STATUS_E_BUSY: device or resource busy
  44. * @QDF_STATUS_E_CANCELED: request cancelled
  45. * @QDF_STATUS_E_ABORTED: request aborted
  46. * @QDF_STATUS_E_NOSUPPORT: request not supported
  47. * @QDF_STATUS_E_PERM: operation not permitted
  48. * @QDF_STATUS_E_EMPTY: empty condition
  49. * @QDF_STATUS_E_EXISTS: existence failure
  50. * @QDF_STATUS_E_TIMEOUT: operation timeout
  51. * @QDF_STATUS_E_FAILURE: unknown reason do not use unless nothign else applies
  52. * @QDF_STATUS_E_NOENT: No such file or directory
  53. * @QDF_STATUS_E_E2BIG: Arg list too long
  54. * @QDF_STATUS_E_NOSPC: no space left on device
  55. * @QDF_STATUS_E_ADDRNOTAVAIL: Cannot assign requested address
  56. * @QDF_STATUS_E_ENXIO: No such device or address
  57. * @QDF_STATUS_E_NETDOWN: network is down
  58. * @QDF_STATUS_E_IO: I/O Error
  59. * @QDF_STATUS_E_PENDING: pending status
  60. * @QDF_STATUS_E_NETRESET: Network dropped connection because of reset
  61. * @QDF_STATUS_E_SIG: Exit due to received SIGINT
  62. * @QDF_STATUS_E_PROTO: protocol error
  63. * @QDF_STATUS_NOT_INITIALIZED: resource not initialized
  64. * @QDF_STATUS_E_NULL_VALUE: request is null
  65. * @QDF_STATUS_PMC_PENDING: request pendign in pmc
  66. * @QDF_STATUS_PMC_DISABLED: pmc is disabled
  67. * @QDF_STATUS_PMC_NOT_NOW: pmc not ready now
  68. * @QDF_STATUS_PMC_AC_POWER: pmc ac power
  69. * @QDF_STATUS_PMC_SYS_ERROR: pmc system error
  70. * @QDF_STATUS_HEARTBEAT_TMOUT: hearbeat timeout error
  71. * @QDF_STATUS_NTH_BEACON_DELIVERY: Nth beacon delivery
  72. * @QDF_STATUS_CSR_WRONG_STATE: csr in wrong state
  73. * @QDF_STATUS_FT_PREAUTH_KEY_SUCCESS: ft preauth key success
  74. * @QDF_STATUS_FT_PREAUTH_KEY_FAILED: ft preauth key failed
  75. * @QDF_STATUS_CMD_NOT_QUEUED: command not queued
  76. * @QDF_STATUS_FW_MSG_TIMEDOUT: target message timeout
  77. * @QDF_STATUS_E_USB_ERROR: USB transaction error
  78. * @QDF_STATUS_MAXCOMP_FAIL: Component id is more than MAX UMAC components
  79. * @QDF_STATUS_COMP_DISABLED: UMAC Component is disabled
  80. * @QDF_STATUS_COMP_ASYNC: UMAC component runs in asynchronous communication
  81. * @QDF_STATUS_MAX: not a realy value just a place holder for max
  82. */
  83. typedef enum {
  84. QDF_STATUS_SUCCESS,
  85. QDF_STATUS_E_RESOURCES,
  86. QDF_STATUS_E_NOMEM,
  87. QDF_STATUS_E_AGAIN,
  88. QDF_STATUS_E_INVAL,
  89. QDF_STATUS_E_FAULT,
  90. QDF_STATUS_E_ALREADY,
  91. QDF_STATUS_E_BADMSG,
  92. QDF_STATUS_E_BUSY,
  93. QDF_STATUS_E_CANCELED,
  94. QDF_STATUS_E_ABORTED,
  95. QDF_STATUS_E_NOSUPPORT,
  96. QDF_STATUS_E_PERM,
  97. QDF_STATUS_E_EMPTY,
  98. QDF_STATUS_E_EXISTS,
  99. QDF_STATUS_E_TIMEOUT,
  100. QDF_STATUS_E_FAILURE,
  101. QDF_STATUS_E_NOENT,
  102. QDF_STATUS_E_E2BIG,
  103. QDF_STATUS_E_NOSPC,
  104. QDF_STATUS_E_ADDRNOTAVAIL,
  105. QDF_STATUS_E_ENXIO,
  106. QDF_STATUS_E_NETDOWN,
  107. QDF_STATUS_E_IO,
  108. QDF_STATUS_E_PENDING,
  109. QDF_STATUS_E_NETRESET,
  110. QDF_STATUS_E_SIG,
  111. QDF_STATUS_E_PROTO,
  112. QDF_STATUS_NOT_INITIALIZED,
  113. QDF_STATUS_E_NULL_VALUE,
  114. QDF_STATUS_PMC_PENDING,
  115. QDF_STATUS_PMC_DISABLED,
  116. QDF_STATUS_PMC_NOT_NOW,
  117. QDF_STATUS_PMC_AC_POWER,
  118. QDF_STATUS_PMC_SYS_ERROR,
  119. QDF_STATUS_HEARTBEAT_TMOUT,
  120. QDF_STATUS_NTH_BEACON_DELIVERY,
  121. QDF_STATUS_CSR_WRONG_STATE,
  122. QDF_STATUS_FT_PREAUTH_KEY_SUCCESS,
  123. QDF_STATUS_FT_PREAUTH_KEY_FAILED,
  124. QDF_STATUS_CMD_NOT_QUEUED,
  125. QDF_STATUS_FW_MSG_TIMEDOUT,
  126. QDF_STATUS_E_USB_ERROR,
  127. QDF_STATUS_MAXCOMP_FAIL,
  128. QDF_STATUS_COMP_DISABLED,
  129. QDF_STATUS_COMP_ASYNC,
  130. QDF_STATUS_MAX
  131. } QDF_STATUS;
  132. #define QDF_IS_STATUS_SUCCESS(status) (QDF_STATUS_SUCCESS == (status))
  133. #define QDF_IS_STATUS_ERROR(status) (QDF_STATUS_SUCCESS != (status))
  134. #endif /* if !defined __QDF_STATUS_H */