qdf_defer.h 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  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_flush_work - Flush a deferred task on non-interrupt context
  188. * @hdl: OS handle
  189. * @work: pointer to work
  190. * Return: none
  191. */
  192. static inline void qdf_flush_work(qdf_handle_t hdl, qdf_work_t *work)
  193. {
  194. __qdf_flush_work(hdl, work);
  195. }
  196. /**
  197. * qdf_disable_work - disable the deferred task (synchronous)
  198. * @hdl: OS handle
  199. * @work: pointer to work
  200. * Return: unsigned int
  201. */
  202. static inline uint32_t qdf_disable_work(qdf_handle_t hdl, qdf_work_t *work)
  203. {
  204. return __qdf_disable_work(hdl, work);
  205. }
  206. /**
  207. * qdf_destroy_work - destroy the deferred task (synchronous)
  208. * @hdl: OS handle
  209. * @work: pointer to work
  210. * Return: none
  211. */
  212. static inline void qdf_destroy_work(qdf_handle_t hdl, qdf_work_t *work)
  213. {
  214. __qdf_disable_work(hdl, work);
  215. }
  216. #endif /*_QDF_DEFER_H*/