qdf_mc_timer.h 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330
  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. /**
  19. * DOC: qdf_mc_timer
  20. * QCA driver framework timer APIs serialized to MC thread
  21. */
  22. #if !defined(__QDF_MC_TIMER_H)
  23. #define __QDF_MC_TIMER_H
  24. /* Include Files */
  25. #include <qdf_types.h>
  26. #include <qdf_status.h>
  27. #include <qdf_lock.h>
  28. #include <i_qdf_mc_timer.h>
  29. #ifdef TIMER_MANAGER
  30. #include <qdf_list.h>
  31. #endif
  32. /* Preprocessor definitions and constants */
  33. #define QDF_TIMER_STATE_COOKIE (0x12)
  34. #define QDF_MC_TIMER_TO_MS_UNIT (1000)
  35. #define QDF_MC_TIMER_TO_SEC_UNIT (1000000)
  36. /* Type declarations */
  37. /* qdf Timer callback function prototype (well, actually a prototype for
  38. * a pointer to this callback function)
  39. */
  40. typedef void (*qdf_mc_timer_callback_t)(void *user_data);
  41. typedef enum {
  42. QDF_TIMER_STATE_UNUSED = QDF_TIMER_STATE_COOKIE,
  43. QDF_TIMER_STATE_STOPPED,
  44. QDF_TIMER_STATE_STARTING,
  45. QDF_TIMER_STATE_RUNNING,
  46. } QDF_TIMER_STATE;
  47. #ifdef TIMER_MANAGER
  48. struct qdf_mc_timer_s;
  49. typedef struct qdf_mc_timer_node_s {
  50. qdf_list_node_t node;
  51. char *file_name;
  52. uint32_t line_num;
  53. struct qdf_mc_timer_s *qdf_timer;
  54. } qdf_mc_timer_node_t;
  55. #endif
  56. typedef struct qdf_mc_timer_s {
  57. #ifdef TIMER_MANAGER
  58. qdf_mc_timer_node_t *timer_node;
  59. #endif
  60. qdf_mc_timer_platform_t platform_info;
  61. qdf_mc_timer_callback_t callback;
  62. void *user_data;
  63. qdf_mutex_t lock;
  64. QDF_TIMER_TYPE type;
  65. QDF_TIMER_STATE state;
  66. } qdf_mc_timer_t;
  67. void qdf_try_allowing_sleep(QDF_TIMER_TYPE type);
  68. /* Function declarations and documenation */
  69. #ifdef TIMER_MANAGER
  70. void qdf_mc_timer_manager_init(void);
  71. void qdf_mc_timer_manager_exit(void);
  72. void qdf_mc_timer_check_for_leaks(void);
  73. #else
  74. /**
  75. * qdf_mc_timer_manager_init() - initialize QDF debug timer manager
  76. * This API initializes QDF timer debug functionality.
  77. *
  78. * Return: none
  79. */
  80. static inline void qdf_mc_timer_manager_init(void)
  81. {
  82. }
  83. /**
  84. * qdf_mc_timer_manager_exit() - exit QDF timer debug functionality
  85. * This API exists QDF timer debug functionality
  86. *
  87. * Return: none
  88. */
  89. static inline void qdf_mc_timer_manager_exit(void)
  90. {
  91. }
  92. /**
  93. * qdf_mc_timer_check_for_leaks() - Assert there are no active mc timers
  94. *
  95. * If there are active timers, this API prints them and panics.
  96. *
  97. * Return: None
  98. */
  99. static inline void qdf_mc_timer_check_for_leaks(void) { }
  100. #endif
  101. /**
  102. * qdf_mc_timer_get_current_state() - get the current state of the timer
  103. * @timer: Pointer to timer object
  104. *
  105. * Return:
  106. * QDF_TIMER_STATE - qdf timer state
  107. */
  108. QDF_TIMER_STATE qdf_mc_timer_get_current_state(qdf_mc_timer_t *timer);
  109. /**
  110. * qdf_mc_timer_init() - initialize a QDF timer
  111. * @timer: Pointer to timer object
  112. * @timer_type: Type of timer
  113. * @callback: Callback to be called after timer expiry
  114. * @ser_data: User data which will be passed to callback function
  115. *
  116. * This API initializes a QDF Timer object.
  117. *
  118. * qdf_mc_timer_init() initializes a QDF Timer object. A timer must be
  119. * initialized by calling qdf_mc_timer_initialize() before it may be used in
  120. * any other timer functions.
  121. *
  122. * Attempting to initialize timer that is already initialized results in
  123. * a failure. A destroyed timer object can be re-initialized with a call to
  124. * qdf_mc_timer_init(). The results of otherwise referencing the object
  125. * after it has been destroyed are undefined.
  126. *
  127. * Calls to QDF timer functions to manipulate the timer such
  128. * as qdf_mc_timer_set() will fail if the timer is not initialized or has
  129. * been destroyed. Therefore, don't use the timer after it has been
  130. * destroyed until it has been re-initialized.
  131. *
  132. * All callback will be executed within the CDS main thread unless it is
  133. * initialized from the Tx thread flow, in which case it will be executed
  134. * within the tx thread flow.
  135. *
  136. * Return:
  137. * QDF_STATUS_SUCCESS - Timer is initialized successfully
  138. * QDF failure status - Timer initialization failed
  139. */
  140. #ifdef TIMER_MANAGER
  141. #define qdf_mc_timer_init(timer, timer_type, callback, userdata) \
  142. qdf_mc_timer_init_debug(timer, timer_type, callback, userdata, \
  143. __FILE__, __LINE__)
  144. QDF_STATUS qdf_mc_timer_init_debug(qdf_mc_timer_t *timer,
  145. QDF_TIMER_TYPE timer_type,
  146. qdf_mc_timer_callback_t callback,
  147. void *user_data, char *file_name,
  148. uint32_t line_num);
  149. #else
  150. QDF_STATUS qdf_mc_timer_init(qdf_mc_timer_t *timer, QDF_TIMER_TYPE timer_type,
  151. qdf_mc_timer_callback_t callback,
  152. void *user_data);
  153. #endif
  154. /**
  155. * qdf_mc_timer_destroy() - destroy QDF timer
  156. * @timer: Pointer to timer object
  157. *
  158. * qdf_mc_timer_destroy() function shall destroy the timer object.
  159. * After a successful return from \a qdf_mc_timer_destroy() the timer
  160. * object becomes, in effect, uninitialized.
  161. *
  162. * A destroyed timer object can be re-initialized by calling
  163. * qdf_mc_timer_init(). The results of otherwise referencing the object
  164. * after it has been destroyed are undefined.
  165. *
  166. * Calls to QDF timer functions to manipulate the timer, such
  167. * as qdf_mc_timer_set() will fail if the lock is destroyed. Therefore,
  168. * don't use the timer after it has been destroyed until it has
  169. * been re-initialized.
  170. *
  171. * Return:
  172. * QDF_STATUS_SUCCESS - Timer is initialized successfully
  173. * QDF failure status - Timer initialization failed
  174. */
  175. QDF_STATUS qdf_mc_timer_destroy(qdf_mc_timer_t *timer);
  176. /**
  177. * qdf_mc_timer_start() - start a QDF Timer object
  178. * @timer: Pointer to timer object
  179. * @expiration_time: Time to expire
  180. *
  181. * qdf_mc_timer_start() function starts a timer to expire after the
  182. * specified interval, thus running the timer callback function when
  183. * the interval expires.
  184. *
  185. * A timer only runs once (a one-shot timer). To re-start the
  186. * timer, qdf_mc_timer_start() has to be called after the timer runs
  187. * or has been cancelled.
  188. *
  189. * Return:
  190. * QDF_STATUS_SUCCESS - Timer is initialized successfully
  191. * QDF failure status - Timer initialization failed
  192. */
  193. QDF_STATUS qdf_mc_timer_start(qdf_mc_timer_t *timer, uint32_t expiration_time);
  194. /**
  195. * qdf_mc_timer_stop() - stop a QDF Timer
  196. * @timer: Pointer to timer object
  197. * qdf_mc_timer_stop() function stops a timer that has been started but
  198. * has not expired, essentially cancelling the 'start' request.
  199. *
  200. * After a timer is stopped, it goes back to the state it was in after it
  201. * was created and can be started again via a call to qdf_mc_timer_start().
  202. *
  203. * Return:
  204. * QDF_STATUS_SUCCESS - Timer is initialized successfully
  205. * QDF failure status - Timer initialization failed
  206. */
  207. QDF_STATUS qdf_mc_timer_stop(qdf_mc_timer_t *timer);
  208. /**
  209. * qdf_mc_timer_stop_sync() - stop a QDF Timer
  210. * @timer: Pointer to timer object
  211. * qdf_mc_timer_stop_sync() function stops a timer synchronously
  212. * that has been started but has not expired, essentially
  213. * cancelling the 'start' request.
  214. *
  215. * After a timer is stopped, it goes back to the state it was in after it
  216. * was created and can be started again via a call to qdf_mc_timer_start().
  217. *
  218. * Return:
  219. * QDF_STATUS_SUCCESS - Timer is initialized successfully
  220. * QDF failure status - Timer initialization failed
  221. */
  222. QDF_STATUS qdf_mc_timer_stop_sync(qdf_mc_timer_t *timer);
  223. /**
  224. * qdf_mc_timer_get_system_ticks() - get the system time in 10ms ticks
  225. *
  226. * qdf_mc_timer_get_system_ticks() function returns the current number
  227. * of timer ticks in 10msec intervals. This function is suitable timestamping
  228. * and calculating time intervals by calculating the difference between two
  229. * timestamps.
  230. *
  231. * Return:
  232. * The current system tick count (in 10msec intervals). This
  233. * function cannot fail.
  234. */
  235. unsigned long qdf_mc_timer_get_system_ticks(void);
  236. /**
  237. * qdf_mc_timer_get_system_time() - Get the system time in milliseconds
  238. *
  239. * qdf_mc_timer_get_system_time() function returns the number of milliseconds
  240. * that have elapsed since the system was started
  241. *
  242. * Return:
  243. * The current system time in milliseconds
  244. */
  245. unsigned long qdf_mc_timer_get_system_time(void);
  246. /**
  247. * qdf_get_monotonic_boottime_ns() - Get kernel boottime in ns
  248. *
  249. * Return: kernel boottime in nano sec (includes time spent in suspend)
  250. */
  251. s64 qdf_get_monotonic_boottime_ns(void);
  252. /**
  253. * qdf_timer_module_init() - initializes a QDF timer module.
  254. *
  255. * This API initializes the QDF timer module. This needs to be called
  256. * exactly once prior to using any QDF timers.
  257. *
  258. * Return: none
  259. */
  260. void qdf_timer_module_init(void);
  261. /**
  262. * qdf_get_time_of_the_day_ms() - get time of the day in millisec
  263. *
  264. * Return: time of the day in ms
  265. */
  266. qdf_time_t qdf_get_time_of_the_day_ms(void);
  267. /**
  268. * qdf_timer_module_deinit() - Deinitializes a QDF timer module.
  269. *
  270. * This API deinitializes the QDF timer module.
  271. * Return: none
  272. */
  273. void qdf_timer_module_deinit(void);
  274. /**
  275. * qdf_get_time_of_the_day_in_hr_min_sec_usec() - Get system time
  276. * @tbuf: Pointer to time stamp buffer
  277. * @len: Time buffer size
  278. *
  279. * This function updates the 'tbuf' with system time in hr:min:sec:msec format
  280. *
  281. * Return: None
  282. */
  283. void qdf_get_time_of_the_day_in_hr_min_sec_usec(char *tbuf, int len);
  284. void qdf_register_mc_timer_callback(void (*callback) (qdf_mc_timer_t *data));
  285. /**
  286. * qdf_timer_set_multiplier() - set the global QDF timer scalar value
  287. * @multiplier: the scalar value to apply
  288. *
  289. * Return: None
  290. */
  291. void qdf_timer_set_multiplier(uint32_t multiplier);
  292. /**
  293. * qdf_timer_get_multiplier() - get the global QDF timer scalar value
  294. *
  295. * Return: the global QDF timer scalar value
  296. */
  297. uint32_t qdf_timer_get_multiplier(void);
  298. #endif /* __QDF_MC_TIMER_H */