qdf_util.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381
  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_util.h
  28. * This file defines utility functions.
  29. */
  30. #ifndef _QDF_UTIL_H
  31. #define _QDF_UTIL_H
  32. #include <i_qdf_util.h>
  33. /**
  34. * qdf_unlikely - Compiler-dependent macro denoting code likely to execute
  35. * @_expr: expression to be checked
  36. */
  37. #define qdf_unlikely(_expr) __qdf_unlikely(_expr)
  38. /**
  39. * qdf_likely - Compiler-dependent macro denoting code unlikely to execute
  40. * @_expr: expression to be checked
  41. */
  42. #define qdf_likely(_expr) __qdf_likely(_expr)
  43. /**
  44. * qdf_mb - read + write memory barrier.
  45. */
  46. #define qdf_mb() __qdf_mb()
  47. /**
  48. * qdf_assert - assert "expr" evaluates to false.
  49. */
  50. #ifdef QDF_DEBUG
  51. #define qdf_assert(expr) __qdf_assert(expr)
  52. #else
  53. #define qdf_assert(expr)
  54. #endif /* QDF_DEBUG */
  55. /**
  56. * qdf_assert_always - alway assert "expr" evaluates to false.
  57. */
  58. #define qdf_assert_always(expr) __qdf_assert(expr)
  59. /**
  60. * qdf_target_assert_always - alway target assert "expr" evaluates to false.
  61. */
  62. #define qdf_target_assert_always(expr) __qdf_target_assert(expr)
  63. /**
  64. * qdf_status_to_os_return - returns the status to OS.
  65. * @status: enum QDF_STATUS
  66. *
  67. * returns: int status success/failure
  68. */
  69. static inline int qdf_status_to_os_return(QDF_STATUS status)
  70. {
  71. return __qdf_status_to_os_return(status);
  72. }
  73. /**
  74. * qdf_container_of - cast a member of a structure out to the containing
  75. * structure
  76. * @ptr: the pointer to the member.
  77. * @type: the type of the container struct this is embedded in.
  78. * @member: the name of the member within the struct.
  79. */
  80. #define qdf_container_of(ptr, type, member) \
  81. __qdf_container_of(ptr, type, member)
  82. /**
  83. * qdf_is_pwr2 - test input value is power of 2 integer
  84. * @value: input integer
  85. */
  86. #define QDF_IS_PWR2(value) (((value) ^ ((value)-1)) == ((value) << 1) - 1)
  87. /**
  88. * qdf_is_macaddr_equal() - compare two QDF MacAddress
  89. * @mac_addr1: Pointer to one qdf MacAddress to compare
  90. * @mac_addr2: Pointer to the other qdf MacAddress to compare
  91. *
  92. * This function returns a bool that tells if a two QDF MacAddress'
  93. * are equivalent.
  94. *
  95. * Return: true if the MacAddress's are equal
  96. * not true if the MacAddress's are not equal
  97. */
  98. static inline bool qdf_is_macaddr_equal(struct qdf_mac_addr *mac_addr1,
  99. struct qdf_mac_addr *mac_addr2)
  100. {
  101. return __qdf_is_macaddr_equal(mac_addr1, mac_addr2);
  102. }
  103. /**
  104. * qdf_is_macaddr_zero() - check for a MacAddress of all zeros.
  105. * @mac_addr: pointer to the struct qdf_mac_addr to check.
  106. *
  107. * This function returns a bool that tells if a MacAddress is made up of
  108. * all zeros.
  109. *
  110. * Return: true if the MacAddress is all Zeros
  111. * false if the MacAddress is not all Zeros.
  112. */
  113. static inline bool qdf_is_macaddr_zero(struct qdf_mac_addr *mac_addr)
  114. {
  115. struct qdf_mac_addr zero_mac_addr = QDF_MAC_ADDR_ZERO_INITIALIZER;
  116. return qdf_is_macaddr_equal(mac_addr, &zero_mac_addr);
  117. }
  118. /**
  119. * qdf_zero_macaddr() - zero out a MacAddress
  120. * @mac_addr: pointer to the struct qdf_mac_addr to zero.
  121. *
  122. * This function zeros out a QDF MacAddress type.
  123. *
  124. * Return: none
  125. */
  126. static inline void qdf_zero_macaddr(struct qdf_mac_addr *mac_addr)
  127. {
  128. __qdf_zero_macaddr(mac_addr);
  129. }
  130. /**
  131. * qdf_is_macaddr_group() - check for a MacAddress is a 'group' address
  132. * @mac_addr1: pointer to the qdf MacAddress to check
  133. *
  134. * This function returns a bool that tells if a the input QDF MacAddress
  135. * is a "group" address. Group addresses have the 'group address bit' turned
  136. * on in the MacAddress. Group addresses are made up of Broadcast and
  137. * Multicast addresses.
  138. *
  139. * Return: true if the input MacAddress is a Group address
  140. * false if the input MacAddress is not a Group address
  141. */
  142. static inline bool qdf_is_macaddr_group(struct qdf_mac_addr *mac_addr)
  143. {
  144. return mac_addr->bytes[0] & 0x01;
  145. }
  146. /**
  147. * qdf_is_macaddr_broadcast() - check for a MacAddress is a broadcast address
  148. * @mac_addr: Pointer to the qdf MacAddress to check
  149. *
  150. * This function returns a bool that tells if a the input QDF MacAddress
  151. * is a "broadcast" address.
  152. *
  153. * Return: true if the input MacAddress is a broadcast address
  154. * flase if the input MacAddress is not a broadcast address
  155. */
  156. static inline bool qdf_is_macaddr_broadcast(struct qdf_mac_addr *mac_addr)
  157. {
  158. struct qdf_mac_addr broadcast_mac_addr =
  159. QDF_MAC_ADDR_BROADCAST_INITIALIZER;
  160. return qdf_is_macaddr_equal(mac_addr, &broadcast_mac_addr);
  161. }
  162. /**
  163. * qdf_copy_macaddr() - copy a QDF MacAddress
  164. * @dst_addr: pointer to the qdf MacAddress to copy TO (the destination)
  165. * @src_addr: pointer to the qdf MacAddress to copy FROM (the source)
  166. *
  167. * This function copies a QDF MacAddress into another QDF MacAddress.
  168. *
  169. * Return: none
  170. */
  171. static inline void qdf_copy_macaddr(struct qdf_mac_addr *dst_addr,
  172. struct qdf_mac_addr *src_addr)
  173. {
  174. *dst_addr = *src_addr;
  175. }
  176. /**
  177. * qdf_set_macaddr_broadcast() - set a QDF MacAddress to the 'broadcast'
  178. * @mac_addr: pointer to the qdf MacAddress to set to broadcast
  179. *
  180. * This function sets a QDF MacAddress to the 'broadcast' MacAddress. Broadcast
  181. * MacAddress contains all 0xFF bytes.
  182. *
  183. * Return: none
  184. */
  185. static inline void qdf_set_macaddr_broadcast(struct qdf_mac_addr *mac_addr)
  186. {
  187. __qdf_set_macaddr_broadcast(mac_addr);
  188. }
  189. /**
  190. * qdf_set_u16() - Assign 16-bit unsigned value to a byte array base on CPU's
  191. * endianness.
  192. * @ptr: Starting address of a byte array
  193. * @value: The value to assign to the byte array
  194. *
  195. * Caller must validate the byte array has enough space to hold the vlaue
  196. *
  197. * Return: The address to the byte after the assignment. This may or may not
  198. * be valid. Caller to verify.
  199. */
  200. static inline uint8_t *qdf_set_u16(uint8_t *ptr, uint16_t value)
  201. {
  202. #if defined(ANI_BIG_BYTE_ENDIAN)
  203. *(ptr) = (uint8_t) (value >> 8);
  204. *(ptr + 1) = (uint8_t) (value);
  205. #else
  206. *(ptr + 1) = (uint8_t) (value >> 8);
  207. *(ptr) = (uint8_t) (value);
  208. #endif
  209. return ptr + 2;
  210. }
  211. /**
  212. * qdf_get_u16() - Retrieve a 16-bit unsigned value from a byte array base on
  213. * CPU's endianness.
  214. * @ptr: Starting address of a byte array
  215. * @value: Pointer to a caller allocated buffer for 16 bit value. Value is to
  216. * assign to this location.
  217. *
  218. * Caller must validate the byte array has enough space to hold the vlaue
  219. *
  220. * Return: The address to the byte after the assignment. This may or may not
  221. * be valid. Caller to verify.
  222. */
  223. static inline uint8_t *qdf_get_u16(uint8_t *ptr, uint16_t *value)
  224. {
  225. #if defined(ANI_BIG_BYTE_ENDIAN)
  226. *value = (((uint16_t) (*ptr << 8)) | ((uint16_t) (*(ptr + 1))));
  227. #else
  228. *value = (((uint16_t) (*(ptr + 1) << 8)) | ((uint16_t) (*ptr)));
  229. #endif
  230. return ptr + 2;
  231. }
  232. /**
  233. * qdf_get_u32() - retrieve a 32-bit unsigned value from a byte array base on
  234. * CPU's endianness.
  235. * @ptr: Starting address of a byte array
  236. * @value: Pointer to a caller allocated buffer for 32 bit value. Value is to
  237. * assign to this location.
  238. *
  239. * Caller must validate the byte array has enough space to hold the vlaue
  240. *
  241. * Return: The address to the byte after the assignment. This may or may not
  242. * be valid. Caller to verify.
  243. */
  244. static inline uint8_t *qdf_get_u32(uint8_t *ptr, uint32_t *value)
  245. {
  246. #if defined(ANI_BIG_BYTE_ENDIAN)
  247. *value = ((uint32_t) (*(ptr) << 24) |
  248. (uint32_t) (*(ptr + 1) << 16) |
  249. (uint32_t) (*(ptr + 2) << 8) | (uint32_t) (*(ptr + 3)));
  250. #else
  251. *value = ((uint32_t) (*(ptr + 3) << 24) |
  252. (uint32_t) (*(ptr + 2) << 16) |
  253. (uint32_t) (*(ptr + 1) << 8) | (uint32_t) (*(ptr)));
  254. #endif
  255. return ptr + 4;
  256. }
  257. /**
  258. * qdf_ntohs - Convert a 16-bit value from network byte order to host byte order
  259. */
  260. #define qdf_ntohs(x) __qdf_ntohs(x)
  261. /**
  262. * qdf_ntohl - Convert a 32-bit value from network byte order to host byte order
  263. */
  264. #define qdf_ntohl(x) __qdf_ntohl(x)
  265. /**
  266. * qdf_htons - Convert a 16-bit value from host byte order to network byte order
  267. */
  268. #define qdf_htons(x) __qdf_htons(x)
  269. /**
  270. * qdf_htonl - Convert a 32-bit value from host byte order to network byte order
  271. */
  272. #define qdf_htonl(x) __qdf_htonl(x)
  273. /**
  274. * qdf_cpu_to_le16 - Convert a 16-bit value from CPU byte order to
  275. * little-endian byte order
  276. */
  277. #define qdf_cpu_to_le16(x) __qdf_cpu_to_le16(x)
  278. /**
  279. * qdf_cpu_to_le32 - Convert a 32-bit value from CPU byte order to
  280. * little-endian byte order
  281. */
  282. #define qdf_cpu_to_le32(x) __qdf_cpu_to_le32(x)
  283. /**
  284. * qdf_cpu_to_le64 - Convert a 64-bit value from CPU byte order to
  285. * little-endian byte order
  286. */
  287. #define qdf_cpu_to_le64(x) __qdf_cpu_to_le64(x)
  288. /**
  289. * qdf_be32_to_cpu - Convert a 32-bit value from big-endian byte order
  290. * to CPU byte order
  291. */
  292. #define qdf_be32_to_cpu(x) __qdf_be32_to_cpu(x)
  293. /**
  294. * qdf_be64_to_cpu - Convert a 64-bit value from big-endian byte order
  295. * to CPU byte order
  296. */
  297. #define qdf_be64_to_cpu(x) __qdf_be64_to_cpu(x)
  298. /**
  299. * qdf_le32_to_cpu - Convert a 32-bit value from little-endian byte
  300. * order to CPU byte order
  301. */
  302. #define qdf_le32_to_cpu(x) __qdf_le32_to_cpu(x)
  303. /**
  304. * qdf_le64_to_cpu - Convert a 64-bit value from little-endian byte
  305. * order to CPU byte order
  306. */
  307. #define qdf_le64_to_cpu(x) __qdf_le64_to_cpu(x)
  308. /**
  309. * qdf_le16_to_cpu - Convert a 16-bit value from little-endian byte order
  310. * to CPU byte order
  311. * @x: value to be converted
  312. */
  313. #define qdf_le16_to_cpu(x) __qdf_le16_to_cpu(x)
  314. /**
  315. * qdf_function - replace with the name of the current function
  316. */
  317. #define qdf_function __qdf_function
  318. /**
  319. * qdf_get_pwr2() - get next power of 2 integer from input value
  320. * @value: input value to find next power of 2 integer
  321. *
  322. * Get next power of 2 integer from input value
  323. *
  324. * Return: Power of 2 integer
  325. */
  326. static inline int qdf_get_pwr2(int value)
  327. {
  328. int log2;
  329. if (QDF_IS_PWR2(value))
  330. return value;
  331. log2 = 0;
  332. while (value) {
  333. value >>= 1;
  334. log2++;
  335. }
  336. return 1 << log2;
  337. }
  338. #endif /*_QDF_UTIL_H*/