i_qdf_time.h 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  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_time
  28. * This file provides OS dependent time API's.
  29. */
  30. #ifndef _I_QDF_TIME_H
  31. #define _I_QDF_TIME_H
  32. #include <linux/jiffies.h>
  33. #include <linux/delay.h>
  34. #include <asm/arch_timer.h>
  35. #ifdef CONFIG_CNSS
  36. #include <net/cnss.h>
  37. #endif
  38. typedef unsigned long __qdf_time_t;
  39. /**
  40. * __qdf_system_ticks() - get system ticks
  41. *
  42. * Return: system tick in jiffies
  43. */
  44. static inline __qdf_time_t __qdf_system_ticks(void)
  45. {
  46. return jiffies;
  47. }
  48. /**
  49. * __qdf_system_ticks_to_msecs() - convert system ticks into milli seconds
  50. * @ticks: System ticks
  51. *
  52. * Return: system tick converted into milli seconds
  53. */
  54. static inline uint32_t __qdf_system_ticks_to_msecs(unsigned long ticks)
  55. {
  56. return jiffies_to_msecs(ticks);
  57. }
  58. /**
  59. * __qdf_system_msecs_to_ticks() - convert milli seconds into system ticks
  60. * @msecs: Milli seconds
  61. *
  62. * Return: milli seconds converted into system ticks
  63. */
  64. static inline __qdf_time_t __qdf_system_msecs_to_ticks(uint32_t msecs)
  65. {
  66. return msecs_to_jiffies(msecs);
  67. }
  68. /**
  69. * __qdf_get_system_uptime() - get system uptime
  70. *
  71. * Return: system uptime in jiffies
  72. */
  73. static inline __qdf_time_t __qdf_get_system_uptime(void)
  74. {
  75. return jiffies;
  76. }
  77. static inline unsigned long __qdf_get_system_timestamp(void)
  78. {
  79. return (jiffies / HZ) * 1000 + (jiffies % HZ) * (1000 / HZ);
  80. }
  81. #ifdef CONFIG_ARM
  82. /**
  83. * __qdf_udelay() - delay execution for given microseconds
  84. * @usecs: Micro seconds to delay
  85. *
  86. * Return: none
  87. */
  88. static inline void __qdf_udelay(uint32_t usecs)
  89. {
  90. /*
  91. * This is in support of XScale build. They have a limit on the udelay
  92. * value, so we have to make sure we don't approach the limit
  93. */
  94. uint32_t mticks;
  95. uint32_t leftover;
  96. int i;
  97. /* slice into 1024 usec chunks (simplifies calculation) */
  98. mticks = usecs >> 10;
  99. leftover = usecs - (mticks << 10);
  100. for (i = 0; i < mticks; i++)
  101. udelay(1024);
  102. udelay(leftover);
  103. }
  104. #else
  105. static inline void __qdf_udelay(uint32_t usecs)
  106. {
  107. /* Normal Delay functions. Time specified in microseconds */
  108. udelay(usecs);
  109. }
  110. #endif
  111. /**
  112. * __qdf_mdelay() - delay execution for given milliseconds
  113. * @usecs: Milliseconds to delay
  114. *
  115. * Return: none
  116. */
  117. static inline void __qdf_mdelay(uint32_t msecs)
  118. {
  119. mdelay(msecs);
  120. }
  121. /**
  122. * __qdf_system_time_after() - Check if a is later than b
  123. * @a: Time stamp value a
  124. * @b: Time stamp value b
  125. *
  126. * Return:
  127. * true if a < b else false
  128. */
  129. static inline bool __qdf_system_time_after(__qdf_time_t a, __qdf_time_t b)
  130. {
  131. return (long)(b) - (long)(a) < 0;
  132. }
  133. /**
  134. * __qdf_system_time_before() - Check if a is before b
  135. * @a: Time stamp value a
  136. * @b: Time stamp value b
  137. *
  138. * Return:
  139. * true if a is before b else false
  140. */
  141. static inline bool __qdf_system_time_before(__qdf_time_t a, __qdf_time_t b)
  142. {
  143. return __qdf_system_time_after(b, a);
  144. }
  145. /**
  146. * __qdf_system_time_after_eq() - Check if a atleast as recent as b, if not
  147. * later
  148. * @a: Time stamp value a
  149. * @b: Time stamp value b
  150. *
  151. * Return:
  152. * true if a >= b else false
  153. */
  154. static inline bool __qdf_system_time_after_eq(__qdf_time_t a, __qdf_time_t b)
  155. {
  156. return (long)(a) - (long)(b) >= 0;
  157. }
  158. /**
  159. * __qdf_get_monotonic_boottime() - get monotonic kernel boot time
  160. * This API is similar to qdf_get_system_boottime but it includes
  161. * time spent in suspend.
  162. *
  163. * Return: Time in microseconds
  164. */
  165. static inline uint64_t __qdf_get_monotonic_boottime(void)
  166. {
  167. struct timespec ts;
  168. get_monotonic_boottime(&ts);
  169. return ((uint64_t) ts.tv_sec * 1000000) + (ts.tv_nsec / 1000);
  170. }
  171. #ifdef QCA_WIFI_3_0_ADRASTEA
  172. /**
  173. * __qdf_get_log_timestamp() - get QTIMER ticks
  174. *
  175. * Returns QTIMER(19.2 MHz) clock ticks. To convert it into seconds
  176. * divide it by 19200.
  177. *
  178. * Return: QTIMER(19.2 MHz) clock ticks
  179. */
  180. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 4, 0))
  181. static inline uint64_t __qdf_get_log_timestamp(void)
  182. {
  183. return arch_counter_get_cntvct();
  184. }
  185. #else
  186. static inline uint64_t __qdf_get_log_timestamp(void)
  187. {
  188. return arch_counter_get_cntpct();
  189. }
  190. #endif /* LINUX_VERSION_CODE */
  191. #else
  192. /**
  193. * __qdf_get_log_timestamp - get time stamp for logging
  194. * For adrastea this API returns QTIMER tick which is needed to synchronize
  195. * host and fw log timestamps
  196. * For ROME and other discrete solution this API returns system boot time stamp
  197. *
  198. * Return:
  199. * QTIMER ticks(19.2MHz) for adrastea
  200. * System tick for rome and other future discrete solutions
  201. */
  202. static inline uint64_t __qdf_get_log_timestamp(void)
  203. {
  204. struct timespec ts;
  205. ktime_get_ts(&ts);
  206. return ((uint64_t) ts.tv_sec * 1000000) + (ts.tv_nsec / 1000);
  207. }
  208. #endif /* QCA_WIFI_3_0_ADRASTEA */
  209. #endif