scheduler_core.h 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  1. /*
  2. * Copyright (c) 2014-2019 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. #ifdef CONFIG_MCL
  25. #define SCHEDULER_CORE_MAX_MESSAGES 1000
  26. #else
  27. #define SCHEDULER_CORE_MAX_MESSAGES 4000
  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. * @hdd_callback: os if suspend callback
  90. * @legacy_wma_handler: legacy wma message handler
  91. * @legacy_sys_handler: legacy sys message handler
  92. * @watchdog_timer: timer for triggering a scheduler watchdog bite
  93. * @watchdog_msg_type: 'type' of the current msg being processed
  94. * @watchdog_callback: the callback of the current msg being processed
  95. */
  96. struct scheduler_ctx {
  97. struct scheduler_mq_ctx queue_ctx;
  98. qdf_event_t sch_start_event;
  99. qdf_thread_t *sch_thread;
  100. qdf_event_t sch_shutdown;
  101. qdf_wait_queue_head_t sch_wait_queue;
  102. unsigned long sch_event_flag;
  103. qdf_event_t resume_sch_event;
  104. qdf_spinlock_t sch_thread_lock;
  105. uint8_t sch_last_qidx;
  106. hdd_suspend_callback hdd_callback;
  107. scheduler_msg_process_fn_t legacy_wma_handler;
  108. scheduler_msg_process_fn_t legacy_sys_handler;
  109. qdf_timer_t watchdog_timer;
  110. uint16_t watchdog_msg_type;
  111. void *watchdog_callback;
  112. };
  113. /**
  114. * scheduler_core_msg_dup() duplicate the given scheduler message
  115. * @msg: the message to duplicated
  116. *
  117. * Note: Duplicated messages must be freed using scheduler_core_msg_free().
  118. *
  119. * Return: pointer to the duplicated message
  120. */
  121. struct scheduler_msg *scheduler_core_msg_dup(struct scheduler_msg *msg);
  122. /**
  123. * scheduler_core_msg_free() - free the given scheduler message
  124. * @msg: the duplicated message to free
  125. *
  126. * Return: None
  127. */
  128. void scheduler_core_msg_free(struct scheduler_msg *msg);
  129. /**
  130. * scheduler_get_context() - to get scheduler context
  131. *
  132. * This routine is used retrieve scheduler context
  133. *
  134. * Return: Pointer to scheduler context
  135. */
  136. struct scheduler_ctx *scheduler_get_context(void);
  137. /**
  138. * scheduler_thread() - spawned thread will execute this routine
  139. * @arg: pointer to scheduler context
  140. *
  141. * Newly created thread will use this routine to perform its duty
  142. *
  143. * Return: none
  144. */
  145. int scheduler_thread(void *arg);
  146. /**
  147. * scheduler_create_ctx() - to create scheduler context
  148. *
  149. * This routine is used to create scheduler context
  150. *
  151. * Return: QDF_STATUS based on success or failure
  152. */
  153. QDF_STATUS scheduler_create_ctx(void);
  154. /**
  155. * scheduler_destroy_ctx() - to destroy scheduler context
  156. *
  157. * This routine is used to destroy scheduler context
  158. *
  159. * Return: QDF_STATUS based on success or failure
  160. */
  161. QDF_STATUS scheduler_destroy_ctx(void);
  162. /**
  163. * scheduler_mq_put() - put message in the back of queue
  164. * @msg_q: Pointer to the message queue
  165. * @msg: the message to enqueue
  166. *
  167. * This function is used to put message in back of provided message
  168. * queue
  169. *
  170. * Return: none
  171. */
  172. void scheduler_mq_put(struct scheduler_mq_type *msg_q,
  173. struct scheduler_msg *msg);
  174. /**
  175. * scheduler_mq_put_front() - put message in the front of queue
  176. * @msg_q: Pointer to the message queue
  177. * @msg: the message to enqueue
  178. *
  179. * This function is used to put message in front of provided message
  180. * queue
  181. *
  182. * Return: none
  183. */
  184. void scheduler_mq_put_front(struct scheduler_mq_type *msg_q,
  185. struct scheduler_msg *msg);
  186. /**
  187. * scheduler_mq_get() - to get message from message queue
  188. * @msg_q: Pointer to the message queue
  189. *
  190. * This function is used to get message from given message queue
  191. *
  192. * Return: none
  193. */
  194. struct scheduler_msg *scheduler_mq_get(struct scheduler_mq_type *msg_q);
  195. /**
  196. * scheduler_queues_init() - to initialize all the modules' queues
  197. * @sched_ctx: pointer to scheduler context
  198. *
  199. * This function is used to initialize the queues for all the modules
  200. *
  201. * Return: QDF_STATUS based on success of failure
  202. */
  203. QDF_STATUS scheduler_queues_init(struct scheduler_ctx *sched_ctx);
  204. /**
  205. * scheduler_queues_deinit() - to de-initialize all the modules' queues
  206. * @sched_ctx: pointer to scheduler context
  207. *
  208. * This function is used to de-initialize the queues for all the modules
  209. *
  210. * Return: QDF_STATUS based on success of failure
  211. */
  212. QDF_STATUS scheduler_queues_deinit(struct scheduler_ctx *gp_sch_ctx);
  213. /**
  214. * scheduler_queues_flush() - flush all of the scheduler queues
  215. * @sch_ctx: pointer to scheduler context
  216. *
  217. * This routine is used to clean the module's queues
  218. *
  219. * Return: none
  220. */
  221. void scheduler_queues_flush(struct scheduler_ctx *sched_ctx);
  222. #endif