osapi_linux.h 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  1. /*
  2. * Copyright (c) 2013-2018 The Linux Foundation. All rights reserved.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for
  5. * any purpose with or without fee is hereby granted, provided that the
  6. * above copyright notice and this permission notice appear in all
  7. * copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  10. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  11. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  12. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  13. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  14. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  15. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  16. * PERFORMANCE OF THIS SOFTWARE.
  17. */
  18. /* ------------------------------------------------------------------------------ */
  19. /* This file contains the definitions of the basic atheros data types. */
  20. /* It is used to map the data types in atheros files to a platform specific */
  21. /* type. */
  22. /* ------------------------------------------------------------------------------ */
  23. #ifndef _OSAPI_LINUX_H_
  24. #define _OSAPI_LINUX_H_
  25. #ifdef __KERNEL__
  26. #include <linux/version.h>
  27. #include <generated/autoconf.h>
  28. #include <linux/types.h>
  29. #include <linux/kernel.h>
  30. #include <linux/string.h>
  31. #include <linux/skbuff.h>
  32. #include <linux/netdevice.h>
  33. #include <linux/jiffies.h>
  34. #include <linux/timer.h>
  35. #include <linux/delay.h>
  36. #include <linux/wait.h>
  37. #include <linux/semaphore.h>
  38. #include <linux/cache.h>
  39. /* #include <linux/kthread.h> */
  40. #include "a_types.h"
  41. #ifdef __GNUC__
  42. #define __ATTRIB_PACK __attribute__ ((packed))
  43. #define __ATTRIB_PRINTF __attribute__ ((format (printf, 1, 2)))
  44. #define __ATTRIB_NORETURN __attribute__ ((noreturn))
  45. #ifndef INLINE
  46. #define INLINE __inline__
  47. #endif
  48. #else /* Not GCC */
  49. #define __ATTRIB_PACK
  50. #define __ATTRIB_PRINTF
  51. #define __ATTRIB_NORETURN
  52. #ifndef INLINE
  53. #define INLINE __inline
  54. #endif
  55. #endif /* End __GNUC__ */
  56. #define PREPACK
  57. #define POSTPACK __ATTRIB_PACK
  58. #define A_MEMCPY(dst, src, len) memcpy((A_UINT8 *)(dst), (src), (len))
  59. #define A_MEMZERO(addr, len) memset(addr, 0, len)
  60. #define A_MEMSET(addr, value, size) memset((addr), (value), (size))
  61. #define A_MEMCMP(addr1, addr2, len) memcmp((addr1), (addr2), (len))
  62. #define A_LOGGER(mask, mod, args ...) \
  63. QDF_TRACE_ERROR(QDF_MODULE_ID_QDF, args)
  64. #define A_PRINTF(args ...) \
  65. QDF_TRACE_ERROR(QDF_MODULE_ID_QDF, args)
  66. #define A_SNPRINTF(buf, len, args ...) snprintf(buf, len, args)
  67. /*
  68. * Timer Functions
  69. */
  70. #define A_MSLEEP(msecs) \
  71. { \
  72. set_current_state(TASK_INTERRUPTIBLE); \
  73. schedule_timeout((HZ * (msecs)) / 1000); \
  74. set_current_state(TASK_RUNNING); \
  75. }
  76. typedef struct timer_list A_TIMER;
  77. /*
  78. * Wait Queue related functions
  79. */
  80. #ifndef wait_event_interruptible_timeout
  81. #define __wait_event_interruptible_timeout(wq, condition, ret) \
  82. do { \
  83. wait_queue_t __wait; \
  84. init_waitqueue_entry(&__wait, current); \
  85. \
  86. add_wait_queue(&wq, &__wait); \
  87. for (;; ) { \
  88. set_current_state(TASK_INTERRUPTIBLE); \
  89. if (condition) \
  90. break; \
  91. if (!signal_pending(current)) { \
  92. ret = schedule_timeout(ret); \
  93. if (!ret) \
  94. break; \
  95. continue; \
  96. } \
  97. ret = -ERESTARTSYS; \
  98. break; \
  99. } \
  100. current->state = TASK_RUNNING; \
  101. remove_wait_queue(&wq, &__wait); \
  102. } while (0)
  103. #define wait_event_interruptible_timeout(wq, condition, timeout) \
  104. ({ \
  105. long __ret = timeout; \
  106. if (!(condition)) \
  107. __wait_event_interruptible_timeout(wq, condition, __ret); \
  108. __ret; \
  109. })
  110. #endif /* wait_event_interruptible_timeout */
  111. #ifdef WLAN_DEBUG
  112. #ifdef A_SIMOS_DEVHOST
  113. extern unsigned int panic_on_assert;
  114. #define A_ASSERT(expr) \
  115. if (!(expr)) { \
  116. printk(KERN_ALERT "Debug Assert Caught, File %s, Line: %d, Test:%s\n", __FILE__, __LINE__, # expr); \
  117. if (panic_on_assert) panic(# expr); \
  118. }
  119. #else
  120. #define A_ASSERT(expr) \
  121. if (!(expr)) { \
  122. printk(KERN_ALERT "Debug Assert Caught, File %s, Line: %d, Test:%s\n", __FILE__, __LINE__, # expr); \
  123. }
  124. #endif
  125. #else
  126. #define A_ASSERT(expr)
  127. #endif /* DEBUG */
  128. #ifdef ANDROID_ENV
  129. struct firmware;
  130. int android_request_firmware(const struct firmware **firmware_p,
  131. const char *filename, struct device *device);
  132. void android_release_firmware(const struct firmware *firmware);
  133. #define A_REQUEST_FIRMWARE(_ppf, _pfile, _dev) android_request_firmware(_ppf, _pfile, _dev)
  134. #define A_RELEASE_FIRMWARE(_pf) android_release_firmware(_pf)
  135. #else
  136. #define A_REQUEST_FIRMWARE(_ppf, _pfile, _dev) request_firmware(_ppf, _pfile, _dev)
  137. #define A_RELEASE_FIRMWARE(_pf) release_firmware(_pf)
  138. #endif
  139. /*
  140. * Network buffer queue support
  141. */
  142. typedef struct sk_buff_head A_NETBUF_QUEUE_T;
  143. #define A_NETBUF_FREE(bufPtr) \
  144. a_netbuf_free(bufPtr)
  145. #define A_NETBUF_LEN(bufPtr) \
  146. a_netbuf_to_len(bufPtr)
  147. #define A_NETBUF_PUSH(bufPtr, len) \
  148. a_netbuf_push(bufPtr, len)
  149. #define A_NETBUF_PUT(bufPtr, len) \
  150. a_netbuf_put(bufPtr, len)
  151. #define A_NETBUF_TRIM(bufPtr, len) \
  152. a_netbuf_trim(bufPtr, len)
  153. #define A_NETBUF_PULL(bufPtr, len) \
  154. a_netbuf_pull(bufPtr, len)
  155. #define A_NETBUF_HEADROOM(bufPtr) \
  156. a_netbuf_headroom(bufPtr)
  157. #define A_NETBUF_SETLEN(bufPtr, len) \
  158. a_netbuf_setlen(bufPtr, len)
  159. /* Add data to end of a buffer */
  160. #define A_NETBUF_PUT_DATA(bufPtr, srcPtr, len) \
  161. a_netbuf_put_data(bufPtr, srcPtr, len)
  162. /* Add data to start of the buffer */
  163. #define A_NETBUF_PUSH_DATA(bufPtr, srcPtr, len) \
  164. a_netbuf_push_data(bufPtr, srcPtr, len)
  165. /* Remove data at start of the buffer */
  166. #define A_NETBUF_PULL_DATA(bufPtr, dstPtr, len) \
  167. a_netbuf_pull_data(bufPtr, dstPtr, len)
  168. /* Remove data from the end of the buffer */
  169. #define A_NETBUF_TRIM_DATA(bufPtr, dstPtr, len) \
  170. a_netbuf_trim_data(bufPtr, dstPtr, len)
  171. /* View data as "size" contiguous bytes of type "t" */
  172. #define A_NETBUF_VIEW_DATA(bufPtr, t, size) \
  173. (t)(((struct skbuf *)(bufPtr))->data)
  174. /* return the beginning of the headroom for the buffer */
  175. #define A_NETBUF_HEAD(bufPtr) \
  176. ((((struct sk_buff *)(bufPtr))->head))
  177. /*
  178. * OS specific network buffer access routines
  179. */
  180. void a_netbuf_free(void *bufPtr);
  181. void *a_netbuf_to_data(void *bufPtr);
  182. A_UINT32 a_netbuf_to_len(void *bufPtr);
  183. A_STATUS a_netbuf_push(void *bufPtr, A_INT32 len);
  184. A_STATUS a_netbuf_push_data(void *bufPtr, char *srcPtr, A_INT32 len);
  185. A_STATUS a_netbuf_put(void *bufPtr, A_INT32 len);
  186. A_STATUS a_netbuf_put_data(void *bufPtr, char *srcPtr, A_INT32 len);
  187. A_STATUS a_netbuf_pull(void *bufPtr, A_INT32 len);
  188. A_STATUS a_netbuf_pull_data(void *bufPtr, char *dstPtr, A_INT32 len);
  189. A_STATUS a_netbuf_trim(void *bufPtr, A_INT32 len);
  190. A_STATUS a_netbuf_trim_data(void *bufPtr, char *dstPtr, A_INT32 len);
  191. A_STATUS a_netbuf_setlen(void *bufPtr, A_INT32 len);
  192. A_INT32 a_netbuf_headroom(void *bufPtr);
  193. void a_netbuf_enqueue(A_NETBUF_QUEUE_T *q, void *pkt);
  194. void a_netbuf_prequeue(A_NETBUF_QUEUE_T *q, void *pkt);
  195. void *a_netbuf_dequeue(A_NETBUF_QUEUE_T *q);
  196. int a_netbuf_queue_size(A_NETBUF_QUEUE_T *q);
  197. int a_netbuf_queue_empty(A_NETBUF_QUEUE_T *q);
  198. int a_netbuf_queue_empty(A_NETBUF_QUEUE_T *q);
  199. void a_netbuf_queue_init(A_NETBUF_QUEUE_T *q);
  200. #ifdef QCA_PARTNER_PLATFORM
  201. #include "ath_carr_pltfrm.h"
  202. #endif /* QCA_PARTNER_PLATFORM */
  203. #else /* __KERNEL__ */
  204. #ifdef __GNUC__
  205. #define __ATTRIB_PACK __attribute__ ((packed))
  206. #define __ATTRIB_PRINTF __attribute__ ((format (printf, 1, 2)))
  207. #define __ATTRIB_NORETURN __attribute__ ((noreturn))
  208. #ifndef inline
  209. #define inline __inline__
  210. #endif
  211. #ifndef INLINE
  212. #define INLINE __inline__
  213. #endif
  214. #else /* Not GCC */
  215. #define __ATTRIB_PACK
  216. #define __ATTRIB_PRINTF
  217. #define __ATTRIB_NORETURN
  218. #ifndef inline
  219. #define inline __inline
  220. #endif
  221. #ifndef INLINE
  222. #define INLINE __inline
  223. #endif
  224. #endif /* End __GNUC__ */
  225. #define PREPACK
  226. #define POSTPACK __ATTRIB_PACK
  227. #define A_MEMCPY(dst, src, len) memcpy((dst), (src), (len))
  228. #define A_MEMSET(addr, value, size) memset((addr), (value), (size))
  229. #define A_MEMZERO(addr, len) memset((addr), 0, (len))
  230. #define A_MEMCMP(addr1, addr2, len) memcmp((addr1), (addr2), (len))
  231. #ifdef ANDROID
  232. #ifndef err
  233. #include <linux/errno.h>
  234. #define err(_s, args ...) do { \
  235. fprintf(stderr, "%s: line %d ", __FILE__, __LINE__); \
  236. fprintf(stderr, args); fprintf(stderr, ": %d\n", errno); \
  237. exit(_s); } while (0)
  238. #endif
  239. #else
  240. #include <linux/err.h>
  241. #endif
  242. #endif /* __KERNEL__ */
  243. #endif /* _OSAPI_LINUX_H_ */