qdf_defer.h 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308
  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_defer.h
  28. * This file abstracts deferred execution API's.
  29. */
  30. #ifndef __QDF_DEFER_H
  31. #define __QDF_DEFER_H
  32. #include <qdf_types.h>
  33. #include <i_qdf_defer.h>
  34. /**
  35. * TODO This implements work queues (worker threads, kernel threads etc.).
  36. * Note that there is no cancel on a scheduled work. You cannot free a work
  37. * item if its queued. You cannot know if a work item is queued or not unless
  38. * its running, hence you know its not queued.
  39. *
  40. * so if, say, a module is asked to unload itself, how exactly will it make
  41. * sure that the work's not queued, for OS'es that dont provide such a
  42. * mechanism??
  43. */
  44. /*
  45. * Representation of a work queue.
  46. */
  47. typedef __qdf_work_t qdf_work_t;
  48. typedef __qdf_delayed_work_t qdf_delayed_work_t;
  49. typedef __qdf_workqueue_t qdf_workqueue_t;
  50. /*
  51. * Representation of a bottom half.
  52. */
  53. typedef __qdf_bh_t qdf_bh_t;
  54. /**
  55. * qdf_create_bh - creates the bottom half deferred handler
  56. * @hdl: os handle
  57. * @bh: pointer to bottom
  58. * @func: deferred function to run at bottom half interrupt context.
  59. * @arg: argument for the deferred function
  60. * Return: none
  61. */
  62. static inline void qdf_create_bh(qdf_handle_t hdl, qdf_bh_t *bh,
  63. qdf_defer_fn_t func, void *arg)
  64. {
  65. __qdf_init_bh(hdl, bh, func, arg);
  66. }
  67. /**
  68. * qdf_sched - schedule a bottom half (DPC)
  69. * @hdl: OS handle
  70. * @bh: pointer to bottom
  71. * Return: none
  72. */
  73. static inline void qdf_sched_bh(qdf_handle_t hdl, qdf_bh_t *bh)
  74. {
  75. __qdf_sched_bh(hdl, bh);
  76. }
  77. /**
  78. * qdf_destroy_bh - destroy the bh (synchronous)
  79. * @hdl: OS handle
  80. * @bh: pointer to bottom
  81. * Return: none
  82. */
  83. static inline void qdf_destroy_bh(qdf_handle_t hdl, qdf_bh_t *bh)
  84. {
  85. __qdf_disable_bh(hdl, bh);
  86. }
  87. /*********************Non-Interrupt Context deferred Execution***************/
  88. /**
  89. * qdf_create_work - create a work/task queue, This runs in non-interrupt
  90. * context, so can be preempted by H/W & S/W intr
  91. * @hdl: OS handle
  92. * @work: pointer to work
  93. * @func: deferred function to run at bottom half non-interrupt context.
  94. * @arg: argument for the deferred function
  95. * Return: none
  96. */
  97. static inline void qdf_create_work(qdf_handle_t hdl, qdf_work_t *work,
  98. qdf_defer_fn_t func, void *arg)
  99. {
  100. __qdf_init_work(hdl, work, func, arg);
  101. }
  102. /**
  103. * qdf_create_delayed_work - create a delayed work/task, This runs in
  104. * non-interrupt context, so can be preempted by H/W & S/W intr
  105. * @hdl: OS handle
  106. * @work: pointer to work
  107. * @func: deferred function to run at bottom half non-interrupt context.
  108. * @arg: argument for the deferred function
  109. * Return: none
  110. */
  111. static inline void qdf_create_delayed_work(qdf_handle_t hdl,
  112. qdf_delayed_work_t *work,
  113. qdf_defer_fn_t func, void *arg)
  114. {
  115. __qdf_init_delayed_work(hdl, work, func, arg);
  116. }
  117. /**
  118. * qdf_create_workqueue - create a workqueue, This runs in non-interrupt
  119. * context, so can be preempted by H/W & S/W intr
  120. * @name: string
  121. * Return: pointer of type qdf_workqueue_t
  122. */
  123. static inline qdf_workqueue_t *qdf_create_workqueue(char *name)
  124. {
  125. return __qdf_create_workqueue(name);
  126. }
  127. /**
  128. * qdf_queue_work - Queue the work/task
  129. * @hdl: OS handle
  130. * @wqueue: pointer to workqueue
  131. * @work: pointer to work
  132. * Return: none
  133. */
  134. static inline void
  135. qdf_queue_work(qdf_handle_t hdl, qdf_workqueue_t *wqueue, qdf_work_t *work)
  136. {
  137. return __qdf_queue_work(hdl, wqueue, work);
  138. }
  139. /**
  140. * qdf_queue_delayed_work - Queue the delayed work/task
  141. * @hdl: OS handle
  142. * @wqueue: pointer to workqueue
  143. * @work: pointer to work
  144. * @delay: delay interval
  145. * Return: none
  146. */
  147. static inline void qdf_queue_delayed_work(qdf_handle_t hdl,
  148. qdf_workqueue_t *wqueue,
  149. qdf_delayed_work_t *work,
  150. uint32_t delay)
  151. {
  152. return __qdf_queue_delayed_work(hdl, wqueue, work, delay);
  153. }
  154. /**
  155. * qdf_flush_workqueue - flush the workqueue
  156. * @hdl: OS handle
  157. * @wqueue: pointer to workqueue
  158. * Return: none
  159. */
  160. static inline void qdf_flush_workqueue(qdf_handle_t hdl,
  161. qdf_workqueue_t *wqueue)
  162. {
  163. return __qdf_flush_workqueue(hdl, wqueue);
  164. }
  165. /**
  166. * qdf_destroy_workqueue - Destroy the workqueue
  167. * @hdl: OS handle
  168. * @wqueue: pointer to workqueue
  169. * Return: none
  170. */
  171. static inline void qdf_destroy_workqueue(qdf_handle_t hdl,
  172. qdf_workqueue_t *wqueue)
  173. {
  174. return __qdf_destroy_workqueue(hdl, wqueue);
  175. }
  176. /**
  177. * qdf_sched_work - Schedule a deferred task on non-interrupt context
  178. * @hdl: OS handle
  179. * @work: pointer to work
  180. * Retrun: none
  181. */
  182. static inline void qdf_sched_work(qdf_handle_t hdl, qdf_work_t *work)
  183. {
  184. __qdf_sched_work(hdl, work);
  185. }
  186. /**
  187. * qdf_sched_delayed_work() - Schedule a delayed task
  188. * @hdl: OS handle
  189. * @work: pointer to delayed work
  190. * @delay: delay interval
  191. * Return: none
  192. */
  193. static inline void qdf_sched_delayed_work(qdf_handle_t hdl,
  194. qdf_delayed_work_t *work,
  195. uint32_t delay)
  196. {
  197. __qdf_sched_delayed_work(hdl, work, delay);
  198. }
  199. /**
  200. * qdf_cancel_work() - Cancel a work
  201. * @hdl: OS handle
  202. * @work: pointer to work
  203. *
  204. * Cancel work and wait for its execution to finish.
  205. * This function can be used even if the work re-queues
  206. * itself or migrates to another workqueue. On return
  207. * from this function, work is guaranteed to be not
  208. * pending or executing on any CPU. The caller must
  209. * ensure that the workqueue on which work was last
  210. * queued can't be destroyed before this function returns.
  211. *
  212. * Return: true if work was pending, false otherwise
  213. */
  214. static inline bool qdf_cancel_work(qdf_handle_t hdl,
  215. qdf_work_t *work)
  216. {
  217. return __qdf_cancel_work(hdl, work);
  218. }
  219. /**
  220. * qdf_cancel_delayed_work() - Cancel a delayed work
  221. * @hdl: OS handle
  222. * @work: pointer to delayed work
  223. *
  224. * This is qdf_cancel_work for delayed works.
  225. *
  226. * Return: true if work was pending, false otherwise
  227. */
  228. static inline bool qdf_cancel_delayed_work(qdf_handle_t hdl,
  229. qdf_delayed_work_t *work)
  230. {
  231. return __qdf_cancel_delayed_work(hdl, work);
  232. }
  233. /**
  234. * qdf_flush_work - Flush a deferred task on non-interrupt context
  235. * @hdl: OS handle
  236. * @work: pointer to work
  237. *
  238. * Wait until work has finished execution. work is guaranteed to be
  239. * idle on return if it hasn't been requeued since flush started.
  240. *
  241. * Return: none
  242. */
  243. static inline void qdf_flush_work(qdf_handle_t hdl, qdf_work_t *work)
  244. {
  245. __qdf_flush_work(hdl, work);
  246. }
  247. /**
  248. * qdf_flush_delayed_work() - Flush a delayed work
  249. * @hdl: OS handle
  250. * @work: pointer to delayed work
  251. *
  252. * This is qdf_flush_work for delayed works.
  253. *
  254. * Return: none
  255. */
  256. static inline void qdf_flush_delayed_work(qdf_handle_t hdl,
  257. qdf_delayed_work_t *work)
  258. {
  259. __qdf_flush_delayed_work(hdl, work);
  260. }
  261. /**
  262. * qdf_disable_work - disable the deferred task (synchronous)
  263. * @hdl: OS handle
  264. * @work: pointer to work
  265. * Return: unsigned int
  266. */
  267. static inline uint32_t qdf_disable_work(qdf_handle_t hdl, qdf_work_t *work)
  268. {
  269. return __qdf_disable_work(hdl, work);
  270. }
  271. /**
  272. * qdf_destroy_work - destroy the deferred task (synchronous)
  273. * @hdl: OS handle
  274. * @work: pointer to work
  275. * Return: none
  276. */
  277. static inline void qdf_destroy_work(qdf_handle_t hdl, qdf_work_t *work)
  278. {
  279. __qdf_disable_work(hdl, work);
  280. }
  281. #endif /*_QDF_DEFER_H*/