i_qdf_util.h 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279
  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: i_qdf_util.h
  28. * This file provides OS dependent API's.
  29. */
  30. #ifndef _I_QDF_UTIL_H
  31. #define _I_QDF_UTIL_H
  32. #include <linux/compiler.h>
  33. #include <linux/kernel.h>
  34. #include <linux/types.h>
  35. #include <errno.h>
  36. #include <linux/random.h>
  37. #include <qdf_types.h>
  38. #include <qdf_status.h>
  39. #include <asm/byteorder.h>
  40. #if LINUX_VERSION_CODE <= KERNEL_VERSION(3, 3, 8)
  41. #include <asm/system.h>
  42. #else
  43. #if defined(__LINUX_MIPS32_ARCH__) || defined(__LINUX_MIPS64_ARCH__)
  44. #include <asm/dec/system.h>
  45. #else
  46. #endif
  47. #endif
  48. #include <qdf_types.h>
  49. #include <asm/io.h>
  50. #include <asm/byteorder.h>
  51. #ifdef QCA_PARTNER_PLATFORM
  52. #include "ath_carr_pltfrm.h"
  53. #else
  54. #include <linux/byteorder/generic.h>
  55. #endif
  56. /*
  57. * Generic compiler-dependent macros if defined by the OS
  58. */
  59. #define __qdf_unlikely(_expr) unlikely(_expr)
  60. #define __qdf_likely(_expr) likely(_expr)
  61. /**
  62. * __qdf_status_to_os_return() - translates qdf_status types to linux return types
  63. * @status: status to translate
  64. *
  65. * Translates error types that linux may want to handle specially.
  66. *
  67. * return: 0 or the linux error code that most closely matches the QDF_STATUS.
  68. * defaults to -1 (EPERM)
  69. */
  70. static inline int __qdf_status_to_os_return(QDF_STATUS status)
  71. {
  72. switch (status) {
  73. case QDF_STATUS_SUCCESS:
  74. return 0;
  75. case QDF_STATUS_E_RESOURCES:
  76. return -EBUSY;
  77. case QDF_STATUS_E_NOMEM:
  78. return -ENOMEM;
  79. case QDF_STATUS_E_AGAIN:
  80. return -EAGAIN;
  81. case QDF_STATUS_E_INVAL:
  82. return -EINVAL;
  83. case QDF_STATUS_E_FAULT:
  84. return -EFAULT;
  85. case QDF_STATUS_E_ALREADY:
  86. return -EALREADY;
  87. case QDF_STATUS_E_BADMSG:
  88. return -EBADMSG;
  89. case QDF_STATUS_E_BUSY:
  90. return -EBUSY;
  91. case QDF_STATUS_E_CANCELED:
  92. return -ECANCELED;
  93. case QDF_STATUS_E_ABORTED:
  94. return -ECONNABORTED;
  95. case QDF_STATUS_E_PERM:
  96. return -EPERM;
  97. case QDF_STATUS_E_EXISTS:
  98. return -EEXIST;
  99. case QDF_STATUS_E_NOENT:
  100. return -ENOENT;
  101. case QDF_STATUS_E_E2BIG:
  102. return -E2BIG;
  103. case QDF_STATUS_E_NOSPC:
  104. return -ENOSPC;
  105. case QDF_STATUS_E_ADDRNOTAVAIL:
  106. return -EADDRNOTAVAIL;
  107. case QDF_STATUS_E_ENXIO:
  108. return -ENXIO;
  109. case QDF_STATUS_E_NETDOWN:
  110. return -ENETDOWN;
  111. case QDF_STATUS_E_IO:
  112. return -EIO;
  113. case QDF_STATUS_E_NETRESET:
  114. return -ENETRESET;
  115. default:
  116. return -EPERM;
  117. }
  118. }
  119. /**
  120. * __qdf_set_bit() - set bit in address
  121. * @nr: bit number to be set
  122. * @addr: address buffer pointer
  123. *
  124. * Return: none
  125. */
  126. static inline void __qdf_set_bit(unsigned int nr, unsigned long *addr)
  127. {
  128. __set_bit(nr, addr);
  129. }
  130. /**
  131. * __qdf_set_macaddr_broadcast() - set a QDF MacAddress to the 'broadcast'
  132. * @mac_addr: pointer to the qdf MacAddress to set to broadcast
  133. *
  134. * This function sets a QDF MacAddress to the 'broadcast' MacAddress. Broadcast
  135. * MacAddress contains all 0xFF bytes.
  136. *
  137. * Return: none
  138. */
  139. static inline void __qdf_set_macaddr_broadcast(struct qdf_mac_addr *mac_addr)
  140. {
  141. memset(mac_addr, 0xff, QDF_MAC_ADDR_SIZE);
  142. }
  143. /**
  144. * __qdf_zero_macaddr() - zero out a MacAddress
  145. * @mac_addr: pointer to the struct qdf_mac_addr to zero.
  146. *
  147. * This function zeros out a QDF MacAddress type.
  148. *
  149. * Return: none
  150. */
  151. static inline void __qdf_zero_macaddr(struct qdf_mac_addr *mac_addr)
  152. {
  153. memset(mac_addr, 0, QDF_MAC_ADDR_SIZE);
  154. }
  155. /**
  156. * __qdf_is_macaddr_equal() - compare two QDF MacAddress
  157. * @mac_addr1: Pointer to one qdf MacAddress to compare
  158. * @mac_addr2: Pointer to the other qdf MacAddress to compare
  159. *
  160. * This function returns a bool that tells if a two QDF MacAddress'
  161. * are equivalent.
  162. *
  163. * Return: true if the MacAddress's are equal
  164. * not true if the MacAddress's are not equal
  165. */
  166. static inline bool __qdf_is_macaddr_equal(struct qdf_mac_addr *mac_addr1,
  167. struct qdf_mac_addr *mac_addr2)
  168. {
  169. return 0 == memcmp(mac_addr1, mac_addr2, QDF_MAC_ADDR_SIZE);
  170. }
  171. /**
  172. * qdf_in_interrupt - returns true if in interrupt context
  173. */
  174. #define qdf_in_interrupt in_interrupt
  175. /**
  176. * @brief memory barriers.
  177. */
  178. #define __qdf_min(_a, _b) ((_a) < (_b) ? _a : _b)
  179. #define __qdf_max(_a, _b) ((_a) > (_b) ? _a : _b)
  180. /**
  181. * @brief Assert
  182. */
  183. #define __qdf_assert(expr) do { \
  184. if (unlikely(!(expr))) { \
  185. pr_err("Assertion failed! %s:%s %s:%d\n", \
  186. # expr, __func__, __FILE__, __LINE__); \
  187. dump_stack(); \
  188. QDF_BUG(0); \
  189. } \
  190. } while (0)
  191. /**
  192. * @brief Assert
  193. */
  194. #define __qdf_target_assert(expr) do { \
  195. if (unlikely(!(expr))) { \
  196. qdf_print("Assertion failed! %s:%s %s:%d\n", \
  197. #expr, __FUNCTION__, __FILE__, __LINE__); \
  198. dump_stack(); \
  199. panic("Take care of the TARGET ASSERT first\n"); \
  200. } \
  201. } while (0)
  202. #define __qdf_cpu_to_le64 cpu_to_le64
  203. #define __qdf_container_of(ptr, type, member) container_of(ptr, type, member)
  204. #define __qdf_ntohs ntohs
  205. #define __qdf_ntohl ntohl
  206. #define __qdf_htons htons
  207. #define __qdf_htonl htonl
  208. #define __qdf_cpu_to_le16 cpu_to_le16
  209. #define __qdf_cpu_to_le32 cpu_to_le32
  210. #define __qdf_cpu_to_le64 cpu_to_le64
  211. #define __qdf_le16_to_cpu le16_to_cpu
  212. #define __qdf_le32_to_cpu le32_to_cpu
  213. #define __qdf_be32_to_cpu be32_to_cpu
  214. #define __qdf_be64_to_cpu be64_to_cpu
  215. #define __qdf_le64_to_cpu le64_to_cpu
  216. #define __qdf_le16_to_cpu le16_to_cpu
  217. /**
  218. * @brief memory barriers.
  219. */
  220. #define __qdf_wmb() wmb()
  221. #define __qdf_rmb() rmb()
  222. #define __qdf_mb() mb()
  223. #define __qdf_roundup(x, y) roundup(x, y)
  224. #ifdef QCA_CONFIG_SMP
  225. /**
  226. * __qdf_get_cpu() - get cpu_index
  227. *
  228. * Return: cpu_index
  229. */
  230. static inline
  231. int __qdf_get_cpu(void)
  232. {
  233. int cpu_index = get_cpu();
  234. put_cpu();
  235. return cpu_index;
  236. }
  237. #else
  238. static inline
  239. int __qdf_get_cpu(void)
  240. {
  241. return 0;
  242. }
  243. #endif
  244. static inline int __qdf_device_init_wakeup(__qdf_device_t qdf_dev, bool enable)
  245. {
  246. return device_init_wakeup(qdf_dev->dev, enable);
  247. }
  248. #endif /*_I_QDF_UTIL_H*/