qdf_time.h 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333
  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_time
  20. * This file abstracts time related functionality.
  21. */
  22. #ifndef _QDF_OS_TIME_H
  23. #define _QDF_OS_TIME_H
  24. #include <i_qdf_time.h>
  25. typedef __qdf_time_t qdf_time_t;
  26. typedef __qdf_ktime_t qdf_ktime_t;
  27. /**
  28. * qdf_ns_to_ktime - Converts nanoseconds to a qdf_ktime_t object
  29. * @ns: time in nanoseconds
  30. *
  31. * Return: nanoseconds as qdf_ktime_t object
  32. */
  33. static inline qdf_ktime_t qdf_ns_to_ktime(uint64_t ns)
  34. {
  35. return __qdf_ns_to_ktime(ns);
  36. }
  37. /**
  38. * qdf_ktime_add - Adds two qdf_ktime_t objects and returns
  39. * a qdf_ktime_t object
  40. * @ktime1: time as qdf_ktime_t object
  41. * @ktime2: time as qdf_ktime_t object
  42. *
  43. * Return: sum of both qdf_ktime_t as qdf_ktime_t object
  44. */
  45. static inline qdf_ktime_t qdf_ktime_add(qdf_ktime_t ktime1, qdf_ktime_t ktime2)
  46. {
  47. return __qdf_ktime_add(ktime1, ktime2);
  48. }
  49. /**
  50. * qdf_ktime_get - Gets the current time as qdf_ktime_t object
  51. *
  52. * Return: current time as qdf_ktime_t object
  53. */
  54. static inline qdf_ktime_t qdf_ktime_get(void)
  55. {
  56. return __qdf_ktime_get();
  57. }
  58. /**
  59. * qdf_ktime_add_ns - Adds qdf_ktime_t object and nanoseconds value and
  60. * returns the qdf_ktime_t object
  61. * @ktime: time as qdf_ktime_t object
  62. * @ns: time in nanoseconds
  63. *
  64. * Return: qdf_ktime_t object
  65. */
  66. static inline qdf_ktime_t qdf_ktime_add_ns(qdf_ktime_t ktime, int64_t ns)
  67. {
  68. return __qdf_ktime_add_ns(ktime, ns);
  69. }
  70. /**
  71. * qdf_ktime_to_ms - Convert the qdf_ktime_t object into milliseconds
  72. * @ktime: time as qdf_ktime_t object
  73. *
  74. * Return: qdf_ktime_t in milliseconds
  75. */
  76. static inline int64_t qdf_ktime_to_ms(qdf_ktime_t ktime)
  77. {
  78. return __qdf_ktime_to_ms(ktime);
  79. }
  80. /**
  81. * qdf_ktime_to_ns - Convert the qdf_ktime_t object into nanoseconds
  82. * @ktime: time as qdf_ktime_t object
  83. *
  84. * Return: qdf_ktime_t in nanoseconds
  85. */
  86. static inline int64_t qdf_ktime_to_ns(qdf_ktime_t ktime)
  87. {
  88. return __qdf_ktime_to_ns(ktime);
  89. }
  90. /**
  91. * qdf_system_ticks - Count the number of ticks elapsed from the time when
  92. * the system booted
  93. *
  94. * Return: ticks
  95. */
  96. static inline qdf_time_t qdf_system_ticks(void)
  97. {
  98. return __qdf_system_ticks();
  99. }
  100. #define qdf_system_ticks_per_sec __qdf_system_ticks_per_sec
  101. /**
  102. * qdf_system_ticks_to_msecs - convert ticks to milliseconds
  103. * @clock_ticks: Number of ticks
  104. *
  105. * Return: unsigned int Time in milliseconds
  106. */
  107. static inline uint32_t qdf_system_ticks_to_msecs(unsigned long clock_ticks)
  108. {
  109. return __qdf_system_ticks_to_msecs(clock_ticks);
  110. }
  111. /**
  112. * qdf_system_msecs_to_ticks - convert milliseconds to ticks
  113. * @msec: Time in milliseconds
  114. *
  115. * Return: unsigned long number of ticks
  116. */
  117. static inline qdf_time_t qdf_system_msecs_to_ticks(uint32_t msecs)
  118. {
  119. return __qdf_system_msecs_to_ticks(msecs);
  120. }
  121. /**
  122. * qdf_get_system_uptime - Return a monotonically increasing time
  123. * This increments once per HZ ticks
  124. *
  125. * Return: qdf_time_t system up time in ticks
  126. */
  127. static inline qdf_time_t qdf_get_system_uptime(void)
  128. {
  129. return __qdf_get_system_uptime();
  130. }
  131. /**
  132. * qdf_get_bootbased_boottime_ns() - Get the bootbased time in nanoseconds
  133. *
  134. * qdf_get_bootbased_boottime_ns() function returns the number of nanoseconds
  135. * that have elapsed since the system was booted. It also includes the time when
  136. * system was suspended.
  137. *
  138. * Return:
  139. * The time since system booted in nanoseconds
  140. */
  141. static inline uint64_t qdf_get_bootbased_boottime_ns(void)
  142. {
  143. return __qdf_get_bootbased_boottime_ns();
  144. }
  145. /**
  146. * qdf_get_system_timestamp - Return current timestamp
  147. *
  148. * Return: unsigned long timestamp in ms.
  149. */
  150. static inline unsigned long qdf_get_system_timestamp(void)
  151. {
  152. return __qdf_get_system_timestamp();
  153. }
  154. /**
  155. * qdf_udelay - delay in microseconds
  156. * @usecs: Number of microseconds to delay
  157. *
  158. * Return: none
  159. */
  160. static inline void qdf_udelay(int usecs)
  161. {
  162. __qdf_udelay(usecs);
  163. }
  164. /**
  165. * qdf_mdelay - Delay in milliseconds.
  166. * @msec: Number of milliseconds to delay
  167. *
  168. * Return: none
  169. */
  170. static inline void qdf_mdelay(int msecs)
  171. {
  172. __qdf_mdelay(msecs);
  173. }
  174. /**
  175. * qdf_system_time_after() - Check if a is later than b
  176. * @a: Time stamp value a
  177. * @b: Time stamp value b
  178. *
  179. * Return:
  180. * true if a < b else false
  181. */
  182. static inline bool qdf_system_time_after(qdf_time_t a, qdf_time_t b)
  183. {
  184. return __qdf_system_time_after(a, b);
  185. }
  186. /**
  187. * qdf_system_time_before() - Check if a is before b
  188. * @a: Time stamp value a
  189. * @b: Time stamp value b
  190. *
  191. * Return:
  192. * true if a is before b else false
  193. */
  194. static inline bool qdf_system_time_before(qdf_time_t a, qdf_time_t b)
  195. {
  196. return __qdf_system_time_before(a, b);
  197. }
  198. /**
  199. * qdf_system_time_after_eq() - Check if a atleast as recent as b, if not
  200. * later
  201. * @a: Time stamp value a
  202. * @b: Time stamp value b
  203. *
  204. * Return:
  205. * true if a >= b else false
  206. */
  207. static inline bool qdf_system_time_after_eq(qdf_time_t a, qdf_time_t b)
  208. {
  209. return __qdf_system_time_after_eq(a, b);
  210. }
  211. /**
  212. * enum qdf_timestamp_unit - what unit the qdf timestamp is in
  213. * @KERNEL_LOG: boottime time in uS (micro seconds)
  214. * @QTIMER: QTIME in (1/19200)S
  215. *
  216. * This enum is used to distinguish which timer source is used.
  217. */
  218. enum qdf_timestamp_unit {
  219. KERNEL_LOG,
  220. QTIMER,
  221. };
  222. #ifdef MSM_PLATFORM
  223. #define QDF_LOG_TIMESTAMP_UNIT QTIMER
  224. #define QDF_LOG_TIMESTAMP_CYCLES_PER_10_US 192
  225. static inline uint64_t qdf_log_timestamp_to_usecs(uint64_t time)
  226. {
  227. /*
  228. * Try to preserve precision by multiplying by 10 first.
  229. * If that would cause a wrap around, divide first instead.
  230. */
  231. if (time * 10 < time) {
  232. do_div(time, QDF_LOG_TIMESTAMP_CYCLES_PER_10_US);
  233. return time * 10;
  234. }
  235. time = time * 10;
  236. do_div(time, QDF_LOG_TIMESTAMP_CYCLES_PER_10_US);
  237. return time;
  238. }
  239. #else
  240. #define QDF_LOG_TIMESTAMP_UNIT KERNEL_LOG
  241. #define QDF_LOG_TIMESTAMP_CYCLES_PER_10_US 10
  242. static inline uint64_t qdf_log_timestamp_to_usecs(uint64_t time)
  243. {
  244. /* timestamps are already in micro seconds */
  245. return time;
  246. }
  247. #endif /* end of MSM_PLATFORM */
  248. static inline void qdf_log_timestamp_to_secs(uint64_t time, uint64_t *secs,
  249. uint64_t *usecs)
  250. {
  251. *secs = qdf_log_timestamp_to_usecs(time);
  252. *usecs = do_div(*secs, 1000000ul);
  253. }
  254. static inline uint64_t qdf_usecs_to_log_timestamp(uint64_t usecs)
  255. {
  256. return (usecs * QDF_LOG_TIMESTAMP_CYCLES_PER_10_US) / 10;
  257. }
  258. /**
  259. * qdf_get_log_timestamp - get time stamp for logging
  260. * For adrastea this API returns QTIMER tick which is needed to synchronize
  261. * host and fw log timestamps
  262. * For ROME and other discrete solution this API returns system boot time stamp
  263. *
  264. * Return:
  265. * QTIMER ticks(19.2MHz) for adrastea
  266. * System tick for rome and other future discrete solutions
  267. */
  268. static inline uint64_t qdf_get_log_timestamp(void)
  269. {
  270. return __qdf_get_log_timestamp();
  271. }
  272. /**
  273. * qdf_get_log_timestamp_usecs() - get time stamp for logging in microseconds
  274. *
  275. * Return: The current logging timestamp normalized to microsecond precision
  276. */
  277. static inline uint64_t qdf_get_log_timestamp_usecs(void)
  278. {
  279. return qdf_log_timestamp_to_usecs(qdf_get_log_timestamp());
  280. }
  281. /**
  282. * qdf_get_monotonic_boottime - get monotonic kernel boot time
  283. * This API is similar to qdf_get_system_boottime but it includes
  284. * time spent in suspend.
  285. *
  286. * Return: Time in microseconds
  287. */
  288. static inline uint64_t qdf_get_monotonic_boottime(void)
  289. {
  290. return __qdf_get_monotonic_boottime();
  291. }
  292. #endif