i_qdf_timer.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  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: i_qdf_timer
  28. * This file provides OS dependent timer API's.
  29. */
  30. #ifndef _I_QDF_TIMER_H
  31. #define _I_QDF_TIMER_H
  32. #include <linux/version.h>
  33. #include <linux/delay.h>
  34. #include <linux/timer.h>
  35. #include <linux/jiffies.h>
  36. #include <qdf_types.h>
  37. /* timer data type */
  38. typedef struct timer_list __qdf_timer_t;
  39. typedef void (*qdf_dummy_timer_func_t)(unsigned long arg);
  40. /**
  41. * __qdf_timer_init() - initialize a softirq timer
  42. * @hdl: OS handle
  43. * @timer: Pointer to timer object
  44. * @func: Function pointer
  45. * @arg: Arguement
  46. * @type: deferrable or non deferrable timer type
  47. *
  48. * Timer type QDF_TIMER_TYPE_SW means its a deferrable sw timer which will
  49. * not cause CPU wake upon expiry
  50. * Timer type QDF_TIMER_TYPE_WAKE_APPS means its a non-deferrable timer which
  51. * will cause CPU wake up on expiry
  52. *
  53. * Return: QDF_STATUS
  54. */
  55. static inline QDF_STATUS __qdf_timer_init(qdf_handle_t hdl,
  56. struct timer_list *timer,
  57. qdf_timer_func_t func, void *arg,
  58. QDF_TIMER_TYPE type)
  59. {
  60. if (QDF_TIMER_TYPE_SW == type)
  61. init_timer_deferrable(timer);
  62. else
  63. init_timer(timer);
  64. timer->function = (qdf_dummy_timer_func_t) func;
  65. timer->data = (unsigned long)arg;
  66. return QDF_STATUS_SUCCESS;
  67. }
  68. /**
  69. * __qdf_timer_start() - start a qdf softirq timer
  70. * @timer: Pointer to timer object
  71. * @delay: Delay in milli seconds
  72. *
  73. * Return: QDF_STATUS
  74. */
  75. static inline QDF_STATUS __qdf_timer_start(struct timer_list *timer,
  76. uint32_t delay)
  77. {
  78. timer->expires = jiffies + msecs_to_jiffies(delay);
  79. add_timer(timer);
  80. return QDF_STATUS_SUCCESS;
  81. }
  82. /**
  83. * __qdf_timer_mod() - modify a timer
  84. * @timer: Pointer to timer object
  85. * @delay: Delay in milli seconds
  86. *
  87. * Return: QDF_STATUS
  88. */
  89. static inline QDF_STATUS __qdf_timer_mod(struct timer_list *timer,
  90. uint32_t delay)
  91. {
  92. mod_timer(timer, jiffies + msecs_to_jiffies(delay));
  93. return QDF_STATUS_SUCCESS;
  94. }
  95. /**
  96. * __qdf_timer_stop() - cancel a timer
  97. * @timer: Pointer to timer object
  98. *
  99. * Return: true if timer was cancelled and deactived,
  100. * false if timer was cancelled but already got fired.
  101. */
  102. static inline bool __qdf_timer_stop(struct timer_list *timer)
  103. {
  104. if (likely(del_timer(timer)))
  105. return 1;
  106. else
  107. return 0;
  108. }
  109. /**
  110. * __qdf_timer_free() - free a qdf timer
  111. * @timer: Pointer to timer object
  112. *
  113. * Return: true if timer was cancelled and deactived,
  114. * false if timer was cancelled but already got fired.
  115. */
  116. static inline void __qdf_timer_free(struct timer_list *timer)
  117. {
  118. del_timer_sync(timer);
  119. }
  120. /**
  121. * __qdf_sostirq_timer_sync_cancel() - Synchronously canel a timer
  122. * @timer: Pointer to timer object
  123. *
  124. * Synchronization Rules:
  125. * 1. caller must make sure timer function will not use
  126. * qdf_set_timer to add iteself again.
  127. * 2. caller must not hold any lock that timer function
  128. * is likely to hold as well.
  129. * 3. It can't be called from interrupt context.
  130. *
  131. * Return: true if timer was cancelled and deactived,
  132. * false if timer was cancelled but already got fired.
  133. */
  134. static inline bool __qdf_timer_sync_cancel(struct timer_list *timer)
  135. {
  136. return del_timer_sync(timer);
  137. }
  138. #endif /*_QDF_TIMER_PVT_H*/