time_units.h 41 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393
  1. /*
  2. * Copyright (c) 2019 Intel Corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_TIME_UNITS_H_
  7. #define ZEPHYR_INCLUDE_TIME_UNITS_H_
  8. #ifdef __cplusplus
  9. extern "C" {
  10. #endif
  11. /** @brief System-wide macro to denote "forever" in milliseconds
  12. *
  13. * Usage of this macro is limited to APIs that want to expose a timeout value
  14. * that can optionally be unlimited, or "forever".
  15. * This macro can not be fed into kernel functions or macros directly. Use
  16. * @ref SYS_TIMEOUT_MS instead.
  17. */
  18. #define SYS_FOREVER_MS (-1)
  19. /** @brief System-wide macro to convert milliseconds to kernel timeouts
  20. */
  21. #define SYS_TIMEOUT_MS(ms) ((ms) == SYS_FOREVER_MS ? K_FOREVER : K_MSEC(ms))
  22. /* Exhaustively enumerated, highly optimized time unit conversion API */
  23. #if defined(CONFIG_TIMER_READS_ITS_FREQUENCY_AT_RUNTIME)
  24. __syscall int sys_clock_hw_cycles_per_sec_runtime_get(void);
  25. static inline int z_impl_sys_clock_hw_cycles_per_sec_runtime_get(void)
  26. {
  27. extern int z_clock_hw_cycles_per_sec;
  28. return z_clock_hw_cycles_per_sec;
  29. }
  30. #endif /* CONFIG_TIMER_READS_ITS_FREQUENCY_AT_RUNTIME */
  31. #if defined(__cplusplus) && __cplusplus >= 201402L
  32. #if defined(CONFIG_TIMER_READS_ITS_FREQUENCY_AT_RUNTIME)
  33. #define TIME_CONSTEXPR
  34. #else
  35. #define TIME_CONSTEXPR constexpr
  36. #endif
  37. #else
  38. #define TIME_CONSTEXPR
  39. #endif
  40. static TIME_CONSTEXPR inline int sys_clock_hw_cycles_per_sec(void)
  41. {
  42. #if defined(CONFIG_TIMER_READS_ITS_FREQUENCY_AT_RUNTIME)
  43. return sys_clock_hw_cycles_per_sec_runtime_get();
  44. #else
  45. return CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC;
  46. #endif
  47. }
  48. /* Time converter generator gadget. Selects from one of three
  49. * conversion algorithms: ones that take advantage when the
  50. * frequencies are an integer ratio (in either direction), or a full
  51. * precision conversion. Clever use of extra arguments causes all the
  52. * selection logic to be optimized out, and the generated code even
  53. * reduces to 32 bit only if a ratio conversion is available and the
  54. * result is 32 bits.
  55. *
  56. * This isn't intended to be used directly, instead being wrapped
  57. * appropriately in a user-facing API. The boolean arguments are:
  58. *
  59. * const_hz - The hz arguments are known to be compile-time
  60. * constants (because otherwise the modulus test would
  61. * have to be done at runtime)
  62. * result32 - The result will be truncated to 32 bits on use
  63. * round_up - Return the ceiling of the resulting fraction
  64. * round_off - Return the nearest value to the resulting fraction
  65. * (pass both round_up/off as false to get "round_down")
  66. */
  67. static TIME_CONSTEXPR ALWAYS_INLINE uint64_t z_tmcvt(uint64_t t, uint32_t from_hz,
  68. uint32_t to_hz, bool const_hz,
  69. bool result32, bool round_up,
  70. bool round_off)
  71. {
  72. bool mul_ratio = const_hz &&
  73. (to_hz > from_hz) && ((to_hz % from_hz) == 0U);
  74. bool div_ratio = const_hz &&
  75. (from_hz > to_hz) && ((from_hz % to_hz) == 0U);
  76. if (from_hz == to_hz) {
  77. return result32 ? ((uint32_t)t) : t;
  78. }
  79. uint64_t off = 0;
  80. if (!mul_ratio) {
  81. uint32_t rdivisor = div_ratio ? (from_hz / to_hz) : from_hz;
  82. if (round_up) {
  83. off = rdivisor - 1U;
  84. }
  85. if (round_off) {
  86. off = rdivisor / 2U;
  87. }
  88. }
  89. /* Select (at build time!) between three different expressions for
  90. * the same mathematical relationship, each expressed with and
  91. * without truncation to 32 bits (I couldn't find a way to make
  92. * the compiler correctly guess at the 32 bit result otherwise).
  93. */
  94. if (div_ratio) {
  95. t += off;
  96. if (result32 && (t < BIT64(32))) {
  97. return ((uint32_t)t) / (from_hz / to_hz);
  98. } else {
  99. return t / ((uint64_t)from_hz / to_hz);
  100. }
  101. } else if (mul_ratio) {
  102. if (result32) {
  103. return ((uint32_t)t) * (to_hz / from_hz);
  104. } else {
  105. return t * ((uint64_t)to_hz / from_hz);
  106. }
  107. } else {
  108. if (result32) {
  109. return (uint32_t)((t * to_hz + off) / from_hz);
  110. } else {
  111. return (t * to_hz + off) / from_hz;
  112. }
  113. }
  114. }
  115. /* The following code is programmatically generated using this perl
  116. * code, which enumerates all possible combinations of units, rounding
  117. * modes and precision. Do not edit directly.
  118. *
  119. * Note that nano/microsecond conversions are only defined with 64 bit
  120. * precision. These units conversions were not available in 32 bit
  121. * variants historically, and doing 32 bit math with units that small
  122. * has precision traps that we probably don't want to support in an
  123. * official API.
  124. *
  125. * #!/usr/bin/perl -w
  126. * use strict;
  127. *
  128. * my %human = ("ms" => "milliseconds",
  129. * "us" => "microseconds",
  130. * "ns" => "nanoseconds",
  131. * "cyc" => "hardware cycles",
  132. * "ticks" => "ticks");
  133. *
  134. * sub big { return $_[0] eq "us" || $_[0] eq "ns"; }
  135. * sub prefix { return $_[0] eq "ms" || $_[0] eq "us" || $_[0] eq "ns"; }
  136. *
  137. * for my $from_unit ("ms", "us", "ns", "cyc", "ticks") {
  138. * for my $to_unit ("ms", "us", "ns", "cyc", "ticks") {
  139. * next if $from_unit eq $to_unit;
  140. * next if prefix($from_unit) && prefix($to_unit);
  141. * for my $round ("floor", "near", "ceil") {
  142. * for(my $big=0; $big <= 1; $big++) {
  143. * my $sz = $big ? 64 : 32;
  144. * my $sym = "k_${from_unit}_to_${to_unit}_$round$sz";
  145. * my $type = "u${sz}_t";
  146. * my $const_hz = ($from_unit eq "cyc" || $to_unit eq "cyc")
  147. * ? "Z_CCYC" : "true";
  148. * my $ret32 = $big ? "false" : "true";
  149. * my $rup = $round eq "ceil" ? "true" : "false";
  150. * my $roff = $round eq "near" ? "true" : "false";
  151. *
  152. * my $hfrom = $human{$from_unit};
  153. * my $hto = $human{$to_unit};
  154. * print "/", "** \@brief Convert $hfrom to $hto\n";
  155. * print " *\n";
  156. * print " * Converts time values in $hfrom to $hto.\n";
  157. * print " * Computes result in $sz bit precision.\n";
  158. * if ($round eq "ceil") {
  159. * print " * Rounds up to the next highest output unit.\n";
  160. * } elsif ($round eq "near") {
  161. * print " * Rounds to the nearest output unit.\n";
  162. * } else {
  163. * print " * Truncates to the next lowest output unit.\n";
  164. * }
  165. * print " *\n";
  166. * print " * \@return The converted time value\n";
  167. * print " *", "/\n";
  168. *
  169. * print "static TIME_CONSTEXPR inline $type $sym($type t)\n{\n\t";
  170. * print "/", "* Generated. Do not edit. See above. *", "/\n\t";
  171. * print "return z_tmcvt(t, Z_HZ_$from_unit, Z_HZ_$to_unit,";
  172. * print " $const_hz, $ret32, $rup, $roff);\n";
  173. * print "}\n\n";
  174. * }
  175. * }
  176. * }
  177. * }
  178. */
  179. /* Some more concise declarations to simplify the generator script and
  180. * save bytes below
  181. */
  182. #define Z_HZ_ms 1000
  183. #define Z_HZ_us 1000000
  184. #define Z_HZ_ns 1000000000
  185. #define Z_HZ_cyc sys_clock_hw_cycles_per_sec()
  186. #define Z_HZ_ticks CONFIG_SYS_CLOCK_TICKS_PER_SEC
  187. #define Z_CCYC (!IS_ENABLED(CONFIG_TIMER_READS_ITS_FREQUENCY_AT_RUNTIME))
  188. /** @brief Convert milliseconds to hardware cycles
  189. *
  190. * Converts time values in milliseconds to hardware cycles.
  191. * Computes result in 32 bit precision.
  192. * Truncates to the next lowest output unit.
  193. *
  194. * @return The converted time value
  195. */
  196. static TIME_CONSTEXPR inline uint32_t k_ms_to_cyc_floor32(uint32_t t)
  197. {
  198. /* Generated. Do not edit. See above. */
  199. return z_tmcvt(t, Z_HZ_ms, Z_HZ_cyc, Z_CCYC, true, false, false);
  200. }
  201. /** @brief Convert milliseconds to hardware cycles
  202. *
  203. * Converts time values in milliseconds to hardware cycles.
  204. * Computes result in 64 bit precision.
  205. * Truncates to the next lowest output unit.
  206. *
  207. * @return The converted time value
  208. */
  209. static TIME_CONSTEXPR inline uint64_t k_ms_to_cyc_floor64(uint64_t t)
  210. {
  211. /* Generated. Do not edit. See above. */
  212. return z_tmcvt(t, Z_HZ_ms, Z_HZ_cyc, Z_CCYC, false, false, false);
  213. }
  214. /** @brief Convert milliseconds to hardware cycles
  215. *
  216. * Converts time values in milliseconds to hardware cycles.
  217. * Computes result in 32 bit precision.
  218. * Rounds to the nearest output unit.
  219. *
  220. * @return The converted time value
  221. */
  222. static TIME_CONSTEXPR inline uint32_t k_ms_to_cyc_near32(uint32_t t)
  223. {
  224. /* Generated. Do not edit. See above. */
  225. return z_tmcvt(t, Z_HZ_ms, Z_HZ_cyc, Z_CCYC, true, false, true);
  226. }
  227. /** @brief Convert milliseconds to hardware cycles
  228. *
  229. * Converts time values in milliseconds to hardware cycles.
  230. * Computes result in 64 bit precision.
  231. * Rounds to the nearest output unit.
  232. *
  233. * @return The converted time value
  234. */
  235. static TIME_CONSTEXPR inline uint64_t k_ms_to_cyc_near64(uint64_t t)
  236. {
  237. /* Generated. Do not edit. See above. */
  238. return z_tmcvt(t, Z_HZ_ms, Z_HZ_cyc, Z_CCYC, false, false, true);
  239. }
  240. /** @brief Convert milliseconds to hardware cycles
  241. *
  242. * Converts time values in milliseconds to hardware cycles.
  243. * Computes result in 32 bit precision.
  244. * Rounds up to the next highest output unit.
  245. *
  246. * @return The converted time value
  247. */
  248. static TIME_CONSTEXPR inline uint32_t k_ms_to_cyc_ceil32(uint32_t t)
  249. {
  250. /* Generated. Do not edit. See above. */
  251. return z_tmcvt(t, Z_HZ_ms, Z_HZ_cyc, Z_CCYC, true, true, false);
  252. }
  253. /** @brief Convert milliseconds to hardware cycles
  254. *
  255. * Converts time values in milliseconds to hardware cycles.
  256. * Computes result in 64 bit precision.
  257. * Rounds up to the next highest output unit.
  258. *
  259. * @return The converted time value
  260. */
  261. static TIME_CONSTEXPR inline uint64_t k_ms_to_cyc_ceil64(uint64_t t)
  262. {
  263. /* Generated. Do not edit. See above. */
  264. return z_tmcvt(t, Z_HZ_ms, Z_HZ_cyc, Z_CCYC, false, true, false);
  265. }
  266. /** @brief Convert milliseconds to ticks
  267. *
  268. * Converts time values in milliseconds to ticks.
  269. * Computes result in 32 bit precision.
  270. * Truncates to the next lowest output unit.
  271. *
  272. * @return The converted time value
  273. */
  274. static TIME_CONSTEXPR inline uint32_t k_ms_to_ticks_floor32(uint32_t t)
  275. {
  276. /* Generated. Do not edit. See above. */
  277. return z_tmcvt(t, Z_HZ_ms, Z_HZ_ticks, true, true, false, false);
  278. }
  279. /** @brief Convert milliseconds to ticks
  280. *
  281. * Converts time values in milliseconds to ticks.
  282. * Computes result in 64 bit precision.
  283. * Truncates to the next lowest output unit.
  284. *
  285. * @return The converted time value
  286. */
  287. static TIME_CONSTEXPR inline uint64_t k_ms_to_ticks_floor64(uint64_t t)
  288. {
  289. /* Generated. Do not edit. See above. */
  290. return z_tmcvt(t, Z_HZ_ms, Z_HZ_ticks, true, false, false, false);
  291. }
  292. /** @brief Convert milliseconds to ticks
  293. *
  294. * Converts time values in milliseconds to ticks.
  295. * Computes result in 32 bit precision.
  296. * Rounds to the nearest output unit.
  297. *
  298. * @return The converted time value
  299. */
  300. static TIME_CONSTEXPR inline uint32_t k_ms_to_ticks_near32(uint32_t t)
  301. {
  302. /* Generated. Do not edit. See above. */
  303. return z_tmcvt(t, Z_HZ_ms, Z_HZ_ticks, true, true, false, true);
  304. }
  305. /** @brief Convert milliseconds to ticks
  306. *
  307. * Converts time values in milliseconds to ticks.
  308. * Computes result in 64 bit precision.
  309. * Rounds to the nearest output unit.
  310. *
  311. * @return The converted time value
  312. */
  313. static TIME_CONSTEXPR inline uint64_t k_ms_to_ticks_near64(uint64_t t)
  314. {
  315. /* Generated. Do not edit. See above. */
  316. return z_tmcvt(t, Z_HZ_ms, Z_HZ_ticks, true, false, false, true);
  317. }
  318. /** @brief Convert milliseconds to ticks
  319. *
  320. * Converts time values in milliseconds to ticks.
  321. * Computes result in 32 bit precision.
  322. * Rounds up to the next highest output unit.
  323. *
  324. * @return The converted time value
  325. */
  326. static TIME_CONSTEXPR inline uint32_t k_ms_to_ticks_ceil32(uint32_t t)
  327. {
  328. /* Generated. Do not edit. See above. */
  329. return z_tmcvt(t, Z_HZ_ms, Z_HZ_ticks, true, true, true, false);
  330. }
  331. /** @brief Convert milliseconds to ticks
  332. *
  333. * Converts time values in milliseconds to ticks.
  334. * Computes result in 64 bit precision.
  335. * Rounds up to the next highest output unit.
  336. *
  337. * @return The converted time value
  338. */
  339. static TIME_CONSTEXPR inline uint64_t k_ms_to_ticks_ceil64(uint64_t t)
  340. {
  341. /* Generated. Do not edit. See above. */
  342. return z_tmcvt(t, Z_HZ_ms, Z_HZ_ticks, true, false, true, false);
  343. }
  344. /** @brief Convert microseconds to hardware cycles
  345. *
  346. * Converts time values in microseconds to hardware cycles.
  347. * Computes result in 32 bit precision.
  348. * Truncates to the next lowest output unit.
  349. *
  350. * @return The converted time value
  351. */
  352. static TIME_CONSTEXPR inline uint32_t k_us_to_cyc_floor32(uint32_t t)
  353. {
  354. /* Generated. Do not edit. See above. */
  355. return z_tmcvt(t, Z_HZ_us, Z_HZ_cyc, Z_CCYC, true, false, false);
  356. }
  357. /** @brief Convert microseconds to hardware cycles
  358. *
  359. * Converts time values in microseconds to hardware cycles.
  360. * Computes result in 64 bit precision.
  361. * Truncates to the next lowest output unit.
  362. *
  363. * @return The converted time value
  364. */
  365. static TIME_CONSTEXPR inline uint64_t k_us_to_cyc_floor64(uint64_t t)
  366. {
  367. /* Generated. Do not edit. See above. */
  368. return z_tmcvt(t, Z_HZ_us, Z_HZ_cyc, Z_CCYC, false, false, false);
  369. }
  370. /** @brief Convert microseconds to hardware cycles
  371. *
  372. * Converts time values in microseconds to hardware cycles.
  373. * Computes result in 32 bit precision.
  374. * Rounds to the nearest output unit.
  375. *
  376. * @return The converted time value
  377. */
  378. static TIME_CONSTEXPR inline uint32_t k_us_to_cyc_near32(uint32_t t)
  379. {
  380. /* Generated. Do not edit. See above. */
  381. return z_tmcvt(t, Z_HZ_us, Z_HZ_cyc, Z_CCYC, true, false, true);
  382. }
  383. /** @brief Convert microseconds to hardware cycles
  384. *
  385. * Converts time values in microseconds to hardware cycles.
  386. * Computes result in 64 bit precision.
  387. * Rounds to the nearest output unit.
  388. *
  389. * @return The converted time value
  390. */
  391. static TIME_CONSTEXPR inline uint64_t k_us_to_cyc_near64(uint64_t t)
  392. {
  393. /* Generated. Do not edit. See above. */
  394. return z_tmcvt(t, Z_HZ_us, Z_HZ_cyc, Z_CCYC, false, false, true);
  395. }
  396. /** @brief Convert microseconds to hardware cycles
  397. *
  398. * Converts time values in microseconds to hardware cycles.
  399. * Computes result in 32 bit precision.
  400. * Rounds up to the next highest output unit.
  401. *
  402. * @return The converted time value
  403. */
  404. static TIME_CONSTEXPR inline uint32_t k_us_to_cyc_ceil32(uint32_t t)
  405. {
  406. /* Generated. Do not edit. See above. */
  407. return z_tmcvt(t, Z_HZ_us, Z_HZ_cyc, Z_CCYC, true, true, false);
  408. }
  409. /** @brief Convert microseconds to hardware cycles
  410. *
  411. * Converts time values in microseconds to hardware cycles.
  412. * Computes result in 64 bit precision.
  413. * Rounds up to the next highest output unit.
  414. *
  415. * @return The converted time value
  416. */
  417. static TIME_CONSTEXPR inline uint64_t k_us_to_cyc_ceil64(uint64_t t)
  418. {
  419. /* Generated. Do not edit. See above. */
  420. return z_tmcvt(t, Z_HZ_us, Z_HZ_cyc, Z_CCYC, false, true, false);
  421. }
  422. /** @brief Convert microseconds to ticks
  423. *
  424. * Converts time values in microseconds to ticks.
  425. * Computes result in 32 bit precision.
  426. * Truncates to the next lowest output unit.
  427. *
  428. * @return The converted time value
  429. */
  430. static TIME_CONSTEXPR inline uint32_t k_us_to_ticks_floor32(uint32_t t)
  431. {
  432. /* Generated. Do not edit. See above. */
  433. return z_tmcvt(t, Z_HZ_us, Z_HZ_ticks, true, true, false, false);
  434. }
  435. /** @brief Convert microseconds to ticks
  436. *
  437. * Converts time values in microseconds to ticks.
  438. * Computes result in 64 bit precision.
  439. * Truncates to the next lowest output unit.
  440. *
  441. * @return The converted time value
  442. */
  443. static TIME_CONSTEXPR inline uint64_t k_us_to_ticks_floor64(uint64_t t)
  444. {
  445. /* Generated. Do not edit. See above. */
  446. return z_tmcvt(t, Z_HZ_us, Z_HZ_ticks, true, false, false, false);
  447. }
  448. /** @brief Convert microseconds to ticks
  449. *
  450. * Converts time values in microseconds to ticks.
  451. * Computes result in 32 bit precision.
  452. * Rounds to the nearest output unit.
  453. *
  454. * @return The converted time value
  455. */
  456. static TIME_CONSTEXPR inline uint32_t k_us_to_ticks_near32(uint32_t t)
  457. {
  458. /* Generated. Do not edit. See above. */
  459. return z_tmcvt(t, Z_HZ_us, Z_HZ_ticks, true, true, false, true);
  460. }
  461. /** @brief Convert microseconds to ticks
  462. *
  463. * Converts time values in microseconds to ticks.
  464. * Computes result in 64 bit precision.
  465. * Rounds to the nearest output unit.
  466. *
  467. * @return The converted time value
  468. */
  469. static TIME_CONSTEXPR inline uint64_t k_us_to_ticks_near64(uint64_t t)
  470. {
  471. /* Generated. Do not edit. See above. */
  472. return z_tmcvt(t, Z_HZ_us, Z_HZ_ticks, true, false, false, true);
  473. }
  474. /** @brief Convert microseconds to ticks
  475. *
  476. * Converts time values in microseconds to ticks.
  477. * Computes result in 32 bit precision.
  478. * Rounds up to the next highest output unit.
  479. *
  480. * @return The converted time value
  481. */
  482. static TIME_CONSTEXPR inline uint32_t k_us_to_ticks_ceil32(uint32_t t)
  483. {
  484. /* Generated. Do not edit. See above. */
  485. return z_tmcvt(t, Z_HZ_us, Z_HZ_ticks, true, true, true, false);
  486. }
  487. /** @brief Convert microseconds to ticks
  488. *
  489. * Converts time values in microseconds to ticks.
  490. * Computes result in 64 bit precision.
  491. * Rounds up to the next highest output unit.
  492. *
  493. * @return The converted time value
  494. */
  495. static TIME_CONSTEXPR inline uint64_t k_us_to_ticks_ceil64(uint64_t t)
  496. {
  497. /* Generated. Do not edit. See above. */
  498. return z_tmcvt(t, Z_HZ_us, Z_HZ_ticks, true, false, true, false);
  499. }
  500. /** @brief Convert nanoseconds to hardware cycles
  501. *
  502. * Converts time values in nanoseconds to hardware cycles.
  503. * Computes result in 32 bit precision.
  504. * Truncates to the next lowest output unit.
  505. *
  506. * @return The converted time value
  507. */
  508. static TIME_CONSTEXPR inline uint32_t k_ns_to_cyc_floor32(uint32_t t)
  509. {
  510. /* Generated. Do not edit. See above. */
  511. return z_tmcvt(t, Z_HZ_ns, Z_HZ_cyc, Z_CCYC, true, false, false);
  512. }
  513. /** @brief Convert nanoseconds to hardware cycles
  514. *
  515. * Converts time values in nanoseconds to hardware cycles.
  516. * Computes result in 64 bit precision.
  517. * Truncates to the next lowest output unit.
  518. *
  519. * @return The converted time value
  520. */
  521. static TIME_CONSTEXPR inline uint64_t k_ns_to_cyc_floor64(uint64_t t)
  522. {
  523. /* Generated. Do not edit. See above. */
  524. return z_tmcvt(t, Z_HZ_ns, Z_HZ_cyc, Z_CCYC, false, false, false);
  525. }
  526. /** @brief Convert nanoseconds to hardware cycles
  527. *
  528. * Converts time values in nanoseconds to hardware cycles.
  529. * Computes result in 32 bit precision.
  530. * Rounds to the nearest output unit.
  531. *
  532. * @return The converted time value
  533. */
  534. static TIME_CONSTEXPR inline uint32_t k_ns_to_cyc_near32(uint32_t t)
  535. {
  536. /* Generated. Do not edit. See above. */
  537. return z_tmcvt(t, Z_HZ_ns, Z_HZ_cyc, Z_CCYC, true, false, true);
  538. }
  539. /** @brief Convert nanoseconds to hardware cycles
  540. *
  541. * Converts time values in nanoseconds to hardware cycles.
  542. * Computes result in 64 bit precision.
  543. * Rounds to the nearest output unit.
  544. *
  545. * @return The converted time value
  546. */
  547. static TIME_CONSTEXPR inline uint64_t k_ns_to_cyc_near64(uint64_t t)
  548. {
  549. /* Generated. Do not edit. See above. */
  550. return z_tmcvt(t, Z_HZ_ns, Z_HZ_cyc, Z_CCYC, false, false, true);
  551. }
  552. /** @brief Convert nanoseconds to hardware cycles
  553. *
  554. * Converts time values in nanoseconds to hardware cycles.
  555. * Computes result in 32 bit precision.
  556. * Rounds up to the next highest output unit.
  557. *
  558. * @return The converted time value
  559. */
  560. static TIME_CONSTEXPR inline uint32_t k_ns_to_cyc_ceil32(uint32_t t)
  561. {
  562. /* Generated. Do not edit. See above. */
  563. return z_tmcvt(t, Z_HZ_ns, Z_HZ_cyc, Z_CCYC, true, true, false);
  564. }
  565. /** @brief Convert nanoseconds to hardware cycles
  566. *
  567. * Converts time values in nanoseconds to hardware cycles.
  568. * Computes result in 64 bit precision.
  569. * Rounds up to the next highest output unit.
  570. *
  571. * @return The converted time value
  572. */
  573. static TIME_CONSTEXPR inline uint64_t k_ns_to_cyc_ceil64(uint64_t t)
  574. {
  575. /* Generated. Do not edit. See above. */
  576. return z_tmcvt(t, Z_HZ_ns, Z_HZ_cyc, Z_CCYC, false, true, false);
  577. }
  578. /** @brief Convert nanoseconds to ticks
  579. *
  580. * Converts time values in nanoseconds to ticks.
  581. * Computes result in 32 bit precision.
  582. * Truncates to the next lowest output unit.
  583. *
  584. * @return The converted time value
  585. */
  586. static TIME_CONSTEXPR inline uint32_t k_ns_to_ticks_floor32(uint32_t t)
  587. {
  588. /* Generated. Do not edit. See above. */
  589. return z_tmcvt(t, Z_HZ_ns, Z_HZ_ticks, true, true, false, false);
  590. }
  591. /** @brief Convert nanoseconds to ticks
  592. *
  593. * Converts time values in nanoseconds to ticks.
  594. * Computes result in 64 bit precision.
  595. * Truncates to the next lowest output unit.
  596. *
  597. * @return The converted time value
  598. */
  599. static TIME_CONSTEXPR inline uint64_t k_ns_to_ticks_floor64(uint64_t t)
  600. {
  601. /* Generated. Do not edit. See above. */
  602. return z_tmcvt(t, Z_HZ_ns, Z_HZ_ticks, true, false, false, false);
  603. }
  604. /** @brief Convert nanoseconds to ticks
  605. *
  606. * Converts time values in nanoseconds to ticks.
  607. * Computes result in 32 bit precision.
  608. * Rounds to the nearest output unit.
  609. *
  610. * @return The converted time value
  611. */
  612. static TIME_CONSTEXPR inline uint32_t k_ns_to_ticks_near32(uint32_t t)
  613. {
  614. /* Generated. Do not edit. See above. */
  615. return z_tmcvt(t, Z_HZ_ns, Z_HZ_ticks, true, true, false, true);
  616. }
  617. /** @brief Convert nanoseconds to ticks
  618. *
  619. * Converts time values in nanoseconds to ticks.
  620. * Computes result in 64 bit precision.
  621. * Rounds to the nearest output unit.
  622. *
  623. * @return The converted time value
  624. */
  625. static TIME_CONSTEXPR inline uint64_t k_ns_to_ticks_near64(uint64_t t)
  626. {
  627. /* Generated. Do not edit. See above. */
  628. return z_tmcvt(t, Z_HZ_ns, Z_HZ_ticks, true, false, false, true);
  629. }
  630. /** @brief Convert nanoseconds to ticks
  631. *
  632. * Converts time values in nanoseconds to ticks.
  633. * Computes result in 32 bit precision.
  634. * Rounds up to the next highest output unit.
  635. *
  636. * @return The converted time value
  637. */
  638. static TIME_CONSTEXPR inline uint32_t k_ns_to_ticks_ceil32(uint32_t t)
  639. {
  640. /* Generated. Do not edit. See above. */
  641. return z_tmcvt(t, Z_HZ_ns, Z_HZ_ticks, true, true, true, false);
  642. }
  643. /** @brief Convert nanoseconds to ticks
  644. *
  645. * Converts time values in nanoseconds to ticks.
  646. * Computes result in 64 bit precision.
  647. * Rounds up to the next highest output unit.
  648. *
  649. * @return The converted time value
  650. */
  651. static TIME_CONSTEXPR inline uint64_t k_ns_to_ticks_ceil64(uint64_t t)
  652. {
  653. /* Generated. Do not edit. See above. */
  654. return z_tmcvt(t, Z_HZ_ns, Z_HZ_ticks, true, false, true, false);
  655. }
  656. /** @brief Convert hardware cycles to milliseconds
  657. *
  658. * Converts time values in hardware cycles to milliseconds.
  659. * Computes result in 32 bit precision.
  660. * Truncates to the next lowest output unit.
  661. *
  662. * @return The converted time value
  663. */
  664. static TIME_CONSTEXPR inline uint32_t k_cyc_to_ms_floor32(uint32_t t)
  665. {
  666. /* Generated. Do not edit. See above. */
  667. return z_tmcvt(t, Z_HZ_cyc, Z_HZ_ms, Z_CCYC, true, false, false);
  668. }
  669. /** @brief Convert hardware cycles to milliseconds
  670. *
  671. * Converts time values in hardware cycles to milliseconds.
  672. * Computes result in 64 bit precision.
  673. * Truncates to the next lowest output unit.
  674. *
  675. * @return The converted time value
  676. */
  677. static TIME_CONSTEXPR inline uint64_t k_cyc_to_ms_floor64(uint64_t t)
  678. {
  679. /* Generated. Do not edit. See above. */
  680. return z_tmcvt(t, Z_HZ_cyc, Z_HZ_ms, Z_CCYC, false, false, false);
  681. }
  682. /** @brief Convert hardware cycles to milliseconds
  683. *
  684. * Converts time values in hardware cycles to milliseconds.
  685. * Computes result in 32 bit precision.
  686. * Rounds to the nearest output unit.
  687. *
  688. * @return The converted time value
  689. */
  690. static TIME_CONSTEXPR inline uint32_t k_cyc_to_ms_near32(uint32_t t)
  691. {
  692. /* Generated. Do not edit. See above. */
  693. return z_tmcvt(t, Z_HZ_cyc, Z_HZ_ms, Z_CCYC, true, false, true);
  694. }
  695. /** @brief Convert hardware cycles to milliseconds
  696. *
  697. * Converts time values in hardware cycles to milliseconds.
  698. * Computes result in 64 bit precision.
  699. * Rounds to the nearest output unit.
  700. *
  701. * @return The converted time value
  702. */
  703. static TIME_CONSTEXPR inline uint64_t k_cyc_to_ms_near64(uint64_t t)
  704. {
  705. /* Generated. Do not edit. See above. */
  706. return z_tmcvt(t, Z_HZ_cyc, Z_HZ_ms, Z_CCYC, false, false, true);
  707. }
  708. /** @brief Convert hardware cycles to milliseconds
  709. *
  710. * Converts time values in hardware cycles to milliseconds.
  711. * Computes result in 32 bit precision.
  712. * Rounds up to the next highest output unit.
  713. *
  714. * @return The converted time value
  715. */
  716. static TIME_CONSTEXPR inline uint32_t k_cyc_to_ms_ceil32(uint32_t t)
  717. {
  718. /* Generated. Do not edit. See above. */
  719. return z_tmcvt(t, Z_HZ_cyc, Z_HZ_ms, Z_CCYC, true, true, false);
  720. }
  721. /** @brief Convert hardware cycles to milliseconds
  722. *
  723. * Converts time values in hardware cycles to milliseconds.
  724. * Computes result in 64 bit precision.
  725. * Rounds up to the next highest output unit.
  726. *
  727. * @return The converted time value
  728. */
  729. static TIME_CONSTEXPR inline uint64_t k_cyc_to_ms_ceil64(uint64_t t)
  730. {
  731. /* Generated. Do not edit. See above. */
  732. return z_tmcvt(t, Z_HZ_cyc, Z_HZ_ms, Z_CCYC, false, true, false);
  733. }
  734. /** @brief Convert hardware cycles to microseconds
  735. *
  736. * Converts time values in hardware cycles to microseconds.
  737. * Computes result in 32 bit precision.
  738. * Truncates to the next lowest output unit.
  739. *
  740. * @return The converted time value
  741. */
  742. static TIME_CONSTEXPR inline uint32_t k_cyc_to_us_floor32(uint32_t t)
  743. {
  744. /* Generated. Do not edit. See above. */
  745. return z_tmcvt(t, Z_HZ_cyc, Z_HZ_us, Z_CCYC, true, false, false);
  746. }
  747. /** @brief Convert hardware cycles to microseconds
  748. *
  749. * Converts time values in hardware cycles to microseconds.
  750. * Computes result in 64 bit precision.
  751. * Truncates to the next lowest output unit.
  752. *
  753. * @return The converted time value
  754. */
  755. static TIME_CONSTEXPR inline uint64_t k_cyc_to_us_floor64(uint64_t t)
  756. {
  757. /* Generated. Do not edit. See above. */
  758. return z_tmcvt(t, Z_HZ_cyc, Z_HZ_us, Z_CCYC, false, false, false);
  759. }
  760. /** @brief Convert hardware cycles to microseconds
  761. *
  762. * Converts time values in hardware cycles to microseconds.
  763. * Computes result in 32 bit precision.
  764. * Rounds to the nearest output unit.
  765. *
  766. * @return The converted time value
  767. */
  768. static TIME_CONSTEXPR inline uint32_t k_cyc_to_us_near32(uint32_t t)
  769. {
  770. /* Generated. Do not edit. See above. */
  771. return z_tmcvt(t, Z_HZ_cyc, Z_HZ_us, Z_CCYC, true, false, true);
  772. }
  773. /** @brief Convert hardware cycles to microseconds
  774. *
  775. * Converts time values in hardware cycles to microseconds.
  776. * Computes result in 64 bit precision.
  777. * Rounds to the nearest output unit.
  778. *
  779. * @return The converted time value
  780. */
  781. static TIME_CONSTEXPR inline uint64_t k_cyc_to_us_near64(uint64_t t)
  782. {
  783. /* Generated. Do not edit. See above. */
  784. return z_tmcvt(t, Z_HZ_cyc, Z_HZ_us, Z_CCYC, false, false, true);
  785. }
  786. /** @brief Convert hardware cycles to microseconds
  787. *
  788. * Converts time values in hardware cycles to microseconds.
  789. * Computes result in 32 bit precision.
  790. * Rounds up to the next highest output unit.
  791. *
  792. * @return The converted time value
  793. */
  794. static TIME_CONSTEXPR inline uint32_t k_cyc_to_us_ceil32(uint32_t t)
  795. {
  796. /* Generated. Do not edit. See above. */
  797. return z_tmcvt(t, Z_HZ_cyc, Z_HZ_us, Z_CCYC, true, true, false);
  798. }
  799. /** @brief Convert hardware cycles to microseconds
  800. *
  801. * Converts time values in hardware cycles to microseconds.
  802. * Computes result in 64 bit precision.
  803. * Rounds up to the next highest output unit.
  804. *
  805. * @return The converted time value
  806. */
  807. static TIME_CONSTEXPR inline uint64_t k_cyc_to_us_ceil64(uint64_t t)
  808. {
  809. /* Generated. Do not edit. See above. */
  810. return z_tmcvt(t, Z_HZ_cyc, Z_HZ_us, Z_CCYC, false, true, false);
  811. }
  812. /** @brief Convert hardware cycles to nanoseconds
  813. *
  814. * Converts time values in hardware cycles to nanoseconds.
  815. * Computes result in 32 bit precision.
  816. * Truncates to the next lowest output unit.
  817. *
  818. * @return The converted time value
  819. */
  820. static TIME_CONSTEXPR inline uint32_t k_cyc_to_ns_floor32(uint32_t t)
  821. {
  822. /* Generated. Do not edit. See above. */
  823. return z_tmcvt(t, Z_HZ_cyc, Z_HZ_ns, Z_CCYC, true, false, false);
  824. }
  825. /** @brief Convert hardware cycles to nanoseconds
  826. *
  827. * Converts time values in hardware cycles to nanoseconds.
  828. * Computes result in 64 bit precision.
  829. * Truncates to the next lowest output unit.
  830. *
  831. * @return The converted time value
  832. */
  833. static TIME_CONSTEXPR inline uint64_t k_cyc_to_ns_floor64(uint64_t t)
  834. {
  835. /* Generated. Do not edit. See above. */
  836. return z_tmcvt(t, Z_HZ_cyc, Z_HZ_ns, Z_CCYC, false, false, false);
  837. }
  838. /** @brief Convert hardware cycles to nanoseconds
  839. *
  840. * Converts time values in hardware cycles to nanoseconds.
  841. * Computes result in 32 bit precision.
  842. * Rounds to the nearest output unit.
  843. *
  844. * @return The converted time value
  845. */
  846. static TIME_CONSTEXPR inline uint32_t k_cyc_to_ns_near32(uint32_t t)
  847. {
  848. /* Generated. Do not edit. See above. */
  849. return z_tmcvt(t, Z_HZ_cyc, Z_HZ_ns, Z_CCYC, true, false, true);
  850. }
  851. /** @brief Convert hardware cycles to nanoseconds
  852. *
  853. * Converts time values in hardware cycles to nanoseconds.
  854. * Computes result in 64 bit precision.
  855. * Rounds to the nearest output unit.
  856. *
  857. * @return The converted time value
  858. */
  859. static TIME_CONSTEXPR inline uint64_t k_cyc_to_ns_near64(uint64_t t)
  860. {
  861. /* Generated. Do not edit. See above. */
  862. return z_tmcvt(t, Z_HZ_cyc, Z_HZ_ns, Z_CCYC, false, false, true);
  863. }
  864. /** @brief Convert hardware cycles to nanoseconds
  865. *
  866. * Converts time values in hardware cycles to nanoseconds.
  867. * Computes result in 32 bit precision.
  868. * Rounds up to the next highest output unit.
  869. *
  870. * @return The converted time value
  871. */
  872. static TIME_CONSTEXPR inline uint32_t k_cyc_to_ns_ceil32(uint32_t t)
  873. {
  874. /* Generated. Do not edit. See above. */
  875. return z_tmcvt(t, Z_HZ_cyc, Z_HZ_ns, Z_CCYC, true, true, false);
  876. }
  877. /** @brief Convert hardware cycles to nanoseconds
  878. *
  879. * Converts time values in hardware cycles to nanoseconds.
  880. * Computes result in 64 bit precision.
  881. * Rounds up to the next highest output unit.
  882. *
  883. * @return The converted time value
  884. */
  885. static TIME_CONSTEXPR inline uint64_t k_cyc_to_ns_ceil64(uint64_t t)
  886. {
  887. /* Generated. Do not edit. See above. */
  888. return z_tmcvt(t, Z_HZ_cyc, Z_HZ_ns, Z_CCYC, false, true, false);
  889. }
  890. /** @brief Convert hardware cycles to ticks
  891. *
  892. * Converts time values in hardware cycles to ticks.
  893. * Computes result in 32 bit precision.
  894. * Truncates to the next lowest output unit.
  895. *
  896. * @return The converted time value
  897. */
  898. static TIME_CONSTEXPR inline uint32_t k_cyc_to_ticks_floor32(uint32_t t)
  899. {
  900. /* Generated. Do not edit. See above. */
  901. return z_tmcvt(t, Z_HZ_cyc, Z_HZ_ticks, Z_CCYC, true, false, false);
  902. }
  903. /** @brief Convert hardware cycles to ticks
  904. *
  905. * Converts time values in hardware cycles to ticks.
  906. * Computes result in 64 bit precision.
  907. * Truncates to the next lowest output unit.
  908. *
  909. * @return The converted time value
  910. */
  911. static TIME_CONSTEXPR inline uint64_t k_cyc_to_ticks_floor64(uint64_t t)
  912. {
  913. /* Generated. Do not edit. See above. */
  914. return z_tmcvt(t, Z_HZ_cyc, Z_HZ_ticks, Z_CCYC, false, false, false);
  915. }
  916. /** @brief Convert hardware cycles to ticks
  917. *
  918. * Converts time values in hardware cycles to ticks.
  919. * Computes result in 32 bit precision.
  920. * Rounds to the nearest output unit.
  921. *
  922. * @return The converted time value
  923. */
  924. static TIME_CONSTEXPR inline uint32_t k_cyc_to_ticks_near32(uint32_t t)
  925. {
  926. /* Generated. Do not edit. See above. */
  927. return z_tmcvt(t, Z_HZ_cyc, Z_HZ_ticks, Z_CCYC, true, false, true);
  928. }
  929. /** @brief Convert hardware cycles to ticks
  930. *
  931. * Converts time values in hardware cycles to ticks.
  932. * Computes result in 64 bit precision.
  933. * Rounds to the nearest output unit.
  934. *
  935. * @return The converted time value
  936. */
  937. static TIME_CONSTEXPR inline uint64_t k_cyc_to_ticks_near64(uint64_t t)
  938. {
  939. /* Generated. Do not edit. See above. */
  940. return z_tmcvt(t, Z_HZ_cyc, Z_HZ_ticks, Z_CCYC, false, false, true);
  941. }
  942. /** @brief Convert hardware cycles to ticks
  943. *
  944. * Converts time values in hardware cycles to ticks.
  945. * Computes result in 32 bit precision.
  946. * Rounds up to the next highest output unit.
  947. *
  948. * @return The converted time value
  949. */
  950. static TIME_CONSTEXPR inline uint32_t k_cyc_to_ticks_ceil32(uint32_t t)
  951. {
  952. /* Generated. Do not edit. See above. */
  953. return z_tmcvt(t, Z_HZ_cyc, Z_HZ_ticks, Z_CCYC, true, true, false);
  954. }
  955. /** @brief Convert hardware cycles to ticks
  956. *
  957. * Converts time values in hardware cycles to ticks.
  958. * Computes result in 64 bit precision.
  959. * Rounds up to the next highest output unit.
  960. *
  961. * @return The converted time value
  962. */
  963. static TIME_CONSTEXPR inline uint64_t k_cyc_to_ticks_ceil64(uint64_t t)
  964. {
  965. /* Generated. Do not edit. See above. */
  966. return z_tmcvt(t, Z_HZ_cyc, Z_HZ_ticks, Z_CCYC, false, true, false);
  967. }
  968. /** @brief Convert ticks to milliseconds
  969. *
  970. * Converts time values in ticks to milliseconds.
  971. * Computes result in 32 bit precision.
  972. * Truncates to the next lowest output unit.
  973. *
  974. * @return The converted time value
  975. */
  976. static TIME_CONSTEXPR inline uint32_t k_ticks_to_ms_floor32(uint32_t t)
  977. {
  978. /* Generated. Do not edit. See above. */
  979. return z_tmcvt(t, Z_HZ_ticks, Z_HZ_ms, true, true, false, false);
  980. }
  981. /** @brief Convert ticks to milliseconds
  982. *
  983. * Converts time values in ticks to milliseconds.
  984. * Computes result in 64 bit precision.
  985. * Truncates to the next lowest output unit.
  986. *
  987. * @return The converted time value
  988. */
  989. static TIME_CONSTEXPR inline uint64_t k_ticks_to_ms_floor64(uint64_t t)
  990. {
  991. /* Generated. Do not edit. See above. */
  992. return z_tmcvt(t, Z_HZ_ticks, Z_HZ_ms, true, false, false, false);
  993. }
  994. /** @brief Convert ticks to milliseconds
  995. *
  996. * Converts time values in ticks to milliseconds.
  997. * Computes result in 32 bit precision.
  998. * Rounds to the nearest output unit.
  999. *
  1000. * @return The converted time value
  1001. */
  1002. static TIME_CONSTEXPR inline uint32_t k_ticks_to_ms_near32(uint32_t t)
  1003. {
  1004. /* Generated. Do not edit. See above. */
  1005. return z_tmcvt(t, Z_HZ_ticks, Z_HZ_ms, true, true, false, true);
  1006. }
  1007. /** @brief Convert ticks to milliseconds
  1008. *
  1009. * Converts time values in ticks to milliseconds.
  1010. * Computes result in 64 bit precision.
  1011. * Rounds to the nearest output unit.
  1012. *
  1013. * @return The converted time value
  1014. */
  1015. static TIME_CONSTEXPR inline uint64_t k_ticks_to_ms_near64(uint64_t t)
  1016. {
  1017. /* Generated. Do not edit. See above. */
  1018. return z_tmcvt(t, Z_HZ_ticks, Z_HZ_ms, true, false, false, true);
  1019. }
  1020. /** @brief Convert ticks to milliseconds
  1021. *
  1022. * Converts time values in ticks to milliseconds.
  1023. * Computes result in 32 bit precision.
  1024. * Rounds up to the next highest output unit.
  1025. *
  1026. * @return The converted time value
  1027. */
  1028. static TIME_CONSTEXPR inline uint32_t k_ticks_to_ms_ceil32(uint32_t t)
  1029. {
  1030. /* Generated. Do not edit. See above. */
  1031. return z_tmcvt(t, Z_HZ_ticks, Z_HZ_ms, true, true, true, false);
  1032. }
  1033. /** @brief Convert ticks to milliseconds
  1034. *
  1035. * Converts time values in ticks to milliseconds.
  1036. * Computes result in 64 bit precision.
  1037. * Rounds up to the next highest output unit.
  1038. *
  1039. * @return The converted time value
  1040. */
  1041. static TIME_CONSTEXPR inline uint64_t k_ticks_to_ms_ceil64(uint64_t t)
  1042. {
  1043. /* Generated. Do not edit. See above. */
  1044. return z_tmcvt(t, Z_HZ_ticks, Z_HZ_ms, true, false, true, false);
  1045. }
  1046. /** @brief Convert ticks to microseconds
  1047. *
  1048. * Converts time values in ticks to microseconds.
  1049. * Computes result in 32 bit precision.
  1050. * Truncates to the next lowest output unit.
  1051. *
  1052. * @return The converted time value
  1053. */
  1054. static TIME_CONSTEXPR inline uint32_t k_ticks_to_us_floor32(uint32_t t)
  1055. {
  1056. /* Generated. Do not edit. See above. */
  1057. return z_tmcvt(t, Z_HZ_ticks, Z_HZ_us, true, true, false, false);
  1058. }
  1059. /** @brief Convert ticks to microseconds
  1060. *
  1061. * Converts time values in ticks to microseconds.
  1062. * Computes result in 64 bit precision.
  1063. * Truncates to the next lowest output unit.
  1064. *
  1065. * @return The converted time value
  1066. */
  1067. static TIME_CONSTEXPR inline uint64_t k_ticks_to_us_floor64(uint64_t t)
  1068. {
  1069. /* Generated. Do not edit. See above. */
  1070. return z_tmcvt(t, Z_HZ_ticks, Z_HZ_us, true, false, false, false);
  1071. }
  1072. /** @brief Convert ticks to microseconds
  1073. *
  1074. * Converts time values in ticks to microseconds.
  1075. * Computes result in 32 bit precision.
  1076. * Rounds to the nearest output unit.
  1077. *
  1078. * @return The converted time value
  1079. */
  1080. static TIME_CONSTEXPR inline uint32_t k_ticks_to_us_near32(uint32_t t)
  1081. {
  1082. /* Generated. Do not edit. See above. */
  1083. return z_tmcvt(t, Z_HZ_ticks, Z_HZ_us, true, true, false, true);
  1084. }
  1085. /** @brief Convert ticks to microseconds
  1086. *
  1087. * Converts time values in ticks to microseconds.
  1088. * Computes result in 64 bit precision.
  1089. * Rounds to the nearest output unit.
  1090. *
  1091. * @return The converted time value
  1092. */
  1093. static TIME_CONSTEXPR inline uint64_t k_ticks_to_us_near64(uint64_t t)
  1094. {
  1095. /* Generated. Do not edit. See above. */
  1096. return z_tmcvt(t, Z_HZ_ticks, Z_HZ_us, true, false, false, true);
  1097. }
  1098. /** @brief Convert ticks to microseconds
  1099. *
  1100. * Converts time values in ticks to microseconds.
  1101. * Computes result in 32 bit precision.
  1102. * Rounds up to the next highest output unit.
  1103. *
  1104. * @return The converted time value
  1105. */
  1106. static TIME_CONSTEXPR inline uint32_t k_ticks_to_us_ceil32(uint32_t t)
  1107. {
  1108. /* Generated. Do not edit. See above. */
  1109. return z_tmcvt(t, Z_HZ_ticks, Z_HZ_us, true, true, true, false);
  1110. }
  1111. /** @brief Convert ticks to microseconds
  1112. *
  1113. * Converts time values in ticks to microseconds.
  1114. * Computes result in 64 bit precision.
  1115. * Rounds up to the next highest output unit.
  1116. *
  1117. * @return The converted time value
  1118. */
  1119. static TIME_CONSTEXPR inline uint64_t k_ticks_to_us_ceil64(uint64_t t)
  1120. {
  1121. /* Generated. Do not edit. See above. */
  1122. return z_tmcvt(t, Z_HZ_ticks, Z_HZ_us, true, false, true, false);
  1123. }
  1124. /** @brief Convert ticks to nanoseconds
  1125. *
  1126. * Converts time values in ticks to nanoseconds.
  1127. * Computes result in 32 bit precision.
  1128. * Truncates to the next lowest output unit.
  1129. *
  1130. * @return The converted time value
  1131. */
  1132. static TIME_CONSTEXPR inline uint32_t k_ticks_to_ns_floor32(uint32_t t)
  1133. {
  1134. /* Generated. Do not edit. See above. */
  1135. return z_tmcvt(t, Z_HZ_ticks, Z_HZ_ns, true, true, false, false);
  1136. }
  1137. /** @brief Convert ticks to nanoseconds
  1138. *
  1139. * Converts time values in ticks to nanoseconds.
  1140. * Computes result in 64 bit precision.
  1141. * Truncates to the next lowest output unit.
  1142. *
  1143. * @return The converted time value
  1144. */
  1145. static TIME_CONSTEXPR inline uint64_t k_ticks_to_ns_floor64(uint64_t t)
  1146. {
  1147. /* Generated. Do not edit. See above. */
  1148. return z_tmcvt(t, Z_HZ_ticks, Z_HZ_ns, true, false, false, false);
  1149. }
  1150. /** @brief Convert ticks to nanoseconds
  1151. *
  1152. * Converts time values in ticks to nanoseconds.
  1153. * Computes result in 32 bit precision.
  1154. * Rounds to the nearest output unit.
  1155. *
  1156. * @return The converted time value
  1157. */
  1158. static TIME_CONSTEXPR inline uint32_t k_ticks_to_ns_near32(uint32_t t)
  1159. {
  1160. /* Generated. Do not edit. See above. */
  1161. return z_tmcvt(t, Z_HZ_ticks, Z_HZ_ns, true, true, false, true);
  1162. }
  1163. /** @brief Convert ticks to nanoseconds
  1164. *
  1165. * Converts time values in ticks to nanoseconds.
  1166. * Computes result in 64 bit precision.
  1167. * Rounds to the nearest output unit.
  1168. *
  1169. * @return The converted time value
  1170. */
  1171. static TIME_CONSTEXPR inline uint64_t k_ticks_to_ns_near64(uint64_t t)
  1172. {
  1173. /* Generated. Do not edit. See above. */
  1174. return z_tmcvt(t, Z_HZ_ticks, Z_HZ_ns, true, false, false, true);
  1175. }
  1176. /** @brief Convert ticks to nanoseconds
  1177. *
  1178. * Converts time values in ticks to nanoseconds.
  1179. * Computes result in 32 bit precision.
  1180. * Rounds up to the next highest output unit.
  1181. *
  1182. * @return The converted time value
  1183. */
  1184. static TIME_CONSTEXPR inline uint32_t k_ticks_to_ns_ceil32(uint32_t t)
  1185. {
  1186. /* Generated. Do not edit. See above. */
  1187. return z_tmcvt(t, Z_HZ_ticks, Z_HZ_ns, true, true, true, false);
  1188. }
  1189. /** @brief Convert ticks to nanoseconds
  1190. *
  1191. * Converts time values in ticks to nanoseconds.
  1192. * Computes result in 64 bit precision.
  1193. * Rounds up to the next highest output unit.
  1194. *
  1195. * @return The converted time value
  1196. */
  1197. static TIME_CONSTEXPR inline uint64_t k_ticks_to_ns_ceil64(uint64_t t)
  1198. {
  1199. /* Generated. Do not edit. See above. */
  1200. return z_tmcvt(t, Z_HZ_ticks, Z_HZ_ns, true, false, true, false);
  1201. }
  1202. /** @brief Convert ticks to hardware cycles
  1203. *
  1204. * Converts time values in ticks to hardware cycles.
  1205. * Computes result in 32 bit precision.
  1206. * Truncates to the next lowest output unit.
  1207. *
  1208. * @return The converted time value
  1209. */
  1210. static TIME_CONSTEXPR inline uint32_t k_ticks_to_cyc_floor32(uint32_t t)
  1211. {
  1212. /* Generated. Do not edit. See above. */
  1213. return z_tmcvt(t, Z_HZ_ticks, Z_HZ_cyc, Z_CCYC, true, false, false);
  1214. }
  1215. /** @brief Convert ticks to hardware cycles
  1216. *
  1217. * Converts time values in ticks to hardware cycles.
  1218. * Computes result in 64 bit precision.
  1219. * Truncates to the next lowest output unit.
  1220. *
  1221. * @return The converted time value
  1222. */
  1223. static TIME_CONSTEXPR inline uint64_t k_ticks_to_cyc_floor64(uint64_t t)
  1224. {
  1225. /* Generated. Do not edit. See above. */
  1226. return z_tmcvt(t, Z_HZ_ticks, Z_HZ_cyc, Z_CCYC, false, false, false);
  1227. }
  1228. /** @brief Convert ticks to hardware cycles
  1229. *
  1230. * Converts time values in ticks to hardware cycles.
  1231. * Computes result in 32 bit precision.
  1232. * Rounds to the nearest output unit.
  1233. *
  1234. * @return The converted time value
  1235. */
  1236. static TIME_CONSTEXPR inline uint32_t k_ticks_to_cyc_near32(uint32_t t)
  1237. {
  1238. /* Generated. Do not edit. See above. */
  1239. return z_tmcvt(t, Z_HZ_ticks, Z_HZ_cyc, Z_CCYC, true, false, true);
  1240. }
  1241. /** @brief Convert ticks to hardware cycles
  1242. *
  1243. * Converts time values in ticks to hardware cycles.
  1244. * Computes result in 64 bit precision.
  1245. * Rounds to the nearest output unit.
  1246. *
  1247. * @return The converted time value
  1248. */
  1249. static TIME_CONSTEXPR inline uint64_t k_ticks_to_cyc_near64(uint64_t t)
  1250. {
  1251. /* Generated. Do not edit. See above. */
  1252. return z_tmcvt(t, Z_HZ_ticks, Z_HZ_cyc, Z_CCYC, false, false, true);
  1253. }
  1254. /** @brief Convert ticks to hardware cycles
  1255. *
  1256. * Converts time values in ticks to hardware cycles.
  1257. * Computes result in 32 bit precision.
  1258. * Rounds up to the next highest output unit.
  1259. *
  1260. * @return The converted time value
  1261. */
  1262. static TIME_CONSTEXPR inline uint32_t k_ticks_to_cyc_ceil32(uint32_t t)
  1263. {
  1264. /* Generated. Do not edit. See above. */
  1265. return z_tmcvt(t, Z_HZ_ticks, Z_HZ_cyc, Z_CCYC, true, true, false);
  1266. }
  1267. /** @brief Convert ticks to hardware cycles
  1268. *
  1269. * Converts time values in ticks to hardware cycles.
  1270. * Computes result in 64 bit precision.
  1271. * Rounds up to the next highest output unit.
  1272. *
  1273. * @return The converted time value
  1274. */
  1275. static TIME_CONSTEXPR inline uint64_t k_ticks_to_cyc_ceil64(uint64_t t)
  1276. {
  1277. /* Generated. Do not edit. See above. */
  1278. return z_tmcvt(t, Z_HZ_ticks, Z_HZ_cyc, Z_CCYC, false, true, false);
  1279. }
  1280. #if defined(CONFIG_TIMER_READS_ITS_FREQUENCY_AT_RUNTIME)
  1281. #include <syscalls/time_units.h>
  1282. #endif
  1283. #undef TIME_CONSTEXPR
  1284. #ifdef __cplusplus
  1285. } /* extern "C" */
  1286. #endif
  1287. #endif /* ZEPHYR_INCLUDE_TIME_UNITS_H_ */