util.h 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354
  1. /*
  2. * Copyright (c) 2011-2014, Wind River Systems, Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Misc utilities
  9. *
  10. * Misc utilities usable by the kernel and application code.
  11. */
  12. #ifndef ZEPHYR_INCLUDE_SYS_UTIL_H_
  13. #define ZEPHYR_INCLUDE_SYS_UTIL_H_
  14. #include <sys/util_macro.h>
  15. /* needs to be outside _ASMLANGUAGE so 'true' and 'false' can turn
  16. * into '1' and '0' for asm or linker scripts
  17. */
  18. #include <stdbool.h>
  19. #ifndef _ASMLANGUAGE
  20. #include <zephyr/types.h>
  21. #include <stddef.h>
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif
  25. /**
  26. * @defgroup sys-util Utility Functions
  27. * @{
  28. */
  29. /** @brief Cast @p x, a pointer, to an unsigned integer. */
  30. #define POINTER_TO_UINT(x) ((uintptr_t) (x))
  31. /** @brief Cast @p x, an unsigned integer, to a <tt>void*</tt>. */
  32. #define UINT_TO_POINTER(x) ((void *) (uintptr_t) (x))
  33. /** @brief Cast @p x, a pointer, to a signed integer. */
  34. #define POINTER_TO_INT(x) ((intptr_t) (x))
  35. /** @brief Cast @p x, a signed integer, to a <tt>void*</tt>. */
  36. #define INT_TO_POINTER(x) ((void *) (intptr_t) (x))
  37. #if !(defined(__CHAR_BIT__) && defined(__SIZEOF_LONG__))
  38. # error Missing required predefined macros for BITS_PER_LONG calculation
  39. #endif
  40. /** Number of bits in a long int. */
  41. #define BITS_PER_LONG (__CHAR_BIT__ * __SIZEOF_LONG__)
  42. /**
  43. * @brief Create a contiguous bitmask starting at bit position @p l
  44. * and ending at position @p h.
  45. */
  46. #define GENMASK(h, l) \
  47. (((~0UL) - (1UL << (l)) + 1) & (~0UL >> (BITS_PER_LONG - 1 - (h))))
  48. /** @brief 0 if @p cond is true-ish; causes a compile error otherwise. */
  49. #define ZERO_OR_COMPILE_ERROR(cond) ((int) sizeof(char[1 - 2 * !(cond)]) - 1)
  50. #if defined(__cplusplus)
  51. /* The built-in function used below for type checking in C is not
  52. * supported by GNU C++.
  53. */
  54. #define ARRAY_SIZE(array) (sizeof(array) / sizeof((array)[0]))
  55. #else /* __cplusplus */
  56. /**
  57. * @brief Zero if @p array has an array type, a compile error otherwise
  58. *
  59. * This macro is available only from C, not C++.
  60. */
  61. #define IS_ARRAY(array) \
  62. ZERO_OR_COMPILE_ERROR( \
  63. !__builtin_types_compatible_p(__typeof__(array), \
  64. __typeof__(&(array)[0])))
  65. /**
  66. * @brief Number of elements in the given @p array
  67. *
  68. * In C++, due to language limitations, this will accept as @p array
  69. * any type that implements <tt>operator[]</tt>. The results may not be
  70. * particulary meaningful in this case.
  71. *
  72. * In C, passing a pointer as @p array causes a compile error.
  73. */
  74. #define ARRAY_SIZE(array) \
  75. ((long) (IS_ARRAY(array) + (sizeof(array) / sizeof((array)[0]))))
  76. #endif /* __cplusplus */
  77. /**
  78. * @brief Check if a pointer @p ptr lies within @p array.
  79. *
  80. * In C but not C++, this causes a compile error if @p array is not an array
  81. * (e.g. if @p ptr and @p array are mixed up).
  82. *
  83. * @param ptr a pointer
  84. * @param array an array
  85. * @return 1 if @p ptr is part of @p array, 0 otherwise
  86. */
  87. #define PART_OF_ARRAY(array, ptr) \
  88. ((ptr) && ((ptr) >= &array[0] && (ptr) < &array[ARRAY_SIZE(array)]))
  89. /**
  90. * @brief Get a pointer to a container structure from an element
  91. *
  92. * Example:
  93. *
  94. * struct foo {
  95. * int bar;
  96. * };
  97. *
  98. * struct foo my_foo;
  99. * int *ptr = &my_foo.bar;
  100. *
  101. * struct foo *container = CONTAINER_OF(ptr, struct foo, bar);
  102. *
  103. * Above, @p container points at @p my_foo.
  104. *
  105. * @param ptr pointer to a structure element
  106. * @param type name of the type that @p ptr is an element of
  107. * @param field the name of the field within the struct @p ptr points to
  108. * @return a pointer to the structure that contains @p ptr
  109. */
  110. #define CONTAINER_OF(ptr, type, field) \
  111. ((type *)(((char *)(ptr)) - offsetof(type, field)))
  112. /**
  113. * @brief Value of @p x rounded up to the next multiple of @p align,
  114. * which must be a power of 2.
  115. */
  116. #define ROUND_UP(x, align) \
  117. (((unsigned long)(x) + ((unsigned long)(align) - 1)) & \
  118. ~((unsigned long)(align) - 1))
  119. /**
  120. * @brief Value of @p x rounded down to the previous multiple of @p
  121. * align, which must be a power of 2.
  122. */
  123. #define ROUND_DOWN(x, align) \
  124. ((unsigned long)(x) & ~((unsigned long)(align) - 1))
  125. /** @brief Value of @p x rounded up to the next word boundary. */
  126. #define WB_UP(x) ROUND_UP(x, sizeof(void *))
  127. /** @brief Value of @p x rounded down to the previous word boundary. */
  128. #define WB_DN(x) ROUND_DOWN(x, sizeof(void *))
  129. /**
  130. * @brief Ceiling function applied to @p numerator / @p divider as a fraction.
  131. */
  132. #define ceiling_fraction(numerator, divider) \
  133. (((numerator) + ((divider) - 1)) / (divider))
  134. /**
  135. * @def MAX
  136. * @brief The larger value between @p a and @p b.
  137. * @note Arguments are evaluated twice.
  138. */
  139. #ifndef MAX
  140. /* Use Z_MAX for a GCC-only, single evaluation version */
  141. #define MAX(a, b) (((a) > (b)) ? (a) : (b))
  142. #endif
  143. /**
  144. * @def MIN
  145. * @brief The smaller value between @p a and @p b.
  146. * @note Arguments are evaluated twice.
  147. */
  148. #ifndef MIN
  149. /* Use Z_MIN for a GCC-only, single evaluation version */
  150. #define MIN(a, b) (((a) < (b)) ? (a) : (b))
  151. #endif
  152. /**
  153. * @def CLAMP
  154. * @brief Clamp a value to a given range.
  155. * @note Arguments are evaluated multiple times.
  156. */
  157. #ifndef CLAMP
  158. /* Use Z_CLAMP for a GCC-only, single evaluation version */
  159. #define CLAMP(val, low, high) (((val) <= (low)) ? (low) : MIN(val, high))
  160. #endif
  161. /**
  162. * @brief Is @p x a power of two?
  163. * @param x value to check
  164. * @return true if @p x is a power of two, false otherwise
  165. */
  166. static inline bool is_power_of_two(unsigned int x)
  167. {
  168. return (x != 0U) && ((x & (x - 1U)) == 0U);
  169. }
  170. /**
  171. * @brief Arithmetic shift right
  172. * @param value value to shift
  173. * @param shift number of bits to shift
  174. * @return @p value shifted right by @p shift; opened bit positions are
  175. * filled with the sign bit
  176. */
  177. static inline int64_t arithmetic_shift_right(int64_t value, uint8_t shift)
  178. {
  179. int64_t sign_ext;
  180. if (shift == 0U) {
  181. return value;
  182. }
  183. /* extract sign bit */
  184. sign_ext = (value >> 63) & 1;
  185. /* make all bits of sign_ext be the same as the value's sign bit */
  186. sign_ext = -sign_ext;
  187. /* shift value and fill opened bit positions with sign bit */
  188. return (value >> shift) | (sign_ext << (64 - shift));
  189. }
  190. /**
  191. * @brief byte by byte memcpy.
  192. *
  193. * Copy `size` bytes of `src` into `dest`. This is guaranteed to be done byte by byte.
  194. *
  195. * @param dst Pointer to the destination memory.
  196. * @param src Pointer to the source of the data.
  197. * @param size The number of bytes to copy.
  198. */
  199. static inline void bytecpy(void *dst, const void *src, size_t size)
  200. {
  201. size_t i;
  202. for (i = 0; i < size; ++i) {
  203. ((uint8_t *)dst)[i] = ((uint8_t *)src)[i];
  204. }
  205. }
  206. /**
  207. * @brief Convert a single character into a hexadecimal nibble.
  208. *
  209. * @param c The character to convert
  210. * @param x The address of storage for the converted number.
  211. *
  212. * @return Zero on success or (negative) error code otherwise.
  213. */
  214. int char2hex(char c, uint8_t *x);
  215. /**
  216. * @brief Convert a single hexadecimal nibble into a character.
  217. *
  218. * @param c The number to convert
  219. * @param x The address of storage for the converted character.
  220. *
  221. * @return Zero on success or (negative) error code otherwise.
  222. */
  223. int hex2char(uint8_t x, char *c);
  224. /**
  225. * @brief Convert a binary array into string representation.
  226. *
  227. * @param buf The binary array to convert
  228. * @param buflen The length of the binary array to convert
  229. * @param hex Address of where to store the string representation.
  230. * @param hexlen Size of the storage area for string representation.
  231. *
  232. * @return The length of the converted string, or 0 if an error occurred.
  233. */
  234. size_t bin2hex(const uint8_t *buf, size_t buflen, char *hex, size_t hexlen);
  235. /**
  236. * @brief Convert a hexadecimal string into a binary array.
  237. *
  238. * @param hex The hexadecimal string to convert
  239. * @param hexlen The length of the hexadecimal string to convert.
  240. * @param buf Address of where to store the binary data
  241. * @param buflen Size of the storage area for binary data
  242. *
  243. * @return The length of the binary array, or 0 if an error occurred.
  244. */
  245. size_t hex2bin(const char *hex, size_t hexlen, uint8_t *buf, size_t buflen);
  246. /**
  247. * @brief Convert a binary coded decimal (BCD 8421) value to binary.
  248. *
  249. * @param bcd BCD 8421 value to convert.
  250. *
  251. * @return Binary representation of input value.
  252. */
  253. static inline uint8_t bcd2bin(uint8_t bcd)
  254. {
  255. return ((10 * (bcd >> 4)) + (bcd & 0x0F));
  256. }
  257. /**
  258. * @brief Convert a binary value to binary coded decimal (BCD 8421).
  259. *
  260. * @param bin Binary value to convert.
  261. *
  262. * @return BCD 8421 representation of input value.
  263. */
  264. static inline uint8_t bin2bcd(uint8_t bin)
  265. {
  266. return (((bin / 10) << 4) | (bin % 10));
  267. }
  268. /**
  269. * @brief Convert a uint8_t into a decimal string representation.
  270. *
  271. * Convert a uint8_t value into its ASCII decimal string representation.
  272. * The string is terminated if there is enough space in buf.
  273. *
  274. * @param buf Address of where to store the string representation.
  275. * @param buflen Size of the storage area for string representation.
  276. * @param value The value to convert to decimal string
  277. *
  278. * @return The length of the converted string (excluding terminator if
  279. * any), or 0 if an error occurred.
  280. */
  281. uint8_t u8_to_dec(char *buf, uint8_t buflen, uint8_t value);
  282. #ifdef __cplusplus
  283. }
  284. #endif
  285. #endif /* !_ASMLANGUAGE */
  286. /** @brief Number of bytes in @p x kibibytes */
  287. #ifdef _LINKER
  288. /* This is used in linker scripts so need to avoid type casting there */
  289. #define KB(x) ((x) << 10)
  290. #else
  291. #define KB(x) (((size_t)x) << 10)
  292. #endif
  293. /** @brief Number of bytes in @p x mebibytes */
  294. #define MB(x) (KB(x) << 10)
  295. /** @brief Number of bytes in @p x gibibytes */
  296. #define GB(x) (MB(x) << 10)
  297. /** @brief Number of Hz in @p x kHz */
  298. #define KHZ(x) ((x) * 1000)
  299. /** @brief Number of Hz in @p x MHz */
  300. #define MHZ(x) (KHZ(x) * 1000)
  301. /**
  302. * @}
  303. */
  304. #endif /* ZEPHYR_INCLUDE_SYS_UTIL_H_ */