osdep.h 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300
  1. /*
  2. * Copyright (c) 2013-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 _OSDEP_H
  27. #define _OSDEP_H
  28. #include <cdf_types.h>
  29. #include <cdf_memory.h>
  30. #include <cdf_lock.h>
  31. #include <cdf_time.h>
  32. #include <cdf_softirq_timer.h>
  33. #include <cdf_defer.h>
  34. #include <cdf_nbuf.h>
  35. #include <cds_if_upperproto.h>
  36. #include <cds_queue.h>
  37. /**
  38. * enum ath_hal_bus_type - Supported Bus types
  39. * @HAL_BUS_TYPE_PCI: PCI Bus
  40. * @HAL_BUS_TYPE_AHB: AHB Bus
  41. * @HAL_BUS_TYPE_SNOC: SNOC Bus
  42. * @HAL_BUS_TYPE_SIM: Simulator
  43. */
  44. enum ath_hal_bus_type {
  45. HAL_BUS_TYPE_PCI,
  46. HAL_BUS_TYPE_AHB,
  47. HAL_BUS_TYPE_SNOC,
  48. HAL_BUS_TYPE_SIM
  49. };
  50. /**
  51. * sturct hal_bus_context - Bus to hal context handoff
  52. * @bc_tag: bus context tag
  53. * @bc_handle: bus context handle
  54. * @bc_bustype: bus type
  55. */
  56. typedef struct hal_bus_context {
  57. int bc_tag;
  58. char *bc_handle;
  59. enum ath_hal_bus_type bc_bustype;
  60. } HAL_BUS_CONTEXT;
  61. #define INLINE inline
  62. /* ATH_DEBUG -
  63. * Control whether debug features (printouts, assertions) are compiled
  64. * into the driver.
  65. */
  66. #ifndef ATH_DEBUG
  67. #define ATH_DEBUG 1 /* default: include debug code */
  68. #endif
  69. #if ATH_DEBUG
  70. #ifndef ASSERT
  71. #define ASSERT(expr) cdf_assert(expr)
  72. #endif
  73. #else
  74. #define ASSERT(expr)
  75. #endif /* ATH_DEBUG */
  76. /*
  77. * Need to define byte order based on the CPU configuration.
  78. */
  79. #ifndef _LITTLE_ENDIAN
  80. #define _LITTLE_ENDIAN 1234
  81. #endif
  82. #ifndef _BIG_ENDIAN
  83. #define _BIG_ENDIAN 4321
  84. #endif
  85. #ifdef __BIG_ENDIAN
  86. #define _BYTE_ORDER _BIG_ENDIAN
  87. #else
  88. #define _BYTE_ORDER _LITTLE_ENDIAN
  89. #endif
  90. /*
  91. * Deduce if tasklets are available. If not then
  92. * fall back to using the immediate work queue.
  93. */
  94. #define ath_sysctl_decl(f, ctl, write, filp, buffer, lenp, ppos) \
  95. f(struct ctl_table *ctl, int write, void *buffer, \
  96. size_t *lenp, loff_t *ppos)
  97. #define ATH_SYSCTL_PROC_DOINTVEC(ctl, write, filp, buffer, lenp, ppos) \
  98. proc_dointvec(ctl, write, buffer, lenp, ppos)
  99. #define ATH_SYSCTL_PROC_DOSTRING(ctl, write, filp, buffer, lenp, ppos) \
  100. proc_dostring(ctl, write, filp, buffer, lenp, ppos)
  101. /*
  102. * Byte Order stuff
  103. */
  104. #define le16toh(_x) le16_to_cpu(_x)
  105. #define htole16(_x) cpu_to_le16(_x)
  106. #define htobe16(_x) cpu_to_be16(_x)
  107. #define le32toh(_x) le32_to_cpu(_x)
  108. #define htole32(_x) cpu_to_le32(_x)
  109. #define be16toh(_x) be16_to_cpu(_x)
  110. #define be32toh(_x) be32_to_cpu(_x)
  111. #define htobe32(_x) cpu_to_be32(_x)
  112. #define EOK (0)
  113. #ifndef false
  114. #define false 0
  115. #endif
  116. #ifndef true
  117. #define true 1
  118. #endif
  119. #ifndef ARPHRD_IEEE80211
  120. #define ARPHRD_IEEE80211 801 /* IEEE 802.11. */
  121. #endif
  122. /*
  123. * Normal Delay functions. Time specified in microseconds.
  124. */
  125. #define OS_DELAY(_us) cdf_udelay(_us)
  126. /*
  127. * memory data manipulation functions.
  128. */
  129. #define OS_MEMCPY(_dst, _src, _len) cdf_mem_copy(_dst, _src, _len)
  130. #define OS_MEMMOVE(_dst, _src, _len) cdf_mem_move(_dst, _src, _len)
  131. #define OS_MEMZERO(_buf, _len) cdf_mem_zero(_buf, _len)
  132. #define OS_MEMSET(_buf, _ch, _len) cdf_mem_set(_buf, _len, _ch)
  133. #define OS_MEMCMP(_mem1, _mem2, _len) cdf_mem_compare(_mem1, _mem2, _len)
  134. #ifdef CONFIG_SMP
  135. /* Undo the one provided by the kernel to debug spin locks */
  136. #undef spin_lock
  137. #undef spin_unlock
  138. #undef spin_trylock
  139. #define spin_lock(x) \
  140. do { \
  141. spin_lock_bh(x); \
  142. } while (0)
  143. #define spin_unlock(x) \
  144. do { \
  145. if (!spin_is_locked(x)) { \
  146. WARN_ON(1); \
  147. printk(KERN_EMERG " %s:%d unlock addr=%p, %s \n", __func__, __LINE__, x, \
  148. !spin_is_locked(x) ? "Not locked" : ""); \
  149. } \
  150. spin_unlock_bh(x); \
  151. } while (0)
  152. #define spin_trylock(x) spin_trylock_bh(x)
  153. #define OS_SUPPORT_ASYNC_Q 1 /* support for handling asyn function calls */
  154. #else
  155. #define OS_SUPPORT_ASYNC_Q 0
  156. #endif /* ifdef CONFIG_SMP */
  157. /*
  158. * System time interface
  159. */
  160. typedef cdf_time_t systime_t;
  161. typedef cdf_time_t systick_t;
  162. static INLINE cdf_time_t os_get_timestamp(void)
  163. {
  164. return cdf_system_ticks(); /* Fix double conversion from jiffies to ms */
  165. }
  166. struct _NIC_DEV;
  167. typedef struct _NIC_DEV *osdev_t;
  168. typedef struct timer_list os_timer_t;
  169. typedef struct _os_mesg_t {
  170. STAILQ_ENTRY(_os_mesg_t) mesg_next;
  171. uint16_t mesg_type;
  172. uint16_t mesg_len;
  173. /* followed by mesg_len bytes */
  174. } os_mesg_t;
  175. typedef void (*os_mesg_handler_t)(void *ctx,
  176. uint16_t mesg_type,
  177. uint16_t mesg_len, void *mesg);
  178. typedef struct {
  179. osdev_t dev_handle;
  180. int32_t num_queued;
  181. int32_t mesg_len;
  182. uint8_t *mesg_queue_buf;
  183. STAILQ_HEAD(, _os_mesg_t) mesg_head; /* queued mesg buffers */
  184. STAILQ_HEAD(, _os_mesg_t) mesg_free_head; /* free mesg buffers */
  185. spinlock_t lock;
  186. spinlock_t ev_handler_lock;
  187. #ifdef USE_SOFTINTR
  188. void *_task;
  189. #else
  190. os_timer_t _timer;
  191. #endif
  192. os_mesg_handler_t handler;
  193. void *ctx;
  194. uint8_t is_synchronous : 1;
  195. } os_mesg_queue_t;
  196. /*
  197. * Definition of OS-dependent device structure.
  198. * It'll be opaque to the actual ATH layer.
  199. */
  200. struct _NIC_DEV {
  201. void *bdev; /* bus device handle */
  202. struct net_device *netdev; /* net device handle (wifi%d) */
  203. cdf_bh_t intr_tq; /* tasklet */
  204. struct net_device_stats devstats; /* net device statisitics */
  205. HAL_BUS_CONTEXT bc;
  206. #ifdef ATH_PERF_PWR_OFFLOAD
  207. struct device *device; /* generic device */
  208. wait_queue_head_t event_queue;
  209. #endif /* PERF_PWR_OFFLOAD */
  210. #if OS_SUPPORT_ASYNC_Q
  211. os_mesg_queue_t async_q; /* mesgq to handle async calls */
  212. #endif
  213. #ifdef ATH_BUS_PM
  214. uint8_t isDeviceAsleep;
  215. #endif /* ATH_BUS_PM */
  216. };
  217. static INLINE unsigned char *os_malloc(osdev_t pNicDev,
  218. unsigned long ulSizeInBytes, int gfp)
  219. {
  220. return cdf_mem_malloc(ulSizeInBytes);
  221. }
  222. #define OS_FREE(_p) cdf_mem_free(_p)
  223. #define OS_DMA_MEM_CONTEXT(context) \
  224. dma_addr_t context;
  225. #define OS_GET_DMA_MEM_CONTEXT(var, field) \
  226. &(var->field)
  227. #define OS_COPY_DMA_MEM_CONTEXT(dst, src) \
  228. *dst = *src
  229. #define OS_ZERO_DMA_MEM_CONTEXT(context) \
  230. *context = 0
  231. /*
  232. * Timer Interfaces. Use these macros to declare timer
  233. * and retrieve timer argument. This is mainly for resolving
  234. * different argument types for timer function in different OS.
  235. */
  236. #define OS_DECLARE_TIMER(_fn) void _fn(void *)
  237. #define os_timer_func(_fn) \
  238. void _fn(void *timer_arg)
  239. #define OS_GET_TIMER_ARG(_arg, _type) \
  240. (_arg) = (_type)(timer_arg)
  241. #define OS_INIT_TIMER(_osdev, _timer, _fn, _ctx, type) \
  242. cdf_softirq_timer_init(_osdev, _timer, _fn, _ctx, type)
  243. #define OS_SET_TIMER(_timer, _ms) cdf_softirq_timer_mod(_timer, _ms)
  244. #define OS_CANCEL_TIMER(_timer) cdf_softirq_timer_cancel(_timer)
  245. #define OS_FREE_TIMER(_timer) cdf_softirq_timer_cancel(_timer)
  246. /*
  247. * These are required for network manager support
  248. */
  249. #ifndef SET_NETDEV_DEV
  250. #define SET_NETDEV_DEV(ndev, pdev)
  251. #endif
  252. #endif /* end of _OSDEP_H */