1 //-----------------------------------------------------------------------------
2 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
3 // at your option, any later version. See the LICENSE.txt file for the text of
5 //-----------------------------------------------------------------------------
6 // Generic CRC calculation code.
7 //-----------------------------------------------------------------------------
18 uint32_t initial_value;
23 /* Initialize a crc structure. order is the order of the polynom, e.g. 32 for a CRC-32
24 * polynom is the CRC polynom. initial_value is the initial value of a clean state.
25 * final_xor is XORed onto the state before returning it from crc_result(). */
26 extern void crc_init(crc_t *crc, int order, uint32_t polynom, uint32_t initial_value, uint32_t final_xor);
28 /* Update the crc state. data is the data of length data_width bits (only the the
29 * data_width lower-most bits are used).
31 extern void crc_update(crc_t *crc, uint32_t data, int data_width);
33 /* Clean the crc state, e.g. reset it to initial_value */
34 extern void crc_clear(crc_t *crc);
36 /* Get the result of the crc calculation */
37 extern uint32_t crc_finish(crc_t *crc);
39 /* Static initialization of a crc structure */
40 #define CRC_INITIALIZER(_order, _polynom, _initial_value, _final_xor) { \
41 .state = ((_initial_value) & ((1L<<(_order))-1)), \
43 .polynom = (_polynom), \
44 .initial_value = (_initial_value), \
45 .final_xor = (_final_xor), \
46 .mask = ((1L<<(_order))-1) }