crc.h 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. /*
  2. * Copyright (c) 2018 Workaround GmbH.
  3. * Copyright (c) 2017 Intel Corporation.
  4. * Copyright (c) 2017 Nordic Semiconductor ASA
  5. * Copyright (c) 2015 Runtime Inc
  6. * Copyright (c) 2018 Google LLC.
  7. *
  8. * SPDX-License-Identifier: Apache-2.0
  9. */
  10. /** @file
  11. * @brief CRC computation function
  12. */
  13. #ifndef ZEPHYR_INCLUDE_SYS_CRC_H_
  14. #define ZEPHYR_INCLUDE_SYS_CRC_H_
  15. #include <zephyr/types.h>
  16. #include <stdbool.h>
  17. #include <stddef.h>
  18. #ifdef __cplusplus
  19. extern "C" {
  20. #endif
  21. /* Initial value expected to be used at the beginning of the crc8_ccitt
  22. * computation.
  23. */
  24. #define CRC8_CCITT_INITIAL_VALUE 0xFF
  25. /**
  26. * @defgroup checksum Checksum
  27. */
  28. /**
  29. * @defgroup crc CRC
  30. * @ingroup checksum
  31. * @{
  32. */
  33. /**
  34. * @brief Generic function for computing CRC 16
  35. *
  36. * Compute CRC 16 by passing in the address of the input, the input length
  37. * and polynomial used in addition to the initial value.
  38. *
  39. * @param src Input bytes for the computation
  40. * @param len Length of the input in bytes
  41. * @param polynomial The polynomial to use omitting the leading x^16
  42. * coefficient
  43. * @param initial_value Initial value for the CRC computation
  44. * @param pad Adds padding with zeros at the end of input bytes
  45. *
  46. * @return The computed CRC16 value
  47. */
  48. uint16_t crc16(const uint8_t *src, size_t len, uint16_t polynomial,
  49. uint16_t initial_value, bool pad);
  50. /**
  51. * @brief Generic function for computing CRC 8
  52. *
  53. * Compute CRC 8 by passing in the address of the input, the input length
  54. * and polynomial used in addition to the initial value.
  55. *
  56. * @param src Input bytes for the computation
  57. * @param len Length of the input in bytes
  58. * @param polynomial The polynomial to use omitting the leading x^8
  59. * coefficient
  60. * @param initial_value Initial value for the CRC computation
  61. * @param reversed Should we use reflected/reversed values or not
  62. *
  63. * @return The computed CRC8 value
  64. */
  65. uint8_t crc8(const uint8_t *src, size_t len, uint8_t polynomial, uint8_t initial_value,
  66. bool reversed);
  67. /**
  68. * @brief Compute the CRC-16/CCITT checksum of a buffer.
  69. *
  70. * See ITU-T Recommendation V.41 (November 1988). Uses 0x1021 as the
  71. * polynomial, reflects the input, and reflects the output.
  72. *
  73. * To calculate the CRC across non-contiguous blocks use the return
  74. * value from block N-1 as the seed for block N.
  75. *
  76. * For CRC-16/CCITT, use 0 as the initial seed. Other checksums in
  77. * the same family can be calculated by changing the seed and/or
  78. * XORing the final value. Examples include:
  79. *
  80. * - X-25 (used in PPP): seed=0xffff, xor=0xffff, residual=0xf0b8
  81. *
  82. * @note API changed in Zephyr 1.11.
  83. *
  84. * @param seed Value to seed the CRC with
  85. * @param src Input bytes for the computation
  86. * @param len Length of the input in bytes
  87. *
  88. * @return The computed CRC16 value
  89. */
  90. uint16_t crc16_ccitt(uint16_t seed, const uint8_t *src, size_t len);
  91. /**
  92. * @brief Compute the CRC-16/XMODEM checksum of a buffer.
  93. *
  94. * The MSB first version of ITU-T Recommendation V.41 (November 1988).
  95. * Uses 0x1021 as the polynomial with no reflection.
  96. *
  97. * To calculate the CRC across non-contiguous blocks use the return
  98. * value from block N-1 as the seed for block N.
  99. *
  100. * For CRC-16/XMODEM, use 0 as the initial seed. Other checksums in
  101. * the same family can be calculated by changing the seed and/or
  102. * XORing the final value. Examples include:
  103. *
  104. * - CCIITT-FALSE: seed=0xffff
  105. * - GSM: seed=0, xorout=0xffff, residue=0x1d0f
  106. *
  107. * @param seed Value to seed the CRC with
  108. * @param src Input bytes for the computation
  109. * @param len Length of the input in bytes
  110. *
  111. * @return The computed CRC16 value
  112. */
  113. uint16_t crc16_itu_t(uint16_t seed, const uint8_t *src, size_t len);
  114. /**
  115. * @brief Compute ANSI variant of CRC 16
  116. *
  117. * ANSI variant of CRC 16 is using 0x8005 as its polynomial with the initial
  118. * value set to 0xffff.
  119. *
  120. * @param src Input bytes for the computation
  121. * @param len Length of the input in bytes
  122. *
  123. * @return The computed CRC16 value
  124. */
  125. static inline uint16_t crc16_ansi(const uint8_t *src, size_t len)
  126. {
  127. return crc16(src, len, 0x8005, 0xffff, true);
  128. }
  129. /**
  130. * @brief Generate IEEE conform CRC32 checksum.
  131. *
  132. * @param *data Pointer to data on which the CRC should be calculated.
  133. * @param len Data length.
  134. *
  135. * @return CRC32 value.
  136. *
  137. */
  138. uint32_t crc32_ieee(const uint8_t *data, size_t len);
  139. /**
  140. * @brief Update an IEEE conforming CRC32 checksum.
  141. *
  142. * @param crc CRC32 checksum that needs to be updated.
  143. * @param *data Pointer to data on which the CRC should be calculated.
  144. * @param len Data length.
  145. *
  146. * @return CRC32 value.
  147. *
  148. */
  149. uint32_t crc32_ieee_update(uint32_t crc, const uint8_t *data, size_t len);
  150. /**
  151. * @brief Calculate CRC32C (Castagnoli) checksum.
  152. *
  153. * @param crc CRC32C checksum that needs to be updated.
  154. * @param *data Pointer to data on which the CRC should be calculated.
  155. * @param len Data length.
  156. * @param first_pkt Whether this is the first packet in the stream.
  157. * @param last_pkt Whether this is the last packet in the stream.
  158. *
  159. * @return CRC32 value.
  160. *
  161. */
  162. uint32_t crc32_c(uint32_t crc, const uint8_t *data,
  163. size_t len, bool first_pkt, bool last_pkt);
  164. /**
  165. * @brief Compute CCITT variant of CRC 8
  166. *
  167. * Normal CCITT variant of CRC 8 is using 0x07.
  168. *
  169. * @param initial_value Initial value for the CRC computation
  170. * @param buf Input bytes for the computation
  171. * @param len Length of the input in bytes
  172. *
  173. * @return The computed CRC8 value
  174. */
  175. uint8_t crc8_ccitt(uint8_t initial_value, const void *buf, size_t len);
  176. /**
  177. * @brief Compute the CRC-7 checksum of a buffer.
  178. *
  179. * See JESD84-A441. Used by the MMC protocol. Uses 0x09 as the
  180. * polynomial with no reflection. The CRC is left
  181. * justified, so bit 7 of the result is bit 6 of the CRC.
  182. *
  183. * @param seed Value to seed the CRC with
  184. * @param src Input bytes for the computation
  185. * @param len Length of the input in bytes
  186. *
  187. * @return The computed CRC7 value
  188. */
  189. uint8_t crc7_be(uint8_t seed, const uint8_t *src, size_t len);
  190. /**
  191. * @}
  192. */
  193. #ifdef __cplusplus
  194. }
  195. #endif
  196. #endif