scheduler_core.h 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  1. /*
  2. * Copyright (c) 2014-2020 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. #if !defined(__SCHEDULER_CORE_H)
  19. #define __SCHEDULER_CORE_H
  20. #include <qdf_threads.h>
  21. #include <qdf_timer.h>
  22. #include <scheduler_api.h>
  23. #include <qdf_list.h>
  24. #ifndef SCHEDULER_CORE_MAX_MESSAGES
  25. #define SCHEDULER_CORE_MAX_MESSAGES 4000
  26. #endif
  27. #ifndef WLAN_SCHED_REDUCTION_LIMIT
  28. #define WLAN_SCHED_REDUCTION_LIMIT 32
  29. #endif
  30. #define SCHEDULER_NUMBER_OF_MSG_QUEUE 6
  31. #define SCHEDULER_WRAPPER_MAX_FAIL_COUNT (SCHEDULER_CORE_MAX_MESSAGES * 3)
  32. #define SCHEDULER_WATCHDOG_TIMEOUT (10 * 1000) /* 10s */
  33. #define sched_fatal(params...) \
  34. QDF_TRACE_FATAL(QDF_MODULE_ID_SCHEDULER, params)
  35. #define sched_err(params...) \
  36. QDF_TRACE_ERROR(QDF_MODULE_ID_SCHEDULER, params)
  37. #define sched_warn(params...) \
  38. QDF_TRACE_WARN(QDF_MODULE_ID_SCHEDULER, params)
  39. #define sched_info(params...) \
  40. QDF_TRACE_INFO(QDF_MODULE_ID_SCHEDULER, params)
  41. #define sched_debug(params...) \
  42. QDF_TRACE_DEBUG(QDF_MODULE_ID_SCHEDULER, params)
  43. #define sched_nofl_fatal(params...) \
  44. QDF_TRACE_FATAL_NO_FL(QDF_MODULE_ID_SCHEDULER, params)
  45. #define sched_nofl_err(params...) \
  46. QDF_TRACE_ERROR_NO_FL(QDF_MODULE_ID_SCHEDULER, params)
  47. #define sched_nofl_warn(params...) \
  48. QDF_TRACE_WARN_NO_FL(QDF_MODULE_ID_SCHEDULER, params)
  49. #define sched_nofl_info(params...) \
  50. QDF_TRACE_INFO_NO_FL(QDF_MODULE_ID_SCHEDULER, params)
  51. #define sched_nofl_debug(params...) \
  52. QDF_TRACE_DEBUG_NO_FL(QDF_MODULE_ID_SCHEDULER, params)
  53. #define sched_enter() sched_debug("Enter")
  54. #define sched_exit() sched_debug("Exit")
  55. /**
  56. * struct scheduler_mq_type - scheduler message queue
  57. * @mq_lock: message queue lock
  58. * @mq_list: message queue list
  59. * @qid: queue id
  60. */
  61. struct scheduler_mq_type {
  62. qdf_spinlock_t mq_lock;
  63. qdf_list_t mq_list;
  64. QDF_MODULE_ID qid;
  65. };
  66. /**
  67. * struct scheduler_mq_ctx - scheduler message queue context
  68. * @sch_msg_q: scheduler message queue
  69. * @scheduler_msg_qid_to_qidx: message qid to qidx mapping
  70. * @scheduler_msg_process_fn: array of message queue handler function pointers
  71. */
  72. struct scheduler_mq_ctx {
  73. struct scheduler_mq_type sch_msg_q[SCHEDULER_NUMBER_OF_MSG_QUEUE];
  74. uint8_t scheduler_msg_qid_to_qidx[QDF_MODULE_ID_MAX];
  75. QDF_STATUS (*scheduler_msg_process_fn[SCHEDULER_NUMBER_OF_MSG_QUEUE])
  76. (struct scheduler_msg *msg);
  77. };
  78. /**
  79. * struct scheduler_ctx - scheduler context
  80. * @queue_ctx: message queue context
  81. * @sch_start_event: scheduler thread start wait event
  82. * @sch_thread: scheduler thread
  83. * @sch_shutdown: scheduler thread shutdown wait event
  84. * @sch_wait_queue: scheduler wait queue
  85. * @sch_event_flag: scheduler events flag
  86. * @resume_sch_event: scheduler resume wait event
  87. * @sch_thread_lock: scheduler thread lock
  88. * @sch_last_qidx: scheduler last qidx allocation
  89. * @watchdog_msg_type: 'type' of the current msg being processed
  90. * @hdd_callback: os if suspend callback
  91. * @legacy_wma_handler: legacy wma message handler
  92. * @legacy_sys_handler: legacy sys message handler
  93. * @timeout: timeout value for scheduler watchdog timer
  94. * @watchdog_timer: timer for triggering a scheduler watchdog bite
  95. * @watchdog_callback: the callback of the current msg being processed
  96. */
  97. struct scheduler_ctx {
  98. struct scheduler_mq_ctx queue_ctx;
  99. qdf_event_t sch_start_event;
  100. qdf_thread_t *sch_thread;
  101. qdf_event_t sch_shutdown;
  102. qdf_wait_queue_head_t sch_wait_queue;
  103. unsigned long sch_event_flag;
  104. qdf_event_t resume_sch_event;
  105. qdf_spinlock_t sch_thread_lock;
  106. uint8_t sch_last_qidx;
  107. uint16_t watchdog_msg_type;
  108. hdd_suspend_callback hdd_callback;
  109. scheduler_msg_process_fn_t legacy_wma_handler;
  110. scheduler_msg_process_fn_t legacy_sys_handler;
  111. uint32_t timeout;
  112. qdf_timer_t watchdog_timer;
  113. void *watchdog_callback;
  114. };
  115. /**
  116. * scheduler_core_msg_dup() duplicate the given scheduler message
  117. * @msg: the message to duplicated
  118. *
  119. * Note: Duplicated messages must be freed using scheduler_core_msg_free().
  120. *
  121. * Return: pointer to the duplicated message
  122. */
  123. struct scheduler_msg *scheduler_core_msg_dup(struct scheduler_msg *msg);
  124. /**
  125. * scheduler_core_msg_free() - free the given scheduler message
  126. * @msg: the duplicated message to free
  127. *
  128. * Return: None
  129. */
  130. void scheduler_core_msg_free(struct scheduler_msg *msg);
  131. /**
  132. * scheduler_get_context() - to get scheduler context
  133. *
  134. * This routine is used retrieve scheduler context
  135. *
  136. * Return: Pointer to scheduler context
  137. */
  138. struct scheduler_ctx *scheduler_get_context(void);
  139. /**
  140. * scheduler_thread() - spawned thread will execute this routine
  141. * @arg: pointer to scheduler context
  142. *
  143. * Newly created thread will use this routine to perform its duty
  144. *
  145. * Return: none
  146. */
  147. int scheduler_thread(void *arg);
  148. /**
  149. * scheduler_create_ctx() - to create scheduler context
  150. *
  151. * This routine is used to create scheduler context
  152. *
  153. * Return: QDF_STATUS based on success or failure
  154. */
  155. QDF_STATUS scheduler_create_ctx(void);
  156. /**
  157. * scheduler_destroy_ctx() - to destroy scheduler context
  158. *
  159. * This routine is used to destroy scheduler context
  160. *
  161. * Return: QDF_STATUS based on success or failure
  162. */
  163. QDF_STATUS scheduler_destroy_ctx(void);
  164. /**
  165. * scheduler_mq_put() - put message in the back of queue
  166. * @msg_q: Pointer to the message queue
  167. * @msg: the message to enqueue
  168. *
  169. * This function is used to put message in back of provided message
  170. * queue
  171. *
  172. * Return: none
  173. */
  174. void scheduler_mq_put(struct scheduler_mq_type *msg_q,
  175. struct scheduler_msg *msg);
  176. /**
  177. * scheduler_mq_put_front() - put message in the front of queue
  178. * @msg_q: Pointer to the message queue
  179. * @msg: the message to enqueue
  180. *
  181. * This function is used to put message in front of provided message
  182. * queue
  183. *
  184. * Return: none
  185. */
  186. void scheduler_mq_put_front(struct scheduler_mq_type *msg_q,
  187. struct scheduler_msg *msg);
  188. /**
  189. * scheduler_mq_get() - to get message from message queue
  190. * @msg_q: Pointer to the message queue
  191. *
  192. * This function is used to get message from given message queue
  193. *
  194. * Return: none
  195. */
  196. struct scheduler_msg *scheduler_mq_get(struct scheduler_mq_type *msg_q);
  197. /**
  198. * scheduler_queues_init() - to initialize all the modules' queues
  199. * @sched_ctx: pointer to scheduler context
  200. *
  201. * This function is used to initialize the queues for all the modules
  202. *
  203. * Return: QDF_STATUS based on success of failure
  204. */
  205. QDF_STATUS scheduler_queues_init(struct scheduler_ctx *sched_ctx);
  206. /**
  207. * scheduler_queues_deinit() - to de-initialize all the modules' queues
  208. * @sched_ctx: pointer to scheduler context
  209. *
  210. * This function is used to de-initialize the queues for all the modules
  211. *
  212. * Return: QDF_STATUS based on success of failure
  213. */
  214. QDF_STATUS scheduler_queues_deinit(struct scheduler_ctx *gp_sch_ctx);
  215. /**
  216. * scheduler_queues_flush() - flush all of the scheduler queues
  217. * @sch_ctx: pointer to scheduler context
  218. *
  219. * This routine is used to clean the module's queues
  220. *
  221. * Return: none
  222. */
  223. void scheduler_queues_flush(struct scheduler_ctx *sched_ctx);
  224. #endif