qdf_util.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470
  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. #ifdef QCA_CONFIG_SMP
  34. #define QDF_MAX_AVAILABLE_CPU 8
  35. #else
  36. #define QDF_MAX_AVAILABLE_CPU 1
  37. #endif
  38. /**
  39. * qdf_unlikely - Compiler-dependent macro denoting code likely to execute
  40. * @_expr: expression to be checked
  41. */
  42. #define qdf_unlikely(_expr) __qdf_unlikely(_expr)
  43. /**
  44. * qdf_likely - Compiler-dependent macro denoting code unlikely to execute
  45. * @_expr: expression to be checked
  46. */
  47. #define qdf_likely(_expr) __qdf_likely(_expr)
  48. /**
  49. * qdf_mb - read + write memory barrier.
  50. */
  51. #define qdf_mb() __qdf_mb()
  52. /**
  53. * qdf_assert - assert "expr" evaluates to false.
  54. */
  55. #ifdef QDF_DEBUG
  56. #define qdf_assert(expr) __qdf_assert(expr)
  57. #else
  58. #define qdf_assert(expr)
  59. #endif /* QDF_DEBUG */
  60. /**
  61. * qdf_assert_always - alway assert "expr" evaluates to false.
  62. */
  63. #define qdf_assert_always(expr) __qdf_assert(expr)
  64. /**
  65. * qdf_target_assert_always - alway target assert "expr" evaluates to false.
  66. */
  67. #define qdf_target_assert_always(expr) __qdf_target_assert(expr)
  68. /**
  69. * QDF_MAX - get maximum of two values
  70. * @_x: 1st arguement
  71. * @_y: 2nd arguement
  72. */
  73. #define QDF_MAX(_x, _y) (((_x) > (_y)) ? (_x) : (_y))
  74. /**
  75. * QDF_MIN - get minimum of two values
  76. * @_x: 1st arguement
  77. * @_y: 2nd arguement
  78. */
  79. #define QDF_MIN(_x, _y) (((_x) < (_y)) ? (_x) : (_y))
  80. /**
  81. * qdf_status_to_os_return - returns the status to OS.
  82. * @status: enum QDF_STATUS
  83. *
  84. * returns: int status success/failure
  85. */
  86. static inline int qdf_status_to_os_return(QDF_STATUS status)
  87. {
  88. return __qdf_status_to_os_return(status);
  89. }
  90. /**
  91. * qdf_set_bit() - set bit in address
  92. * @nr: bit number to be set
  93. * @addr: address buffer pointer
  94. *
  95. * Return: none
  96. */
  97. #define qdf_set_bit(nr, addr) __qdf_set_bit(nr, addr)
  98. /**
  99. * qdf_container_of - cast a member of a structure out to the containing
  100. * structure
  101. * @ptr: the pointer to the member.
  102. * @type: the type of the container struct this is embedded in.
  103. * @member: the name of the member within the struct.
  104. */
  105. #define qdf_container_of(ptr, type, member) \
  106. __qdf_container_of(ptr, type, member)
  107. /**
  108. * qdf_is_pwr2 - test input value is power of 2 integer
  109. * @value: input integer
  110. */
  111. #define QDF_IS_PWR2(value) (((value) ^ ((value)-1)) == ((value) << 1) - 1)
  112. /**
  113. * qdf_roundup() - roundup the input value
  114. * @x: value to roundup
  115. * @y: input value rounded to multiple of this
  116. *
  117. * Return: rounded value
  118. */
  119. #define qdf_roundup(x, y) __qdf_roundup(x, y)
  120. /**
  121. * qdf_is_macaddr_equal() - compare two QDF MacAddress
  122. * @mac_addr1: Pointer to one qdf MacAddress to compare
  123. * @mac_addr2: Pointer to the other qdf MacAddress to compare
  124. *
  125. * This function returns a bool that tells if a two QDF MacAddress'
  126. * are equivalent.
  127. *
  128. * Return: true if the MacAddress's are equal
  129. * not true if the MacAddress's are not equal
  130. */
  131. static inline bool qdf_is_macaddr_equal(struct qdf_mac_addr *mac_addr1,
  132. struct qdf_mac_addr *mac_addr2)
  133. {
  134. return __qdf_is_macaddr_equal(mac_addr1, mac_addr2);
  135. }
  136. /**
  137. * qdf_is_macaddr_zero() - check for a MacAddress of all zeros.
  138. * @mac_addr: pointer to the struct qdf_mac_addr to check.
  139. *
  140. * This function returns a bool that tells if a MacAddress is made up of
  141. * all zeros.
  142. *
  143. * Return: true if the MacAddress is all Zeros
  144. * false if the MacAddress is not all Zeros.
  145. */
  146. static inline bool qdf_is_macaddr_zero(struct qdf_mac_addr *mac_addr)
  147. {
  148. struct qdf_mac_addr zero_mac_addr = QDF_MAC_ADDR_ZERO_INITIALIZER;
  149. return qdf_is_macaddr_equal(mac_addr, &zero_mac_addr);
  150. }
  151. /**
  152. * qdf_zero_macaddr() - zero out a MacAddress
  153. * @mac_addr: pointer to the struct qdf_mac_addr to zero.
  154. *
  155. * This function zeros out a QDF MacAddress type.
  156. *
  157. * Return: none
  158. */
  159. static inline void qdf_zero_macaddr(struct qdf_mac_addr *mac_addr)
  160. {
  161. __qdf_zero_macaddr(mac_addr);
  162. }
  163. /**
  164. * qdf_is_macaddr_group() - check for a MacAddress is a 'group' address
  165. * @mac_addr1: pointer to the qdf MacAddress to check
  166. *
  167. * This function returns a bool that tells if a the input QDF MacAddress
  168. * is a "group" address. Group addresses have the 'group address bit' turned
  169. * on in the MacAddress. Group addresses are made up of Broadcast and
  170. * Multicast addresses.
  171. *
  172. * Return: true if the input MacAddress is a Group address
  173. * false if the input MacAddress is not a Group address
  174. */
  175. static inline bool qdf_is_macaddr_group(struct qdf_mac_addr *mac_addr)
  176. {
  177. return mac_addr->bytes[0] & 0x01;
  178. }
  179. /**
  180. * qdf_is_macaddr_broadcast() - check for a MacAddress is a broadcast address
  181. * @mac_addr: Pointer to the qdf MacAddress to check
  182. *
  183. * This function returns a bool that tells if a the input QDF MacAddress
  184. * is a "broadcast" address.
  185. *
  186. * Return: true if the input MacAddress is a broadcast address
  187. * flase if the input MacAddress is not a broadcast address
  188. */
  189. static inline bool qdf_is_macaddr_broadcast(struct qdf_mac_addr *mac_addr)
  190. {
  191. struct qdf_mac_addr broadcast_mac_addr =
  192. QDF_MAC_ADDR_BROADCAST_INITIALIZER;
  193. return qdf_is_macaddr_equal(mac_addr, &broadcast_mac_addr);
  194. }
  195. /**
  196. * qdf_copy_macaddr() - copy a QDF MacAddress
  197. * @dst_addr: pointer to the qdf MacAddress to copy TO (the destination)
  198. * @src_addr: pointer to the qdf MacAddress to copy FROM (the source)
  199. *
  200. * This function copies a QDF MacAddress into another QDF MacAddress.
  201. *
  202. * Return: none
  203. */
  204. static inline void qdf_copy_macaddr(struct qdf_mac_addr *dst_addr,
  205. struct qdf_mac_addr *src_addr)
  206. {
  207. *dst_addr = *src_addr;
  208. }
  209. /**
  210. * qdf_set_macaddr_broadcast() - set a QDF MacAddress to the 'broadcast'
  211. * @mac_addr: pointer to the qdf MacAddress to set to broadcast
  212. *
  213. * This function sets a QDF MacAddress to the 'broadcast' MacAddress. Broadcast
  214. * MacAddress contains all 0xFF bytes.
  215. *
  216. * Return: none
  217. */
  218. static inline void qdf_set_macaddr_broadcast(struct qdf_mac_addr *mac_addr)
  219. {
  220. __qdf_set_macaddr_broadcast(mac_addr);
  221. }
  222. /**
  223. * qdf_set_u16() - Assign 16-bit unsigned value to a byte array base on CPU's
  224. * endianness.
  225. * @ptr: Starting address of a byte array
  226. * @value: The value to assign to the byte array
  227. *
  228. * Caller must validate the byte array has enough space to hold the vlaue
  229. *
  230. * Return: The address to the byte after the assignment. This may or may not
  231. * be valid. Caller to verify.
  232. */
  233. static inline uint8_t *qdf_set_u16(uint8_t *ptr, uint16_t value)
  234. {
  235. #if defined(ANI_BIG_BYTE_ENDIAN)
  236. *(ptr) = (uint8_t) (value >> 8);
  237. *(ptr + 1) = (uint8_t) (value);
  238. #else
  239. *(ptr + 1) = (uint8_t) (value >> 8);
  240. *(ptr) = (uint8_t) (value);
  241. #endif
  242. return ptr + 2;
  243. }
  244. /**
  245. * qdf_get_u16() - Retrieve a 16-bit unsigned value from a byte array base on
  246. * CPU's endianness.
  247. * @ptr: Starting address of a byte array
  248. * @value: Pointer to a caller allocated buffer for 16 bit value. Value is to
  249. * assign to this location.
  250. *
  251. * Caller must validate the byte array has enough space to hold the vlaue
  252. *
  253. * Return: The address to the byte after the assignment. This may or may not
  254. * be valid. Caller to verify.
  255. */
  256. static inline uint8_t *qdf_get_u16(uint8_t *ptr, uint16_t *value)
  257. {
  258. #if defined(ANI_BIG_BYTE_ENDIAN)
  259. *value = (((uint16_t) (*ptr << 8)) | ((uint16_t) (*(ptr + 1))));
  260. #else
  261. *value = (((uint16_t) (*(ptr + 1) << 8)) | ((uint16_t) (*ptr)));
  262. #endif
  263. return ptr + 2;
  264. }
  265. /**
  266. * qdf_get_u32() - retrieve a 32-bit unsigned value from a byte array base on
  267. * CPU's endianness.
  268. * @ptr: Starting address of a byte array
  269. * @value: Pointer to a caller allocated buffer for 32 bit value. Value is to
  270. * assign to this location.
  271. *
  272. * Caller must validate the byte array has enough space to hold the vlaue
  273. *
  274. * Return: The address to the byte after the assignment. This may or may not
  275. * be valid. Caller to verify.
  276. */
  277. static inline uint8_t *qdf_get_u32(uint8_t *ptr, uint32_t *value)
  278. {
  279. #if defined(ANI_BIG_BYTE_ENDIAN)
  280. *value = ((uint32_t) (*(ptr) << 24) |
  281. (uint32_t) (*(ptr + 1) << 16) |
  282. (uint32_t) (*(ptr + 2) << 8) | (uint32_t) (*(ptr + 3)));
  283. #else
  284. *value = ((uint32_t) (*(ptr + 3) << 24) |
  285. (uint32_t) (*(ptr + 2) << 16) |
  286. (uint32_t) (*(ptr + 1) << 8) | (uint32_t) (*(ptr)));
  287. #endif
  288. return ptr + 4;
  289. }
  290. /**
  291. * qdf_ntohs - Convert a 16-bit value from network byte order to host byte order
  292. */
  293. #define qdf_ntohs(x) __qdf_ntohs(x)
  294. /**
  295. * qdf_ntohl - Convert a 32-bit value from network byte order to host byte order
  296. */
  297. #define qdf_ntohl(x) __qdf_ntohl(x)
  298. /**
  299. * qdf_htons - Convert a 16-bit value from host byte order to network byte order
  300. */
  301. #define qdf_htons(x) __qdf_htons(x)
  302. /**
  303. * qdf_htonl - Convert a 32-bit value from host byte order to network byte order
  304. */
  305. #define qdf_htonl(x) __qdf_htonl(x)
  306. /**
  307. * qdf_cpu_to_le16 - Convert a 16-bit value from CPU byte order to
  308. * little-endian byte order
  309. */
  310. #define qdf_cpu_to_le16(x) __qdf_cpu_to_le16(x)
  311. /**
  312. * qdf_cpu_to_le32 - Convert a 32-bit value from CPU byte order to
  313. * little-endian byte order
  314. */
  315. #define qdf_cpu_to_le32(x) __qdf_cpu_to_le32(x)
  316. /**
  317. * qdf_cpu_to_le64 - Convert a 64-bit value from CPU byte order to
  318. * little-endian byte order
  319. */
  320. #define qdf_cpu_to_le64(x) __qdf_cpu_to_le64(x)
  321. /**
  322. * qdf_be32_to_cpu - Convert a 32-bit value from big-endian byte order
  323. * to CPU byte order
  324. */
  325. #define qdf_be32_to_cpu(x) __qdf_be32_to_cpu(x)
  326. /**
  327. * qdf_be64_to_cpu - Convert a 64-bit value from big-endian byte order
  328. * to CPU byte order
  329. */
  330. #define qdf_be64_to_cpu(x) __qdf_be64_to_cpu(x)
  331. /**
  332. * qdf_le32_to_cpu - Convert a 32-bit value from little-endian byte
  333. * order to CPU byte order
  334. */
  335. #define qdf_le32_to_cpu(x) __qdf_le32_to_cpu(x)
  336. /**
  337. * qdf_le64_to_cpu - Convert a 64-bit value from little-endian byte
  338. * order to CPU byte order
  339. */
  340. #define qdf_le64_to_cpu(x) __qdf_le64_to_cpu(x)
  341. /**
  342. * qdf_le16_to_cpu - Convert a 16-bit value from little-endian byte order
  343. * to CPU byte order
  344. * @x: value to be converted
  345. */
  346. #define qdf_le16_to_cpu(x) __qdf_le16_to_cpu(x)
  347. /**
  348. * qdf_function - replace with the name of the current function
  349. */
  350. #define qdf_function __qdf_function
  351. /**
  352. * qdf_get_pwr2() - get next power of 2 integer from input value
  353. * @value: input value to find next power of 2 integer
  354. *
  355. * Get next power of 2 integer from input value
  356. *
  357. * Return: Power of 2 integer
  358. */
  359. static inline int qdf_get_pwr2(int value)
  360. {
  361. int log2;
  362. if (QDF_IS_PWR2(value))
  363. return value;
  364. log2 = 0;
  365. while (value) {
  366. value >>= 1;
  367. log2++;
  368. }
  369. return 1 << log2;
  370. }
  371. static inline
  372. int qdf_get_cpu(void)
  373. {
  374. return __qdf_get_cpu();
  375. }
  376. /**
  377. * qdf_device_init_wakeup() - allow a device to wake up the aps system
  378. * @qdf_dev: the qdf device context
  379. * @enable: enable/disable the device as a wakup source
  380. *
  381. * Return: 0 or errno
  382. */
  383. static inline int qdf_device_init_wakeup(qdf_device_t qdf_dev, bool enable)
  384. {
  385. return __qdf_device_init_wakeup(qdf_dev, enable);
  386. }
  387. static inline
  388. uint64_t qdf_get_totalramsize(void)
  389. {
  390. return __qdf_get_totalramsize();
  391. }
  392. /**
  393. * qdf_get_lower_32_bits() - get lower 32 bits from an address.
  394. * @addr: address
  395. *
  396. * This api returns the lower 32 bits of an address.
  397. *
  398. * Return: lower 32 bits.
  399. */
  400. static inline
  401. uint32_t qdf_get_lower_32_bits(qdf_dma_addr_t addr)
  402. {
  403. return __qdf_get_lower_32_bits(addr);
  404. }
  405. /**
  406. * qdf_get_upper_32_bits() - get upper 32 bits from an address.
  407. * @addr: address
  408. *
  409. * This api returns the upper 32 bits of an address.
  410. *
  411. * Return: upper 32 bits.
  412. */
  413. static inline
  414. uint32_t qdf_get_upper_32_bits(qdf_dma_addr_t addr)
  415. {
  416. return __qdf_get_upper_32_bits(addr);
  417. }
  418. #endif /*_QDF_UTIL_H*/