i_qdf_util.h 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /*
  2. * Copyright (c) 2014-2015 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. #ifndef _I_CDF_UTIL_H
  27. #define _I_CDF_UTIL_H
  28. #include <linux/compiler.h>
  29. #include <linux/kernel.h>
  30. #include <linux/types.h>
  31. #include <errno.h>
  32. #include <linux/random.h>
  33. #include <cdf_types.h>
  34. #include <cdf_status.h>
  35. #include <asm/byteorder.h>
  36. /*
  37. * Generic compiler-dependent macros if defined by the OS
  38. */
  39. #define __cdf_unlikely(_expr) unlikely(_expr)
  40. #define __cdf_likely(_expr) likely(_expr)
  41. /**
  42. * cdf_status_to_os_return(): translates cdf_status types to linux return types
  43. * @status: status to translate
  44. *
  45. * Translates error types that linux may want to handle specially.
  46. *
  47. * return: 0 or the linux error code that most closely matches the CDF_STATUS.
  48. * defaults to -1 (EPERM)
  49. */
  50. static inline int __cdf_status_to_os_return(CDF_STATUS status)
  51. {
  52. switch (status) {
  53. case CDF_STATUS_SUCCESS:
  54. return 0;
  55. case CDF_STATUS_E_NULL_VALUE:
  56. case CDF_STATUS_E_FAULT:
  57. return -EFAULT;
  58. case CDF_STATUS_E_TIMEOUT:
  59. case CDF_STATUS_E_BUSY:
  60. return -EBUSY;
  61. case CDF_STATUS_NOT_INITIALIZED:
  62. case CDF_STATUS_E_AGAIN:
  63. return -EAGAIN;
  64. case CDF_STATUS_E_NOSUPPORT:
  65. return -ENOSYS;
  66. case CDF_STATUS_E_ALREADY:
  67. return -EALREADY;
  68. case CDF_STATUS_E_NOMEM:
  69. return -ENOMEM;
  70. default:
  71. return -EPERM;
  72. }
  73. }
  74. /**
  75. * @brief memory barriers.
  76. */
  77. #define __cdf_min(_a, _b) ((_a) < (_b) ? _a : _b)
  78. #define __cdf_max(_a, _b) ((_a) > (_b) ? _a : _b)
  79. /**
  80. * @brief Assert
  81. */
  82. #define __cdf_assert(expr) do { \
  83. if (unlikely(!(expr))) { \
  84. pr_err("Assertion failed! %s:%s %s:%d\n", \
  85. # expr, __func__, __FILE__, __LINE__); \
  86. dump_stack(); \
  87. BUG_ON(1); \
  88. } \
  89. } while (0)
  90. #define __cdf_os_cpu_to_le64 cpu_to_le64
  91. #define __cdf_le16_to_cpu le16_to_cpu
  92. #define __cdf_le32_to_cpu le32_to_cpu
  93. #define __cdf_container_of(ptr, type, member) container_of(ptr, type, member)
  94. #endif /*_I_CDF_UTIL_H*/