qdf_timer.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  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_timer
  28. * This file abstracts OS timers running in soft IRQ context.
  29. */
  30. #ifndef _QDF_TIMER_H
  31. #define _QDF_TIMER_H
  32. #include <qdf_types.h>
  33. #include <i_qdf_timer.h>
  34. /* Platform timer object */
  35. typedef __qdf_timer_t qdf_timer_t;
  36. /**
  37. * qdf_timer_init() - initialize a timer
  38. * @hdl: OS handle
  39. * @timer: Timer object pointer
  40. * @func: Timer function
  41. * @arg: Arguement of timer function
  42. * @type: deferrable or non deferrable timer type
  43. *
  44. * Timer type QDF_TIMER_TYPE_SW means its a deferrable sw timer which will
  45. * not cause CPU wake upon expiry
  46. * Timer type QDF_TIMER_TYPE_WAKE_APPS means its a non-deferrable timer which
  47. * will cause CPU wake up on expiry
  48. *
  49. * Return: none
  50. */
  51. static inline void qdf_timer_init(qdf_handle_t hdl, qdf_timer_t *timer,
  52. qdf_timer_func_t func, void *arg,
  53. QDF_TIMER_TYPE type)
  54. {
  55. __qdf_timer_init(hdl, timer, func, arg, type);
  56. }
  57. /**
  58. * qdf_timer_start() - start a one-shot timer
  59. * @timer: Timer object pointer
  60. * @msec: Expiration period in milliseconds
  61. *
  62. * Return: none
  63. */
  64. static inline void
  65. qdf_timer_start(qdf_timer_t *timer, int msec)
  66. {
  67. __qdf_timer_start(timer, msec);
  68. }
  69. /**
  70. * qdf_timer_mod() - modify existing timer to new timeout value
  71. * @timer: Timer object pointer
  72. * @msec: Expiration period in milliseconds
  73. *
  74. * Return: none
  75. */
  76. static inline void qdf_timer_mod(qdf_timer_t *timer, int msec)
  77. {
  78. __qdf_timer_mod(timer, msec);
  79. }
  80. /**
  81. * qdf_timer_stop() - cancel qdf timer
  82. * @timer: Timer object pointer
  83. *
  84. * return: bool TRUE Timer was cancelled and deactived
  85. * FALSE Timer was cancelled but already got fired.
  86. *
  87. * The function will return after any running timer completes.
  88. */
  89. static inline bool qdf_timer_stop(qdf_timer_t *timer)
  90. {
  91. return __qdf_timer_stop(timer);
  92. }
  93. /**
  94. * qdf_timer_sync_cancel - Cancel a timer synchronously
  95. * The function will return after any running timer completes.
  96. * @timer: timer object pointer
  97. *
  98. * return: bool TRUE timer was cancelled and deactived
  99. * FALSE timer was not cancelled
  100. */
  101. static inline bool qdf_timer_sync_cancel(qdf_timer_t *timer)
  102. {
  103. return __qdf_timer_sync_cancel(timer);
  104. }
  105. /**
  106. * qdf_timer_free() - free qdf timer
  107. * @timer: Timer object pointer
  108. *
  109. * The function will return after any running timer completes.
  110. * Return: none
  111. */
  112. static inline void qdf_timer_free(qdf_timer_t *timer)
  113. {
  114. __qdf_timer_free(timer);
  115. }
  116. #endif /* _QDF_TIMER_H */