Skip to content

Commit 4e7b576

Browse files
Klaus H. Sorensennashif
authored andcommitted
lib: crc32_sw: 4 bit at a time implementation
Calculate crc32 4 bits at a time. The return value of the calculation is identical to the previous 1 bit at a time implementation. Results in a speed up of a factor 3 at the cost of using 64 bytes of flash for a crc table. Calculating crc32 of 128kB of flash on a 120MHz Kinetis MKE16F512 Cortex-M4 takes 99ms using the 1 bit at a time implementation, and 30ms using the 4 bits at a time implementation. The crc32 routine is used by subsys/canbus/canopen/canopen_program.c to calculate crc of flash images. Signed-off-by: Klaus H. Sorensen <[email protected]>
1 parent e89fe33 commit 4e7b576

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

lib/os/crc32_sw.c

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,21 @@ uint32_t crc32_ieee(const uint8_t *data, size_t len)
1313

1414
uint32_t crc32_ieee_update(uint32_t crc, const uint8_t *data, size_t len)
1515
{
16+
/* crc table generated from polynomial 0xedb88320 */
17+
static const uint32_t table[16] = {
18+
0x00000000, 0x1db71064, 0x3b6e20c8, 0x26d930ac,
19+
0x76dc4190, 0x6b6b51f4, 0x4db26158, 0x5005713c,
20+
0xedb88320, 0xf00f9344, 0xd6d6a3e8, 0xcb61b38c,
21+
0x9b64c2b0, 0x86d3d2d4, 0xa00ae278, 0xbdbdf21c,
22+
};
23+
1624
crc = ~crc;
25+
1726
for (size_t i = 0; i < len; i++) {
18-
crc = crc ^ data[i];
27+
uint8_t byte = data[i];
1928

20-
for (uint8_t j = 0; j < 8; j++) {
21-
crc = (crc >> 1) ^ (0xEDB88320 & -(crc & 1));
22-
}
29+
crc = (crc >> 4) ^ table[(crc ^ byte) & 0x0f];
30+
crc = (crc >> 4) ^ table[(crc ^ (byte >> 4)) & 0x0f];
2331
}
2432

2533
return (~crc);

0 commit comments

Comments
 (0)